@godxjp/ui 13.9.3 → 13.11.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.
- package/dist/app/app-provider.d.ts +30 -0
- package/dist/app/app-provider.js +244 -0
- package/dist/app/date-format-labels.d.ts +8 -0
- package/dist/app/date-format-labels.js +16 -0
- package/dist/app/date-formats.d.ts +10 -0
- package/dist/app/date-formats.js +27 -0
- package/dist/app/index.d.ts +13 -136
- package/dist/app/index.js +65 -38
- package/dist/app/locales.d.ts +12 -0
- package/dist/app/locales.js +26 -0
- package/dist/app/request-headers.d.ts +7 -0
- package/dist/app/request-headers.js +27 -0
- package/dist/app/storage.d.ts +11 -0
- package/dist/app/storage.js +32 -0
- package/dist/app/time-format-labels.d.ts +8 -0
- package/dist/app/time-format-labels.js +14 -0
- package/dist/app/time-formats.d.ts +7 -0
- package/dist/app/time-formats.js +14 -0
- package/dist/app/timezones.d.ts +31 -0
- package/dist/app/timezones.js +161 -0
- package/dist/app/types.d.ts +21 -0
- package/dist/app/types.js +30 -0
- package/dist/app/use-formatting.d.ts +19 -0
- package/dist/app/use-formatting.js +37 -0
- package/dist/components/admin/index.d.ts +26 -66
- package/dist/components/admin/index.js +96 -49
- package/dist/components/data-display/accordion.d.ts +1 -0
- package/dist/components/data-display/accordion.js +7 -0
- package/dist/components/data-display/avatar.d.ts +1 -0
- package/dist/components/data-display/avatar.js +6 -0
- package/dist/components/data-display/badge.d.ts +9 -13
- package/dist/components/data-display/badge.js +111 -5
- package/dist/components/data-display/card.d.ts +22 -26
- package/dist/components/data-display/card.js +153 -2
- package/dist/components/data-display/carousel.d.ts +11 -13
- package/dist/components/data-display/carousel.js +220 -4
- package/dist/components/data-display/collapsible.d.ts +4 -0
- package/dist/components/data-display/collapsible.js +9 -0
- package/dist/components/data-display/data-table.d.ts +53 -0
- package/dist/components/data-display/data-table.js +424 -0
- package/dist/components/data-display/descriptions.d.ts +19 -0
- package/dist/components/data-display/descriptions.js +25 -0
- package/dist/components/data-display/empty-state.d.ts +3 -0
- package/dist/{chunk-YD7V2HGZ.js → components/data-display/empty-state.js} +5 -5
- package/dist/components/data-display/hover-card.d.ts +1 -0
- package/dist/components/data-display/hover-card.js +6 -0
- package/dist/components/data-display/index.d.ts +24 -79
- package/dist/components/data-display/index.js +95 -176
- package/dist/components/data-display/popover.d.ts +9 -13
- package/dist/components/data-display/popover.js +61 -2
- package/dist/components/data-display/progress.d.ts +7 -0
- package/dist/components/data-display/progress.js +27 -0
- package/dist/components/data-display/scroll-area.d.ts +4 -7
- package/dist/components/data-display/scroll-area.js +38 -2
- package/dist/components/data-display/table.d.ts +7 -10
- package/dist/components/data-display/table.js +36 -3
- package/dist/components/data-display/timeline.d.ts +12 -0
- package/dist/components/data-display/timeline.js +35 -0
- package/dist/components/data-display/tree-list.d.ts +13 -0
- package/dist/components/data-display/tree-list.js +30 -0
- package/dist/components/data-entry/calendar.d.ts +3 -19
- package/dist/components/data-entry/calendar.js +96 -6
- package/dist/components/data-entry/cascader.d.ts +4 -35
- package/dist/components/data-entry/cascader.js +327 -10
- package/dist/components/data-entry/checkbox-group.d.ts +3 -0
- package/dist/{chunk-BE6GJGKJ.js → components/data-entry/checkbox-group.js} +9 -26
- package/dist/components/data-entry/checkbox.d.ts +7 -16
- package/dist/components/data-entry/checkbox.js +26 -4
- package/dist/components/data-entry/choice-option.d.ts +10 -0
- package/dist/components/data-entry/choice-option.js +7 -0
- package/dist/components/data-entry/color-picker.d.ts +3 -19
- package/dist/components/data-entry/color-picker.js +75 -6
- package/dist/components/data-entry/command.d.ts +7 -10
- package/dist/components/data-entry/command.js +51 -3
- package/dist/components/data-entry/date-picker.d.ts +3 -19
- package/dist/components/data-entry/date-picker.js +153 -9
- package/dist/components/data-entry/date-range-picker.d.ts +3 -19
- package/dist/components/data-entry/date-range-picker.js +191 -8
- package/dist/components/data-entry/field.d.ts +4 -0
- package/dist/{chunk-44YRPSZ7.js → components/data-entry/field.js} +6 -11
- package/dist/components/data-entry/form-field.d.ts +3 -0
- package/dist/{chunk-LBYSX3VM.js → components/data-entry/form-field.js} +14 -47
- package/dist/components/data-entry/form.d.ts +29 -0
- package/dist/components/data-entry/form.js +41 -0
- package/dist/components/data-entry/index.d.ts +61 -164
- package/dist/components/data-entry/index.js +117 -37
- package/dist/components/data-entry/input-otp.d.ts +1 -0
- package/dist/components/data-entry/input-otp.js +7 -0
- package/dist/components/data-entry/input.d.ts +3 -6
- package/dist/components/data-entry/input.js +98 -4
- package/dist/components/data-entry/label.d.ts +4 -8
- package/dist/components/data-entry/label.js +25 -2
- package/dist/components/data-entry/month-picker.d.ts +9 -0
- package/dist/components/data-entry/month-picker.js +188 -0
- package/dist/components/data-entry/month-range-picker.d.ts +11 -0
- package/dist/components/data-entry/month-range-picker.js +245 -0
- package/dist/components/data-entry/number-input.d.ts +12 -0
- package/dist/components/data-entry/number-input.js +219 -0
- package/dist/components/data-entry/password-input.d.ts +2 -0
- package/dist/components/data-entry/password-input.js +4 -0
- package/dist/components/data-entry/password-strength.d.ts +20 -0
- package/dist/{chunk-VSUYVT2Q.js → components/data-entry/password-strength.js} +8 -62
- package/dist/components/data-entry/radio.d.ts +7 -20
- package/dist/components/data-entry/radio.js +93 -4
- package/dist/components/data-entry/rating.d.ts +2 -0
- package/dist/components/data-entry/rating.js +4 -0
- package/dist/components/data-entry/search-input.d.ts +18 -0
- package/dist/{chunk-LVLPNKJP.js → components/data-entry/search-input.js} +11 -11
- package/dist/components/data-entry/search-select.d.ts +11 -0
- package/dist/{chunk-6S2ZU26B.js → components/data-entry/search-select.js} +14 -239
- package/dist/components/data-entry/select.d.ts +14 -30
- package/dist/components/data-entry/select.js +243 -9
- package/dist/components/data-entry/slider.d.ts +4 -18
- package/dist/components/data-entry/slider.js +52 -2
- package/dist/components/data-entry/switch.d.ts +4 -18
- package/dist/components/data-entry/switch.js +40 -2
- package/dist/components/data-entry/tag-input.d.ts +2 -0
- package/dist/components/data-entry/tag-input.js +4 -0
- package/dist/components/data-entry/textarea.d.ts +3 -6
- package/dist/components/data-entry/textarea.js +86 -5
- package/dist/components/data-entry/time-input.d.ts +3 -6
- package/dist/components/data-entry/time-input.js +137 -3
- package/dist/components/data-entry/time-picker.d.ts +3 -19
- package/dist/components/data-entry/time-picker.js +329 -7
- package/dist/components/data-entry/toggle-group.d.ts +1 -0
- package/dist/components/data-entry/toggle-group.js +5 -0
- package/dist/components/data-entry/toggle.d.ts +2 -0
- package/dist/components/data-entry/toggle.js +4 -0
- package/dist/components/data-entry/transfer.d.ts +3 -20
- package/dist/components/data-entry/transfer.js +193 -13
- package/dist/components/data-entry/tree-select-strategy.d.ts +5 -0
- package/dist/components/data-entry/tree-select-strategy.js +8 -0
- package/dist/components/data-entry/tree-select.d.ts +5 -25
- package/dist/components/data-entry/tree-select.js +299 -13
- package/dist/components/data-entry/tree-utils.d.ts +48 -0
- package/dist/{chunk-SMLKNECP.js → components/data-entry/tree-utils.js} +33 -5
- package/dist/components/data-entry/upload-crop-dialog.d.ts +9 -0
- package/dist/components/data-entry/upload-crop-dialog.js +102 -0
- package/dist/components/data-entry/upload-types.d.ts +39 -0
- package/dist/components/data-entry/upload-types.js +41 -0
- package/dist/components/data-entry/upload.d.ts +6 -45
- package/dist/components/data-entry/upload.js +417 -12
- package/dist/components/data-entry/use-upload-draft.d.ts +25 -0
- package/dist/components/data-entry/use-upload-draft.js +64 -0
- package/dist/components/data-grid/data-grid.d.ts +67 -0
- package/dist/components/data-grid/data-grid.js +402 -0
- package/dist/components/data-grid/index.d.ts +2 -71
- package/dist/components/data-grid/index.js +3 -371
- package/dist/components/feedback/alert.d.ts +37 -42
- package/dist/components/feedback/alert.js +127 -7
- package/dist/components/feedback/dialog.d.ts +21 -25
- package/dist/components/feedback/dialog.js +356 -8
- package/dist/components/feedback/index.d.ts +10 -28
- package/dist/components/feedback/index.js +105 -18
- package/dist/components/feedback/overlay-header-tone.d.ts +7 -0
- package/dist/{chunk-VU4GFGDG.js → components/feedback/overlay-header-tone.js} +4 -4
- package/dist/components/feedback/sheet.d.ts +18 -23
- package/dist/components/feedback/sheet.js +192 -3
- package/dist/components/feedback/skeleton.d.ts +17 -0
- package/dist/{chunk-2BR7KFCP.js → components/feedback/skeleton.js} +10 -6
- package/dist/components/feedback/sonner.d.ts +2 -5
- package/dist/components/feedback/sonner.js +50 -1
- package/dist/components/feedback/tooltip.d.ts +10 -0
- package/dist/{chunk-32WO3YLB.js → components/feedback/tooltip.js} +12 -9
- package/dist/components/feedback/use-toast.d.ts +3 -0
- package/dist/components/feedback/use-toast.js +5 -0
- package/dist/components/general/button.d.ts +12 -18
- package/dist/components/general/button.js +118 -4
- package/dist/components/general/index.d.ts +4 -37
- package/dist/components/general/index.js +8 -48
- package/dist/components/general/typography.d.ts +30 -0
- package/dist/components/general/typography.js +46 -0
- package/dist/components/layout/app-shell.d.ts +3 -0
- package/dist/components/layout/app-shell.js +33 -0
- package/dist/components/layout/aspect-ratio.d.ts +1 -0
- package/dist/components/layout/aspect-ratio.js +4 -0
- package/dist/components/layout/breadcrumb.d.ts +7 -0
- package/dist/components/layout/breadcrumb.js +16 -0
- package/dist/components/layout/flex.d.ts +3 -0
- package/dist/components/layout/flex.js +29 -0
- package/dist/components/layout/index.d.ts +19 -60
- package/dist/components/layout/index.js +29 -12
- package/dist/components/layout/page-container.d.ts +8 -0
- package/dist/components/layout/page-container.js +77 -0
- package/dist/components/layout/resizable.d.ts +8 -12
- package/dist/components/layout/resizable.js +44 -2
- package/dist/components/layout/responsive-grid.d.ts +7 -0
- package/dist/{chunk-C3PKEV6S.js → components/layout/responsive-grid.js} +4 -5
- package/dist/components/layout/separator.d.ts +1 -0
- package/dist/components/layout/separator.js +4 -0
- package/dist/components/layout/sidebar.d.ts +21 -0
- package/dist/components/layout/sidebar.js +254 -0
- package/dist/components/layout/split-pane.d.ts +7 -0
- package/dist/components/layout/split-pane.js +10 -0
- package/dist/components/layout/topbar.d.ts +3 -0
- package/dist/components/layout/topbar.js +133 -0
- package/dist/components/navigation/app-setting-picker.d.ts +9 -0
- package/dist/{chunk-RHPFCKB2.js → components/navigation/app-setting-picker.js} +24 -49
- package/dist/components/navigation/context-menu.d.ts +16 -20
- package/dist/components/navigation/context-menu.js +144 -2
- package/dist/components/navigation/dropdown-menu.d.ts +17 -21
- package/dist/components/navigation/dropdown-menu.js +164 -2
- package/dist/components/navigation/filter-bar.d.ts +4 -0
- package/dist/components/navigation/filter-bar.js +43 -0
- package/dist/components/navigation/index.d.ts +12 -36
- package/dist/components/navigation/index.js +140 -17
- package/dist/components/navigation/menubar.d.ts +18 -23
- package/dist/components/navigation/menubar.js +135 -2
- package/dist/components/navigation/navigation-menu.d.ts +10 -13
- package/dist/components/navigation/navigation-menu.js +90 -2
- package/dist/components/navigation/pagination-utils.d.ts +2 -0
- package/dist/components/navigation/pagination-utils.js +25 -0
- package/dist/components/navigation/pagination.d.ts +6 -12
- package/dist/components/navigation/pagination.js +222 -10
- package/dist/components/navigation/steps.d.ts +3 -12
- package/dist/components/navigation/steps.js +150 -5
- package/dist/components/navigation/tabs.d.ts +8 -12
- package/dist/components/navigation/tabs.js +109 -2
- package/dist/components/query/data-state.d.ts +7 -0
- package/dist/components/query/data-state.js +44 -0
- package/dist/components/query/index.d.ts +10 -43
- package/dist/components/query/index.js +13 -195
- package/dist/components/query/infinite-query-state.d.ts +13 -0
- package/dist/components/query/infinite-query-state.js +70 -0
- package/dist/components/query/mutation-feedback.d.ts +7 -0
- package/dist/components/query/mutation-feedback.js +23 -0
- package/dist/components/query/prefetch-link.d.ts +7 -0
- package/dist/components/query/prefetch-link.js +36 -0
- package/dist/components/query/query-refetch-button.d.ts +4 -0
- package/dist/components/query/query-refetch-button.js +40 -0
- package/dist/components/ui/accordion.d.ts +6 -0
- package/dist/components/ui/accordion.js +47 -0
- package/dist/components/ui/alert-dialog.d.ts +1 -0
- package/dist/components/ui/alert-dialog.js +1 -0
- package/dist/components/ui/alert.d.ts +1 -0
- package/dist/components/ui/alert.js +1 -0
- package/dist/components/ui/aspect-ratio.d.ts +3 -0
- package/dist/components/ui/aspect-ratio.js +18 -0
- package/dist/components/ui/avatar.d.ts +5 -0
- package/dist/{chunk-QTUJSRDH.js → components/ui/avatar.js} +12 -10
- package/dist/components/ui/badge.d.ts +1 -0
- package/dist/components/ui/badge.js +1 -0
- package/dist/components/ui/button.d.ts +1 -0
- package/dist/components/ui/button.js +1 -0
- package/dist/components/ui/calendar.d.ts +1 -0
- package/dist/components/ui/calendar.js +1 -0
- package/dist/components/ui/card.d.ts +1 -0
- package/dist/components/ui/card.js +1 -0
- package/dist/components/ui/carousel.d.ts +1 -0
- package/dist/components/ui/carousel.js +1 -0
- package/dist/components/ui/checkbox.d.ts +1 -0
- package/dist/components/ui/checkbox.js +1 -0
- package/dist/components/ui/color-picker.d.ts +1 -0
- package/dist/components/ui/color-picker.js +1 -0
- package/dist/components/ui/command.d.ts +1 -0
- package/dist/components/ui/command.js +1 -0
- package/dist/components/ui/context-menu.d.ts +1 -0
- package/dist/components/ui/context-menu.js +1 -0
- package/dist/components/ui/date-picker.d.ts +1 -0
- package/dist/components/ui/date-picker.js +1 -0
- package/dist/components/ui/date-range-picker.d.ts +1 -0
- package/dist/components/ui/date-range-picker.js +1 -0
- package/dist/components/ui/dialog.d.ts +1 -0
- package/dist/components/ui/dialog.js +1 -0
- package/dist/components/ui/dropdown-menu.d.ts +1 -0
- package/dist/components/ui/dropdown-menu.js +1 -0
- package/dist/components/ui/hover-card.d.ts +10 -0
- package/dist/components/ui/hover-card.js +45 -0
- package/dist/components/ui/index.d.ts +43 -80
- package/dist/components/ui/index.js +50 -47
- package/dist/components/ui/input-otp.d.ts +33 -0
- package/dist/components/ui/input-otp.js +55 -0
- package/dist/components/ui/input.d.ts +1 -0
- package/dist/components/ui/input.js +1 -0
- package/dist/components/ui/label.d.ts +1 -0
- package/dist/components/ui/label.js +1 -0
- package/dist/components/ui/menubar.d.ts +1 -0
- package/dist/components/ui/menubar.js +1 -0
- package/dist/components/ui/navigation-menu.d.ts +1 -0
- package/dist/components/ui/navigation-menu.js +1 -0
- package/dist/components/ui/pagination.d.ts +1 -0
- package/dist/components/ui/pagination.js +1 -0
- package/dist/components/ui/password-input.d.ts +4 -0
- package/dist/components/ui/password-input.js +38 -0
- package/dist/components/ui/password-strength.d.ts +1 -0
- package/dist/components/ui/password-strength.js +1 -0
- package/dist/components/ui/popover.d.ts +1 -0
- package/dist/components/ui/popover.js +1 -0
- package/dist/components/ui/radio.d.ts +1 -0
- package/dist/components/ui/radio.js +1 -0
- package/dist/components/ui/rating.d.ts +13 -0
- package/dist/components/ui/rating.js +90 -0
- package/dist/components/ui/resizable.d.ts +1 -0
- package/dist/components/ui/resizable.js +1 -0
- package/dist/components/ui/scroll-area.d.ts +1 -0
- package/dist/components/ui/scroll-area.js +1 -0
- package/dist/components/ui/select.d.ts +1 -0
- package/dist/components/ui/select.js +1 -0
- package/dist/components/ui/separator.d.ts +3 -0
- package/dist/components/ui/separator.js +20 -0
- package/dist/components/ui/sheet.d.ts +1 -0
- package/dist/components/ui/sheet.js +1 -0
- package/dist/components/ui/skeleton.d.ts +1 -0
- package/dist/components/ui/skeleton.js +4 -0
- package/dist/components/ui/slider.d.ts +1 -0
- package/dist/components/ui/slider.js +1 -0
- package/dist/components/ui/sonner.d.ts +1 -0
- package/dist/components/ui/sonner.js +1 -0
- package/dist/components/ui/switch.d.ts +1 -0
- package/dist/components/ui/switch.js +1 -0
- package/dist/components/ui/table.d.ts +1 -0
- package/dist/components/ui/table.js +1 -0
- package/dist/components/ui/tabs.d.ts +1 -0
- package/dist/components/ui/tabs.js +1 -0
- package/dist/components/ui/tag-input.d.ts +13 -0
- package/dist/components/ui/tag-input.js +100 -0
- package/dist/components/ui/textarea.d.ts +1 -0
- package/dist/components/ui/textarea.js +1 -0
- package/dist/components/ui/time-input.d.ts +1 -0
- package/dist/components/ui/time-input.js +1 -0
- package/dist/components/ui/time-picker.d.ts +1 -0
- package/dist/components/ui/time-picker.js +1 -0
- package/dist/components/ui/toggle-group.d.ts +11 -0
- package/dist/components/ui/toggle-group.js +32 -0
- package/dist/components/ui/toggle.d.ts +13 -0
- package/dist/components/ui/toggle.js +36 -0
- package/dist/components/ui/upload.d.ts +1 -0
- package/dist/components/ui/upload.js +1 -0
- package/dist/form/form-field-control.d.ts +4 -0
- package/dist/form/form-field-control.js +42 -0
- package/dist/form/form-root.d.ts +4 -0
- package/dist/form/form-root.js +26 -0
- package/dist/form/index.d.ts +7 -21
- package/dist/form/index.js +8 -73
- package/dist/form/use-zod-form.d.ts +10 -0
- package/dist/form/use-zod-form.js +14 -0
- package/dist/i18n/index.d.ts +3 -326
- package/dist/i18n/index.js +17 -2
- package/dist/i18n/messages/en.json +279 -0
- package/dist/i18n/messages/ja.json +276 -0
- package/dist/i18n/messages/vi.json +276 -0
- package/dist/i18n/translate.d.ts +15 -0
- package/dist/i18n/translate.js +82 -0
- package/dist/i18n/use-translation.d.ts +19 -0
- package/dist/i18n/use-translation.js +46 -0
- package/dist/index.d.ts +11 -47
- package/dist/index.js +16 -62
- package/dist/lib/control-styles.d.ts +26 -0
- package/dist/lib/control-styles.js +34 -0
- package/dist/lib/datetime/detect.d.ts +4 -0
- package/dist/lib/datetime/detect.js +16 -0
- package/dist/lib/datetime/format-date.d.ts +22 -0
- package/dist/lib/datetime/format-date.js +73 -0
- package/dist/lib/datetime/format.d.ts +23 -0
- package/dist/lib/datetime/format.js +94 -0
- package/dist/lib/datetime/index.d.ts +5 -35
- package/dist/lib/datetime/index.js +50 -1
- package/dist/lib/datetime/parse.d.ts +12 -0
- package/dist/lib/datetime/parse.js +56 -0
- package/dist/lib/datetime/sync.d.ts +19 -0
- package/dist/lib/datetime/sync.js +45 -0
- package/dist/lib/format.d.ts +21 -0
- package/dist/{chunk-X6AJ5HEI.js → lib/format.js} +35 -5
- package/dist/lib/hooks.d.ts +4 -6
- package/dist/lib/hooks.js +70 -1
- package/dist/lib/utils.d.ts +2 -5
- package/dist/lib/utils.js +8 -1
- package/dist/lib/variants.d.ts +12 -0
- package/dist/lib/variants.js +38 -0
- package/dist/{app.prop-CVY8V4ss.d.ts → props/components/app.prop.d.ts} +8 -12
- package/dist/props/components/app.prop.js +0 -0
- package/dist/{data-display.prop-CT0nVMdp.d.ts → props/components/data-display.prop.d.ts} +7 -15
- package/dist/props/components/data-display.prop.js +0 -0
- package/dist/{data-entry.prop-BSUaseKh.d.ts → props/components/data-entry.prop.d.ts} +46 -91
- package/dist/props/components/data-entry.prop.js +0 -0
- package/dist/{feedback.prop-CHlHDYZK.d.ts → props/components/feedback.prop.d.ts} +10 -16
- package/dist/props/components/feedback.prop.js +0 -0
- package/dist/{form.prop-5cyL3bvT.d.ts → props/components/form.prop.d.ts} +10 -14
- package/dist/props/components/form.prop.js +0 -0
- package/dist/{general.prop-CzlQin6v.d.ts → props/components/general.prop.d.ts} +5 -10
- package/dist/props/components/general.prop.js +0 -0
- package/dist/props/components/index.d.ts +9 -27
- package/dist/props/components/index.js +0 -1
- package/dist/{layout.prop-fCz-Vlie.d.ts → props/components/layout.prop.d.ts} +19 -26
- package/dist/props/components/layout.prop.js +0 -0
- package/dist/{navigation.prop-FCsOVGrP.d.ts → props/components/navigation.prop.d.ts} +10 -15
- package/dist/props/components/navigation.prop.js +0 -0
- package/dist/{query.prop-CT2gFtr4.d.ts → props/components/query.prop.d.ts} +12 -15
- package/dist/props/components/query.prop.js +0 -0
- package/dist/props/index.d.ts +7 -28
- package/dist/props/index.js +12 -3
- package/dist/props/registry.d.ts +5 -7
- package/dist/props/registry.js +998 -1
- package/dist/{content.prop-DrV_zDy-.d.ts → props/vocabulary/content.prop.d.ts} +12 -16
- package/dist/props/vocabulary/content.prop.js +0 -0
- package/dist/props/vocabulary/data.prop.d.ts +45 -0
- package/dist/props/vocabulary/data.prop.js +0 -0
- package/dist/props/vocabulary/index.d.ts +7 -7
- package/dist/props/vocabulary/index.js +0 -1
- package/dist/props/vocabulary/interaction.prop.d.ts +45 -0
- package/dist/props/vocabulary/interaction.prop.js +0 -0
- package/dist/props/vocabulary/layout.prop.d.ts +14 -0
- package/dist/props/vocabulary/layout.prop.js +0 -0
- package/dist/{navigation.prop-CXDaVNaR.d.ts → props/vocabulary/navigation.prop.d.ts} +3 -7
- package/dist/props/vocabulary/navigation.prop.js +0 -0
- package/dist/{shared.prop-BvMSLFJ6.d.ts → props/vocabulary/shared.prop.d.ts} +23 -27
- package/dist/props/vocabulary/shared.prop.js +0 -0
- package/dist/styles/table-layout.css +38 -0
- package/dist/tokens/components/table.css +2 -0
- package/package.json +2 -2
- package/dist/aspect-ratio-CZZJd9Km.d.ts +0 -9
- package/dist/avatar-D9MdXzfF.d.ts +0 -8
- package/dist/checkbox-bBfLARyF.d.ts +0 -13
- package/dist/chunk-2H65B4JA.js +0 -1
- package/dist/chunk-2RGPEFAW.js +0 -46
- package/dist/chunk-3JORZPS7.js +0 -232
- package/dist/chunk-3VFNWVR7.js +0 -153
- package/dist/chunk-4FGE5XVC.js +0 -996
- package/dist/chunk-5732TWQF.js +0 -1206
- package/dist/chunk-57VDEN64.js +0 -881
- package/dist/chunk-5LTW2LWF.js +0 -182
- package/dist/chunk-65RWSIZF.js +0 -327
- package/dist/chunk-7PWBC4BY.js +0 -25
- package/dist/chunk-B4K4BXEF.js +0 -18
- package/dist/chunk-B6S6LTWT.js +0 -464
- package/dist/chunk-B73NA66T.js +0 -122
- package/dist/chunk-B775Y6BE.js +0 -1
- package/dist/chunk-D4JX6O2W.js +0 -114
- package/dist/chunk-DV52WNXO.js +0 -8
- package/dist/chunk-DY5C44UP.js +0 -55
- package/dist/chunk-EG3RDM6F.js +0 -288
- package/dist/chunk-ES4Q3KGL.js +0 -1
- package/dist/chunk-FQGGF7GQ.js +0 -320
- package/dist/chunk-GJXOBDER.js +0 -1
- package/dist/chunk-HIEGUYPP.js +0 -95
- package/dist/chunk-HL3G4SVG.js +0 -131
- package/dist/chunk-I6G4IO7V.js +0 -485
- package/dist/chunk-I7NQ2LIL.js +0 -40
- package/dist/chunk-IJ5ALJGA.js +0 -31
- package/dist/chunk-INIIF7F7.js +0 -47
- package/dist/chunk-ION2KFXK.js +0 -75
- package/dist/chunk-J2DEWIYY.js +0 -37
- package/dist/chunk-K24AQV4R.js +0 -98
- package/dist/chunk-LFW37FGG.js +0 -68
- package/dist/chunk-LMKUKCTN.js +0 -150
- package/dist/chunk-NU2SOVTU.js +0 -96
- package/dist/chunk-NVTZ2EDW.js +0 -389
- package/dist/chunk-NZBAFFWP.js +0 -214
- package/dist/chunk-OO5DZH45.js +0 -587
- package/dist/chunk-Q3KUZG4P.js +0 -86
- package/dist/chunk-QROC2RMH.js +0 -150
- package/dist/chunk-QVBOICFU.js +0 -145
- package/dist/chunk-R2TXLS7S.js +0 -137
- package/dist/chunk-RZ32HY5E.js +0 -331
- package/dist/chunk-S2IJKT3D.js +0 -89
- package/dist/chunk-TBJBVEIP.js +0 -52
- package/dist/chunk-TO7URV7U.js +0 -51
- package/dist/chunk-U7N2A7A3.js +0 -9
- package/dist/chunk-V3N266PT.js +0 -106
- package/dist/chunk-W4REF4TD.js +0 -42
- package/dist/chunk-WGWI7EGL.js +0 -83
- package/dist/chunk-WY3VYUMX.js +0 -193
- package/dist/chunk-XBFUROAY.js +0 -117
- package/dist/chunk-XK3M3VRR.js +0 -32
- package/dist/chunk-YXVJFYQE.js +0 -191
- package/dist/chunk-ZT5UEUBO.js +0 -1
- package/dist/data-table-DRr70ULe.d.ts +0 -80
- package/dist/data.prop-D0UEEczj.d.ts +0 -42
- package/dist/filter-bar-DoDtwYrr.d.ts +0 -7
- package/dist/flex-1Cy46L0M.d.ts +0 -12
- package/dist/format-date-ByyZoqI5.d.ts +0 -51
- package/dist/interaction.prop-DD46aTro.d.ts +0 -47
- package/dist/layout.prop-CXvl2rVR.d.ts +0 -16
- package/dist/password-strength-DVRvXEOK.d.ts +0 -47
- package/dist/search-input-D4v1JGOA.d.ts +0 -27
- package/dist/skeleton-cj9kh5wo.d.ts +0 -20
- package/dist/types-mvzYGrma.d.ts +0 -37
package/dist/props/registry.js
CHANGED
|
@@ -1 +1,998 @@
|
|
|
1
|
-
|
|
1
|
+
const VOCABULARY_REGISTRY = {
|
|
2
|
+
// shared.prop.ts
|
|
3
|
+
ClassNameProp: {
|
|
4
|
+
file: "vocabulary/shared.prop.ts",
|
|
5
|
+
category: "shared",
|
|
6
|
+
description: "Root CSS class override"
|
|
7
|
+
},
|
|
8
|
+
ChildrenProp: {
|
|
9
|
+
file: "vocabulary/shared.prop.ts",
|
|
10
|
+
category: "shared",
|
|
11
|
+
description: "Child nodes slot"
|
|
12
|
+
},
|
|
13
|
+
IdProp: {
|
|
14
|
+
file: "vocabulary/shared.prop.ts",
|
|
15
|
+
category: "shared",
|
|
16
|
+
description: "DOM / form element id"
|
|
17
|
+
},
|
|
18
|
+
OpenProp: {
|
|
19
|
+
file: "vocabulary/shared.prop.ts",
|
|
20
|
+
category: "shared",
|
|
21
|
+
description: "Dialog/Sheet/Popover open state"
|
|
22
|
+
},
|
|
23
|
+
DefaultOpenProp: {
|
|
24
|
+
file: "vocabulary/shared.prop.ts",
|
|
25
|
+
category: "shared",
|
|
26
|
+
description: "Dialog/Sheet/Popover initial uncontrolled open state"
|
|
27
|
+
},
|
|
28
|
+
OnOpenChangeProp: {
|
|
29
|
+
file: "vocabulary/shared.prop.ts",
|
|
30
|
+
category: "shared",
|
|
31
|
+
description: "Panel open change handler"
|
|
32
|
+
},
|
|
33
|
+
HandlerProp: {
|
|
34
|
+
file: "vocabulary/shared.prop.ts",
|
|
35
|
+
category: "shared",
|
|
36
|
+
description: "Void async/sync callback"
|
|
37
|
+
},
|
|
38
|
+
PendingProp: {
|
|
39
|
+
file: "vocabulary/shared.prop.ts",
|
|
40
|
+
category: "shared",
|
|
41
|
+
description: "Loading / in-flight state"
|
|
42
|
+
},
|
|
43
|
+
RequiredProp: {
|
|
44
|
+
file: "vocabulary/shared.prop.ts",
|
|
45
|
+
category: "shared",
|
|
46
|
+
description: "Field is mandatory"
|
|
47
|
+
},
|
|
48
|
+
DisabledProp: {
|
|
49
|
+
file: "vocabulary/shared.prop.ts",
|
|
50
|
+
category: "shared",
|
|
51
|
+
description: "Control disabled"
|
|
52
|
+
},
|
|
53
|
+
LabelProp: {
|
|
54
|
+
file: "vocabulary/shared.prop.ts",
|
|
55
|
+
category: "shared",
|
|
56
|
+
description: "Generic label text"
|
|
57
|
+
},
|
|
58
|
+
HelperProp: {
|
|
59
|
+
file: "vocabulary/shared.prop.ts",
|
|
60
|
+
category: "shared",
|
|
61
|
+
description: "Input hint below field"
|
|
62
|
+
},
|
|
63
|
+
ErrorProp: {
|
|
64
|
+
file: "vocabulary/shared.prop.ts",
|
|
65
|
+
category: "shared",
|
|
66
|
+
description: "Validation error message"
|
|
67
|
+
},
|
|
68
|
+
PlaceholderProp: {
|
|
69
|
+
file: "vocabulary/shared.prop.ts",
|
|
70
|
+
category: "shared",
|
|
71
|
+
description: "Input placeholder"
|
|
72
|
+
},
|
|
73
|
+
NameProp: {
|
|
74
|
+
file: "vocabulary/shared.prop.ts",
|
|
75
|
+
category: "shared",
|
|
76
|
+
description: "Form field name"
|
|
77
|
+
},
|
|
78
|
+
ValueProp: {
|
|
79
|
+
file: "vocabulary/shared.prop.ts",
|
|
80
|
+
category: "shared",
|
|
81
|
+
description: "Abstract controlled value"
|
|
82
|
+
},
|
|
83
|
+
DefaultValueProp: {
|
|
84
|
+
file: "vocabulary/shared.prop.ts",
|
|
85
|
+
category: "shared",
|
|
86
|
+
description: "Abstract uncontrolled initial value"
|
|
87
|
+
},
|
|
88
|
+
OnValueChangeProp: {
|
|
89
|
+
file: "vocabulary/shared.prop.ts",
|
|
90
|
+
category: "shared",
|
|
91
|
+
description: "Abstract value change handler"
|
|
92
|
+
},
|
|
93
|
+
OnChangeProp: {
|
|
94
|
+
file: "vocabulary/shared.prop.ts",
|
|
95
|
+
category: "shared",
|
|
96
|
+
description: "Input change handler"
|
|
97
|
+
},
|
|
98
|
+
OnClickProp: {
|
|
99
|
+
file: "vocabulary/shared.prop.ts",
|
|
100
|
+
category: "shared",
|
|
101
|
+
description: "Button click handler"
|
|
102
|
+
},
|
|
103
|
+
AsChildProp: {
|
|
104
|
+
file: "vocabulary/shared.prop.ts",
|
|
105
|
+
category: "shared",
|
|
106
|
+
description: "Radix asChild polymorphism"
|
|
107
|
+
},
|
|
108
|
+
WidthProp: {
|
|
109
|
+
file: "vocabulary/shared.prop.ts",
|
|
110
|
+
category: "shared",
|
|
111
|
+
description: "Explicit layout length (number\u2192px | CSS string) \u2014 NOT the SizeProp tier"
|
|
112
|
+
},
|
|
113
|
+
// content.prop.ts
|
|
114
|
+
TitleProp: {
|
|
115
|
+
file: "vocabulary/content.prop.ts",
|
|
116
|
+
category: "content",
|
|
117
|
+
description: "Primary heading"
|
|
118
|
+
},
|
|
119
|
+
SubtitleProp: {
|
|
120
|
+
file: "vocabulary/content.prop.ts",
|
|
121
|
+
category: "content",
|
|
122
|
+
description: "Secondary line under title"
|
|
123
|
+
},
|
|
124
|
+
DescriptionProp: {
|
|
125
|
+
file: "vocabulary/content.prop.ts",
|
|
126
|
+
category: "content",
|
|
127
|
+
description: "Body / explanatory copy"
|
|
128
|
+
},
|
|
129
|
+
ExtraProp: {
|
|
130
|
+
file: "vocabulary/content.prop.ts",
|
|
131
|
+
category: "content",
|
|
132
|
+
description: "Top-right actions (Ant extra)"
|
|
133
|
+
},
|
|
134
|
+
FooterProp: {
|
|
135
|
+
file: "vocabulary/content.prop.ts",
|
|
136
|
+
category: "content",
|
|
137
|
+
description: "Bottom action bar"
|
|
138
|
+
},
|
|
139
|
+
ActionProp: {
|
|
140
|
+
file: "vocabulary/content.prop.ts",
|
|
141
|
+
category: "content",
|
|
142
|
+
description: "Primary CTA slot"
|
|
143
|
+
},
|
|
144
|
+
IconProp: {
|
|
145
|
+
file: "vocabulary/content.prop.ts",
|
|
146
|
+
category: "content",
|
|
147
|
+
description: "Lucide icon component"
|
|
148
|
+
},
|
|
149
|
+
ConfirmLabelProp: {
|
|
150
|
+
file: "vocabulary/content.prop.ts",
|
|
151
|
+
category: "content",
|
|
152
|
+
description: "Dialog confirm label"
|
|
153
|
+
},
|
|
154
|
+
CancelLabelProp: {
|
|
155
|
+
file: "vocabulary/content.prop.ts",
|
|
156
|
+
category: "content",
|
|
157
|
+
description: "Dialog cancel label"
|
|
158
|
+
},
|
|
159
|
+
ActionsProp: {
|
|
160
|
+
file: "vocabulary/content.prop.ts",
|
|
161
|
+
category: "content",
|
|
162
|
+
description: "Toolbar actions slot"
|
|
163
|
+
},
|
|
164
|
+
EmptyMessageProp: {
|
|
165
|
+
file: "vocabulary/content.prop.ts",
|
|
166
|
+
category: "content",
|
|
167
|
+
description: "No-results / no-data message in lists, selects, empty states"
|
|
168
|
+
},
|
|
169
|
+
// layout.prop.ts
|
|
170
|
+
PageDensityProp: {
|
|
171
|
+
file: "vocabulary/layout.prop.ts",
|
|
172
|
+
category: "layout",
|
|
173
|
+
description: "Page padding / control scale"
|
|
174
|
+
},
|
|
175
|
+
DensityProp: {
|
|
176
|
+
file: "vocabulary/layout.prop.ts",
|
|
177
|
+
category: "layout",
|
|
178
|
+
description: "Canonical page/subtree density"
|
|
179
|
+
},
|
|
180
|
+
PageContainerVariantProp: {
|
|
181
|
+
file: "vocabulary/layout.prop.ts",
|
|
182
|
+
category: "layout",
|
|
183
|
+
description: "Page shell layout \u2014 default, narrow, flush, ghost"
|
|
184
|
+
},
|
|
185
|
+
GapProp: {
|
|
186
|
+
file: "vocabulary/layout.prop.ts",
|
|
187
|
+
category: "layout",
|
|
188
|
+
description: "Shared gap scale; components may document subsets"
|
|
189
|
+
},
|
|
190
|
+
TableDensityProp: {
|
|
191
|
+
file: "vocabulary/layout.prop.ts",
|
|
192
|
+
category: "layout",
|
|
193
|
+
description: "DataTable row height \u2014 NOT PageDensityProp"
|
|
194
|
+
},
|
|
195
|
+
// interaction.prop.ts
|
|
196
|
+
ButtonVariantProp: {
|
|
197
|
+
file: "vocabulary/interaction.prop.ts",
|
|
198
|
+
category: "interaction",
|
|
199
|
+
description: "Button visual variant"
|
|
200
|
+
},
|
|
201
|
+
ButtonSizeProp: {
|
|
202
|
+
file: "vocabulary/interaction.prop.ts",
|
|
203
|
+
category: "interaction",
|
|
204
|
+
description: "Button size preset; includes documented icon-only subset"
|
|
205
|
+
},
|
|
206
|
+
BadgeVariantProp: {
|
|
207
|
+
file: "vocabulary/interaction.prop.ts",
|
|
208
|
+
category: "interaction",
|
|
209
|
+
description: "Badge visual variant (default | secondary | outline | dashed)"
|
|
210
|
+
},
|
|
211
|
+
ShapeProp: {
|
|
212
|
+
file: "vocabulary/interaction.prop.ts",
|
|
213
|
+
category: "interaction",
|
|
214
|
+
description: "Corner shape default | pill | sharp \u2014 shared by Button + Badge (radius tokens)"
|
|
215
|
+
},
|
|
216
|
+
TextSizeProp: {
|
|
217
|
+
file: "vocabulary/interaction.prop.ts",
|
|
218
|
+
category: "interaction",
|
|
219
|
+
description: "Text size \u2014 golden-ratio type-scale steps (2xs\u20262xl), never an arbitrary px"
|
|
220
|
+
},
|
|
221
|
+
TextToneProp: {
|
|
222
|
+
file: "vocabulary/interaction.prop.ts",
|
|
223
|
+
category: "interaction",
|
|
224
|
+
description: "Text colour intent \u2014 semantic foreground tokens"
|
|
225
|
+
},
|
|
226
|
+
FontWeightProp: {
|
|
227
|
+
file: "vocabulary/interaction.prop.ts",
|
|
228
|
+
category: "interaction",
|
|
229
|
+
description: "Font weight regular | medium | bold \u2014 the 3-weight canon (400/500/700, no 600)"
|
|
230
|
+
},
|
|
231
|
+
HeadingLevelProp: {
|
|
232
|
+
file: "vocabulary/interaction.prop.ts",
|
|
233
|
+
category: "interaction",
|
|
234
|
+
description: "Heading level 1-4 \u2014 sizes from --heading-h* and the semantic element"
|
|
235
|
+
},
|
|
236
|
+
TextAlignProp: {
|
|
237
|
+
file: "vocabulary/interaction.prop.ts",
|
|
238
|
+
category: "interaction",
|
|
239
|
+
description: "Inline text alignment start | center | end (logical, RTL-safe)"
|
|
240
|
+
},
|
|
241
|
+
SizeProp: {
|
|
242
|
+
file: "vocabulary/interaction.prop.ts",
|
|
243
|
+
category: "interaction",
|
|
244
|
+
description: "Shared size names xs | sm | md | lg"
|
|
245
|
+
},
|
|
246
|
+
FormLayoutProp: {
|
|
247
|
+
file: "vocabulary/interaction.prop.ts",
|
|
248
|
+
category: "interaction",
|
|
249
|
+
description: "Form label layout: vertical | horizontal | inline"
|
|
250
|
+
},
|
|
251
|
+
BreakpointProp: {
|
|
252
|
+
file: "vocabulary/interaction.prop.ts",
|
|
253
|
+
category: "interaction",
|
|
254
|
+
description: "Responsive breakpoint name sm | md | lg | xl (mobile-first)"
|
|
255
|
+
},
|
|
256
|
+
ConfirmVariantProp: {
|
|
257
|
+
file: "vocabulary/interaction.prop.ts",
|
|
258
|
+
category: "interaction",
|
|
259
|
+
description: "Dialog confirm emphasis"
|
|
260
|
+
},
|
|
261
|
+
ToneProp: {
|
|
262
|
+
file: "vocabulary/interaction.prop.ts",
|
|
263
|
+
category: "interaction",
|
|
264
|
+
description: "Semantic status/color intent"
|
|
265
|
+
},
|
|
266
|
+
AlertVariantProp: {
|
|
267
|
+
file: "vocabulary/interaction.prop.ts",
|
|
268
|
+
category: "interaction",
|
|
269
|
+
description: "Inline Alert banner tone"
|
|
270
|
+
},
|
|
271
|
+
SortDirectionProp: {
|
|
272
|
+
file: "vocabulary/interaction.prop.ts",
|
|
273
|
+
category: "interaction",
|
|
274
|
+
description: "asc | desc"
|
|
275
|
+
},
|
|
276
|
+
ColumnAlignProp: {
|
|
277
|
+
file: "vocabulary/interaction.prop.ts",
|
|
278
|
+
category: "interaction",
|
|
279
|
+
description: "Table column alignment"
|
|
280
|
+
},
|
|
281
|
+
SortStateProp: {
|
|
282
|
+
file: "vocabulary/interaction.prop.ts",
|
|
283
|
+
category: "interaction",
|
|
284
|
+
description: "Active table sort"
|
|
285
|
+
},
|
|
286
|
+
// navigation.prop.ts
|
|
287
|
+
BreadcrumbItemProp: {
|
|
288
|
+
file: "vocabulary/navigation.prop.ts",
|
|
289
|
+
category: "navigation",
|
|
290
|
+
description: "Single breadcrumb segment"
|
|
291
|
+
},
|
|
292
|
+
BreadcrumbProp: {
|
|
293
|
+
file: "vocabulary/navigation.prop.ts",
|
|
294
|
+
category: "navigation",
|
|
295
|
+
description: "Breadcrumb trail array"
|
|
296
|
+
},
|
|
297
|
+
ZodSchemaProp: {
|
|
298
|
+
file: "components/form.prop.ts",
|
|
299
|
+
category: "form",
|
|
300
|
+
description: "Zod 4 schema passed to form helpers"
|
|
301
|
+
},
|
|
302
|
+
UseZodFormOptionsProp: {
|
|
303
|
+
file: "components/form.prop.ts",
|
|
304
|
+
category: "form",
|
|
305
|
+
description: "react-hook-form options accepted by useZodForm"
|
|
306
|
+
},
|
|
307
|
+
UseZodFormReturnProp: {
|
|
308
|
+
file: "components/form.prop.ts",
|
|
309
|
+
category: "form",
|
|
310
|
+
description: "react-hook-form return object from useZodForm"
|
|
311
|
+
},
|
|
312
|
+
FieldErrorMessageProp: {
|
|
313
|
+
file: "components/form.prop.ts",
|
|
314
|
+
category: "form",
|
|
315
|
+
description: "Mapped field error message displayed through FormField"
|
|
316
|
+
},
|
|
317
|
+
// data.prop.ts
|
|
318
|
+
GetRowIdProp: {
|
|
319
|
+
file: "vocabulary/data.prop.ts",
|
|
320
|
+
category: "data",
|
|
321
|
+
description: "Row ID extractor generic"
|
|
322
|
+
},
|
|
323
|
+
OnRowClickProp: {
|
|
324
|
+
file: "vocabulary/data.prop.ts",
|
|
325
|
+
category: "data",
|
|
326
|
+
description: "Row click handler generic"
|
|
327
|
+
},
|
|
328
|
+
ColumnDefProp: {
|
|
329
|
+
file: "vocabulary/data.prop.ts",
|
|
330
|
+
category: "data",
|
|
331
|
+
description: "DataTable column definition"
|
|
332
|
+
},
|
|
333
|
+
SelectedIdsProp: {
|
|
334
|
+
file: "vocabulary/data.prop.ts",
|
|
335
|
+
category: "data",
|
|
336
|
+
description: "Selected row ID set"
|
|
337
|
+
},
|
|
338
|
+
OnSelectChangeProp: {
|
|
339
|
+
file: "vocabulary/data.prop.ts",
|
|
340
|
+
category: "data",
|
|
341
|
+
description: "Selection change handler"
|
|
342
|
+
},
|
|
343
|
+
OnTableDensityChangeProp: {
|
|
344
|
+
file: "vocabulary/data.prop.ts",
|
|
345
|
+
category: "data",
|
|
346
|
+
description: "Table density change"
|
|
347
|
+
},
|
|
348
|
+
OnSortChangeProp: {
|
|
349
|
+
file: "vocabulary/data.prop.ts",
|
|
350
|
+
category: "data",
|
|
351
|
+
description: "Table sort change"
|
|
352
|
+
},
|
|
353
|
+
OnSearchChangeProp: {
|
|
354
|
+
file: "vocabulary/data.prop.ts",
|
|
355
|
+
category: "data",
|
|
356
|
+
description: "Debounced search callback"
|
|
357
|
+
},
|
|
358
|
+
OnClearFiltersProp: {
|
|
359
|
+
file: "vocabulary/data.prop.ts",
|
|
360
|
+
category: "data",
|
|
361
|
+
description: "FilterBar clear all"
|
|
362
|
+
},
|
|
363
|
+
HasActiveFiltersProp: {
|
|
364
|
+
file: "vocabulary/data.prop.ts",
|
|
365
|
+
category: "data",
|
|
366
|
+
description: "Any filter active flag"
|
|
367
|
+
}
|
|
368
|
+
};
|
|
369
|
+
const COMPONENT_PROP_REGISTRY = {
|
|
370
|
+
AppProviderProp: { group: "app", file: "components/app.prop.ts", vocabulary: ["ChildrenProp"] },
|
|
371
|
+
AppSettingPickerProp: {
|
|
372
|
+
group: "app",
|
|
373
|
+
file: "components/app.prop.ts",
|
|
374
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp", "ClassNameProp"]
|
|
375
|
+
},
|
|
376
|
+
PageContainerProp: {
|
|
377
|
+
group: "layout",
|
|
378
|
+
file: "components/layout.prop.ts",
|
|
379
|
+
vocabulary: [
|
|
380
|
+
"TitleProp",
|
|
381
|
+
"SubtitleProp",
|
|
382
|
+
"ExtraProp",
|
|
383
|
+
"FooterProp",
|
|
384
|
+
"BreadcrumbProp",
|
|
385
|
+
"DensityProp",
|
|
386
|
+
"PageContainerVariantProp"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
FlexDirectionProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
|
|
390
|
+
FlexAlignProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
|
|
391
|
+
FlexJustifyProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
|
|
392
|
+
FlexProp: {
|
|
393
|
+
group: "layout",
|
|
394
|
+
file: "components/layout.prop.ts",
|
|
395
|
+
vocabulary: [
|
|
396
|
+
{ field: "direction", local: true, reason: "Flex-specific axis control." },
|
|
397
|
+
"GapProp",
|
|
398
|
+
{ field: "align", local: true, reason: "Flex-specific align-items keyword subset." },
|
|
399
|
+
{ field: "justify", local: true, reason: "Flex-specific justify-content keyword subset." },
|
|
400
|
+
{ field: "wrap", local: true, reason: "Flex-specific boolean shorthand for flex-wrap." }
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
ResponsiveGridColumnsProp: { group: "layout", file: "components/layout.prop.ts", vocabulary: [] },
|
|
404
|
+
PageInsetProp: {
|
|
405
|
+
group: "layout",
|
|
406
|
+
file: "components/layout.prop.ts",
|
|
407
|
+
vocabulary: ["ChildrenProp", "ClassNameProp"]
|
|
408
|
+
},
|
|
409
|
+
AppShellProp: {
|
|
410
|
+
group: "layout",
|
|
411
|
+
file: "components/layout.prop.ts",
|
|
412
|
+
vocabulary: ["ChildrenProp"]
|
|
413
|
+
},
|
|
414
|
+
SidebarProductProp: {
|
|
415
|
+
group: "layout",
|
|
416
|
+
file: "components/layout.prop.ts",
|
|
417
|
+
vocabulary: ["LabelProp"]
|
|
418
|
+
},
|
|
419
|
+
SidebarItemProp: {
|
|
420
|
+
group: "layout",
|
|
421
|
+
file: "components/layout.prop.ts",
|
|
422
|
+
vocabulary: ["IdProp", "LabelProp", "DisabledProp", "ChildrenProp"]
|
|
423
|
+
},
|
|
424
|
+
SidebarSectionProp: {
|
|
425
|
+
group: "layout",
|
|
426
|
+
file: "components/layout.prop.ts",
|
|
427
|
+
vocabulary: ["LabelProp"]
|
|
428
|
+
},
|
|
429
|
+
SidebarProp: {
|
|
430
|
+
group: "layout",
|
|
431
|
+
file: "components/layout.prop.ts",
|
|
432
|
+
vocabulary: ["IdProp", "OnValueChangeProp", "ChildrenProp"]
|
|
433
|
+
},
|
|
434
|
+
TopbarProductProp: {
|
|
435
|
+
group: "layout",
|
|
436
|
+
file: "components/layout.prop.ts",
|
|
437
|
+
vocabulary: ["LabelProp"]
|
|
438
|
+
},
|
|
439
|
+
TopbarProjectProp: {
|
|
440
|
+
group: "layout",
|
|
441
|
+
file: "components/layout.prop.ts",
|
|
442
|
+
vocabulary: ["LabelProp"]
|
|
443
|
+
},
|
|
444
|
+
TopbarProp: {
|
|
445
|
+
group: "layout",
|
|
446
|
+
file: "components/layout.prop.ts",
|
|
447
|
+
vocabulary: ["ChildrenProp", "OnOpenChangeProp", "OnValueChangeProp"]
|
|
448
|
+
},
|
|
449
|
+
ButtonProp: {
|
|
450
|
+
group: "general",
|
|
451
|
+
file: "components/general.prop.ts",
|
|
452
|
+
vocabulary: [
|
|
453
|
+
"ButtonVariantProp",
|
|
454
|
+
"SizeProp",
|
|
455
|
+
"ShapeProp",
|
|
456
|
+
"AsChildProp",
|
|
457
|
+
"DisabledProp",
|
|
458
|
+
"OnClickProp",
|
|
459
|
+
"PendingProp"
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
TextProp: {
|
|
463
|
+
group: "general",
|
|
464
|
+
file: "components/general.prop.ts",
|
|
465
|
+
vocabulary: [
|
|
466
|
+
"TextSizeProp",
|
|
467
|
+
"TextToneProp",
|
|
468
|
+
"FontWeightProp",
|
|
469
|
+
"TextAlignProp",
|
|
470
|
+
"ClassNameProp"
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
HeadingProp: {
|
|
474
|
+
group: "general",
|
|
475
|
+
file: "components/general.prop.ts",
|
|
476
|
+
vocabulary: ["HeadingLevelProp", "TextToneProp", "TextAlignProp", "ClassNameProp"]
|
|
477
|
+
},
|
|
478
|
+
InputProp: {
|
|
479
|
+
group: "data-entry",
|
|
480
|
+
file: "components/data-entry.prop.ts",
|
|
481
|
+
vocabulary: ["PlaceholderProp", "ValueProp", "DisabledProp"]
|
|
482
|
+
},
|
|
483
|
+
TextareaProp: {
|
|
484
|
+
group: "data-entry",
|
|
485
|
+
file: "components/data-entry.prop.ts",
|
|
486
|
+
vocabulary: ["PlaceholderProp", "DisabledProp"]
|
|
487
|
+
},
|
|
488
|
+
NumberInputProp: {
|
|
489
|
+
group: "data-entry",
|
|
490
|
+
file: "components/data-entry.prop.ts",
|
|
491
|
+
vocabulary: [
|
|
492
|
+
"ValueProp",
|
|
493
|
+
"DefaultValueProp",
|
|
494
|
+
"OnValueChangeProp",
|
|
495
|
+
"SizeProp",
|
|
496
|
+
"PlaceholderProp",
|
|
497
|
+
"DisabledProp",
|
|
498
|
+
"NameProp",
|
|
499
|
+
"IdProp",
|
|
500
|
+
"ClassNameProp"
|
|
501
|
+
]
|
|
502
|
+
},
|
|
503
|
+
FormProp: {
|
|
504
|
+
group: "data-entry",
|
|
505
|
+
file: "components/data-entry.prop.ts",
|
|
506
|
+
vocabulary: ["FormLayoutProp", "WidthProp", "BreakpointProp", "DensityProp"]
|
|
507
|
+
},
|
|
508
|
+
FormFieldProp: {
|
|
509
|
+
group: "data-entry",
|
|
510
|
+
file: "components/data-entry.prop.ts",
|
|
511
|
+
vocabulary: [
|
|
512
|
+
"IdProp",
|
|
513
|
+
"LabelProp",
|
|
514
|
+
"RequiredProp",
|
|
515
|
+
"HelperProp",
|
|
516
|
+
"ErrorProp",
|
|
517
|
+
"FormLayoutProp",
|
|
518
|
+
"WidthProp"
|
|
519
|
+
]
|
|
520
|
+
},
|
|
521
|
+
SearchInputProp: {
|
|
522
|
+
group: "data-entry",
|
|
523
|
+
file: "components/data-entry.prop.ts",
|
|
524
|
+
vocabulary: ["LabelProp", "PlaceholderProp", "OnSearchChangeProp"]
|
|
525
|
+
},
|
|
526
|
+
CheckboxProp: {
|
|
527
|
+
group: "data-entry",
|
|
528
|
+
file: "components/data-entry.prop.ts",
|
|
529
|
+
vocabulary: ["DisabledProp"]
|
|
530
|
+
},
|
|
531
|
+
CheckboxGroupProp: {
|
|
532
|
+
group: "data-entry",
|
|
533
|
+
file: "components/data-entry.prop.ts",
|
|
534
|
+
vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "DisabledProp"]
|
|
535
|
+
},
|
|
536
|
+
ChoiceOptionProp: {
|
|
537
|
+
group: "data-entry",
|
|
538
|
+
file: "components/data-entry.prop.ts",
|
|
539
|
+
vocabulary: ["LabelProp", "ValueProp", "DisabledProp", "DescriptionProp"]
|
|
540
|
+
},
|
|
541
|
+
RadioProp: {
|
|
542
|
+
group: "data-entry",
|
|
543
|
+
file: "components/data-entry.prop.ts",
|
|
544
|
+
vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "DisabledProp"]
|
|
545
|
+
},
|
|
546
|
+
RadioGroupProp: {
|
|
547
|
+
group: "data-entry",
|
|
548
|
+
file: "components/data-entry.prop.ts",
|
|
549
|
+
vocabulary: ["SizeProp", "DisabledProp"]
|
|
550
|
+
},
|
|
551
|
+
SwitchProp: {
|
|
552
|
+
group: "data-entry",
|
|
553
|
+
file: "components/data-entry.prop.ts",
|
|
554
|
+
vocabulary: ["DisabledProp"]
|
|
555
|
+
},
|
|
556
|
+
FieldProp: {
|
|
557
|
+
group: "data-entry",
|
|
558
|
+
file: "components/data-entry.prop.ts",
|
|
559
|
+
vocabulary: ["IdProp", "LabelProp", "DescriptionProp", "ClassNameProp", "ChildrenProp"]
|
|
560
|
+
},
|
|
561
|
+
SliderProp: {
|
|
562
|
+
group: "data-entry",
|
|
563
|
+
file: "components/data-entry.prop.ts",
|
|
564
|
+
vocabulary: ["DisabledProp"]
|
|
565
|
+
},
|
|
566
|
+
CalendarProp: { group: "data-entry", file: "components/data-entry.prop.ts", vocabulary: [] },
|
|
567
|
+
DatePickerProp: {
|
|
568
|
+
group: "data-entry",
|
|
569
|
+
file: "components/data-entry.prop.ts",
|
|
570
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"]
|
|
571
|
+
},
|
|
572
|
+
MonthPickerProp: {
|
|
573
|
+
group: "data-entry",
|
|
574
|
+
file: "components/data-entry.prop.ts",
|
|
575
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"]
|
|
576
|
+
},
|
|
577
|
+
MonthRangePickerProp: {
|
|
578
|
+
group: "data-entry",
|
|
579
|
+
file: "components/data-entry.prop.ts",
|
|
580
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"]
|
|
581
|
+
},
|
|
582
|
+
DateRangePickerProp: {
|
|
583
|
+
group: "data-entry",
|
|
584
|
+
file: "components/data-entry.prop.ts",
|
|
585
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "DisabledProp", "IdProp"]
|
|
586
|
+
},
|
|
587
|
+
TimePickerProp: {
|
|
588
|
+
group: "data-entry",
|
|
589
|
+
file: "components/data-entry.prop.ts",
|
|
590
|
+
vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "DisabledProp"]
|
|
591
|
+
},
|
|
592
|
+
ColorPickerProp: {
|
|
593
|
+
group: "data-entry",
|
|
594
|
+
file: "components/data-entry.prop.ts",
|
|
595
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp"]
|
|
596
|
+
},
|
|
597
|
+
SearchSelectProp: {
|
|
598
|
+
group: "data-entry",
|
|
599
|
+
file: "components/data-entry.prop.ts",
|
|
600
|
+
vocabulary: [
|
|
601
|
+
"ValueProp",
|
|
602
|
+
"OnValueChangeProp",
|
|
603
|
+
"PlaceholderProp",
|
|
604
|
+
"EmptyMessageProp",
|
|
605
|
+
"DisabledProp",
|
|
606
|
+
"NameProp",
|
|
607
|
+
"IdProp",
|
|
608
|
+
"ClassNameProp"
|
|
609
|
+
],
|
|
610
|
+
note: "Internal \u2014 the searchable engine behind `<Select options showSearch>` (not public API); use Select."
|
|
611
|
+
},
|
|
612
|
+
SelectDataProp: {
|
|
613
|
+
group: "data-entry",
|
|
614
|
+
file: "components/data-entry.prop.ts",
|
|
615
|
+
vocabulary: [
|
|
616
|
+
"ValueProp",
|
|
617
|
+
"OnValueChangeProp",
|
|
618
|
+
"PlaceholderProp",
|
|
619
|
+
"EmptyMessageProp",
|
|
620
|
+
"DisabledProp",
|
|
621
|
+
"NameProp",
|
|
622
|
+
"IdProp",
|
|
623
|
+
"ClassNameProp"
|
|
624
|
+
],
|
|
625
|
+
note: "Ant-style data-driven form of Select (options|loadOptions + showSearch). One Select for all single-selects."
|
|
626
|
+
},
|
|
627
|
+
SearchSelectOptionProp: {
|
|
628
|
+
group: "data-entry",
|
|
629
|
+
file: "components/data-entry.prop.ts",
|
|
630
|
+
vocabulary: ["ValueProp", "LabelProp", "DisabledProp"]
|
|
631
|
+
},
|
|
632
|
+
SearchSelectLoadParamsProp: {
|
|
633
|
+
group: "data-entry",
|
|
634
|
+
file: "components/data-entry.prop.ts",
|
|
635
|
+
vocabulary: []
|
|
636
|
+
},
|
|
637
|
+
SearchSelectLoadResultProp: {
|
|
638
|
+
group: "data-entry",
|
|
639
|
+
file: "components/data-entry.prop.ts",
|
|
640
|
+
vocabulary: []
|
|
641
|
+
},
|
|
642
|
+
UploadProp: {
|
|
643
|
+
group: "data-entry",
|
|
644
|
+
file: "components/data-entry.prop.ts",
|
|
645
|
+
vocabulary: [
|
|
646
|
+
"ValueProp",
|
|
647
|
+
"DefaultValueProp",
|
|
648
|
+
"OnValueChangeProp",
|
|
649
|
+
"DisabledProp",
|
|
650
|
+
"ClassNameProp"
|
|
651
|
+
]
|
|
652
|
+
},
|
|
653
|
+
UploadFileItemProp: {
|
|
654
|
+
group: "data-entry",
|
|
655
|
+
file: "components/data-entry.prop.ts",
|
|
656
|
+
vocabulary: []
|
|
657
|
+
},
|
|
658
|
+
UploadVariantProp: { group: "data-entry", file: "components/data-entry.prop.ts", vocabulary: [] },
|
|
659
|
+
TreeOptionProp: {
|
|
660
|
+
group: "data-entry",
|
|
661
|
+
file: "components/data-entry.prop.ts",
|
|
662
|
+
vocabulary: ["ValueProp", "LabelProp", "DisabledProp", "ChildrenProp"]
|
|
663
|
+
},
|
|
664
|
+
TreeFieldNamesProp: {
|
|
665
|
+
group: "data-entry",
|
|
666
|
+
file: "components/data-entry.prop.ts",
|
|
667
|
+
vocabulary: ["LabelProp", "ValueProp", "ChildrenProp"]
|
|
668
|
+
},
|
|
669
|
+
CascaderProp: {
|
|
670
|
+
group: "data-entry",
|
|
671
|
+
file: "components/data-entry.prop.ts",
|
|
672
|
+
vocabulary: [
|
|
673
|
+
"ValueProp",
|
|
674
|
+
"DefaultValueProp",
|
|
675
|
+
"OnValueChangeProp",
|
|
676
|
+
"PlaceholderProp",
|
|
677
|
+
"DisabledProp",
|
|
678
|
+
"ClassNameProp",
|
|
679
|
+
"IdProp"
|
|
680
|
+
]
|
|
681
|
+
},
|
|
682
|
+
TreeSelectProp: {
|
|
683
|
+
group: "data-entry",
|
|
684
|
+
file: "components/data-entry.prop.ts",
|
|
685
|
+
vocabulary: [
|
|
686
|
+
"ValueProp",
|
|
687
|
+
"DefaultValueProp",
|
|
688
|
+
"OnValueChangeProp",
|
|
689
|
+
"PlaceholderProp",
|
|
690
|
+
"DisabledProp",
|
|
691
|
+
"ClassNameProp",
|
|
692
|
+
"IdProp"
|
|
693
|
+
]
|
|
694
|
+
},
|
|
695
|
+
ShowCheckedStrategyProp: {
|
|
696
|
+
group: "data-entry",
|
|
697
|
+
file: "components/data-entry.prop.ts",
|
|
698
|
+
vocabulary: []
|
|
699
|
+
},
|
|
700
|
+
TransferProp: {
|
|
701
|
+
group: "data-entry",
|
|
702
|
+
file: "components/data-entry.prop.ts",
|
|
703
|
+
vocabulary: ["DisabledProp", "ClassNameProp"]
|
|
704
|
+
},
|
|
705
|
+
TransferItemProp: {
|
|
706
|
+
group: "data-entry",
|
|
707
|
+
file: "components/data-entry.prop.ts",
|
|
708
|
+
vocabulary: ["TitleProp", "DescriptionProp", "DisabledProp"]
|
|
709
|
+
},
|
|
710
|
+
EmptyStateProp: {
|
|
711
|
+
group: "data-display",
|
|
712
|
+
file: "components/data-display.prop.ts",
|
|
713
|
+
vocabulary: ["IconProp", "TitleProp", "DescriptionProp", "ActionProp"]
|
|
714
|
+
},
|
|
715
|
+
DescriptionsProp: {
|
|
716
|
+
group: "data-display",
|
|
717
|
+
file: "components/data-display.prop.ts",
|
|
718
|
+
vocabulary: ["ClassNameProp"]
|
|
719
|
+
},
|
|
720
|
+
DescriptionsItemProp: {
|
|
721
|
+
group: "data-display",
|
|
722
|
+
file: "components/data-display.prop.ts",
|
|
723
|
+
vocabulary: ["LabelProp", "ValueProp"]
|
|
724
|
+
},
|
|
725
|
+
BadgeProp: {
|
|
726
|
+
group: "data-display",
|
|
727
|
+
file: "components/data-display.prop.ts",
|
|
728
|
+
vocabulary: ["BadgeVariantProp", "ShapeProp", "ToneProp", "ChildrenProp", "ClassNameProp"]
|
|
729
|
+
},
|
|
730
|
+
DataTableProp: {
|
|
731
|
+
group: "data-display",
|
|
732
|
+
file: "components/data-display.prop.ts",
|
|
733
|
+
vocabulary: ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp"]
|
|
734
|
+
},
|
|
735
|
+
AlertDialogProp: {
|
|
736
|
+
group: "feedback",
|
|
737
|
+
file: "components/feedback.prop.ts",
|
|
738
|
+
vocabulary: [
|
|
739
|
+
"OpenProp",
|
|
740
|
+
"OnOpenChangeProp",
|
|
741
|
+
"TitleProp",
|
|
742
|
+
"DescriptionProp",
|
|
743
|
+
"ConfirmLabelProp",
|
|
744
|
+
"CancelLabelProp",
|
|
745
|
+
"ConfirmVariantProp",
|
|
746
|
+
{
|
|
747
|
+
field: "confirmPhrase",
|
|
748
|
+
local: true,
|
|
749
|
+
reason: "Destructive-dialog type-to-confirm friction phrase."
|
|
750
|
+
},
|
|
751
|
+
"HandlerProp",
|
|
752
|
+
{
|
|
753
|
+
field: "keepOpenOnConfirm",
|
|
754
|
+
local: true,
|
|
755
|
+
reason: "AlertDialog-specific async completion behavior."
|
|
756
|
+
},
|
|
757
|
+
"PendingProp"
|
|
758
|
+
]
|
|
759
|
+
},
|
|
760
|
+
DataStateProp: { group: "query", file: "components/query.prop.ts", vocabulary: ["HandlerProp"] },
|
|
761
|
+
AlertMutationFeedbackProp: {
|
|
762
|
+
group: "query",
|
|
763
|
+
file: "components/query.prop.ts",
|
|
764
|
+
vocabulary: [
|
|
765
|
+
{
|
|
766
|
+
field: "mutation",
|
|
767
|
+
local: true,
|
|
768
|
+
reason: "TanStack mutation lifecycle object consumed by this helper."
|
|
769
|
+
},
|
|
770
|
+
"HandlerProp",
|
|
771
|
+
{ field: "showRetry", local: true, reason: "Query helper retry affordance toggle." },
|
|
772
|
+
{
|
|
773
|
+
field: "pending",
|
|
774
|
+
local: true,
|
|
775
|
+
reason: "Inline pending ReactNode slot, not boolean PendingProp state."
|
|
776
|
+
},
|
|
777
|
+
"ClassNameProp"
|
|
778
|
+
]
|
|
779
|
+
},
|
|
780
|
+
ButtonRefetchProp: {
|
|
781
|
+
group: "query",
|
|
782
|
+
file: "components/query.prop.ts",
|
|
783
|
+
vocabulary: [
|
|
784
|
+
{
|
|
785
|
+
field: "query",
|
|
786
|
+
local: true,
|
|
787
|
+
reason: "TanStack query refetch handle consumed by this helper."
|
|
788
|
+
},
|
|
789
|
+
"LabelProp"
|
|
790
|
+
]
|
|
791
|
+
},
|
|
792
|
+
InfiniteQueryStateProp: {
|
|
793
|
+
group: "query",
|
|
794
|
+
file: "components/query.prop.ts",
|
|
795
|
+
vocabulary: ["HandlerProp"]
|
|
796
|
+
},
|
|
797
|
+
PrefetchLinkProp: { group: "query", file: "components/query.prop.ts", vocabulary: [] },
|
|
798
|
+
AlertQueryErrorProp: {
|
|
799
|
+
group: "feedback",
|
|
800
|
+
file: "components/feedback.prop.ts",
|
|
801
|
+
vocabulary: ["HandlerProp"]
|
|
802
|
+
},
|
|
803
|
+
AlertProp: {
|
|
804
|
+
group: "feedback",
|
|
805
|
+
file: "components/feedback.prop.ts",
|
|
806
|
+
vocabulary: [
|
|
807
|
+
"AlertVariantProp",
|
|
808
|
+
"ToneProp",
|
|
809
|
+
"IconProp",
|
|
810
|
+
"OnValueChangeProp",
|
|
811
|
+
"ClassNameProp",
|
|
812
|
+
"ChildrenProp"
|
|
813
|
+
]
|
|
814
|
+
},
|
|
815
|
+
AlertTitleProp: {
|
|
816
|
+
group: "feedback",
|
|
817
|
+
file: "components/feedback.prop.ts",
|
|
818
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
819
|
+
},
|
|
820
|
+
AlertContentProp: {
|
|
821
|
+
group: "feedback",
|
|
822
|
+
file: "components/feedback.prop.ts",
|
|
823
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
824
|
+
},
|
|
825
|
+
AlertDescriptionProp: {
|
|
826
|
+
group: "feedback",
|
|
827
|
+
file: "components/feedback.prop.ts",
|
|
828
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
829
|
+
},
|
|
830
|
+
AlertActionsProp: {
|
|
831
|
+
group: "feedback",
|
|
832
|
+
file: "components/feedback.prop.ts",
|
|
833
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
834
|
+
},
|
|
835
|
+
SkeletonRowsProp: { group: "feedback", file: "components/feedback.prop.ts", vocabulary: [] },
|
|
836
|
+
ToolbarProp: {
|
|
837
|
+
group: "navigation",
|
|
838
|
+
file: "components/navigation.prop.ts",
|
|
839
|
+
vocabulary: ["OnClearFiltersProp", "HasActiveFiltersProp", "ClassNameProp", "ChildrenProp"]
|
|
840
|
+
},
|
|
841
|
+
ToolbarGroupProp: {
|
|
842
|
+
group: "navigation",
|
|
843
|
+
file: "components/navigation.prop.ts",
|
|
844
|
+
vocabulary: ["LabelProp", "ClassNameProp", "ChildrenProp"]
|
|
845
|
+
},
|
|
846
|
+
PaginationProp: {
|
|
847
|
+
group: "navigation",
|
|
848
|
+
file: "components/navigation.prop.ts",
|
|
849
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp"]
|
|
850
|
+
},
|
|
851
|
+
StepsProp: {
|
|
852
|
+
group: "navigation",
|
|
853
|
+
file: "components/navigation.prop.ts",
|
|
854
|
+
vocabulary: ["ValueProp", "DefaultValueProp", "SizeProp", "OnValueChangeProp", "ClassNameProp"]
|
|
855
|
+
},
|
|
856
|
+
StepItemProp: {
|
|
857
|
+
group: "navigation",
|
|
858
|
+
file: "components/navigation.prop.ts",
|
|
859
|
+
vocabulary: ["TitleProp", "SubtitleProp", "DescriptionProp", "IconProp", "DisabledProp"]
|
|
860
|
+
},
|
|
861
|
+
StepStatusProp: { group: "navigation", file: "components/navigation.prop.ts", vocabulary: [] },
|
|
862
|
+
TabsProp: {
|
|
863
|
+
group: "navigation",
|
|
864
|
+
file: "components/navigation.prop.ts",
|
|
865
|
+
vocabulary: ["ValueProp", "DefaultValueProp", "OnValueChangeProp", "ClassNameProp"]
|
|
866
|
+
},
|
|
867
|
+
TabItemProp: {
|
|
868
|
+
group: "navigation",
|
|
869
|
+
file: "components/navigation.prop.ts",
|
|
870
|
+
vocabulary: ["ValueProp", "LabelProp", "ChildrenProp", "DisabledProp"]
|
|
871
|
+
},
|
|
872
|
+
FormRootProp: {
|
|
873
|
+
group: "form",
|
|
874
|
+
file: "components/form.prop.ts",
|
|
875
|
+
vocabulary: ["UseZodFormReturnProp", "ZodSchemaProp"]
|
|
876
|
+
},
|
|
877
|
+
ZodSchemaProp: {
|
|
878
|
+
group: "form",
|
|
879
|
+
file: "components/form.prop.ts",
|
|
880
|
+
vocabulary: ["ZodSchemaProp"]
|
|
881
|
+
},
|
|
882
|
+
UseZodFormReturnProp: {
|
|
883
|
+
group: "form",
|
|
884
|
+
file: "components/form.prop.ts",
|
|
885
|
+
vocabulary: ["UseZodFormReturnProp"]
|
|
886
|
+
},
|
|
887
|
+
FieldErrorMessageProp: {
|
|
888
|
+
group: "form",
|
|
889
|
+
file: "components/form.prop.ts",
|
|
890
|
+
vocabulary: ["FieldErrorMessageProp"]
|
|
891
|
+
},
|
|
892
|
+
FormFieldControlProp: {
|
|
893
|
+
group: "form",
|
|
894
|
+
file: "components/form.prop.ts",
|
|
895
|
+
vocabulary: ["LabelProp", "RequiredProp", "HelperProp", "ErrorProp"]
|
|
896
|
+
},
|
|
897
|
+
UseZodFormOptionsProp: {
|
|
898
|
+
group: "form",
|
|
899
|
+
file: "components/form.prop.ts",
|
|
900
|
+
vocabulary: ["ZodSchemaProp"]
|
|
901
|
+
},
|
|
902
|
+
// Component-declared prop types (XProps in src/components/**) — registered here so the
|
|
903
|
+
// prop-vocabulary guard governs them too (their fields are mostly Radix/native passthroughs).
|
|
904
|
+
ToggleProp: {
|
|
905
|
+
group: "data-entry",
|
|
906
|
+
file: "components/ui/toggle.tsx",
|
|
907
|
+
vocabulary: ["SizeProp", "ClassNameProp"]
|
|
908
|
+
},
|
|
909
|
+
RatingProp: {
|
|
910
|
+
group: "data-entry",
|
|
911
|
+
file: "components/ui/rating.tsx",
|
|
912
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp"]
|
|
913
|
+
},
|
|
914
|
+
TagInputProp: {
|
|
915
|
+
group: "data-entry",
|
|
916
|
+
file: "components/ui/tag-input.tsx",
|
|
917
|
+
vocabulary: ["ValueProp", "OnValueChangeProp", "PlaceholderProp", "IdProp", "ClassNameProp"]
|
|
918
|
+
},
|
|
919
|
+
PasswordInputProp: {
|
|
920
|
+
group: "data-entry",
|
|
921
|
+
file: "components/ui/password-input.tsx",
|
|
922
|
+
vocabulary: ["ClassNameProp"]
|
|
923
|
+
},
|
|
924
|
+
PasswordStrengthProp: {
|
|
925
|
+
group: "data-entry",
|
|
926
|
+
file: "components/data-entry/password-strength.tsx",
|
|
927
|
+
vocabulary: ["ValueProp", "ClassNameProp"]
|
|
928
|
+
},
|
|
929
|
+
ProgressProp: {
|
|
930
|
+
group: "data-display",
|
|
931
|
+
file: "components/data-display/progress.tsx",
|
|
932
|
+
vocabulary: ["ValueProp", "LabelProp", "ClassNameProp"]
|
|
933
|
+
},
|
|
934
|
+
TimelineProp: {
|
|
935
|
+
group: "data-display",
|
|
936
|
+
file: "components/data-display/timeline.tsx",
|
|
937
|
+
vocabulary: ["ClassNameProp"]
|
|
938
|
+
},
|
|
939
|
+
TreeListProp: {
|
|
940
|
+
group: "data-display",
|
|
941
|
+
file: "components/data-display/tree-list.tsx",
|
|
942
|
+
vocabulary: ["ClassNameProp"]
|
|
943
|
+
},
|
|
944
|
+
CardProp: {
|
|
945
|
+
group: "data-display",
|
|
946
|
+
file: "components/data-display/card.tsx",
|
|
947
|
+
vocabulary: ["ToneProp", "ClassNameProp", "ChildrenProp"]
|
|
948
|
+
},
|
|
949
|
+
CardCoverProp: {
|
|
950
|
+
group: "data-display",
|
|
951
|
+
file: "components/data-display/card.tsx",
|
|
952
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
953
|
+
},
|
|
954
|
+
CardHeaderProp: {
|
|
955
|
+
group: "data-display",
|
|
956
|
+
file: "components/data-display/card.tsx",
|
|
957
|
+
vocabulary: ["TitleProp", "DescriptionProp", "ClassNameProp", "ChildrenProp"]
|
|
958
|
+
},
|
|
959
|
+
CardContentProp: {
|
|
960
|
+
group: "data-display",
|
|
961
|
+
file: "components/data-display/card.tsx",
|
|
962
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
963
|
+
},
|
|
964
|
+
CardFooterProp: {
|
|
965
|
+
group: "data-display",
|
|
966
|
+
file: "components/data-display/card.tsx",
|
|
967
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
968
|
+
},
|
|
969
|
+
StatCardProp: {
|
|
970
|
+
group: "data-display",
|
|
971
|
+
file: "components/data-display/card.tsx",
|
|
972
|
+
vocabulary: ["TitleProp", "ToneProp", "ClassNameProp"]
|
|
973
|
+
},
|
|
974
|
+
ResponsiveGridProp: {
|
|
975
|
+
group: "layout",
|
|
976
|
+
file: "components/layout/responsive-grid.tsx",
|
|
977
|
+
vocabulary: ["GapProp", "ClassNameProp", "ChildrenProp"]
|
|
978
|
+
},
|
|
979
|
+
SplitPaneProp: {
|
|
980
|
+
group: "layout",
|
|
981
|
+
file: "components/layout/split-pane.tsx",
|
|
982
|
+
vocabulary: ["ClassNameProp", "ChildrenProp"]
|
|
983
|
+
}
|
|
984
|
+
};
|
|
985
|
+
const PROP_ALIASES_FORBIDDEN = {
|
|
986
|
+
description: "Use SubtitleProp (pages) or DescriptionProp (dialogs/empty states)",
|
|
987
|
+
actions: "Use ExtraProp (page header) or ActionsProp (toolbars)",
|
|
988
|
+
density: "Disambiguate: PageDensityProp vs TableDensityProp",
|
|
989
|
+
gap: "Use GapProp; document any component-specific subset with a registry reason",
|
|
990
|
+
onClear: "Use OnClearFiltersProp",
|
|
991
|
+
pending: "Use PendingProp",
|
|
992
|
+
loading: "Use PendingProp or DataStateProp (query group)"
|
|
993
|
+
};
|
|
994
|
+
export {
|
|
995
|
+
COMPONENT_PROP_REGISTRY,
|
|
996
|
+
PROP_ALIASES_FORBIDDEN,
|
|
997
|
+
VOCABULARY_REGISTRY
|
|
998
|
+
};
|