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