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 }, }