@godxjp/ui 20.0.0 → 20.1.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 (250) hide show
  1. package/README.md +8 -2
  2. package/dist/app/theme-axes.d.ts +2 -0
  3. package/dist/app/theme-axes.js +45 -0
  4. package/dist/components/charts/chart-cartesian.d.ts +2 -1
  5. package/dist/components/charts/chart-cartesian.js +52 -3
  6. package/dist/components/charts/chart-category-axis.d.ts +55 -0
  7. package/dist/components/charts/chart-category-axis.js +93 -0
  8. package/dist/components/charts/chart-frame.d.ts +10 -1
  9. package/dist/components/charts/chart-frame.js +19 -3
  10. package/dist/components/charts/compact-bar-trend.d.ts +1 -1
  11. package/dist/components/charts/compact-bar-trend.js +2 -0
  12. package/dist/components/charts/pie-chart.d.ts +1 -1
  13. package/dist/components/charts/pie-chart.js +12 -1
  14. package/dist/components/charts/recharts-peer.d.ts +49 -0
  15. package/dist/components/charts/recharts-peer.js +45 -0
  16. package/dist/components/data-display/card.d.ts +12 -1
  17. package/dist/components/data-display/card.js +22 -4
  18. package/dist/components/data-display/code-block.js +6 -2
  19. package/dist/components/data-display/data-table.d.ts +39 -4
  20. package/dist/components/data-display/data-table.js +802 -270
  21. package/dist/components/data-display/descriptions.d.ts +27 -6
  22. package/dist/components/data-display/descriptions.js +58 -17
  23. package/dist/components/data-display/index.d.ts +2 -0
  24. package/dist/components/data-display/index.js +2 -0
  25. package/dist/components/data-display/list-row.d.ts +10 -1
  26. package/dist/components/data-display/list-row.js +7 -1
  27. package/dist/components/data-display/popover.d.ts +2 -2
  28. package/dist/components/data-display/popover.js +61 -11
  29. package/dist/components/data-display/range-timeline.d.ts +38 -0
  30. package/dist/components/data-display/range-timeline.js +161 -0
  31. package/dist/components/data-display/scroll-area.js +13 -2
  32. package/dist/components/data-display/service-launcher-card.js +10 -10
  33. package/dist/components/data-display/table.d.ts +11 -3
  34. package/dist/components/data-display/table.js +48 -18
  35. package/dist/components/data-display/tree-list.js +4 -9
  36. package/dist/components/data-entry/calendar.d.ts +2 -2
  37. package/dist/components/data-entry/calendar.js +12 -1
  38. package/dist/components/data-entry/cascader.d.ts +1 -1
  39. package/dist/components/data-entry/cascader.js +188 -24
  40. package/dist/components/data-entry/color-picker.d.ts +1 -1
  41. package/dist/components/data-entry/color-picker.js +17 -5
  42. package/dist/components/data-entry/control-appearance.d.ts +64 -0
  43. package/dist/components/data-entry/control-appearance.js +39 -0
  44. package/dist/components/data-entry/control-surface.d.ts +61 -0
  45. package/dist/components/data-entry/control-surface.js +39 -0
  46. package/dist/components/data-entry/date-picker.d.ts +1 -1
  47. package/dist/components/data-entry/date-picker.js +344 -113
  48. package/dist/components/data-entry/date-range-picker.d.ts +1 -1
  49. package/dist/components/data-entry/date-range-picker.js +278 -140
  50. package/dist/components/data-entry/form-field.d.ts +1 -1
  51. package/dist/components/data-entry/form-field.js +39 -4
  52. package/dist/components/data-entry/form.d.ts +4 -0
  53. package/dist/components/data-entry/form.js +4 -2
  54. package/dist/components/data-entry/index.d.ts +7 -3
  55. package/dist/components/data-entry/index.js +10 -1
  56. package/dist/components/data-entry/input-otp.d.ts +1 -1
  57. package/dist/components/data-entry/input.d.ts +12 -34
  58. package/dist/components/data-entry/input.js +92 -24
  59. package/dist/components/data-entry/month-picker.d.ts +1 -1
  60. package/dist/components/data-entry/month-picker.js +47 -10
  61. package/dist/components/data-entry/month-range-picker.d.ts +1 -1
  62. package/dist/components/data-entry/month-range-picker.js +51 -11
  63. package/dist/components/data-entry/number-input.d.ts +7 -0
  64. package/dist/components/data-entry/number-input.js +147 -98
  65. package/dist/components/data-entry/password-input.d.ts +1 -1
  66. package/dist/components/data-entry/radio.d.ts +1 -1
  67. package/dist/components/data-entry/radio.js +61 -13
  68. package/dist/components/data-entry/search-input.d.ts +1 -1
  69. package/dist/components/data-entry/search-input.js +16 -2
  70. package/dist/components/data-entry/search-select.d.ts +2 -2
  71. package/dist/components/data-entry/search-select.js +209 -78
  72. package/dist/components/data-entry/select.d.ts +22 -4
  73. package/dist/components/data-entry/select.js +215 -163
  74. package/dist/components/data-entry/slider.d.ts +9 -1
  75. package/dist/components/data-entry/slider.js +87 -9
  76. package/dist/components/data-entry/switch.d.ts +3 -0
  77. package/dist/components/data-entry/switch.js +29 -3
  78. package/dist/components/data-entry/textarea.d.ts +14 -56
  79. package/dist/components/data-entry/textarea.js +80 -33
  80. package/dist/components/data-entry/time-picker.d.ts +2 -2
  81. package/dist/components/data-entry/time-picker.js +333 -109
  82. package/dist/components/data-entry/time-range-picker.d.ts +5 -0
  83. package/dist/components/data-entry/time-range-picker.js +89 -0
  84. package/dist/components/data-entry/transfer.d.ts +1 -1
  85. package/dist/components/data-entry/transfer.js +86 -28
  86. package/dist/components/data-entry/tree-select.d.ts +1 -1
  87. package/dist/components/data-entry/tree-select.js +201 -113
  88. package/dist/components/data-entry/tree-utils.js +7 -14
  89. package/dist/components/data-entry/upload-files.d.ts +2 -0
  90. package/dist/components/data-entry/upload-files.js +31 -0
  91. package/dist/components/data-entry/upload-request.d.ts +4 -0
  92. package/dist/components/data-entry/upload-request.js +53 -0
  93. package/dist/components/data-entry/upload-types.d.ts +28 -0
  94. package/dist/components/data-entry/upload-types.js +2 -0
  95. package/dist/components/data-entry/upload.d.ts +2 -2
  96. package/dist/components/data-entry/upload.js +475 -115
  97. package/dist/components/feedback/dialog.js +16 -19
  98. package/dist/components/general/button.d.ts +1 -1
  99. package/dist/components/general/button.js +5 -1
  100. package/dist/components/general/index.d.ts +1 -0
  101. package/dist/components/general/index.js +2 -0
  102. package/dist/components/general/typography.d.ts +3 -0
  103. package/dist/components/general/typography.js +15 -1
  104. package/dist/components/general/visually-hidden.d.ts +3 -0
  105. package/dist/components/general/visually-hidden.js +9 -0
  106. package/dist/components/layout/app-launcher.d.ts +34 -0
  107. package/dist/components/layout/app-launcher.js +228 -0
  108. package/dist/components/layout/app-shell.d.ts +2 -0
  109. package/dist/components/layout/app-shell.js +20 -7
  110. package/dist/components/layout/breadcrumb.d.ts +14 -2
  111. package/dist/components/layout/breadcrumb.js +46 -4
  112. package/dist/components/layout/flex.d.ts +1 -1
  113. package/dist/components/layout/flex.js +23 -2
  114. package/dist/components/layout/index.d.ts +3 -0
  115. package/dist/components/layout/index.js +5 -1
  116. package/dist/components/layout/org-switcher.js +20 -1
  117. package/dist/components/layout/page-container.d.ts +1 -1
  118. package/dist/components/layout/page-container.js +5 -3
  119. package/dist/components/layout/responsive-grid.d.ts +16 -2
  120. package/dist/components/layout/responsive-grid.js +29 -2
  121. package/dist/components/layout/topbar-item.d.ts +3 -0
  122. package/dist/components/layout/topbar-item.js +18 -3
  123. package/dist/components/layout/topbar.d.ts +1 -1
  124. package/dist/components/layout/topbar.js +27 -6
  125. package/dist/components/navigation/dropdown-menu.d.ts +30 -2
  126. package/dist/components/navigation/dropdown-menu.js +68 -11
  127. package/dist/components/navigation/pagination.d.ts +2 -2
  128. package/dist/components/navigation/pagination.js +155 -83
  129. package/dist/components/navigation/steps.d.ts +2 -2
  130. package/dist/components/navigation/steps.js +29 -4
  131. package/dist/components/navigation/tabs.d.ts +5 -33
  132. package/dist/components/navigation/tabs.js +232 -64
  133. package/dist/components/ui/input-otp.d.ts +26 -28
  134. package/dist/components/ui/input-otp.js +50 -7
  135. package/dist/components/ui/password-input.d.ts +36 -2
  136. package/dist/components/ui/password-input.js +27 -7
  137. package/dist/components/ui/rating.d.ts +25 -0
  138. package/dist/components/ui/rating.js +67 -27
  139. package/dist/components/ui/segmented.d.ts +9 -0
  140. package/dist/components/ui/segmented.js +17 -2
  141. package/dist/components/ui/separator.d.ts +4 -0
  142. package/dist/components/ui/separator.js +13 -0
  143. package/dist/components/ui/tag-input.d.ts +45 -0
  144. package/dist/components/ui/tag-input.js +109 -27
  145. package/dist/form/form-context.d.ts +29 -0
  146. package/dist/form/form-context.js +44 -4
  147. package/dist/form/form-field-array.d.ts +22 -0
  148. package/dist/form/form-field-array.js +50 -0
  149. package/dist/form/form-field-control.d.ts +2 -1
  150. package/dist/form/form-field-control.js +116 -40
  151. package/dist/form/form-root.d.ts +2 -1
  152. package/dist/form/form-root.js +142 -23
  153. package/dist/form/index.d.ts +3 -1
  154. package/dist/form/index.js +12 -1
  155. package/dist/i18n/messages/en.json +56 -5
  156. package/dist/i18n/messages/ja.json +56 -5
  157. package/dist/i18n/messages/vi.json +56 -5
  158. package/dist/inertia/index.d.ts +20 -0
  159. package/dist/inertia/index.js +60 -1
  160. package/dist/lib/control-styles.d.ts +25 -3
  161. package/dist/lib/control-styles.js +9 -3
  162. package/dist/lib/datetime/picker-format.d.ts +8 -0
  163. package/dist/lib/datetime/picker-format.js +54 -0
  164. package/dist/props/components/charts.prop.d.ts +21 -0
  165. package/dist/props/components/data-display.prop.d.ts +55 -4
  166. package/dist/props/components/data-entry.prop.d.ts +687 -43
  167. package/dist/props/components/form.prop.d.ts +142 -4
  168. package/dist/props/components/general.prop.d.ts +17 -1
  169. package/dist/props/components/index.d.ts +2 -2
  170. package/dist/props/components/layout.prop.d.ts +163 -6
  171. package/dist/props/components/navigation.prop.d.ts +113 -3
  172. package/dist/props/registry.d.ts +376 -10
  173. package/dist/props/registry.js +493 -9
  174. package/dist/props/vocabulary/data.prop.d.ts +179 -1
  175. package/dist/props/vocabulary/index.d.ts +4 -4
  176. package/dist/props/vocabulary/interaction.prop.d.ts +51 -2
  177. package/dist/props/vocabulary/navigation.prop.d.ts +40 -0
  178. package/dist/props/vocabulary/shared.prop.d.ts +33 -0
  179. package/dist/styles/badge-layout.css +2 -1
  180. package/dist/styles/card-layout.css +26 -4
  181. package/dist/styles/chart-layout.css +15 -0
  182. package/dist/styles/control.css +515 -14
  183. package/dist/styles/data-display-layout.css +241 -6
  184. package/dist/styles/data-entry-layout.css +13 -0
  185. package/dist/styles/layout.css +221 -4
  186. package/dist/styles/navigation-layout.css +227 -0
  187. package/dist/styles/shell-layout.css +229 -5
  188. package/dist/styles/table-layout.css +95 -6
  189. package/dist/styles/text-layout.css +5 -0
  190. package/dist/tokens/base.css +1 -0
  191. package/dist/tokens/components/badge.css +1 -0
  192. package/dist/tokens/components/chart.css +6 -0
  193. package/dist/tokens/components/control.css +79 -2
  194. package/dist/tokens/components/data-display.css +9 -0
  195. package/dist/tokens/components/descriptions.css +11 -0
  196. package/dist/tokens/components/flex.css +8 -0
  197. package/dist/tokens/components/navigation.css +55 -0
  198. package/dist/tokens/components/shell.css +50 -2
  199. package/dist/tokens/components/table.css +14 -0
  200. package/dist/tokens/semantic/layout.css +9 -0
  201. package/docs/CONSUMER-RULES.md +13 -0
  202. package/docs/DESIGN-AUTHORITY.md +43 -6
  203. package/docs/DEVELOPMENT.md +4 -3
  204. package/docs/FORMS.md +151 -6
  205. package/docs/FRAME-COVERAGE-REPORT.md +29 -16
  206. package/docs/README.md +1 -1
  207. package/docs/STANDARDS-vocabulary-tokens.md +1 -1
  208. package/docs/TESTING.md +15 -6
  209. package/docs/charts/cjk-category-axis.tsx +81 -0
  210. package/docs/data-display/card/index.tsx +22 -0
  211. package/docs/data-display/data-table/examples/antd-parity.tsx +257 -0
  212. package/docs/data-display/data-table/index.tsx +23 -0
  213. package/docs/data-display/descriptions.tsx +41 -0
  214. package/docs/data-display/scroll-area.tsx +31 -25
  215. package/docs/data-display/table.tsx +104 -45
  216. package/docs/data-display/timeline.tsx +41 -0
  217. package/docs/data-entry/date-picker.tsx +85 -0
  218. package/docs/data-entry/date-range-picker.tsx +26 -0
  219. package/docs/data-entry/form-dynamic-fields.tsx +199 -0
  220. package/docs/data-entry/form.tsx +74 -4
  221. package/docs/data-entry/input-otp.tsx +24 -0
  222. package/docs/data-entry/input.tsx +46 -1
  223. package/docs/data-entry/month-range-picker.tsx +1 -1
  224. package/docs/data-entry/select.tsx +27 -0
  225. package/docs/data-entry/switch.tsx +41 -0
  226. package/docs/data-entry/textarea.tsx +38 -0
  227. package/docs/data-entry/time-picker.tsx +85 -1
  228. package/docs/data-entry/time-range-picker.tsx +55 -0
  229. package/docs/data-entry/transfer.tsx +17 -0
  230. package/docs/data-entry/upload.tsx +56 -12
  231. package/docs/feedback/tooltip.tsx +1 -1
  232. package/docs/general/activity.tsx +2 -2
  233. package/docs/general/button/index.tsx +14 -1
  234. package/docs/general/typography.tsx +14 -1
  235. package/docs/layout/app-launcher.tsx +151 -0
  236. package/docs/layout/app-shell.tsx +11 -0
  237. package/docs/layout/flex.tsx +50 -0
  238. package/docs/layout/responsive-grid.tsx +21 -1
  239. package/docs/layout/topbar.tsx +5 -9
  240. package/docs/navigation/app-setting-picker.tsx +11 -0
  241. package/docs/navigation/breadcrumb.tsx +48 -0
  242. package/docs/navigation/dropdown-menu.tsx +21 -0
  243. package/docs/navigation/pagination.tsx +52 -0
  244. package/docs/navigation/steps.tsx +37 -0
  245. package/docs/navigation/tabs.tsx +97 -1
  246. package/docs/query/button-refetch.tsx +1 -0
  247. package/package.json +19 -2
  248. package/scripts/_agent-setup.mjs +19 -2
  249. package/scripts/init-guinea-pig.mjs +26 -4
  250. package/scripts/ui-audit.mjs +243 -30
