@ncds/ui-admin 1.8.2 → 1.8.4
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/cjs/assets/scripts/slider.js +26 -18
- package/dist/cjs/src/components/{button → action/button}/Button.js +2 -2
- package/dist/cjs/src/components/{button-group → action/button-group}/ButtonGroup.js +2 -2
- package/dist/cjs/src/components/{badge → feedback-and-status/badge}/utils.js +2 -2
- package/dist/cjs/src/components/{empty-state → feedback-and-status/empty-state}/EmptyState.js +1 -1
- package/dist/cjs/src/components/{tag → feedback-and-status/tag}/Tag.js +2 -2
- package/dist/cjs/src/components/{combo-box → forms-and-input/combo-box}/ComboBox.js +6 -6
- package/dist/cjs/src/components/{date-picker → forms-and-input/date-picker}/DatePicker.js +14 -12
- package/dist/cjs/src/components/{file-input → forms-and-input/file-input}/FileInput.js +3 -3
- package/dist/cjs/src/components/{image-file-input → forms-and-input/image-file-input}/ImageFileInput.js +3 -3
- package/dist/cjs/src/components/{image-file-input → forms-and-input/image-file-input}/components/ImagePreview.js +1 -1
- package/dist/cjs/src/components/{input-base → forms-and-input/input-base}/InputBase.js +3 -3
- package/dist/cjs/src/components/{number-input → forms-and-input/number-input}/NumberInput.js +2 -2
- package/dist/cjs/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/RangeDatePickerWithButtons.js +3 -3
- package/dist/cjs/src/components/{select → forms-and-input/select}/Select.js +1 -1
- package/dist/cjs/src/components/{select-box → forms-and-input/select-box}/SelectBox.js +6 -6
- package/dist/cjs/src/components/{slider → forms-and-input/slider}/Slider.js +1 -1
- package/dist/cjs/src/components/{textarea → forms-and-input/textarea}/Textarea.js +2 -2
- package/dist/cjs/src/components/index.js +200 -167
- package/dist/cjs/src/components/layout/block-container/BlockContainer.js +38 -0
- package/dist/cjs/src/components/layout/block-container/index.js +16 -0
- package/dist/cjs/src/components/layout/block-header/BlockHeader.js +107 -0
- package/dist/cjs/src/components/layout/block-header/SubTitle.js +56 -0
- package/dist/cjs/src/components/layout/block-header/index.js +27 -0
- package/dist/cjs/src/components/layout/page-title/PageTitle.js +95 -0
- package/dist/cjs/src/components/layout/page-title/index.js +16 -0
- package/dist/cjs/src/components/{horizontal-tab → navigation/horizontal-tab}/HorizontalTab.js +1 -1
- package/dist/cjs/src/components/{pagination → navigation/pagination}/NavButton.js +1 -1
- package/dist/cjs/src/components/{vertical-tab → navigation/vertical-tab}/VerticalTab.js +2 -2
- package/dist/cjs/src/components/overlays/dropdown/Dropdown.js +453 -0
- package/dist/cjs/src/components/overlays/dropdown/__tests__/utils.test.js +225 -0
- package/dist/cjs/src/components/overlays/dropdown/utils.js +96 -0
- package/dist/cjs/src/components/{modal → overlays/modal}/Modal.js +2 -2
- package/dist/cjs/src/components/{notification → overlays/notification}/FloatingNotification.js +5 -5
- package/dist/cjs/src/components/{notification → overlays/notification}/FullWidthNotification.js +1 -1
- package/dist/cjs/src/components/{notification → overlays/notification}/MessageNotification.js +3 -3
- package/dist/cjs/src/components/{tooltip → overlays/tooltip}/Tooltip.js +1 -1
- package/dist/cjs/src/components/select-dropdown/SelectDropdown.js +1 -1
- package/dist/cjs/src/components/tab/TabButton.js +1 -1
- package/dist/cjs/vitest.config.js +1 -1
- package/dist/esm/assets/scripts/slider.js +26 -18
- package/dist/esm/src/components/{button → action/button}/Button.js +2 -2
- package/dist/esm/src/components/{button-group → action/button-group}/ButtonGroup.js +2 -2
- package/dist/esm/src/components/{badge → feedback-and-status/badge}/utils.js +2 -2
- package/dist/esm/src/components/{empty-state → feedback-and-status/empty-state}/EmptyState.js +1 -1
- package/dist/esm/src/components/{tag → feedback-and-status/tag}/Tag.js +2 -2
- package/dist/esm/src/components/{combo-box → forms-and-input/combo-box}/ComboBox.js +6 -6
- package/dist/esm/src/components/{date-picker → forms-and-input/date-picker}/DatePicker.js +14 -12
- package/dist/esm/src/components/{file-input → forms-and-input/file-input}/FileInput.js +3 -3
- package/dist/esm/src/components/{image-file-input → forms-and-input/image-file-input}/ImageFileInput.js +3 -3
- package/dist/esm/src/components/{image-file-input → forms-and-input/image-file-input}/components/ImagePreview.js +1 -1
- package/dist/esm/src/components/{input-base → forms-and-input/input-base}/InputBase.js +3 -3
- package/dist/esm/src/components/{number-input → forms-and-input/number-input}/NumberInput.js +2 -2
- package/dist/esm/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/RangeDatePickerWithButtons.js +3 -3
- package/dist/esm/src/components/{select → forms-and-input/select}/Select.js +1 -1
- package/dist/esm/src/components/{select-box → forms-and-input/select-box}/SelectBox.js +6 -6
- package/dist/esm/src/components/{slider → forms-and-input/slider}/Slider.js +1 -1
- package/dist/esm/src/components/{textarea → forms-and-input/textarea}/Textarea.js +2 -2
- package/dist/esm/src/components/index.js +54 -42
- package/dist/esm/src/components/layout/block-container/BlockContainer.js +31 -0
- package/dist/esm/src/components/layout/block-container/index.js +1 -0
- package/dist/esm/src/components/layout/block-header/BlockHeader.js +100 -0
- package/dist/esm/src/components/layout/block-header/SubTitle.js +49 -0
- package/dist/esm/src/components/layout/block-header/index.js +2 -0
- package/dist/esm/src/components/layout/page-title/PageTitle.js +88 -0
- package/dist/esm/src/components/layout/page-title/index.js +1 -0
- package/dist/esm/src/components/{horizontal-tab → navigation/horizontal-tab}/HorizontalTab.js +1 -1
- package/dist/esm/src/components/{pagination → navigation/pagination}/NavButton.js +1 -1
- package/dist/esm/src/components/{vertical-tab → navigation/vertical-tab}/VerticalTab.js +2 -2
- package/dist/esm/src/components/overlays/dropdown/Dropdown.js +446 -0
- package/dist/esm/src/components/overlays/dropdown/__tests__/utils.test.js +223 -0
- package/dist/esm/src/components/overlays/dropdown/utils.js +86 -0
- package/dist/esm/src/components/{modal → overlays/modal}/Modal.js +2 -2
- package/dist/esm/src/components/{notification → overlays/notification}/FloatingNotification.js +5 -5
- package/dist/esm/src/components/{notification → overlays/notification}/FullWidthNotification.js +1 -1
- package/dist/esm/src/components/{notification → overlays/notification}/MessageNotification.js +3 -3
- package/dist/esm/src/components/{tooltip → overlays/tooltip}/Tooltip.js +1 -1
- package/dist/esm/src/components/select-dropdown/SelectDropdown.js +1 -1
- package/dist/esm/src/components/tab/TabButton.js +1 -1
- package/dist/esm/vitest.config.js +1 -1
- package/dist/temp/assets/scripts/slider.js +26 -18
- package/dist/{types/src/components → temp/src/components/action}/button/Button.d.ts +3 -3
- package/dist/temp/src/components/{button → action/button}/Button.js +2 -2
- package/dist/{types/src/components → temp/src/components/action}/button/ButtonCloseX.d.ts +1 -1
- package/dist/{types/src/components → temp/src/components/action}/button/ButtonStepper.d.ts +1 -1
- package/dist/{types/src/components → temp/src/components/action}/button-group/ButtonGroup.d.ts +2 -2
- package/dist/temp/src/components/{button-group → action/button-group}/ButtonGroup.js +2 -2
- package/dist/temp/src/components/{badge → feedback-and-status/badge}/Badge.d.ts +3 -3
- package/dist/temp/src/components/{badge → feedback-and-status/badge}/utils.d.ts +1 -1
- package/dist/temp/src/components/{badge → feedback-and-status/badge}/utils.js +2 -2
- package/dist/temp/src/components/{badge-group → feedback-and-status/badge-group}/BadgeGroup.d.ts +3 -3
- package/dist/{types/src/components → temp/src/components/feedback-and-status}/empty-state/EmptyState.d.ts +1 -1
- package/dist/temp/src/components/{empty-state → feedback-and-status/empty-state}/EmptyState.js +1 -1
- package/dist/temp/src/components/{tag → feedback-and-status/tag}/Tag.d.ts +2 -2
- package/dist/temp/src/components/{tag → feedback-and-status/tag}/Tag.js +2 -2
- package/dist/{types/src/components → temp/src/components/forms-and-input}/checkbox/CheckboxInput.d.ts +1 -1
- package/dist/temp/src/components/{combo-box → forms-and-input/combo-box}/ComboBox.d.ts +2 -2
- package/dist/temp/src/components/{combo-box → forms-and-input/combo-box}/ComboBox.js +6 -6
- package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/CustomInput.d.ts +1 -1
- package/dist/{types/src/components → temp/src/components/forms-and-input}/date-picker/DatePicker.d.ts +1 -1
- package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/DatePicker.js +14 -13
- package/dist/temp/src/components/{file-input → forms-and-input/file-input}/FileInput.js +3 -3
- package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/ImageFileInput.js +3 -3
- package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/components/ImagePreview.js +1 -1
- package/dist/temp/src/components/{input-base → forms-and-input/input-base}/InputBase.d.ts +3 -3
- package/dist/temp/src/components/{input-base → forms-and-input/input-base}/InputBase.js +3 -3
- package/dist/temp/src/components/{number-input → forms-and-input/number-input}/NumberInput.js +2 -2
- package/dist/temp/src/components/{radio → forms-and-input/radio}/RadioInput.d.ts +1 -1
- package/dist/temp/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/RangeDatePickerWithButtons.d.ts +1 -1
- package/dist/temp/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/RangeDatePickerWithButtons.js +3 -3
- package/dist/temp/src/components/{select → forms-and-input/select}/Select.d.ts +2 -2
- package/dist/temp/src/components/{select → forms-and-input/select}/Select.js +1 -1
- package/dist/temp/src/components/{select-box → forms-and-input/select-box}/SelectBox.d.ts +2 -2
- package/dist/temp/src/components/{select-box → forms-and-input/select-box}/SelectBox.js +6 -6
- package/dist/temp/src/components/{slider → forms-and-input/slider}/Slider.d.ts +1 -1
- package/dist/temp/src/components/{slider → forms-and-input/slider}/Slider.js +1 -1
- package/dist/{types/src/components → temp/src/components/forms-and-input}/switch/Switch.d.ts +1 -1
- package/dist/{types/src/components → temp/src/components/forms-and-input}/textarea/Textarea.d.ts +1 -1
- package/dist/temp/src/components/{textarea → forms-and-input/textarea}/Textarea.js +2 -2
- package/dist/temp/src/components/{dot → image-and-icons/dot}/Dot.d.ts +2 -2
- package/dist/temp/src/components/{featured-icon → image-and-icons/featured-icon}/FeaturedIcon.d.ts +1 -1
- package/dist/temp/src/components/index.d.ts +44 -41
- package/dist/temp/src/components/index.js +53 -41
- package/dist/temp/src/components/layout/block-container/BlockContainer.d.ts +19 -0
- package/dist/temp/src/components/layout/block-container/BlockContainer.js +11 -0
- package/dist/temp/src/components/layout/block-container/index.d.ts +1 -0
- package/dist/temp/src/components/layout/block-container/index.js +1 -0
- package/dist/temp/src/components/layout/block-header/BlockHeader.d.ts +23 -0
- package/dist/temp/src/components/layout/block-header/BlockHeader.js +21 -0
- package/dist/temp/src/components/layout/block-header/SubTitle.d.ts +19 -0
- package/dist/temp/src/components/layout/block-header/SubTitle.js +8 -0
- package/dist/temp/src/components/layout/block-header/index.d.ts +2 -0
- package/dist/temp/src/components/layout/block-header/index.js +2 -0
- package/dist/temp/src/components/layout/page-title/PageTitle.d.ts +22 -0
- package/dist/temp/src/components/layout/page-title/PageTitle.js +19 -0
- package/dist/temp/src/components/layout/page-title/index.d.ts +1 -0
- package/dist/temp/src/components/layout/page-title/index.js +1 -0
- package/dist/temp/src/components/{horizontal-tab → navigation/horizontal-tab}/HorizontalTab.d.ts +1 -1
- package/dist/temp/src/components/{horizontal-tab → navigation/horizontal-tab}/HorizontalTab.js +1 -1
- package/dist/temp/src/components/{pagination → navigation/pagination}/NavButton.d.ts +1 -1
- package/dist/temp/src/components/{pagination → navigation/pagination}/NavButton.js +1 -1
- package/dist/temp/src/components/{vertical-tab → navigation/vertical-tab}/VerticalTab.d.ts +1 -1
- package/dist/temp/src/components/{vertical-tab → navigation/vertical-tab}/VerticalTab.js +2 -2
- package/dist/temp/src/components/{dropdown → overlays/dropdown}/Dropdown.d.ts +19 -6
- package/dist/temp/src/components/overlays/dropdown/Dropdown.js +273 -0
- package/dist/temp/src/components/overlays/dropdown/__tests__/utils.test.d.ts +1 -0
- package/dist/temp/src/components/overlays/dropdown/__tests__/utils.test.js +122 -0
- package/dist/temp/src/components/overlays/dropdown/utils.d.ts +32 -0
- package/dist/temp/src/components/overlays/dropdown/utils.js +89 -0
- package/dist/{types/src/components → temp/src/components/overlays}/modal/Modal.d.ts +2 -2
- package/dist/temp/src/components/{modal → overlays/modal}/Modal.js +2 -2
- package/dist/temp/src/components/{notification → overlays/notification}/FloatingNotification.js +5 -5
- package/dist/temp/src/components/{notification → overlays/notification}/FullWidthNotification.js +1 -1
- package/dist/temp/src/components/{notification → overlays/notification}/MessageNotification.d.ts +1 -1
- package/dist/temp/src/components/{notification → overlays/notification}/MessageNotification.js +3 -3
- package/dist/temp/src/components/{notification → overlays/notification}/Notification.d.ts +3 -3
- package/dist/temp/src/components/{tooltip → overlays/tooltip}/Tooltip.js +1 -1
- package/dist/temp/src/components/select-dropdown/SelectDropdown.js +1 -1
- package/dist/temp/src/components/tab/TabButton.d.ts +1 -1
- package/dist/temp/src/components/tab/TabButton.js +1 -1
- package/dist/temp/src/types/component-meta.d.ts +2 -2
- package/dist/temp/vitest.config.js +5 -1
- package/dist/{temp/src/components → types/src/components/action}/button/Button.d.ts +3 -3
- package/dist/{temp/src/components → types/src/components/action}/button/ButtonCloseX.d.ts +1 -1
- package/dist/{temp/src/components → types/src/components/action}/button/ButtonStepper.d.ts +1 -1
- package/dist/{temp/src/components → types/src/components/action}/button-group/ButtonGroup.d.ts +2 -2
- package/dist/types/src/components/{badge → feedback-and-status/badge}/Badge.d.ts +3 -3
- package/dist/types/src/components/{badge → feedback-and-status/badge}/utils.d.ts +1 -1
- package/dist/types/src/components/{badge-group → feedback-and-status/badge-group}/BadgeGroup.d.ts +3 -3
- package/dist/{temp/src/components → types/src/components/feedback-and-status}/empty-state/EmptyState.d.ts +1 -1
- package/dist/types/src/components/{tag → feedback-and-status/tag}/Tag.d.ts +2 -2
- package/dist/{temp/src/components → types/src/components/forms-and-input}/checkbox/CheckboxInput.d.ts +1 -1
- package/dist/types/src/components/{combo-box → forms-and-input/combo-box}/ComboBox.d.ts +2 -2
- package/dist/types/src/components/{date-picker → forms-and-input/date-picker}/CustomInput.d.ts +1 -1
- package/dist/{temp/src/components → types/src/components/forms-and-input}/date-picker/DatePicker.d.ts +1 -1
- package/dist/types/src/components/{input-base → forms-and-input/input-base}/InputBase.d.ts +3 -3
- package/dist/types/src/components/{radio → forms-and-input/radio}/RadioInput.d.ts +1 -1
- package/dist/types/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/RangeDatePickerWithButtons.d.ts +1 -1
- package/dist/types/src/components/{select → forms-and-input/select}/Select.d.ts +2 -2
- package/dist/types/src/components/{select-box → forms-and-input/select-box}/SelectBox.d.ts +2 -2
- package/dist/types/src/components/{slider → forms-and-input/slider}/Slider.d.ts +1 -1
- package/dist/{temp/src/components → types/src/components/forms-and-input}/switch/Switch.d.ts +1 -1
- package/dist/{temp/src/components → types/src/components/forms-and-input}/textarea/Textarea.d.ts +1 -1
- package/dist/types/src/components/{dot → image-and-icons/dot}/Dot.d.ts +2 -2
- package/dist/types/src/components/{featured-icon → image-and-icons/featured-icon}/FeaturedIcon.d.ts +1 -1
- package/dist/types/src/components/index.d.ts +44 -41
- package/dist/types/src/components/layout/block-container/BlockContainer.d.ts +19 -0
- package/dist/types/src/components/layout/block-container/index.d.ts +1 -0
- package/dist/types/src/components/layout/block-header/BlockHeader.d.ts +23 -0
- package/dist/types/src/components/layout/block-header/SubTitle.d.ts +19 -0
- package/dist/types/src/components/layout/block-header/index.d.ts +2 -0
- package/dist/types/src/components/layout/page-title/PageTitle.d.ts +22 -0
- package/dist/types/src/components/layout/page-title/index.d.ts +1 -0
- package/dist/types/src/components/{horizontal-tab → navigation/horizontal-tab}/HorizontalTab.d.ts +1 -1
- package/dist/types/src/components/{pagination → navigation/pagination}/NavButton.d.ts +1 -1
- package/dist/types/src/components/{vertical-tab → navigation/vertical-tab}/VerticalTab.d.ts +1 -1
- package/dist/types/src/components/{dropdown → overlays/dropdown}/Dropdown.d.ts +19 -6
- package/dist/types/src/components/overlays/dropdown/__tests__/utils.test.d.ts +1 -0
- package/dist/types/src/components/overlays/dropdown/utils.d.ts +32 -0
- package/dist/{temp/src/components → types/src/components/overlays}/modal/Modal.d.ts +2 -2
- package/dist/types/src/components/{notification → overlays/notification}/MessageNotification.d.ts +1 -1
- package/dist/types/src/components/{notification → overlays/notification}/Notification.d.ts +3 -3
- package/dist/types/src/components/tab/TabButton.d.ts +1 -1
- package/dist/types/src/types/component-meta.d.ts +2 -2
- package/dist/ui-admin/assets/styles/style.css +540 -131
- package/package.json +12 -8
- package/dist/cjs/src/components/dropdown/Dropdown.js +0 -164
- package/dist/esm/src/components/dropdown/Dropdown.js +0 -157
- package/dist/temp/src/components/dropdown/Dropdown.js +0 -74
- /package/dist/cjs/src/components/{button → action/button}/ButtonCloseX.js +0 -0
- /package/dist/cjs/src/components/{button → action/button}/ButtonStepper.js +0 -0
- /package/dist/cjs/src/components/{button → action/button}/index.js +0 -0
- /package/dist/cjs/src/components/{button-group → action/button-group}/index.js +0 -0
- /package/dist/cjs/src/components/{data-grid → data-display/data-grid}/DataGrid.js +0 -0
- /package/dist/cjs/src/components/{data-grid → data-display/data-grid}/DataGrid.types.js +0 -0
- /package/dist/cjs/src/components/{data-grid → data-display/data-grid}/index.js +0 -0
- /package/dist/cjs/src/components/{table → data-display/table}/Table.js +0 -0
- /package/dist/cjs/src/components/{table → data-display/table}/index.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → data-display/table}/types.js +0 -0
- /package/dist/cjs/src/components/{badge → feedback-and-status/badge}/Badge.js +0 -0
- /package/dist/cjs/src/components/{badge → feedback-and-status/badge}/index.js +0 -0
- /package/dist/cjs/src/components/{badge-group → feedback-and-status/badge-group}/BadgeGroup.js +0 -0
- /package/dist/cjs/src/components/{badge-group → feedback-and-status/badge-group}/index.js +0 -0
- /package/dist/cjs/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/CarouselArrow.js +0 -0
- /package/dist/cjs/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/index.js +0 -0
- /package/dist/cjs/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/CarouselNumberGroup.js +0 -0
- /package/dist/cjs/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/index.js +0 -0
- /package/dist/cjs/src/components/{empty-state → feedback-and-status/empty-state}/index.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/ProgressBar.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentBar.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentLabels.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/components/index.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/index.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/useProgressBar.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/index.js +0 -0
- /package/dist/cjs/src/components/{table → feedback-and-status/progress-bar}/types.js +0 -0
- /package/dist/cjs/src/components/{progress-bar → feedback-and-status/progress-bar}/utils.js +0 -0
- /package/dist/cjs/src/components/{progress-circle → feedback-and-status/progress-circle}/ProgressCircle.js +0 -0
- /package/dist/cjs/src/components/{progress-circle → feedback-and-status/progress-circle}/index.js +0 -0
- /package/dist/cjs/src/components/{spinner → feedback-and-status/spinner}/Spinner.js +0 -0
- /package/dist/cjs/src/components/{spinner → feedback-and-status/spinner}/index.js +0 -0
- /package/dist/cjs/src/components/{tag → feedback-and-status/tag}/index.js +0 -0
- /package/dist/cjs/src/components/{checkbox → forms-and-input/checkbox}/Checkbox.js +0 -0
- /package/dist/cjs/src/components/{checkbox → forms-and-input/checkbox}/CheckboxInput.js +0 -0
- /package/dist/cjs/src/components/{checkbox → forms-and-input/checkbox}/index.js +0 -0
- /package/dist/cjs/src/components/{combo-box → forms-and-input/combo-box}/index.js +0 -0
- /package/dist/cjs/src/components/{date-picker → forms-and-input/date-picker}/CustomInput.js +0 -0
- /package/dist/cjs/src/components/{date-picker → forms-and-input/date-picker}/index.js +0 -0
- /package/dist/cjs/src/components/{date-picker → forms-and-input/date-picker}/utils.js +0 -0
- /package/dist/cjs/src/components/{file-input → forms-and-input/file-input}/index.js +0 -0
- /package/dist/cjs/src/components/{image-file-input → forms-and-input/image-file-input}/components/index.js +0 -0
- /package/dist/cjs/src/components/{image-file-input → forms-and-input/image-file-input}/index.js +0 -0
- /package/dist/cjs/src/components/{input-base → forms-and-input/input-base}/index.js +0 -0
- /package/dist/cjs/src/components/{number-input → forms-and-input/number-input}/index.js +0 -0
- /package/dist/cjs/src/components/{password-input → forms-and-input/password-input}/PasswordInput.js +0 -0
- /package/dist/cjs/src/components/{password-input → forms-and-input/password-input}/index.js +0 -0
- /package/dist/cjs/src/components/{radio → forms-and-input/radio}/Radio.js +0 -0
- /package/dist/cjs/src/components/{radio → forms-and-input/radio}/RadioInput.js +0 -0
- /package/dist/cjs/src/components/{radio → forms-and-input/radio}/index.js +0 -0
- /package/dist/cjs/src/components/{range-date-picker → forms-and-input/range-date-picker}/RangeDatePicker.js +0 -0
- /package/dist/cjs/src/components/{range-date-picker → forms-and-input/range-date-picker}/index.js +0 -0
- /package/dist/cjs/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/index.js +0 -0
- /package/dist/cjs/src/components/{select → forms-and-input/select}/index.js +0 -0
- /package/dist/cjs/src/components/{select-box → forms-and-input/select-box}/index.js +0 -0
- /package/dist/cjs/src/components/{slider → forms-and-input/slider}/index.js +0 -0
- /package/dist/cjs/src/components/{switch → forms-and-input/switch}/Switch.js +0 -0
- /package/dist/cjs/src/components/{switch → forms-and-input/switch}/index.js +0 -0
- /package/dist/cjs/src/components/{textarea → forms-and-input/textarea}/index.js +0 -0
- /package/dist/cjs/src/components/{toggle → forms-and-input/toggle}/Toggle.js +0 -0
- /package/dist/cjs/src/components/{toggle → forms-and-input/toggle}/index.js +0 -0
- /package/dist/cjs/src/components/{dot → image-and-icons/dot}/Dot.js +0 -0
- /package/dist/cjs/src/components/{dot → image-and-icons/dot}/index.js +0 -0
- /package/dist/cjs/src/components/{featured-icon → image-and-icons/featured-icon}/FeaturedIcon.js +0 -0
- /package/dist/cjs/src/components/{featured-icon → image-and-icons/featured-icon}/index.js +0 -0
- /package/dist/cjs/src/components/{divider → layout/divider}/Divider.js +0 -0
- /package/dist/cjs/src/components/{divider → layout/divider}/index.js +0 -0
- /package/dist/cjs/src/components/{bread-crumb → navigation/bread-crumb}/BreadCrumb.js +0 -0
- /package/dist/cjs/src/components/{bread-crumb → navigation/bread-crumb}/index.js +0 -0
- /package/dist/cjs/src/components/{horizontal-tab → navigation/horizontal-tab}/index.js +0 -0
- /package/dist/cjs/src/components/{pagination → navigation/pagination}/Pagination.js +0 -0
- /package/dist/cjs/src/components/{pagination → navigation/pagination}/index.js +0 -0
- /package/dist/cjs/src/components/{vertical-tab → navigation/vertical-tab}/index.js +0 -0
- /package/dist/cjs/src/components/{dropdown → overlays/dropdown}/index.js +0 -0
- /package/dist/cjs/src/components/{modal → overlays/modal}/index.js +0 -0
- /package/dist/cjs/src/components/{notification → overlays/notification}/Notification.js +0 -0
- /package/dist/cjs/src/components/{notification → overlays/notification}/index.js +0 -0
- /package/dist/cjs/src/components/{tooltip → overlays/tooltip}/index.js +0 -0
- /package/dist/esm/src/components/{button → action/button}/ButtonCloseX.js +0 -0
- /package/dist/esm/src/components/{button → action/button}/ButtonStepper.js +0 -0
- /package/dist/esm/src/components/{button → action/button}/index.js +0 -0
- /package/dist/esm/src/components/{button-group → action/button-group}/index.js +0 -0
- /package/dist/esm/src/components/{data-grid → data-display/data-grid}/DataGrid.js +0 -0
- /package/dist/esm/src/components/{data-grid → data-display/data-grid}/DataGrid.types.js +0 -0
- /package/dist/esm/src/components/{data-grid → data-display/data-grid}/index.js +0 -0
- /package/dist/esm/src/components/{table → data-display/table}/Table.js +0 -0
- /package/dist/esm/src/components/{table → data-display/table}/index.js +0 -0
- /package/dist/esm/src/components/{progress-bar → data-display/table}/types.js +0 -0
- /package/dist/esm/src/components/{badge → feedback-and-status/badge}/Badge.js +0 -0
- /package/dist/esm/src/components/{badge → feedback-and-status/badge}/index.js +0 -0
- /package/dist/esm/src/components/{badge-group → feedback-and-status/badge-group}/BadgeGroup.js +0 -0
- /package/dist/esm/src/components/{badge-group → feedback-and-status/badge-group}/index.js +0 -0
- /package/dist/esm/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/CarouselArrow.js +0 -0
- /package/dist/esm/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/index.js +0 -0
- /package/dist/esm/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/CarouselNumberGroup.js +0 -0
- /package/dist/esm/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/index.js +0 -0
- /package/dist/esm/src/components/{empty-state → feedback-and-status/empty-state}/index.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/ProgressBar.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentBar.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentLabels.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/components/index.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/index.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/useProgressBar.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/index.js +0 -0
- /package/dist/esm/src/components/{table → feedback-and-status/progress-bar}/types.js +0 -0
- /package/dist/esm/src/components/{progress-bar → feedback-and-status/progress-bar}/utils.js +0 -0
- /package/dist/esm/src/components/{progress-circle → feedback-and-status/progress-circle}/ProgressCircle.js +0 -0
- /package/dist/esm/src/components/{progress-circle → feedback-and-status/progress-circle}/index.js +0 -0
- /package/dist/esm/src/components/{spinner → feedback-and-status/spinner}/Spinner.js +0 -0
- /package/dist/esm/src/components/{spinner → feedback-and-status/spinner}/index.js +0 -0
- /package/dist/esm/src/components/{tag → feedback-and-status/tag}/index.js +0 -0
- /package/dist/esm/src/components/{checkbox → forms-and-input/checkbox}/Checkbox.js +0 -0
- /package/dist/esm/src/components/{checkbox → forms-and-input/checkbox}/CheckboxInput.js +0 -0
- /package/dist/esm/src/components/{checkbox → forms-and-input/checkbox}/index.js +0 -0
- /package/dist/esm/src/components/{combo-box → forms-and-input/combo-box}/index.js +0 -0
- /package/dist/esm/src/components/{date-picker → forms-and-input/date-picker}/CustomInput.js +0 -0
- /package/dist/esm/src/components/{date-picker → forms-and-input/date-picker}/index.js +0 -0
- /package/dist/esm/src/components/{date-picker → forms-and-input/date-picker}/utils.js +0 -0
- /package/dist/esm/src/components/{file-input → forms-and-input/file-input}/index.js +0 -0
- /package/dist/esm/src/components/{image-file-input → forms-and-input/image-file-input}/components/index.js +0 -0
- /package/dist/esm/src/components/{image-file-input → forms-and-input/image-file-input}/index.js +0 -0
- /package/dist/esm/src/components/{input-base → forms-and-input/input-base}/index.js +0 -0
- /package/dist/esm/src/components/{number-input → forms-and-input/number-input}/index.js +0 -0
- /package/dist/esm/src/components/{password-input → forms-and-input/password-input}/PasswordInput.js +0 -0
- /package/dist/esm/src/components/{password-input → forms-and-input/password-input}/index.js +0 -0
- /package/dist/esm/src/components/{radio → forms-and-input/radio}/Radio.js +0 -0
- /package/dist/esm/src/components/{radio → forms-and-input/radio}/RadioInput.js +0 -0
- /package/dist/esm/src/components/{radio → forms-and-input/radio}/index.js +0 -0
- /package/dist/esm/src/components/{range-date-picker → forms-and-input/range-date-picker}/RangeDatePicker.js +0 -0
- /package/dist/esm/src/components/{range-date-picker → forms-and-input/range-date-picker}/index.js +0 -0
- /package/dist/esm/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/index.js +0 -0
- /package/dist/esm/src/components/{select → forms-and-input/select}/index.js +0 -0
- /package/dist/esm/src/components/{select-box → forms-and-input/select-box}/index.js +0 -0
- /package/dist/esm/src/components/{slider → forms-and-input/slider}/index.js +0 -0
- /package/dist/esm/src/components/{switch → forms-and-input/switch}/Switch.js +0 -0
- /package/dist/esm/src/components/{switch → forms-and-input/switch}/index.js +0 -0
- /package/dist/esm/src/components/{textarea → forms-and-input/textarea}/index.js +0 -0
- /package/dist/esm/src/components/{toggle → forms-and-input/toggle}/Toggle.js +0 -0
- /package/dist/esm/src/components/{toggle → forms-and-input/toggle}/index.js +0 -0
- /package/dist/esm/src/components/{dot → image-and-icons/dot}/Dot.js +0 -0
- /package/dist/esm/src/components/{dot → image-and-icons/dot}/index.js +0 -0
- /package/dist/esm/src/components/{featured-icon → image-and-icons/featured-icon}/FeaturedIcon.js +0 -0
- /package/dist/esm/src/components/{featured-icon → image-and-icons/featured-icon}/index.js +0 -0
- /package/dist/esm/src/components/{divider → layout/divider}/Divider.js +0 -0
- /package/dist/esm/src/components/{divider → layout/divider}/index.js +0 -0
- /package/dist/esm/src/components/{bread-crumb → navigation/bread-crumb}/BreadCrumb.js +0 -0
- /package/dist/esm/src/components/{bread-crumb → navigation/bread-crumb}/index.js +0 -0
- /package/dist/esm/src/components/{horizontal-tab → navigation/horizontal-tab}/index.js +0 -0
- /package/dist/esm/src/components/{pagination → navigation/pagination}/Pagination.js +0 -0
- /package/dist/esm/src/components/{pagination → navigation/pagination}/index.js +0 -0
- /package/dist/esm/src/components/{vertical-tab → navigation/vertical-tab}/index.js +0 -0
- /package/dist/esm/src/components/{dropdown → overlays/dropdown}/index.js +0 -0
- /package/dist/esm/src/components/{modal → overlays/modal}/index.js +0 -0
- /package/dist/esm/src/components/{notification → overlays/notification}/Notification.js +0 -0
- /package/dist/esm/src/components/{notification → overlays/notification}/index.js +0 -0
- /package/dist/esm/src/components/{tooltip → overlays/tooltip}/index.js +0 -0
- /package/dist/temp/src/components/{button → action/button}/ButtonCloseX.js +0 -0
- /package/dist/temp/src/components/{button → action/button}/ButtonStepper.js +0 -0
- /package/dist/temp/src/components/{button → action/button}/index.d.ts +0 -0
- /package/dist/temp/src/components/{button → action/button}/index.js +0 -0
- /package/dist/temp/src/components/{button-group → action/button-group}/index.d.ts +0 -0
- /package/dist/temp/src/components/{button-group → action/button-group}/index.js +0 -0
- /package/dist/temp/src/components/{data-grid → data-display/data-grid}/DataGrid.d.ts +0 -0
- /package/dist/temp/src/components/{data-grid → data-display/data-grid}/DataGrid.js +0 -0
- /package/dist/temp/src/components/{data-grid → data-display/data-grid}/DataGrid.types.d.ts +0 -0
- /package/dist/temp/src/components/{data-grid → data-display/data-grid}/DataGrid.types.js +0 -0
- /package/dist/temp/src/components/{data-grid → data-display/data-grid}/index.d.ts +0 -0
- /package/dist/temp/src/components/{data-grid → data-display/data-grid}/index.js +0 -0
- /package/dist/temp/src/components/{table → data-display/table}/Table.d.ts +0 -0
- /package/dist/temp/src/components/{table → data-display/table}/Table.js +0 -0
- /package/dist/temp/src/components/{table → data-display/table}/index.d.ts +0 -0
- /package/dist/temp/src/components/{table → data-display/table}/index.js +0 -0
- /package/dist/temp/src/components/{table → data-display/table}/types.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → data-display/table}/types.js +0 -0
- /package/dist/temp/src/components/{badge → feedback-and-status/badge}/Badge.js +0 -0
- /package/dist/temp/src/components/{badge → feedback-and-status/badge}/index.d.ts +0 -0
- /package/dist/temp/src/components/{badge → feedback-and-status/badge}/index.js +0 -0
- /package/dist/temp/src/components/{badge-group → feedback-and-status/badge-group}/BadgeGroup.js +0 -0
- /package/dist/temp/src/components/{badge-group → feedback-and-status/badge-group}/index.d.ts +0 -0
- /package/dist/temp/src/components/{badge-group → feedback-and-status/badge-group}/index.js +0 -0
- /package/dist/temp/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/CarouselArrow.d.ts +0 -0
- /package/dist/temp/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/CarouselArrow.js +0 -0
- /package/dist/temp/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/index.d.ts +0 -0
- /package/dist/temp/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/index.js +0 -0
- /package/dist/temp/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/CarouselNumberGroup.d.ts +0 -0
- /package/dist/temp/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/CarouselNumberGroup.js +0 -0
- /package/dist/temp/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/index.d.ts +0 -0
- /package/dist/temp/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/index.js +0 -0
- /package/dist/temp/src/components/{empty-state → feedback-and-status/empty-state}/index.d.ts +0 -0
- /package/dist/temp/src/components/{empty-state → feedback-and-status/empty-state}/index.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/ProgressBar.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/ProgressBar.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentBar.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentBar.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentLabels.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentLabels.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/components/index.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/components/index.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/index.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/index.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/useProgressBar.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/useProgressBar.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/index.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/index.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/types.d.ts +0 -0
- /package/dist/temp/src/components/{table → feedback-and-status/progress-bar}/types.js +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/utils.d.ts +0 -0
- /package/dist/temp/src/components/{progress-bar → feedback-and-status/progress-bar}/utils.js +0 -0
- /package/dist/temp/src/components/{progress-circle → feedback-and-status/progress-circle}/ProgressCircle.d.ts +0 -0
- /package/dist/temp/src/components/{progress-circle → feedback-and-status/progress-circle}/ProgressCircle.js +0 -0
- /package/dist/temp/src/components/{progress-circle → feedback-and-status/progress-circle}/index.d.ts +0 -0
- /package/dist/temp/src/components/{progress-circle → feedback-and-status/progress-circle}/index.js +0 -0
- /package/dist/temp/src/components/{spinner → feedback-and-status/spinner}/Spinner.d.ts +0 -0
- /package/dist/temp/src/components/{spinner → feedback-and-status/spinner}/Spinner.js +0 -0
- /package/dist/temp/src/components/{spinner → feedback-and-status/spinner}/index.d.ts +0 -0
- /package/dist/temp/src/components/{spinner → feedback-and-status/spinner}/index.js +0 -0
- /package/dist/temp/src/components/{tag → feedback-and-status/tag}/index.d.ts +0 -0
- /package/dist/temp/src/components/{tag → feedback-and-status/tag}/index.js +0 -0
- /package/dist/temp/src/components/{checkbox → forms-and-input/checkbox}/Checkbox.d.ts +0 -0
- /package/dist/temp/src/components/{checkbox → forms-and-input/checkbox}/Checkbox.js +0 -0
- /package/dist/temp/src/components/{checkbox → forms-and-input/checkbox}/CheckboxInput.js +0 -0
- /package/dist/temp/src/components/{checkbox → forms-and-input/checkbox}/index.d.ts +0 -0
- /package/dist/temp/src/components/{checkbox → forms-and-input/checkbox}/index.js +0 -0
- /package/dist/temp/src/components/{combo-box → forms-and-input/combo-box}/index.d.ts +0 -0
- /package/dist/temp/src/components/{combo-box → forms-and-input/combo-box}/index.js +0 -0
- /package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/CustomInput.js +0 -0
- /package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/index.d.ts +0 -0
- /package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/index.js +0 -0
- /package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/utils.d.ts +0 -0
- /package/dist/temp/src/components/{date-picker → forms-and-input/date-picker}/utils.js +0 -0
- /package/dist/temp/src/components/{file-input → forms-and-input/file-input}/FileInput.d.ts +0 -0
- /package/dist/temp/src/components/{file-input → forms-and-input/file-input}/index.d.ts +0 -0
- /package/dist/temp/src/components/{file-input → forms-and-input/file-input}/index.js +0 -0
- /package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/ImageFileInput.d.ts +0 -0
- /package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/components/ImagePreview.d.ts +0 -0
- /package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/components/index.d.ts +0 -0
- /package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/components/index.js +0 -0
- /package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/index.d.ts +0 -0
- /package/dist/temp/src/components/{image-file-input → forms-and-input/image-file-input}/index.js +0 -0
- /package/dist/temp/src/components/{input-base → forms-and-input/input-base}/index.d.ts +0 -0
- /package/dist/temp/src/components/{input-base → forms-and-input/input-base}/index.js +0 -0
- /package/dist/temp/src/components/{number-input → forms-and-input/number-input}/NumberInput.d.ts +0 -0
- /package/dist/temp/src/components/{number-input → forms-and-input/number-input}/index.d.ts +0 -0
- /package/dist/temp/src/components/{number-input → forms-and-input/number-input}/index.js +0 -0
- /package/dist/temp/src/components/{password-input → forms-and-input/password-input}/PasswordInput.d.ts +0 -0
- /package/dist/temp/src/components/{password-input → forms-and-input/password-input}/PasswordInput.js +0 -0
- /package/dist/temp/src/components/{password-input → forms-and-input/password-input}/index.d.ts +0 -0
- /package/dist/temp/src/components/{password-input → forms-and-input/password-input}/index.js +0 -0
- /package/dist/temp/src/components/{radio → forms-and-input/radio}/Radio.d.ts +0 -0
- /package/dist/temp/src/components/{radio → forms-and-input/radio}/Radio.js +0 -0
- /package/dist/temp/src/components/{radio → forms-and-input/radio}/RadioInput.js +0 -0
- /package/dist/temp/src/components/{radio → forms-and-input/radio}/index.d.ts +0 -0
- /package/dist/temp/src/components/{radio → forms-and-input/radio}/index.js +0 -0
- /package/dist/temp/src/components/{range-date-picker → forms-and-input/range-date-picker}/RangeDatePicker.d.ts +0 -0
- /package/dist/temp/src/components/{range-date-picker → forms-and-input/range-date-picker}/RangeDatePicker.js +0 -0
- /package/dist/temp/src/components/{range-date-picker → forms-and-input/range-date-picker}/index.d.ts +0 -0
- /package/dist/temp/src/components/{range-date-picker → forms-and-input/range-date-picker}/index.js +0 -0
- /package/dist/temp/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/index.d.ts +0 -0
- /package/dist/temp/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/index.js +0 -0
- /package/dist/temp/src/components/{select → forms-and-input/select}/index.d.ts +0 -0
- /package/dist/temp/src/components/{select → forms-and-input/select}/index.js +0 -0
- /package/dist/temp/src/components/{select-box → forms-and-input/select-box}/index.d.ts +0 -0
- /package/dist/temp/src/components/{select-box → forms-and-input/select-box}/index.js +0 -0
- /package/dist/temp/src/components/{slider → forms-and-input/slider}/index.d.ts +0 -0
- /package/dist/temp/src/components/{slider → forms-and-input/slider}/index.js +0 -0
- /package/dist/temp/src/components/{switch → forms-and-input/switch}/Switch.js +0 -0
- /package/dist/temp/src/components/{switch → forms-and-input/switch}/index.d.ts +0 -0
- /package/dist/temp/src/components/{switch → forms-and-input/switch}/index.js +0 -0
- /package/dist/temp/src/components/{textarea → forms-and-input/textarea}/index.d.ts +0 -0
- /package/dist/temp/src/components/{textarea → forms-and-input/textarea}/index.js +0 -0
- /package/dist/temp/src/components/{toggle → forms-and-input/toggle}/Toggle.d.ts +0 -0
- /package/dist/temp/src/components/{toggle → forms-and-input/toggle}/Toggle.js +0 -0
- /package/dist/temp/src/components/{toggle → forms-and-input/toggle}/index.d.ts +0 -0
- /package/dist/temp/src/components/{toggle → forms-and-input/toggle}/index.js +0 -0
- /package/dist/temp/src/components/{dot → image-and-icons/dot}/Dot.js +0 -0
- /package/dist/temp/src/components/{dot → image-and-icons/dot}/index.d.ts +0 -0
- /package/dist/temp/src/components/{dot → image-and-icons/dot}/index.js +0 -0
- /package/dist/temp/src/components/{featured-icon → image-and-icons/featured-icon}/FeaturedIcon.js +0 -0
- /package/dist/temp/src/components/{featured-icon → image-and-icons/featured-icon}/index.d.ts +0 -0
- /package/dist/temp/src/components/{featured-icon → image-and-icons/featured-icon}/index.js +0 -0
- /package/dist/temp/src/components/{divider → layout/divider}/Divider.d.ts +0 -0
- /package/dist/temp/src/components/{divider → layout/divider}/Divider.js +0 -0
- /package/dist/temp/src/components/{divider → layout/divider}/index.d.ts +0 -0
- /package/dist/temp/src/components/{divider → layout/divider}/index.js +0 -0
- /package/dist/temp/src/components/{bread-crumb → navigation/bread-crumb}/BreadCrumb.d.ts +0 -0
- /package/dist/temp/src/components/{bread-crumb → navigation/bread-crumb}/BreadCrumb.js +0 -0
- /package/dist/temp/src/components/{bread-crumb → navigation/bread-crumb}/index.d.ts +0 -0
- /package/dist/temp/src/components/{bread-crumb → navigation/bread-crumb}/index.js +0 -0
- /package/dist/temp/src/components/{horizontal-tab → navigation/horizontal-tab}/index.d.ts +0 -0
- /package/dist/temp/src/components/{horizontal-tab → navigation/horizontal-tab}/index.js +0 -0
- /package/dist/temp/src/components/{pagination → navigation/pagination}/Pagination.d.ts +0 -0
- /package/dist/temp/src/components/{pagination → navigation/pagination}/Pagination.js +0 -0
- /package/dist/temp/src/components/{pagination → navigation/pagination}/index.d.ts +0 -0
- /package/dist/temp/src/components/{pagination → navigation/pagination}/index.js +0 -0
- /package/dist/temp/src/components/{vertical-tab → navigation/vertical-tab}/index.d.ts +0 -0
- /package/dist/temp/src/components/{vertical-tab → navigation/vertical-tab}/index.js +0 -0
- /package/dist/temp/src/components/{dropdown → overlays/dropdown}/index.d.ts +0 -0
- /package/dist/temp/src/components/{dropdown → overlays/dropdown}/index.js +0 -0
- /package/dist/temp/src/components/{modal → overlays/modal}/index.d.ts +0 -0
- /package/dist/temp/src/components/{modal → overlays/modal}/index.js +0 -0
- /package/dist/temp/src/components/{notification → overlays/notification}/FloatingNotification.d.ts +0 -0
- /package/dist/temp/src/components/{notification → overlays/notification}/FullWidthNotification.d.ts +0 -0
- /package/dist/temp/src/components/{notification → overlays/notification}/Notification.js +0 -0
- /package/dist/temp/src/components/{notification → overlays/notification}/index.d.ts +0 -0
- /package/dist/temp/src/components/{notification → overlays/notification}/index.js +0 -0
- /package/dist/temp/src/components/{tooltip → overlays/tooltip}/Tooltip.d.ts +0 -0
- /package/dist/temp/src/components/{tooltip → overlays/tooltip}/index.d.ts +0 -0
- /package/dist/temp/src/components/{tooltip → overlays/tooltip}/index.js +0 -0
- /package/dist/types/src/components/{button → action/button}/index.d.ts +0 -0
- /package/dist/types/src/components/{button-group → action/button-group}/index.d.ts +0 -0
- /package/dist/types/src/components/{data-grid → data-display/data-grid}/DataGrid.d.ts +0 -0
- /package/dist/types/src/components/{data-grid → data-display/data-grid}/DataGrid.types.d.ts +0 -0
- /package/dist/types/src/components/{data-grid → data-display/data-grid}/index.d.ts +0 -0
- /package/dist/types/src/components/{table → data-display/table}/Table.d.ts +0 -0
- /package/dist/types/src/components/{table → data-display/table}/index.d.ts +0 -0
- /package/dist/types/src/components/{table → data-display/table}/types.d.ts +0 -0
- /package/dist/types/src/components/{badge → feedback-and-status/badge}/index.d.ts +0 -0
- /package/dist/types/src/components/{badge-group → feedback-and-status/badge-group}/index.d.ts +0 -0
- /package/dist/types/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/CarouselArrow.d.ts +0 -0
- /package/dist/types/src/components/{carousel-arrow → feedback-and-status/carousel-arrow}/index.d.ts +0 -0
- /package/dist/types/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/CarouselNumberGroup.d.ts +0 -0
- /package/dist/types/src/components/{carousel-number-group → feedback-and-status/carousel-number-group}/index.d.ts +0 -0
- /package/dist/types/src/components/{empty-state → feedback-and-status/empty-state}/index.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/ProgressBar.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentBar.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/components/SegmentLabels.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/components/index.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/index.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/hooks/useProgressBar.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/index.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/types.d.ts +0 -0
- /package/dist/types/src/components/{progress-bar → feedback-and-status/progress-bar}/utils.d.ts +0 -0
- /package/dist/types/src/components/{progress-circle → feedback-and-status/progress-circle}/ProgressCircle.d.ts +0 -0
- /package/dist/types/src/components/{progress-circle → feedback-and-status/progress-circle}/index.d.ts +0 -0
- /package/dist/types/src/components/{spinner → feedback-and-status/spinner}/Spinner.d.ts +0 -0
- /package/dist/types/src/components/{spinner → feedback-and-status/spinner}/index.d.ts +0 -0
- /package/dist/types/src/components/{tag → feedback-and-status/tag}/index.d.ts +0 -0
- /package/dist/types/src/components/{checkbox → forms-and-input/checkbox}/Checkbox.d.ts +0 -0
- /package/dist/types/src/components/{checkbox → forms-and-input/checkbox}/index.d.ts +0 -0
- /package/dist/types/src/components/{combo-box → forms-and-input/combo-box}/index.d.ts +0 -0
- /package/dist/types/src/components/{date-picker → forms-and-input/date-picker}/index.d.ts +0 -0
- /package/dist/types/src/components/{date-picker → forms-and-input/date-picker}/utils.d.ts +0 -0
- /package/dist/types/src/components/{file-input → forms-and-input/file-input}/FileInput.d.ts +0 -0
- /package/dist/types/src/components/{file-input → forms-and-input/file-input}/index.d.ts +0 -0
- /package/dist/types/src/components/{image-file-input → forms-and-input/image-file-input}/ImageFileInput.d.ts +0 -0
- /package/dist/types/src/components/{image-file-input → forms-and-input/image-file-input}/components/ImagePreview.d.ts +0 -0
- /package/dist/types/src/components/{image-file-input → forms-and-input/image-file-input}/components/index.d.ts +0 -0
- /package/dist/types/src/components/{image-file-input → forms-and-input/image-file-input}/index.d.ts +0 -0
- /package/dist/types/src/components/{input-base → forms-and-input/input-base}/index.d.ts +0 -0
- /package/dist/types/src/components/{number-input → forms-and-input/number-input}/NumberInput.d.ts +0 -0
- /package/dist/types/src/components/{number-input → forms-and-input/number-input}/index.d.ts +0 -0
- /package/dist/types/src/components/{password-input → forms-and-input/password-input}/PasswordInput.d.ts +0 -0
- /package/dist/types/src/components/{password-input → forms-and-input/password-input}/index.d.ts +0 -0
- /package/dist/types/src/components/{radio → forms-and-input/radio}/Radio.d.ts +0 -0
- /package/dist/types/src/components/{radio → forms-and-input/radio}/index.d.ts +0 -0
- /package/dist/types/src/components/{range-date-picker → forms-and-input/range-date-picker}/RangeDatePicker.d.ts +0 -0
- /package/dist/types/src/components/{range-date-picker → forms-and-input/range-date-picker}/index.d.ts +0 -0
- /package/dist/types/src/components/{range-date-picker-with-buttons → forms-and-input/range-date-picker-with-buttons}/index.d.ts +0 -0
- /package/dist/types/src/components/{select → forms-and-input/select}/index.d.ts +0 -0
- /package/dist/types/src/components/{select-box → forms-and-input/select-box}/index.d.ts +0 -0
- /package/dist/types/src/components/{slider → forms-and-input/slider}/index.d.ts +0 -0
- /package/dist/types/src/components/{switch → forms-and-input/switch}/index.d.ts +0 -0
- /package/dist/types/src/components/{textarea → forms-and-input/textarea}/index.d.ts +0 -0
- /package/dist/types/src/components/{toggle → forms-and-input/toggle}/Toggle.d.ts +0 -0
- /package/dist/types/src/components/{toggle → forms-and-input/toggle}/index.d.ts +0 -0
- /package/dist/types/src/components/{dot → image-and-icons/dot}/index.d.ts +0 -0
- /package/dist/types/src/components/{featured-icon → image-and-icons/featured-icon}/index.d.ts +0 -0
- /package/dist/types/src/components/{divider → layout/divider}/Divider.d.ts +0 -0
- /package/dist/types/src/components/{divider → layout/divider}/index.d.ts +0 -0
- /package/dist/types/src/components/{bread-crumb → navigation/bread-crumb}/BreadCrumb.d.ts +0 -0
- /package/dist/types/src/components/{bread-crumb → navigation/bread-crumb}/index.d.ts +0 -0
- /package/dist/types/src/components/{horizontal-tab → navigation/horizontal-tab}/index.d.ts +0 -0
- /package/dist/types/src/components/{pagination → navigation/pagination}/Pagination.d.ts +0 -0
- /package/dist/types/src/components/{pagination → navigation/pagination}/index.d.ts +0 -0
- /package/dist/types/src/components/{vertical-tab → navigation/vertical-tab}/index.d.ts +0 -0
- /package/dist/types/src/components/{dropdown → overlays/dropdown}/index.d.ts +0 -0
- /package/dist/types/src/components/{modal → overlays/modal}/index.d.ts +0 -0
- /package/dist/types/src/components/{notification → overlays/notification}/FloatingNotification.d.ts +0 -0
- /package/dist/types/src/components/{notification → overlays/notification}/FullWidthNotification.d.ts +0 -0
- /package/dist/types/src/components/{notification → overlays/notification}/index.d.ts +0 -0
- /package/dist/types/src/components/{tooltip → overlays/tooltip}/Tooltip.d.ts +0 -0
- /package/dist/types/src/components/{tooltip → overlays/tooltip}/index.d.ts +0 -0
|
@@ -3,7 +3,7 @@ import { AlertCircle, AlertCircleFill, HelpCircle, HelpCircleFill } from '@ncds/
|
|
|
3
3
|
import classNames from 'classnames';
|
|
4
4
|
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
5
5
|
import { createPortal } from 'react-dom';
|
|
6
|
-
import { ButtonCloseX } from '
|
|
6
|
+
import { ButtonCloseX } from '../../action/button/ButtonCloseX';
|
|
7
7
|
const ICON_SIZE_SM = 14;
|
|
8
8
|
const ICON_SIZE_DEFAULT = 16;
|
|
9
9
|
// HTML 구현체(assets/scripts/tooltip)와 동일한 상수
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import classNames from 'classnames';
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
|
-
import { Button } from '../button';
|
|
4
|
+
import { Button } from '../action/button';
|
|
5
5
|
const SelectDropdown = forwardRef(({ isOpen, direction = 'down', size = 'xs', options, value, focusedIndex, maxHeight, listboxId = 'selectbox-options-default', onOptionSelect, onMouseMove, isKeyboardNavigation, onOptionHover, children, multiple = false, showFooterButtons = false, selectAllButtonText = '전체 선택', onSelectAll, onEdit, onComplete, className, activeDescendantId, componentType, align = 'left', ...props }, ref) => {
|
|
6
6
|
if (!isOpen)
|
|
7
7
|
return null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AnchorHTMLAttributes, ButtonHTMLAttributes, ReactNode } from 'react';
|
|
2
|
-
import { type BadgeProps } from '../badge/Badge';
|
|
2
|
+
import { type BadgeProps } from '../feedback-and-status/badge/Badge';
|
|
3
3
|
type TabSize = 'sm' | 'md' | 'lg';
|
|
4
4
|
type TabType = 'button-primary' | 'button-white' | 'underline' | 'underline-fill' | 'line-vertical';
|
|
5
5
|
type BaseTabButtonProps = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { XClose } from '@ncds/ui-admin-icon';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import { Badge } from '../badge/Badge';
|
|
4
|
+
import { Badge } from '../feedback-and-status/badge/Badge';
|
|
5
5
|
const TabButton = ({ id, label, size = 'sm', tabButtonType, type, isActive = false, badgeInfo, className, children, ...props }) => {
|
|
6
6
|
const componentClassName = classNames('ncua-tab-button', { 'is-active': isActive }, className);
|
|
7
7
|
if ('href' in props && props.href) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** AI 에이전트용 컴포넌트 메타데이터 타입 */
|
|
2
|
-
/**
|
|
3
|
-
export type ComponentCategory = 'action' | '
|
|
2
|
+
/** 컴포넌트 카테고리 — `src/components/` 하위 디렉토리명과 동일 */
|
|
3
|
+
export type ComponentCategory = 'action' | 'data-display' | 'feedback-and-status' | 'forms-and-input' | 'image-and-icons' | 'layout' | 'navigation' | 'overlays';
|
|
4
4
|
export interface ComponentMeta {
|
|
5
5
|
category: ComponentCategory;
|
|
6
6
|
aliases: string[];
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { defineConfig } from 'vitest/config';
|
|
2
2
|
export default defineConfig({
|
|
3
3
|
test: {
|
|
4
|
-
include: [
|
|
4
|
+
include: [
|
|
5
|
+
'scripts/**/__tests__/**/*.test.ts',
|
|
6
|
+
'src/**/__tests__/**/*.test.ts',
|
|
7
|
+
'assets/scripts/**/__tests__/**/*.test.ts',
|
|
8
|
+
],
|
|
5
9
|
environment: 'node',
|
|
6
10
|
},
|
|
7
11
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ComponentProps, type ReactNode } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
3
|
-
import type { SideSlotType } from '
|
|
4
|
-
import { type DotProps } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
import type { SideSlotType } from '../../../types/side-slot';
|
|
4
|
+
import { type DotProps } from '../../image-and-icons/dot';
|
|
5
5
|
export type ButtonProps = Omit<ComponentProps<'button'>, 'ref'> & {
|
|
6
6
|
label: ReactNode;
|
|
7
7
|
className?: string;
|
package/dist/{temp/src/components → types/src/components/action}/button-group/ButtonGroup.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { type ComponentProps } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
3
|
-
import type { SideSlotType } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
import type { SideSlotType } from '../../../types/side-slot';
|
|
4
4
|
type ButtonGroupSize = Extract<Size, 'xxs' | 'xs' | 'sm' | 'md'>;
|
|
5
5
|
interface SideCommon {
|
|
6
6
|
position?: 'leading' | 'trailing';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { ColorTone } from '
|
|
2
|
-
import type { Size } from '
|
|
3
|
-
import type { SideSlotType } from '
|
|
1
|
+
import type { ColorTone } from '../../../../constant/color';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
import type { SideSlotType } from '../../../types/side-slot';
|
|
4
4
|
type BadgeType = 'pill-outline' | 'pill-dark-color';
|
|
5
5
|
type BadgeColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'blue' | 'pink' | 'disabled'>;
|
|
6
6
|
type BadgeSize = Extract<Size, 'xs' | 'sm' | 'md'>;
|
package/dist/types/src/components/{badge-group → feedback-and-status/badge-group}/BadgeGroup.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { ColorTone } from '
|
|
2
|
-
import type { Size } from '
|
|
3
|
-
import type { SideSlotType } from '
|
|
1
|
+
import type { ColorTone } from '../../../../constant/color';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
import type { SideSlotType } from '../../../types/side-slot';
|
|
4
4
|
import { type BadgeProps } from '../badge';
|
|
5
5
|
type BadgeGroupSize = Extract<Size, 'xs' | 'sm'>;
|
|
6
6
|
type BadgeGroupColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success'>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ButtonProps } from '
|
|
1
|
+
import { type ButtonProps } from '../../action/button/Button';
|
|
2
2
|
export interface ButtonOptions extends Pick<ButtonProps, 'hierarchy' | 'size' | 'leadingIcon' | 'trailingIcon'> {
|
|
3
3
|
label: string;
|
|
4
4
|
onClick?: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type MouseEventHandler } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
3
|
-
import type { SideSlotType } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
import type { SideSlotType } from '../../../types/side-slot';
|
|
4
4
|
export interface TagProps {
|
|
5
5
|
size?: Extract<Size, 'sm' | 'md'>;
|
|
6
6
|
icon?: SideSlotType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ChangeEvent, type ComponentPropsWithRef } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
3
|
export interface CheckboxInputProps extends Omit<ComponentPropsWithRef<'input'>, 'size' | 'ref'> {
|
|
4
4
|
size?: Extract<Size, 'xs' | 'sm'>;
|
|
5
5
|
indeterminate?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ComponentPropsWithRef, type ReactNode } from 'react';
|
|
2
2
|
import type { UseFormRegisterReturn } from 'react-hook-form';
|
|
3
|
-
import type { Size } from '
|
|
4
|
-
import type { OptionChangeHandler, OptionType, OptionValue } from '
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { OptionChangeHandler, OptionType, OptionValue } from '../../../types/dropdown';
|
|
5
5
|
declare const defaultMaxHeight = 275;
|
|
6
6
|
interface ComboBoxProps extends Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChange'> {
|
|
7
7
|
children?: ReactNode;
|
package/dist/types/src/components/{date-picker → forms-and-input/date-picker}/CustomInput.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type InputHTMLAttributes } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
3
|
interface CustomInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: 'calendar' | 'clock';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { DateOption, Options } from 'flatpickr/dist/types/options';
|
|
2
2
|
import { type DateTimePickerHandle, type DateTimePickerProps } from 'react-flatpickr';
|
|
3
|
-
import type { Size } from '
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
4
|
export type DatePickerProps = {
|
|
5
5
|
size?: Extract<Size, 'xs' | 'sm'>;
|
|
6
6
|
shouldFocus?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type React from 'react';
|
|
2
|
-
import { COLOR } from '
|
|
3
|
-
import type { Size } from '
|
|
4
|
-
import type { SlotIconComponent } from '
|
|
2
|
+
import { COLOR } from '../../../../constant/color';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
5
5
|
interface InputSideButtonSlot {
|
|
6
6
|
type: 'button';
|
|
7
7
|
label: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ChangeEvent, type ComponentPropsWithRef } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
3
|
export interface RadioInputProps extends Omit<ComponentPropsWithRef<'input'>, 'size' | 'ref'> {
|
|
4
4
|
size?: Extract<Size, 'xs' | 'sm'>;
|
|
5
5
|
destructive?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Dispatch, type SetStateAction } from 'react';
|
|
2
|
-
import { PERIOD_ITEM, type PeriodItemMap } from '
|
|
2
|
+
import { PERIOD_ITEM, type PeriodItemMap } from '../../../constant/date-picker';
|
|
3
3
|
import { type RangeDatePickerProps } from '../range-date-picker/RangeDatePicker';
|
|
4
4
|
type PeriodKeyType = keyof typeof PERIOD_ITEM;
|
|
5
5
|
type RangeDatePickerWithButtonsProps<T extends PeriodItemMap = typeof PERIOD_ITEM> = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ComponentPropsWithRef, type ReactNode } from 'react';
|
|
2
2
|
import type { UseFormRegisterReturn } from 'react-hook-form';
|
|
3
|
-
import type { Size } from '
|
|
4
|
-
import type { OptionType } from '
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { OptionType } from '../../../types/dropdown';
|
|
5
5
|
export interface SelectProps extends Omit<ComponentPropsWithRef<'select'>, 'size'> {
|
|
6
6
|
placeholder?: string;
|
|
7
7
|
disabledPlaceholder?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ComponentPropsWithRef, type ReactNode } from 'react';
|
|
2
2
|
import type { UseFormRegisterReturn } from 'react-hook-form';
|
|
3
|
-
import type { Size } from '
|
|
4
|
-
import type { OptionChangeHandler, OptionType, OptionValue } from '
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { OptionChangeHandler, OptionType, OptionValue } from '../../../types/dropdown';
|
|
5
5
|
declare const DEFAULT_MAX_HEIGHT = 275;
|
|
6
6
|
type SelectBoxProps = Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChange'> & {
|
|
7
7
|
children?: ReactNode;
|
package/dist/{temp/src/components → types/src/components/forms-and-input}/textarea/Textarea.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ComponentPropsWithRef } from 'react';
|
|
2
|
-
import type { Size } from '
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
3
|
interface TextareaProps extends ComponentPropsWithRef<'textarea'> {
|
|
4
4
|
className?: string;
|
|
5
5
|
size?: Extract<Size, 'xs' | 'sm'>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type HTMLAttributes } from 'react';
|
|
2
|
-
import type { ColorTone } from '
|
|
3
|
-
import type { Size } from '
|
|
2
|
+
import type { ColorTone } from '../../../../constant/color';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
4
|
type DotColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'blue' | 'pink' | 'disabled'>;
|
|
5
5
|
type DotSize = Extract<Size, 'sm' | 'md' | 'lg'>;
|
|
6
6
|
interface DotProps extends Omit<HTMLAttributes<HTMLSpanElement>, 'color'> {
|
package/dist/types/src/components/{featured-icon → image-and-icons/featured-icon}/FeaturedIcon.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import type { SlotIconComponent } from '
|
|
2
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
3
3
|
type FeaturedIconTheme = 'light-circle' | 'dark-circle' | 'outline-circle' | 'square-outline';
|
|
4
4
|
type FeaturedIconColor = 'neutral' | 'error' | 'warning' | 'success';
|
|
5
5
|
type FeaturedIconSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -1,45 +1,48 @@
|
|
|
1
1
|
export type { SideSlotType, SlotIconComponent } from '../types';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './
|
|
8
|
-
export * from './carousel-
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './file-input';
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './input-
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './
|
|
25
|
-
export * from './
|
|
26
|
-
export * from './
|
|
27
|
-
export * from './
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './
|
|
30
|
-
export * from './
|
|
31
|
-
export * from './
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
2
|
+
export * from './action/button';
|
|
3
|
+
export * from './action/button-group';
|
|
4
|
+
export * from './data-display/data-grid';
|
|
5
|
+
export * from './data-display/table';
|
|
6
|
+
export * from './feedback-and-status/badge';
|
|
7
|
+
export * from './feedback-and-status/badge-group';
|
|
8
|
+
export * from './feedback-and-status/carousel-arrow';
|
|
9
|
+
export * from './feedback-and-status/carousel-number-group';
|
|
10
|
+
export * from './feedback-and-status/empty-state';
|
|
11
|
+
export * from './feedback-and-status/progress-bar';
|
|
12
|
+
export * from './feedback-and-status/progress-circle';
|
|
13
|
+
export * from './feedback-and-status/spinner';
|
|
14
|
+
export * from './feedback-and-status/tag';
|
|
15
|
+
export * from './forms-and-input/checkbox';
|
|
16
|
+
export * from './forms-and-input/combo-box';
|
|
17
|
+
export * from './forms-and-input/date-picker';
|
|
18
|
+
export * from './forms-and-input/file-input';
|
|
19
|
+
export * from './forms-and-input/image-file-input';
|
|
20
|
+
export * from './forms-and-input/input-base';
|
|
21
|
+
export * from './forms-and-input/number-input';
|
|
22
|
+
export * from './forms-and-input/password-input';
|
|
23
|
+
export * from './forms-and-input/radio';
|
|
24
|
+
export * from './forms-and-input/range-date-picker';
|
|
25
|
+
export * from './forms-and-input/range-date-picker-with-buttons';
|
|
26
|
+
export * from './forms-and-input/select';
|
|
27
|
+
export * from './forms-and-input/select-box';
|
|
28
|
+
export * from './forms-and-input/slider';
|
|
29
|
+
export * from './forms-and-input/switch';
|
|
30
|
+
export * from './forms-and-input/textarea';
|
|
31
|
+
export * from './forms-and-input/toggle';
|
|
32
|
+
export * from './image-and-icons/dot';
|
|
33
|
+
export * from './image-and-icons/featured-icon';
|
|
34
|
+
export * from './layout/block-container';
|
|
35
|
+
export * from './layout/block-header';
|
|
36
|
+
export * from './layout/divider';
|
|
37
|
+
export * from './layout/page-title';
|
|
38
|
+
export * from './navigation/bread-crumb';
|
|
39
|
+
export * from './navigation/horizontal-tab';
|
|
40
|
+
export * from './navigation/pagination';
|
|
41
|
+
export * from './navigation/vertical-tab';
|
|
42
|
+
export * from './overlays/dropdown';
|
|
43
|
+
export * from './overlays/modal';
|
|
44
|
+
export * from './overlays/notification';
|
|
45
|
+
export * from './overlays/tooltip';
|
|
34
46
|
export * from './select-dropdown';
|
|
35
47
|
export * from './shared';
|
|
36
|
-
export * from './slider';
|
|
37
|
-
export * from './spinner';
|
|
38
|
-
export * from './switch';
|
|
39
48
|
export * from './tab';
|
|
40
|
-
export * from './table';
|
|
41
|
-
export * from './tag';
|
|
42
|
-
export * from './textarea';
|
|
43
|
-
export * from './toggle';
|
|
44
|
-
export * from './tooltip';
|
|
45
|
-
export * from './vertical-tab';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
+
interface BlockContainerProps extends ComponentPropsWithoutRef<'section'> {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
interface BlockContainerBodyProps extends ComponentPropsWithoutRef<'div'> {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const BlockContainer: {
|
|
11
|
+
({ children, className, ...rest }: BlockContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
} & {
|
|
14
|
+
Body: {
|
|
15
|
+
({ children, className, ...rest }: BlockContainerBodyProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export type { BlockContainerProps, BlockContainerBodyProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './BlockContainer';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
+
interface BlockHeaderProps extends Omit<ComponentPropsWithoutRef<'header'>, 'title' | 'children'> {
|
|
3
|
+
title: ReactNode;
|
|
4
|
+
tooltip?: string;
|
|
5
|
+
action?: ReactNode;
|
|
6
|
+
showDivider?: boolean;
|
|
7
|
+
badge?: ReactNode;
|
|
8
|
+
description?: string;
|
|
9
|
+
collapsible?: {
|
|
10
|
+
expanded: boolean;
|
|
11
|
+
onToggle: () => void;
|
|
12
|
+
};
|
|
13
|
+
showRequiredNotice?: boolean;
|
|
14
|
+
controlStrip?: ReactNode;
|
|
15
|
+
children?: ReactNode;
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const BlockHeader: {
|
|
19
|
+
({ title, tooltip, action, showDivider, badge, description, collapsible, showRequiredNotice, controlStrip, children, className, ...rest }: BlockHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
displayName: string;
|
|
21
|
+
};
|
|
22
|
+
export { BlockHeader };
|
|
23
|
+
export type { BlockHeaderProps };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
type SubTitleSize = 'middle' | Extract<Size, 'sm' | 'xs'>;
|
|
4
|
+
interface SubTitleProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title'> {
|
|
5
|
+
title: ReactNode;
|
|
6
|
+
size?: SubTitleSize;
|
|
7
|
+
tooltip?: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
error?: string;
|
|
10
|
+
action?: ReactNode;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
className?: string;
|
|
13
|
+
}
|
|
14
|
+
declare const SubTitle: {
|
|
15
|
+
({ title, size, tooltip, description, error, action, required, className, ...rest }: SubTitleProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
export { SubTitle };
|
|
19
|
+
export type { SubTitleProps, SubTitleSize };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
2
|
+
type PageTitleVariant = 'default' | 'detail' | 'fixed' | 'fixed-detail';
|
|
3
|
+
interface PageTitleBreadcrumbItem {
|
|
4
|
+
label: string;
|
|
5
|
+
href?: string;
|
|
6
|
+
}
|
|
7
|
+
interface PageTitleProps extends ComponentPropsWithoutRef<'header'> {
|
|
8
|
+
title: string;
|
|
9
|
+
variant?: PageTitleVariant;
|
|
10
|
+
breadcrumbItems?: PageTitleBreadcrumbItem[];
|
|
11
|
+
onBack?: () => void;
|
|
12
|
+
guideButton?: ReactNode;
|
|
13
|
+
primaryAction?: ReactNode;
|
|
14
|
+
secondaryAction?: ReactNode;
|
|
15
|
+
className?: string;
|
|
16
|
+
}
|
|
17
|
+
declare const PageTitle: {
|
|
18
|
+
({ title, variant, breadcrumbItems, onBack, guideButton, primaryAction, secondaryAction, className, ...rest }: PageTitleProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
displayName: string;
|
|
20
|
+
};
|
|
21
|
+
export { PageTitle };
|
|
22
|
+
export type { PageTitleProps, PageTitleVariant, PageTitleBreadcrumbItem };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './PageTitle';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { SlotIconComponent } from '
|
|
1
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
2
2
|
export type AvatarTrigger = {
|
|
3
3
|
type: 'avatar';
|
|
4
4
|
avatar: string;
|
|
@@ -24,9 +24,12 @@ export type DropdownItemType = {
|
|
|
24
24
|
disabled?: boolean;
|
|
25
25
|
type?: 'default' | 'danger';
|
|
26
26
|
className?: string;
|
|
27
|
+
visible?: boolean;
|
|
28
|
+
required?: boolean;
|
|
27
29
|
};
|
|
28
30
|
export type DropdownGroup = {
|
|
29
31
|
items: DropdownItemType[];
|
|
32
|
+
sortable?: boolean;
|
|
30
33
|
};
|
|
31
34
|
export type AvatarHeader = {
|
|
32
35
|
type: 'avatar';
|
|
@@ -39,14 +42,24 @@ export type TextHeader = {
|
|
|
39
42
|
title: string;
|
|
40
43
|
};
|
|
41
44
|
export type DropdownHeaderType = AvatarHeader | TextHeader;
|
|
42
|
-
export type
|
|
45
|
+
export type DropdownBaseProps = {
|
|
43
46
|
trigger: AvatarTrigger | ButtonTrigger | IconTrigger | CustomTrigger;
|
|
47
|
+
align?: 'left' | 'right';
|
|
48
|
+
header?: DropdownHeaderType;
|
|
49
|
+
className?: string;
|
|
44
50
|
opened?: boolean;
|
|
45
51
|
closeOnClickOutside?: boolean;
|
|
52
|
+
};
|
|
53
|
+
export type ActionDropdownProps = DropdownBaseProps & {
|
|
54
|
+
variant?: 'action';
|
|
55
|
+
groups: DropdownGroup[];
|
|
46
56
|
closeOnClickItem?: boolean;
|
|
47
|
-
|
|
48
|
-
|
|
57
|
+
};
|
|
58
|
+
export type ConfigDropdownProps = DropdownBaseProps & {
|
|
59
|
+
variant: 'config';
|
|
49
60
|
groups: DropdownGroup[];
|
|
50
|
-
|
|
61
|
+
onApply: (items: DropdownItemType[]) => void;
|
|
62
|
+
applyButtonText?: string;
|
|
51
63
|
};
|
|
52
|
-
export
|
|
64
|
+
export type DropdownProps = ActionDropdownProps | ConfigDropdownProps;
|
|
65
|
+
export declare const Dropdown: (props: DropdownProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { DropdownGroup, DropdownItemType } from './Dropdown';
|
|
2
|
+
/**
|
|
3
|
+
* 배열에서 fromId 위치의 요소를 toId 위치로 이동.
|
|
4
|
+
* id 중 하나라도 없으면 원본 그대로 반환. immutable.
|
|
5
|
+
*/
|
|
6
|
+
export declare function arrayMoveById(order: string[], fromId: string, toId: string): string[];
|
|
7
|
+
/**
|
|
8
|
+
* fromId 요소를 toId 기준 edge('top'=직전, 'bottom'=직후)에 삽입.
|
|
9
|
+
* indicator 위치와 정확히 일치하는 reorder를 위해 사용.
|
|
10
|
+
*/
|
|
11
|
+
export declare function arrayReorderByEdge(order: string[], fromId: string, toId: string, edge: 'top' | 'bottom'): string[];
|
|
12
|
+
export type DraftState = {
|
|
13
|
+
order: string[];
|
|
14
|
+
visibility: Record<string, boolean>;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* groups를 받아 초기 draft state를 만든다.
|
|
18
|
+
* - order: 모든 그룹·아이템의 id를 순서대로 평탄화
|
|
19
|
+
* - visibility: item.visible (undefined면 true)
|
|
20
|
+
*/
|
|
21
|
+
export declare function initDraftState(groups: DropdownGroup[]): DraftState;
|
|
22
|
+
/**
|
|
23
|
+
* 모든 그룹의 items를 평탄화하고, draft.order 순서로 재배열.
|
|
24
|
+
* 각 item의 visible은 원래 visible이 정의되어 있던 경우에만 draft.visibility 값으로 갱신.
|
|
25
|
+
* 그 외 필드는 props 원본 그대로 보존.
|
|
26
|
+
*/
|
|
27
|
+
export declare function applyDraftToItems(groups: DropdownGroup[], draft: DraftState): DropdownItemType[];
|
|
28
|
+
/**
|
|
29
|
+
* draft가 original과 비교해 변경되었는지 판단.
|
|
30
|
+
* order 배열 또는 visibility 객체 중 하나라도 다르면 true.
|
|
31
|
+
*/
|
|
32
|
+
export declare function hasDraftChanged(original: DraftState, draft: DraftState): boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type ReactNode } from 'react';
|
|
2
|
-
import type { SlotIconComponent } from '
|
|
3
|
-
import { type FeaturedIconColor, type FeaturedIconTheme } from '
|
|
2
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
3
|
+
import { type FeaturedIconColor, type FeaturedIconTheme } from '../../image-and-icons/featured-icon';
|
|
4
4
|
type ModalSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5
5
|
type ModalHeaderAlign = 'left' | 'center' | 'horizontal';
|
|
6
6
|
type ModalActionsAlign = 'left' | 'center' | 'right' | 'stretch';
|
package/dist/types/src/components/{notification → overlays/notification}/MessageNotification.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
2
|
-
import type { SlotIconComponent } from '
|
|
2
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
3
3
|
import type { NotificationAction, NotificationColor } from './Notification';
|
|
4
4
|
interface MessageNotificationProps extends Omit<ComponentPropsWithoutRef<'div'>, 'title'> {
|
|
5
5
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
|
|
2
|
-
import type { ColorTone } from '
|
|
3
|
-
import type { SlotIconComponent } from '
|
|
4
|
-
import type { ButtonTheme } from '
|
|
2
|
+
import type { ColorTone } from '../../../../constant/color';
|
|
3
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
4
|
+
import type { ButtonTheme } from '../../action/button';
|
|
5
5
|
type NotificationType = 'floating' | 'full-width' | 'message';
|
|
6
6
|
type NotificationColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'info'>;
|
|
7
7
|
type NotificationSize = 'desktop' | 'mobile';
|