@godxjp/ui 20.0.0 → 20.2.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 (273) hide show
  1. package/README.md +8 -2
  2. package/dist/app/app-provider.js +37 -21
  3. package/dist/app/index.d.ts +2 -0
  4. package/dist/app/index.js +2 -0
  5. package/dist/app/storage.d.ts +17 -0
  6. package/dist/app/storage.js +28 -0
  7. package/dist/app/theme-axes.d.ts +2 -0
  8. package/dist/app/theme-axes.js +45 -0
  9. package/dist/components/charts/chart-cartesian.d.ts +2 -1
  10. package/dist/components/charts/chart-cartesian.js +52 -3
  11. package/dist/components/charts/chart-category-axis.d.ts +55 -0
  12. package/dist/components/charts/chart-category-axis.js +93 -0
  13. package/dist/components/charts/chart-frame.d.ts +10 -1
  14. package/dist/components/charts/chart-frame.js +19 -3
  15. package/dist/components/charts/compact-bar-trend.d.ts +1 -1
  16. package/dist/components/charts/compact-bar-trend.js +2 -0
  17. package/dist/components/charts/pie-chart.d.ts +1 -1
  18. package/dist/components/charts/pie-chart.js +12 -1
  19. package/dist/components/charts/recharts-peer.d.ts +49 -0
  20. package/dist/components/charts/recharts-peer.js +45 -0
  21. package/dist/components/data-display/card.d.ts +12 -1
  22. package/dist/components/data-display/card.js +22 -4
  23. package/dist/components/data-display/code-block.js +6 -2
  24. package/dist/components/data-display/data-table.d.ts +39 -4
  25. package/dist/components/data-display/data-table.js +802 -270
  26. package/dist/components/data-display/descriptions.d.ts +27 -6
  27. package/dist/components/data-display/descriptions.js +58 -17
  28. package/dist/components/data-display/index.d.ts +2 -0
  29. package/dist/components/data-display/index.js +2 -0
  30. package/dist/components/data-display/list-row.d.ts +10 -1
  31. package/dist/components/data-display/list-row.js +7 -1
  32. package/dist/components/data-display/popover.d.ts +9 -3
  33. package/dist/components/data-display/popover.js +65 -11
  34. package/dist/components/data-display/range-timeline.d.ts +38 -0
  35. package/dist/components/data-display/range-timeline.js +161 -0
  36. package/dist/components/data-display/scroll-area.js +13 -2
  37. package/dist/components/data-display/service-launcher-card.js +14 -12
  38. package/dist/components/data-display/table.d.ts +71 -3
  39. package/dist/components/data-display/table.js +56 -18
  40. package/dist/components/data-display/tree-list.js +4 -9
  41. package/dist/components/data-entry/calendar.d.ts +2 -2
  42. package/dist/components/data-entry/calendar.js +23 -3
  43. package/dist/components/data-entry/cascader.d.ts +1 -1
  44. package/dist/components/data-entry/cascader.js +188 -24
  45. package/dist/components/data-entry/color-picker.d.ts +1 -1
  46. package/dist/components/data-entry/color-picker.js +17 -5
  47. package/dist/components/data-entry/control-appearance.d.ts +64 -0
  48. package/dist/components/data-entry/control-appearance.js +39 -0
  49. package/dist/components/data-entry/control-surface.d.ts +61 -0
  50. package/dist/components/data-entry/control-surface.js +39 -0
  51. package/dist/components/data-entry/date-picker.d.ts +1 -1
  52. package/dist/components/data-entry/date-picker.js +344 -113
  53. package/dist/components/data-entry/date-range-picker.d.ts +1 -1
  54. package/dist/components/data-entry/date-range-picker.js +278 -140
  55. package/dist/components/data-entry/form-field.d.ts +1 -1
  56. package/dist/components/data-entry/form-field.js +39 -4
  57. package/dist/components/data-entry/form.d.ts +4 -0
  58. package/dist/components/data-entry/form.js +4 -2
  59. package/dist/components/data-entry/index.d.ts +7 -3
  60. package/dist/components/data-entry/index.js +10 -1
  61. package/dist/components/data-entry/input-otp.d.ts +1 -1
  62. package/dist/components/data-entry/input.d.ts +12 -34
  63. package/dist/components/data-entry/input.js +92 -24
  64. package/dist/components/data-entry/month-picker.d.ts +1 -1
  65. package/dist/components/data-entry/month-picker.js +47 -10
  66. package/dist/components/data-entry/month-range-picker.d.ts +1 -1
  67. package/dist/components/data-entry/month-range-picker.js +51 -11
  68. package/dist/components/data-entry/number-input.d.ts +7 -0
  69. package/dist/components/data-entry/number-input.js +147 -98
  70. package/dist/components/data-entry/password-input.d.ts +1 -1
  71. package/dist/components/data-entry/radio.d.ts +1 -1
  72. package/dist/components/data-entry/radio.js +61 -13
  73. package/dist/components/data-entry/search-input.d.ts +1 -1
  74. package/dist/components/data-entry/search-input.js +16 -2
  75. package/dist/components/data-entry/search-select.d.ts +2 -2
  76. package/dist/components/data-entry/search-select.js +209 -78
  77. package/dist/components/data-entry/select.d.ts +22 -4
  78. package/dist/components/data-entry/select.js +215 -163
  79. package/dist/components/data-entry/slider.d.ts +9 -1
  80. package/dist/components/data-entry/slider.js +87 -9
  81. package/dist/components/data-entry/switch.d.ts +3 -0
  82. package/dist/components/data-entry/switch.js +29 -3
  83. package/dist/components/data-entry/textarea.d.ts +14 -56
  84. package/dist/components/data-entry/textarea.js +80 -33
  85. package/dist/components/data-entry/time-picker.d.ts +2 -2
  86. package/dist/components/data-entry/time-picker.js +333 -109
  87. package/dist/components/data-entry/time-range-picker.d.ts +5 -0
  88. package/dist/components/data-entry/time-range-picker.js +89 -0
  89. package/dist/components/data-entry/transfer.d.ts +1 -1
  90. package/dist/components/data-entry/transfer.js +86 -28
  91. package/dist/components/data-entry/tree-select.d.ts +1 -1
  92. package/dist/components/data-entry/tree-select.js +201 -113
  93. package/dist/components/data-entry/tree-utils.js +7 -14
  94. package/dist/components/data-entry/upload-files.d.ts +2 -0
  95. package/dist/components/data-entry/upload-files.js +31 -0
  96. package/dist/components/data-entry/upload-request.d.ts +4 -0
  97. package/dist/components/data-entry/upload-request.js +53 -0
  98. package/dist/components/data-entry/upload-types.d.ts +28 -0
  99. package/dist/components/data-entry/upload-types.js +2 -0
  100. package/dist/components/data-entry/upload.d.ts +2 -2
  101. package/dist/components/data-entry/upload.js +475 -115
  102. package/dist/components/feedback/dialog.js +19 -19
  103. package/dist/components/feedback/sheet.js +3 -0
  104. package/dist/components/feedback/tooltip.js +3 -0
  105. package/dist/components/general/button.d.ts +2 -1
  106. package/dist/components/general/button.js +7 -1
  107. package/dist/components/general/index.d.ts +1 -0
  108. package/dist/components/general/index.js +2 -0
  109. package/dist/components/general/typography.d.ts +3 -0
  110. package/dist/components/general/typography.js +15 -1
  111. package/dist/components/general/visually-hidden.d.ts +3 -0
  112. package/dist/components/general/visually-hidden.js +9 -0
  113. package/dist/components/layout/app-launcher.d.ts +34 -0
  114. package/dist/components/layout/app-launcher.js +261 -0
  115. package/dist/components/layout/app-shell.d.ts +3 -1
  116. package/dist/components/layout/app-shell.js +34 -14
  117. package/dist/components/layout/auth-shell.d.ts +1 -1
  118. package/dist/components/layout/auth-shell.js +2 -0
  119. package/dist/components/layout/breadcrumb.d.ts +14 -2
  120. package/dist/components/layout/breadcrumb.js +46 -4
  121. package/dist/components/layout/flex.d.ts +1 -1
  122. package/dist/components/layout/flex.js +23 -2
  123. package/dist/components/layout/index.d.ts +3 -0
  124. package/dist/components/layout/index.js +5 -1
  125. package/dist/components/layout/org-switcher.js +20 -1
  126. package/dist/components/layout/page-container.d.ts +1 -1
  127. package/dist/components/layout/page-container.js +5 -3
  128. package/dist/components/layout/responsive-grid.d.ts +16 -2
  129. package/dist/components/layout/responsive-grid.js +29 -2
  130. package/dist/components/layout/sidebar.js +2 -1
  131. package/dist/components/layout/topbar-item.d.ts +3 -0
  132. package/dist/components/layout/topbar-item.js +18 -3
  133. package/dist/components/layout/topbar.d.ts +1 -1
  134. package/dist/components/layout/topbar.js +27 -6
  135. package/dist/components/navigation/dropdown-menu.d.ts +30 -2
  136. package/dist/components/navigation/dropdown-menu.js +73 -11
  137. package/dist/components/navigation/pagination.d.ts +2 -2
  138. package/dist/components/navigation/pagination.js +155 -83
  139. package/dist/components/navigation/steps.d.ts +2 -2
  140. package/dist/components/navigation/steps.js +29 -4
  141. package/dist/components/navigation/tabs.d.ts +5 -33
  142. package/dist/components/navigation/tabs.js +232 -64
  143. package/dist/components/ui/hover-card.js +3 -0
  144. package/dist/components/ui/input-otp.d.ts +26 -28
  145. package/dist/components/ui/input-otp.js +50 -7
  146. package/dist/components/ui/password-input.d.ts +36 -2
  147. package/dist/components/ui/password-input.js +27 -7
  148. package/dist/components/ui/rating.d.ts +25 -0
  149. package/dist/components/ui/rating.js +67 -27
  150. package/dist/components/ui/segmented.d.ts +9 -0
  151. package/dist/components/ui/segmented.js +17 -2
  152. package/dist/components/ui/separator.d.ts +4 -0
  153. package/dist/components/ui/separator.js +13 -0
  154. package/dist/components/ui/tag-input.d.ts +45 -0
  155. package/dist/components/ui/tag-input.js +109 -27
  156. package/dist/form/form-context.d.ts +29 -0
  157. package/dist/form/form-context.js +44 -4
  158. package/dist/form/form-field-array.d.ts +22 -0
  159. package/dist/form/form-field-array.js +50 -0
  160. package/dist/form/form-field-control.d.ts +2 -1
  161. package/dist/form/form-field-control.js +116 -40
  162. package/dist/form/form-root.d.ts +2 -1
  163. package/dist/form/form-root.js +142 -23
  164. package/dist/form/index.d.ts +3 -1
  165. package/dist/form/index.js +12 -1
  166. package/dist/i18n/index.d.ts +1 -1
  167. package/dist/i18n/index.js +3 -1
  168. package/dist/i18n/messages/en.json +59 -6
  169. package/dist/i18n/messages/ja.json +59 -6
  170. package/dist/i18n/messages/vi.json +59 -6
  171. package/dist/i18n/translate.d.ts +19 -0
  172. package/dist/i18n/translate.js +24 -0
  173. package/dist/inertia/index.d.ts +20 -0
  174. package/dist/inertia/index.js +60 -1
  175. package/dist/lib/control-styles.d.ts +25 -3
  176. package/dist/lib/control-styles.js +9 -3
  177. package/dist/lib/datetime/picker-format.d.ts +8 -0
  178. package/dist/lib/datetime/picker-format.js +54 -0
  179. package/dist/lib/overlay-portal.d.ts +18 -0
  180. package/dist/lib/overlay-portal.js +17 -0
  181. package/dist/props/components/app.prop.d.ts +13 -2
  182. package/dist/props/components/charts.prop.d.ts +21 -0
  183. package/dist/props/components/data-display.prop.d.ts +55 -4
  184. package/dist/props/components/data-entry.prop.d.ts +687 -43
  185. package/dist/props/components/form.prop.d.ts +142 -4
  186. package/dist/props/components/general.prop.d.ts +30 -1
  187. package/dist/props/components/index.d.ts +2 -2
  188. package/dist/props/components/layout.prop.d.ts +255 -8
  189. package/dist/props/components/navigation.prop.d.ts +113 -3
  190. package/dist/props/registry.d.ts +376 -10
  191. package/dist/props/registry.js +493 -9
  192. package/dist/props/vocabulary/data.prop.d.ts +179 -1
  193. package/dist/props/vocabulary/index.d.ts +4 -4
  194. package/dist/props/vocabulary/interaction.prop.d.ts +51 -2
  195. package/dist/props/vocabulary/navigation.prop.d.ts +40 -0
  196. package/dist/props/vocabulary/shared.prop.d.ts +33 -0
  197. package/dist/styles/badge-layout.css +2 -1
  198. package/dist/styles/card-layout.css +36 -5
  199. package/dist/styles/chart-layout.css +17 -1
  200. package/dist/styles/control.css +520 -14
  201. package/dist/styles/data-display-layout.css +248 -7
  202. package/dist/styles/data-entry-layout.css +13 -0
  203. package/dist/styles/layout.css +221 -4
  204. package/dist/styles/navigation-layout.css +230 -1
  205. package/dist/styles/shell-layout.css +690 -21
  206. package/dist/styles/table-layout.css +95 -6
  207. package/dist/styles/text-layout.css +5 -0
  208. package/dist/tokens/base.css +1 -0
  209. package/dist/tokens/components/badge.css +1 -0
  210. package/dist/tokens/components/chart.css +6 -0
  211. package/dist/tokens/components/control.css +81 -3
  212. package/dist/tokens/components/data-display.css +9 -0
  213. package/dist/tokens/components/descriptions.css +11 -0
  214. package/dist/tokens/components/flex.css +8 -0
  215. package/dist/tokens/components/navigation.css +55 -0
  216. package/dist/tokens/components/shell.css +100 -5
  217. package/dist/tokens/components/table.css +14 -0
  218. package/dist/tokens/foundation.css +2 -0
  219. package/dist/tokens/semantic/layout.css +9 -0
  220. package/docs/CONSUMER-RULES.md +13 -0
  221. package/docs/DESIGN-AUTHORITY.md +43 -6
  222. package/docs/DEVELOPMENT.md +4 -3
  223. package/docs/FORMS.md +151 -6
  224. package/docs/FRAME-COVERAGE-REPORT.md +29 -16
  225. package/docs/README.md +1 -1
  226. package/docs/STANDARDS-vocabulary-tokens.md +1 -1
  227. package/docs/TESTING.md +15 -6
  228. package/docs/charts/cjk-category-axis.tsx +81 -0
  229. package/docs/data-display/card/index.tsx +22 -0
  230. package/docs/data-display/data-table/examples/antd-parity.tsx +257 -0
  231. package/docs/data-display/data-table/index.tsx +23 -0
  232. package/docs/data-display/descriptions.tsx +41 -0
  233. package/docs/data-display/list-row.tsx +6 -6
  234. package/docs/data-display/scroll-area.tsx +31 -25
  235. package/docs/data-display/table.tsx +104 -45
  236. package/docs/data-display/timeline.tsx +41 -0
  237. package/docs/data-entry/date-picker.tsx +85 -0
  238. package/docs/data-entry/date-range-picker.tsx +26 -0
  239. package/docs/data-entry/form-dynamic-fields.tsx +199 -0
  240. package/docs/data-entry/form.tsx +74 -4
  241. package/docs/data-entry/input-otp.tsx +24 -0
  242. package/docs/data-entry/input.tsx +46 -1
  243. package/docs/data-entry/month-range-picker.tsx +1 -1
  244. package/docs/data-entry/select.tsx +27 -0
  245. package/docs/data-entry/switch.tsx +41 -0
  246. package/docs/data-entry/textarea.tsx +38 -0
  247. package/docs/data-entry/time-picker.tsx +85 -1
  248. package/docs/data-entry/time-range-picker.tsx +55 -0
  249. package/docs/data-entry/transfer.tsx +17 -0
  250. package/docs/data-entry/upload.tsx +56 -12
  251. package/docs/feedback/tooltip.tsx +1 -1
  252. package/docs/general/activity.tsx +2 -2
  253. package/docs/general/button/index.tsx +14 -1
  254. package/docs/general/typography.tsx +14 -1
  255. package/docs/layout/app-launcher.tsx +195 -0
  256. package/docs/layout/app-shell-arrangements.tsx +5 -5
  257. package/docs/layout/app-shell.tsx +11 -0
  258. package/docs/layout/flex.tsx +50 -0
  259. package/docs/layout/responsive-grid.tsx +21 -1
  260. package/docs/layout/topbar.tsx +5 -9
  261. package/docs/navigation/app-setting-picker.tsx +11 -0
  262. package/docs/navigation/breadcrumb.tsx +48 -0
  263. package/docs/navigation/dropdown-menu.tsx +21 -0
  264. package/docs/navigation/pagination.tsx +52 -0
  265. package/docs/navigation/steps.tsx +37 -0
  266. package/docs/navigation/tabs.tsx +97 -1
  267. package/docs/query/button-refetch.tsx +1 -0
  268. package/docs/showcase/settings-security-mfa.tsx +3 -3
  269. package/package.json +24 -4
  270. package/scripts/_agent-setup.mjs +76 -9
  271. package/scripts/init-guinea-pig.mjs +26 -4
  272. package/scripts/ui-audit.mjs +243 -30
  273. package/scripts/visual-audit.mjs +45 -7