@@ -125,6 +125,31 @@ const VOCABULARY_REGISTRY = {
125
125
  category: "shared",
126
126
  description: "Inline sizing of a control: full (fill the column) | auto (hug the label)"
127
127
  },
128
+ AllowClearProp: {
129
+ file: "vocabulary/shared.prop.ts",
130
+ category: "shared",
131
+ description: "antd `allowClear` \u2014 boolean, or { clearIcon, label } for the clear control"
132
+ },
133
+ MaxTagCountProp: {
134
+ file: "vocabulary/shared.prop.ts",
135
+ category: "shared",
136
+ description: "antd `maxTagCount` \u2014 visible selected values before the rest collapse"
137
+ },
138
+ MaxTagPlaceholderProp: {
139
+ file: "vocabulary/shared.prop.ts",
140
+ category: "shared",
141
+ description: "antd `maxTagPlaceholder` \u2014 the overflow node standing in for hidden values"
142
+ },
143
+ NotFoundContentProp: {
144
+ file: "vocabulary/shared.prop.ts",
145
+ category: "shared",
146
+ description: "antd `notFoundContent` \u2014 node shown when a popup has nothing to list"
147
+ },
148
+ PopupMatchWidthProp: {
149
+ file: "vocabulary/shared.prop.ts",
150
+ category: "shared",
151
+ description: "antd `popupMatchSelectWidth` \u2014 true | false | pixel width for the popup"
152
+ },
128
153
  // content.prop.ts
