@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
@@ -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";
@@ -289,6 +404,11 @@ export declare const VOCABULARY_REGISTRY: {
289
404
  readonly category: "interaction";
290
405
  readonly description: "AppSettingPicker trigger presentation: labeled (icon + value) | icon (square icon-only topbar trigger) | inline (compact text footer trigger)";
291
406
  };
407
+ readonly AppSettingToggleAppearanceProp: {
408
+ readonly file: "vocabulary/interaction.prop.ts";
409
+ readonly category: "interaction";
410
+ readonly description: "AppSettingToggle box: bar (default — a full-height CELL of the bar, TopbarItem shape) | icon (square --control-height ghost button for anywhere that is not a bar)";
411
+ };
292
412
  readonly ShapeProp: {
293
413
  readonly file: "vocabulary/interaction.prop.ts";
294
414
  readonly category: "interaction";
@@ -324,11 +444,26 @@ export declare const VOCABULARY_REGISTRY: {
324
444
  readonly category: "interaction";
325
445
  readonly description: "Inline text alignment start | center | end (logical, RTL-safe)";
326
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
+ };
327
452
  readonly SizeProp: {
328
453
  readonly file: "vocabulary/interaction.prop.ts";
329
454
  readonly category: "interaction";
330
455
  readonly description: "Shared size names xs | sm | md | lg";
331
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
+ };
332
467
  readonly FormLayoutProp: {
333
468
  readonly file: "vocabulary/interaction.prop.ts";
334
469
  readonly category: "interaction";
@@ -399,6 +534,26 @@ export declare const VOCABULARY_REGISTRY: {
399
534
  readonly category: "navigation";
400
535
  readonly description: "Breadcrumb trail array";
401
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
+ };
402
557
  readonly ZodSchemaProp: {
403
558
  readonly file: "components/form.prop.ts";
404
559
  readonly category: "form";
@@ -491,6 +646,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
491
646
  readonly reason: "Trigger DENSITY for the picker only (sm control tier + content-hugging width) — orthogonal to `appearance`, and not the page-level DensityProp scope.";
492
647
  }];
493
648
  };
649
+ readonly AppSettingToggleProp: {
650
+ readonly group: "app";
651
+ readonly file: "components/app.prop.ts";
652
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp", "ClassNameProp", "AppSettingToggleAppearanceProp"];
653
+ };
494
654
  readonly PageContainerHeaderLayoutProp: {
495
655
  readonly group: "layout";
496
656
  readonly file: "components/layout.prop.ts";
@@ -584,6 +744,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
584
744
  readonly reason: "Inverse of hideBelow — keeps a compact-only region off the wide layout.";
585
745
  }];
586
746
  };
