wimui 0.19.0 → 0.20.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.
Files changed (43) hide show
  1. package/dist/components/form/Button/button.module.cjs +1 -1
  2. package/dist/components/form/Button/button.module.js +2 -2
  3. package/dist/components/form/ColorInput/ColorInput.cjs +1 -1
  4. package/dist/components/form/ColorInput/ColorInput.d.ts +9 -1
  5. package/dist/components/form/ColorInput/ColorInput.js +36 -46
  6. package/dist/components/form/ColorInput/color-input.module.cjs +1 -1
  7. package/dist/components/form/ColorInput/color-input.module.js +4 -7
  8. package/dist/components/form/DateRangePicker/DateRangePicker.cjs +1 -1
  9. package/dist/components/form/DateRangePicker/DateRangePicker.js +36 -37
  10. package/dist/components/form/InputBase/input-base.module.cjs +1 -1
  11. package/dist/components/form/InputBase/input-base.module.js +1 -1
  12. package/dist/components/form/MultiSelect/MultiSelect.cjs +1 -1
  13. package/dist/components/form/MultiSelect/MultiSelect.js +1 -1
  14. package/dist/components/form/QueryBuilder/QueryBuilder.cjs +1 -1
  15. package/dist/components/form/QueryBuilder/QueryBuilder.d.ts +124 -1
  16. package/dist/components/form/QueryBuilder/QueryBuilder.js +87 -84
  17. package/dist/components/form/QueryBuilder/querybuilder.module.cjs +1 -1
  18. package/dist/components/form/QueryBuilder/querybuilder.module.js +1 -1
  19. package/dist/components/form/QueryBuilder/warn-unknown-operator.cjs +2 -0
  20. package/dist/components/form/QueryBuilder/warn-unknown-operator.d.ts +3 -0
  21. package/dist/components/form/QueryBuilder/warn-unknown-operator.js +4 -0
  22. package/dist/components/form/SmartSearchInput/SmartSearchInput.cjs +1 -1
  23. package/dist/components/form/SmartSearchInput/SmartSearchInput.js +4 -0
  24. package/dist/components/form/SmartSearchInput/smart-search-input.module.cjs +1 -1
  25. package/dist/components/form/SmartSearchInput/smart-search-input.module.js +5 -3
  26. package/dist/components/form/TagInput/TagInput.cjs +1 -1
  27. package/dist/components/form/TagInput/TagInput.js +1 -1
  28. package/dist/components/layout/Header/header.module.cjs +1 -1
  29. package/dist/components/layout/Header/header.module.js +4 -4
  30. package/dist/i18n/generated/keys.d.ts +1 -1
  31. package/dist/i18n/generated/resources.cjs +1 -1
  32. package/dist/i18n/generated/resources.js +18 -3
  33. package/dist/llms-full.txt +1 -1
  34. package/dist/llms.txt +1 -1
  35. package/dist/locales/en/components.json +19 -2
  36. package/dist/locales/ja/components.json +19 -2
  37. package/dist/locales/pt/components.json +19 -2
  38. package/dist/reset.css +1 -1
  39. package/dist/styles.css +2 -2
  40. package/dist/types/generated-tokens.d.ts +1 -1
  41. package/dist/wimui.umd.css +1 -1
  42. package/dist/wimui.umd.js +5 -5
  43. package/package.json +5 -4
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## What this is
6
6
 
7
- **wimui** v0.19.0 — a React 19 component library: 218 documented components across 10 categories, with design tokens, dark mode, i18n (en/ja/pt-BR) and WAI-ARIA compliant a11y. Peer deps: react ^19, react-dom ^19 (plus optional peers for specific components — see package.json).
7
+ **wimui** v0.20.0 — a React 19 component library: 218 documented components across 10 categories, with design tokens, dark mode, i18n (en/ja/pt-BR) and WAI-ARIA compliant a11y. Peer deps: react ^19, react-dom ^19 (plus optional peers for specific components — see package.json).
8
8
 
9
9
  ## Install & required setup
10
10
 
package/dist/llms.txt CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## What this is
6
6
 
7
- **wimui** v0.19.0 — a React 19 component library: 218 documented components across 10 categories, with design tokens, dark mode, i18n (en/ja/pt-BR) and WAI-ARIA compliant a11y. Peer deps: react ^19, react-dom ^19 (plus optional peers for specific components — see package.json).
7
+ **wimui** v0.20.0 — a React 19 component library: 218 documented components across 10 categories, with design tokens, dark mode, i18n (en/ja/pt-BR) and WAI-ARIA compliant a11y. Peer deps: react ^19, react-dom ^19 (plus optional peers for specific components — see package.json).
8
8
 