@@ -129,6 +129,31 @@ export declare const VOCABULARY_REGISTRY: {
129
129
  readonly category: "shared";
130
130
  readonly description: "Inline sizing of a control: full (fill the column) | auto (hug the label)";
131
131
  };
132
+ readonly AllowClearProp: {
133
+ readonly file: "vocabulary/shared.prop.ts";
134
+ readonly category: "shared";
135
+ readonly description: "antd `allowClear` — boolean, or { clearIcon, label } for the clear control";
136
+ };
137
+ readonly MaxTagCountProp: {
138
+ readonly file: "vocabulary/shared.prop.ts";
139
+ readonly category: "shared";
140
+ readonly description: "antd `maxTagCount` — visible selected values before the rest collapse";
141
+ };
142
+ readonly MaxTagPlaceholderProp: {
143
+ readonly file: "vocabulary/shared.prop.ts";
144
+ readonly category: "shared";
145
+ readonly description: "antd `maxTagPlaceholder` — the overflow node standing in for hidden values";
146
+ };
147
+ readonly NotFoundContentProp: {
148
+ readonly file: "vocabulary/shared.prop.ts";
149
+ readonly category: "shared";
150
+ readonly description: "antd `notFoundContent` — node shown when a popup has nothing to list";
151
+ };
152
+ readonly PopupMatchWidthProp: {
153
+ readonly file: "vocabulary/shared.prop.ts";
154
+ readonly category: "shared";
155
+ readonly description: "antd `popupMatchSelectWidth` — true | false | pixel width for the popup";
156
+ };
132
157
  readonly TitleProp: {
133
158
  readonly file: "vocabulary/content.prop.ts";
134
159
  readonly category: "content";
@@ -234,6 +259,96 @@ export declare const VOCABULARY_REGISTRY: {
234
259
  readonly category: "data";
235
260
  readonly description: "Table column priority for the action-collection preset — primary | secondary | meta | actions (unset = takes the remaining space)";
236
261
  };
262
+ readonly ColumnFixedProp: {
263
+ readonly file: "vocabulary/data.prop.ts";
264
+ readonly category: "data";
265
+ readonly description: "Table column sticky edge — start | end (logical; antd `fixed`, whose physical left/right cannot mirror for RTL)";
266
+ };
267
+ readonly ColumnFilterValueProp: {
268
+ readonly file: "vocabulary/data.prop.ts";
269
+ readonly category: "data";
270
+ readonly description: "One value a table column filter can carry — string | number | boolean";
271
+ };
272
+ readonly ColumnFilterItemProp: {
273
+ readonly file: "vocabulary/data.prop.ts";
274
+ readonly category: "data";
275
+ readonly description: "One option in a table column filter menu — { text, value } (antd ColumnFilterItem)";
276
+ };
277
+ readonly ColumnFilterStateProp: {
278
+ readonly file: "vocabulary/data.prop.ts";
279
+ readonly category: "data";
280
+ readonly description: "Active filter selection for one table column (antd FilterValue)";
281
+ };
282
+ readonly OnColumnFilterChangeProp: {
283
+ readonly file: "vocabulary/data.prop.ts";
284
+ readonly category: "data";
285
+ readonly description: "Column-filter change handler keyed by column — this library's split of the `filters` argument antd passes to the table-level onChange";
286
+ };
287
+ readonly ColumnCompareProp: {
288
+ readonly file: "vocabulary/data.prop.ts";
289
+ readonly category: "data";
290
+ readonly description: "Table column comparator (a, b) => number — the `compare` half of antd's sorter";
291
+ };
292
+ readonly ColumnSorterProp: {
293
+ readonly file: "vocabulary/data.prop.ts";
294
+ readonly category: "data";
295
+ readonly description: "Table column sort declaration — true | comparator | { compare, multiple } where `multiple` is the multi-column sort priority (antd sorter)";
296
+ };
297
+ readonly TableSelectionItemProp: {
298
+ readonly file: "vocabulary/data.prop.ts";
299
+ readonly category: "data";
300
+ readonly description: "One entry in the selection-column dropdown — { key, text, onSelect } (antd SelectionItem)";
301
+ };
302
+ readonly TableRowSelectionProp: {
303
+ readonly file: "vocabulary/data.prop.ts";
304
+ readonly category: "data";
305
+ readonly description: "DataTable row-selection config — type | selectedRowKeys | onChange | getCheckboxProps | preserveSelectedRowKeys | selections | hideSelectAll | columnTitle (antd TableRowSelection)";
306
+ };
307
+ readonly TableExpandableProp: {
308
+ readonly file: "vocabulary/data.prop.ts";
309
+ readonly category: "data";
310
+ readonly description: "DataTable expandable-row config — expandedRowRender | rowExpandable | defaultExpandAllRows | expandedRowKeys | onExpandedRowsChange | expandRowByClick (antd/rc-table ExpandableConfig)";
311
+ };
312
+ readonly TableSummaryProp: {
313
+ readonly file: "vocabulary/data.prop.ts";
314
+ readonly category: "data";
315
+ readonly description: "DataTable footer totals row — (rows) => ReactNode (antd/rc-table summary)";
316
+ };
317
+ readonly TableScrollProp: {
318
+ readonly file: "vocabulary/data.prop.ts";
319
+ readonly category: "data";
320
+ readonly description: "DataTable scroll envelope { x, y } — published as --table-scroll-x / --table-scroll-y so the lengths stay data and the geometry stays in CSS (antd scroll)";
321
+ };
322
+ readonly TableStickyProp: {
323
+ readonly file: "vocabulary/data.prop.ts";
324
+ readonly category: "data";
325
+ readonly description: "DataTable sticky header — true | { offsetHeader }, published as --table-sticky-offset (antd sticky)";
326
+ };
327
+ readonly OnRowProp: {
328
+ readonly file: "vocabulary/data.prop.ts";
329
+ readonly category: "data";
330
+ readonly description: "Per-row DOM props merged onto the <tr> (antd onRow)";
331
+ };
332
+ readonly DescriptionsColumnProp: {
333
+ readonly file: "vocabulary/data.prop.ts";
334
+ readonly category: "data";
335
+ readonly description: "Descriptions column count — a number (this library's mobile-first ladder) or antd's responsive { sm, md, lg, xl } object";
336
+ };
337
+ readonly DescriptionsSpanProp: {
338
+ readonly file: "vocabulary/data.prop.ts";
339
+ readonly category: "data";
340
+ readonly description: "How many columns one Descriptions item occupies — number | 'filled' (the whole remaining row) | responsive { sm, md, lg, xl } (antd span)";
341
+ };
342
+ readonly DescriptionsItemsProp: {
343
+ readonly file: "vocabulary/data.prop.ts";
344
+ readonly category: "data";
345
+ readonly description: "Declarative Descriptions items (antd `items`) — { key, label, children/value, mono, span } — the alternative to composing Descriptions.Item children";
346
+ };
347
+ readonly TablePaginationProp: {
348
+ readonly file: "vocabulary/data.prop.ts";
349
+ readonly category: "data";
350
+ readonly description: "DataTable pagination object surface — 1-based current | pageSize | total | pageSizeOptions | showSizeChanger | onChange (antd TablePaginationConfig); `false` hides the pager";
351
+ };
237
352
  readonly TableCellIndentProp: {
238
353
  readonly file: "vocabulary/data.prop.ts";
239
354
  readonly category: "data";
@@ -329,11 +444,26 @@ export declare const VOCABULARY_REGISTRY: {
329
444
  readonly category: "interaction";
330
445
  readonly description: "Inline text alignment start | center | end (logical, RTL-safe)";
331
446
  };
447
+ readonly TextWhitespaceProp: {
448
+ readonly file: "vocabulary/interaction.prop.ts";
449
+ readonly category: "interaction";
450
+ readonly description: "Whitespace handling normal | pre-wrap: `pre-wrap` keeps the newlines and indentation a person typed (a plain-text note, a pasted log) and still wraps at the container edge; `truncate` outranks it";
451
+ };
332
452
  readonly SizeProp: {
333
453
  readonly file: "vocabulary/interaction.prop.ts";
334
454
  readonly category: "interaction";
335
455
  readonly description: "Shared size names xs | sm | md | lg";
336
456
  };
457
+ readonly ControlStatusProp: {
458
+ readonly file: "vocabulary/interaction.prop.ts";
459
+ readonly category: "interaction";
460
+ readonly description: "Validation state a field paints — antd `status`: error | warning";
461
+ };
462
+ readonly ControlVariantProp: {
463
+ readonly file: "vocabulary/interaction.prop.ts";
464
+ readonly category: "interaction";
465
+ readonly description: "Field chrome level — antd `variant`: outlined | filled | borderless";
466
+ };
337
467
  readonly FormLayoutProp: {
338
468
  readonly file: "vocabulary/interaction.prop.ts";
339
469
  readonly category: "interaction";
@@ -404,6 +534,26 @@ export declare const VOCABULARY_REGISTRY: {
404
534
  readonly category: "navigation";
405
535
  readonly description: "Breadcrumb trail array";
406
536
  };
537
+ readonly BreadcrumbItemMenuProp: {
538
+ readonly file: "vocabulary/navigation.prop.ts";
539
+ readonly category: "navigation";
540
+ readonly description: "Sibling dropdown hung off one breadcrumb segment (antd BreadcrumbItemType.menu)";
541
+ };
542
+ readonly BreadcrumbItemMenuEntryProp: {
543
+ readonly file: "vocabulary/navigation.prop.ts";
544
+ readonly category: "navigation";
545
+ readonly description: "One entry of a breadcrumb segment's sibling dropdown";
546
+ };
547
+ readonly BreadcrumbSeparatorProp: {
548
+ readonly file: "vocabulary/navigation.prop.ts";
549
+ readonly category: "navigation";
550
+ readonly description: "Glyph drawn between breadcrumb segments (antd `separator`)";
551
+ };
552
+ readonly BreadcrumbItemRenderProp: {
553
+ readonly file: "vocabulary/navigation.prop.ts";
554
+ readonly category: "navigation";
555
+ readonly description: "Per-segment render override (antd `itemRender`)";
556
+ };
407
557
  readonly ZodSchemaProp: {
408
558
  readonly file: "components/form.prop.ts";
409
559
  readonly category: "form";
@@ -594,6 +744,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
594
744
  readonly reason: "Inverse of hideBelow — keeps a compact-only region off the wide layout.";
595
745
  }];
596
746
  };
747
+ readonly ResponsiveGridFlowProp: {
748
+ readonly group: "layout";
749
+ readonly file: "components/layout.prop.ts";
750
+ readonly vocabulary: readonly [];
751
+ };
597
752
  readonly ResponsiveGridColumnsProp: {
598
753
  readonly group: "layout";
599
754
  readonly file: "components/layout.prop.ts";
@@ -912,6 +1067,26 @@ export declare const COMPONENT_PROP_REGISTRY: {
912
1067
  readonly file: "components/layout.prop.ts";
913
1068
  readonly vocabulary: readonly ["LabelProp"];
914
1069
  };
1070
+ readonly AppLauncherApp: {
1071
+ readonly group: "layout";
1072
+ readonly file: "components/layout.prop.ts";
1073
+ readonly vocabulary: readonly ["IdProp", "LabelProp", "IconProp"];
1074
+ };
1075
+ readonly AppLauncherGroup: {
1076
+ readonly group: "layout";
1077
+ readonly file: "components/layout.prop.ts";
1078
+ readonly vocabulary: readonly ["LabelProp"];
1079
+ };
1080
+ readonly AppLauncherLabels: {
1081
+ readonly group: "layout";
1082
+ readonly file: "components/layout.prop.ts";
1083
+ readonly vocabulary: readonly ["LabelProp"];
1084
+ };
1085
+ readonly AppLauncherProp: {
1086
+ readonly group: "layout";
1087
+ readonly file: "components/layout.prop.ts";
1088
+ readonly vocabulary: readonly ["OpenProp", "OnOpenChangeProp", "OnValueChangeProp", "ErrorProp", "PendingProp", "ClassNameProp"];
1089
+ };
915
1090
  readonly OrgSwitcherOrganization: {
916
1091
  readonly group: "layout";
917
1092
  readonly file: "components/layout.prop.ts";
@@ -1069,6 +1244,31 @@ export declare const COMPONENT_PROP_REGISTRY: {
1069
1244
  readonly file: "components/data-entry.prop.ts";
1070
1245
  readonly vocabulary: readonly ["ControlWidthProp"];
1071
1246
  };
1247
+ readonly SliderMarksProp: {
1248
+ readonly group: "data-entry";
1249
+ readonly file: "components/data-entry.prop.ts";
1250
+ readonly vocabulary: readonly [];
1251
+ };
1252
+ readonly SliderTooltipProp: {
1253
+ readonly group: "data-entry";
1254
+ readonly file: "components/data-entry.prop.ts";
1255
+ readonly vocabulary: readonly [];
1256
+ };
1257
+ readonly ControlCountProp: {
1258
+ readonly group: "data-entry";
1259
+ readonly file: "components/data-entry.prop.ts";
1260
+ readonly vocabulary: readonly [];
1261
+ };
1262
+ readonly RadioOptionTypeProp: {
1263
+ readonly group: "data-entry";
1264
+ readonly file: "components/data-entry.prop.ts";
1265
+ readonly vocabulary: readonly [];
1266
+ };
1267
+ readonly RadioButtonStyleProp: {
1268
+ readonly group: "data-entry";
1269
+ readonly file: "components/data-entry.prop.ts";
1270
+ readonly vocabulary: readonly [];
1271
+ };
1072
1272
  readonly CalendarFooterProp: {
1073
1273
  readonly group: "data-entry";
1074
1274
  readonly file: "components/data-entry.prop.ts";
@@ -1079,6 +1279,26 @@ export declare const COMPONENT_PROP_REGISTRY: {
1079
1279
  }];
1080
1280
  readonly local: readonly ["showToday", "showClose"];
1081
1281
  };
1282
+ readonly PickerChromeProp: {
1283
+ readonly group: "data-entry";
1284
+ readonly file: "components/data-entry.prop.ts";
1285
+ readonly vocabulary: readonly ["OpenProp", "DefaultOpenProp", "OnOpenChangeProp", "ControlVariantProp", "SizeProp"];
1286
+ };
1287
+ readonly PickerDateFormatProp: {
1288
+ readonly group: "data-entry";
1289
+ readonly file: "components/data-entry.prop.ts";
1290
+ readonly vocabulary: readonly [];
1291
+ };
1292
+ readonly DatePickerBaseProp: {
1293
+ readonly group: "data-entry";
1294
+ readonly file: "components/data-entry.prop.ts";
1295
+ readonly vocabulary: readonly ["PlaceholderProp", "DisabledProp", "ClassNameProp", "IdProp", "NameProp"];
1296
+ };
1297
+ readonly TimeRangePickerProp: {
1298
+ readonly group: "data-entry";
1299
+ readonly file: "components/data-entry.prop.ts";
1300
+ readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "PlaceholderProp"];
1301
+ };
1082
1302
  readonly DatePickerProp: {
1083
1303
  readonly group: "data-entry";
1084
1304
  readonly file: "components/data-entry.prop.ts";
@@ -1099,6 +1319,16 @@ export declare const COMPONENT_PROP_REGISTRY: {
1099
1319
  readonly file: "components/data-entry.prop.ts";
1100
1320
  readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"];
1101
1321
  };
1322
+ readonly CalendarCellRenderProp: {
1323
+ readonly group: "data-entry";
1324
+ readonly file: "components/data-entry.prop.ts";
1325
+ readonly vocabulary: readonly [];
1326
+ };
1327
+ readonly TimePickerDisabledTimeProp: {
1328
+ readonly group: "data-entry";
1329
+ readonly file: "components/data-entry.prop.ts";
1330
+ readonly vocabulary: readonly [];
1331
+ };
1102
1332
  readonly TimePickerProp: {
1103
1333
  readonly group: "data-entry";
1104
1334
  readonly file: "components/data-entry.prop.ts";
@@ -1109,16 +1339,34 @@ export declare const COMPONENT_PROP_REGISTRY: {
1109
1339
  readonly file: "components/data-entry.prop.ts";
1110
1340
  readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp"];
1111
1341
  };
1342
+ readonly SearchSelectBaseProp: {
1343
+ readonly group: "data-entry";
1344
+ readonly file: "components/data-entry.prop.ts";
1345
+ readonly vocabulary: readonly ["PlaceholderProp", "EmptyMessageProp", "DisabledProp", "NameProp", "IdProp", "ClassNameProp", "OpenProp", "OnOpenChangeProp", "SizeProp", "DefaultOpenProp", "ControlStatusProp", "ControlVariantProp", "AllowClearProp", "NotFoundContentProp", "PopupMatchWidthProp", "PendingProp"];
1346
+ readonly note: "Internal — everything on `<Select options>` except the value shape; use Select.";
1347
+ };
1348
+ readonly SearchSelectSingleProp: {
1349
+ readonly group: "data-entry";
1350
+ readonly file: "components/data-entry.prop.ts";
1351
+ readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp"];
1352
+ readonly note: "Internal — the single-select value shape of `<Select options>`; use Select.";
1353
+ };
1354
+ readonly SearchSelectMultipleProp: {
1355
+ readonly group: "data-entry";
1356
+ readonly file: "components/data-entry.prop.ts";
1357
+ readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "MaxTagCountProp", "MaxTagPlaceholderProp"];
1358
+ readonly note: 'Internal — the `mode="multiple"` value shape of `<Select options>`; use Select.';
1359
+ };
1112
1360
  readonly SearchSelectProp: {
1113
1361
  readonly group: "data-entry";
1114
1362
  readonly file: "components/data-entry.prop.ts";
1115
- readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "EmptyMessageProp", "DisabledProp", "NameProp", "IdProp", "ClassNameProp", "OpenProp", "OnOpenChangeProp", "SizeProp"];
1363
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "EmptyMessageProp", "DisabledProp", "NameProp", "IdProp", "ClassNameProp", "OpenProp", "OnOpenChangeProp", "SizeProp", "DefaultOpenProp", "ControlStatusProp", "ControlVariantProp", "AllowClearProp", "NotFoundContentProp", "PopupMatchWidthProp", "PendingProp"];
1116
1364
  readonly note: "Internal — the searchable engine behind `<Select options showSearch>` (not public API); use Select.";
1117
1365
  };
