@godxjp/ui 19.6.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 (326) 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 +14 -3
  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/collapsible.d.ts +23 -4
  20. package/dist/components/data-display/collapsible.js +119 -4
  21. package/dist/components/data-display/data-table.d.ts +39 -4
  22. package/dist/components/data-display/data-table.js +802 -270
  23. package/dist/components/data-display/descriptions.d.ts +27 -6
  24. package/dist/components/data-display/descriptions.js +58 -17
  25. package/dist/components/data-display/index.d.ts +5 -1
  26. package/dist/components/data-display/index.js +4 -0
  27. package/dist/components/data-display/legend.d.ts +15 -0
  28. package/dist/components/data-display/legend.js +11 -0
  29. package/dist/components/data-display/list-row.d.ts +10 -1
  30. package/dist/components/data-display/list-row.js +8 -2
  31. package/dist/components/data-display/popover.d.ts +60 -7
  32. package/dist/components/data-display/popover.js +268 -39
  33. package/dist/components/data-display/progress.d.ts +50 -2
  34. package/dist/components/data-display/progress.js +57 -9
  35. package/dist/components/data-display/range-timeline.d.ts +38 -0
  36. package/dist/components/data-display/range-timeline.js +161 -0
  37. package/dist/components/data-display/scroll-area.js +13 -2
  38. package/dist/components/data-display/service-launcher-card.js +10 -10
  39. package/dist/components/data-display/table.d.ts +11 -3
  40. package/dist/components/data-display/table.js +48 -18
  41. package/dist/components/data-display/tree-list.js +4 -9
  42. package/dist/components/data-entry/calendar.d.ts +2 -2
  43. package/dist/components/data-entry/calendar.js +79 -33
  44. package/dist/components/data-entry/cascader.d.ts +1 -1
  45. package/dist/components/data-entry/cascader.js +188 -24
  46. package/dist/components/data-entry/checkbox.d.ts +19 -6
  47. package/dist/components/data-entry/checkbox.js +55 -16
  48. package/dist/components/data-entry/choice-option.d.ts +1 -1
  49. package/dist/components/data-entry/color-picker.d.ts +1 -1
  50. package/dist/components/data-entry/color-picker.js +17 -5
  51. package/dist/components/data-entry/control-appearance.d.ts +64 -0
  52. package/dist/components/data-entry/control-appearance.js +39 -0
  53. package/dist/components/data-entry/control-surface.d.ts +61 -0
  54. package/dist/components/data-entry/control-surface.js +39 -0
  55. package/dist/components/data-entry/date-picker.d.ts +1 -1
  56. package/dist/components/data-entry/date-picker.js +344 -113
  57. package/dist/components/data-entry/date-range-picker.d.ts +2 -2
  58. package/dist/components/data-entry/date-range-picker.js +278 -140
  59. package/dist/components/data-entry/field.js +0 -1
  60. package/dist/components/data-entry/form-field.d.ts +1 -1
  61. package/dist/components/data-entry/form-field.js +39 -4
  62. package/dist/components/data-entry/form.d.ts +4 -0
  63. package/dist/components/data-entry/form.js +5 -3
  64. package/dist/components/data-entry/index.d.ts +7 -3
  65. package/dist/components/data-entry/index.js +10 -1
  66. package/dist/components/data-entry/input-otp.d.ts +1 -1
  67. package/dist/components/data-entry/input.d.ts +12 -34
  68. package/dist/components/data-entry/input.js +92 -24
  69. package/dist/components/data-entry/label.d.ts +3 -2
  70. package/dist/components/data-entry/label.js +23 -10
  71. package/dist/components/data-entry/month-picker.d.ts +2 -2
  72. package/dist/components/data-entry/month-picker.js +47 -10
  73. package/dist/components/data-entry/month-range-picker.d.ts +2 -2
  74. package/dist/components/data-entry/month-range-picker.js +51 -11
  75. package/dist/components/data-entry/number-input.d.ts +7 -0
  76. package/dist/components/data-entry/number-input.js +147 -98
  77. package/dist/components/data-entry/password-input.d.ts +1 -1
  78. package/dist/components/data-entry/radio.d.ts +1 -1
  79. package/dist/components/data-entry/radio.js +61 -13
  80. package/dist/components/data-entry/search-input.d.ts +1 -1
  81. package/dist/components/data-entry/search-input.js +16 -2
  82. package/dist/components/data-entry/search-select.d.ts +2 -2
  83. package/dist/components/data-entry/search-select.js +209 -78
  84. package/dist/components/data-entry/select.d.ts +22 -4
  85. package/dist/components/data-entry/select.js +215 -163
  86. package/dist/components/data-entry/slider.d.ts +9 -1
  87. package/dist/components/data-entry/slider.js +87 -9
  88. package/dist/components/data-entry/switch.d.ts +3 -0
  89. package/dist/components/data-entry/switch.js +29 -3
  90. package/dist/components/data-entry/textarea.d.ts +14 -56
  91. package/dist/components/data-entry/textarea.js +80 -33
  92. package/dist/components/data-entry/time-picker.d.ts +2 -2
  93. package/dist/components/data-entry/time-picker.js +333 -109
  94. package/dist/components/data-entry/time-range-picker.d.ts +5 -0
  95. package/dist/components/data-entry/time-range-picker.js +89 -0
  96. package/dist/components/data-entry/transfer.d.ts +1 -1
  97. package/dist/components/data-entry/transfer.js +99 -31
  98. package/dist/components/data-entry/tree-select-strategy.d.ts +1 -1
  99. package/dist/components/data-entry/tree-select.d.ts +1 -1
  100. package/dist/components/data-entry/tree-select.js +197 -92
  101. package/dist/components/data-entry/tree-utils.d.ts +1 -1
  102. package/dist/components/data-entry/tree-utils.js +7 -14
  103. package/dist/components/data-entry/upload-files.d.ts +2 -0
  104. package/dist/components/data-entry/upload-files.js +31 -0
  105. package/dist/components/data-entry/upload-request.d.ts +4 -0
  106. package/dist/components/data-entry/upload-request.js +53 -0
  107. package/dist/components/data-entry/upload-types.d.ts +28 -0
  108. package/dist/components/data-entry/upload-types.js +2 -0
  109. package/dist/components/data-entry/upload.d.ts +2 -2
  110. package/dist/components/data-entry/upload.js +482 -117
  111. package/dist/components/feedback/dialog.d.ts +105 -38
  112. package/dist/components/feedback/dialog.js +268 -193
  113. package/dist/components/feedback/overlay-close-focus.d.ts +31 -0
  114. package/dist/components/feedback/overlay-close-focus.js +31 -0
  115. package/dist/components/feedback/overlay-header-tone.d.ts +1 -1
  116. package/dist/components/feedback/sheet.d.ts +53 -11
  117. package/dist/components/feedback/sheet.js +150 -81
  118. package/dist/components/feedback/tooltip.d.ts +51 -7
  119. package/dist/components/feedback/tooltip.js +107 -25
  120. package/dist/components/general/button.d.ts +1 -1
  121. package/dist/components/general/button.js +7 -3
  122. package/dist/components/general/index.d.ts +1 -0
  123. package/dist/components/general/index.js +2 -0
  124. package/dist/components/general/logo.d.ts +17 -0
  125. package/dist/components/general/logo.js +22 -16
  126. package/dist/components/general/typography.d.ts +3 -0
  127. package/dist/components/general/typography.js +15 -1
  128. package/dist/components/general/visually-hidden.d.ts +3 -0
  129. package/dist/components/general/visually-hidden.js +9 -0
  130. package/dist/components/layout/app-launcher.d.ts +34 -0
  131. package/dist/components/layout/app-launcher.js +228 -0
  132. package/dist/components/layout/app-shell.d.ts +3 -1
  133. package/dist/components/layout/app-shell.js +69 -12
  134. package/dist/components/layout/aspect-ratio.js +0 -1
  135. package/dist/components/layout/auth-divider.js +0 -1
  136. package/dist/components/layout/breadcrumb.d.ts +14 -2
  137. package/dist/components/layout/breadcrumb.js +46 -4
  138. package/dist/components/layout/flex.d.ts +1 -1
  139. package/dist/components/layout/flex.js +41 -3
  140. package/dist/components/layout/index.d.ts +3 -0
  141. package/dist/components/layout/index.js +5 -1
  142. package/dist/components/layout/nav-surface.d.ts +26 -0
  143. package/dist/components/layout/nav-surface.js +17 -0
  144. package/dist/components/layout/org-switcher.d.ts +5 -1
  145. package/dist/components/layout/org-switcher.js +25 -4
  146. package/dist/components/layout/page-container.d.ts +1 -1
  147. package/dist/components/layout/page-container.js +5 -3
  148. package/dist/components/layout/responsive-grid.d.ts +16 -2
  149. package/dist/components/layout/responsive-grid.js +29 -2
  150. package/dist/components/layout/separator.js +0 -1
  151. package/dist/components/layout/sidebar.js +4 -1
  152. package/dist/components/layout/split-pane.d.ts +14 -1
  153. package/dist/components/layout/split-pane.js +26 -13
  154. package/dist/components/layout/topbar-item.d.ts +3 -0
  155. package/dist/components/layout/topbar-item.js +19 -5
  156. package/dist/components/layout/topbar.d.ts +1 -1
  157. package/dist/components/layout/topbar.js +27 -6
  158. package/dist/components/navigation/app-setting-picker.js +21 -2
  159. package/dist/components/navigation/app-setting-toggle.d.ts +16 -0
  160. package/dist/components/navigation/app-setting-toggle.js +96 -0
  161. package/dist/components/navigation/dropdown-menu.d.ts +227 -18
  162. package/dist/components/navigation/dropdown-menu.js +402 -118
  163. package/dist/components/navigation/index.d.ts +2 -0
  164. package/dist/components/navigation/index.js +2 -0
  165. package/dist/components/navigation/pagination-utils.d.ts +2 -1
  166. package/dist/components/navigation/pagination.d.ts +2 -2
  167. package/dist/components/navigation/pagination.js +155 -83
  168. package/dist/components/navigation/steps.d.ts +2 -2
  169. package/dist/components/navigation/steps.js +29 -4
  170. package/dist/components/navigation/tabs.d.ts +29 -16
  171. package/dist/components/navigation/tabs.js +374 -144
  172. package/dist/components/ui/accordion.d.ts +50 -5
  173. package/dist/components/ui/accordion.js +239 -33
  174. package/dist/components/ui/aspect-ratio.d.ts +23 -2
  175. package/dist/components/ui/aspect-ratio.js +15 -13
  176. package/dist/components/ui/avatar.d.ts +29 -4
  177. package/dist/components/ui/avatar.js +111 -25
  178. package/dist/components/ui/hover-card.d.ts +42 -4
  179. package/dist/components/ui/hover-card.js +183 -27
  180. package/dist/components/ui/input-otp.d.ts +26 -28
  181. package/dist/components/ui/input-otp.js +50 -7
  182. package/dist/components/ui/label.js +0 -1
  183. package/dist/components/ui/password-input.d.ts +36 -2
  184. package/dist/components/ui/password-input.js +27 -7
  185. package/dist/components/ui/rating.d.ts +25 -0
  186. package/dist/components/ui/rating.js +67 -27
  187. package/dist/components/ui/segmented.d.ts +12 -3
  188. package/dist/components/ui/segmented.js +17 -2
  189. package/dist/components/ui/separator.d.ts +12 -2
  190. package/dist/components/ui/separator.js +30 -9
  191. package/dist/components/ui/tag-input.d.ts +45 -0
  192. package/dist/components/ui/tag-input.js +109 -27
  193. package/dist/components/ui/toggle-group.d.ts +50 -5
  194. package/dist/components/ui/toggle-group.js +79 -20
  195. package/dist/components/ui/toggle.d.ts +31 -5
  196. package/dist/components/ui/toggle.js +42 -3
  197. package/dist/form/form-context.d.ts +29 -0
  198. package/dist/form/form-context.js +44 -4
  199. package/dist/form/form-field-array.d.ts +22 -0
  200. package/dist/form/form-field-array.js +50 -0
  201. package/dist/form/form-field-control.d.ts +2 -1
  202. package/dist/form/form-field-control.js +116 -40
  203. package/dist/form/form-root.d.ts +2 -1
  204. package/dist/form/form-root.js +142 -23
  205. package/dist/form/index.d.ts +3 -1
  206. package/dist/form/index.js +12 -1
  207. package/dist/i18n/messages/en.json +64 -5
  208. package/dist/i18n/messages/ja.json +64 -5
  209. package/dist/i18n/messages/vi.json +64 -5
  210. package/dist/inertia/index.d.ts +20 -0
  211. package/dist/inertia/index.js +60 -1
  212. package/dist/lib/control-styles.d.ts +25 -3
  213. package/dist/lib/control-styles.js +9 -3
  214. package/dist/lib/datetime/picker-format.d.ts +8 -0
  215. package/dist/lib/datetime/picker-format.js +54 -0
  216. package/dist/lib/slot.d.ts +32 -0
  217. package/dist/lib/slot.js +22 -0
  218. package/dist/lib/variants.d.ts +22 -3
  219. package/dist/lib/variants.js +56 -1
  220. package/dist/props/components/app.prop.d.ts +25 -1
  221. package/dist/props/components/charts.prop.d.ts +21 -0
  222. package/dist/props/components/data-display.prop.d.ts +72 -4
  223. package/dist/props/components/data-entry.prop.d.ts +718 -46
  224. package/dist/props/components/form.prop.d.ts +142 -4
  225. package/dist/props/components/general.prop.d.ts +17 -1
  226. package/dist/props/components/index.d.ts +3 -3
  227. package/dist/props/components/layout.prop.d.ts +281 -11
  228. package/dist/props/components/navigation.prop.d.ts +114 -4
  229. package/dist/props/registry.d.ts +397 -11
  230. package/dist/props/registry.js +526 -11
  231. package/dist/props/vocabulary/content.prop.d.ts +1 -1
  232. package/dist/props/vocabulary/data.prop.d.ts +179 -1
  233. package/dist/props/vocabulary/index.d.ts +5 -5
  234. package/dist/props/vocabulary/interaction.prop.d.ts +68 -3
  235. package/dist/props/vocabulary/layout.prop.d.ts +57 -1
  236. package/dist/props/vocabulary/navigation.prop.d.ts +40 -0
  237. package/dist/props/vocabulary/shared.prop.d.ts +33 -0
  238. package/dist/styles/badge-layout.css +2 -1
  239. package/dist/styles/card-layout.css +26 -4
  240. package/dist/styles/chart-layout.css +15 -0
  241. package/dist/styles/control.css +657 -15
  242. package/dist/styles/core.css +5 -2
  243. package/dist/styles/data-display-layout.css +313 -6
  244. package/dist/styles/data-entry-layout.css +13 -0
  245. package/dist/styles/focus-ring.css +4 -0
  246. package/dist/styles/index.css +5 -2
  247. package/dist/styles/layout.css +327 -4
  248. package/dist/styles/navigation-layout.css +227 -0
  249. package/dist/styles/shell-layout.css +369 -13
  250. package/dist/styles/table-layout.css +95 -6
  251. package/dist/styles/text-layout.css +10 -4
  252. package/dist/tokens/base.css +2 -1
  253. package/dist/tokens/components/badge.css +1 -0
  254. package/dist/tokens/components/chart.css +6 -0
  255. package/dist/tokens/components/control.css +79 -2
  256. package/dist/tokens/components/data-display.css +20 -0
  257. package/dist/tokens/components/descriptions.css +11 -0
  258. package/dist/tokens/components/flex.css +8 -0
  259. package/dist/tokens/components/navigation.css +55 -0
  260. package/dist/tokens/components/shell.css +53 -3
  261. package/dist/tokens/components/table.css +14 -0
  262. package/dist/tokens/foundation.css +2 -0
  263. package/dist/tokens/semantic/layout.css +9 -0
  264. package/docs/COMPONENTS.md +9 -3
  265. package/docs/CONSUMER-RULES.md +13 -0
  266. package/docs/DESIGN-AUTHORITY.md +145 -83
  267. package/docs/DEVELOPMENT.md +4 -3
  268. package/docs/FORMS.md +151 -6
  269. package/docs/FRAME-COVERAGE-REPORT.md +32 -17
  270. package/docs/README.md +15 -15
  271. package/docs/STANDARDS-vocabulary-tokens.md +1 -1
  272. package/docs/TESTING.md +15 -6
  273. package/docs/WHAT-BELONGS-HERE.md +179 -0
  274. package/docs/charts/cjk-category-axis.tsx +81 -0
  275. package/docs/data-display/card/index.tsx +22 -0
  276. package/docs/data-display/data-table/examples/antd-parity.tsx +257 -0
  277. package/docs/data-display/data-table/index.tsx +23 -0
  278. package/docs/data-display/descriptions.tsx +41 -0
  279. package/docs/data-display/legend.tsx +145 -0
  280. package/docs/data-display/progress.tsx +32 -0
  281. package/docs/data-display/scroll-area.tsx +31 -25
  282. package/docs/data-display/table.tsx +104 -45
  283. package/docs/data-display/timeline.tsx +41 -0
  284. package/docs/data-entry/date-picker.tsx +85 -0
  285. package/docs/data-entry/date-range-picker.tsx +26 -0
  286. package/docs/data-entry/form-dynamic-fields.tsx +199 -0
  287. package/docs/data-entry/form.tsx +74 -4
  288. package/docs/data-entry/input-otp.tsx +24 -0
  289. package/docs/data-entry/input.tsx +46 -1
  290. package/docs/data-entry/month-range-picker.tsx +1 -1
  291. package/docs/data-entry/segmented.tsx +1 -1
  292. package/docs/data-entry/select.tsx +29 -2
  293. package/docs/data-entry/switch.tsx +41 -0
  294. package/docs/data-entry/textarea.tsx +38 -0
  295. package/docs/data-entry/time-picker.tsx +85 -1
  296. package/docs/data-entry/time-range-picker.tsx +55 -0
  297. package/docs/data-entry/transfer.tsx +17 -0
  298. package/docs/data-entry/upload.tsx +56 -12
  299. package/docs/feedback/sheet.tsx +1 -1
  300. package/docs/feedback/tooltip.tsx +1 -1
  301. package/docs/general/activity.tsx +2 -2
  302. package/docs/general/button/index.tsx +14 -1
  303. package/docs/general/typography.tsx +14 -1
  304. package/docs/layout/app-launcher.tsx +151 -0
  305. package/docs/layout/app-shell-arrangements.tsx +225 -0
  306. package/docs/layout/app-shell.tsx +11 -0
  307. package/docs/layout/aspect-ratio.tsx +1 -1
  308. package/docs/layout/flex.tsx +50 -0
  309. package/docs/layout/responsive-grid.tsx +21 -1
  310. package/docs/layout/topbar.tsx +5 -9
  311. package/docs/navigation/app-setting-picker.tsx +37 -1
  312. package/docs/navigation/app-setting-toggle.tsx +111 -0
  313. package/docs/navigation/breadcrumb.tsx +48 -0
  314. package/docs/navigation/dropdown-menu.tsx +21 -0
  315. package/docs/navigation/pagination.tsx +52 -0
  316. package/docs/navigation/steps.tsx +37 -0
  317. package/docs/navigation/tabs.tsx +97 -1
  318. package/docs/query/button-refetch.tsx +1 -0
  319. package/package.json +28 -8
  320. package/scripts/_agent-setup.mjs +182 -3
  321. package/scripts/consumer-rule.md +98 -0
  322. package/scripts/guinea-pig-skill.md +322 -0
  323. package/scripts/init-guinea-pig.mjs +84 -0
  324. package/scripts/postinstall.mjs +13 -2
  325. package/scripts/ui-audit.mjs +351 -37
  326. /package/dist/tokens/{antd.generated.css → derived.css} +0 -0