9
9
  ## Install & required setup
10
10
 
@@ -66,7 +66,7 @@
66
66
  "querybuilder_design_intent": "QueryBuilder enables end-users to construct complex, nested logical queries without writing code. Use it when search criteria are dynamic and user-defined rather than fixed.",
67
67
  "querybuilder_choice_matrix_desc": "Choose the right component based on the complexity of your search requirements:",
68
68
  "querybuilder_choice_self_when": "When users need to build arbitrary nested conditions with AND/OR/NOT logic across multiple field types.",
69
- "querybuilder_choice_filterbar_when": "When filtering criteria are limited to a fixed set of predefined fields.",
69
+ "querybuilder_choice_filterbar_when": "When the filters are a fixed, known set of fields — a search box plus a few selects is enough.",
70
70
  "querybuilder_anatomy_root_label": "Root Group",
71
71
  "querybuilder_anatomy_root": "The top-level rule group. Always present and cannot be deleted. Contains the combinator toggle and the rules list.",
72
72
  "querybuilder_anatomy_group_label": "Nested Group",
@@ -119,7 +119,17 @@
119
119
  "toolbar_desc": "Action strip for IconButton, ToggleGroup, and related controls with toolbar keyboard navigation.",
120
120
  "menubar_desc": "Desktop-style application menu bar with floating File / Edit / View submenus.",
121
121
  "progressRing_desc": "ProgressRing description.",
122
- "splitButton_desc": "SplitButton description."
122
+ "splitButton_desc": "SplitButton description.",
123
+ "querybuilder_operators_title": "Operator values",
124
+ "querybuilder_operators_desc": "`QueryRule.operator` takes the value below, not the translation key. The set depends on the field type.",
125
+ "querybuilder_operators_type": "Field type",
126
+ "querybuilder_operators_values": "Accepted values",
127
+ "querybuilder_operators_note": "Passing anything else renders an empty operator control. The type rejects it, and a development-time warning names the accepted values for that field type.",
128
+ "selection_guide_link": "Foundation › Selection components — compare table, timing and the SegmentedControl / ToggleGroup line",
129
+ "togglegroup_choice_self_when": "When the buttons carry a value: formatting, a setting, a filter that goes into the query. The selection is part of the result, not a change of what you are looking at.",
130
+ "togglegroup_choice_alt_when": "When picking one changes what is shown below it — that is SegmentedControl.",
131
+ "segmentedcontrol_choice_self_when": "When picking one switches the view: which slice of the data, which period, which stage. What follows it changes.",
132
+ "segmentedcontrol_choice_alt_when": "When the choice is a value you keep (formatting, a setting, a filter) — that is ToggleGroup. For moving between pages, Tabs."
123
133
  },
124
134
  "cat": {
125
135
  "ai": "AI"
@@ -636,5 +646,12 @@
636
646
  "collapse": "Collapse {{label}}",
637
647
  "expand": "Expand {{label}}",
638
648
  "search_aria": "Search tree items"
649
+ },
650
+ "daterangepicker": {
651
+ "start": "Start date",
652
+ "end": "End date"
653
+ },
654
+ "colorinput": {
655
+ "swatch": "Pick a colour"
639
656
  }
640
657
  }
@@ -147,7 +147,7 @@
147
147
  "querybuilder_anatomy_rule_label": "ルール行",
148
148
  "querybuilder_best_practice_1": "初めて使うユーザーが混乱しないよう、必ず defaultQuery を提供して空の状態にならないようにしてください。",
149
149
  "querybuilder_best_practice_2": "生成された QueryGroup はサーバーサイドでバリデーションしてください。クライアント側のクエリ構造のみを信頼してはいけません。",
150
- "querybuilder_choice_filterbar_when": "フィルタリング条件が固定の定義済みフィールドに限定される場合。",
150
+ "querybuilder_choice_filterbar_when": "絞り込む項目が決まっていて増えないとき。検索欄と選択肢がいくつかあれば足りる。",
151
151
  "querybuilder_choice_matrix_desc": "検索要件の複雑さに応じて適切なコンポーネントを選択してください:",
152
152
  "querybuilder_choice_self_when": "AND/OR/NOT ロジックと複数のフィールド型による任意のネスト条件が必要な場合。",