1118
1366
  readonly SelectDataProp: {
1119
1367
  readonly group: "data-entry";
1120
1368
  readonly file: "components/data-entry.prop.ts";
1121
- readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "EmptyMessageProp", "DisabledProp", "NameProp", "IdProp", "ClassNameProp", "OpenProp", "OnOpenChangeProp", "SizeProp"];
1369
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "EmptyMessageProp", "DisabledProp", "NameProp", "IdProp", "ClassNameProp", "OpenProp", "OnOpenChangeProp", "SizeProp", "DefaultOpenProp", "ControlStatusProp", "ControlVariantProp", "AllowClearProp", "NotFoundContentProp", "PopupMatchWidthProp", "PendingProp"];
1122
1370
  readonly note: "Ant-style data-driven form of Select (options|loadOptions + showSearch). One Select for all single-selects.";
1123
1371
  };
1124
1372
  readonly SearchSelectOptionProp: {
@@ -1164,12 +1412,12 @@ export declare const COMPONENT_PROP_REGISTRY: {
1164
1412
  readonly CascaderProp: {
1165
1413
  readonly group: "data-entry";
1166
1414
  readonly file: "components/data-entry.prop.ts";
1167
- readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "ClassNameProp", "IdProp"];
1415
+ readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "ClassNameProp", "IdProp", "DefaultOpenProp", "ControlStatusProp", "ControlVariantProp", "AllowClearProp", "NotFoundContentProp", "PopupMatchWidthProp", "PendingProp", "MaxTagCountProp", "MaxTagPlaceholderProp", "SizeProp", "OnSearchChangeProp", "OpenProp", "OnOpenChangeProp"];
1168
1416
  };