747
+ readonly ResponsiveGridFlowProp: {
748
+ readonly group: "layout";
749
+ readonly file: "components/layout.prop.ts";
750
+ readonly vocabulary: readonly [];
751
+ };
587
752
  readonly ResponsiveGridColumnsProp: {
588
753
  readonly group: "layout";
589
754
  readonly file: "components/layout.prop.ts";
@@ -902,6 +1067,26 @@ export declare const COMPONENT_PROP_REGISTRY: {
902
1067
  readonly file: "components/layout.prop.ts";
903
1068
  readonly vocabulary: readonly ["LabelProp"];
904
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
+ };
905
1090
  readonly OrgSwitcherOrganization: {
906
1091
  readonly group: "layout";
907
1092
  readonly file: "components/layout.prop.ts";
@@ -1055,6 +1240,31 @@ export declare const COMPONENT_PROP_REGISTRY: {
1055
1240
  readonly vocabulary: readonly ["DisabledProp"];
1056
1241
  };
1057
1242
  readonly CalendarProp: {
1243
+ readonly group: "data-entry";
1244
+ readonly file: "components/data-entry.prop.ts";
1245
+ readonly vocabulary: readonly ["ControlWidthProp"];
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: {
1058
1268
  readonly group: "data-entry";
1059
1269
  readonly file: "components/data-entry.prop.ts";
1060
1270
  readonly vocabulary: readonly [];
@@ -1069,6 +1279,26 @@ export declare const COMPONENT_PROP_REGISTRY: {
1069
1279
  }];
1070
1280
  readonly local: readonly ["showToday", "showClose"];
1071
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
+ };
1072
1302
  readonly DatePickerProp: {
1073
1303
  readonly group: "data-entry";
1074
1304
  readonly file: "components/data-entry.prop.ts";
@@ -1089,6 +1319,16 @@ export declare const COMPONENT_PROP_REGISTRY: {
1089
1319
  readonly file: "components/data-entry.prop.ts";
1090
1320
  readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"];
1091
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
+ };
1092
1332
  readonly TimePickerProp: {
1093
1333
  readonly group: "data-entry";
1094
1334
  readonly file: "components/data-entry.prop.ts";
@@ -1099,16 +1339,34 @@ export declare const COMPONENT_PROP_REGISTRY: {
1099
1339
  readonly file: "components/data-entry.prop.ts";
1100
1340
  readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp"];
1101
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
+ };
1102
1360
  readonly SearchSelectProp: {
1103
1361
  readonly group: "data-entry";
1104
1362
  readonly file: "components/data-entry.prop.ts";
1105
- 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"];
1106
1364
  readonly note: "Internal — the searchable engine behind `<Select options showSearch>` (not public API); use Select.";
1107
1365
  };
1108
1366
  readonly SelectDataProp: {
1109
1367
  readonly group: "data-entry";
1110
1368
  readonly file: "components/data-entry.prop.ts";
1111
- 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"];
1112
1370
  readonly note: "Ant-style data-driven form of Select (options|loadOptions + showSearch). One Select for all single-selects.";
1113
1371
  };
1114
1372
  readonly SearchSelectOptionProp: {
@@ -1154,12 +1412,12 @@ export declare const COMPONENT_PROP_REGISTRY: {
1154
1412
  readonly CascaderProp: {
1155
1413
  readonly group: "data-entry";
1156
1414
  readonly file: "components/data-entry.prop.ts";
1157
- 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"];
1158
1416
  };
1159
1417
  readonly TreeSelectProp: {
1160
1418
  readonly group: "data-entry";
1161
1419
  readonly file: "components/data-entry.prop.ts";
1162
- 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"];
1163
1421
  };
1164
1422
  readonly ShowCheckedStrategyProp: {
1165
1423
  readonly group: "data-entry";
@@ -1227,7 +1485,7 @@ export declare const COMPONENT_PROP_REGISTRY: {
1227
1485
  readonly DataTableProp: {
1228
1486
  readonly group: "data-display";
1229
1487
  readonly file: "components/data-display.prop.ts";
1230
- 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"];
1231
1489
  };
1232
1490
  readonly ListRowDensityProp: {
1233
1491
  readonly group: "data-display";
@@ -1266,10 +1524,23 @@ export declare const COMPONENT_PROP_REGISTRY: {
1266
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.';
1267
1525
  }];
1268
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
+ };
1269
1536
  readonly ScrollAreaProp: {
1270
1537
  readonly group: "data-display";
1271
1538
  readonly file: "components/data-display.prop.ts";
1272
- 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", {
1273
1544
  readonly field: "viewportRef";
1274
1545
  readonly local: true;
1275
1546
  readonly reason: "Ref to the SCROLLING element (the Radix viewport), which the component's own `ref` cannot reach — the root is overflow:hidden.";
@@ -1319,6 +1590,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1319
1590
  readonly field: "height";
1320
1591
  readonly local: true;
1321
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.";
1322
1597
  }, {
1323
1598
  readonly field: "showLegend";
1324
1599
  readonly local: true;
@@ -1356,6 +1631,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1356
1631
  readonly field: "height";
1357
1632
  readonly local: true;
1358
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.";
1359
1638
  }, {
1360
1639
  readonly field: "showLegend";
1361
1640
  readonly local: true;
@@ -1397,6 +1676,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1397
1676
  readonly field: "emphasizedIndex";
1398
1677
  readonly local: true;
1399
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.";
1400
1683
  }, {
1401
1684
  readonly field: "showCategoryLabels";
1402
1685
  readonly local: true;
@@ -1430,6 +1713,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1430
1713
  readonly field: "height";
1431
1714
  readonly local: true;
1432
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.";
1433
1720
  }, {
1434
1721
  readonly field: "showLegend";
1435
1722
  readonly local: true;
@@ -1475,6 +1762,10 @@ export declare const COMPONENT_PROP_REGISTRY: {
1475
1762
  readonly field: "height";
1476
1763
  readonly local: true;
1477
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.";
1478
1769
  }, {
1479
1770
  readonly field: "showLegend";
1480
1771
  readonly local: true;
@@ -1629,13 +1920,33 @@ export declare const COMPONENT_PROP_REGISTRY: {
1629
1920
  readonly PaginationProp: {
1630
1921
  readonly group: "navigation";
1631
1922
  readonly file: "components/navigation.prop.ts";
1632
- 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 [];
1633
1939
  };
1634
1940
  readonly StepsProp: {
1635
1941
  readonly group: "navigation";
1636
1942
  readonly file: "components/navigation.prop.ts";
1637
1943
  readonly vocabulary: readonly ["ValueProp", "DefaultValueProp", "SizeProp", "OnValueChangeProp", "ClassNameProp"];
1638
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
+ };
1639
1950
  readonly InputOTPGroupProp: {
1640
1951
  readonly group: "data-entry";
1641
1952
  readonly file: "components/data-entry.prop.ts";
@@ -1651,6 +1962,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
1651
1962
  readonly file: "components/data-entry.prop.ts";
1652
1963
  readonly vocabulary: readonly [];
1653
1964
  };
1965
+ readonly InputOTPMaskProp: {
1966
+ readonly group: "data-entry";
1967
+ readonly file: "components/data-entry.prop.ts";
1968
+ readonly vocabulary: readonly [];
1969
+ };
1654
1970
  readonly StepItemProp: {
1655
1971
  readonly group: "navigation";
1656
1972
  readonly file: "components/navigation.prop.ts";
@@ -1666,15 +1982,45 @@ export declare const COMPONENT_PROP_REGISTRY: {
1666
1982
  readonly file: "components/navigation.prop.ts";
1667
1983
  readonly vocabulary: readonly [];
1668
1984
  };
1985
+ readonly StepsTypeProp: {
1986
+ readonly group: "navigation";
1987
+ readonly file: "components/navigation.prop.ts";
1988
+ readonly vocabulary: readonly [];
1989
+ };
1669
1990
  readonly TabsProp: {
1670
1991
  readonly group: "navigation";
1671
1992
  readonly file: "components/navigation.prop.ts";
1672
- 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"];
1673
2014
  };
1674
2015
  readonly TabItemProp: {
1675
2016
  readonly group: "navigation";
1676
2017
  readonly file: "components/navigation.prop.ts";
1677
- 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"];
1678
2024
  };
1679
2025
  readonly FormRootProp: {
1680
2026
  readonly group: "form";
@@ -1756,13 +2102,18 @@ export declare const COMPONENT_PROP_REGISTRY: {
1756
2102
  readonly TagInputProp: {
1757
2103
  readonly group: "data-entry";
1758
2104
  readonly file: "components/ui/tag-input.tsx";
1759
- readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "IdProp", "ClassNameProp"];
2105
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "IdProp", "ClassNameProp", "ControlStatusProp", "ControlVariantProp", "SizeProp", "MaxTagCountProp", "MaxTagPlaceholderProp"];
1760
2106
  };
1761
2107
  readonly PasswordInputProp: {
1762
2108
  readonly group: "data-entry";
1763
2109
  readonly file: "components/ui/password-input.tsx";
1764
2110
  readonly vocabulary: readonly ["ClassNameProp"];
1765
2111
  };
2112
+ readonly PasswordVisibilityToggleProp: {
2113
+ readonly group: "data-entry";
2114
+ readonly file: "components/ui/password-input.tsx";
2115
+ readonly vocabulary: readonly [];
2116
+ };
1766
2117
  readonly PasswordStrengthProp: {
1767
2118
  readonly group: "data-entry";
1768
2119
  readonly file: "components/data-entry/password-strength.tsx";
@@ -1771,7 +2122,17 @@ export declare const COMPONENT_PROP_REGISTRY: {
1771
2122
  readonly ProgressProp: {
1772
2123
  readonly group: "data-display";
1773
2124
  readonly file: "components/data-display/progress.tsx";
1774
- readonly vocabulary: readonly ["ValueProp", "LabelProp", "ClassNameProp"];
2125
+ readonly vocabulary: readonly ["ValueProp", "LabelProp", "ToneProp", "ClassNameProp"];
2126
+ };
2127
+ readonly LegendItemProp: {
2128
+ readonly group: "data-display";
2129
+ readonly file: "components/data-display.prop.ts";
2130
+ readonly vocabulary: readonly ["ToneProp", "LabelProp"];
2131
+ };
2132
+ readonly LegendProp: {
2133
+ readonly group: "data-display";
2134
+ readonly file: "components/data-display.prop.ts";
2135
+ readonly vocabulary: readonly ["ClassNameProp"];
1775
2136
  };
1776
2137
  readonly CodeBlockProp: {
1777
2138
  readonly group: "data-display";
@@ -1911,6 +2272,31 @@ export declare const COMPONENT_PROP_REGISTRY: {
1911
2272
  readonly file: "components/data-display/service-launcher-card.tsx";
1912
2273
  readonly vocabulary: readonly ["LabelProp", "ClassNameProp"];
1913
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
+ };
1914
2300
  readonly ResponsiveGridProp: {
1915
2301
  readonly group: "layout";
1916
2302
  readonly file: "components/layout/responsive-grid.tsx";