153
153
  "querybuilder_content_guideline_1": "ユーザーが認識できる簡潔なフィールドラベルを使用してください。技術的な識別子をそのままフィールド名に使わないでください。",
@@ -191,7 +191,17 @@
191
191
  "toolbar_desc": "IconButton や ToggleGroup などをまとめるアクション帯。ツールバーのキーボード操作に対応します。",
192
192
  "menubar_desc": "File / Edit / View のようなデスクトップ型メニューバー。フローティングのサブメニューを開きます。",
193
193
  "progressRing_desc": "ProgressRing description.",
194
- "splitButton_desc": "SplitButton description."
194
+ "splitButton_desc": "SplitButton description.",
195
+ "querybuilder_operators_title": "演算子の値",
196
+ "querybuilder_operators_desc": "`QueryRule.operator` に渡すのは下の値で、翻訳キーではありません。使える集合はフィールドの型で決まります。",
197
+ "querybuilder_operators_type": "フィールドの型",
198
+ "querybuilder_operators_values": "渡せる値",
199
+ "querybuilder_operators_note": "これ以外を渡すと演算子の欄が空で描画されます。型では弾かれ、開発時にはその型で使える値を並べた警告が出ます。",
200
+ "selection_guide_link": "Foundation › 選択系コンポーネントの使い分け ── 比較表・反映のタイミング・SegmentedControl と ToggleGroup の線引き",
201
+ "togglegroup_choice_self_when": "ボタンが値を持つとき。書式・設定・条件に混ざる絞り込みなど、選んだものが結果の一部になる場合。見ている対象は変わらない。",
202
+ "togglegroup_choice_alt_when": "選ぶと下の内容が入れ替わるなら SegmentedControl。",
203
+ "segmentedcontrol_choice_self_when": "選ぶとビューが切り替わるとき。データのどの断面か、どの期間か、どの段階か。後ろの内容が入れ替わる場合。",
204
+ "segmentedcontrol_choice_alt_when": "選んだものが持ち続ける値(書式・設定・絞り込み)なら ToggleGroup。ページ間の移動なら Tabs。"
195
205
  },
196
206
  "effects": {
197
207
  "common_vars": "共通変数"
@@ -636,5 +646,12 @@
636
646
  "collapse": "{{label}} を折りたたむ",
637
647
  "expand": "{{label}} を展開",
638
648
  "search_aria": "ツリー項目を検索"
649
+ },
650
+ "daterangepicker": {
651
+ "start": "開始日",
652
+ "end": "終了日"
653
+ },
654
+ "colorinput": {
655
+ "swatch": "色を選ぶ"
639
656
  }
640
657
  }
@@ -147,7 +147,7 @@
147
147
  "querybuilder_anatomy_rule_label": "Linha de Regra",
148
148
  "querybuilder_best_practice_1": "Sempre forneça um defaultQuery para evitar um estado vazio que pode confundir usuários novatos.",
149
149
  "querybuilder_best_practice_2": "Valide o QueryGroup gerado no servidor; não confie apenas na estrutura de consulta do lado do cliente.",
150
- "querybuilder_choice_filterbar_when": "Quando os critérios de filtragem estão limitados a um conjunto fixo de campos predefinidos.",
150
+ "querybuilder_choice_filterbar_when": "Quando os filtros são um conjunto fixo e conhecido de campos — uma busca e alguns seletores bastam.",
151
151
  "querybuilder_choice_matrix_desc": "Escolha o componente certo com base na complexidade dos requisitos de pesquisa:",
152
152
  "querybuilder_choice_self_when": "Quando os usuários precisam criar condições aninhadas arbitrárias com lógica AND/OR/NOT e múltiplos tipos de campo.",
153
153
  "querybuilder_content_guideline_1": "Use rótulos de campo concisos e reconhecíveis pelo usuário. Evite expor identificadores técnicos brutos como nomes de campo.",
@@ -191,7 +191,17 @@
191
191
  "toolbar_desc": "Faixa de ações para IconButton, ToggleGroup e controles relacionados, com navegação por teclado de toolbar.",
192
192
  "menubar_desc": "Barra de menus no estilo desktop, com submenus flutuantes de Arquivo / Editar / Exibir.",
193
193
  "progressRing_desc": "ProgressRing description.",