@@ -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",
@@ -288,6 +403,11 @@ const VOCABULARY_REGISTRY = {
288
403
  category: "interaction",
289
404
  description: "AppSettingPicker trigger presentation: labeled (icon + value) | icon (square icon-only topbar trigger) | inline (compact text footer trigger)"
290
405
  },
406
+ AppSettingToggleAppearanceProp: {
407
+ file: "vocabulary/interaction.prop.ts",
408
+ category: "interaction",
409
+ description: "AppSettingToggle box: bar (default \u2014 a full-height CELL of the bar, TopbarItem shape) | icon (square --control-height ghost button for anywhere that is not a bar)"
410
+ },
291
411
  ShapeProp: {
292
412
  file: "vocabulary/interaction.prop.ts",
293
413
  category: "interaction",
@@ -323,11 +443,26 @@ const VOCABULARY_REGISTRY = {
323
443
  category: "interaction",
324
444
  description: "Inline text alignment start | center | end (logical, RTL-safe)"
325
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
+ },
326
451
  SizeProp: {
327
452
  file: "vocabulary/interaction.prop.ts",
328
453
  category: "interaction",
329
454
  description: "Shared size names xs | sm | md | lg"
330
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
+ },
331
466
  FormLayoutProp: {
332
467
  file: "vocabulary/interaction.prop.ts",
333
468
  category: "interaction",
@@ -399,6 +534,26 @@ const VOCABULARY_REGISTRY = {
399
534
  category: "navigation",
400
535
  description: "Breadcrumb trail array"
401
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
+ },
402
557
  ZodSchemaProp: {
403
558
  file: "components/form.prop.ts",
404
559
  category: "form",
@@ -495,6 +650,18 @@ const COMPONENT_PROP_REGISTRY = {
495
650
  }
496
651
  ]
497
652
  },
653
+ AppSettingToggleProp: {
654
+ group: "app",
655
+ file: "components/app.prop.ts",
656
+ vocabulary: [
657
+ "ValueProp",
658
+ "OnValueChangeProp",
659
+ "DisabledProp",
660
+ "IdProp",
661
+ "ClassNameProp",
662
+ "AppSettingToggleAppearanceProp"
663
+ ]
664
+ },
498
665
  PageContainerHeaderLayoutProp: {
499
666
  group: "layout",
500
667
  file: "components/layout.prop.ts",
@@ -584,6 +751,7 @@ const COMPONENT_PROP_REGISTRY = {
584
751
  }
585
752
  ]
586
753
  },