129
154
  TitleProp: {
130
155
  file: "vocabulary/content.prop.ts",
@@ -232,6 +257,96 @@ const VOCABULARY_REGISTRY = {
232
257
  category: "data",
233
258
  description: "Table column priority for the action-collection preset \u2014 primary | secondary | meta | actions (unset = takes the remaining space)"
234
259
  },
260
+ ColumnFixedProp: {
261
+ file: "vocabulary/data.prop.ts",
262
+ category: "data",
263
+ description: "Table column sticky edge \u2014 start | end (logical; antd `fixed`, whose physical left/right cannot mirror for RTL)"
264
+ },
265
+ ColumnFilterValueProp: {
266
+ file: "vocabulary/data.prop.ts",
267
+ category: "data",
268
+ description: "One value a table column filter can carry \u2014 string | number | boolean"
269
+ },
270
+ ColumnFilterItemProp: {
271
+ file: "vocabulary/data.prop.ts",
272
+ category: "data",
273
+ description: "One option in a table column filter menu \u2014 { text, value } (antd ColumnFilterItem)"
274
+ },
275
+ ColumnFilterStateProp: {
276
+ file: "vocabulary/data.prop.ts",
277
+ category: "data",
278
+ description: "Active filter selection for one table column (antd FilterValue)"
279
+ },
280
+ OnColumnFilterChangeProp: {
281
+ file: "vocabulary/data.prop.ts",
282
+ category: "data",
283
+ description: "Column-filter change handler keyed by column \u2014 this library's split of the `filters` argument antd passes to the table-level onChange"
284
+ },
285
+ ColumnCompareProp: {
286
+ file: "vocabulary/data.prop.ts",
287
+ category: "data",
288
+ description: "Table column comparator (a, b) => number \u2014 the `compare` half of antd's sorter"
289
+ },
290
+ ColumnSorterProp: {
291
+ file: "vocabulary/data.prop.ts",
292
+ category: "data",
293
+ description: "Table column sort declaration \u2014 true | comparator | { compare, multiple } where `multiple` is the multi-column sort priority (antd sorter)"
294
+ },
295
+ TableSelectionItemProp: {
296
+ file: "vocabulary/data.prop.ts",
297
+ category: "data",
298
+ description: "One entry in the selection-column dropdown \u2014 { key, text, onSelect } (antd SelectionItem)"
299
+ },
300
+ TableRowSelectionProp: {
301
+ file: "vocabulary/data.prop.ts",
302
+ category: "data",
303
+ description: "DataTable row-selection config \u2014 type | selectedRowKeys | onChange | getCheckboxProps | preserveSelectedRowKeys | selections | hideSelectAll | columnTitle (antd TableRowSelection)"
304
+ },
305
+ TableExpandableProp: {
306
+ file: "vocabulary/data.prop.ts",
307
+ category: "data",
308
+ description: "DataTable expandable-row config \u2014 expandedRowRender | rowExpandable | defaultExpandAllRows | expandedRowKeys | onExpandedRowsChange | expandRowByClick (antd/rc-table ExpandableConfig)"
309
+ },
310
+ TableSummaryProp: {
311
+ file: "vocabulary/data.prop.ts",
312
+ category: "data",
313
+ description: "DataTable footer totals row \u2014 (rows) => ReactNode (antd/rc-table summary)"
314
+ },
315
+ TableScrollProp: {
316
+ file: "vocabulary/data.prop.ts",
317
+ category: "data",
318
+ description: "DataTable scroll envelope { x, y } \u2014 published as --table-scroll-x / --table-scroll-y so the lengths stay data and the geometry stays in CSS (antd scroll)"
319
+ },
320
+ TableStickyProp: {
321
+ file: "vocabulary/data.prop.ts",
322
+ category: "data",
323
+ description: "DataTable sticky header \u2014 true | { offsetHeader }, published as --table-sticky-offset (antd sticky)"
324
+ },
325
+ OnRowProp: {
326
+ file: "vocabulary/data.prop.ts",
327
+ category: "data",
328
+ description: "Per-row DOM props merged onto the <tr> (antd onRow)"
329
+ },
330
+ DescriptionsColumnProp: {
331
+ file: "vocabulary/data.prop.ts",
332
+ category: "data",
333
+ description: "Descriptions column count \u2014 a number (this library's mobile-first ladder) or antd's responsive { sm, md, lg, xl } object"
334
+ },
335
+ DescriptionsSpanProp: {
336
+ file: "vocabulary/data.prop.ts",
337
+ category: "data",
338
+ description: "How many columns one Descriptions item occupies \u2014 number | 'filled' (the whole remaining row) | responsive { sm, md, lg, xl } (antd span)"
339
+ },
340
+ DescriptionsItemsProp: {
341
+ file: "vocabulary/data.prop.ts",
342
+ category: "data",
343
+ description: "Declarative Descriptions items (antd `items`) \u2014 { key, label, children/value, mono, span } \u2014 the alternative to composing Descriptions.Item children"
344
+ },
345
+ TablePaginationProp: {
346
+ file: "vocabulary/data.prop.ts",
347
+ category: "data",
348
+ description: "DataTable pagination object surface \u2014 1-based current | pageSize | total | pageSizeOptions | showSizeChanger | onChange (antd TablePaginationConfig); `false` hides the pager"
349
+ },
235
350
  TableCellIndentProp: {
236
351
  file: "vocabulary/data.prop.ts",
237
352
  category: "data",
@@ -328,11 +443,26 @@ const VOCABULARY_REGISTRY = {
328
443
  category: "interaction",
329
444
  description: "Inline text alignment start | center | end (logical, RTL-safe)"
330
445
  },
446
+ TextWhitespaceProp: {
447
+ file: "vocabulary/interaction.prop.ts",
448
+ category: "interaction",
449
+ 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"
450
+ },
331
451
  SizeProp: {
332
452
  file: "vocabulary/interaction.prop.ts",
333
453
  category: "interaction",
334
454
  description: "Shared size names xs | sm | md | lg"
335
455
  },
456
+ ControlStatusProp: {
457
+ file: "vocabulary/interaction.prop.ts",
458
+ category: "interaction",
459
+ description: "Validation state a field paints \u2014 antd `status`: error | warning"
460
+ },
461
+ ControlVariantProp: {
462
+ file: "vocabulary/interaction.prop.ts",
463
+ category: "interaction",
464
+ description: "Field chrome level \u2014 antd `variant`: outlined | filled | borderless"
465
+ },
336
466
  FormLayoutProp: {
337
467
  file: "vocabulary/interaction.prop.ts",
338
468
  category: "interaction",
@@ -404,6 +534,26 @@ const VOCABULARY_REGISTRY = {
404
534
  category: "navigation",
405
535
  description: "Breadcrumb trail array"
406
536
  },
537
+ BreadcrumbItemMenuProp: {
538
+ file: "vocabulary/navigation.prop.ts",
539
+ category: "navigation",
540
+ description: "Sibling dropdown hung off one breadcrumb segment (antd BreadcrumbItemType.menu)"
541
+ },
542
+ BreadcrumbItemMenuEntryProp: {
543
+ file: "vocabulary/navigation.prop.ts",
544
+ category: "navigation",
545
+ description: "One entry of a breadcrumb segment's sibling dropdown"
546
+ },
547
+ BreadcrumbSeparatorProp: {
548
+ file: "vocabulary/navigation.prop.ts",
549
+ category: "navigation",
550
+ description: "Glyph drawn between breadcrumb segments (antd `separator`)"
551
+ },
552
+ BreadcrumbItemRenderProp: {
553
+ file: "vocabulary/navigation.prop.ts",
554
+ category: "navigation",
555
+ description: "Per-segment render override (antd `itemRender`)"
556
+ },
407
557
  ZodSchemaProp: {
408
558
  file: "components/form.prop.ts",
409
559
  category: "form",
@@ -601,6 +751,7 @@ const COMPONENT_PROP_REGISTRY = {
601
751
  }
602
752
  ]
603
753
  },
754
+ ResponsiveGridFlowProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
604
755
  ResponsiveGridColumnsProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
605
756
  ResponsiveGridPresetProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
606
757
  MasterDetailRailWidthProp: {
@@ -1012,6 +1163,33 @@ const COMPONENT_PROP_REGISTRY = {
1012
1163
  file: "components/layout.prop.ts",
1013
1164
  vocabulary: ["LabelProp"]
1014
1165
  },
1166
+ AppLauncherApp: {
1167
+ group: "layout",
1168
+ file: "components/layout.prop.ts",
1169
+ vocabulary: ["IdProp", "LabelProp", "IconProp"]
1170
+ },
1171
+ AppLauncherGroup: {
1172
+ group: "layout",
1173
+ file: "components/layout.prop.ts",
1174
+ vocabulary: ["LabelProp"]
1175
+ },
1176
+ AppLauncherLabels: {
1177
+ group: "layout",
1178
+ file: "components/layout.prop.ts",
1179
+ vocabulary: ["LabelProp"]
1180
+ },
1181
+ AppLauncherProp: {
1182
+ group: "layout",
1183
+ file: "components/layout.prop.ts",
1184
+ vocabulary: [
1185
+ "OpenProp",
1186
+ "OnOpenChangeProp",
1187
+ "OnValueChangeProp",
1188
+ "ErrorProp",
1189
+ "PendingProp",
1190
+ "ClassNameProp"
1191
+ ]
1192
+ },
1015
1193
  OrgSwitcherOrganization: {
1016
1194
  group: "layout",
1017
1195
  file: "components/layout.prop.ts",
@@ -1226,6 +1404,31 @@ const COMPONENT_PROP_REGISTRY = {
1226
1404
  file: "components/data-entry.prop.ts",
1227
1405
  vocabulary: ["ControlWidthProp"]
1228
1406
  },
1407
+ SliderMarksProp: {
1408
+ group: "data-entry",
1409
+ file: "components/data-entry.prop.ts",
1410
+ vocabulary: []
1411
+ },
1412
+ SliderTooltipProp: {
1413
+ group: "data-entry",
1414
+ file: "components/data-entry.prop.ts",
1415
+ vocabulary: []
1416
+ },
1417
+ ControlCountProp: {
1418
+ group: "data-entry",
1419
+ file: "components/data-entry.prop.ts",
1420
+ vocabulary: []
1421
+ },
1422
+ RadioOptionTypeProp: {
1423
+ group: "data-entry",
1424
+ file: "components/data-entry.prop.ts",
1425
+ vocabulary: []
1426
+ },
1427
+ RadioButtonStyleProp: {
1428
+ group: "data-entry",
1429
+ file: "components/data-entry.prop.ts",
1430
+ vocabulary: []
1431
+ },
1229
1432
  CalendarFooterProp: {
1230
1433
  group: "data-entry",
1231
1434
  file: "components/data-entry.prop.ts",
@@ -1238,6 +1441,32 @@ const COMPONENT_PROP_REGISTRY = {
1238
1441
  ],
1239
1442
  local: ["showToday", "showClose"]
1240
1443
  },
1444
+ PickerChromeProp: {
1445
+ group: "data-entry",
1446
+ file: "components/data-entry.prop.ts",
1447
+ vocabulary: [
1448
+ "OpenProp",
1449
+ "DefaultOpenProp",
1450
+ "OnOpenChangeProp",
1451
+ "ControlVariantProp",
1452
+ "SizeProp"
1453
+ ]
1454
+ },
1455
+ PickerDateFormatProp: {
1456
+ group: "data-entry",
1457
+ file: "components/data-entry.prop.ts",
1458
+ vocabulary: []
1459
+ },
1460
+ DatePickerBaseProp: {
1461
+ group: "data-entry",
1462
+ file: "components/data-entry.prop.ts",
1463
+ vocabulary: ["PlaceholderProp", "DisabledProp", "ClassNameProp", "IdProp", "NameProp"]
1464
+ },
1465
+ TimeRangePickerProp: {
1466
+ group: "data-entry",
1467
+ file: "components/data-entry.prop.ts",
1468
+ vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "PlaceholderProp"]
1469
+ },
1241
1470
  DatePickerProp: {
1242
1471
  group: "data-entry",
1243
1472
  file: "components/data-entry.prop.ts",
@@ -1258,6 +1487,16 @@ const COMPONENT_PROP_REGISTRY = {
1258
1487
  file: "components/data-entry.prop.ts",
1259
1488
  vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"]
1260
1489
  },
1490
+ CalendarCellRenderProp: {
1491
+ group: "data-entry",
1492
+ file: "components/data-entry.prop.ts",
1493
+ vocabulary: []
1494
+ },
1495
+ TimePickerDisabledTimeProp: {
1496
+ group: "data-entry",
1497
+ file: "components/data-entry.prop.ts",
1498
+ vocabulary: []
1499
+ },
1261
1500
  TimePickerProp: {
1262
1501
  group: "data-entry",
1263
1502
  file: "components/data-entry.prop.ts",
@@ -1268,6 +1507,47 @@ const COMPONENT_PROP_REGISTRY = {
1268
1507
  file: "components/data-entry.prop.ts",
1269
1508
  vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp"]
1270
1509
  },
1510
+ SearchSelectBaseProp: {
1511
+ group: "data-entry",
1512
+ file: "components/data-entry.prop.ts",
1513
+ vocabulary: [
1514
+ "PlaceholderProp",
1515
+ "EmptyMessageProp",
1516
+ "DisabledProp",
1517
+ "NameProp",
1518
+ "IdProp",
1519
+ "ClassNameProp",
1520
+ "OpenProp",
1521
+ "OnOpenChangeProp",
1522
+ "SizeProp",
1523
+ "DefaultOpenProp",
1524
+ "ControlStatusProp",
1525
+ "ControlVariantProp",
1526
+ "AllowClearProp",
1527
+ "NotFoundContentProp",
1528
+ "PopupMatchWidthProp",
1529
+ "PendingProp"
1530
+ ],
1531
+ note: "Internal \u2014 everything on `<Select options>` except the value shape; use Select."
1532
+ },
1533
+ SearchSelectSingleProp: {
1534
+ group: "data-entry",
1535
+ file: "components/data-entry.prop.ts",
1536
+ vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp"],
1537
+ note: "Internal \u2014 the single-select value shape of `<Select options>`; use Select."
1538
+ },
1539
+ SearchSelectMultipleProp: {
1540
+ group: "data-entry",
1541
+ file: "components/data-entry.prop.ts",
1542
+ vocabulary: [
1543
+ "ValueProp",
1544
+ "DefaultValueProp",
1545
+ "OnValueChangeProp",
1546
+ "MaxTagCountProp",
1547
+ "MaxTagPlaceholderProp"
1548
+ ],
1549
+ note: 'Internal \u2014 the `mode="multiple"` value shape of `<Select options>`; use Select.'
1550
+ },
1271
1551
  SearchSelectProp: {
1272
1552
  group: "data-entry",
1273
1553
  file: "components/data-entry.prop.ts",
@@ -1282,7 +1562,14 @@ const COMPONENT_PROP_REGISTRY = {
1282
1562
  "ClassNameProp",
1283
1563
  "OpenProp",
1284
1564
  "OnOpenChangeProp",
1285
- "SizeProp"
1565
+ "SizeProp",
1566
+ "DefaultOpenProp",
1567
+ "ControlStatusProp",
1568
+ "ControlVariantProp",
1569
+ "AllowClearProp",
1570
+ "NotFoundContentProp",
1571
+ "PopupMatchWidthProp",
1572
+ "PendingProp"
1286
1573
  ],
1287
1574
  note: "Internal \u2014 the searchable engine behind `<Select options showSearch>` (not public API); use Select."
1288
1575
  },
@@ -1300,7 +1587,14 @@ const COMPONENT_PROP_REGISTRY = {
1300
1587
  "ClassNameProp",
1301
1588
  "OpenProp",
1302
1589
  "OnOpenChangeProp",
1303
- "SizeProp"
1590
+ "SizeProp",
1591
+ "DefaultOpenProp",
1592
+ "ControlStatusProp",
1593
+ "ControlVariantProp",
1594
+ "AllowClearProp",
1595
+ "NotFoundContentProp",
1596
+ "PopupMatchWidthProp",
1597
+ "PendingProp"
1304
1598
  ],
1305
1599
  note: "Ant-style data-driven form of Select (options|loadOptions + showSearch). One Select for all single-selects."
1306
1600
  },
@@ -1356,7 +1650,20 @@ const COMPONENT_PROP_REGISTRY = {
1356
1650
  "PlaceholderProp",
1357
1651
  "DisabledProp",
1358
1652
  "ClassNameProp",
1359
- "IdProp"
1653
+ "IdProp",
1654
+ "DefaultOpenProp",
1655
+ "ControlStatusProp",
1656
+ "ControlVariantProp",
1657
+ "AllowClearProp",
1658
+ "NotFoundContentProp",
1659
+ "PopupMatchWidthProp",
1660
+ "PendingProp",
1661
+ "MaxTagCountProp",
1662
+ "MaxTagPlaceholderProp",
1663
+ "SizeProp",
1664
+ "OnSearchChangeProp",
1665
+ "OpenProp",
1666
+ "OnOpenChangeProp"
1360
1667
  ]
1361
1668
  },
1362
1669
  TreeSelectProp: {
@@ -1369,7 +1676,20 @@ const COMPONENT_PROP_REGISTRY = {
1369
1676
  "PlaceholderProp",
1370
1677
  "DisabledProp",
1371
1678
  "ClassNameProp",
1372
- "IdProp"
1679
+ "IdProp",
1680
+ "DefaultOpenProp",
1681
+ "ControlStatusProp",
1682
+ "ControlVariantProp",
1683
+ "AllowClearProp",
1684
+ "NotFoundContentProp",
1685
+ "PopupMatchWidthProp",
1686
+ "PendingProp",
1687
+ "MaxTagCountProp",
1688
+ "MaxTagPlaceholderProp",
1689
+ "SizeProp",
1690
+ "OnSearchChangeProp",
1691
+ "OpenProp",
1692
+ "OnOpenChangeProp"
1373
1693
  ]
1374
1694
  },
1375
1695
  ShowCheckedStrategyProp: {
@@ -1461,7 +1781,20 @@ const COMPONENT_PROP_REGISTRY = {
1461
1781
  "HandlerProp",
1462
1782
  "TablePresetProp",
1463
1783
  "TableColumnPriorityProp",
1464
- "BreakpointProp"
1784
+ "BreakpointProp",
1785
+ "ColumnFixedProp",
1786
+ "ColumnFilterItemProp",
1787
+ "ColumnFilterStateProp",
1788
+ "ColumnSorterProp",
1789
+ "TableRowSelectionProp",
1790
+ "TableExpandableProp",
1791
+ "TableSummaryProp",
1792
+ "TableScrollProp",
1793
+ "TableStickyProp",
1794
+ "OnRowProp",
1795
+ "TablePaginationProp",
1796
+ "SortDirectionProp",
1797
+ "OnColumnFilterChangeProp"
1465
1798
  ]
1466
1799
  },
1467
1800
  ListRowDensityProp: {
@@ -1517,10 +1850,26 @@ const COMPONENT_PROP_REGISTRY = {
1517
1850
  }
1518
1851
  ]
1519
1852
  },
1853
+ ScrollAreaOrientationProp: {
1854
+ group: "data-display",
1855
+ file: "components/data-display.prop.ts",
1856
+ vocabulary: [
1857
+ {
1858
+ field: "orientation",
1859
+ local: true,
1860
+ 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.`
1861
+ }
1862
+ ]
1863
+ },
1520
1864
  ScrollAreaProp: {
1521
1865
  group: "data-display",
1522
1866
  file: "components/data-display.prop.ts",
1523
1867
  vocabulary: [
1868
+ {
1869
+ field: "orientation",
1870
+ local: true,
1871
+ reason: "See ScrollAreaOrientationProp, the scrolling-axis vocabulary."
1872
+ },
1524
1873
  "OnValueChangeProp",
1525
1874
  {
1526
1875
  field: "viewportRef",
@@ -1571,6 +1920,11 @@ const COMPONENT_PROP_REGISTRY = {
1571
1920
  { field: "series", local: true, reason: "Plotted series descriptors." },
1572
1921
  { field: "categoryKey", local: true, reason: "Accessor key for the x-axis category." },
1573
1922
  { field: "height", local: true, reason: "Explicit canvas height px (overrides size tier)." },
1923
+ {
1924
+ field: "showCaption",
1925
+ local: true,
1926
+ reason: "Paint the caption; false keeps it sr-only so the accessible name survives."
1927
+ },
1574
1928
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1575
1929
  { field: "showGrid", local: true, reason: "Chart-specific grid toggle." },
1576
1930
  {
@@ -1595,6 +1949,11 @@ const COMPONENT_PROP_REGISTRY = {
1595
1949
  { field: "series", local: true, reason: "Plotted series descriptors." },
1596
1950
  { field: "categoryKey", local: true, reason: "Accessor key for the category axis." },
1597
1951
  { field: "height", local: true, reason: "Explicit canvas height px (overrides size tier)." },
1952
+ {
1953
+ field: "showCaption",
1954
+ local: true,
1955
+ reason: "Paint the caption; false keeps it sr-only so the accessible name survives."
1956
+ },
1598
1957
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1599
1958
  { field: "showGrid", local: true, reason: "Chart-specific grid toggle." },
1600
1959
  {
@@ -1625,6 +1984,11 @@ const COMPONENT_PROP_REGISTRY = {
1625
1984
  local: true,
1626
1985
  reason: "Index of the highlighted 'current' bar (negative counts from the end)."
1627
1986
  },
1987
+ {
1988
+ field: "showCaption",
1989
+ local: true,
1990
+ reason: "Paint the caption; false keeps it sr-only so the accessible name survives."
1991
+ },
1628
1992
  {
1629
1993
  field: "showCategoryLabels",
1630
1994
  local: true,
@@ -1652,6 +2016,11 @@ const COMPONENT_PROP_REGISTRY = {
1652
2016
  { field: "series", local: true, reason: "Plotted series descriptors." },
1653
2017
  { field: "categoryKey", local: true, reason: "Accessor key for the x-axis category." },
1654
2018
  { field: "height", local: true, reason: "Explicit canvas height px (overrides size tier)." },
2019
+ {
2020
+ field: "showCaption",
2021
+ local: true,
2022
+ reason: "Paint the caption; false keeps it sr-only so the accessible name survives."
2023
+ },
1655
2024
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1656
2025
  { field: "showGrid", local: true, reason: "Chart-specific grid toggle." },
1657
2026
  {
@@ -1682,6 +2051,11 @@ const COMPONENT_PROP_REGISTRY = {
1682
2051
  reason: "Per-slice colour overrides (defaults to --chart-N)."
1683
2052
  },
1684
2053
  { field: "height", local: true, reason: "Explicit canvas height px (overrides size tier)." },
2054
+ {
2055
+ field: "showCaption",
2056
+ local: true,
2057
+ reason: "Paint the caption; false keeps it sr-only so the accessible name survives."
2058
+ },
1685
2059
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1686
2060
  { field: "numberFormat", local: true, reason: "Intl.NumberFormat options for tooltips." },
1687
2061
  { field: "donut", local: true, reason: "Hollow-centre donut rendering." }
@@ -1847,13 +2221,33 @@ const COMPONENT_PROP_REGISTRY = {
1847
2221
  PaginationProp: {
1848
2222
  group: "navigation",
1849
2223
  file: "components/navigation.prop.ts",
1850
- vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp"]
2224
+ vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp", "SizeProp"]
2225
+ },
2226
+ PaginationSizeProp: {
2227
+ group: "navigation",
2228
+ file: "components/navigation.prop.ts",
2229
+ vocabulary: []
2230
+ },
2231
+ DropdownMenuPlacementProp: {
2232
+ group: "navigation",
2233
+ file: "components/navigation.prop.ts",
2234
+ vocabulary: []
2235
+ },
2236
+ PaginationAlignProp: {
2237
+ group: "navigation",
2238
+ file: "components/navigation.prop.ts",
2239
+ vocabulary: []
1851
2240
  },
1852
2241
  StepsProp: {
1853
2242
  group: "navigation",
1854
2243
  file: "components/navigation.prop.ts",
1855
2244
  vocabulary: ["ValueProp", "DefaultValueProp", "SizeProp", "OnValueChangeProp", "ClassNameProp"]
1856
2245
  },
2246
+ InputOTPProp: {
2247
+ group: "data-entry",
2248
+ file: "components/data-entry.prop.ts",
2249
+ vocabulary: ["SizeProp", "ControlStatusProp", "ControlVariantProp"]
2250
+ },
1857
2251
  InputOTPGroupProp: {
1858
2252
  group: "data-entry",
1859
2253
  file: "components/data-entry.prop.ts",
@@ -1869,6 +2263,11 @@ const COMPONENT_PROP_REGISTRY = {
1869
2263
  file: "components/data-entry.prop.ts",
1870
2264
  vocabulary: []
1871
2265
  },
2266
+ InputOTPMaskProp: {
2267
+ group: "data-entry",
2268
+ file: "components/data-entry.prop.ts",
2269
+ vocabulary: []
2270
+ },
1872
2271
  StepItemProp: {
1873
2272
  group: "navigation",
1874
2273
  file: "components/navigation.prop.ts",
@@ -1880,15 +2279,52 @@ const COMPONENT_PROP_REGISTRY = {
1880
2279
  file: "components/navigation.prop.ts",
1881
2280
  vocabulary: []
1882
2281
  },
2282
+ StepsTypeProp: {
2283
+ group: "navigation",
2284
+ file: "components/navigation.prop.ts",
2285
+ vocabulary: []
2286
+ },
1883
2287
  TabsProp: {
1884
2288
  group: "navigation",
1885
2289
  file: "components/navigation.prop.ts",
1886
- vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "ClassNameProp"]
2290
+ vocabulary: [
2291
+ "ValueProp",
2292
+ "DefaultValueProp",
2293
+ "OnValueChangeProp",
2294
+ "ClassNameProp",
2295
+ "SizeProp",
2296
+ "ExtraProp"
2297
+ ]
2298
+ },
2299
+ TabsVariantProp: {
2300
+ group: "navigation",
2301
+ file: "components/navigation.prop.ts",
2302
+ vocabulary: []
2303
+ },
2304
+ TabsPlacementProp: {
2305
+ group: "navigation",
2306
+ file: "components/navigation.prop.ts",
2307
+ vocabulary: []
2308
+ },
2309
+ TabsExtraProp: {
2310
+ group: "navigation",
2311
+ file: "components/navigation.prop.ts",
2312
+ vocabulary: ["ExtraProp"]
2313
+ },
2314
+ TabsOnEditProp: {
2315
+ group: "navigation",
2316
+ file: "components/navigation.prop.ts",
2317
+ vocabulary: ["HandlerProp"]
1887
2318
  },
1888
2319
  TabItemProp: {
1889
2320
  group: "navigation",
1890
2321
  file: "components/navigation.prop.ts",
1891
- vocabulary: ["ValueProp", "LabelProp", "ChildrenProp", "DisabledProp"]
2322
+ vocabulary: ["ValueProp", "LabelProp", "ChildrenProp", "DisabledProp", "IconProp"]
2323
+ },
2324
+ FormFieldArrayProp: {
2325
+ group: "form",
2326
+ file: "components/form.prop.ts",
2327
+ vocabulary: ["NameProp", "ChildrenProp", "DisabledProp"]
1892
2328
  },
1893
2329
  FormRootProp: {
1894
2330
  group: "form",
@@ -1989,13 +2425,29 @@ const COMPONENT_PROP_REGISTRY = {
1989
2425
  TagInputProp: {
1990
2426
  group: "data-entry",
1991
2427
  file: "components/ui/tag-input.tsx",
1992
- vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "IdProp", "ClassNameProp"]
2428
+ vocabulary: [
2429
+ "ValueProp",
2430
+ "OnValueChangeProp",
2431
+ "PlaceholderProp",
2432
+ "IdProp",
2433
+ "ClassNameProp",
2434
+ "ControlStatusProp",
2435
+ "ControlVariantProp",
2436
+ "SizeProp",
2437
+ "MaxTagCountProp",
2438
+ "MaxTagPlaceholderProp"
2439
+ ]
1993
2440
  },
1994
2441
  PasswordInputProp: {
1995
2442
  group: "data-entry",
1996
2443
  file: "components/ui/password-input.tsx",
1997
2444
  vocabulary: ["ClassNameProp"]
1998
2445
  },
2446
+ PasswordVisibilityToggleProp: {
2447
+ group: "data-entry",
2448
+ file: "components/ui/password-input.tsx",
2449
+ vocabulary: []
2450
+ },
1999
2451
  PasswordStrengthProp: {
2000
2452
  group: "data-entry",
2001
2453
  file: "components/data-entry/password-strength.tsx",
@@ -2178,6 +2630,38 @@ const COMPONENT_PROP_REGISTRY = {
2178
2630
  file: "components/data-display/service-launcher-card.tsx",
2179
2631
  vocabulary: ["LabelProp", "ClassNameProp"]
2180
2632
  },
2633
+ RangeTimelineProp: {
2634
+ group: "data-display",
2635
+ file: "components/data-display/range-timeline.tsx",
2636
+ vocabulary: [
2637
+ "LabelProp",
2638
+ {
2639
+ field: "columns",
2640
+ local: true,
2641
+ reason: "Labels and positive numeric unit counts define a consumer-supplied axis."
2642
+ },
2643
+ {
2644
+ field: "bands",
2645
+ local: true,
2646
+ reason: "Optional grouped labels in the same axis units, such as months above daily ticks."
2647
+ },
2648
+ {
2649
+ field: "rows",
2650
+ local: true,
2651
+ reason: "Consumer-supplied interval records preserve true inclusive endpoints independently of clipping."
2652
+ },
2653
+ {
2654
+ field: "today",
2655
+ local: true,
2656
+ reason: "Optional current position in the same numeric units as the axis."
2657
+ },
2658
+ {
2659
+ field: "onRangeChange",
2660
+ local: true,
2661
+ reason: "An endpoint movement command, not an internally owned value; the consumer commits its row data."
2662
+ }
2663
+ ]
2664
+ },
2181
2665
  ResponsiveGridProp: {
2182
2666
  group: "layout",
2183
2667
  file: "components/layout/responsive-grid.tsx",