194
- "splitButton_desc": "SplitButton description."
194
+ "splitButton_desc": "SplitButton description.",
195
+ "querybuilder_operators_title": "Valores de operador",
196
+ "querybuilder_operators_desc": "`QueryRule.operator` recebe o valor abaixo, não a chave de tradução. O conjunto depende do tipo do campo.",
197
+ "querybuilder_operators_type": "Tipo do campo",
198
+ "querybuilder_operators_values": "Valores aceitos",
199
+ "querybuilder_operators_note": "Qualquer outro valor deixa o controle de operador vazio. O tipo recusa, e um aviso em desenvolvimento lista os valores aceitos para aquele tipo.",
200
+ "selection_guide_link": "Foundation › Componentes de seleção — tabela comparativa, momento da aplicação e a linha entre SegmentedControl e ToggleGroup",
201
+ "togglegroup_choice_self_when": "Quando os botões carregam um valor: formatação, uma configuração, um filtro que entra na consulta. A escolha faz parte do resultado, não troca o que você está vendo.",
202
+ "togglegroup_choice_alt_when": "Quando escolher um troca o que aparece abaixo — isso é SegmentedControl.",
203
+ "segmentedcontrol_choice_self_when": "Quando escolher um troca a visão: qual recorte dos dados, qual período, qual etapa. O que vem depois muda.",
204
+ "segmentedcontrol_choice_alt_when": "Quando a escolha é um valor que você mantém (formatação, configuração, filtro) — isso é ToggleGroup. Para navegar entre páginas, Tabs."
195
205
  },
196
206
  "effects": {
197
207
  "common_vars": "Variáveis Comuns"
@@ -636,5 +646,12 @@
636
646
  "collapse": "Recolher {{label}}",
637
647
  "expand": "Expandir {{label}}",
638
648
  "search_aria": "Buscar itens da árvore"
649
+ },
650
+ "daterangepicker": {
651
+ "start": "Data inicial",
652
+ "end": "Data final"
653
+ },
654
+ "colorinput": {
655
+ "swatch": "Escolher uma cor"
639
656
  }
640
657
  }