754
+ ResponsiveGridFlowProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
587
755
  ResponsiveGridColumnsProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
588
756
  ResponsiveGridPresetProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
589
757
  MasterDetailRailWidthProp: {
@@ -995,6 +1163,33 @@ const COMPONENT_PROP_REGISTRY = {
995
1163
  file: "components/layout.prop.ts",
996
1164
  vocabulary: ["LabelProp"]
997
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
+ },
998
1193
  OrgSwitcherOrganization: {
999
1194
  group: "layout",
1000
1195
  file: "components/layout.prop.ts",
@@ -1204,7 +1399,36 @@ const COMPONENT_PROP_REGISTRY = {
1204
1399
  file: "components/data-entry.prop.ts",
1205
1400
  vocabulary: ["DisabledProp"]
1206
1401
  },
1207
- CalendarProp: { group: "data-entry", file: "components/data-entry.prop.ts", vocabulary: [] },
1402
+ CalendarProp: {
1403
+ group: "data-entry",
1404
+ file: "components/data-entry.prop.ts",
1405
+ vocabulary: ["ControlWidthProp"]
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
+ },
1208
1432
  CalendarFooterProp: {
1209
1433
  group: "data-entry",
1210
1434
  file: "components/data-entry.prop.ts",
@@ -1217,6 +1441,32 @@ const COMPONENT_PROP_REGISTRY = {
1217
1441
  ],
1218
1442
  local: ["showToday", "showClose"]
1219
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
+ },
1220
1470
  DatePickerProp: {
1221
1471
  group: "data-entry",
1222
1472
  file: "components/data-entry.prop.ts",
@@ -1237,6 +1487,16 @@ const COMPONENT_PROP_REGISTRY = {
1237
1487
  file: "components/data-entry.prop.ts",
1238
1488
  vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"]
1239
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
+ },
1240
1500
  TimePickerProp: {
1241
1501
  group: "data-entry",
1242
1502
  file: "components/data-entry.prop.ts",
@@ -1247,6 +1507,47 @@ const COMPONENT_PROP_REGISTRY = {
1247
1507
  file: "components/data-entry.prop.ts",
1248
1508
  vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp"]
1249
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
+ },
1250
1551
  SearchSelectProp: {
1251
1552
  group: "data-entry",
1252
1553
  file: "components/data-entry.prop.ts",
@@ -1261,7 +1562,14 @@ const COMPONENT_PROP_REGISTRY = {
1261
1562
  "ClassNameProp",
1262
1563
  "OpenProp",
1263
1564
  "OnOpenChangeProp",
1264
- "SizeProp"
1565
+ "SizeProp",
1566
+ "DefaultOpenProp",
1567
+ "ControlStatusProp",
1568
+ "ControlVariantProp",
1569
+ "AllowClearProp",
1570
+ "NotFoundContentProp",
1571
+ "PopupMatchWidthProp",
1572
+ "PendingProp"
1265
1573
  ],
1266
1574
  note: "Internal \u2014 the searchable engine behind `<Select options showSearch>` (not public API); use Select."
1267
1575
  },
@@ -1279,7 +1587,14 @@ const COMPONENT_PROP_REGISTRY = {
1279
1587
  "ClassNameProp",
1280
1588
  "OpenProp",
1281
1589
  "OnOpenChangeProp",
1282
- "SizeProp"
1590
+ "SizeProp",
1591
+ "DefaultOpenProp",
1592
+ "ControlStatusProp",
1593
+ "ControlVariantProp",
1594
+ "AllowClearProp",
1595
+ "NotFoundContentProp",
1596
+ "PopupMatchWidthProp",
1597
+ "PendingProp"
1283
1598
  ],
1284
1599
  note: "Ant-style data-driven form of Select (options|loadOptions + showSearch). One Select for all single-selects."
1285
1600
  },
@@ -1335,7 +1650,20 @@ const COMPONENT_PROP_REGISTRY = {
1335
1650
  "PlaceholderProp",
1336
1651
  "DisabledProp",
1337
1652
  "ClassNameProp",
1338
- "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"
1339
1667
  ]
1340
1668
  },
1341
1669
  TreeSelectProp: {
@@ -1348,7 +1676,20 @@ const COMPONENT_PROP_REGISTRY = {
1348
1676
  "PlaceholderProp",
1349
1677
  "DisabledProp",
1350
1678
  "ClassNameProp",
1351
- "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"
1352
1693
  ]
1353
1694
  },
1354
1695
  ShowCheckedStrategyProp: {
@@ -1440,7 +1781,20 @@ const COMPONENT_PROP_REGISTRY = {
1440
1781
  "HandlerProp",
1441
1782
  "TablePresetProp",
1442
1783
  "TableColumnPriorityProp",
1443
- "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"
1444
1798
  ]
1445
1799
  },
1446
1800
  ListRowDensityProp: {
@@ -1496,10 +1850,26 @@ const COMPONENT_PROP_REGISTRY = {
1496
1850
  }
1497
1851
  ]
1498
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
+ },
1499
1864
  ScrollAreaProp: {
1500
1865
  group: "data-display",
1501
1866
  file: "components/data-display.prop.ts",
1502
1867
  vocabulary: [
1868
+ {
1869
+ field: "orientation",
1870
+ local: true,
1871
+ reason: "See ScrollAreaOrientationProp, the scrolling-axis vocabulary."
1872
+ },
1503
1873
  "OnValueChangeProp",
1504
1874
  {
1505
1875
  field: "viewportRef",
@@ -1550,6 +1920,11 @@ const COMPONENT_PROP_REGISTRY = {
1550
1920
  { field: "series", local: true, reason: "Plotted series descriptors." },
1551
1921
  { field: "categoryKey", local: true, reason: "Accessor key for the x-axis category." },
1552
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
+ },
1553
1928
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1554
1929
  { field: "showGrid", local: true, reason: "Chart-specific grid toggle." },
1555
1930
  {
@@ -1574,6 +1949,11 @@ const COMPONENT_PROP_REGISTRY = {
1574
1949
  { field: "series", local: true, reason: "Plotted series descriptors." },
1575
1950
  { field: "categoryKey", local: true, reason: "Accessor key for the category axis." },
1576
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
+ },
1577
1957
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1578
1958
  { field: "showGrid", local: true, reason: "Chart-specific grid toggle." },
1579
1959
  {
@@ -1604,6 +1984,11 @@ const COMPONENT_PROP_REGISTRY = {
1604
1984
  local: true,
1605
1985
  reason: "Index of the highlighted 'current' bar (negative counts from the end)."
1606
1986
  },
1987
+ {
1988
+ field: "showCaption",
1989
+ local: true,
1990
+ reason: "Paint the caption; false keeps it sr-only so the accessible name survives."
1991
+ },
1607
1992
  {
1608
1993
  field: "showCategoryLabels",
1609
1994
  local: true,
@@ -1631,6 +2016,11 @@ const COMPONENT_PROP_REGISTRY = {
1631
2016
  { field: "series", local: true, reason: "Plotted series descriptors." },
1632
2017
  { field: "categoryKey", local: true, reason: "Accessor key for the x-axis category." },
1633
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
+ },
1634
2024
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1635
2025
  { field: "showGrid", local: true, reason: "Chart-specific grid toggle." },
1636
2026
  {
@@ -1661,6 +2051,11 @@ const COMPONENT_PROP_REGISTRY = {
1661
2051
  reason: "Per-slice colour overrides (defaults to --chart-N)."
1662
2052
  },
1663
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
+ },
1664
2059
  { field: "showLegend", local: true, reason: "Chart-specific legend toggle." },
1665
2060
  { field: "numberFormat", local: true, reason: "Intl.NumberFormat options for tooltips." },
1666
2061
  { field: "donut", local: true, reason: "Hollow-centre donut rendering." }
@@ -1826,13 +2221,33 @@ const COMPONENT_PROP_REGISTRY = {
1826
2221
  PaginationProp: {
1827
2222
  group: "navigation",
1828
2223
  file: "components/navigation.prop.ts",
1829
- 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: []
1830
2240
  },
1831
2241
  StepsProp: {
1832
2242
  group: "navigation",
1833
2243
  file: "components/navigation.prop.ts",
1834
2244
  vocabulary: ["ValueProp", "DefaultValueProp", "SizeProp", "OnValueChangeProp", "ClassNameProp"]
1835
2245
  },
2246
+ InputOTPProp: {
2247
+ group: "data-entry",
2248
+ file: "components/data-entry.prop.ts",
2249
+ vocabulary: ["SizeProp", "ControlStatusProp", "ControlVariantProp"]
2250
+ },
1836
2251
  InputOTPGroupProp: {
1837
2252
  group: "data-entry",
1838
2253
  file: "components/data-entry.prop.ts",
@@ -1848,6 +2263,11 @@ const COMPONENT_PROP_REGISTRY = {
1848
2263
  file: "components/data-entry.prop.ts",
1849
2264
  vocabulary: []
1850
2265
  },
2266
+ InputOTPMaskProp: {
2267
+ group: "data-entry",
2268
+ file: "components/data-entry.prop.ts",
2269
+ vocabulary: []
2270
+ },
1851
2271
  StepItemProp: {
1852
2272
  group: "navigation",
1853
2273
  file: "components/navigation.prop.ts",
@@ -1859,15 +2279,52 @@ const COMPONENT_PROP_REGISTRY = {
1859
2279
  file: "components/navigation.prop.ts",
1860
2280
  vocabulary: []
1861
2281
  },
2282
+ StepsTypeProp: {
2283
+ group: "navigation",
2284
+ file: "components/navigation.prop.ts",
2285
+ vocabulary: []
2286
+ },
1862
2287
  TabsProp: {
1863
2288
  group: "navigation",
1864
2289
  file: "components/navigation.prop.ts",
1865
- 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"]
1866
2318
  },
1867
2319
  TabItemProp: {
1868
2320
  group: "navigation",
1869
2321
  file: "components/navigation.prop.ts",
1870
- 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"]
1871
2328
  },
1872
2329
  FormRootProp: {
1873
2330
  group: "form",
@@ -1968,13 +2425,29 @@ const COMPONENT_PROP_REGISTRY = {
1968
2425
  TagInputProp: {
1969
2426
  group: "data-entry",
1970
2427
  file: "components/ui/tag-input.tsx",
1971
- 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
+ ]
1972
2440
  },
1973
2441
  PasswordInputProp: {
1974
2442
  group: "data-entry",
1975
2443
  file: "components/ui/password-input.tsx",
1976
2444
  vocabulary: ["ClassNameProp"]
1977
2445
  },
2446
+ PasswordVisibilityToggleProp: {
2447
+ group: "data-entry",
2448
+ file: "components/ui/password-input.tsx",
2449
+ vocabulary: []
2450
+ },
1978
2451
  PasswordStrengthProp: {
1979
2452
  group: "data-entry",
1980
2453
  file: "components/data-entry/password-strength.tsx",
@@ -1983,7 +2456,17 @@ const COMPONENT_PROP_REGISTRY = {
1983
2456
  ProgressProp: {
1984
2457
  group: "data-display",
1985
2458
  file: "components/data-display/progress.tsx",
1986
- vocabulary: ["ValueProp", "LabelProp", "ClassNameProp"]
2459
+ vocabulary: ["ValueProp", "LabelProp", "ToneProp", "ClassNameProp"]
2460
+ },
2461
+ LegendItemProp: {
2462
+ group: "data-display",
2463
+ file: "components/data-display.prop.ts",
2464
+ vocabulary: ["ToneProp", "LabelProp"]
2465
+ },
2466
+ LegendProp: {
2467
+ group: "data-display",
2468
+ file: "components/data-display.prop.ts",
2469
+ vocabulary: ["ClassNameProp"]
1987
2470
  },
1988
2471
  CodeBlockProp: {
1989
2472
  group: "data-display",
@@ -2147,6 +2630,38 @@ const COMPONENT_PROP_REGISTRY = {
2147
2630
  file: "components/data-display/service-launcher-card.tsx",
2148
2631
  vocabulary: ["LabelProp", "ClassNameProp"]
2149
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
+ },
2150
2665
  ResponsiveGridProp: {
2151
2666
  group: "layout",
2152
2667
  file: "components/layout/responsive-grid.tsx",