1169
1417
  readonly TreeSelectProp: {
1170
1418
  readonly group: "data-entry";
1171
1419
  readonly file: "components/data-entry.prop.ts";
1172
- readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "ClassNameProp", "IdProp"];
1420
+ readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "ClassNameProp", "IdProp", "DefaultOpenProp", "ControlStatusProp", "ControlVariantProp", "AllowClearProp", "NotFoundContentProp", "PopupMatchWidthProp", "PendingProp", "MaxTagCountProp", "MaxTagPlaceholderProp", "SizeProp", "OnSearchChangeProp", "OpenProp", "OnOpenChangeProp"];
1173
1421
  };
1174
1422
  readonly ShowCheckedStrategyProp: {
1175
1423
  readonly group: "data-entry";
@@ -1237,7 +1485,7 @@ export declare const COMPONENT_PROP_REGISTRY: {
1237
1485
  readonly DataTableProp: {
1238
1486
  readonly group: "data-display";
1239
1487
  readonly file: "components/data-display.prop.ts";
1240
- readonly vocabulary: readonly ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp", "HandlerProp", "TablePresetProp", "TableColumnPriorityProp", "BreakpointProp"];
1488
+ readonly vocabulary: readonly ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp", "HandlerProp", "TablePresetProp", "TableColumnPriorityProp", "BreakpointProp", "ColumnFixedProp", "ColumnFilterItemProp", "ColumnFilterStateProp", "ColumnSorterProp", "TableRowSelectionProp", "TableExpandableProp", "TableSummaryProp", "TableScrollProp", "TableStickyProp", "OnRowProp", "TablePaginationProp", "SortDirectionProp", "OnColumnFilterChangeProp"];
1241
1489
  };
1242
1490
  readonly ListRowDensityProp: {
1243
1491
  readonly group: "data-display";
@@ -1276,10 +1524,23 @@ export declare const COMPONENT_PROP_REGISTRY: {
1276
1524
  readonly reason: 'Edge the scrolling viewport sticks to as content grows ("none" | "bottom"). A closed union, not a boolean pair — the third edge ("top", for an inverted feed) is a value, not another flag.';
1277
1525
  }];
1278
1526
  };
1527
+ readonly ScrollAreaOrientationProp: {
1528
+ readonly group: "data-display";
1529
+ readonly file: "components/data-display.prop.ts";
1530
+ readonly vocabulary: readonly [{
1531
+ readonly field: "orientation";
1532
+ readonly local: true;
1533
+ readonly reason: 'Axes that scroll ("vertical" | "horizontal" | "both"). Not the shared OrientationProp: that union has no "both". Radix derives the viewport\'s inline overflowX/overflowY from which scrollbars are mounted, so an axis left out is CLIPPED.';
1534
+ }];
1535
+ };
1279
1536
  readonly ScrollAreaProp: {
1280
1537
  readonly group: "data-display";
1281
1538
  readonly file: "components/data-display.prop.ts";
1282
- readonly vocabulary: readonly ["OnValueChangeProp", {
1539
+ readonly vocabulary: readonly [{
1540
+ readonly field: "orientation";
1541
+ readonly local: true;
1542
+ readonly reason: "See ScrollAreaOrientationProp, the scrolling-axis vocabulary.";
1543
+ }, "OnValueChangeProp", {
1283
1544
  readonly field: "viewportRef";
1284
1545
  readonly local: true;
1285
1546
  readonly reason: "Ref to the SCROLLING element (the Radix viewport), which the component's own `ref` cannot reach — the root is overflow:hidden.";
@@ -1329,6 +1590,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1329
1590
  readonly field: "height";
1330
1591
  readonly local: true;
1331
1592
  readonly reason: "Explicit canvas height px (overrides size tier).";
1593
+ }, {
1594
+ readonly field: "showCaption";
1595
+ readonly local: true;
1596
+ readonly reason: "Paint the caption; false keeps it sr-only so the accessible name survives.";
1332
1597
  }, {
1333
1598
  readonly field: "showLegend";
1334
1599
  readonly local: true;
@@ -1366,6 +1631,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1366
1631
  readonly field: "height";
1367
1632
  readonly local: true;
1368
1633
  readonly reason: "Explicit canvas height px (overrides size tier).";
1634
+ }, {
1635
+ readonly field: "showCaption";
1636
+ readonly local: true;
1637
+ readonly reason: "Paint the caption; false keeps it sr-only so the accessible name survives.";
1369
1638
  }, {
1370
1639
  readonly field: "showLegend";
1371
1640
  readonly local: true;
@@ -1407,6 +1676,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1407
1676
  readonly field: "emphasizedIndex";
1408
1677
  readonly local: true;
1409
1678
  readonly reason: "Index of the highlighted 'current' bar (negative counts from the end).";
1679
+ }, {
1680
+ readonly field: "showCaption";
1681
+ readonly local: true;
1682
+ readonly reason: "Paint the caption; false keeps it sr-only so the accessible name survives.";
1410
1683
  }, {
1411
1684
  readonly field: "showCategoryLabels";
1412
1685
  readonly local: true;
@@ -1440,6 +1713,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1440
1713
  readonly field: "height";
1441
1714
  readonly local: true;
1442
1715
  readonly reason: "Explicit canvas height px (overrides size tier).";
1716
+ }, {
1717
+ readonly field: "showCaption";
1718
+ readonly local: true;
1719
+ readonly reason: "Paint the caption; false keeps it sr-only so the accessible name survives.";
1443
1720
  }, {
1444
1721
  readonly field: "showLegend";
1445
1722
  readonly local: true;
@@ -1485,6 +1762,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1485
1762
  readonly field: "height";
1486
1763
  readonly local: true;
1487
1764
  readonly reason: "Explicit canvas height px (overrides size tier).";
1765
+ }, {
1766
+ readonly field: "showCaption";
1767
+ readonly local: true;
1768
+ readonly reason: "Paint the caption; false keeps it sr-only so the accessible name survives.";
1488
1769
  }, {
1489
1770
  readonly field: "showLegend";
1490
1771
  readonly local: true;
@@ -1639,13 +1920,33 @@ export declare const COMPONENT_PROP_REGISTRY: {
1639
1920
  readonly PaginationProp: {
1640
1921
  readonly group: "navigation";
1641
1922
  readonly file: "components/navigation.prop.ts";
1642
- readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp"];
1923
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp", "SizeProp"];
1924
+ };
1925
+ readonly PaginationSizeProp: {
1926
+ readonly group: "navigation";
1927
+ readonly file: "components/navigation.prop.ts";
1928
+ readonly vocabulary: readonly [];
1929
+ };
1930
+ readonly DropdownMenuPlacementProp: {
1931
+ readonly group: "navigation";
1932
+ readonly file: "components/navigation.prop.ts";
1933
+ readonly vocabulary: readonly [];
1934
+ };
1935
+ readonly PaginationAlignProp: {
1936
+ readonly group: "navigation";
1937
+ readonly file: "components/navigation.prop.ts";
1938
+ readonly vocabulary: readonly [];
1643
1939
  };
1644
1940
  readonly StepsProp: {
1645
1941
  readonly group: "navigation";
1646
1942
  readonly file: "components/navigation.prop.ts";
1647
1943
  readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "SizeProp", "OnValueChangeProp", "ClassNameProp"];
1648
1944
  };
1945
+ readonly InputOTPProp: {
1946
+ readonly group: "data-entry";
1947
+ readonly file: "components/data-entry.prop.ts";
1948
+ readonly vocabulary: readonly ["SizeProp", "ControlStatusProp", "ControlVariantProp"];
1949
+ };
1649
1950
  readonly InputOTPGroupProp: {
1650
1951
  readonly group: "data-entry";
1651
1952
  readonly file: "components/data-entry.prop.ts";
@@ -1661,6 +1962,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
1661
1962
  readonly file: "components/data-entry.prop.ts";
1662
1963
  readonly vocabulary: readonly [];
1663
1964
  };
1965
+ readonly InputOTPMaskProp: {
1966
+ readonly group: "data-entry";
1967
+ readonly file: "components/data-entry.prop.ts";
1968
+ readonly vocabulary: readonly [];
1969
+ };
1664
1970
  readonly StepItemProp: {
1665
1971
  readonly group: "navigation";
1666
1972
  readonly file: "components/navigation.prop.ts";
@@ -1676,15 +1982,45 @@ export declare const COMPONENT_PROP_REGISTRY: {
1676
1982
  readonly file: "components/navigation.prop.ts";
1677
1983
  readonly vocabulary: readonly [];
1678
1984
  };
1985
+ readonly StepsTypeProp: {
1986
+ readonly group: "navigation";
1987
+ readonly file: "components/navigation.prop.ts";
1988
+ readonly vocabulary: readonly [];
1989
+ };
1679
1990
  readonly TabsProp: {
1680
1991
  readonly group: "navigation";
1681
1992
  readonly file: "components/navigation.prop.ts";
1682
- readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "ClassNameProp"];
1993
+ readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "ClassNameProp", "SizeProp", "ExtraProp"];
1994
+ };
1995
+ readonly TabsVariantProp: {
1996
+ readonly group: "navigation";
1997
+ readonly file: "components/navigation.prop.ts";
1998
+ readonly vocabulary: readonly [];
1999
+ };
2000
+ readonly TabsPlacementProp: {
2001
+ readonly group: "navigation";
2002
+ readonly file: "components/navigation.prop.ts";
2003
+ readonly vocabulary: readonly [];
2004
+ };
2005
+ readonly TabsExtraProp: {
2006
+ readonly group: "navigation";
2007
+ readonly file: "components/navigation.prop.ts";
2008
+ readonly vocabulary: readonly ["ExtraProp"];
2009
+ };
2010
+ readonly TabsOnEditProp: {
2011
+ readonly group: "navigation";
2012
+ readonly file: "components/navigation.prop.ts";
2013
+ readonly vocabulary: readonly ["HandlerProp"];
1683
2014
  };
1684
2015
  readonly TabItemProp: {
1685
2016
  readonly group: "navigation";
1686
2017
  readonly file: "components/navigation.prop.ts";
1687
- readonly vocabulary: readonly ["ValueProp", "LabelProp", "ChildrenProp", "DisabledProp"];
2018
+ readonly vocabulary: readonly ["ValueProp", "LabelProp", "ChildrenProp", "DisabledProp", "IconProp"];
2019
+ };
2020
+ readonly FormFieldArrayProp: {
2021
+ readonly group: "form";
2022
+ readonly file: "components/form.prop.ts";
2023
+ readonly vocabulary: readonly ["NameProp", "ChildrenProp", "DisabledProp"];
1688
2024
  };
1689
2025
  readonly FormRootProp: {
1690
2026
  readonly group: "form";
@@ -1766,13 +2102,18 @@ export declare const COMPONENT_PROP_REGISTRY: {
1766
2102
  readonly TagInputProp: {
1767
2103
  readonly group: "data-entry";
1768
2104
  readonly file: "components/ui/tag-input.tsx";
1769
- readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "IdProp", "ClassNameProp"];
2105
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "IdProp", "ClassNameProp", "ControlStatusProp", "ControlVariantProp", "SizeProp", "MaxTagCountProp", "MaxTagPlaceholderProp"];
1770
2106
  };
1771
2107
  readonly PasswordInputProp: {
1772
2108
  readonly group: "data-entry";
1773
2109
  readonly file: "components/ui/password-input.tsx";
1774
2110
  readonly vocabulary: readonly ["ClassNameProp"];
1775
2111
  };
2112
+ readonly PasswordVisibilityToggleProp: {
2113
+ readonly group: "data-entry";
2114
+ readonly file: "components/ui/password-input.tsx";
2115
+ readonly vocabulary: readonly [];
2116
+ };
1776
2117
  readonly PasswordStrengthProp: {
1777
2118
  readonly group: "data-entry";
1778
2119
  readonly file: "components/data-entry/password-strength.tsx";
@@ -1931,6 +2272,31 @@ export declare const COMPONENT_PROP_REGISTRY: {
1931
2272
  readonly file: "components/data-display/service-launcher-card.tsx";
1932
2273
  readonly vocabulary: readonly ["LabelProp", "ClassNameProp"];
1933
2274
  };
2275
+ readonly RangeTimelineProp: {
2276
+ readonly group: "data-display";
2277
+ readonly file: "components/data-display/range-timeline.tsx";
2278
+ readonly vocabulary: readonly ["LabelProp", {
2279
+ readonly field: "columns";
2280
+ readonly local: true;
2281
+ readonly reason: "Labels and positive numeric unit counts define a consumer-supplied axis.";
2282
+ }, {
2283
+ readonly field: "bands";
2284
+ readonly local: true;
2285
+ readonly reason: "Optional grouped labels in the same axis units, such as months above daily ticks.";
2286
+ }, {
2287
+ readonly field: "rows";
2288
+ readonly local: true;
2289
+ readonly reason: "Consumer-supplied interval records preserve true inclusive endpoints independently of clipping.";
2290
+ }, {
2291
+ readonly field: "today";
2292
+ readonly local: true;
2293
+ readonly reason: "Optional current position in the same numeric units as the axis.";
2294
+ }, {
2295
+ readonly field: "onRangeChange";
2296
+ readonly local: true;
2297
+ readonly reason: "An endpoint movement command, not an internally owned value; the consumer commits its row data.";
2298
+ }];
2299
+ };
1934
2300
  readonly ResponsiveGridProp: {
1935
2301
  readonly group: "layout";
1936
2302
  readonly file: "components/layout/responsive-grid.tsx";