wimui 0.25.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/_internal/ChartDataTable.cjs +2 -0
- package/dist/components/_internal/ChartDataTable.d.ts +43 -0
- package/dist/components/_internal/ChartDataTable.js +20 -0
- package/dist/components/_internal/chart-data-table.module.cjs +2 -0
- package/dist/components/_internal/chart-data-table.module.js +5 -0
- package/dist/components/_internal/chartTableData.cjs +0 -0
- package/dist/components/_internal/chartTableData.d.ts +53 -0
- package/dist/components/_internal/chartTableData.js +0 -0
- package/dist/components/ai/AgentStatus/agent-status.module.cjs +1 -1
- package/dist/components/ai/AgentStatus/agent-status.module.js +3 -3
- package/dist/components/ai/CodeDiffViewer/code-diff-viewer.module.cjs +1 -1
- package/dist/components/ai/CodeDiffViewer/code-diff-viewer.module.js +2 -2
- package/dist/components/ai/InteractiveGraph/interactive-graph.module.cjs +1 -1
- package/dist/components/ai/InteractiveGraph/interactive-graph.module.js +1 -1
- package/dist/components/charts/AreaChart/AreaChart.cjs +1 -1
- package/dist/components/charts/AreaChart/AreaChart.d.ts +7 -1
- package/dist/components/charts/AreaChart/AreaChart.js +85 -68
- package/dist/components/charts/BarChart/BarChart.cjs +1 -1
- package/dist/components/charts/BarChart/BarChart.d.ts +7 -1
- package/dist/components/charts/BarChart/BarChart.js +90 -73
- package/dist/components/charts/FunnelChart/FunnelChart.cjs +1 -1
- package/dist/components/charts/FunnelChart/FunnelChart.d.ts +7 -1
- package/dist/components/charts/FunnelChart/FunnelChart.js +60 -43
- package/dist/components/charts/GanttChart/gantt-chart.module.cjs +1 -1
- package/dist/components/charts/GanttChart/gantt-chart.module.js +1 -1
- package/dist/components/charts/GaugeChart/GaugeChart.cjs +1 -1
- package/dist/components/charts/GaugeChart/GaugeChart.d.ts +7 -1
- package/dist/components/charts/GaugeChart/GaugeChart.js +6 -4
- package/dist/components/charts/Heatmap/Heatmap.cjs +1 -1
- package/dist/components/charts/Heatmap/Heatmap.d.ts +7 -1
- package/dist/components/charts/Heatmap/Heatmap.js +101 -87
- package/dist/components/charts/LineChart/LineChart.cjs +1 -1
- package/dist/components/charts/LineChart/LineChart.d.ts +7 -1
- package/dist/components/charts/LineChart/LineChart.js +87 -70
- package/dist/components/charts/PieChart/PieChart.cjs +1 -1
- package/dist/components/charts/PieChart/PieChart.d.ts +7 -1
- package/dist/components/charts/PieChart/PieChart.js +65 -45
- package/dist/components/charts/RadarChart/RadarChart.cjs +1 -1
- package/dist/components/charts/RadarChart/RadarChart.d.ts +7 -1
- package/dist/components/charts/RadarChart/RadarChart.js +73 -56
- package/dist/components/charts/ScatterChart/ScatterChart.cjs +1 -1
- package/dist/components/charts/ScatterChart/ScatterChart.d.ts +7 -1
- package/dist/components/charts/ScatterChart/ScatterChart.js +85 -68
- package/dist/components/charts/Sparkline/Sparkline.cjs +1 -1
- package/dist/components/charts/Sparkline/Sparkline.js +52 -54
- package/dist/components/charts/Treemap/Treemap.cjs +1 -1
- package/dist/components/charts/Treemap/Treemap.d.ts +7 -1
- package/dist/components/charts/Treemap/Treemap.js +75 -61
- package/dist/components/data-display/CalendarHeatmap/calendar-heatmap.module.cjs +1 -1
- package/dist/components/data-display/CalendarHeatmap/calendar-heatmap.module.js +1 -1
- package/dist/components/data-display/Kanban/kanban.module.cjs +1 -1
- package/dist/components/data-display/Kanban/kanban.module.js +1 -1
- package/dist/components/data-display/NodeGraph/node-graph.module.cjs +1 -1
- package/dist/components/data-display/NodeGraph/node-graph.module.js +1 -1
- package/dist/components/feedback/Alert/alert.module.cjs +1 -1
- package/dist/components/feedback/Alert/alert.module.js +5 -5
- package/dist/components/feedback/ProgressRing/ProgressRing.d.ts +6 -1
- package/dist/components/feedback/Toast/toast.module.cjs +1 -1
- package/dist/components/feedback/Toast/toast.module.js +11 -11
- package/dist/components/form/FieldTemplate/field-template.module.cjs +1 -1
- package/dist/components/form/FieldTemplate/field-template.module.js +1 -1
- package/dist/components/helpers.cjs +1 -1
- package/dist/components/helpers.d.ts +18 -0
- package/dist/components/helpers.js +4 -1
- package/dist/components/media/Gallery/gallery.module.cjs +1 -1
- package/dist/components/media/Gallery/gallery.module.js +11 -11
- package/dist/components/navigation/SpeedDial/SpeedDial.d.ts +24 -2
- package/dist/i18n/generated/keys.d.ts +1 -1
- package/dist/llms-full.txt +97 -11
- package/dist/llms.txt +1 -1
- package/dist/locales/en/common.json +1 -49
- package/dist/locales/en/form.json +1 -20
- package/dist/locales/ja/common.json +1 -49
- package/dist/locales/ja/form.json +1 -20
- package/dist/locales/pt/common.json +1 -49
- package/dist/locales/pt/form.json +1 -20
- package/dist/robots.txt +5 -0
- package/dist/styles.css +2 -2
- package/dist/types/generated-tokens.d.ts +1 -1
- package/dist/wimui.umd.css +1 -1
- package/dist/wimui.umd.js +3 -3
- package/package.json +35 -21
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
//#region src/components/media/Gallery/gallery.module.scss
|
|
3
|
-
var e = "
|
|
3
|
+
var e = "_root_1s3aa_3", t = "_toolbar_1s3aa_16", n = "_toolbarCount_1s3aa_39", r = "_toolbarActions_1s3aa_45", i = "_toolbarClear_1s3aa_51", a = "_grid_1s3aa_55", o = "_item_1s3aa_90", s = "_selected_1s3aa_101", c = "_imageWrapper_1s3aa_101", l = "_image_1s3aa_101", u = "_checkboxOverlay_1s3aa_142", d = "_checkbox_1s3aa_142", f = "_selectedRing_1s3aa_164", p = "_caption_1s3aa_172", m = "_captionTitle_1s3aa_179", h = "_captionText_1s3aa_188", g = {
|
|
4
4
|
root: e,
|
|
5
5
|
toolbar: t,
|
|
6
|
-
"toolbar-in": "_toolbar-
|
|
6
|
+
"toolbar-in": "_toolbar-in_1s3aa_1",
|
|
7
7
|
toolbarCount: n,
|
|
8
8
|
toolbarActions: r,
|
|
9
9
|
toolbarClear: i,
|
|
10
10
|
grid: a,
|
|
11
|
-
"gap-xs": "_gap-
|
|
12
|
-
"gap-sm": "_gap-
|
|
13
|
-
"gap-md": "_gap-
|
|
14
|
-
"gap-lg": "_gap-
|
|
15
|
-
"gap-xl": "_gap-
|
|
11
|
+
"gap-xs": "_gap-xs_1s3aa_70",
|
|
12
|
+
"gap-sm": "_gap-sm_1s3aa_74",
|
|
13
|
+
"gap-md": "_gap-md_1s3aa_78",
|
|
14
|
+
"gap-lg": "_gap-lg_1s3aa_82",
|
|
15
|
+
"gap-xl": "_gap-xl_1s3aa_86",
|
|
16
16
|
item: o,
|
|
17
17
|
selected: s,
|
|
18
18
|
imageWrapper: c,
|
|
19
|
-
"aspect-square": "_aspect-
|
|
20
|
-
"aspect-landscape": "_aspect-
|
|
21
|
-
"aspect-portrait": "_aspect-
|
|
22
|
-
"aspect-auto": "_aspect-
|
|
19
|
+
"aspect-square": "_aspect-square_1s3aa_112",
|
|
20
|
+
"aspect-landscape": "_aspect-landscape_1s3aa_116",
|
|
21
|
+
"aspect-portrait": "_aspect-portrait_1s3aa_120",
|
|
22
|
+
"aspect-auto": "_aspect-auto_1s3aa_124",
|
|
23
23
|
image: l,
|
|
24
24
|
checkboxOverlay: u,
|
|
25
25
|
checkbox: d,
|
|
@@ -14,7 +14,18 @@ export type SpeedDialProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
|
14
14
|
icon?: IconName;
|
|
15
15
|
/** Icon name for the main button when open */
|
|
16
16
|
activeIcon?: IconName;
|
|
17
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* Direction in which actions expand.
|
|
19
|
+
*
|
|
20
|
+
* **The caller picks a direction that has room.** Actions are placed with
|
|
21
|
+
* plain CSS (`left: 100%` and friends) and are never measured, so this
|
|
22
|
+
* component does not flip when the viewport runs out — a `right` dial placed
|
|
23
|
+
* near the right edge pushes the page into a horizontal scroll. Anchor a
|
|
24
|
+
* `right` dial to the leading edge (and a `left` one to the trailing edge);
|
|
25
|
+
* `up` / `down` already grow inward from the trailing corner (T175).
|
|
26
|
+
*
|
|
27
|
+
* @default "up"
|
|
28
|
+
*/
|
|
18
29
|
direction?: "up" | "down" | "left" | "right";
|
|
19
30
|
/** Trigger mode to open the SpeedDial */
|
|
20
31
|
trigger?: "hover" | "click";
|
|
@@ -43,7 +54,18 @@ export declare const SpeedDial: React.ForwardRefExoticComponent<Omit<React.Detai
|
|
|
43
54
|
icon?: IconName;
|
|
44
55
|
/** Icon name for the main button when open */
|
|
45
56
|
activeIcon?: IconName;
|
|
46
|
-
/**
|
|
57
|
+
/**
|
|
58
|
+
* Direction in which actions expand.
|
|
59
|
+
*
|
|
60
|
+
* **The caller picks a direction that has room.** Actions are placed with
|
|
61
|
+
* plain CSS (`left: 100%` and friends) and are never measured, so this
|
|
62
|
+
* component does not flip when the viewport runs out — a `right` dial placed
|
|
63
|
+
* near the right edge pushes the page into a horizontal scroll. Anchor a
|
|
64
|
+
* `right` dial to the leading edge (and a `left` one to the trailing edge);
|
|
65
|
+
* `up` / `down` already grow inward from the trailing corner (T175).
|
|
66
|
+
*
|
|
67
|
+
* @default "up"
|
|
68
|
+
*/
|
|
47
69
|
direction?: "up" | "down" | "left" | "right";
|
|
48
70
|
/** Trigger mode to open the SpeedDial */
|
|
49
71
|
trigger?: "hover" | "click";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type WimI18nKey = "a11y.attach_file" | "a11y.avatar" | "a11y.back_to_top" | "a11y.breadcrumb" | "a11y.calendar" | "a11y.clear_date" | "a11y.clear_input" | "a11y.clear_selection" | "a11y.clear_text" | "a11y.close" | "a11y.close_dialog" | "a11y.close_menu" | "a11y.close_tour" | "a11y.collapse" | "a11y.collapse_label" | "a11y.considerations" | "a11y.cover_art" | "a11y.crop_target" | "a11y.data_grid" | "a11y.delete" | "a11y.edit" | "a11y.exit_fullscreen" | "a11y.expand" | "a11y.expand_label" | "a11y.fullscreen" | "a11y.go_to_next_page" | "a11y.go_to_page" | "a11y.go_to_prev_page" | "a11y.guideline_desc" | "a11y.hide_password" | "a11y.icon_fallback" | "a11y.items_per_page" | "a11y.jump_to_page" | "a11y.kanban_board" | "a11y.kanban_column_count" | "a11y.left_icon_action" | "a11y.loading" | "a11y.move_card" | "a11y.move_to_column" | "a11y.mute" | "a11y.next_month" | "a11y.next_slide" | "a11y.next_track" | "a11y.open_calendar" | "a11y.open_dropdown" | "a11y.open_menu" | "a11y.pagination_nav" | "a11y.pause" | "a11y.picture_in_picture" | "a11y.play" | "a11y.playlist" | "a11y.prev_month" | "a11y.prev_slide" | "a11y.resize_panel" | "a11y.right_icon_action" | "a11y.rte_bold" | "a11y.rte_editor" | "a11y.rte_h1" | "a11y.rte_h2" | "a11y.rte_h3" | "a11y.rte_italic" | "a11y.rte_link" | "a11y.rte_link_apply" | "a11y.rte_link_cancel" | "a11y.rte_link_prompt" | "a11y.rte_ol" | "a11y.rte_remove_format" | "a11y.rte_strikethrough" | "a11y.rte_toolbar" | "a11y.rte_ul" | "a11y.rte_underline" | "a11y.rte_unlink" | "a11y.scroll_progress" | "a11y.search" | "a11y.seek" | "a11y.select_all_rows" | "a11y.select_row" | "a11y.settings" | "a11y.show_password" | "a11y.signature_canvas" | "a11y.skip_backward" | "a11y.skip_forward" | "a11y.unmute" | "a11y.volume" | "account" | "action.add" | "action.back" | "action.cancel" | "action.clear" | "action.close" | "action.confirm" | "action.copy" | "action.delete" | "action.edit" | "action.finish" | "action.next" | "action.save" | "action.search" | "action.submit" | "agent_status.done" | "agent_status.error" | "agent_status.idle" | "agent_status.running" | "agent_status.thinking" | "agent_status.waiting" | "ai_feedback.group_label" | "ai_feedback.negative_label" | "ai_feedback.positive_label" | "ai_feedback.regenerate_label" | "analytics" | "annotation.outside_field" | "applayout.behavior" | "applayout.breakpoint" | "applayout.device" | "artifact_overlay.maximize" | "artifact_overlay.minimize" | "aspect.ratio" | "audience" | "autosave.aria_label" | "autosave.error" | "autosave.saved" | "autosave.saved_at" | "autosave.saving" | "bottom" | "btn.guide_link_btn" | "btn.page_transition" | "button.clear" | "button.close" | "button.consistency" | "button.consistency_desc" | "button.copy_desc" | "button.copy_usage" | "button.dismiss" | "button.group_desc" | "button.group_usage" | "button.guide_desc" | "button.guide_title" | "button.guideline_detail" | "button.guideline_principle" | "button.icon_usage" | "button.label" | "button.link_desc" | "button.placement_conflict" | "button.placement_conflict_desc" | "button.placement_desc" | "button.priority_weighting" | "button.semantics_desc" | "button.semantics_guide_ref" | "button.standard_desc" | "button.standard_usage" | "calendar.aria_date" | "calendar.title" | "calendar_heatmap.less" | "calendar_heatmap.more" | "cat.ai" | "chat.ai_assistant" | "chat.attachment_prefix" | "chat.placeholder" | "chat.placeholder_interactive" | "chat.send_button" | "chat.support" | "chat.you" | "code_block.collapse_label" | "code_block.copied_label" | "code_block.copy_label" | "code_block.expand_label" | "code_block.lines" | "code_diff_viewer.applied" | "code_diff_viewer.apply" | "code_diff_viewer.copied_label" | "code_diff_viewer.copy_label" | "code_diff_viewer.reject" | "code_diff_viewer.split_view" | "code_diff_viewer.unified_view" | "colorinput.swatch" | "colors.tone_mapping" | "combobox.no_results" | "command_palette.label" | "command_palette.no_results" | "common.all" | "common.appearance" | "common.as" | "common.children" | "common.className" | "common.color" | "common.component" | "common.content" | "common.custom" | "common.dark" | "common.default" | "common.delivery" | "common.description" | "common.disabled" | "common.do" | "common.done" | "common.dont" | "common.error" | "common.features" | "common.ghost" | "common.heatmap_less" | "common.heatmap_more" | "common.heatmap_title" | "common.horizontal" | "common.id" | "common.intensity" | "common.intent" | "common.label" | "common.large" | "common.layout" | "common.light" | "common.medium" | "common.name" | "common.neutral" | "common.no" | "common.none" | "common.or" | "common.password" | "common.placeholder" | "common.primary" | "common.props" | "common.ref" | "common.reload" | "common.rounded" | "common.secondary" | "common.size" | "common.small" | "common.status" | "common.style" | "common.success" | "common.title" | "common.type" | "common.usage" | "common.value" | "common.variant" | "common.vertical" | "common.warning" | "common.yes" | "common:a11y.attach_file" | "common:a11y.back_to_top" | "common:a11y.breadcrumb" | "common:a11y.calendar" | "common:a11y.clear_date" | "common:a11y.clear_input" | "common:a11y.clear_selection" | "common:a11y.clear_text" | "common:a11y.close" | "common:a11y.close_dialog" | "common:a11y.close_menu" | "common:a11y.close_tour" | "common:a11y.considerations" | "common:a11y.cover_art" | "common:a11y.crop_target" | "common:a11y.data_grid" | "common:a11y.delete" | "common:a11y.edit" | "common:a11y.exit_fullscreen" | "common:a11y.fullscreen" | "common:a11y.go_to_next_page" | "common:a11y.go_to_page" | "common:a11y.go_to_prev_page" | "common:a11y.guideline_desc" | "common:a11y.hide_password" | "common:a11y.icon_fallback" | "common:a11y.items_per_page" | "common:a11y.jump_to_page" | "common:a11y.kanban_board" | "common:a11y.kanban_column_count" | "common:a11y.left_icon_action" | "common:a11y.loading" | "common:a11y.move_card" | "common:a11y.move_to_column" | "common:a11y.mute" | "common:a11y.next_month" | "common:a11y.next_slide" | "common:a11y.next_track" | "common:a11y.open_calendar" | "common:a11y.open_dropdown" | "common:a11y.open_menu" | "common:a11y.pagination_nav" | "common:a11y.pause" | "common:a11y.picture_in_picture" | "common:a11y.play" | "common:a11y.playlist" | "common:a11y.prev_month" | "common:a11y.prev_slide" | "common:a11y.resize_panel" | "common:a11y.right_icon_action" | "common:a11y.scroll_progress" | "common:a11y.search" | "common:a11y.seek" | "common:a11y.select_all_rows" | "common:a11y.select_row" | "common:a11y.settings" | "common:a11y.show_password" | "common:a11y.signature_canvas" | "common:a11y.skip_backward" | "common:a11y.skip_forward" | "common:a11y.unmute" | "common:a11y.volume" | "common:account" | "common:action.add" | "common:action.back" | "common:action.cancel" | "common:action.clear" | "common:action.close" | "common:action.confirm" | "common:action.copy" | "common:action.delete" | "common:action.edit" | "common:action.finish" | "common:action.next" | "common:action.save" | "common:action.search" | "common:action.submit" | "common:analytics" | "common:aspect.ratio" | "common:audience" | "common:autosave.aria_label" | "common:autosave.error" | "common:autosave.saved" | "common:autosave.saved_at" | "common:autosave.saving" | "common:bottom" | "common:chat.ai_assistant" | "common:chat.attachment_prefix" | "common:chat.placeholder" | "common:chat.placeholder_interactive" | "common:chat.support" | "common:chat.you" | "common:common.all" | "common:common.appearance" | "common:common.as" | "common:common.children" | "common:common.className" | "common:common.color" | "common:common.component" | "common:common.content" | "common:common.custom" | "common:common.dark" | "common:common.default" | "common:common.delivery" | "common:common.description" | "common:common.disabled" | "common:common.do" | "common:common.done" | "common:common.dont" | "common:common.error" | "common:common.features" | "common:common.ghost" | "common:common.heatmap_less" | "common:common.heatmap_more" | "common:common.heatmap_title" | "common:common.horizontal" | "common:common.id" | "common:common.intensity" | "common:common.intent" | "common:common.label" | "common:common.large" | "common:common.layout" | "common:common.light" | "common:common.medium" | "common:common.name" | "common:common.neutral" | "common:common.no" | "common:common.none" | "common:common.or" | "common:common.password" | "common:common.placeholder" | "common:common.primary" | "common:common.props" | "common:common.ref" | "common:common.reload" | "common:common.rounded" | "common:common.secondary" | "common:common.size" | "common:common.small" | "common:common.status" | "common:common.style" | "common:common.success" | "common:common.title" | "common:common.type" | "common:common.usage" | "common:common.value" | "common:common.variant" | "common:common.vertical" | "common:common.warning" | "common:common.yes" | "common:copied" | "common:copy.to_clipboard" | "common:dashboard.intro" | "common:dashboard.tokens_link" | "common:dataGrid.displaying" | "common:dataGrid.loading_more" | "common:dataGrid.rows_selected" | "common:doc.a11y_spec_title" | "common:doc.anatomy_module_note" | "common:doc.anatomy_title" | "common:doc.api_reference" | "common:doc.baseListItem_a11y_desc" | "common:doc.baseListItem_anatomy_content_desc" | "common:doc.baseListItem_anatomy_content_label" | "common:doc.baseListItem_anatomy_root_desc" | "common:doc.baseListItem_anatomy_root_label" | "common:doc.baseListItem_best_practice_1" | "common:doc.baseListItem_best_practice_2" | "common:doc.baseListItem_choice_alt_when" | "common:doc.baseListItem_choice_matrix_desc" | "common:doc.baseListItem_choice_use_when" | "common:doc.baseListItem_content_guideline_1" | "common:doc.baseListItem_content_guideline_2" | "common:doc.baseListItem_design_intent" | "common:doc.baseListItem_i18n_desc" | "common:doc.baseListItem_keyboard_desc" | "common:doc.baseListItem_long_desc" | "common:doc.baseListItem_motion_desc" | "common:doc.baseListItem_responsive_desc" | "common:doc.baseListItem_scenario_1" | "common:doc.baseListItem_scenario_2" | "common:doc.baseListItem_tokens_desc" | "common:doc.baseListItem_usage_desc" | "common:doc.best_practice_footer" | "common:doc.best_practices_title" | "common:doc.button_a11y_desc" | "common:doc.button_motion_desc" | "common:doc.button_scenario_desc" | "common:doc.choice_matrix_title" | "common:doc.component" | "common:doc.content_guidelines_title" | "common:doc.danger" | "common:doc.description" | "common:doc.design_intent_title" | "common:doc.fieldTemplate_a11y_desc" | "common:doc.fieldTemplate_anatomy_content_desc" | "common:doc.fieldTemplate_anatomy_content_label" | "common:doc.fieldTemplate_anatomy_error_desc" | "common:doc.fieldTemplate_anatomy_error_label" | "common:doc.fieldTemplate_anatomy_label_desc" | "common:doc.fieldTemplate_anatomy_label_label" | "common:doc.fieldTemplate_anatomy_required_desc" | "common:doc.fieldTemplate_anatomy_required_label" | "common:doc.fieldTemplate_best_practice_1" | "common:doc.fieldTemplate_best_practice_2" | "common:doc.fieldTemplate_choice_alt_when" | "common:doc.fieldTemplate_choice_matrix_desc" | "common:doc.fieldTemplate_choice_use_when" | "common:doc.fieldTemplate_content_guideline_1" | "common:doc.fieldTemplate_content_guideline_2" | "common:doc.fieldTemplate_design_intent" | "common:doc.fieldTemplate_i18n_desc" | "common:doc.fieldTemplate_keyboard_desc" | "common:doc.fieldTemplate_long_desc" | "common:doc.fieldTemplate_motion_desc" | "common:doc.fieldTemplate_scenario_1" | "common:doc.fieldTemplate_scenario_2" | "common:doc.fieldTemplate_usage_desc" | "common:doc.i18n_docgen_intro" | "common:doc.i18n_docgen_none" | "common:doc.i18n_title" | "common:doc.iconButton_desc" | "common:doc.inputBase_a11y_desc" | "common:doc.inputBase_anatomy_content_desc" | "common:doc.inputBase_anatomy_content_label" | "common:doc.inputBase_anatomy_root_desc" | "common:doc.inputBase_anatomy_root_label" | "common:doc.inputBase_best_practice_1" | "common:doc.inputBase_best_practice_2" | "common:doc.inputBase_choice_alt_when" | "common:doc.inputBase_choice_matrix_desc" | "common:doc.inputBase_choice_use_when" | "common:doc.inputBase_content_guideline_1" | "common:doc.inputBase_content_guideline_2" | "common:doc.inputBase_design_intent" | "common:doc.inputBase_i18n_desc" | "common:doc.inputBase_keyboard_desc" | "common:doc.inputBase_long_desc" | "common:doc.inputBase_motion_desc" | "common:doc.inputBase_responsive_desc" | "common:doc.inputBase_scenario_1" | "common:doc.inputBase_scenario_2" | "common:doc.inputBase_tokens_desc" | "common:doc.inputBase_usage_desc" | "common:doc.json_viewer_a11y_desc" | "common:doc.json_viewer_best_practice_1" | "common:doc.json_viewer_best_practice_2" | "common:doc.json_viewer_choice_matrix_desc" | "common:doc.json_viewer_content_guideline_1" | "common:doc.json_viewer_content_guideline_2" | "common:doc.json_viewer_desc" | "common:doc.json_viewer_design_intent" | "common:doc.json_viewer_i18n_desc" | "common:doc.json_viewer_keyboard_desc" | "common:doc.json_viewer_motion_desc" | "common:doc.json_viewer_responsive_desc" | "common:doc.json_viewer_scenario_1" | "common:doc.json_viewer_scenario_2" | "common:doc.keyboard_nav_title" | "common:doc.label" | "common:doc.label_a11y_desc" | "common:doc.label_anatomy_content" | "common:doc.label_anatomy_content_label" | "common:doc.label_anatomy_root" | "common:doc.label_anatomy_root_label" | "common:doc.label_best_practice_1" | "common:doc.label_best_practice_2" | "common:doc.label_choice_alt_when" | "common:doc.label_choice_matrix_desc" | "common:doc.label_choice_self_when" | "common:doc.label_content_guideline" | "common:doc.label_design_intent" | "common:doc.label_i18n_desc" | "common:doc.label_keyboard_desc" | "common:doc.label_long_desc" | "common:doc.label_motion_desc" | "common:doc.label_responsive_desc" | "common:doc.label_scenario_1" | "common:doc.label_scenario_2" | "common:doc.label_title" | "common:doc.label_tokens_desc" | "common:doc.location" | "common:doc.motion_spec_title" | "common:doc.op_cancel" | "common:doc.op_edit_save" | "common:doc.op_navigate" | "common:doc.props_none" | "common:doc.props_title" | "common:doc.pull_to_refresh_a11y_desc" | "common:doc.pull_to_refresh_best_practice_1" | "common:doc.pull_to_refresh_best_practice_2" | "common:doc.pull_to_refresh_choice_matrix_desc" | "common:doc.pull_to_refresh_content_guideline_1" | "common:doc.pull_to_refresh_content_guideline_2" | "common:doc.pull_to_refresh_desc" | "common:doc.pull_to_refresh_design_intent" | "common:doc.pull_to_refresh_i18n_desc" | "common:doc.pull_to_refresh_keyboard_desc" | "common:doc.pull_to_refresh_motion_desc" | "common:doc.pull_to_refresh_responsive_desc" | "common:doc.pull_to_refresh_scenario_1" | "common:doc.pull_to_refresh_scenario_2" | "common:doc.real_world_scenarios_title" | "common:doc.recommendation" | "common:doc.responsive_title" | "common:doc.scenario" | "common:doc.scenario_404_title" | "common:doc.scenario_admin_title" | "common:doc.scenario_agreement_title" | "common:doc.scenario_ai_title" | "common:doc.scenario_article_title" | "common:doc.scenario_chat_title" | "common:doc.scenario_collab_title" | "common:doc.scenario_comment_title" | "common:doc.scenario_confirm_title" | "common:doc.scenario_copy_title" | "common:doc.scenario_cta_title" | "common:doc.scenario_dashboard_title" | "common:doc.scenario_delete_title" | "common:doc.scenario_detail_title" | "common:doc.scenario_ec_title" | "common:doc.scenario_event_title" | "common:doc.scenario_fail_title" | "common:doc.scenario_faq_title" | "common:doc.scenario_feature_title" | "common:doc.scenario_feed_title" | "common:doc.scenario_files_title" | "common:doc.scenario_filter_title" | "common:doc.scenario_form_title" | "common:doc.scenario_gallery_title" | "common:doc.scenario_gender_title" | "common:doc.scenario_help_title" | "common:doc.scenario_hero_title" | "common:doc.scenario_icon_title" | "common:doc.scenario_inbox_title" | "common:doc.scenario_init_title" | "common:doc.scenario_list_title" | "common:doc.scenario_maintenance_title" | "common:doc.scenario_nav_title" | "common:doc.scenario_notif_title" | "common:doc.scenario_pagination_title" | "common:doc.scenario_payment_title" | "common:doc.scenario_product_title" | "common:doc.scenario_products_title" | "common:doc.scenario_profile_title" | "common:doc.scenario_refresh_title" | "common:doc.scenario_save_title" | "common:doc.scenario_search_title" | "common:doc.scenario_settings_title" | "common:doc.scenario_sns_title" | "common:doc.scenario_stats_title" | "common:doc.scenario_status_title" | "common:doc.scenario_subscription_title" | "common:doc.scenario_toc_title" | "common:doc.scenario_toggle_title" | "common:doc.scenario_toolbar_title" | "common:doc.scenario_trial_title" | "common:doc.scenario_undo_title" | "common:doc.scenario_user_title" | "common:doc.scenario_warning_title" | "common:doc.see_more" | "common:doc.speed_dial_a11y_desc" | "common:doc.speed_dial_best_practice_1" | "common:doc.speed_dial_best_practice_2" | "common:doc.speed_dial_choice_matrix_desc" | "common:doc.speed_dial_content_guideline_1" | "common:doc.speed_dial_content_guideline_2" | "common:doc.speed_dial_desc" | "common:doc.speed_dial_design_intent" | "common:doc.speed_dial_i18n_desc" | "common:doc.speed_dial_keyboard_desc" | "common:doc.speed_dial_motion_desc" | "common:doc.speed_dial_responsive_desc" | "common:doc.speed_dial_scenario_1" | "common:doc.speed_dial_scenario_2" | "common:doc.std_column_component" | "common:doc.std_column_no" | "common:doc.std_column_yes" | "common:doc.std_header_loading_state" | "common:doc.std_header_unified_sizing" | "common:doc.stories" | "common:doc.story_default" | "common:doc.story_disabled" | "common:doc.story_error" | "common:doc.story_ghost" | "common:doc.story_horizontal" | "common:doc.story_multiple_icons" | "common:doc.story_no_label" | "common:doc.story_states" | "common:doc.story_with_badge" | "common:doc.story_with_icon" | "common:doc.story_with_icons" | "common:doc.story_with_right_section" | "common:doc.summary" | "common:doc.swipe_action_a11y_desc" | "common:doc.swipe_action_best_practice_1" | "common:doc.swipe_action_best_practice_2" | "common:doc.swipe_action_choice_matrix_desc" | "common:doc.swipe_action_content_guideline_1" | "common:doc.swipe_action_content_guideline_2" | "common:doc.swipe_action_desc" | "common:doc.swipe_action_design_intent" | "common:doc.swipe_action_i18n_desc" | "common:doc.swipe_action_keyboard_desc" | "common:doc.swipe_action_motion_desc" | "common:doc.swipe_action_responsive_desc" | "common:doc.swipe_action_scenario_1" | "common:doc.swipe_action_scenario_2" | "common:doc.tag_deletable" | "common:doc.tag_deletable_desc" | "common:doc.test_description" | "common:doc.test_title" | "common:doc.tokens_title" | "common:doc.transfer_i18n_desc" | "common:doc.transition" | "common:doc.usage" | "common:doc.usage_scenario" | "common:error.boundary_hide_details" | "common:error.boundary_retry" | "common:error.boundary_show_details" | "common:error.boundary_title" | "common:error.invalid" | "common:error.required" | "common:fri" | "common:greeting" | "common:guide.action_std_affected_components" | "common:guide.action_std_concept_desc" | "common:guide.action_std_concept_title" | "common:guide.action_std_desc" | "common:guide.action_std_note_desc" | "common:guide.action_std_note_title" | "common:guide.action_std_rule_1_desc" | "common:guide.action_std_rule_1_title" | "common:guide.action_std_rule_2_desc" | "common:guide.action_std_rule_2_title" | "common:guide.action_std_rule_3_desc" | "common:guide.action_std_rule_3_title" | "common:guide.action_std_rule_4_desc" | "common:guide.action_std_rule_4_title" | "common:guide.action_std_rule_header_desc" | "common:guide.action_std_rule_header_title" | "common:guide.action_std_rules_title" | "common:guide.action_std_title" | "common:guide.numeric_std_concept_desc" | "common:guide.numeric_std_concept_title" | "common:guide.numeric_std_desc" | "common:guide.numeric_std_exp_notation_desc" | "common:guide.numeric_std_firefox_behavior" | "common:guide.numeric_std_i18n_desc" | "common:guide.numeric_std_keyboard_desc" | "common:guide.numeric_std_problem_1_desc" | "common:guide.numeric_std_problem_1_title" | "common:guide.numeric_std_problem_2_desc" | "common:guide.numeric_std_problem_2_title" | "common:guide.numeric_std_problem_3_desc" | "common:guide.numeric_std_problem_3_title" | "common:guide.numeric_std_problem_4_desc" | "common:guide.numeric_std_problem_4_title" | "common:guide.numeric_std_problems_title" | "common:guide.numeric_std_recommend_desc" | "common:guide.numeric_std_recommend_title" | "common:guide.numeric_std_responsive_desc" | "common:guide.numeric_std_safari_behavior" | "common:guide.numeric_std_spin_button_warning" | "common:guide.numeric_std_table_behavior" | "common:guide.numeric_std_table_browser" | "common:guide.numeric_std_table_input_disabled" | "common:guide.numeric_std_table_input_js_empty" | "common:guide.numeric_std_table_input_status" | "common:guide.numeric_std_test_desc" | "common:guide.numeric_std_title" | "common:guide.numeric_std_tokens_desc" | "common:guide.numeric_std_usage_desc" | "common:guide.numeric_std_usage_do_1" | "common:guide.numeric_std_usage_dont_1" | "common:guide.numeric_std_usage_dont_2" | "common:guide.numeric_std_usage_dont_3" | "common:guide.numeric_std_usage_warning_desc" | "common:guide.numeric_std_usage_warning_title" | "common:home" | "common:jsonViewer.addItem" | "common:jsonViewer.collapse" | "common:jsonViewer.copy" | "common:jsonViewer.deleteItem" | "common:jsonViewer.edit" | "common:jsonViewer.expand" | "common:jsonViewer.title" | "common:language.en" | "common:language.ja" | "common:language.pt" | "common:language.support" | "common:learn.more" | "common:left" | "common:mon" | "common:month.apr" | "common:month.aug" | "common:month.dec" | "common:month.feb" | "common:month.jan" | "common:month.jul" | "common:month.jun" | "common:month.mar" | "common:month.may" | "common:month.nov" | "common:month.oct" | "common:month.sep" | "common:new" | "common:no.data" | "common:no.options_found" | "common:no.results_found" | "common:nodeGraph.add_node" | "common:nodeGraph.new_node" | "common:nodeGraph.node_name" | "common:notifications" | "common:optional" | "common:overview" | "common:pagination.go" | "common:pagination.go_to" | "common:pagination.items_per_page" | "common:placeholder.email" | "common:placeholder.name" | "common:placeholder.search" | "common:playback.rate" | "common:processing" | "common:profile" | "common:pullToRefresh.loading" | "common:pullToRefresh.pull" | "common:pullToRefresh.release" | "common:quality" | "common:reaction.add_reaction" | "common:reaction.aria_label" | "common:reaction.react_with" | "common:reports" | "common:required" | "common:right" | "common:sampletextforscrollarea" | "common:sat" | "common:saving" | "common:settings" | "common:speedDial.close" | "common:speedDial.open" | "common:standard" | "common:standard_list_item" | "common:status.active" | "common:status.completed" | "common:status.error" | "common:status.idle" | "common:status.info" | "common:status.loading" | "common:status.pending" | "common:status.success" | "common:status.warning" | "common:std.column_auto_integrated" | "common:std.column_component" | "common:std.column_no" | "common:std.column_yes" | "common:std.header_loading_state" | "common:std.header_unified_sizing" | "common:std.std_column_component" | "common:std.std_column_no" | "common:std.std_column_yes" | "common:std.std_header_loading_state" | "common:std.std_header_unified_sizing" | "common:story.carousel_slide_label" | "common:story.thoughtprocess_title_streaming" | "common:story.thoughtprocess_title_thinking" | "common:sun" | "common:thu" | "common:token.bp_cq_criterion" | "common:token.bp_cq_examples" | "common:token.bp_cq_label" | "common:token.bp_cq_note" | "common:token.bp_cq_usage_desc" | "common:token.bp_cq_usage_title" | "common:token.bp_cq_why_desc" | "common:token.bp_cq_why_title" | "common:token.bp_decision_col" | "common:token.bp_desc" | "common:token.bp_down_desc" | "common:token.bp_lg_device" | "common:token.bp_list" | "common:token.bp_md_device" | "common:token.bp_mq_criterion" | "common:token.bp_mq_examples" | "common:token.bp_mq_label" | "common:token.bp_mq_vs_cq_desc" | "common:token.bp_mq_vs_cq_title" | "common:token.bp_scss" | "common:token.bp_scss_desc" | "common:token.bp_sm_device" | "common:token.bp_th_device" | "common:token.bp_th_key" | "common:token.bp_th_width" | "common:token.bp_title" | "common:token.bp_up_desc" | "common:token.bp_xl_device" | "common:token.breakpoints" | "common:token.color_checker_desc" | "common:token.color_checker_title" | "common:token.color_ct_desc" | "common:token.color_ct_title" | "common:token.color_interaction_oklch_desc" | "common:token.color_interaction_oklch_title" | "common:token.color_pccs_th1" | "common:token.color_pccs_th2" | "common:token.color_pccs_th3" | "common:token.color_rgb_alpha_desc" | "common:token.color_rgb_alpha_title" | "common:token.colors" | "common:token.effects" | "common:token.overview_desc" | "common:token.overview_title" | "common:token.pccs" | "common:token.pccs_desc" | "common:token.spacings" | "common:token.type_alias" | "common:token.type_alias_desc" | "common:token.type_alias_th1" | "common:token.type_alias_th2" | "common:token.type_decor" | "common:token.type_desc1" | "common:token.type_desc2" | "common:token.type_ff_desc" | "common:token.type_ff_en" | "common:token.type_ff_ja" | "common:token.type_ff_lang" | "common:token.type_ff_pt" | "common:token.type_ff_stack" | "common:token.type_fontfamily" | "common:token.type_lh_jpan" | "common:token.type_lh_jpan_loose" | "common:token.type_lh_jpan_normal" | "common:token.type_lh_jpan_tight" | "common:token.type_lh_latn" | "common:token.type_lh_latn_loose" | "common:token.type_lh_latn_normal" | "common:token.type_lh_latn_tight" | "common:token.type_lineheight" | "common:token.type_lineheight_lang_desc" | "common:token.type_lineheight_lang_title" | "common:token.type_size" | "common:token.type_text_ex_large" | "common:token.type_text_ex_small" | "common:token.type_text_large" | "common:token.type_text_medium" | "common:token.type_text_small" | "common:token.type_title" | "common:token.type_weight" | "common:token.typography" | "common:top" | "common:tue" | "common:upload" | "common:username" | "common:wed" | "common:welcome" | "components:a11y.avatar" | "components:a11y.close" | "components:a11y.collapse" | "components:a11y.collapse_label" | "components:a11y.expand" | "components:a11y.expand_label" | "components:a11y.rte_bold" | "components:a11y.rte_editor" | "components:a11y.rte_h1" | "components:a11y.rte_h2" | "components:a11y.rte_h3" | "components:a11y.rte_italic" | "components:a11y.rte_link" | "components:a11y.rte_link_apply" | "components:a11y.rte_link_cancel" | "components:a11y.rte_link_prompt" | "components:a11y.rte_ol" | "components:a11y.rte_remove_format" | "components:a11y.rte_strikethrough" | "components:a11y.rte_toolbar" | "components:a11y.rte_ul" | "components:a11y.rte_underline" | "components:a11y.rte_unlink" | "components:annotation.outside_field" | "components:applayout.behavior" | "components:applayout.breakpoint" | "components:applayout.device" | "components:btn.guide_link_btn" | "components:btn.page_transition" | "components:calendar_heatmap.less" | "components:calendar_heatmap.more" | "components:cat.ai" | "components:chat.placeholder" | "components:chat.placeholder_interactive" | "components:chat.send_button" | "components:colorinput.swatch" | "components:colors.tone_mapping" | "components:command_palette.label" | "components:command_palette.no_results" | "components:critical.info_only_in_p_desc" | "components:dashboard.desc" | "components:dashboard.overall_progress" | "components:dashboard.progress" | "components:dashboard.title" | "components:dashboard.total_components" | "components:dashboard_widget.add_widget" | "components:dashboard_widget.enter_edit" | "components:dashboard_widget.exit_edit" | "components:dashboard_widget.grid_label" | "components:dashboard_widget.label" | "components:dashboard_widget.remove_widget" | "components:datacontainer.accordion_desc" | "components:datacontainer.accordion_format" | "components:datacontainer.box_desc" | "components:datacontainer.box_format" | "components:datacontainer.faqsection_desc" | "components:datacontainer.faqsection_format" | "components:datacontainer.guide_desc" | "components:datacontainer.guide_title" | "components:datagrid.empty" | "components:datagrid.loading_more" | "components:datagrid.select_row" | "components:dataindicator.avatar_label" | "components:dataindicator.avatar_usage" | "components:dataindicator.avatargroup_label" | "components:dataindicator.avatargroup_usage" | "components:dataindicator.badge_label" | "components:dataindicator.badge_usage" | "components:dataindicator.calendar_label" | "components:dataindicator.calendar_usage" | "components:dataindicator.chip_label" | "components:dataindicator.chip_usage" | "components:dataindicator.emptystate_label" | "components:dataindicator.emptystate_usage" | "components:dataindicator.guide_desc" | "components:dataindicator.guide_title" | "components:dataindicator.indicator_label" | "components:dataindicator.indicator_usage" | "components:dataindicator.qrcode_label" | "components:dataindicator.qrcode_usage" | "components:dataindicator.relativetime_label" | "components:dataindicator.relativetime_usage" | "components:dataindicator.watermark_label" | "components:dataindicator.watermark_usage" | "components:daterangepicker.end" | "components:daterangepicker.start" | "components:doc.aiResponseFeedback_desc" | "components:doc.autosave_desc" | "components:doc.base_list_desc" | "components:doc.blockquote_desc" | "components:doc.codeBlock_desc" | "components:doc.codeDiffViewer_desc" | "components:doc.countdown_desc" | "components:doc.dashboard_desc" | "components:doc.field_character_count_desc" | "components:doc.field_template_desc" | "components:doc.gallery_desc" | "components:doc.ganttchart_visual_guideline_progress" | "components:doc.imageCropper_desc" | "components:doc.indicator_base_desc" | "components:doc.input_base_desc" | "components:doc.intent" | "components:doc.interactiveArea_desc" | "components:doc.jsonDiffViewer_desc" | "components:doc.keyboardShortcuts_desc" | "components:doc.leaderboard_desc" | "components:doc.levels_title" | "components:doc.menubar_desc" | "components:doc.nodeGraph_desc" | "components:doc.overlay_base_desc" | "components:doc.passwordStrength_desc" | "components:doc.progressRing_desc" | "components:doc.promptInput_desc" | "components:doc.queryBuilder_desc" | "components:doc.querybuilder_a11y_desc" | "components:doc.querybuilder_anatomy_combinator" | "components:doc.querybuilder_anatomy_combinator_label" | "components:doc.querybuilder_anatomy_group" | "components:doc.querybuilder_anatomy_group_label" | "components:doc.querybuilder_anatomy_not" | "components:doc.querybuilder_anatomy_not_label" | "components:doc.querybuilder_anatomy_root" | "components:doc.querybuilder_anatomy_root_label" | "components:doc.querybuilder_anatomy_rule" | "components:doc.querybuilder_anatomy_rule_label" | "components:doc.querybuilder_best_practice_1" | "components:doc.querybuilder_best_practice_2" | "components:doc.querybuilder_choice_filterbar_when" | "components:doc.querybuilder_choice_matrix_desc" | "components:doc.querybuilder_choice_self_when" | "components:doc.querybuilder_content_guideline_1" | "components:doc.querybuilder_content_guideline_2" | "components:doc.querybuilder_design_intent" | "components:doc.querybuilder_i18n_desc" | "components:doc.querybuilder_keyboard_desc" | "components:doc.querybuilder_logic_andor_desc" | "components:doc.querybuilder_logic_andor_title" | "components:doc.querybuilder_logic_desc" | "components:doc.querybuilder_logic_not_desc" | "components:doc.querybuilder_logic_not_title" | "components:doc.querybuilder_logic_title" | "components:doc.querybuilder_motion_desc" | "components:doc.querybuilder_operators_desc" | "components:doc.querybuilder_operators_note" | "components:doc.querybuilder_operators_title" | "components:doc.querybuilder_operators_type" | "components:doc.querybuilder_operators_values" | "components:doc.querybuilder_responsive_desc" | "components:doc.querybuilder_scenario_1" | "components:doc.querybuilder_scenario_2" | "components:doc.querybuilder_token_bg_component" | "components:doc.querybuilder_token_bg_secondary" | "components:doc.querybuilder_token_border" | "components:doc.querybuilder_token_destructive" | "components:doc.querybuilder_token_radius" | "components:doc.querybuilder_token_transition" | "components:doc.reaction_desc" | "components:doc.relativeTime_desc" | "components:doc.richTextEditor_desc" | "components:doc.scheduleView_desc" | "components:doc.score" | "components:doc.segmentedcontrol_choice_alt_when" | "components:doc.segmentedcontrol_choice_self_when" | "components:doc.selection_guide_link" | "components:doc.smartSearchInput_desc" | "components:doc.sourceCitation_desc" | "components:doc.splitButton_desc" | "components:doc.spoiler_desc" | "components:doc.status_content_desc" | "components:doc.streamingText_desc" | "components:doc.tagInput_desc" | "components:doc.terminal_desc" | "components:doc.text_desc" | "components:doc.thoughtProcess_desc" | "components:doc.title_desc" | "components:doc.togglegroup_choice_alt_when" | "components:doc.togglegroup_choice_self_when" | "components:doc.toolbar_desc" | "components:doc.visual_guideline_title" | "components:effects.common_vars" | "components:ensure.contrast" | "components:ex-large.paragraph" | "components:ex-large.span" | "components:ex-small.paragraph" | "components:ex-small.span" | "components:flow.checkbox" | "components:flow.radio" | "components:flow.switch" | "components:gallery.clear_selection" | "components:gallery.deselect_item" | "components:gallery.grid_label" | "components:gallery.select_item" | "components:gallery.selected_count" | "components:gallery.selected_count_plural" | "components:gallery.toolbar_label" | "components:ganttchart.aria_chart" | "components:ganttchart.aria_task_bar" | "components:heading.text" | "components:icon.AlertCircleIcon" | "components:icon.BellIcon" | "components:icon.CalendarIcon" | "components:icon.ChartIcon" | "components:icon.CheckCircleIcon" | "components:icon.CheckIcon" | "components:icon.ChevronDownIcon" | "components:icon.ChevronLeftIcon" | "components:icon.ChevronRightIcon" | "components:icon.ChevronUpIcon" | "components:icon.CircleIcon" | "components:icon.ClockIcon" | "components:icon.CloseIcon" | "components:icon.CloseSmallIcon" | "components:icon.CopyIcon" | "components:icon.DocumentIcon" | "components:icon.DownloadIcon" | "components:icon.EditIcon" | "components:icon.EmailIcon" | "components:icon.ExternalLinkIcon" | "components:icon.EyeIcon" | "components:icon.EyeOffIcon" | "components:icon.FilterIcon" | "components:icon.HelpCircleIcon" | "components:icon.HomeIcon" | "components:icon.HourglassIcon" | "components:icon.ImageIcon" | "components:icon.InfoCircleIcon" | "components:icon.LoadingIcon" | "components:icon.LogInIcon" | "components:icon.LogOutIcon" | "components:icon.MaximizeIcon" | "components:icon.MinimizeIcon" | "components:icon.MinusIcon" | "components:icon.MonitorIcon" | "components:icon.MoonIcon" | "components:icon.MoreHorizontalIcon" | "components:icon.MoreVerticalIcon" | "components:icon.MuteIcon" | "components:icon.PauseIcon" | "components:icon.PdfIcon" | "components:icon.PhoneIcon" | "components:icon.PlayIcon" | "components:icon.PlusIcon" | "components:icon.ProjectIcon" | "components:icon.RefreshIcon" | "components:icon.RepeatIcon" | "components:icon.SearchIcon" | "components:icon.SettingsIcon" | "components:icon.ShareIcon" | "components:icon.ShuffleIcon" | "components:icon.SkipBackIcon" | "components:icon.SkipForwardIcon" | "components:icon.SmartphoneIcon" | "components:icon.SpinnerIcon" | "components:icon.SquareIcon" | "components:icon.StarIcon" | "components:icon.SunIcon" | "components:icon.ThumbDownIcon" | "components:icon.ThumbUpIcon" | "components:icon.TrashIcon" | "components:icon.UploadIcon" | "components:icon.UserIcon" | "components:icon.VideoIcon" | "components:icon.VolumeIcon" | "components:important.rule" | "components:large.paragraph" | "components:large.span" | "components:legend.all_devices" | "components:legend.mobile_only" | "components:legend.pc_only" | "components:lightbox.close" | "components:lightbox.counter" | "components:lightbox.next" | "components:lightbox.open" | "components:lightbox.open_named" | "components:lightbox.previous" | "components:lightbox.zoom_in" | "components:lightbox.zoom_out" | "components:linkvsbutton.btn_examples" | "components:linkvsbutton.btn_typical" | "components:linkvsbutton.link_examples" | "components:linkvsbutton.link_typical" | "components:linkvsbutton.roles_title" | "components:medium.paragraph" | "components:medium.span" | "components:operators.after" | "components:operators.after_or_on" | "components:operators.before" | "components:operators.before_or_on" | "components:operators.contains" | "components:operators.ends_with" | "components:operators.equal" | "components:operators.greater_than" | "components:operators.greater_than_or_equal" | "components:operators.is_not_null" | "components:operators.is_null" | "components:operators.less_than" | "components:operators.less_than_or_equal" | "components:operators.not_equal" | "components:operators.starts_with" | "components:otp.digit" | "components:planned.for_implementation" | "components:query.builder.add_group" | "components:query.builder.add_rule" | "components:query.builder.and" | "components:query.builder.combinator" | "components:query.builder.false" | "components:query.builder.field" | "components:query.builder.field_age" | "components:query.builder.field_birthday" | "components:query.builder.field_first_name" | "components:query.builder.field_is_active" | "components:query.builder.field_last_name" | "components:query.builder.generated_json" | "components:query.builder.group_added" | "components:query.builder.not" | "components:query.builder.operator" | "components:query.builder.or" | "components:query.builder.region_label" | "components:query.builder.remove_group" | "components:query.builder.remove_rule" | "components:query.builder.removed" | "components:query.builder.rule" | "components:query.builder.rule_added" | "components:query.builder.true" | "components:query.builder.value" | "components:rating.readonly_label" | "components:rating.stars" | "components:rule.overload_dont_desc" | "components:rule.same_tier_desc" | "components:rule.same_tier_title" | "components:rule.transparent_props_desc" | "components:rule.transparent_props_title" | "components:rule.unidirectional_desc" | "components:rule.unidirectional_title" | "components:screen.reader" | "components:signature.canvas_label" | "components:signature.clear" | "components:small.paragraph" | "components:small.span" | "components:smart.search_ai_title" | "components:smart.search_match" | "components:smart.search_placeholder" | "components:smart.search_result_1" | "components:smart.search_result_2" | "components:smart.search_suggestions" | "components:smart.search_thinking" | "components:snackbar" | "components:sortable_list.drag_handle_label" | "components:sortable_list.keyboard_instruction" | "components:sortable_list.keyboard_moved" | "components:sortable_list.keyboard_moving" | "components:spoiler.show_less" | "components:spoiler.show_more" | "components:status.disabled" | "components:status.done" | "components:status.enabled" | "components:status.planning" | "components:table.header_a11y" | "components:table.header_action" | "components:table.header_benefits" | "components:table.header_category" | "components:table.header_component" | "components:table.header_components" | "components:table.header_conditions" | "components:table.header_consistency" | "components:table.header_content" | "components:table.header_criticality" | "components:table.header_description" | "components:table.header_detail_reason" | "components:table.header_details" | "components:table.header_example" | "components:table.header_feature" | "components:table.header_flexibility" | "components:table.header_flow" | "components:table.header_format" | "components:table.header_guideline" | "components:table.header_impl_effect" | "components:table.header_input_content" | "components:table.header_item" | "components:table.header_overview" | "components:table.header_placeholder_use" | "components:table.header_placement" | "components:table.header_platform" | "components:table.header_priority" | "components:table.header_problems" | "components:table.header_progress" | "components:table.header_purpose" | "components:table.header_reason" | "components:table.header_recommended" | "components:table.header_recommended_component" | "components:table.header_recommended_scene" | "components:table.header_role" | "components:table.header_rule" | "components:table.header_scannability" | "components:table.header_specific_usage" | "components:table.header_status" | "components:table.header_target" | "components:table.header_timing" | "components:table.header_type" | "components:table.header_usage" | "components:table.header_visibility" | "components:table.header_visual_features" | "components:term.checkbox" | "components:term.radio" | "components:term.switch" | "components:tier1.desc" | "components:tier1.role" | "components:tier2.desc" | "components:tier2.role" | "components:tier3.desc" | "components:tier3.role" | "components:tier4.desc" | "components:tier4.role" | "components:timing.deferred" | "components:timing.immediate" | "components:toast" | "components:too.light_color_dont_desc" | "components:treeview.collapse" | "components:treeview.expand" | "components:treeview.search_aria" | "components:typo.code_desc" | "components:typo.code_usage" | "components:typo.compare_table" | "components:typo.contrast_desc" | "components:typo.contrast_rule" | "components:typo.filled_style" | "components:typo.filled_usage" | "components:typo.guide_desc" | "components:typo.guide_title" | "components:typo.html_tag" | "components:typo.icon_alt_desc" | "components:typo.icon_alt_rule" | "components:typo.icon_aria_desc" | "components:typo.icon_basics" | "components:typo.icon_role_desc" | "components:typo.icon_usage" | "components:typo.inline_desc" | "components:typo.inline_usage" | "components:typo.kbd_desc" | "components:typo.link_desc" | "components:typo.mark_desc" | "components:typo.mark_usage" | "components:typo.outline_style" | "components:typo.outline_usage" | "components:typo.quote_desc" | "components:typo.quote_usage" | "components:typo.readability_desc" | "components:typo.readability_rule" | "components:typo.semantics_desc" | "components:typo.semantics_rule" | "components:typo.style_label" | "components:typo.text_desc" | "components:typo.text_usage" | "components:typo.title_desc" | "components:typo.title_usage" | "components:typo.u11y_a11y_title" | "components:unit.a11y_desc" | "components:unit.a11y_title" | "components:unit.comparison_table" | "components:unit.fixed_desc" | "components:unit.fixed_title" | "components:unit.guide_desc" | "components:unit.guide_title" | "components:unit.item_px_desc" | "components:unit.item_relative_desc" | "components:unit.item_rem_desc" | "components:unit.item_viewport_desc" | "components:unit.rem_label" | "components:unit.responsive_desc" | "components:unit.responsive_title" | "components:unit.selection_points" | "components:unit.usage_details" | "components:unit.usage_layout_flow" | "components:unit.usage_screen_fit" | "components:unit.usage_typography" | "components:util.a11y_priority" | "components:util.a11y_strong_allies_desc" | "components:util.accessible_hide" | "components:util.custom_scroll" | "components:util.design_considerations" | "components:util.divider_type" | "components:util.divider_usage_desc" | "components:util.dom_portal" | "components:util.error_boundary_label" | "components:util.error_handling" | "components:util.errorboundary_resilient_note" | "components:util.errorboundary_usage_desc" | "components:util.excessive_portal_avoid" | "components:util.fail_safe_design" | "components:util.focus_control" | "components:util.focus_trap_label" | "components:util.focustrap_usage_desc" | "components:util.guide_title" | "components:util.infinite_scroll_label" | "components:util.infscroll_perf_note" | "components:util.infscroll_usage_desc" | "components:util.markdown_security" | "components:util.markdown_type" | "components:util.markdown_usage_desc" | "components:util.markdown_xss_note" | "components:util.marquee_usage_desc" | "components:util.performance_consideration" | "components:util.portal_debug_note" | "components:util.portal_usage_desc" | "components:util.scroll_area_label" | "components:util.scrollarea_usage_desc" | "components:util.scrollprogress_placement" | "components:util.scrollprogress_pos_note" | "components:util.scrollprogress_usage_desc" | "components:util.tech_utilities" | "components:util.text_scrolling" | "components:util.transition_usage_desc" | "components:util.usage_points" | "components:util.vh_usage_desc" | "components:util.visual_utilities" | "components:util.visually_hidden_label" | "components:utility.guide" | "components:vis.absolute_diff" | "components:vis.chart_colors" | "components:vis.concentration" | "components:vis.correlation" | "components:vis.intermittent" | "components:vis.large_items" | "components:vis.login_freq" | "components:vis.outliers" | "components:vis.ratio" | "components:vis.recharts_desc" | "components:vis.relationship" | "components:vis.share" | "components:vis.small_items" | "components:visual.accessibility" | "copied" | "copy.to_clipboard" | "countdown.remaining" | "critical.info_only_in_p_desc" | "dashboard.desc" | "dashboard.intro" | "dashboard.overall_progress" | "dashboard.progress" | "dashboard.title" | "dashboard.tokens_link" | "dashboard.total_components" | "dashboard_widget.add_widget" | "dashboard_widget.enter_edit" | "dashboard_widget.exit_edit" | "dashboard_widget.grid_label" | "dashboard_widget.label" | "dashboard_widget.remove_widget" | "data-display:calendar.aria_date" | "data-display:calendar.title" | "data-display:countdown.remaining" | "data-display:table.header_component" | "data-display:table.header_overview" | "data-display:table.header_placement" | "data-display:table.header_usage" | "dataGrid.displaying" | "dataGrid.loading_more" | "dataGrid.rows_selected" | "datacontainer.accordion_desc" | "datacontainer.accordion_format" | "datacontainer.box_desc" | "datacontainer.box_format" | "datacontainer.faqsection_desc" | "datacontainer.faqsection_format" | "datacontainer.guide_desc" | "datacontainer.guide_title" | "datagrid.empty" | "datagrid.loading_more" | "datagrid.select_row" | "dataindicator.avatar_label" | "dataindicator.avatar_usage" | "dataindicator.avatargroup_label" | "dataindicator.avatargroup_usage" | "dataindicator.badge_label" | "dataindicator.badge_usage" | "dataindicator.calendar_label" | "dataindicator.calendar_usage" | "dataindicator.chip_label" | "dataindicator.chip_usage" | "dataindicator.emptystate_label" | "dataindicator.emptystate_usage" | "dataindicator.guide_desc" | "dataindicator.guide_title" | "dataindicator.indicator_label" | "dataindicator.indicator_usage" | "dataindicator.qrcode_label" | "dataindicator.qrcode_usage" | "dataindicator.relativetime_label" | "dataindicator.relativetime_usage" | "dataindicator.watermark_label" | "dataindicator.watermark_usage" | "daterangepicker.end" | "daterangepicker.start" | "doc.a11y_spec_title" | "doc.aiResponseFeedback_desc" | "doc.anatomy_module_note" | "doc.anatomy_title" | "doc.api_reference" | "doc.autosave_desc" | "doc.baseListItem_a11y_desc" | "doc.baseListItem_anatomy_content_desc" | "doc.baseListItem_anatomy_content_label" | "doc.baseListItem_anatomy_root_desc" | "doc.baseListItem_anatomy_root_label" | "doc.baseListItem_best_practice_1" | "doc.baseListItem_best_practice_2" | "doc.baseListItem_choice_alt_when" | "doc.baseListItem_choice_matrix_desc" | "doc.baseListItem_choice_use_when" | "doc.baseListItem_content_guideline_1" | "doc.baseListItem_content_guideline_2" | "doc.baseListItem_design_intent" | "doc.baseListItem_i18n_desc" | "doc.baseListItem_keyboard_desc" | "doc.baseListItem_long_desc" | "doc.baseListItem_motion_desc" | "doc.baseListItem_responsive_desc" | "doc.baseListItem_scenario_1" | "doc.baseListItem_scenario_2" | "doc.baseListItem_tokens_desc" | "doc.baseListItem_usage_desc" | "doc.base_list_desc" | "doc.best_practice_footer" | "doc.best_practices_title" | "doc.blockquote_desc" | "doc.button_a11y_desc" | "doc.button_motion_desc" | "doc.button_scenario_desc" | "doc.choice_matrix_title" | "doc.codeBlock_desc" | "doc.codeDiffViewer_desc" | "doc.component" | "doc.content_guidelines_title" | "doc.countdown_desc" | "doc.danger" | "doc.dashboard_desc" | "doc.description" | "doc.design_intent_title" | "doc.fieldTemplate_a11y_desc" | "doc.fieldTemplate_anatomy_content_desc" | "doc.fieldTemplate_anatomy_content_label" | "doc.fieldTemplate_anatomy_error_desc" | "doc.fieldTemplate_anatomy_error_label" | "doc.fieldTemplate_anatomy_label_desc" | "doc.fieldTemplate_anatomy_label_label" | "doc.fieldTemplate_anatomy_required_desc" | "doc.fieldTemplate_anatomy_required_label" | "doc.fieldTemplate_best_practice_1" | "doc.fieldTemplate_best_practice_2" | "doc.fieldTemplate_choice_alt_when" | "doc.fieldTemplate_choice_matrix_desc" | "doc.fieldTemplate_choice_use_when" | "doc.fieldTemplate_content_guideline_1" | "doc.fieldTemplate_content_guideline_2" | "doc.fieldTemplate_design_intent" | "doc.fieldTemplate_i18n_desc" | "doc.fieldTemplate_keyboard_desc" | "doc.fieldTemplate_long_desc" | "doc.fieldTemplate_motion_desc" | "doc.fieldTemplate_scenario_1" | "doc.fieldTemplate_scenario_2" | "doc.fieldTemplate_usage_desc" | "doc.field_character_count_desc" | "doc.field_template_desc" | "doc.gallery_desc" | "doc.ganttchart_visual_guideline_progress" | "doc.i18n_docgen_intro" | "doc.i18n_docgen_none" | "doc.i18n_title" | "doc.iconButton_desc" | "doc.imageCropper_desc" | "doc.indicator_base_desc" | "doc.inputBase_a11y_desc" | "doc.inputBase_anatomy_content_desc" | "doc.inputBase_anatomy_content_label" | "doc.inputBase_anatomy_root_desc" | "doc.inputBase_anatomy_root_label" | "doc.inputBase_best_practice_1" | "doc.inputBase_best_practice_2" | "doc.inputBase_choice_alt_when" | "doc.inputBase_choice_matrix_desc" | "doc.inputBase_choice_use_when" | "doc.inputBase_content_guideline_1" | "doc.inputBase_content_guideline_2" | "doc.inputBase_design_intent" | "doc.inputBase_i18n_desc" | "doc.inputBase_keyboard_desc" | "doc.inputBase_long_desc" | "doc.inputBase_motion_desc" | "doc.inputBase_responsive_desc" | "doc.inputBase_scenario_1" | "doc.inputBase_scenario_2" | "doc.inputBase_tokens_desc" | "doc.inputBase_usage_desc" | "doc.input_base_desc" | "doc.intent" | "doc.interactiveArea_desc" | "doc.jsonDiffViewer_desc" | "doc.json_viewer_a11y_desc" | "doc.json_viewer_best_practice_1" | "doc.json_viewer_best_practice_2" | "doc.json_viewer_choice_matrix_desc" | "doc.json_viewer_content_guideline_1" | "doc.json_viewer_content_guideline_2" | "doc.json_viewer_desc" | "doc.json_viewer_design_intent" | "doc.json_viewer_i18n_desc" | "doc.json_viewer_keyboard_desc" | "doc.json_viewer_motion_desc" | "doc.json_viewer_responsive_desc" | "doc.json_viewer_scenario_1" | "doc.json_viewer_scenario_2" | "doc.keyboardShortcuts_desc" | "doc.keyboard_nav_title" | "doc.label" | "doc.label_a11y_desc" | "doc.label_anatomy_content" | "doc.label_anatomy_content_label" | "doc.label_anatomy_root" | "doc.label_anatomy_root_label" | "doc.label_best_practice_1" | "doc.label_best_practice_2" | "doc.label_choice_alt_when" | "doc.label_choice_matrix_desc" | "doc.label_choice_self_when" | "doc.label_content_guideline" | "doc.label_design_intent" | "doc.label_i18n_desc" | "doc.label_keyboard_desc" | "doc.label_long_desc" | "doc.label_motion_desc" | "doc.label_responsive_desc" | "doc.label_scenario_1" | "doc.label_scenario_2" | "doc.label_title" | "doc.label_tokens_desc" | "doc.leaderboard_desc" | "doc.levels_title" | "doc.location" | "doc.menubar_desc" | "doc.motion_spec_title" | "doc.nodeGraph_desc" | "doc.op_cancel" | "doc.op_edit_save" | "doc.op_navigate" | "doc.overlay_base_desc" | "doc.passwordStrength_desc" | "doc.progressRing_desc" | "doc.promptInput_desc" | "doc.props_none" | "doc.props_title" | "doc.pull_to_refresh_a11y_desc" | "doc.pull_to_refresh_best_practice_1" | "doc.pull_to_refresh_best_practice_2" | "doc.pull_to_refresh_choice_matrix_desc" | "doc.pull_to_refresh_content_guideline_1" | "doc.pull_to_refresh_content_guideline_2" | "doc.pull_to_refresh_desc" | "doc.pull_to_refresh_design_intent" | "doc.pull_to_refresh_i18n_desc" | "doc.pull_to_refresh_keyboard_desc" | "doc.pull_to_refresh_motion_desc" | "doc.pull_to_refresh_responsive_desc" | "doc.pull_to_refresh_scenario_1" | "doc.pull_to_refresh_scenario_2" | "doc.queryBuilder_desc" | "doc.querybuilder_a11y_desc" | "doc.querybuilder_anatomy_combinator" | "doc.querybuilder_anatomy_combinator_label" | "doc.querybuilder_anatomy_group" | "doc.querybuilder_anatomy_group_label" | "doc.querybuilder_anatomy_not" | "doc.querybuilder_anatomy_not_label" | "doc.querybuilder_anatomy_root" | "doc.querybuilder_anatomy_root_label" | "doc.querybuilder_anatomy_rule" | "doc.querybuilder_anatomy_rule_label" | "doc.querybuilder_best_practice_1" | "doc.querybuilder_best_practice_2" | "doc.querybuilder_choice_filterbar_when" | "doc.querybuilder_choice_matrix_desc" | "doc.querybuilder_choice_self_when" | "doc.querybuilder_content_guideline_1" | "doc.querybuilder_content_guideline_2" | "doc.querybuilder_design_intent" | "doc.querybuilder_i18n_desc" | "doc.querybuilder_keyboard_desc" | "doc.querybuilder_logic_andor_desc" | "doc.querybuilder_logic_andor_title" | "doc.querybuilder_logic_desc" | "doc.querybuilder_logic_not_desc" | "doc.querybuilder_logic_not_title" | "doc.querybuilder_logic_title" | "doc.querybuilder_motion_desc" | "doc.querybuilder_operators_desc" | "doc.querybuilder_operators_note" | "doc.querybuilder_operators_title" | "doc.querybuilder_operators_type" | "doc.querybuilder_operators_values" | "doc.querybuilder_responsive_desc" | "doc.querybuilder_scenario_1" | "doc.querybuilder_scenario_2" | "doc.querybuilder_token_bg_component" | "doc.querybuilder_token_bg_secondary" | "doc.querybuilder_token_border" | "doc.querybuilder_token_destructive" | "doc.querybuilder_token_radius" | "doc.querybuilder_token_transition" | "doc.reaction_desc" | "doc.real_world_scenarios_title" | "doc.recommendation" | "doc.relativeTime_desc" | "doc.responsive_title" | "doc.richTextEditor_desc" | "doc.scenario" | "doc.scenario_404_title" | "doc.scenario_admin_title" | "doc.scenario_agreement_title" | "doc.scenario_ai_title" | "doc.scenario_article_title" | "doc.scenario_chat_title" | "doc.scenario_collab_title" | "doc.scenario_comment_title" | "doc.scenario_confirm_title" | "doc.scenario_copy_title" | "doc.scenario_cta_title" | "doc.scenario_dashboard_title" | "doc.scenario_delete_title" | "doc.scenario_detail_title" | "doc.scenario_ec_title" | "doc.scenario_event_title" | "doc.scenario_fail_title" | "doc.scenario_faq_title" | "doc.scenario_feature_title" | "doc.scenario_feed_title" | "doc.scenario_files_title" | "doc.scenario_filter_title" | "doc.scenario_form_title" | "doc.scenario_gallery_title" | "doc.scenario_gender_title" | "doc.scenario_help_title" | "doc.scenario_hero_title" | "doc.scenario_icon_title" | "doc.scenario_inbox_title" | "doc.scenario_init_title" | "doc.scenario_list_title" | "doc.scenario_maintenance_title" | "doc.scenario_nav_title" | "doc.scenario_notif_title" | "doc.scenario_pagination_title" | "doc.scenario_payment_title" | "doc.scenario_product_title" | "doc.scenario_products_title" | "doc.scenario_profile_title" | "doc.scenario_refresh_title" | "doc.scenario_save_title" | "doc.scenario_search_title" | "doc.scenario_settings_title" | "doc.scenario_sns_title" | "doc.scenario_stats_title" | "doc.scenario_status_title" | "doc.scenario_subscription_title" | "doc.scenario_toc_title" | "doc.scenario_toggle_title" | "doc.scenario_toolbar_title" | "doc.scenario_trial_title" | "doc.scenario_undo_title" | "doc.scenario_user_title" | "doc.scenario_warning_title" | "doc.scheduleView_desc" | "doc.score" | "doc.see_more" | "doc.segmentedcontrol_choice_alt_when" | "doc.segmentedcontrol_choice_self_when" | "doc.selection_guide_link" | "doc.smartSearchInput_desc" | "doc.sourceCitation_desc" | "doc.speed_dial_a11y_desc" | "doc.speed_dial_best_practice_1" | "doc.speed_dial_best_practice_2" | "doc.speed_dial_choice_matrix_desc" | "doc.speed_dial_content_guideline_1" | "doc.speed_dial_content_guideline_2" | "doc.speed_dial_desc" | "doc.speed_dial_design_intent" | "doc.speed_dial_i18n_desc" | "doc.speed_dial_keyboard_desc" | "doc.speed_dial_motion_desc" | "doc.speed_dial_responsive_desc" | "doc.speed_dial_scenario_1" | "doc.speed_dial_scenario_2" | "doc.splitButton_desc" | "doc.spoiler_desc" | "doc.status_content_desc" | "doc.std_column_component" | "doc.std_column_no" | "doc.std_column_yes" | "doc.std_header_loading_state" | "doc.std_header_unified_sizing" | "doc.stories" | "doc.story_default" | "doc.story_disabled" | "doc.story_error" | "doc.story_ghost" | "doc.story_horizontal" | "doc.story_multiple_icons" | "doc.story_no_label" | "doc.story_states" | "doc.story_with_badge" | "doc.story_with_icon" | "doc.story_with_icons" | "doc.story_with_right_section" | "doc.streamingText_desc" | "doc.summary" | "doc.swipe_action_a11y_desc" | "doc.swipe_action_best_practice_1" | "doc.swipe_action_best_practice_2" | "doc.swipe_action_choice_matrix_desc" | "doc.swipe_action_content_guideline_1" | "doc.swipe_action_content_guideline_2" | "doc.swipe_action_desc" | "doc.swipe_action_design_intent" | "doc.swipe_action_i18n_desc" | "doc.swipe_action_keyboard_desc" | "doc.swipe_action_motion_desc" | "doc.swipe_action_responsive_desc" | "doc.swipe_action_scenario_1" | "doc.swipe_action_scenario_2" | "doc.tagInput_desc" | "doc.tag_deletable" | "doc.tag_deletable_desc" | "doc.terminal_desc" | "doc.test_description" | "doc.test_title" | "doc.text_desc" | "doc.thoughtProcess_desc" | "doc.title_desc" | "doc.togglegroup_choice_alt_when" | "doc.togglegroup_choice_self_when" | "doc.tokens_title" | "doc.toolbar_desc" | "doc.transfer_i18n_desc" | "doc.transition" | "doc.usage" | "doc.usage_scenario" | "doc.visual_guideline_title" | "dropzone.description" | "effects.common_vars" | "ensure.contrast" | "error.boundary_hide_details" | "error.boundary_retry" | "error.boundary_show_details" | "error.boundary_title" | "error.invalid" | "error.required" | "ex-large.paragraph" | "ex-large.span" | "ex-small.paragraph" | "ex-small.span" | "fileupload.button" | "fileupload.no_file" | "flow.checkbox" | "flow.radio" | "flow.switch" | "form.optional" | "form.required" | "form:agent_status.done" | "form:agent_status.error" | "form:agent_status.idle" | "form:agent_status.running" | "form:agent_status.thinking" | "form:agent_status.waiting" | "form:ai_feedback.group_label" | "form:ai_feedback.negative_label" | "form:ai_feedback.positive_label" | "form:ai_feedback.regenerate_label" | "form:artifact_overlay.maximize" | "form:artifact_overlay.minimize" | "form:btn.page_transition" | "form:button.clear" | "form:button.close" | "form:button.consistency" | "form:button.consistency_desc" | "form:button.copy_desc" | "form:button.copy_usage" | "form:button.dismiss" | "form:button.group_desc" | "form:button.group_usage" | "form:button.guide_desc" | "form:button.guide_title" | "form:button.guideline_detail" | "form:button.guideline_principle" | "form:button.icon_usage" | "form:button.label" | "form:button.link_desc" | "form:button.placement_conflict" | "form:button.placement_conflict_desc" | "form:button.placement_desc" | "form:button.priority_weighting" | "form:button.semantics_desc" | "form:button.semantics_guide_ref" | "form:button.standard_desc" | "form:button.standard_usage" | "form:code_block.collapse_label" | "form:code_block.copied_label" | "form:code_block.copy_label" | "form:code_block.expand_label" | "form:code_block.lines" | "form:code_diff_viewer.applied" | "form:code_diff_viewer.apply" | "form:code_diff_viewer.copied_label" | "form:code_diff_viewer.copy_label" | "form:code_diff_viewer.reject" | "form:code_diff_viewer.split_view" | "form:code_diff_viewer.unified_view" | "form:combobox.no_results" | "form:dropzone.description" | "form:fileupload.button" | "form:fileupload.no_file" | "form:form.optional" | "form:form.required" | "form:image_cropper.apply" | "form:image_cropper.cancel" | "form:image_cropper.confirm" | "form:image_cropper.confirm_message" | "form:image_cropper.confirm_title" | "form:image_cropper.no_image" | "form:image_cropper.rotate" | "form:image_cropper.zoom" | "form:markdown.task_done" | "form:markdown.task_todo" | "form:otp.digit" | "form:password_strength.fair" | "form:password_strength.strong" | "form:password_strength.very_strong" | "form:password_strength.very_weak" | "form:password_strength.weak" | "form:phone.number" | "form:prompt_input.aria_label" | "form:prompt_input.attach_label" | "form:prompt_input.send_label" | "form:select.no_options" | "form:select.option" | "form:smart_search.input_label" | "form:source_citation.open_source" | "form:source_citation.source_label" | "form:tag_input.input_label" | "form:terminal.clear_label" | "form:terminal.copied_label" | "form:terminal.copy_label" | "form:transfer.move_to_source" | "form:transfer.move_to_target" | "form:transfer.no_data" | "form:transfer.source" | "form:transfer.status_moved_to_source" | "form:transfer.status_moved_to_target" | "form:transfer.target" | "fri" | "gallery.clear_selection" | "gallery.deselect_item" | "gallery.grid_label" | "gallery.select_item" | "gallery.selected_count" | "gallery.selected_count_plural" | "gallery.toolbar_label" | "ganttchart.aria_chart" | "ganttchart.aria_task_bar" | "greeting" | "guide.action_std_affected_components" | "guide.action_std_concept_desc" | "guide.action_std_concept_title" | "guide.action_std_desc" | "guide.action_std_note_desc" | "guide.action_std_note_title" | "guide.action_std_rule_1_desc" | "guide.action_std_rule_1_title" | "guide.action_std_rule_2_desc" | "guide.action_std_rule_2_title" | "guide.action_std_rule_3_desc" | "guide.action_std_rule_3_title" | "guide.action_std_rule_4_desc" | "guide.action_std_rule_4_title" | "guide.action_std_rule_header_desc" | "guide.action_std_rule_header_title" | "guide.action_std_rules_title" | "guide.action_std_title" | "guide.numeric_std_concept_desc" | "guide.numeric_std_concept_title" | "guide.numeric_std_desc" | "guide.numeric_std_exp_notation_desc" | "guide.numeric_std_firefox_behavior" | "guide.numeric_std_i18n_desc" | "guide.numeric_std_keyboard_desc" | "guide.numeric_std_problem_1_desc" | "guide.numeric_std_problem_1_title" | "guide.numeric_std_problem_2_desc" | "guide.numeric_std_problem_2_title" | "guide.numeric_std_problem_3_desc" | "guide.numeric_std_problem_3_title" | "guide.numeric_std_problem_4_desc" | "guide.numeric_std_problem_4_title" | "guide.numeric_std_problems_title" | "guide.numeric_std_recommend_desc" | "guide.numeric_std_recommend_title" | "guide.numeric_std_responsive_desc" | "guide.numeric_std_safari_behavior" | "guide.numeric_std_spin_button_warning" | "guide.numeric_std_table_behavior" | "guide.numeric_std_table_browser" | "guide.numeric_std_table_input_disabled" | "guide.numeric_std_table_input_js_empty" | "guide.numeric_std_table_input_status" | "guide.numeric_std_test_desc" | "guide.numeric_std_title" | "guide.numeric_std_tokens_desc" | "guide.numeric_std_usage_desc" | "guide.numeric_std_usage_do_1" | "guide.numeric_std_usage_dont_1" | "guide.numeric_std_usage_dont_2" | "guide.numeric_std_usage_dont_3" | "guide.numeric_std_usage_warning_desc" | "guide.numeric_std_usage_warning_title" | "heading.text" | "home" | "icon.AlertCircleIcon" | "icon.BellIcon" | "icon.CalendarIcon" | "icon.ChartIcon" | "icon.CheckCircleIcon" | "icon.CheckIcon" | "icon.ChevronDownIcon" | "icon.ChevronLeftIcon" | "icon.ChevronRightIcon" | "icon.ChevronUpIcon" | "icon.CircleIcon" | "icon.ClockIcon" | "icon.CloseIcon" | "icon.CloseSmallIcon" | "icon.CopyIcon" | "icon.DocumentIcon" | "icon.DownloadIcon" | "icon.EditIcon" | "icon.EmailIcon" | "icon.ExternalLinkIcon" | "icon.EyeIcon" | "icon.EyeOffIcon" | "icon.FilterIcon" | "icon.HelpCircleIcon" | "icon.HomeIcon" | "icon.HourglassIcon" | "icon.ImageIcon" | "icon.InfoCircleIcon" | "icon.LoadingIcon" | "icon.LogInIcon" | "icon.LogOutIcon" | "icon.MaximizeIcon" | "icon.MinimizeIcon" | "icon.MinusIcon" | "icon.MonitorIcon" | "icon.MoonIcon" | "icon.MoreHorizontalIcon" | "icon.MoreVerticalIcon" | "icon.MuteIcon" | "icon.PauseIcon" | "icon.PdfIcon" | "icon.PhoneIcon" | "icon.PlayIcon" | "icon.PlusIcon" | "icon.ProjectIcon" | "icon.RefreshIcon" | "icon.RepeatIcon" | "icon.SearchIcon" | "icon.SettingsIcon" | "icon.ShareIcon" | "icon.ShuffleIcon" | "icon.SkipBackIcon" | "icon.SkipForwardIcon" | "icon.SmartphoneIcon" | "icon.SpinnerIcon" | "icon.SquareIcon" | "icon.StarIcon" | "icon.SunIcon" | "icon.ThumbDownIcon" | "icon.ThumbUpIcon" | "icon.TrashIcon" | "icon.UploadIcon" | "icon.UserIcon" | "icon.VideoIcon" | "icon.VolumeIcon" | "image_cropper.apply" | "image_cropper.cancel" | "image_cropper.confirm" | "image_cropper.confirm_message" | "image_cropper.confirm_title" | "image_cropper.no_image" | "image_cropper.rotate" | "image_cropper.zoom" | "important.rule" | "jsonViewer.addItem" | "jsonViewer.collapse" | "jsonViewer.copy" | "jsonViewer.deleteItem" | "jsonViewer.edit" | "jsonViewer.expand" | "jsonViewer.title" | "language.en" | "language.ja" | "language.pt" | "language.support" | "large.paragraph" | "large.span" | "learn.more" | "left" | "legend.all_devices" | "legend.mobile_only" | "legend.pc_only" | "lightbox.close" | "lightbox.counter" | "lightbox.next" | "lightbox.open" | "lightbox.open_named" | "lightbox.previous" | "lightbox.zoom_in" | "lightbox.zoom_out" | "linkvsbutton.btn_examples" | "linkvsbutton.btn_typical" | "linkvsbutton.link_examples" | "linkvsbutton.link_typical" | "linkvsbutton.roles_title" | "markdown.task_done" | "markdown.task_todo" | "medium.paragraph" | "medium.span" | "mon" | "month.apr" | "month.aug" | "month.dec" | "month.feb" | "month.jan" | "month.jul" | "month.jun" | "month.mar" | "month.may" | "month.nov" | "month.oct" | "month.sep" | "new" | "no.data" | "no.options_found" | "no.results_found" | "nodeGraph.add_node" | "nodeGraph.new_node" | "nodeGraph.node_name" | "notifications" | "operators.after" | "operators.after_or_on" | "operators.before" | "operators.before_or_on" | "operators.contains" | "operators.ends_with" | "operators.equal" | "operators.greater_than" | "operators.greater_than_or_equal" | "operators.is_not_null" | "operators.is_null" | "operators.less_than" | "operators.less_than_or_equal" | "operators.not_equal" | "operators.starts_with" | "optional" | "otp.digit" | "overview" | "pagination.go" | "pagination.go_to" | "pagination.items_per_page" | "password_strength.fair" | "password_strength.strong" | "password_strength.very_strong" | "password_strength.very_weak" | "password_strength.weak" | "phone.number" | "placeholder.email" | "placeholder.name" | "placeholder.search" | "planned.for_implementation" | "playback.rate" | "processing" | "profile" | "prompt_input.aria_label" | "prompt_input.attach_label" | "prompt_input.send_label" | "pullToRefresh.loading" | "pullToRefresh.pull" | "pullToRefresh.release" | "quality" | "query.builder.add_group" | "query.builder.add_rule" | "query.builder.and" | "query.builder.combinator" | "query.builder.false" | "query.builder.field" | "query.builder.field_age" | "query.builder.field_birthday" | "query.builder.field_first_name" | "query.builder.field_is_active" | "query.builder.field_last_name" | "query.builder.generated_json" | "query.builder.group_added" | "query.builder.not" | "query.builder.operator" | "query.builder.or" | "query.builder.region_label" | "query.builder.remove_group" | "query.builder.remove_rule" | "query.builder.removed" | "query.builder.rule" | "query.builder.rule_added" | "query.builder.true" | "query.builder.value" | "rating.readonly_label" | "rating.stars" | "reaction.add_reaction" | "reaction.aria_label" | "reaction.react_with" | "reports" | "required" | "right" | "rule.overload_dont_desc" | "rule.same_tier_desc" | "rule.same_tier_title" | "rule.transparent_props_desc" | "rule.transparent_props_title" | "rule.unidirectional_desc" | "rule.unidirectional_title" | "sampletextforscrollarea" | "sat" | "saving" | "screen.reader" | "select.no_options" | "select.option" | "settings" | "signature.canvas_label" | "signature.clear" | "small.paragraph" | "small.span" | "smart.search_ai_title" | "smart.search_match" | "smart.search_placeholder" | "smart.search_result_1" | "smart.search_result_2" | "smart.search_suggestions" | "smart.search_thinking" | "smart_search.input_label" | "snackbar" | "sortable_list.drag_handle_label" | "sortable_list.keyboard_instruction" | "sortable_list.keyboard_moved" | "sortable_list.keyboard_moving" | "source_citation.open_source" | "source_citation.source_label" | "speedDial.close" | "speedDial.open" | "spoiler.show_less" | "spoiler.show_more" | "standard" | "standard_list_item" | "status.active" | "status.completed" | "status.disabled" | "status.done" | "status.enabled" | "status.error" | "status.idle" | "status.info" | "status.loading" | "status.pending" | "status.planning" | "status.success" | "status.warning" | "std.column_auto_integrated" | "std.column_component" | "std.column_no" | "std.column_yes" | "std.header_loading_state" | "std.header_unified_sizing" | "std.std_column_component" | "std.std_column_no" | "std.std_column_yes" | "std.std_header_loading_state" | "std.std_header_unified_sizing" | "story.carousel_slide_label" | "story.thoughtprocess_title_streaming" | "story.thoughtprocess_title_thinking" | "sun" | "table.header_a11y" | "table.header_action" | "table.header_benefits" | "table.header_category" | "table.header_component" | "table.header_components" | "table.header_conditions" | "table.header_consistency" | "table.header_content" | "table.header_criticality" | "table.header_description" | "table.header_detail_reason" | "table.header_details" | "table.header_example" | "table.header_feature" | "table.header_flexibility" | "table.header_flow" | "table.header_format" | "table.header_guideline" | "table.header_impl_effect" | "table.header_input_content" | "table.header_item" | "table.header_overview" | "table.header_placeholder_use" | "table.header_placement" | "table.header_platform" | "table.header_priority" | "table.header_problems" | "table.header_progress" | "table.header_purpose" | "table.header_reason" | "table.header_recommended" | "table.header_recommended_component" | "table.header_recommended_scene" | "table.header_role" | "table.header_rule" | "table.header_scannability" | "table.header_specific_usage" | "table.header_status" | "table.header_target" | "table.header_timing" | "table.header_type" | "table.header_usage" | "table.header_visibility" | "table.header_visual_features" | "tag_input.input_label" | "term.checkbox" | "term.radio" | "term.switch" | "terminal.clear_label" | "terminal.copied_label" | "terminal.copy_label" | "thu" | "tier1.desc" | "tier1.role" | "tier2.desc" | "tier2.role" | "tier3.desc" | "tier3.role" | "tier4.desc" | "tier4.role" | "timing.deferred" | "timing.immediate" | "toast" | "token.bp_cq_criterion" | "token.bp_cq_examples" | "token.bp_cq_label" | "token.bp_cq_note" | "token.bp_cq_usage_desc" | "token.bp_cq_usage_title" | "token.bp_cq_why_desc" | "token.bp_cq_why_title" | "token.bp_decision_col" | "token.bp_desc" | "token.bp_down_desc" | "token.bp_lg_device" | "token.bp_list" | "token.bp_md_device" | "token.bp_mq_criterion" | "token.bp_mq_examples" | "token.bp_mq_label" | "token.bp_mq_vs_cq_desc" | "token.bp_mq_vs_cq_title" | "token.bp_scss" | "token.bp_scss_desc" | "token.bp_sm_device" | "token.bp_th_device" | "token.bp_th_key" | "token.bp_th_width" | "token.bp_title" | "token.bp_up_desc" | "token.bp_xl_device" | "token.breakpoints" | "token.color_checker_desc" | "token.color_checker_title" | "token.color_ct_desc" | "token.color_ct_title" | "token.color_interaction_oklch_desc" | "token.color_interaction_oklch_title" | "token.color_pccs_th1" | "token.color_pccs_th2" | "token.color_pccs_th3" | "token.color_rgb_alpha_desc" | "token.color_rgb_alpha_title" | "token.colors" | "token.effects" | "token.overview_desc" | "token.overview_title" | "token.pccs" | "token.pccs_desc" | "token.spacings" | "token.type_alias" | "token.type_alias_desc" | "token.type_alias_th1" | "token.type_alias_th2" | "token.type_decor" | "token.type_desc1" | "token.type_desc2" | "token.type_ff_desc" | "token.type_ff_en" | "token.type_ff_ja" | "token.type_ff_lang" | "token.type_ff_pt" | "token.type_ff_stack" | "token.type_fontfamily" | "token.type_lh_jpan" | "token.type_lh_jpan_loose" | "token.type_lh_jpan_normal" | "token.type_lh_jpan_tight" | "token.type_lh_latn" | "token.type_lh_latn_loose" | "token.type_lh_latn_normal" | "token.type_lh_latn_tight" | "token.type_lineheight" | "token.type_lineheight_lang_desc" | "token.type_lineheight_lang_title" | "token.type_size" | "token.type_text_ex_large" | "token.type_text_ex_small" | "token.type_text_large" | "token.type_text_medium" | "token.type_text_small" | "token.type_title" | "token.type_weight" | "token.typography" | "too.light_color_dont_desc" | "top" | "transfer.move_to_source" | "transfer.move_to_target" | "transfer.no_data" | "transfer.source" | "transfer.status_moved_to_source" | "transfer.status_moved_to_target" | "transfer.target" | "treeview.collapse" | "treeview.expand" | "treeview.search_aria" | "tue" | "typo.code_desc" | "typo.code_usage" | "typo.compare_table" | "typo.contrast_desc" | "typo.contrast_rule" | "typo.filled_style" | "typo.filled_usage" | "typo.guide_desc" | "typo.guide_title" | "typo.html_tag" | "typo.icon_alt_desc" | "typo.icon_alt_rule" | "typo.icon_aria_desc" | "typo.icon_basics" | "typo.icon_role_desc" | "typo.icon_usage" | "typo.inline_desc" | "typo.inline_usage" | "typo.kbd_desc" | "typo.link_desc" | "typo.mark_desc" | "typo.mark_usage" | "typo.outline_style" | "typo.outline_usage" | "typo.quote_desc" | "typo.quote_usage" | "typo.readability_desc" | "typo.readability_rule" | "typo.semantics_desc" | "typo.semantics_rule" | "typo.style_label" | "typo.text_desc" | "typo.text_usage" | "typo.title_desc" | "typo.title_usage" | "typo.u11y_a11y_title" | "unit.a11y_desc" | "unit.a11y_title" | "unit.comparison_table" | "unit.fixed_desc" | "unit.fixed_title" | "unit.guide_desc" | "unit.guide_title" | "unit.item_px_desc" | "unit.item_relative_desc" | "unit.item_rem_desc" | "unit.item_viewport_desc" | "unit.rem_label" | "unit.responsive_desc" | "unit.responsive_title" | "unit.selection_points" | "unit.usage_details" | "unit.usage_layout_flow" | "unit.usage_screen_fit" | "unit.usage_typography" | "upload" | "username" | "util.a11y_priority" | "util.a11y_strong_allies_desc" | "util.accessible_hide" | "util.custom_scroll" | "util.design_considerations" | "util.divider_type" | "util.divider_usage_desc" | "util.dom_portal" | "util.error_boundary_label" | "util.error_handling" | "util.errorboundary_resilient_note" | "util.errorboundary_usage_desc" | "util.excessive_portal_avoid" | "util.fail_safe_design" | "util.focus_control" | "util.focus_trap_label" | "util.focustrap_usage_desc" | "util.guide_title" | "util.infinite_scroll_label" | "util.infscroll_perf_note" | "util.infscroll_usage_desc" | "util.markdown_security" | "util.markdown_type" | "util.markdown_usage_desc" | "util.markdown_xss_note" | "util.marquee_usage_desc" | "util.performance_consideration" | "util.portal_debug_note" | "util.portal_usage_desc" | "util.scroll_area_label" | "util.scrollarea_usage_desc" | "util.scrollprogress_placement" | "util.scrollprogress_pos_note" | "util.scrollprogress_usage_desc" | "util.tech_utilities" | "util.text_scrolling" | "util.transition_usage_desc" | "util.usage_points" | "util.vh_usage_desc" | "util.visual_utilities" | "util.visually_hidden_label" | "utility.guide" | "vis.absolute_diff" | "vis.chart_colors" | "vis.concentration" | "vis.correlation" | "vis.intermittent" | "vis.large_items" | "vis.login_freq" | "vis.outliers" | "vis.ratio" | "vis.recharts_desc" | "vis.relationship" | "vis.share" | "vis.small_items" | "visual.accessibility" | "wed" | "welcome";
|
|
1
|
+
export type WimI18nKey = "a11y.attach_file" | "a11y.avatar" | "a11y.back_to_top" | "a11y.breadcrumb" | "a11y.calendar" | "a11y.clear_date" | "a11y.clear_input" | "a11y.clear_selection" | "a11y.clear_text" | "a11y.close" | "a11y.close_dialog" | "a11y.close_menu" | "a11y.close_tour" | "a11y.collapse" | "a11y.collapse_label" | "a11y.considerations" | "a11y.cover_art" | "a11y.crop_target" | "a11y.data_grid" | "a11y.delete" | "a11y.edit" | "a11y.exit_fullscreen" | "a11y.expand" | "a11y.expand_label" | "a11y.fullscreen" | "a11y.go_to_next_page" | "a11y.go_to_page" | "a11y.go_to_prev_page" | "a11y.hide_password" | "a11y.icon_fallback" | "a11y.items_per_page" | "a11y.jump_to_page" | "a11y.kanban_board" | "a11y.kanban_column_count" | "a11y.left_icon_action" | "a11y.loading" | "a11y.move_card" | "a11y.move_to_column" | "a11y.mute" | "a11y.next_month" | "a11y.next_slide" | "a11y.next_track" | "a11y.open_calendar" | "a11y.open_dropdown" | "a11y.open_menu" | "a11y.pagination_nav" | "a11y.pause" | "a11y.picture_in_picture" | "a11y.play" | "a11y.playlist" | "a11y.prev_month" | "a11y.prev_slide" | "a11y.resize_panel" | "a11y.right_icon_action" | "a11y.rte_bold" | "a11y.rte_editor" | "a11y.rte_h1" | "a11y.rte_h2" | "a11y.rte_h3" | "a11y.rte_italic" | "a11y.rte_link" | "a11y.rte_link_apply" | "a11y.rte_link_cancel" | "a11y.rte_link_prompt" | "a11y.rte_ol" | "a11y.rte_remove_format" | "a11y.rte_strikethrough" | "a11y.rte_toolbar" | "a11y.rte_ul" | "a11y.rte_underline" | "a11y.rte_unlink" | "a11y.scroll_progress" | "a11y.search" | "a11y.seek" | "a11y.select_all_rows" | "a11y.select_row" | "a11y.settings" | "a11y.show_password" | "a11y.signature_canvas" | "a11y.skip_backward" | "a11y.skip_forward" | "a11y.unmute" | "a11y.volume" | "account" | "action.add" | "action.back" | "action.cancel" | "action.clear" | "action.close" | "action.confirm" | "action.copy" | "action.delete" | "action.edit" | "action.finish" | "action.next" | "action.save" | "action.search" | "action.submit" | "agent_status.done" | "agent_status.error" | "agent_status.idle" | "agent_status.running" | "agent_status.thinking" | "agent_status.waiting" | "ai_feedback.group_label" | "ai_feedback.negative_label" | "ai_feedback.positive_label" | "ai_feedback.regenerate_label" | "analytics" | "annotation.outside_field" | "applayout.behavior" | "applayout.breakpoint" | "applayout.device" | "artifact_overlay.maximize" | "artifact_overlay.minimize" | "aspect.ratio" | "audience" | "autosave.aria_label" | "autosave.error" | "autosave.saved" | "autosave.saved_at" | "autosave.saving" | "bottom" | "btn.guide_link_btn" | "btn.page_transition" | "button.clear" | "button.close" | "button.consistency" | "button.dismiss" | "button.label" | "calendar.aria_date" | "calendar.title" | "calendar_heatmap.less" | "calendar_heatmap.more" | "cat.ai" | "chat.ai_assistant" | "chat.attachment_prefix" | "chat.placeholder" | "chat.placeholder_interactive" | "chat.send_button" | "chat.support" | "chat.you" | "code_block.collapse_label" | "code_block.copied_label" | "code_block.copy_label" | "code_block.expand_label" | "code_block.lines" | "code_diff_viewer.applied" | "code_diff_viewer.apply" | "code_diff_viewer.copied_label" | "code_diff_viewer.copy_label" | "code_diff_viewer.reject" | "code_diff_viewer.split_view" | "code_diff_viewer.unified_view" | "colorinput.swatch" | "colors.tone_mapping" | "combobox.no_results" | "command_palette.label" | "command_palette.no_results" | "common.all" | "common.appearance" | "common.as" | "common.children" | "common.className" | "common.color" | "common.component" | "common.content" | "common.custom" | "common.dark" | "common.default" | "common.delivery" | "common.description" | "common.disabled" | "common.do" | "common.done" | "common.dont" | "common.error" | "common.features" | "common.ghost" | "common.heatmap_less" | "common.heatmap_more" | "common.heatmap_title" | "common.horizontal" | "common.id" | "common.intensity" | "common.intent" | "common.label" | "common.large" | "common.layout" | "common.light" | "common.medium" | "common.name" | "common.neutral" | "common.no" | "common.none" | "common.or" | "common.password" | "common.placeholder" | "common.primary" | "common.props" | "common.ref" | "common.reload" | "common.rounded" | "common.secondary" | "common.size" | "common.small" | "common.status" | "common.style" | "common.success" | "common.title" | "common.type" | "common.usage" | "common.value" | "common.variant" | "common.vertical" | "common.warning" | "common.yes" | "common:a11y.attach_file" | "common:a11y.back_to_top" | "common:a11y.breadcrumb" | "common:a11y.calendar" | "common:a11y.clear_date" | "common:a11y.clear_input" | "common:a11y.clear_selection" | "common:a11y.clear_text" | "common:a11y.close" | "common:a11y.close_dialog" | "common:a11y.close_menu" | "common:a11y.close_tour" | "common:a11y.considerations" | "common:a11y.cover_art" | "common:a11y.crop_target" | "common:a11y.data_grid" | "common:a11y.delete" | "common:a11y.edit" | "common:a11y.exit_fullscreen" | "common:a11y.fullscreen" | "common:a11y.go_to_next_page" | "common:a11y.go_to_page" | "common:a11y.go_to_prev_page" | "common:a11y.hide_password" | "common:a11y.icon_fallback" | "common:a11y.items_per_page" | "common:a11y.jump_to_page" | "common:a11y.kanban_board" | "common:a11y.kanban_column_count" | "common:a11y.left_icon_action" | "common:a11y.loading" | "common:a11y.move_card" | "common:a11y.move_to_column" | "common:a11y.mute" | "common:a11y.next_month" | "common:a11y.next_slide" | "common:a11y.next_track" | "common:a11y.open_calendar" | "common:a11y.open_dropdown" | "common:a11y.open_menu" | "common:a11y.pagination_nav" | "common:a11y.pause" | "common:a11y.picture_in_picture" | "common:a11y.play" | "common:a11y.playlist" | "common:a11y.prev_month" | "common:a11y.prev_slide" | "common:a11y.resize_panel" | "common:a11y.right_icon_action" | "common:a11y.scroll_progress" | "common:a11y.search" | "common:a11y.seek" | "common:a11y.select_all_rows" | "common:a11y.select_row" | "common:a11y.settings" | "common:a11y.show_password" | "common:a11y.signature_canvas" | "common:a11y.skip_backward" | "common:a11y.skip_forward" | "common:a11y.unmute" | "common:a11y.volume" | "common:account" | "common:action.add" | "common:action.back" | "common:action.cancel" | "common:action.clear" | "common:action.close" | "common:action.confirm" | "common:action.copy" | "common:action.delete" | "common:action.edit" | "common:action.finish" | "common:action.next" | "common:action.save" | "common:action.search" | "common:action.submit" | "common:analytics" | "common:aspect.ratio" | "common:audience" | "common:autosave.aria_label" | "common:autosave.error" | "common:autosave.saved" | "common:autosave.saved_at" | "common:autosave.saving" | "common:bottom" | "common:chat.ai_assistant" | "common:chat.attachment_prefix" | "common:chat.placeholder" | "common:chat.placeholder_interactive" | "common:chat.support" | "common:chat.you" | "common:common.all" | "common:common.appearance" | "common:common.as" | "common:common.children" | "common:common.className" | "common:common.color" | "common:common.component" | "common:common.content" | "common:common.custom" | "common:common.dark" | "common:common.default" | "common:common.delivery" | "common:common.description" | "common:common.disabled" | "common:common.do" | "common:common.done" | "common:common.dont" | "common:common.error" | "common:common.features" | "common:common.ghost" | "common:common.heatmap_less" | "common:common.heatmap_more" | "common:common.heatmap_title" | "common:common.horizontal" | "common:common.id" | "common:common.intensity" | "common:common.intent" | "common:common.label" | "common:common.large" | "common:common.layout" | "common:common.light" | "common:common.medium" | "common:common.name" | "common:common.neutral" | "common:common.no" | "common:common.none" | "common:common.or" | "common:common.password" | "common:common.placeholder" | "common:common.primary" | "common:common.props" | "common:common.ref" | "common:common.reload" | "common:common.rounded" | "common:common.secondary" | "common:common.size" | "common:common.small" | "common:common.status" | "common:common.style" | "common:common.success" | "common:common.title" | "common:common.type" | "common:common.usage" | "common:common.value" | "common:common.variant" | "common:common.vertical" | "common:common.warning" | "common:common.yes" | "common:copied" | "common:copy.to_clipboard" | "common:dashboard.intro" | "common:dashboard.tokens_link" | "common:dataGrid.displaying" | "common:dataGrid.loading_more" | "common:dataGrid.rows_selected" | "common:doc.a11y_spec_title" | "common:doc.anatomy_module_note" | "common:doc.anatomy_title" | "common:doc.api_reference" | "common:doc.baseListItem_a11y_desc" | "common:doc.baseListItem_anatomy_content_desc" | "common:doc.baseListItem_anatomy_content_label" | "common:doc.baseListItem_anatomy_root_desc" | "common:doc.baseListItem_anatomy_root_label" | "common:doc.baseListItem_best_practice_1" | "common:doc.baseListItem_best_practice_2" | "common:doc.baseListItem_choice_alt_when" | "common:doc.baseListItem_choice_matrix_desc" | "common:doc.baseListItem_choice_use_when" | "common:doc.baseListItem_content_guideline_1" | "common:doc.baseListItem_content_guideline_2" | "common:doc.baseListItem_design_intent" | "common:doc.baseListItem_i18n_desc" | "common:doc.baseListItem_keyboard_desc" | "common:doc.baseListItem_long_desc" | "common:doc.baseListItem_motion_desc" | "common:doc.baseListItem_responsive_desc" | "common:doc.baseListItem_scenario_1" | "common:doc.baseListItem_scenario_2" | "common:doc.baseListItem_tokens_desc" | "common:doc.baseListItem_usage_desc" | "common:doc.best_practice_footer" | "common:doc.best_practices_title" | "common:doc.button_a11y_desc" | "common:doc.button_motion_desc" | "common:doc.button_scenario_desc" | "common:doc.choice_matrix_title" | "common:doc.component" | "common:doc.content_guidelines_title" | "common:doc.danger" | "common:doc.description" | "common:doc.design_intent_title" | "common:doc.fieldTemplate_a11y_desc" | "common:doc.i18n_docgen_intro" | "common:doc.i18n_docgen_none" | "common:doc.i18n_title" | "common:doc.iconButton_desc" | "common:doc.inputBase_a11y_desc" | "common:doc.json_viewer_a11y_desc" | "common:doc.json_viewer_best_practice_1" | "common:doc.json_viewer_best_practice_2" | "common:doc.json_viewer_choice_matrix_desc" | "common:doc.json_viewer_content_guideline_1" | "common:doc.json_viewer_content_guideline_2" | "common:doc.json_viewer_desc" | "common:doc.json_viewer_design_intent" | "common:doc.json_viewer_i18n_desc" | "common:doc.json_viewer_keyboard_desc" | "common:doc.json_viewer_motion_desc" | "common:doc.json_viewer_responsive_desc" | "common:doc.json_viewer_scenario_1" | "common:doc.json_viewer_scenario_2" | "common:doc.keyboard_nav_title" | "common:doc.label" | "common:doc.label_a11y_desc" | "common:doc.label_anatomy_content" | "common:doc.label_anatomy_content_label" | "common:doc.label_anatomy_root" | "common:doc.label_anatomy_root_label" | "common:doc.label_best_practice_1" | "common:doc.label_best_practice_2" | "common:doc.label_choice_alt_when" | "common:doc.label_choice_matrix_desc" | "common:doc.label_choice_self_when" | "common:doc.label_content_guideline" | "common:doc.label_design_intent" | "common:doc.label_i18n_desc" | "common:doc.label_keyboard_desc" | "common:doc.label_motion_desc" | "common:doc.label_responsive_desc" | "common:doc.label_scenario_1" | "common:doc.label_scenario_2" | "common:doc.label_tokens_desc" | "common:doc.location" | "common:doc.motion_spec_title" | "common:doc.op_cancel" | "common:doc.op_edit_save" | "common:doc.op_navigate" | "common:doc.props_none" | "common:doc.props_title" | "common:doc.pull_to_refresh_a11y_desc" | "common:doc.pull_to_refresh_best_practice_1" | "common:doc.pull_to_refresh_best_practice_2" | "common:doc.pull_to_refresh_choice_matrix_desc" | "common:doc.pull_to_refresh_content_guideline_1" | "common:doc.pull_to_refresh_content_guideline_2" | "common:doc.pull_to_refresh_desc" | "common:doc.pull_to_refresh_design_intent" | "common:doc.pull_to_refresh_i18n_desc" | "common:doc.pull_to_refresh_keyboard_desc" | "common:doc.pull_to_refresh_motion_desc" | "common:doc.pull_to_refresh_responsive_desc" | "common:doc.pull_to_refresh_scenario_1" | "common:doc.pull_to_refresh_scenario_2" | "common:doc.real_world_scenarios_title" | "common:doc.recommendation" | "common:doc.responsive_title" | "common:doc.scenario" | "common:doc.scenario_404_title" | "common:doc.scenario_admin_title" | "common:doc.scenario_agreement_title" | "common:doc.scenario_ai_title" | "common:doc.scenario_article_title" | "common:doc.scenario_chat_title" | "common:doc.scenario_collab_title" | "common:doc.scenario_comment_title" | "common:doc.scenario_confirm_title" | "common:doc.scenario_copy_title" | "common:doc.scenario_cta_title" | "common:doc.scenario_dashboard_title" | "common:doc.scenario_delete_title" | "common:doc.scenario_detail_title" | "common:doc.scenario_ec_title" | "common:doc.scenario_event_title" | "common:doc.scenario_fail_title" | "common:doc.scenario_faq_title" | "common:doc.scenario_feature_title" | "common:doc.scenario_feed_title" | "common:doc.scenario_files_title" | "common:doc.scenario_filter_title" | "common:doc.scenario_form_title" | "common:doc.scenario_gallery_title" | "common:doc.scenario_gender_title" | "common:doc.scenario_help_title" | "common:doc.scenario_hero_title" | "common:doc.scenario_icon_title" | "common:doc.scenario_inbox_title" | "common:doc.scenario_init_title" | "common:doc.scenario_list_title" | "common:doc.scenario_maintenance_title" | "common:doc.scenario_nav_title" | "common:doc.scenario_notif_title" | "common:doc.scenario_pagination_title" | "common:doc.scenario_payment_title" | "common:doc.scenario_product_title" | "common:doc.scenario_products_title" | "common:doc.scenario_profile_title" | "common:doc.scenario_refresh_title" | "common:doc.scenario_save_title" | "common:doc.scenario_search_title" | "common:doc.scenario_settings_title" | "common:doc.scenario_sns_title" | "common:doc.scenario_stats_title" | "common:doc.scenario_status_title" | "common:doc.scenario_subscription_title" | "common:doc.scenario_toc_title" | "common:doc.scenario_toggle_title" | "common:doc.scenario_toolbar_title" | "common:doc.scenario_trial_title" | "common:doc.scenario_undo_title" | "common:doc.scenario_user_title" | "common:doc.scenario_warning_title" | "common:doc.see_more" | "common:doc.speed_dial_a11y_desc" | "common:doc.speed_dial_best_practice_1" | "common:doc.speed_dial_best_practice_2" | "common:doc.speed_dial_choice_matrix_desc" | "common:doc.speed_dial_content_guideline_1" | "common:doc.speed_dial_content_guideline_2" | "common:doc.speed_dial_desc" | "common:doc.speed_dial_design_intent" | "common:doc.speed_dial_i18n_desc" | "common:doc.speed_dial_keyboard_desc" | "common:doc.speed_dial_motion_desc" | "common:doc.speed_dial_responsive_desc" | "common:doc.speed_dial_scenario_1" | "common:doc.speed_dial_scenario_2" | "common:doc.std_column_component" | "common:doc.std_column_no" | "common:doc.std_column_yes" | "common:doc.std_header_loading_state" | "common:doc.std_header_unified_sizing" | "common:doc.stories" | "common:doc.story_default" | "common:doc.story_disabled" | "common:doc.story_error" | "common:doc.story_ghost" | "common:doc.story_horizontal" | "common:doc.story_multiple_icons" | "common:doc.story_no_label" | "common:doc.story_states" | "common:doc.story_with_badge" | "common:doc.story_with_icon" | "common:doc.story_with_icons" | "common:doc.story_with_right_section" | "common:doc.summary" | "common:doc.swipe_action_a11y_desc" | "common:doc.swipe_action_best_practice_1" | "common:doc.swipe_action_best_practice_2" | "common:doc.swipe_action_choice_matrix_desc" | "common:doc.swipe_action_content_guideline_1" | "common:doc.swipe_action_content_guideline_2" | "common:doc.swipe_action_desc" | "common:doc.swipe_action_design_intent" | "common:doc.swipe_action_i18n_desc" | "common:doc.swipe_action_keyboard_desc" | "common:doc.swipe_action_motion_desc" | "common:doc.swipe_action_responsive_desc" | "common:doc.swipe_action_scenario_1" | "common:doc.swipe_action_scenario_2" | "common:doc.tag_deletable" | "common:doc.tag_deletable_desc" | "common:doc.test_description" | "common:doc.test_title" | "common:doc.transfer_i18n_desc" | "common:doc.transition" | "common:doc.usage" | "common:doc.usage_scenario" | "common:error.boundary_hide_details" | "common:error.boundary_retry" | "common:error.boundary_show_details" | "common:error.boundary_title" | "common:error.invalid" | "common:error.required" | "common:fri" | "common:greeting" | "common:guide.action_std_affected_components" | "common:guide.action_std_concept_desc" | "common:guide.action_std_concept_title" | "common:guide.action_std_desc" | "common:guide.action_std_note_desc" | "common:guide.action_std_note_title" | "common:guide.action_std_rule_1_desc" | "common:guide.action_std_rule_1_title" | "common:guide.action_std_rule_2_desc" | "common:guide.action_std_rule_2_title" | "common:guide.action_std_rule_3_desc" | "common:guide.action_std_rule_3_title" | "common:guide.action_std_rule_4_desc" | "common:guide.action_std_rule_4_title" | "common:guide.action_std_rule_header_desc" | "common:guide.action_std_rule_header_title" | "common:guide.action_std_rules_title" | "common:guide.action_std_title" | "common:guide.numeric_std_concept_desc" | "common:guide.numeric_std_concept_title" | "common:guide.numeric_std_desc" | "common:guide.numeric_std_exp_notation_desc" | "common:guide.numeric_std_firefox_behavior" | "common:guide.numeric_std_i18n_desc" | "common:guide.numeric_std_keyboard_desc" | "common:guide.numeric_std_problem_1_desc" | "common:guide.numeric_std_problem_1_title" | "common:guide.numeric_std_problem_2_desc" | "common:guide.numeric_std_problem_2_title" | "common:guide.numeric_std_problem_3_desc" | "common:guide.numeric_std_problem_3_title" | "common:guide.numeric_std_problem_4_desc" | "common:guide.numeric_std_problem_4_title" | "common:guide.numeric_std_problems_title" | "common:guide.numeric_std_recommend_desc" | "common:guide.numeric_std_recommend_title" | "common:guide.numeric_std_responsive_desc" | "common:guide.numeric_std_safari_behavior" | "common:guide.numeric_std_spin_button_warning" | "common:guide.numeric_std_table_behavior" | "common:guide.numeric_std_table_browser" | "common:guide.numeric_std_table_input_disabled" | "common:guide.numeric_std_table_input_js_empty" | "common:guide.numeric_std_table_input_status" | "common:guide.numeric_std_test_desc" | "common:guide.numeric_std_title" | "common:guide.numeric_std_tokens_desc" | "common:guide.numeric_std_usage_desc" | "common:guide.numeric_std_usage_do_1" | "common:guide.numeric_std_usage_dont_1" | "common:guide.numeric_std_usage_dont_2" | "common:guide.numeric_std_usage_dont_3" | "common:guide.numeric_std_usage_warning_desc" | "common:guide.numeric_std_usage_warning_title" | "common:home" | "common:jsonViewer.addItem" | "common:jsonViewer.collapse" | "common:jsonViewer.copy" | "common:jsonViewer.deleteItem" | "common:jsonViewer.edit" | "common:jsonViewer.expand" | "common:jsonViewer.title" | "common:language.en" | "common:language.ja" | "common:language.pt" | "common:language.support" | "common:learn.more" | "common:left" | "common:mon" | "common:month.apr" | "common:month.aug" | "common:month.dec" | "common:month.feb" | "common:month.jan" | "common:month.jul" | "common:month.jun" | "common:month.mar" | "common:month.may" | "common:month.nov" | "common:month.oct" | "common:month.sep" | "common:new" | "common:no.data" | "common:no.options_found" | "common:no.results_found" | "common:nodeGraph.add_node" | "common:nodeGraph.new_node" | "common:nodeGraph.node_name" | "common:notifications" | "common:optional" | "common:overview" | "common:pagination.go" | "common:pagination.go_to" | "common:pagination.items_per_page" | "common:placeholder.email" | "common:placeholder.name" | "common:placeholder.search" | "common:playback.rate" | "common:processing" | "common:profile" | "common:pullToRefresh.loading" | "common:pullToRefresh.pull" | "common:pullToRefresh.release" | "common:quality" | "common:reaction.add_reaction" | "common:reaction.aria_label" | "common:reaction.react_with" | "common:reports" | "common:required" | "common:right" | "common:sampletextforscrollarea" | "common:sat" | "common:saving" | "common:settings" | "common:speedDial.close" | "common:speedDial.open" | "common:standard" | "common:standard_list_item" | "common:status.active" | "common:status.completed" | "common:status.error" | "common:status.idle" | "common:status.info" | "common:status.loading" | "common:status.pending" | "common:status.success" | "common:status.warning" | "common:std.column_auto_integrated" | "common:std.column_component" | "common:std.column_no" | "common:std.column_yes" | "common:std.header_loading_state" | "common:std.header_unified_sizing" | "common:std.std_column_component" | "common:std.std_column_no" | "common:std.std_column_yes" | "common:std.std_header_loading_state" | "common:std.std_header_unified_sizing" | "common:story.carousel_slide_label" | "common:story.thoughtprocess_title_streaming" | "common:story.thoughtprocess_title_thinking" | "common:sun" | "common:thu" | "common:token.bp_cq_criterion" | "common:token.bp_cq_examples" | "common:token.bp_cq_label" | "common:token.bp_cq_note" | "common:token.bp_cq_usage_desc" | "common:token.bp_cq_usage_title" | "common:token.bp_cq_why_desc" | "common:token.bp_cq_why_title" | "common:token.bp_decision_col" | "common:token.bp_desc" | "common:token.bp_down_desc" | "common:token.bp_lg_device" | "common:token.bp_list" | "common:token.bp_md_device" | "common:token.bp_mq_criterion" | "common:token.bp_mq_examples" | "common:token.bp_mq_label" | "common:token.bp_mq_vs_cq_desc" | "common:token.bp_mq_vs_cq_title" | "common:token.bp_scss" | "common:token.bp_scss_desc" | "common:token.bp_sm_device" | "common:token.bp_th_device" | "common:token.bp_th_key" | "common:token.bp_th_width" | "common:token.bp_title" | "common:token.bp_up_desc" | "common:token.bp_xl_device" | "common:token.breakpoints" | "common:token.color_checker_desc" | "common:token.color_checker_title" | "common:token.color_ct_desc" | "common:token.color_ct_title" | "common:token.color_interaction_oklch_desc" | "common:token.color_interaction_oklch_title" | "common:token.color_pccs_th1" | "common:token.color_pccs_th2" | "common:token.color_pccs_th3" | "common:token.color_rgb_alpha_desc" | "common:token.color_rgb_alpha_title" | "common:token.colors" | "common:token.effects" | "common:token.overview_desc" | "common:token.overview_title" | "common:token.pccs" | "common:token.pccs_desc" | "common:token.spacings" | "common:token.type_alias" | "common:token.type_alias_desc" | "common:token.type_alias_th1" | "common:token.type_alias_th2" | "common:token.type_decor" | "common:token.type_desc1" | "common:token.type_desc2" | "common:token.type_ff_desc" | "common:token.type_ff_en" | "common:token.type_ff_ja" | "common:token.type_ff_lang" | "common:token.type_ff_pt" | "common:token.type_ff_stack" | "common:token.type_fontfamily" | "common:token.type_lh_jpan" | "common:token.type_lh_jpan_loose" | "common:token.type_lh_jpan_normal" | "common:token.type_lh_jpan_tight" | "common:token.type_lh_latn" | "common:token.type_lh_latn_loose" | "common:token.type_lh_latn_normal" | "common:token.type_lh_latn_tight" | "common:token.type_lineheight" | "common:token.type_lineheight_lang_desc" | "common:token.type_lineheight_lang_title" | "common:token.type_size" | "common:token.type_text_ex_large" | "common:token.type_text_ex_small" | "common:token.type_text_large" | "common:token.type_text_medium" | "common:token.type_text_small" | "common:token.type_title" | "common:token.type_weight" | "common:token.typography" | "common:top" | "common:tue" | "common:upload" | "common:username" | "common:wed" | "common:welcome" | "components:a11y.avatar" | "components:a11y.close" | "components:a11y.collapse" | "components:a11y.collapse_label" | "components:a11y.expand" | "components:a11y.expand_label" | "components:a11y.rte_bold" | "components:a11y.rte_editor" | "components:a11y.rte_h1" | "components:a11y.rte_h2" | "components:a11y.rte_h3" | "components:a11y.rte_italic" | "components:a11y.rte_link" | "components:a11y.rte_link_apply" | "components:a11y.rte_link_cancel" | "components:a11y.rte_link_prompt" | "components:a11y.rte_ol" | "components:a11y.rte_remove_format" | "components:a11y.rte_strikethrough" | "components:a11y.rte_toolbar" | "components:a11y.rte_ul" | "components:a11y.rte_underline" | "components:a11y.rte_unlink" | "components:annotation.outside_field" | "components:applayout.behavior" | "components:applayout.breakpoint" | "components:applayout.device" | "components:btn.guide_link_btn" | "components:btn.page_transition" | "components:calendar_heatmap.less" | "components:calendar_heatmap.more" | "components:cat.ai" | "components:chat.placeholder" | "components:chat.placeholder_interactive" | "components:chat.send_button" | "components:colorinput.swatch" | "components:colors.tone_mapping" | "components:command_palette.label" | "components:command_palette.no_results" | "components:critical.info_only_in_p_desc" | "components:dashboard.desc" | "components:dashboard.overall_progress" | "components:dashboard.progress" | "components:dashboard.title" | "components:dashboard.total_components" | "components:dashboard_widget.add_widget" | "components:dashboard_widget.enter_edit" | "components:dashboard_widget.exit_edit" | "components:dashboard_widget.grid_label" | "components:dashboard_widget.label" | "components:dashboard_widget.remove_widget" | "components:datacontainer.accordion_desc" | "components:datacontainer.accordion_format" | "components:datacontainer.box_desc" | "components:datacontainer.box_format" | "components:datacontainer.faqsection_desc" | "components:datacontainer.faqsection_format" | "components:datacontainer.guide_desc" | "components:datacontainer.guide_title" | "components:datagrid.empty" | "components:datagrid.loading_more" | "components:datagrid.select_row" | "components:dataindicator.avatar_label" | "components:dataindicator.avatar_usage" | "components:dataindicator.avatargroup_label" | "components:dataindicator.avatargroup_usage" | "components:dataindicator.badge_label" | "components:dataindicator.badge_usage" | "components:dataindicator.calendar_label" | "components:dataindicator.calendar_usage" | "components:dataindicator.chip_label" | "components:dataindicator.chip_usage" | "components:dataindicator.emptystate_label" | "components:dataindicator.emptystate_usage" | "components:dataindicator.guide_desc" | "components:dataindicator.guide_title" | "components:dataindicator.indicator_label" | "components:dataindicator.indicator_usage" | "components:dataindicator.qrcode_label" | "components:dataindicator.qrcode_usage" | "components:dataindicator.relativetime_label" | "components:dataindicator.relativetime_usage" | "components:dataindicator.watermark_label" | "components:dataindicator.watermark_usage" | "components:daterangepicker.end" | "components:daterangepicker.start" | "components:doc.aiResponseFeedback_desc" | "components:doc.autosave_desc" | "components:doc.base_list_desc" | "components:doc.blockquote_desc" | "components:doc.codeBlock_desc" | "components:doc.codeDiffViewer_desc" | "components:doc.countdown_desc" | "components:doc.dashboard_desc" | "components:doc.field_character_count_desc" | "components:doc.field_template_desc" | "components:doc.gallery_desc" | "components:doc.ganttchart_visual_guideline_progress" | "components:doc.imageCropper_desc" | "components:doc.indicator_base_desc" | "components:doc.input_base_desc" | "components:doc.intent" | "components:doc.interactiveArea_desc" | "components:doc.jsonDiffViewer_desc" | "components:doc.keyboardShortcuts_desc" | "components:doc.leaderboard_desc" | "components:doc.levels_title" | "components:doc.menubar_desc" | "components:doc.nodeGraph_desc" | "components:doc.overlay_base_desc" | "components:doc.passwordStrength_desc" | "components:doc.progressRing_desc" | "components:doc.promptInput_desc" | "components:doc.queryBuilder_desc" | "components:doc.querybuilder_a11y_desc" | "components:doc.querybuilder_anatomy_combinator" | "components:doc.querybuilder_anatomy_combinator_label" | "components:doc.querybuilder_anatomy_group" | "components:doc.querybuilder_anatomy_group_label" | "components:doc.querybuilder_anatomy_not" | "components:doc.querybuilder_anatomy_not_label" | "components:doc.querybuilder_anatomy_root" | "components:doc.querybuilder_anatomy_root_label" | "components:doc.querybuilder_anatomy_rule" | "components:doc.querybuilder_anatomy_rule_label" | "components:doc.querybuilder_best_practice_1" | "components:doc.querybuilder_best_practice_2" | "components:doc.querybuilder_choice_filterbar_when" | "components:doc.querybuilder_choice_matrix_desc" | "components:doc.querybuilder_choice_self_when" | "components:doc.querybuilder_content_guideline_1" | "components:doc.querybuilder_content_guideline_2" | "components:doc.querybuilder_design_intent" | "components:doc.querybuilder_i18n_desc" | "components:doc.querybuilder_keyboard_desc" | "components:doc.querybuilder_logic_andor_desc" | "components:doc.querybuilder_logic_andor_title" | "components:doc.querybuilder_logic_desc" | "components:doc.querybuilder_logic_not_desc" | "components:doc.querybuilder_logic_not_title" | "components:doc.querybuilder_logic_title" | "components:doc.querybuilder_motion_desc" | "components:doc.querybuilder_operators_desc" | "components:doc.querybuilder_operators_note" | "components:doc.querybuilder_operators_title" | "components:doc.querybuilder_operators_type" | "components:doc.querybuilder_operators_values" | "components:doc.querybuilder_responsive_desc" | "components:doc.querybuilder_scenario_1" | "components:doc.querybuilder_scenario_2" | "components:doc.querybuilder_token_bg_component" | "components:doc.querybuilder_token_bg_secondary" | "components:doc.querybuilder_token_border" | "components:doc.querybuilder_token_destructive" | "components:doc.querybuilder_token_radius" | "components:doc.querybuilder_token_transition" | "components:doc.reaction_desc" | "components:doc.relativeTime_desc" | "components:doc.richTextEditor_desc" | "components:doc.scheduleView_desc" | "components:doc.score" | "components:doc.segmentedcontrol_choice_alt_when" | "components:doc.segmentedcontrol_choice_self_when" | "components:doc.selection_guide_link" | "components:doc.smartSearchInput_desc" | "components:doc.sourceCitation_desc" | "components:doc.splitButton_desc" | "components:doc.spoiler_desc" | "components:doc.status_content_desc" | "components:doc.streamingText_desc" | "components:doc.tagInput_desc" | "components:doc.terminal_desc" | "components:doc.text_desc" | "components:doc.thoughtProcess_desc" | "components:doc.title_desc" | "components:doc.togglegroup_choice_alt_when" | "components:doc.togglegroup_choice_self_when" | "components:doc.toolbar_desc" | "components:doc.visual_guideline_title" | "components:effects.common_vars" | "components:ensure.contrast" | "components:ex-large.paragraph" | "components:ex-large.span" | "components:ex-small.paragraph" | "components:ex-small.span" | "components:flow.checkbox" | "components:flow.radio" | "components:flow.switch" | "components:gallery.clear_selection" | "components:gallery.deselect_item" | "components:gallery.grid_label" | "components:gallery.select_item" | "components:gallery.selected_count" | "components:gallery.selected_count_plural" | "components:gallery.toolbar_label" | "components:ganttchart.aria_chart" | "components:ganttchart.aria_task_bar" | "components:heading.text" | "components:icon.AlertCircleIcon" | "components:icon.BellIcon" | "components:icon.CalendarIcon" | "components:icon.ChartIcon" | "components:icon.CheckCircleIcon" | "components:icon.CheckIcon" | "components:icon.ChevronDownIcon" | "components:icon.ChevronLeftIcon" | "components:icon.ChevronRightIcon" | "components:icon.ChevronUpIcon" | "components:icon.CircleIcon" | "components:icon.ClockIcon" | "components:icon.CloseIcon" | "components:icon.CloseSmallIcon" | "components:icon.CopyIcon" | "components:icon.DocumentIcon" | "components:icon.DownloadIcon" | "components:icon.EditIcon" | "components:icon.EmailIcon" | "components:icon.ExternalLinkIcon" | "components:icon.EyeIcon" | "components:icon.EyeOffIcon" | "components:icon.FilterIcon" | "components:icon.HelpCircleIcon" | "components:icon.HomeIcon" | "components:icon.HourglassIcon" | "components:icon.ImageIcon" | "components:icon.InfoCircleIcon" | "components:icon.LoadingIcon" | "components:icon.LogInIcon" | "components:icon.LogOutIcon" | "components:icon.MaximizeIcon" | "components:icon.MinimizeIcon" | "components:icon.MinusIcon" | "components:icon.MonitorIcon" | "components:icon.MoonIcon" | "components:icon.MoreHorizontalIcon" | "components:icon.MoreVerticalIcon" | "components:icon.MuteIcon" | "components:icon.PauseIcon" | "components:icon.PdfIcon" | "components:icon.PhoneIcon" | "components:icon.PlayIcon" | "components:icon.PlusIcon" | "components:icon.ProjectIcon" | "components:icon.RefreshIcon" | "components:icon.RepeatIcon" | "components:icon.SearchIcon" | "components:icon.SettingsIcon" | "components:icon.ShareIcon" | "components:icon.ShuffleIcon" | "components:icon.SkipBackIcon" | "components:icon.SkipForwardIcon" | "components:icon.SmartphoneIcon" | "components:icon.SpinnerIcon" | "components:icon.SquareIcon" | "components:icon.StarIcon" | "components:icon.SunIcon" | "components:icon.ThumbDownIcon" | "components:icon.ThumbUpIcon" | "components:icon.TrashIcon" | "components:icon.UploadIcon" | "components:icon.UserIcon" | "components:icon.VideoIcon" | "components:icon.VolumeIcon" | "components:important.rule" | "components:large.paragraph" | "components:large.span" | "components:legend.all_devices" | "components:legend.mobile_only" | "components:legend.pc_only" | "components:lightbox.close" | "components:lightbox.counter" | "components:lightbox.next" | "components:lightbox.open" | "components:lightbox.open_named" | "components:lightbox.previous" | "components:lightbox.zoom_in" | "components:lightbox.zoom_out" | "components:linkvsbutton.btn_examples" | "components:linkvsbutton.btn_typical" | "components:linkvsbutton.link_examples" | "components:linkvsbutton.link_typical" | "components:linkvsbutton.roles_title" | "components:medium.paragraph" | "components:medium.span" | "components:operators.after" | "components:operators.after_or_on" | "components:operators.before" | "components:operators.before_or_on" | "components:operators.contains" | "components:operators.ends_with" | "components:operators.equal" | "components:operators.greater_than" | "components:operators.greater_than_or_equal" | "components:operators.is_not_null" | "components:operators.is_null" | "components:operators.less_than" | "components:operators.less_than_or_equal" | "components:operators.not_equal" | "components:operators.starts_with" | "components:otp.digit" | "components:planned.for_implementation" | "components:query.builder.add_group" | "components:query.builder.add_rule" | "components:query.builder.and" | "components:query.builder.combinator" | "components:query.builder.false" | "components:query.builder.field" | "components:query.builder.field_age" | "components:query.builder.field_birthday" | "components:query.builder.field_first_name" | "components:query.builder.field_is_active" | "components:query.builder.field_last_name" | "components:query.builder.generated_json" | "components:query.builder.group_added" | "components:query.builder.not" | "components:query.builder.operator" | "components:query.builder.or" | "components:query.builder.region_label" | "components:query.builder.remove_group" | "components:query.builder.remove_rule" | "components:query.builder.removed" | "components:query.builder.rule" | "components:query.builder.rule_added" | "components:query.builder.true" | "components:query.builder.value" | "components:rating.readonly_label" | "components:rating.stars" | "components:rule.overload_dont_desc" | "components:rule.same_tier_desc" | "components:rule.same_tier_title" | "components:rule.transparent_props_desc" | "components:rule.transparent_props_title" | "components:rule.unidirectional_desc" | "components:rule.unidirectional_title" | "components:screen.reader" | "components:signature.canvas_label" | "components:signature.clear" | "components:small.paragraph" | "components:small.span" | "components:smart.search_ai_title" | "components:smart.search_match" | "components:smart.search_placeholder" | "components:smart.search_result_1" | "components:smart.search_result_2" | "components:smart.search_suggestions" | "components:smart.search_thinking" | "components:snackbar" | "components:sortable_list.drag_handle_label" | "components:sortable_list.keyboard_instruction" | "components:sortable_list.keyboard_moved" | "components:sortable_list.keyboard_moving" | "components:spoiler.show_less" | "components:spoiler.show_more" | "components:status.disabled" | "components:status.done" | "components:status.enabled" | "components:status.planning" | "components:table.header_a11y" | "components:table.header_action" | "components:table.header_benefits" | "components:table.header_category" | "components:table.header_component" | "components:table.header_components" | "components:table.header_conditions" | "components:table.header_consistency" | "components:table.header_content" | "components:table.header_criticality" | "components:table.header_description" | "components:table.header_detail_reason" | "components:table.header_details" | "components:table.header_example" | "components:table.header_feature" | "components:table.header_flexibility" | "components:table.header_flow" | "components:table.header_format" | "components:table.header_guideline" | "components:table.header_impl_effect" | "components:table.header_input_content" | "components:table.header_item" | "components:table.header_overview" | "components:table.header_placeholder_use" | "components:table.header_placement" | "components:table.header_platform" | "components:table.header_priority" | "components:table.header_problems" | "components:table.header_progress" | "components:table.header_purpose" | "components:table.header_reason" | "components:table.header_recommended" | "components:table.header_recommended_component" | "components:table.header_recommended_scene" | "components:table.header_role" | "components:table.header_rule" | "components:table.header_scannability" | "components:table.header_specific_usage" | "components:table.header_status" | "components:table.header_target" | "components:table.header_timing" | "components:table.header_type" | "components:table.header_usage" | "components:table.header_visibility" | "components:table.header_visual_features" | "components:term.checkbox" | "components:term.radio" | "components:term.switch" | "components:tier1.desc" | "components:tier1.role" | "components:tier2.desc" | "components:tier2.role" | "components:tier3.desc" | "components:tier3.role" | "components:tier4.desc" | "components:tier4.role" | "components:timing.deferred" | "components:timing.immediate" | "components:toast" | "components:too.light_color_dont_desc" | "components:treeview.collapse" | "components:treeview.expand" | "components:treeview.search_aria" | "components:typo.code_desc" | "components:typo.code_usage" | "components:typo.compare_table" | "components:typo.contrast_desc" | "components:typo.contrast_rule" | "components:typo.filled_style" | "components:typo.filled_usage" | "components:typo.guide_desc" | "components:typo.guide_title" | "components:typo.html_tag" | "components:typo.icon_alt_desc" | "components:typo.icon_alt_rule" | "components:typo.icon_aria_desc" | "components:typo.icon_basics" | "components:typo.icon_role_desc" | "components:typo.icon_usage" | "components:typo.inline_desc" | "components:typo.inline_usage" | "components:typo.kbd_desc" | "components:typo.link_desc" | "components:typo.mark_desc" | "components:typo.mark_usage" | "components:typo.outline_style" | "components:typo.outline_usage" | "components:typo.quote_desc" | "components:typo.quote_usage" | "components:typo.readability_desc" | "components:typo.readability_rule" | "components:typo.semantics_desc" | "components:typo.semantics_rule" | "components:typo.style_label" | "components:typo.text_desc" | "components:typo.text_usage" | "components:typo.title_desc" | "components:typo.title_usage" | "components:typo.u11y_a11y_title" | "components:unit.a11y_desc" | "components:unit.a11y_title" | "components:unit.comparison_table" | "components:unit.fixed_desc" | "components:unit.fixed_title" | "components:unit.guide_desc" | "components:unit.guide_title" | "components:unit.item_px_desc" | "components:unit.item_relative_desc" | "components:unit.item_rem_desc" | "components:unit.item_viewport_desc" | "components:unit.rem_label" | "components:unit.responsive_desc" | "components:unit.responsive_title" | "components:unit.selection_points" | "components:unit.usage_details" | "components:unit.usage_layout_flow" | "components:unit.usage_screen_fit" | "components:unit.usage_typography" | "components:util.a11y_priority" | "components:util.a11y_strong_allies_desc" | "components:util.accessible_hide" | "components:util.custom_scroll" | "components:util.design_considerations" | "components:util.divider_type" | "components:util.divider_usage_desc" | "components:util.dom_portal" | "components:util.error_boundary_label" | "components:util.error_handling" | "components:util.errorboundary_resilient_note" | "components:util.errorboundary_usage_desc" | "components:util.excessive_portal_avoid" | "components:util.fail_safe_design" | "components:util.focus_control" | "components:util.focus_trap_label" | "components:util.focustrap_usage_desc" | "components:util.guide_title" | "components:util.infinite_scroll_label" | "components:util.infscroll_perf_note" | "components:util.infscroll_usage_desc" | "components:util.markdown_security" | "components:util.markdown_type" | "components:util.markdown_usage_desc" | "components:util.markdown_xss_note" | "components:util.marquee_usage_desc" | "components:util.performance_consideration" | "components:util.portal_debug_note" | "components:util.portal_usage_desc" | "components:util.scroll_area_label" | "components:util.scrollarea_usage_desc" | "components:util.scrollprogress_placement" | "components:util.scrollprogress_pos_note" | "components:util.scrollprogress_usage_desc" | "components:util.tech_utilities" | "components:util.text_scrolling" | "components:util.transition_usage_desc" | "components:util.usage_points" | "components:util.vh_usage_desc" | "components:util.visual_utilities" | "components:util.visually_hidden_label" | "components:utility.guide" | "components:vis.absolute_diff" | "components:vis.chart_colors" | "components:vis.concentration" | "components:vis.correlation" | "components:vis.intermittent" | "components:vis.large_items" | "components:vis.login_freq" | "components:vis.outliers" | "components:vis.ratio" | "components:vis.recharts_desc" | "components:vis.relationship" | "components:vis.share" | "components:vis.small_items" | "components:visual.accessibility" | "copied" | "copy.to_clipboard" | "countdown.remaining" | "critical.info_only_in_p_desc" | "dashboard.desc" | "dashboard.intro" | "dashboard.overall_progress" | "dashboard.progress" | "dashboard.title" | "dashboard.tokens_link" | "dashboard.total_components" | "dashboard_widget.add_widget" | "dashboard_widget.enter_edit" | "dashboard_widget.exit_edit" | "dashboard_widget.grid_label" | "dashboard_widget.label" | "dashboard_widget.remove_widget" | "data-display:calendar.aria_date" | "data-display:calendar.title" | "data-display:countdown.remaining" | "data-display:table.header_component" | "data-display:table.header_overview" | "data-display:table.header_placement" | "data-display:table.header_usage" | "dataGrid.displaying" | "dataGrid.loading_more" | "dataGrid.rows_selected" | "datacontainer.accordion_desc" | "datacontainer.accordion_format" | "datacontainer.box_desc" | "datacontainer.box_format" | "datacontainer.faqsection_desc" | "datacontainer.faqsection_format" | "datacontainer.guide_desc" | "datacontainer.guide_title" | "datagrid.empty" | "datagrid.loading_more" | "datagrid.select_row" | "dataindicator.avatar_label" | "dataindicator.avatar_usage" | "dataindicator.avatargroup_label" | "dataindicator.avatargroup_usage" | "dataindicator.badge_label" | "dataindicator.badge_usage" | "dataindicator.calendar_label" | "dataindicator.calendar_usage" | "dataindicator.chip_label" | "dataindicator.chip_usage" | "dataindicator.emptystate_label" | "dataindicator.emptystate_usage" | "dataindicator.guide_desc" | "dataindicator.guide_title" | "dataindicator.indicator_label" | "dataindicator.indicator_usage" | "dataindicator.qrcode_label" | "dataindicator.qrcode_usage" | "dataindicator.relativetime_label" | "dataindicator.relativetime_usage" | "dataindicator.watermark_label" | "dataindicator.watermark_usage" | "daterangepicker.end" | "daterangepicker.start" | "doc.a11y_spec_title" | "doc.aiResponseFeedback_desc" | "doc.anatomy_module_note" | "doc.anatomy_title" | "doc.api_reference" | "doc.autosave_desc" | "doc.baseListItem_a11y_desc" | "doc.baseListItem_anatomy_content_desc" | "doc.baseListItem_anatomy_content_label" | "doc.baseListItem_anatomy_root_desc" | "doc.baseListItem_anatomy_root_label" | "doc.baseListItem_best_practice_1" | "doc.baseListItem_best_practice_2" | "doc.baseListItem_choice_alt_when" | "doc.baseListItem_choice_matrix_desc" | "doc.baseListItem_choice_use_when" | "doc.baseListItem_content_guideline_1" | "doc.baseListItem_content_guideline_2" | "doc.baseListItem_design_intent" | "doc.baseListItem_i18n_desc" | "doc.baseListItem_keyboard_desc" | "doc.baseListItem_long_desc" | "doc.baseListItem_motion_desc" | "doc.baseListItem_responsive_desc" | "doc.baseListItem_scenario_1" | "doc.baseListItem_scenario_2" | "doc.baseListItem_tokens_desc" | "doc.baseListItem_usage_desc" | "doc.base_list_desc" | "doc.best_practice_footer" | "doc.best_practices_title" | "doc.blockquote_desc" | "doc.button_a11y_desc" | "doc.button_motion_desc" | "doc.button_scenario_desc" | "doc.choice_matrix_title" | "doc.codeBlock_desc" | "doc.codeDiffViewer_desc" | "doc.component" | "doc.content_guidelines_title" | "doc.countdown_desc" | "doc.danger" | "doc.dashboard_desc" | "doc.description" | "doc.design_intent_title" | "doc.fieldTemplate_a11y_desc" | "doc.field_character_count_desc" | "doc.field_template_desc" | "doc.gallery_desc" | "doc.ganttchart_visual_guideline_progress" | "doc.i18n_docgen_intro" | "doc.i18n_docgen_none" | "doc.i18n_title" | "doc.iconButton_desc" | "doc.imageCropper_desc" | "doc.indicator_base_desc" | "doc.inputBase_a11y_desc" | "doc.input_base_desc" | "doc.intent" | "doc.interactiveArea_desc" | "doc.jsonDiffViewer_desc" | "doc.json_viewer_a11y_desc" | "doc.json_viewer_best_practice_1" | "doc.json_viewer_best_practice_2" | "doc.json_viewer_choice_matrix_desc" | "doc.json_viewer_content_guideline_1" | "doc.json_viewer_content_guideline_2" | "doc.json_viewer_desc" | "doc.json_viewer_design_intent" | "doc.json_viewer_i18n_desc" | "doc.json_viewer_keyboard_desc" | "doc.json_viewer_motion_desc" | "doc.json_viewer_responsive_desc" | "doc.json_viewer_scenario_1" | "doc.json_viewer_scenario_2" | "doc.keyboardShortcuts_desc" | "doc.keyboard_nav_title" | "doc.label" | "doc.label_a11y_desc" | "doc.label_anatomy_content" | "doc.label_anatomy_content_label" | "doc.label_anatomy_root" | "doc.label_anatomy_root_label" | "doc.label_best_practice_1" | "doc.label_best_practice_2" | "doc.label_choice_alt_when" | "doc.label_choice_matrix_desc" | "doc.label_choice_self_when" | "doc.label_content_guideline" | "doc.label_design_intent" | "doc.label_i18n_desc" | "doc.label_keyboard_desc" | "doc.label_motion_desc" | "doc.label_responsive_desc" | "doc.label_scenario_1" | "doc.label_scenario_2" | "doc.label_tokens_desc" | "doc.leaderboard_desc" | "doc.levels_title" | "doc.location" | "doc.menubar_desc" | "doc.motion_spec_title" | "doc.nodeGraph_desc" | "doc.op_cancel" | "doc.op_edit_save" | "doc.op_navigate" | "doc.overlay_base_desc" | "doc.passwordStrength_desc" | "doc.progressRing_desc" | "doc.promptInput_desc" | "doc.props_none" | "doc.props_title" | "doc.pull_to_refresh_a11y_desc" | "doc.pull_to_refresh_best_practice_1" | "doc.pull_to_refresh_best_practice_2" | "doc.pull_to_refresh_choice_matrix_desc" | "doc.pull_to_refresh_content_guideline_1" | "doc.pull_to_refresh_content_guideline_2" | "doc.pull_to_refresh_desc" | "doc.pull_to_refresh_design_intent" | "doc.pull_to_refresh_i18n_desc" | "doc.pull_to_refresh_keyboard_desc" | "doc.pull_to_refresh_motion_desc" | "doc.pull_to_refresh_responsive_desc" | "doc.pull_to_refresh_scenario_1" | "doc.pull_to_refresh_scenario_2" | "doc.queryBuilder_desc" | "doc.querybuilder_a11y_desc" | "doc.querybuilder_anatomy_combinator" | "doc.querybuilder_anatomy_combinator_label" | "doc.querybuilder_anatomy_group" | "doc.querybuilder_anatomy_group_label" | "doc.querybuilder_anatomy_not" | "doc.querybuilder_anatomy_not_label" | "doc.querybuilder_anatomy_root" | "doc.querybuilder_anatomy_root_label" | "doc.querybuilder_anatomy_rule" | "doc.querybuilder_anatomy_rule_label" | "doc.querybuilder_best_practice_1" | "doc.querybuilder_best_practice_2" | "doc.querybuilder_choice_filterbar_when" | "doc.querybuilder_choice_matrix_desc" | "doc.querybuilder_choice_self_when" | "doc.querybuilder_content_guideline_1" | "doc.querybuilder_content_guideline_2" | "doc.querybuilder_design_intent" | "doc.querybuilder_i18n_desc" | "doc.querybuilder_keyboard_desc" | "doc.querybuilder_logic_andor_desc" | "doc.querybuilder_logic_andor_title" | "doc.querybuilder_logic_desc" | "doc.querybuilder_logic_not_desc" | "doc.querybuilder_logic_not_title" | "doc.querybuilder_logic_title" | "doc.querybuilder_motion_desc" | "doc.querybuilder_operators_desc" | "doc.querybuilder_operators_note" | "doc.querybuilder_operators_title" | "doc.querybuilder_operators_type" | "doc.querybuilder_operators_values" | "doc.querybuilder_responsive_desc" | "doc.querybuilder_scenario_1" | "doc.querybuilder_scenario_2" | "doc.querybuilder_token_bg_component" | "doc.querybuilder_token_bg_secondary" | "doc.querybuilder_token_border" | "doc.querybuilder_token_destructive" | "doc.querybuilder_token_radius" | "doc.querybuilder_token_transition" | "doc.reaction_desc" | "doc.real_world_scenarios_title" | "doc.recommendation" | "doc.relativeTime_desc" | "doc.responsive_title" | "doc.richTextEditor_desc" | "doc.scenario" | "doc.scenario_404_title" | "doc.scenario_admin_title" | "doc.scenario_agreement_title" | "doc.scenario_ai_title" | "doc.scenario_article_title" | "doc.scenario_chat_title" | "doc.scenario_collab_title" | "doc.scenario_comment_title" | "doc.scenario_confirm_title" | "doc.scenario_copy_title" | "doc.scenario_cta_title" | "doc.scenario_dashboard_title" | "doc.scenario_delete_title" | "doc.scenario_detail_title" | "doc.scenario_ec_title" | "doc.scenario_event_title" | "doc.scenario_fail_title" | "doc.scenario_faq_title" | "doc.scenario_feature_title" | "doc.scenario_feed_title" | "doc.scenario_files_title" | "doc.scenario_filter_title" | "doc.scenario_form_title" | "doc.scenario_gallery_title" | "doc.scenario_gender_title" | "doc.scenario_help_title" | "doc.scenario_hero_title" | "doc.scenario_icon_title" | "doc.scenario_inbox_title" | "doc.scenario_init_title" | "doc.scenario_list_title" | "doc.scenario_maintenance_title" | "doc.scenario_nav_title" | "doc.scenario_notif_title" | "doc.scenario_pagination_title" | "doc.scenario_payment_title" | "doc.scenario_product_title" | "doc.scenario_products_title" | "doc.scenario_profile_title" | "doc.scenario_refresh_title" | "doc.scenario_save_title" | "doc.scenario_search_title" | "doc.scenario_settings_title" | "doc.scenario_sns_title" | "doc.scenario_stats_title" | "doc.scenario_status_title" | "doc.scenario_subscription_title" | "doc.scenario_toc_title" | "doc.scenario_toggle_title" | "doc.scenario_toolbar_title" | "doc.scenario_trial_title" | "doc.scenario_undo_title" | "doc.scenario_user_title" | "doc.scenario_warning_title" | "doc.scheduleView_desc" | "doc.score" | "doc.see_more" | "doc.segmentedcontrol_choice_alt_when" | "doc.segmentedcontrol_choice_self_when" | "doc.selection_guide_link" | "doc.smartSearchInput_desc" | "doc.sourceCitation_desc" | "doc.speed_dial_a11y_desc" | "doc.speed_dial_best_practice_1" | "doc.speed_dial_best_practice_2" | "doc.speed_dial_choice_matrix_desc" | "doc.speed_dial_content_guideline_1" | "doc.speed_dial_content_guideline_2" | "doc.speed_dial_desc" | "doc.speed_dial_design_intent" | "doc.speed_dial_i18n_desc" | "doc.speed_dial_keyboard_desc" | "doc.speed_dial_motion_desc" | "doc.speed_dial_responsive_desc" | "doc.speed_dial_scenario_1" | "doc.speed_dial_scenario_2" | "doc.splitButton_desc" | "doc.spoiler_desc" | "doc.status_content_desc" | "doc.std_column_component" | "doc.std_column_no" | "doc.std_column_yes" | "doc.std_header_loading_state" | "doc.std_header_unified_sizing" | "doc.stories" | "doc.story_default" | "doc.story_disabled" | "doc.story_error" | "doc.story_ghost" | "doc.story_horizontal" | "doc.story_multiple_icons" | "doc.story_no_label" | "doc.story_states" | "doc.story_with_badge" | "doc.story_with_icon" | "doc.story_with_icons" | "doc.story_with_right_section" | "doc.streamingText_desc" | "doc.summary" | "doc.swipe_action_a11y_desc" | "doc.swipe_action_best_practice_1" | "doc.swipe_action_best_practice_2" | "doc.swipe_action_choice_matrix_desc" | "doc.swipe_action_content_guideline_1" | "doc.swipe_action_content_guideline_2" | "doc.swipe_action_desc" | "doc.swipe_action_design_intent" | "doc.swipe_action_i18n_desc" | "doc.swipe_action_keyboard_desc" | "doc.swipe_action_motion_desc" | "doc.swipe_action_responsive_desc" | "doc.swipe_action_scenario_1" | "doc.swipe_action_scenario_2" | "doc.tagInput_desc" | "doc.tag_deletable" | "doc.tag_deletable_desc" | "doc.terminal_desc" | "doc.test_description" | "doc.test_title" | "doc.text_desc" | "doc.thoughtProcess_desc" | "doc.title_desc" | "doc.togglegroup_choice_alt_when" | "doc.togglegroup_choice_self_when" | "doc.toolbar_desc" | "doc.transfer_i18n_desc" | "doc.transition" | "doc.usage" | "doc.usage_scenario" | "doc.visual_guideline_title" | "dropzone.description" | "effects.common_vars" | "ensure.contrast" | "error.boundary_hide_details" | "error.boundary_retry" | "error.boundary_show_details" | "error.boundary_title" | "error.invalid" | "error.required" | "ex-large.paragraph" | "ex-large.span" | "ex-small.paragraph" | "ex-small.span" | "fileupload.button" | "fileupload.no_file" | "flow.checkbox" | "flow.radio" | "flow.switch" | "form.optional" | "form.required" | "form:agent_status.done" | "form:agent_status.error" | "form:agent_status.idle" | "form:agent_status.running" | "form:agent_status.thinking" | "form:agent_status.waiting" | "form:ai_feedback.group_label" | "form:ai_feedback.negative_label" | "form:ai_feedback.positive_label" | "form:ai_feedback.regenerate_label" | "form:artifact_overlay.maximize" | "form:artifact_overlay.minimize" | "form:btn.page_transition" | "form:button.clear" | "form:button.close" | "form:button.consistency" | "form:button.dismiss" | "form:button.label" | "form:code_block.collapse_label" | "form:code_block.copied_label" | "form:code_block.copy_label" | "form:code_block.expand_label" | "form:code_block.lines" | "form:code_diff_viewer.applied" | "form:code_diff_viewer.apply" | "form:code_diff_viewer.copied_label" | "form:code_diff_viewer.copy_label" | "form:code_diff_viewer.reject" | "form:code_diff_viewer.split_view" | "form:code_diff_viewer.unified_view" | "form:combobox.no_results" | "form:dropzone.description" | "form:fileupload.button" | "form:fileupload.no_file" | "form:form.optional" | "form:form.required" | "form:image_cropper.apply" | "form:image_cropper.cancel" | "form:image_cropper.confirm" | "form:image_cropper.confirm_message" | "form:image_cropper.confirm_title" | "form:image_cropper.no_image" | "form:image_cropper.rotate" | "form:image_cropper.zoom" | "form:markdown.task_done" | "form:markdown.task_todo" | "form:otp.digit" | "form:password_strength.fair" | "form:password_strength.strong" | "form:password_strength.very_strong" | "form:password_strength.very_weak" | "form:password_strength.weak" | "form:phone.number" | "form:prompt_input.aria_label" | "form:prompt_input.attach_label" | "form:prompt_input.send_label" | "form:select.no_options" | "form:select.option" | "form:smart_search.input_label" | "form:source_citation.open_source" | "form:source_citation.source_label" | "form:tag_input.input_label" | "form:terminal.clear_label" | "form:terminal.copied_label" | "form:terminal.copy_label" | "form:transfer.move_to_source" | "form:transfer.move_to_target" | "form:transfer.no_data" | "form:transfer.source" | "form:transfer.status_moved_to_source" | "form:transfer.status_moved_to_target" | "form:transfer.target" | "fri" | "gallery.clear_selection" | "gallery.deselect_item" | "gallery.grid_label" | "gallery.select_item" | "gallery.selected_count" | "gallery.selected_count_plural" | "gallery.toolbar_label" | "ganttchart.aria_chart" | "ganttchart.aria_task_bar" | "greeting" | "guide.action_std_affected_components" | "guide.action_std_concept_desc" | "guide.action_std_concept_title" | "guide.action_std_desc" | "guide.action_std_note_desc" | "guide.action_std_note_title" | "guide.action_std_rule_1_desc" | "guide.action_std_rule_1_title" | "guide.action_std_rule_2_desc" | "guide.action_std_rule_2_title" | "guide.action_std_rule_3_desc" | "guide.action_std_rule_3_title" | "guide.action_std_rule_4_desc" | "guide.action_std_rule_4_title" | "guide.action_std_rule_header_desc" | "guide.action_std_rule_header_title" | "guide.action_std_rules_title" | "guide.action_std_title" | "guide.numeric_std_concept_desc" | "guide.numeric_std_concept_title" | "guide.numeric_std_desc" | "guide.numeric_std_exp_notation_desc" | "guide.numeric_std_firefox_behavior" | "guide.numeric_std_i18n_desc" | "guide.numeric_std_keyboard_desc" | "guide.numeric_std_problem_1_desc" | "guide.numeric_std_problem_1_title" | "guide.numeric_std_problem_2_desc" | "guide.numeric_std_problem_2_title" | "guide.numeric_std_problem_3_desc" | "guide.numeric_std_problem_3_title" | "guide.numeric_std_problem_4_desc" | "guide.numeric_std_problem_4_title" | "guide.numeric_std_problems_title" | "guide.numeric_std_recommend_desc" | "guide.numeric_std_recommend_title" | "guide.numeric_std_responsive_desc" | "guide.numeric_std_safari_behavior" | "guide.numeric_std_spin_button_warning" | "guide.numeric_std_table_behavior" | "guide.numeric_std_table_browser" | "guide.numeric_std_table_input_disabled" | "guide.numeric_std_table_input_js_empty" | "guide.numeric_std_table_input_status" | "guide.numeric_std_test_desc" | "guide.numeric_std_title" | "guide.numeric_std_tokens_desc" | "guide.numeric_std_usage_desc" | "guide.numeric_std_usage_do_1" | "guide.numeric_std_usage_dont_1" | "guide.numeric_std_usage_dont_2" | "guide.numeric_std_usage_dont_3" | "guide.numeric_std_usage_warning_desc" | "guide.numeric_std_usage_warning_title" | "heading.text" | "home" | "icon.AlertCircleIcon" | "icon.BellIcon" | "icon.CalendarIcon" | "icon.ChartIcon" | "icon.CheckCircleIcon" | "icon.CheckIcon" | "icon.ChevronDownIcon" | "icon.ChevronLeftIcon" | "icon.ChevronRightIcon" | "icon.ChevronUpIcon" | "icon.CircleIcon" | "icon.ClockIcon" | "icon.CloseIcon" | "icon.CloseSmallIcon" | "icon.CopyIcon" | "icon.DocumentIcon" | "icon.DownloadIcon" | "icon.EditIcon" | "icon.EmailIcon" | "icon.ExternalLinkIcon" | "icon.EyeIcon" | "icon.EyeOffIcon" | "icon.FilterIcon" | "icon.HelpCircleIcon" | "icon.HomeIcon" | "icon.HourglassIcon" | "icon.ImageIcon" | "icon.InfoCircleIcon" | "icon.LoadingIcon" | "icon.LogInIcon" | "icon.LogOutIcon" | "icon.MaximizeIcon" | "icon.MinimizeIcon" | "icon.MinusIcon" | "icon.MonitorIcon" | "icon.MoonIcon" | "icon.MoreHorizontalIcon" | "icon.MoreVerticalIcon" | "icon.MuteIcon" | "icon.PauseIcon" | "icon.PdfIcon" | "icon.PhoneIcon" | "icon.PlayIcon" | "icon.PlusIcon" | "icon.ProjectIcon" | "icon.RefreshIcon" | "icon.RepeatIcon" | "icon.SearchIcon" | "icon.SettingsIcon" | "icon.ShareIcon" | "icon.ShuffleIcon" | "icon.SkipBackIcon" | "icon.SkipForwardIcon" | "icon.SmartphoneIcon" | "icon.SpinnerIcon" | "icon.SquareIcon" | "icon.StarIcon" | "icon.SunIcon" | "icon.ThumbDownIcon" | "icon.ThumbUpIcon" | "icon.TrashIcon" | "icon.UploadIcon" | "icon.UserIcon" | "icon.VideoIcon" | "icon.VolumeIcon" | "image_cropper.apply" | "image_cropper.cancel" | "image_cropper.confirm" | "image_cropper.confirm_message" | "image_cropper.confirm_title" | "image_cropper.no_image" | "image_cropper.rotate" | "image_cropper.zoom" | "important.rule" | "jsonViewer.addItem" | "jsonViewer.collapse" | "jsonViewer.copy" | "jsonViewer.deleteItem" | "jsonViewer.edit" | "jsonViewer.expand" | "jsonViewer.title" | "language.en" | "language.ja" | "language.pt" | "language.support" | "large.paragraph" | "large.span" | "learn.more" | "left" | "legend.all_devices" | "legend.mobile_only" | "legend.pc_only" | "lightbox.close" | "lightbox.counter" | "lightbox.next" | "lightbox.open" | "lightbox.open_named" | "lightbox.previous" | "lightbox.zoom_in" | "lightbox.zoom_out" | "linkvsbutton.btn_examples" | "linkvsbutton.btn_typical" | "linkvsbutton.link_examples" | "linkvsbutton.link_typical" | "linkvsbutton.roles_title" | "markdown.task_done" | "markdown.task_todo" | "medium.paragraph" | "medium.span" | "mon" | "month.apr" | "month.aug" | "month.dec" | "month.feb" | "month.jan" | "month.jul" | "month.jun" | "month.mar" | "month.may" | "month.nov" | "month.oct" | "month.sep" | "new" | "no.data" | "no.options_found" | "no.results_found" | "nodeGraph.add_node" | "nodeGraph.new_node" | "nodeGraph.node_name" | "notifications" | "operators.after" | "operators.after_or_on" | "operators.before" | "operators.before_or_on" | "operators.contains" | "operators.ends_with" | "operators.equal" | "operators.greater_than" | "operators.greater_than_or_equal" | "operators.is_not_null" | "operators.is_null" | "operators.less_than" | "operators.less_than_or_equal" | "operators.not_equal" | "operators.starts_with" | "optional" | "otp.digit" | "overview" | "pagination.go" | "pagination.go_to" | "pagination.items_per_page" | "password_strength.fair" | "password_strength.strong" | "password_strength.very_strong" | "password_strength.very_weak" | "password_strength.weak" | "phone.number" | "placeholder.email" | "placeholder.name" | "placeholder.search" | "planned.for_implementation" | "playback.rate" | "processing" | "profile" | "prompt_input.aria_label" | "prompt_input.attach_label" | "prompt_input.send_label" | "pullToRefresh.loading" | "pullToRefresh.pull" | "pullToRefresh.release" | "quality" | "query.builder.add_group" | "query.builder.add_rule" | "query.builder.and" | "query.builder.combinator" | "query.builder.false" | "query.builder.field" | "query.builder.field_age" | "query.builder.field_birthday" | "query.builder.field_first_name" | "query.builder.field_is_active" | "query.builder.field_last_name" | "query.builder.generated_json" | "query.builder.group_added" | "query.builder.not" | "query.builder.operator" | "query.builder.or" | "query.builder.region_label" | "query.builder.remove_group" | "query.builder.remove_rule" | "query.builder.removed" | "query.builder.rule" | "query.builder.rule_added" | "query.builder.true" | "query.builder.value" | "rating.readonly_label" | "rating.stars" | "reaction.add_reaction" | "reaction.aria_label" | "reaction.react_with" | "reports" | "required" | "right" | "rule.overload_dont_desc" | "rule.same_tier_desc" | "rule.same_tier_title" | "rule.transparent_props_desc" | "rule.transparent_props_title" | "rule.unidirectional_desc" | "rule.unidirectional_title" | "sampletextforscrollarea" | "sat" | "saving" | "screen.reader" | "select.no_options" | "select.option" | "settings" | "signature.canvas_label" | "signature.clear" | "small.paragraph" | "small.span" | "smart.search_ai_title" | "smart.search_match" | "smart.search_placeholder" | "smart.search_result_1" | "smart.search_result_2" | "smart.search_suggestions" | "smart.search_thinking" | "smart_search.input_label" | "snackbar" | "sortable_list.drag_handle_label" | "sortable_list.keyboard_instruction" | "sortable_list.keyboard_moved" | "sortable_list.keyboard_moving" | "source_citation.open_source" | "source_citation.source_label" | "speedDial.close" | "speedDial.open" | "spoiler.show_less" | "spoiler.show_more" | "standard" | "standard_list_item" | "status.active" | "status.completed" | "status.disabled" | "status.done" | "status.enabled" | "status.error" | "status.idle" | "status.info" | "status.loading" | "status.pending" | "status.planning" | "status.success" | "status.warning" | "std.column_auto_integrated" | "std.column_component" | "std.column_no" | "std.column_yes" | "std.header_loading_state" | "std.header_unified_sizing" | "std.std_column_component" | "std.std_column_no" | "std.std_column_yes" | "std.std_header_loading_state" | "std.std_header_unified_sizing" | "story.carousel_slide_label" | "story.thoughtprocess_title_streaming" | "story.thoughtprocess_title_thinking" | "sun" | "table.header_a11y" | "table.header_action" | "table.header_benefits" | "table.header_category" | "table.header_component" | "table.header_components" | "table.header_conditions" | "table.header_consistency" | "table.header_content" | "table.header_criticality" | "table.header_description" | "table.header_detail_reason" | "table.header_details" | "table.header_example" | "table.header_feature" | "table.header_flexibility" | "table.header_flow" | "table.header_format" | "table.header_guideline" | "table.header_impl_effect" | "table.header_input_content" | "table.header_item" | "table.header_overview" | "table.header_placeholder_use" | "table.header_placement" | "table.header_platform" | "table.header_priority" | "table.header_problems" | "table.header_progress" | "table.header_purpose" | "table.header_reason" | "table.header_recommended" | "table.header_recommended_component" | "table.header_recommended_scene" | "table.header_role" | "table.header_rule" | "table.header_scannability" | "table.header_specific_usage" | "table.header_status" | "table.header_target" | "table.header_timing" | "table.header_type" | "table.header_usage" | "table.header_visibility" | "table.header_visual_features" | "tag_input.input_label" | "term.checkbox" | "term.radio" | "term.switch" | "terminal.clear_label" | "terminal.copied_label" | "terminal.copy_label" | "thu" | "tier1.desc" | "tier1.role" | "tier2.desc" | "tier2.role" | "tier3.desc" | "tier3.role" | "tier4.desc" | "tier4.role" | "timing.deferred" | "timing.immediate" | "toast" | "token.bp_cq_criterion" | "token.bp_cq_examples" | "token.bp_cq_label" | "token.bp_cq_note" | "token.bp_cq_usage_desc" | "token.bp_cq_usage_title" | "token.bp_cq_why_desc" | "token.bp_cq_why_title" | "token.bp_decision_col" | "token.bp_desc" | "token.bp_down_desc" | "token.bp_lg_device" | "token.bp_list" | "token.bp_md_device" | "token.bp_mq_criterion" | "token.bp_mq_examples" | "token.bp_mq_label" | "token.bp_mq_vs_cq_desc" | "token.bp_mq_vs_cq_title" | "token.bp_scss" | "token.bp_scss_desc" | "token.bp_sm_device" | "token.bp_th_device" | "token.bp_th_key" | "token.bp_th_width" | "token.bp_title" | "token.bp_up_desc" | "token.bp_xl_device" | "token.breakpoints" | "token.color_checker_desc" | "token.color_checker_title" | "token.color_ct_desc" | "token.color_ct_title" | "token.color_interaction_oklch_desc" | "token.color_interaction_oklch_title" | "token.color_pccs_th1" | "token.color_pccs_th2" | "token.color_pccs_th3" | "token.color_rgb_alpha_desc" | "token.color_rgb_alpha_title" | "token.colors" | "token.effects" | "token.overview_desc" | "token.overview_title" | "token.pccs" | "token.pccs_desc" | "token.spacings" | "token.type_alias" | "token.type_alias_desc" | "token.type_alias_th1" | "token.type_alias_th2" | "token.type_decor" | "token.type_desc1" | "token.type_desc2" | "token.type_ff_desc" | "token.type_ff_en" | "token.type_ff_ja" | "token.type_ff_lang" | "token.type_ff_pt" | "token.type_ff_stack" | "token.type_fontfamily" | "token.type_lh_jpan" | "token.type_lh_jpan_loose" | "token.type_lh_jpan_normal" | "token.type_lh_jpan_tight" | "token.type_lh_latn" | "token.type_lh_latn_loose" | "token.type_lh_latn_normal" | "token.type_lh_latn_tight" | "token.type_lineheight" | "token.type_lineheight_lang_desc" | "token.type_lineheight_lang_title" | "token.type_size" | "token.type_text_ex_large" | "token.type_text_ex_small" | "token.type_text_large" | "token.type_text_medium" | "token.type_text_small" | "token.type_title" | "token.type_weight" | "token.typography" | "too.light_color_dont_desc" | "top" | "transfer.move_to_source" | "transfer.move_to_target" | "transfer.no_data" | "transfer.source" | "transfer.status_moved_to_source" | "transfer.status_moved_to_target" | "transfer.target" | "treeview.collapse" | "treeview.expand" | "treeview.search_aria" | "tue" | "typo.code_desc" | "typo.code_usage" | "typo.compare_table" | "typo.contrast_desc" | "typo.contrast_rule" | "typo.filled_style" | "typo.filled_usage" | "typo.guide_desc" | "typo.guide_title" | "typo.html_tag" | "typo.icon_alt_desc" | "typo.icon_alt_rule" | "typo.icon_aria_desc" | "typo.icon_basics" | "typo.icon_role_desc" | "typo.icon_usage" | "typo.inline_desc" | "typo.inline_usage" | "typo.kbd_desc" | "typo.link_desc" | "typo.mark_desc" | "typo.mark_usage" | "typo.outline_style" | "typo.outline_usage" | "typo.quote_desc" | "typo.quote_usage" | "typo.readability_desc" | "typo.readability_rule" | "typo.semantics_desc" | "typo.semantics_rule" | "typo.style_label" | "typo.text_desc" | "typo.text_usage" | "typo.title_desc" | "typo.title_usage" | "typo.u11y_a11y_title" | "unit.a11y_desc" | "unit.a11y_title" | "unit.comparison_table" | "unit.fixed_desc" | "unit.fixed_title" | "unit.guide_desc" | "unit.guide_title" | "unit.item_px_desc" | "unit.item_relative_desc" | "unit.item_rem_desc" | "unit.item_viewport_desc" | "unit.rem_label" | "unit.responsive_desc" | "unit.responsive_title" | "unit.selection_points" | "unit.usage_details" | "unit.usage_layout_flow" | "unit.usage_screen_fit" | "unit.usage_typography" | "upload" | "username" | "util.a11y_priority" | "util.a11y_strong_allies_desc" | "util.accessible_hide" | "util.custom_scroll" | "util.design_considerations" | "util.divider_type" | "util.divider_usage_desc" | "util.dom_portal" | "util.error_boundary_label" | "util.error_handling" | "util.errorboundary_resilient_note" | "util.errorboundary_usage_desc" | "util.excessive_portal_avoid" | "util.fail_safe_design" | "util.focus_control" | "util.focus_trap_label" | "util.focustrap_usage_desc" | "util.guide_title" | "util.infinite_scroll_label" | "util.infscroll_perf_note" | "util.infscroll_usage_desc" | "util.markdown_security" | "util.markdown_type" | "util.markdown_usage_desc" | "util.markdown_xss_note" | "util.marquee_usage_desc" | "util.performance_consideration" | "util.portal_debug_note" | "util.portal_usage_desc" | "util.scroll_area_label" | "util.scrollarea_usage_desc" | "util.scrollprogress_placement" | "util.scrollprogress_pos_note" | "util.scrollprogress_usage_desc" | "util.tech_utilities" | "util.text_scrolling" | "util.transition_usage_desc" | "util.usage_points" | "util.vh_usage_desc" | "util.visual_utilities" | "util.visually_hidden_label" | "utility.guide" | "vis.absolute_diff" | "vis.chart_colors" | "vis.concentration" | "vis.correlation" | "vis.intermittent" | "vis.large_items" | "vis.login_freq" | "vis.outliers" | "vis.ratio" | "vis.recharts_desc" | "vis.relationship" | "vis.share" | "vis.small_items" | "visual.accessibility" | "wed" | "welcome";
|