package/dist/reset.css CHANGED
@@ -1 +1 @@
1
- @layer reset, base, component, utilities;@layer reset{@media(prefers-reduced-motion: reduce){*,*::before,*::after{scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important;animation-iteration-count:1 !important}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{padding:0;margin:0}button{padding:0;cursor:pointer;background-color:rgba(0,0,0,0);border:none}ol,ul{padding:0;margin:0;list-style:none}a{color:inherit;text-decoration:none}table{border-spacing:0;border-collapse:collapse}blockquote{margin:0}}@layer base{html{text-size-adjust:100%;line-height:1.15;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{min-height:100vh;scrollbar-gutter:auto}@media(width >= 769px){body{scrollbar-gutter:stable}}body{color:var(--wim-color-text-primary);overflow-wrap:break-word;background-color:var(--wim-color-surface-app);text-rendering:optimizelegibility;-webkit-tap-highlight-color:rgba(0,0,0,0)}img,picture,video,canvas,svg{display:block;max-width:100%;height:auto}input,button,textarea,select{font:inherit;line-height:inherit;touch-action:manipulation}textarea{resize:vertical}code,kbd,samp,pre{font-family:var(--wim-font-family-mono, monospace)}code :where(code,pre,kbd,samp),kbd :where(code,pre,kbd,samp),samp :where(code,pre,kbd,samp),pre :where(code,pre,kbd,samp){font-family:inherit}code,kbd,samp,pre{font-size:1em}rt{font-feature-settings:"palt"}dialog,[popover]{overscroll-behavior-block:contain}:focus-visible{outline:none;border-radius:inherit;box-shadow:var(--wim-shadow-focus)}@media(prefers-reduced-motion: reduce){*,::before,::after{scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important;animation-iteration-count:1 !important}}::-webkit-scrollbar{width:var(--wim-spacing-sm);height:var(--wim-spacing-sm)}::-webkit-scrollbar-track{background:var(--wim-color-scrollbar-track)}::-webkit-scrollbar-thumb{background:var(--wim-color-scrollbar-thumb);border-radius:var(--wim-radius-full)}::-webkit-scrollbar-thumb:hover{background:oklch(from var(--wim-color-scrollbar-thumb) calc(l * 0.9) c h)}*{scrollbar-color:var(--wim-color-scrollbar-thumb) var(--wim-color-scrollbar-track);scrollbar-width:thin}}.wim-docs-container{padding:24px;color:var(--wim-color-text-primary);background-color:var(--wim-color-surface-app);border-radius:var(--wim-radius-container);transition:background-color var(--wim-duration-base) var(--wim-easing-standard),color var(--wim-duration-base) var(--wim-easing-standard)}.wim-docs-container h1,.wim-docs-container h2,.wim-docs-container h3,.wim-docs-container h4,.wim-docs-container h5,.wim-docs-container h6{margin-top:1.5em;margin-bottom:.5em;color:var(--wim-color-text-primary) !important}.wim-docs-container h1:first-child,.wim-docs-container h2:first-child,.wim-docs-container h3:first-child,.wim-docs-container h4:first-child,.wim-docs-container h5:first-child,.wim-docs-container h6:first-child{margin-top:0}.wim-docs-container p{line-height:1.6;color:var(--wim-color-text-primary) !important}.wim-docs-container ul,.wim-docs-container ol{padding-left:2em;margin:1em 0;color:var(--wim-color-text-primary) !important}.wim-docs-container ul li,.wim-docs-container ol li{margin-bottom:.5em;color:var(--wim-color-text-primary) !important}.wim-docs-container ul li strong,.wim-docs-container ol li strong{color:var(--wim-color-text-primary) !important}.wim-docs-container strong{color:var(--wim-color-text-primary) !important}.wim-docs-container code{font-family:var(--wim-font-family-mono, monospace)}.wim-docs-container code :where(code,pre,kbd,samp){font-family:inherit}.wim-docs-container code{padding:2px 4px;color:var(--wim-color-text-primary) !important;background-color:var(--wim-color-surface-variant);border-radius:var(--wim-radius-component)}.wim-docs-container small{color:var(--wim-color-text-secondary) !important}.wim-docs-container table{width:100%;margin:16px 0;color:var(--wim-color-text-primary) !important;border-collapse:collapse}.wim-docs-container table th,.wim-docs-container table td{padding:12px;color:var(--wim-color-text-primary) !important;background-color:var(--wim-color-surface);border:1px solid var(--wim-color-border)}.wim-docs-container table th strong,.wim-docs-container table td strong{color:var(--wim-color-text-primary) !important}.wim-docs-container table th{font-weight:600;background-color:var(--wim-color-surface-variant)}.wim-docs-container a{color:var(--wim-color-text-accent)}.wim-t code{display:inline-block;padding:3px 5px;font-family:var(--wim-font-family-mono, monospace)}.wim-t code :where(code,pre,kbd,samp){font-family:inherit}.wim-t code{font-size:var(--wim-font-size-xs);line-height:1;vertical-align:middle;color:var(--wim-color-text-primary) !important;background-color:oklch(from var(--wim-color-text-primary) l c h/0.01);border:1px solid oklch(from var(--wim-color-text-primary) l c h/0.05);border-radius:var(--wim-radius-sm)}.react-flow svg,.react-flow__edges svg,svg.react-flow__connectionline{display:unset !important;max-width:unset !important;height:unset !important}@layer utilities{.no-scrollbar{scrollbar-width:none !important;-ms-overflow-style:none !important}.no-scrollbar::-webkit-scrollbar{display:none !important}.subtle-scrollbar{scrollbar-color:var(--wim-color-scrollbar-thumb) var(--wim-color-scrollbar-track) !important;scrollbar-width:thin !important}.subtle-scrollbar::-webkit-scrollbar{width:var(--wim-spacing-lg) !important;height:var(--wim-spacing-lg) !important}.subtle-scrollbar::-webkit-scrollbar-track{background:var(--wim-color-scrollbar-track) !important}.subtle-scrollbar::-webkit-scrollbar-thumb{background-color:var(--wim-color-scrollbar-thumb) !important;background-clip:content-box !important;border:1px solid rgba(0,0,0,0) !important;border-radius:var(--wim-radius-lg) !important}.subtle-scrollbar::-webkit-scrollbar-thumb:hover{background-color:oklch(from var(--wim-color-scrollbar-thumb) calc(l * 0.9) c h) !important}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;white-space:nowrap;border:0;clip-path:inset(50%)}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-nowrap{white-space:nowrap}.flex-center{display:flex !important;align-items:center !important;justify-content:center !important}.expand-click-area{position:relative}.expand-click-area::before{position:absolute;inset:calc(-1*var(--wim-spacing-lg));content:""}.unselectable{user-select:none}.pointer-events-none{pointer-events:none}.glass-sm{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);backdrop-filter:blur(var(--wim-blur-sm))}.glass-md{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);box-shadow:var(--wim-shadow-sm);backdrop-filter:blur(var(--wim-blur-md))}.glass-lg{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);box-shadow:var(--wim-shadow-md);backdrop-filter:blur(var(--wim-blur-xl))}}body{font-family:var(--wim-font-family-default);font-optical-sizing:auto;font-feature-settings:normal;font-kerning:auto;line-height:var(--wim-line-height-normal);word-spacing:0;letter-spacing:0;line-break:normal;word-break:normal;text-wrap:pretty;overflow-wrap:anywhere;text-size-adjust:100%;text-spacing-trim:normal}body[lang=ja]{font-family:var(--wim-font-family-ja);font-feature-settings:"palt";line-height:var(--wim-line-height-normal-jp);hyphens:manual;line-break:auto}body[lang=ja] p,body[lang=ja] li,body[lang=ja] dd,body[lang=ja] dt{-webkit-line-break:strict;line-break:strict;word-break:break-all}body[lang=ja] h1,body[lang=ja] h2,body[lang=ja] h3,body[lang=ja] h4,body[lang=ja] h5,body[lang=ja] h6{-webkit-line-break:strict;line-break:strict}body[lang=en]{font-family:var(--wim-font-family-en);line-height:var(--wim-line-height-normal);hyphens:auto}body[lang=en] h1,body[lang=en] h2,body[lang=en] h3,body[lang=en] h4,body[lang=en] h5,body[lang=en] h6{hyphens:manual}body[lang=pt]{font-family:var(--wim-font-family-pt);line-height:var(--wim-line-height-normal);hyphens:auto}body[lang=pt] h1,body[lang=pt] h2,body[lang=pt] h3,body[lang=pt] h4,body[lang=pt] h5,body[lang=pt] h6{hyphens:manual}.font-size-ex-large{font-size:var(--wim-font-size-xl)}.font-size-large{font-size:var(--wim-font-size-lg)}.font-size-medium{font-size:var(--wim-font-size-md)}.font-size-small{font-size:var(--wim-font-size-sm)}.font-size-ex-small{font-size:var(--wim-font-size-xs)}.text-color-white{color:var(--wim-color-white)}.text-color-deepgray{color:var(--wim-color-text-primary)}.text-color-gray{color:var(--wim-color-text-secondary)}.text-color-lightgray{color:var(--wim-color-text-tertiary)}.text-color-black{color:var(--wim-color-surface-app)}.text-color-error{color:var(--wim-color-text-danger)}.font-weight-normal{font-weight:var(--wim-font-weight-normal)}.font-weight-bold{font-weight:var(--wim-font-weight-bold)}.font-style-normal{font-style:normal}.font-style-italic{font-style:italic}.font-lines-loose-jpan{line-height:var(--wim-line-height-loose-jp)}.font-lines-normal-jpan{line-height:var(--wim-line-height-normal-jp)}.font-lines-tight-jpan{line-height:var(--wim-line-height-tight-jp)}.font-lines-loose-latn{line-height:var(--wim-line-height-loose)}.font-lines-normal-latn{line-height:var(--wim-line-height-normal)}.font-lines-tight-latn{line-height:var(--wim-line-height-tight)}
1
+ @layer reset, base, component, utilities;@layer reset{@media(prefers-reduced-motion: reduce){*,*::before,*::after{scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important;animation-iteration-count:1 !important}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{padding:0;margin:0}button{padding:0;cursor:pointer;background-color:rgba(0,0,0,0);border:none}ol,ul{padding:0;margin:0;list-style:none}a{color:inherit;text-decoration:none}table{border-spacing:0;border-collapse:collapse}blockquote{margin:0}}@layer base{html{text-size-adjust:100%;line-height:1.15;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{min-height:100vh;scrollbar-gutter:auto}@media(width >= 769px){body{scrollbar-gutter:stable}}body{color:var(--wim-color-text-primary);overflow-wrap:break-word;background-color:var(--wim-color-surface-app);text-rendering:optimizelegibility;-webkit-tap-highlight-color:rgba(0,0,0,0)}img,picture,video,canvas,svg{display:block;max-width:100%;height:auto}input,button,textarea,select{font:inherit;line-height:inherit;touch-action:manipulation}textarea{resize:vertical}code,kbd,samp,pre{font-family:var(--wim-font-family-mono, monospace)}code :where(code,pre,kbd,samp),kbd :where(code,pre,kbd,samp),samp :where(code,pre,kbd,samp),pre :where(code,pre,kbd,samp){font-family:inherit}code,kbd,samp,pre{font-size:1em}rt{font-feature-settings:"palt"}dialog,[popover]{overscroll-behavior-block:contain}:focus-visible{outline:none;border-radius:inherit;box-shadow:var(--wim-shadow-focus)}@media(prefers-reduced-motion: reduce){*,::before,::after{scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important;animation-iteration-count:1 !important}}::-webkit-scrollbar{width:var(--wim-spacing-sm);height:var(--wim-spacing-sm)}::-webkit-scrollbar-track{background:var(--wim-color-scrollbar-track)}::-webkit-scrollbar-thumb{background:var(--wim-color-scrollbar-thumb);border-radius:var(--wim-radius-full)}::-webkit-scrollbar-thumb:hover{background:oklch(from var(--wim-color-scrollbar-thumb) calc(l * 0.9) c h)}*{scrollbar-color:var(--wim-color-scrollbar-thumb) var(--wim-color-scrollbar-track);scrollbar-width:thin}}.wim-docs-container{padding:24px;color:var(--wim-color-text-primary);background-color:var(--wim-color-surface-app);border-radius:var(--wim-radius-container);transition:background-color var(--wim-duration-base) var(--wim-easing-standard),color var(--wim-duration-base) var(--wim-easing-standard)}.wim-docs-container h1,.wim-docs-container h2,.wim-docs-container h3,.wim-docs-container h4,.wim-docs-container h5,.wim-docs-container h6{margin-top:1.5em;margin-bottom:.5em;color:var(--wim-color-text-primary) !important}.wim-docs-container h1:first-child,.wim-docs-container h2:first-child,.wim-docs-container h3:first-child,.wim-docs-container h4:first-child,.wim-docs-container h5:first-child,.wim-docs-container h6:first-child{margin-top:0}.wim-docs-container p{line-height:1.6;color:var(--wim-color-text-primary) !important}.wim-docs-container ul,.wim-docs-container ol{padding-left:2em;margin:1em 0;color:var(--wim-color-text-primary) !important}.wim-docs-container ul li,.wim-docs-container ol li{margin-bottom:.5em;color:var(--wim-color-text-primary) !important}.wim-docs-container ul li strong,.wim-docs-container ol li strong{color:var(--wim-color-text-primary) !important}.wim-docs-container strong{color:var(--wim-color-text-primary) !important}.wim-docs-container code{font-family:var(--wim-font-family-mono, monospace)}.wim-docs-container code :where(code,pre,kbd,samp){font-family:inherit}.wim-docs-container code{padding:2px 4px;color:var(--wim-color-text-primary) !important;background-color:var(--wim-color-surface-variant);border-radius:var(--wim-radius-component)}.wim-docs-container small{color:var(--wim-color-text-secondary) !important}.wim-docs-container table{width:100%;margin:16px 0;color:var(--wim-color-text-primary) !important;border-collapse:collapse}.wim-docs-container table th,.wim-docs-container table td{padding:12px;color:var(--wim-color-text-primary) !important;background-color:var(--wim-color-surface);border:1px solid var(--wim-color-border)}.wim-docs-container table th strong,.wim-docs-container table td strong{color:var(--wim-color-text-primary) !important}.wim-docs-container table th{font-weight:600;background-color:var(--wim-color-surface-variant)}.wim-docs-container a{color:var(--wim-color-text-accent)}.wim-t code{display:inline-block;padding:3px 5px;font-family:var(--wim-font-family-mono, monospace)}.wim-t code :where(code,pre,kbd,samp){font-family:inherit}.wim-t code{font-size:var(--wim-font-size-xs);line-height:1;vertical-align:middle;color:var(--wim-color-text-primary) !important;background-color:oklch(from var(--wim-color-text-primary) l c h/0.01);border:1px solid oklch(from var(--wim-color-text-primary) l c h/0.05);border-radius:var(--wim-radius-sm)}.react-flow svg,.react-flow__edges svg,svg.react-flow__connectionline{display:unset !important;max-width:unset !important;height:unset !important}@layer utilities{.no-scrollbar{scrollbar-width:none !important;-ms-overflow-style:none !important}.no-scrollbar::-webkit-scrollbar{display:none !important}.subtle-scrollbar{scrollbar-color:var(--wim-color-scrollbar-thumb) var(--wim-color-scrollbar-track) !important;scrollbar-width:thin !important}.subtle-scrollbar::-webkit-scrollbar{width:var(--wim-spacing-lg) !important;height:var(--wim-spacing-lg) !important}.subtle-scrollbar::-webkit-scrollbar-track{background:var(--wim-color-scrollbar-track) !important}.subtle-scrollbar::-webkit-scrollbar-thumb{background-color:var(--wim-color-scrollbar-thumb) !important;background-clip:content-box !important;border:1px solid rgba(0,0,0,0) !important;border-radius:var(--wim-radius-lg) !important}.subtle-scrollbar::-webkit-scrollbar-thumb:hover{background-color:oklch(from var(--wim-color-scrollbar-thumb) calc(l * 0.9) c h) !important}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;white-space:nowrap;border:0;clip-path:inset(50%)}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-nowrap{white-space:nowrap}.flex-center{display:flex !important;align-items:center !important;justify-content:center !important}.expand-click-area{position:relative}.expand-click-area::before{position:absolute;inset:calc(-1*var(--wim-spacing-lg));content:""}.unselectable{user-select:none}.pointer-events-none{pointer-events:none}.glass-sm{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);backdrop-filter:blur(var(--wim-blur-sm))}.glass-md{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);box-shadow:var(--wim-shadow-sm);backdrop-filter:blur(var(--wim-blur-md))}.glass-lg{background:var(--wim-glass-bg);border:1px solid var(--wim-glass-border);box-shadow:var(--wim-shadow-md);backdrop-filter:blur(var(--wim-blur-xl))}}body{font-family:var(--wim-font-family-default);font-optical-sizing:auto;font-feature-settings:normal;font-kerning:auto;line-height:var(--wim-line-height-normal);word-spacing:0;letter-spacing:0;line-break:normal;word-break:normal;text-wrap:pretty;overflow-wrap:anywhere;text-size-adjust:100%;text-spacing-trim:normal}body[lang=ja]{font-family:var(--wim-font-family-ja);font-feature-settings:"palt";line-height:var(--wim-line-height-normal-jp);hyphens:manual;line-break:auto}body[lang=ja] p,body[lang=ja] li,body[lang=ja] dd,body[lang=ja] dt{-webkit-line-break:strict;line-break:strict;word-break:break-all}body[lang=ja] h1,body[lang=ja] h2,body[lang=ja] h3,body[lang=ja] h4,body[lang=ja] h5,body[lang=ja] h6{-webkit-line-break:strict;line-break:strict}body[lang=en]{font-family:var(--wim-font-family-en);line-height:var(--wim-line-height-normal);hyphens:auto}body[lang=en] h1,body[lang=en] h2,body[lang=en] h3,body[lang=en] h4,body[lang=en] h5,body[lang=en] h6{hyphens:manual}body[lang=en] input,body[lang=en] textarea,body[lang=en] [contenteditable=true],body[lang=en] [contenteditable=""]{hyphens:manual}body[lang=pt]{font-family:var(--wim-font-family-pt);line-height:var(--wim-line-height-normal);hyphens:auto}body[lang=pt] h1,body[lang=pt] h2,body[lang=pt] h3,body[lang=pt] h4,body[lang=pt] h5,body[lang=pt] h6{hyphens:manual}body[lang=pt] input,body[lang=pt] textarea,body[lang=pt] [contenteditable=true],body[lang=pt] [contenteditable=""]{hyphens:manual}.font-size-ex-large{font-size:var(--wim-font-size-xl)}.font-size-large{font-size:var(--wim-font-size-lg)}.font-size-medium{font-size:var(--wim-font-size-md)}.font-size-small{font-size:var(--wim-font-size-sm)}.font-size-ex-small{font-size:var(--wim-font-size-xs)}.text-color-white{color:var(--wim-color-white)}.text-color-deepgray{color:var(--wim-color-text-primary)}.text-color-gray{color:var(--wim-color-text-secondary)}.text-color-lightgray{color:var(--wim-color-text-tertiary)}.text-color-black{color:var(--wim-color-surface-app)}.text-color-error{color:var(--wim-color-text-danger)}.font-weight-normal{font-weight:var(--wim-font-weight-normal)}.font-weight-bold{font-weight:var(--wim-font-weight-bold)}.font-style-normal{font-style:normal}.font-style-italic{font-style:italic}.font-lines-loose-jpan{line-height:var(--wim-line-height-loose-jp)}.font-lines-normal-jpan{line-height:var(--wim-line-height-normal-jp)}.font-lines-tight-jpan{line-height:var(--wim-line-height-tight-jp)}.font-lines-loose-latn{line-height:var(--wim-line-height-loose)}.font-lines-normal-latn{line-height:var(--wim-line-height-normal)}.font-lines-tight-latn{line-height:var(--wim-line-height-tight)}