@ncds/ui-admin 1.8.1 → 1.8.3
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/action/button/Button.js +86 -0
- package/dist/cjs/src/components/action/button-group/ButtonGroup.js +97 -0
- package/dist/cjs/src/components/feedback-and-status/badge/index.js +27 -0
- package/dist/cjs/src/components/feedback-and-status/badge/utils.js +32 -0
- package/dist/cjs/src/components/feedback-and-status/empty-state/EmptyState.js +41 -0
- package/dist/cjs/src/components/feedback-and-status/progress-bar/components/index.js +27 -0
- package/dist/cjs/src/components/feedback-and-status/progress-bar/hooks/index.js +16 -0
- package/dist/cjs/src/components/feedback-and-status/progress-bar/index.js +60 -0
- package/dist/cjs/src/components/feedback-and-status/tag/Tag.js +146 -0
- package/dist/cjs/src/components/forms-and-input/combo-box/ComboBox.js +291 -0
- package/dist/cjs/src/components/forms-and-input/date-picker/DatePicker.js +531 -0
- package/dist/cjs/src/components/forms-and-input/date-picker/index.js +38 -0
- package/dist/cjs/src/components/forms-and-input/file-input/FileInput.js +183 -0
- package/dist/cjs/src/components/forms-and-input/image-file-input/ImageFileInput.js +201 -0
- package/dist/cjs/src/components/forms-and-input/image-file-input/components/ImagePreview.js +36 -0
- package/dist/cjs/src/components/forms-and-input/image-file-input/components/index.js +16 -0
- package/dist/cjs/src/components/forms-and-input/image-file-input/index.js +27 -0
- package/dist/cjs/src/components/forms-and-input/input-base/InputBase.js +195 -0
- package/dist/cjs/src/components/forms-and-input/number-input/NumberInput.js +112 -0
- package/dist/cjs/src/components/forms-and-input/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +81 -0
- package/dist/cjs/src/components/forms-and-input/select/Select.js +59 -0
- package/dist/cjs/src/components/forms-and-input/select-box/SelectBox.js +260 -0
- package/dist/cjs/src/components/forms-and-input/slider/Slider.js +61 -0
- package/dist/cjs/src/components/forms-and-input/switch/index.js +16 -0
- package/dist/cjs/src/components/forms-and-input/textarea/Textarea.js +79 -0
- package/dist/cjs/src/components/index.js +173 -173
- package/dist/cjs/src/components/navigation/horizontal-tab/HorizontalTab.js +53 -0
- package/dist/cjs/src/components/navigation/pagination/NavButton.js +70 -0
- package/dist/cjs/src/components/navigation/vertical-tab/VerticalTab.js +48 -0
- 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/overlays/modal/Modal.js +171 -0
- package/dist/cjs/src/components/overlays/notification/FloatingNotification.js +112 -0
- package/dist/cjs/src/components/overlays/notification/FullWidthNotification.js +134 -0
- package/dist/cjs/src/components/overlays/notification/MessageNotification.js +107 -0
- package/dist/cjs/src/components/overlays/tooltip/Tooltip.js +230 -0
- package/dist/cjs/src/components/select-dropdown/SelectDropdown.js +1 -1
- package/dist/cjs/src/components/select-dropdown/index.js +11 -7
- package/dist/cjs/src/components/tab/TabButton.js +1 -1
- package/dist/cjs/src/hooks/dropdown/index.js +61 -37
- package/dist/cjs/src/hooks/index.js +31 -25
- package/dist/cjs/vitest.config.js +13 -0
- package/dist/esm/assets/scripts/slider.js +26 -18
- package/dist/esm/src/components/action/button/Button.js +79 -0
- package/dist/esm/src/components/action/button-group/ButtonGroup.js +89 -0
- package/dist/esm/src/components/feedback-and-status/badge/index.js +2 -0
- package/dist/esm/src/components/feedback-and-status/badge/utils.js +26 -0
- package/dist/esm/src/components/feedback-and-status/empty-state/EmptyState.js +34 -0
- package/dist/esm/src/components/feedback-and-status/progress-bar/components/index.js +2 -0
- package/dist/esm/src/components/feedback-and-status/progress-bar/hooks/index.js +1 -0
- package/dist/esm/src/components/feedback-and-status/progress-bar/index.js +5 -0
- package/dist/esm/src/components/feedback-and-status/tag/Tag.js +138 -0
- package/dist/esm/src/components/forms-and-input/combo-box/ComboBox.js +285 -0
- package/dist/esm/src/components/forms-and-input/date-picker/DatePicker.js +524 -0
- package/dist/esm/src/components/forms-and-input/date-picker/index.js +3 -0
- package/dist/esm/src/components/forms-and-input/file-input/FileInput.js +176 -0
- package/dist/esm/src/components/forms-and-input/image-file-input/ImageFileInput.js +194 -0
- package/dist/esm/src/components/forms-and-input/image-file-input/components/ImagePreview.js +29 -0
- package/dist/esm/src/components/forms-and-input/image-file-input/components/index.js +1 -0
- package/dist/esm/src/components/forms-and-input/image-file-input/index.js +2 -0
- package/dist/esm/src/components/forms-and-input/input-base/InputBase.js +189 -0
- package/dist/esm/src/components/forms-and-input/number-input/NumberInput.js +106 -0
- package/dist/esm/src/components/forms-and-input/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +75 -0
- package/dist/esm/src/components/forms-and-input/select/Select.js +52 -0
- package/dist/esm/src/components/forms-and-input/select-box/SelectBox.js +254 -0
- package/dist/esm/src/components/forms-and-input/slider/Slider.js +54 -0
- package/dist/esm/src/components/forms-and-input/switch/index.js +1 -0
- package/dist/esm/src/components/forms-and-input/textarea/Textarea.js +72 -0
- package/dist/esm/src/components/index.js +51 -42
- package/dist/esm/src/components/navigation/horizontal-tab/HorizontalTab.js +46 -0
- package/dist/esm/src/components/navigation/pagination/NavButton.js +63 -0
- package/dist/esm/src/components/navigation/vertical-tab/VerticalTab.js +40 -0
- 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/overlays/modal/Modal.js +164 -0
- package/dist/esm/src/components/overlays/notification/FloatingNotification.js +106 -0
- package/dist/esm/src/components/overlays/notification/FullWidthNotification.js +128 -0
- package/dist/esm/src/components/overlays/notification/MessageNotification.js +101 -0
- package/dist/esm/src/components/overlays/tooltip/Tooltip.js +222 -0
- package/dist/esm/src/components/select-dropdown/SelectDropdown.js +1 -1
- package/dist/esm/src/components/select-dropdown/index.js +1 -1
- package/dist/esm/src/components/tab/TabButton.js +1 -1
- package/dist/esm/src/hooks/dropdown/index.js +6 -6
- package/dist/esm/src/hooks/index.js +3 -3
- package/dist/esm/src/types/component-meta.js +2 -0
- package/dist/esm/vitest.config.js +7 -0
- package/dist/temp/assets/scripts/slider.js +26 -18
- package/dist/temp/src/components/action/button/Button.d.ts +35 -0
- package/dist/temp/src/components/action/button/Button.js +52 -0
- package/dist/temp/src/components/action/button/ButtonCloseX.d.ts +10 -0
- package/dist/temp/src/components/action/button/ButtonStepper.d.ts +9 -0
- package/dist/temp/src/components/action/button-group/ButtonGroup.d.ts +312 -0
- package/dist/temp/src/components/action/button-group/ButtonGroup.js +51 -0
- package/dist/temp/src/components/feedback-and-status/badge/Badge.d.ts +18 -0
- package/dist/temp/src/components/feedback-and-status/badge/index.d.ts +2 -0
- package/dist/temp/src/components/feedback-and-status/badge/index.js +2 -0
- package/dist/temp/src/components/feedback-and-status/badge/utils.d.ts +8 -0
- package/dist/temp/src/components/feedback-and-status/badge/utils.js +15 -0
- package/dist/temp/src/components/feedback-and-status/badge-group/BadgeGroup.d.ts +18 -0
- package/dist/temp/src/components/feedback-and-status/empty-state/EmptyState.d.ts +12 -0
- package/dist/temp/src/components/feedback-and-status/empty-state/EmptyState.js +6 -0
- package/dist/temp/src/components/feedback-and-status/progress-bar/components/index.d.ts +2 -0
- package/dist/temp/src/components/feedback-and-status/progress-bar/components/index.js +2 -0
- package/dist/temp/src/components/feedback-and-status/progress-bar/hooks/index.d.ts +1 -0
- package/dist/temp/src/components/feedback-and-status/progress-bar/hooks/index.js +1 -0
- package/dist/temp/src/components/feedback-and-status/progress-bar/index.d.ts +5 -0
- package/dist/temp/src/components/feedback-and-status/progress-bar/index.js +5 -0
- package/dist/temp/src/components/feedback-and-status/spinner/Spinner.d.ts +8 -0
- package/dist/temp/src/components/feedback-and-status/tag/Tag.d.ts +15 -0
- package/dist/temp/src/components/feedback-and-status/tag/Tag.js +95 -0
- package/dist/temp/src/components/forms-and-input/checkbox/CheckboxInput.d.ts +9 -0
- package/dist/temp/src/components/forms-and-input/combo-box/ComboBox.d.ts +28 -0
- package/dist/temp/src/components/forms-and-input/combo-box/ComboBox.js +166 -0
- package/dist/temp/src/components/forms-and-input/date-picker/CustomInput.d.ts +10 -0
- package/dist/temp/src/components/forms-and-input/date-picker/DatePicker.d.ts +28 -0
- package/dist/temp/src/components/forms-and-input/date-picker/DatePicker.js +500 -0
- package/dist/temp/src/components/forms-and-input/date-picker/index.d.ts +3 -0
- package/dist/temp/src/components/forms-and-input/date-picker/index.js +3 -0
- package/dist/temp/src/components/forms-and-input/file-input/FileInput.js +87 -0
- package/dist/temp/src/components/forms-and-input/image-file-input/ImageFileInput.js +96 -0
- package/dist/temp/src/components/forms-and-input/image-file-input/components/ImagePreview.js +6 -0
- package/dist/temp/src/components/forms-and-input/image-file-input/components/index.d.ts +1 -0
- package/dist/temp/src/components/forms-and-input/image-file-input/components/index.js +1 -0
- package/dist/temp/src/components/forms-and-input/image-file-input/index.d.ts +2 -0
- package/dist/temp/src/components/forms-and-input/image-file-input/index.js +2 -0
- package/dist/temp/src/components/forms-and-input/input-base/InputBase.d.ts +55 -0
- package/dist/temp/src/components/forms-and-input/input-base/InputBase.js +96 -0
- package/dist/temp/src/components/forms-and-input/number-input/NumberInput.js +68 -0
- package/dist/temp/src/components/forms-and-input/radio/RadioInput.d.ts +8 -0
- package/dist/temp/src/components/forms-and-input/range-date-picker-with-buttons/RangeDatePickerWithButtons.d.ts +71 -0
- package/dist/temp/src/components/forms-and-input/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +43 -0
- package/dist/temp/src/components/forms-and-input/select/Select.d.ts +16 -0
- package/dist/temp/src/components/forms-and-input/select/Select.js +10 -0
- package/dist/temp/src/components/forms-and-input/select-box/SelectBox.d.ts +27 -0
- package/dist/temp/src/components/forms-and-input/select-box/SelectBox.js +130 -0
- package/dist/temp/src/components/forms-and-input/slider/Slider.d.ts +14 -0
- package/dist/temp/src/components/forms-and-input/slider/Slider.js +43 -0
- package/dist/temp/src/components/forms-and-input/switch/Switch.d.ts +22 -0
- package/dist/temp/src/components/forms-and-input/switch/index.d.ts +1 -0
- package/dist/temp/src/components/forms-and-input/switch/index.js +1 -0
- package/dist/temp/src/components/forms-and-input/textarea/Textarea.d.ts +14 -0
- package/dist/temp/src/components/forms-and-input/textarea/Textarea.js +34 -0
- package/dist/temp/src/components/image-and-icons/dot/Dot.d.ts +24 -0
- package/dist/temp/src/components/image-and-icons/featured-icon/FeaturedIcon.d.ts +15 -0
- package/dist/temp/src/components/index.d.ts +41 -41
- package/dist/temp/src/components/index.js +50 -41
- package/dist/temp/src/components/navigation/horizontal-tab/HorizontalTab.d.ts +12 -0
- package/dist/temp/src/components/navigation/horizontal-tab/HorizontalTab.js +24 -0
- package/dist/temp/src/components/navigation/pagination/NavButton.d.ts +31 -0
- package/dist/temp/src/components/navigation/pagination/NavButton.js +54 -0
- package/dist/temp/src/components/navigation/vertical-tab/VerticalTab.d.ts +9 -0
- package/dist/temp/src/components/navigation/vertical-tab/VerticalTab.js +20 -0
- package/dist/temp/src/components/overlays/dropdown/Dropdown.d.ts +65 -0
- package/dist/temp/src/components/overlays/dropdown/Dropdown.js +273 -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/temp/src/components/overlays/modal/Modal.d.ts +79 -0
- package/dist/temp/src/components/overlays/modal/Modal.js +75 -0
- package/dist/temp/src/components/overlays/notification/FloatingNotification.js +56 -0
- package/dist/temp/src/components/overlays/notification/FullWidthNotification.js +56 -0
- package/dist/temp/src/components/overlays/notification/MessageNotification.d.ts +41 -0
- package/dist/temp/src/components/overlays/notification/MessageNotification.js +34 -0
- package/dist/temp/src/components/overlays/notification/Notification.d.ts +72 -0
- package/dist/temp/src/components/overlays/tooltip/Tooltip.d.ts +17 -0
- package/dist/temp/src/components/overlays/tooltip/Tooltip.js +162 -0
- package/dist/temp/src/components/select-dropdown/SelectDropdown.js +1 -1
- package/dist/temp/src/components/select-dropdown/index.d.ts +1 -1
- package/dist/temp/src/components/select-dropdown/index.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/hooks/dropdown/index.d.ts +6 -6
- package/dist/temp/src/hooks/dropdown/index.js +6 -6
- package/dist/temp/src/hooks/index.d.ts +3 -3
- package/dist/temp/src/hooks/index.js +3 -3
- package/dist/temp/src/types/component-meta.d.ts +26 -0
- package/dist/temp/src/types/component-meta.js +2 -0
- package/dist/temp/src/types/dropdown/option.d.ts +2 -4
- package/dist/temp/src/types/side-slot.d.ts +9 -1
- package/dist/temp/vitest.config.d.ts +2 -0
- package/dist/temp/vitest.config.js +11 -0
- package/dist/types/src/components/action/button/Button.d.ts +35 -0
- package/dist/types/src/components/action/button/ButtonCloseX.d.ts +10 -0
- package/dist/types/src/components/action/button/ButtonStepper.d.ts +9 -0
- package/dist/types/src/components/action/button-group/ButtonGroup.d.ts +312 -0
- package/dist/types/src/components/feedback-and-status/badge/Badge.d.ts +18 -0
- package/dist/types/src/components/feedback-and-status/badge/index.d.ts +2 -0
- package/dist/types/src/components/feedback-and-status/badge/utils.d.ts +8 -0
- package/dist/types/src/components/feedback-and-status/badge-group/BadgeGroup.d.ts +18 -0
- package/dist/types/src/components/feedback-and-status/empty-state/EmptyState.d.ts +12 -0
- package/dist/types/src/components/feedback-and-status/progress-bar/components/index.d.ts +2 -0
- package/dist/types/src/components/feedback-and-status/progress-bar/hooks/index.d.ts +1 -0
- package/dist/types/src/components/feedback-and-status/progress-bar/index.d.ts +5 -0
- package/dist/types/src/components/feedback-and-status/spinner/Spinner.d.ts +8 -0
- package/dist/types/src/components/feedback-and-status/tag/Tag.d.ts +15 -0
- package/dist/types/src/components/forms-and-input/checkbox/CheckboxInput.d.ts +9 -0
- package/dist/types/src/components/forms-and-input/combo-box/ComboBox.d.ts +28 -0
- package/dist/types/src/components/forms-and-input/date-picker/CustomInput.d.ts +10 -0
- package/dist/types/src/components/forms-and-input/date-picker/DatePicker.d.ts +28 -0
- package/dist/types/src/components/forms-and-input/date-picker/index.d.ts +3 -0
- package/dist/types/src/components/forms-and-input/image-file-input/components/index.d.ts +1 -0
- package/dist/types/src/components/forms-and-input/image-file-input/index.d.ts +2 -0
- package/dist/types/src/components/forms-and-input/input-base/InputBase.d.ts +55 -0
- package/dist/types/src/components/forms-and-input/radio/RadioInput.d.ts +8 -0
- package/dist/types/src/components/forms-and-input/range-date-picker-with-buttons/RangeDatePickerWithButtons.d.ts +71 -0
- package/dist/types/src/components/forms-and-input/select/Select.d.ts +16 -0
- package/dist/types/src/components/forms-and-input/select-box/SelectBox.d.ts +27 -0
- package/dist/types/src/components/forms-and-input/slider/Slider.d.ts +14 -0
- package/dist/types/src/components/forms-and-input/switch/Switch.d.ts +22 -0
- package/dist/types/src/components/forms-and-input/switch/index.d.ts +1 -0
- package/dist/types/src/components/forms-and-input/textarea/Textarea.d.ts +14 -0
- package/dist/types/src/components/image-and-icons/dot/Dot.d.ts +24 -0
- package/dist/types/src/components/image-and-icons/featured-icon/FeaturedIcon.d.ts +15 -0
- package/dist/types/src/components/index.d.ts +41 -41
- package/dist/types/src/components/navigation/horizontal-tab/HorizontalTab.d.ts +12 -0
- package/dist/types/src/components/navigation/pagination/NavButton.d.ts +31 -0
- package/dist/types/src/components/navigation/vertical-tab/VerticalTab.d.ts +9 -0
- package/dist/types/src/components/overlays/dropdown/Dropdown.d.ts +65 -0
- package/dist/types/src/components/overlays/dropdown/utils.d.ts +32 -0
- package/dist/types/src/components/overlays/modal/Modal.d.ts +79 -0
- package/dist/types/src/components/overlays/notification/MessageNotification.d.ts +41 -0
- package/dist/types/src/components/overlays/notification/Notification.d.ts +72 -0
- package/dist/types/src/components/overlays/tooltip/Tooltip.d.ts +17 -0
- package/dist/types/src/components/select-dropdown/index.d.ts +1 -1
- package/dist/types/src/components/tab/TabButton.d.ts +1 -1
- package/dist/types/src/hooks/dropdown/index.d.ts +6 -6
- package/dist/types/src/hooks/index.d.ts +3 -3
- package/dist/types/src/types/component-meta.d.ts +26 -0
- package/dist/types/src/types/dropdown/option.d.ts +2 -4
- package/dist/types/src/types/side-slot.d.ts +9 -1
- package/dist/types/vitest.config.d.ts +2 -0
- package/dist/ui-admin/assets/styles/style.css +266 -138
- package/package.json +17 -8
- package/dist/cjs/assets/scripts/baseBox.js +0 -146
- package/dist/cjs/assets/scripts/comboBox.js +0 -137
- package/dist/cjs/assets/scripts/datePicker.js +0 -671
- package/dist/cjs/assets/scripts/featuredIcon.js +0 -87
- package/dist/cjs/assets/scripts/fileInput/const/classNames.js +0 -25
- package/dist/cjs/assets/scripts/fileInput/const/index.js +0 -27
- package/dist/cjs/assets/scripts/fileInput/const/types.js +0 -13
- package/dist/cjs/assets/scripts/fileInput/fileInput.js +0 -78
- package/dist/cjs/assets/scripts/fileInput/fileInputModel.js +0 -53
- package/dist/cjs/assets/scripts/fileInput/fileInputView.js +0 -152
- package/dist/cjs/assets/scripts/fileInput/index.js +0 -44
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInput.js +0 -184
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputModel.js +0 -222
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputView.js +0 -356
- package/dist/cjs/assets/scripts/imageFileInput/const/classNames.js +0 -31
- package/dist/cjs/assets/scripts/imageFileInput/const/index.js +0 -27
- package/dist/cjs/assets/scripts/imageFileInput/const/types.js +0 -13
- package/dist/cjs/assets/scripts/imageFileInput/index.js +0 -44
- package/dist/cjs/assets/scripts/index.js +0 -32
- package/dist/cjs/assets/scripts/modal/Modal.js +0 -104
- package/dist/cjs/assets/scripts/modal/ModalActions.js +0 -116
- package/dist/cjs/assets/scripts/modal/ModalContent.js +0 -46
- package/dist/cjs/assets/scripts/modal/ModalHeader.js +0 -104
- package/dist/cjs/assets/scripts/modal/const/classNames.js +0 -33
- package/dist/cjs/assets/scripts/modal/const/index.js +0 -27
- package/dist/cjs/assets/scripts/modal/index.js +0 -61
- package/dist/cjs/assets/scripts/modal/utils/contentUtils.js +0 -35
- package/dist/cjs/assets/scripts/notification/FloatingNotification.js +0 -178
- package/dist/cjs/assets/scripts/notification/FullWidthNotification.js +0 -132
- package/dist/cjs/assets/scripts/notification/MessageNotification.js +0 -159
- package/dist/cjs/assets/scripts/notification/Notification.js +0 -101
- package/dist/cjs/assets/scripts/notification/const/classNames.js +0 -50
- package/dist/cjs/assets/scripts/notification/const/icons.js +0 -31
- package/dist/cjs/assets/scripts/notification/const/index.js +0 -87
- package/dist/cjs/assets/scripts/notification/const/sizes.js +0 -46
- package/dist/cjs/assets/scripts/notification/const/types.js +0 -14
- package/dist/cjs/assets/scripts/notification/index.js +0 -92
- package/dist/cjs/assets/scripts/notification/utils.js +0 -97
- package/dist/cjs/assets/scripts/progress-bar/ProgressBar.js +0 -271
- package/dist/cjs/assets/scripts/progress-bar/index.js +0 -12
- package/dist/cjs/assets/scripts/selectBox.js +0 -169
- package/dist/cjs/assets/scripts/shared/ButtonCloseX.js +0 -45
- package/dist/cjs/assets/scripts/tab.js +0 -40
- package/dist/cjs/assets/scripts/table/Table.js +0 -377
- package/dist/cjs/assets/scripts/table/const/classNames.js +0 -33
- package/dist/cjs/assets/scripts/table/const/index.js +0 -27
- package/dist/cjs/assets/scripts/table/index.js +0 -43
- package/dist/cjs/assets/scripts/tag/Tag.js +0 -261
- package/dist/cjs/assets/scripts/tag/const/classNames.js +0 -20
- package/dist/cjs/assets/scripts/tag/const/index.js +0 -38
- package/dist/cjs/assets/scripts/tag/const/sizes.js +0 -13
- package/dist/cjs/assets/scripts/tag/index.js +0 -44
- package/dist/cjs/assets/scripts/tooltip/Tooltip.js +0 -353
- package/dist/cjs/assets/scripts/tooltip/TooltipLayerManager.js +0 -82
- package/dist/cjs/assets/scripts/tooltip/const/classNames.js +0 -29
- package/dist/cjs/assets/scripts/tooltip/const/constants.js +0 -56
- package/dist/cjs/assets/scripts/tooltip/const/icons.js +0 -15
- package/dist/cjs/assets/scripts/tooltip/const/index.js +0 -123
- package/dist/cjs/assets/scripts/tooltip/const/templates.js +0 -66
- package/dist/cjs/assets/scripts/tooltip/const/types.js +0 -5
- package/dist/cjs/assets/scripts/tooltip/index.js +0 -57
- package/dist/cjs/assets/scripts/tooltip/utils.js +0 -40
- package/dist/cjs/assets/scripts/utils/debounce.js +0 -32
- package/dist/cjs/assets/scripts/utils/unifiedBox/domRenderer.js +0 -370
- package/dist/cjs/assets/scripts/utils/unifiedBox/dropdownModel.js +0 -285
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxController.js +0 -622
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +0 -473
- package/dist/cjs/src/components/badge/index.js +0 -16
- package/dist/cjs/src/components/badge/utils.js +0 -32
- package/dist/cjs/src/components/button/Button.js +0 -86
- package/dist/cjs/src/components/button-group/ButtonGroup.js +0 -97
- package/dist/cjs/src/components/combo-box/ComboBox.js +0 -291
- package/dist/cjs/src/components/date-picker/DatePicker.js +0 -529
- package/dist/cjs/src/components/date-picker/index.js +0 -27
- package/dist/cjs/src/components/dropdown/Dropdown.js +0 -164
- package/dist/cjs/src/components/empty-state/EmptyState.js +0 -41
- package/dist/cjs/src/components/file-input/FileInput.js +0 -183
- package/dist/cjs/src/components/horizontal-tab/HorizontalTab.js +0 -53
- package/dist/cjs/src/components/image-file-input/ImageFileInput.js +0 -201
- package/dist/cjs/src/components/image-file-input/components/ImagePreview.js +0 -36
- package/dist/cjs/src/components/image-file-input/index.js +0 -16
- package/dist/cjs/src/components/input-base/InputBase.js +0 -195
- package/dist/cjs/src/components/modal/Modal.js +0 -171
- package/dist/cjs/src/components/notification/FloatingNotification.js +0 -112
- package/dist/cjs/src/components/notification/FullWidthNotification.js +0 -134
- package/dist/cjs/src/components/notification/MessageNotification.js +0 -107
- package/dist/cjs/src/components/number-input/NumberInput.js +0 -112
- package/dist/cjs/src/components/pagination/NavButton.js +0 -70
- package/dist/cjs/src/components/progress-bar/index.js +0 -27
- package/dist/cjs/src/components/progress-bar/types.js +0 -5
- package/dist/cjs/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +0 -81
- package/dist/cjs/src/components/select/Select.js +0 -60
- package/dist/cjs/src/components/select-box/SelectBox.js +0 -260
- package/dist/cjs/src/components/slider/Slider.js +0 -61
- package/dist/cjs/src/components/switch/index.js +0 -12
- package/dist/cjs/src/components/table/types.js +0 -5
- package/dist/cjs/src/components/tag/Tag.js +0 -146
- package/dist/cjs/src/components/textarea/Textarea.js +0 -79
- package/dist/cjs/src/components/tooltip/Tooltip.js +0 -164
- package/dist/cjs/src/components/vertical-tab/VerticalTab.js +0 -48
- package/dist/esm/assets/scripts/baseBox.js +0 -139
- package/dist/esm/assets/scripts/comboBox.js +0 -130
- package/dist/esm/assets/scripts/datePicker.js +0 -663
- package/dist/esm/assets/scripts/featuredIcon.js +0 -80
- package/dist/esm/assets/scripts/fileInput/const/classNames.js +0 -16
- package/dist/esm/assets/scripts/fileInput/const/index.js +0 -2
- package/dist/esm/assets/scripts/fileInput/const/types.js +0 -7
- package/dist/esm/assets/scripts/fileInput/fileInput.js +0 -71
- package/dist/esm/assets/scripts/fileInput/fileInputModel.js +0 -46
- package/dist/esm/assets/scripts/fileInput/fileInputView.js +0 -145
- package/dist/esm/assets/scripts/fileInput/index.js +0 -9
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInput.js +0 -177
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputModel.js +0 -215
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputView.js +0 -349
- package/dist/esm/assets/scripts/imageFileInput/const/classNames.js +0 -20
- package/dist/esm/assets/scripts/imageFileInput/const/index.js +0 -2
- package/dist/esm/assets/scripts/imageFileInput/const/types.js +0 -7
- package/dist/esm/assets/scripts/imageFileInput/index.js +0 -9
- package/dist/esm/assets/scripts/index.js +0 -30
- package/dist/esm/assets/scripts/modal/Modal.js +0 -98
- package/dist/esm/assets/scripts/modal/ModalActions.js +0 -109
- package/dist/esm/assets/scripts/modal/ModalContent.js +0 -39
- package/dist/esm/assets/scripts/modal/ModalHeader.js +0 -97
- package/dist/esm/assets/scripts/modal/const/classNames.js +0 -23
- package/dist/esm/assets/scripts/modal/const/index.js +0 -2
- package/dist/esm/assets/scripts/modal/index.js +0 -15
- package/dist/esm/assets/scripts/modal/utils/contentUtils.js +0 -28
- package/dist/esm/assets/scripts/notification/FloatingNotification.js +0 -172
- package/dist/esm/assets/scripts/notification/FullWidthNotification.js +0 -125
- package/dist/esm/assets/scripts/notification/MessageNotification.js +0 -152
- package/dist/esm/assets/scripts/notification/Notification.js +0 -94
- package/dist/esm/assets/scripts/notification/const/classNames.js +0 -44
- package/dist/esm/assets/scripts/notification/const/icons.js +0 -25
- package/dist/esm/assets/scripts/notification/const/index.js +0 -4
- package/dist/esm/assets/scripts/notification/const/sizes.js +0 -40
- package/dist/esm/assets/scripts/notification/const/types.js +0 -8
- package/dist/esm/assets/scripts/notification/index.js +0 -11
- package/dist/esm/assets/scripts/notification/utils.js +0 -84
- package/dist/esm/assets/scripts/progress-bar/ProgressBar.js +0 -264
- package/dist/esm/assets/scripts/progress-bar/index.js +0 -1
- package/dist/esm/assets/scripts/selectBox.js +0 -162
- package/dist/esm/assets/scripts/shared/ButtonCloseX.js +0 -37
- package/dist/esm/assets/scripts/tab.js +0 -33
- package/dist/esm/assets/scripts/table/Table.js +0 -370
- package/dist/esm/assets/scripts/table/const/classNames.js +0 -27
- package/dist/esm/assets/scripts/table/const/index.js +0 -2
- package/dist/esm/assets/scripts/table/index.js +0 -8
- package/dist/esm/assets/scripts/tag/Tag.js +0 -254
- package/dist/esm/assets/scripts/tag/const/classNames.js +0 -12
- package/dist/esm/assets/scripts/tag/const/index.js +0 -3
- package/dist/esm/assets/scripts/tag/const/sizes.js +0 -7
- package/dist/esm/assets/scripts/tag/const/types.js +0 -1
- package/dist/esm/assets/scripts/tag/index.js +0 -9
- package/dist/esm/assets/scripts/tooltip/Tooltip.js +0 -346
- package/dist/esm/assets/scripts/tooltip/TooltipLayerManager.js +0 -75
- package/dist/esm/assets/scripts/tooltip/const/classNames.js +0 -23
- package/dist/esm/assets/scripts/tooltip/const/constants.js +0 -50
- package/dist/esm/assets/scripts/tooltip/const/icons.js +0 -9
- package/dist/esm/assets/scripts/tooltip/const/index.js +0 -4
- package/dist/esm/assets/scripts/tooltip/const/templates.js +0 -59
- package/dist/esm/assets/scripts/tooltip/const/types.js +0 -1
- package/dist/esm/assets/scripts/tooltip/index.js +0 -10
- package/dist/esm/assets/scripts/tooltip/utils.js +0 -34
- package/dist/esm/assets/scripts/utils/debounce.js +0 -26
- package/dist/esm/assets/scripts/utils/unifiedBox/domRenderer.js +0 -363
- package/dist/esm/assets/scripts/utils/unifiedBox/dropdownModel.js +0 -279
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxController.js +0 -615
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +0 -466
- package/dist/esm/src/components/badge/index.js +0 -1
- package/dist/esm/src/components/badge/utils.js +0 -26
- package/dist/esm/src/components/button/Button.js +0 -79
- package/dist/esm/src/components/button-group/ButtonGroup.js +0 -89
- package/dist/esm/src/components/combo-box/ComboBox.js +0 -285
- package/dist/esm/src/components/date-picker/DatePicker.js +0 -522
- package/dist/esm/src/components/date-picker/index.js +0 -2
- package/dist/esm/src/components/dropdown/Dropdown.js +0 -157
- package/dist/esm/src/components/empty-state/EmptyState.js +0 -35
- package/dist/esm/src/components/file-input/FileInput.js +0 -176
- package/dist/esm/src/components/horizontal-tab/HorizontalTab.js +0 -46
- package/dist/esm/src/components/image-file-input/ImageFileInput.js +0 -194
- package/dist/esm/src/components/image-file-input/components/ImagePreview.js +0 -29
- package/dist/esm/src/components/image-file-input/index.js +0 -1
- package/dist/esm/src/components/input-base/InputBase.js +0 -189
- package/dist/esm/src/components/modal/Modal.js +0 -164
- package/dist/esm/src/components/notification/FloatingNotification.js +0 -106
- package/dist/esm/src/components/notification/FullWidthNotification.js +0 -128
- package/dist/esm/src/components/notification/MessageNotification.js +0 -101
- package/dist/esm/src/components/number-input/NumberInput.js +0 -106
- package/dist/esm/src/components/pagination/NavButton.js +0 -63
- package/dist/esm/src/components/progress-bar/index.js +0 -2
- package/dist/esm/src/components/progress-bar/types.js +0 -1
- package/dist/esm/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +0 -75
- package/dist/esm/src/components/select/Select.js +0 -53
- package/dist/esm/src/components/select-box/SelectBox.js +0 -254
- package/dist/esm/src/components/slider/Slider.js +0 -54
- package/dist/esm/src/components/switch/index.js +0 -1
- package/dist/esm/src/components/table/types.js +0 -1
- package/dist/esm/src/components/tag/Tag.js +0 -139
- package/dist/esm/src/components/textarea/Textarea.js +0 -72
- package/dist/esm/src/components/tooltip/Tooltip.js +0 -156
- package/dist/esm/src/components/vertical-tab/VerticalTab.js +0 -40
- package/dist/temp/assets/scripts/baseBox.d.ts +0 -55
- package/dist/temp/assets/scripts/baseBox.js +0 -140
- package/dist/temp/assets/scripts/comboBox.d.ts +0 -60
- package/dist/temp/assets/scripts/comboBox.js +0 -132
- package/dist/temp/assets/scripts/datePicker.d.ts +0 -86
- package/dist/temp/assets/scripts/datePicker.js +0 -699
- package/dist/temp/assets/scripts/featuredIcon.d.ts +0 -22
- package/dist/temp/assets/scripts/featuredIcon.js +0 -79
- package/dist/temp/assets/scripts/fileInput/const/classNames.d.ts +0 -15
- package/dist/temp/assets/scripts/fileInput/const/classNames.js +0 -16
- package/dist/temp/assets/scripts/fileInput/const/index.d.ts +0 -2
- package/dist/temp/assets/scripts/fileInput/const/index.js +0 -2
- package/dist/temp/assets/scripts/fileInput/const/types.d.ts +0 -88
- package/dist/temp/assets/scripts/fileInput/const/types.js +0 -7
- package/dist/temp/assets/scripts/fileInput/fileInput.d.ts +0 -13
- package/dist/temp/assets/scripts/fileInput/fileInput.js +0 -71
- package/dist/temp/assets/scripts/fileInput/fileInputModel.d.ts +0 -12
- package/dist/temp/assets/scripts/fileInput/fileInputModel.js +0 -37
- package/dist/temp/assets/scripts/fileInput/fileInputView.d.ts +0 -42
- package/dist/temp/assets/scripts/fileInput/fileInputView.js +0 -145
- package/dist/temp/assets/scripts/fileInput/index.d.ts +0 -3
- package/dist/temp/assets/scripts/fileInput/index.js +0 -9
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.d.ts +0 -63
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.js +0 -180
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +0 -73
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.js +0 -214
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.d.ts +0 -79
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.js +0 -350
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.d.ts +0 -19
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.js +0 -20
- package/dist/temp/assets/scripts/imageFileInput/const/index.d.ts +0 -2
- package/dist/temp/assets/scripts/imageFileInput/const/index.js +0 -2
- package/dist/temp/assets/scripts/imageFileInput/const/types.d.ts +0 -125
- package/dist/temp/assets/scripts/imageFileInput/const/types.js +0 -7
- package/dist/temp/assets/scripts/imageFileInput/index.d.ts +0 -3
- package/dist/temp/assets/scripts/imageFileInput/index.js +0 -9
- package/dist/temp/assets/scripts/index.d.ts +0 -34
- package/dist/temp/assets/scripts/index.js +0 -30
- package/dist/temp/assets/scripts/modal/Modal.d.ts +0 -27
- package/dist/temp/assets/scripts/modal/Modal.js +0 -100
- package/dist/temp/assets/scripts/modal/ModalActions.d.ts +0 -18
- package/dist/temp/assets/scripts/modal/ModalActions.js +0 -117
- package/dist/temp/assets/scripts/modal/ModalContent.d.ts +0 -13
- package/dist/temp/assets/scripts/modal/ModalContent.js +0 -39
- package/dist/temp/assets/scripts/modal/ModalHeader.d.ts +0 -15
- package/dist/temp/assets/scripts/modal/ModalHeader.js +0 -96
- package/dist/temp/assets/scripts/modal/const/classNames.d.ts +0 -22
- package/dist/temp/assets/scripts/modal/const/classNames.js +0 -23
- package/dist/temp/assets/scripts/modal/const/index.d.ts +0 -2
- package/dist/temp/assets/scripts/modal/const/index.js +0 -2
- package/dist/temp/assets/scripts/modal/const/types.d.ts +0 -61
- package/dist/temp/assets/scripts/modal/index.d.ts +0 -7
- package/dist/temp/assets/scripts/modal/index.js +0 -15
- package/dist/temp/assets/scripts/modal/utils/contentUtils.d.ts +0 -10
- package/dist/temp/assets/scripts/modal/utils/contentUtils.js +0 -29
- package/dist/temp/assets/scripts/notification/FloatingNotification.d.ts +0 -24
- package/dist/temp/assets/scripts/notification/FloatingNotification.js +0 -157
- package/dist/temp/assets/scripts/notification/FullWidthNotification.d.ts +0 -21
- package/dist/temp/assets/scripts/notification/FullWidthNotification.js +0 -110
- package/dist/temp/assets/scripts/notification/MessageNotification.d.ts +0 -22
- package/dist/temp/assets/scripts/notification/MessageNotification.js +0 -140
- package/dist/temp/assets/scripts/notification/Notification.d.ts +0 -21
- package/dist/temp/assets/scripts/notification/Notification.js +0 -94
- package/dist/temp/assets/scripts/notification/const/classNames.d.ts +0 -43
- package/dist/temp/assets/scripts/notification/const/classNames.js +0 -44
- package/dist/temp/assets/scripts/notification/const/icons.d.ts +0 -25
- package/dist/temp/assets/scripts/notification/const/icons.js +0 -25
- package/dist/temp/assets/scripts/notification/const/index.d.ts +0 -5
- package/dist/temp/assets/scripts/notification/const/index.js +0 -4
- package/dist/temp/assets/scripts/notification/const/sizes.d.ts +0 -32
- package/dist/temp/assets/scripts/notification/const/sizes.js +0 -40
- package/dist/temp/assets/scripts/notification/const/types.d.ts +0 -19
- package/dist/temp/assets/scripts/notification/const/types.js +0 -8
- package/dist/temp/assets/scripts/notification/index.d.ts +0 -7
- package/dist/temp/assets/scripts/notification/index.js +0 -11
- package/dist/temp/assets/scripts/notification/utils.d.ts +0 -8
- package/dist/temp/assets/scripts/notification/utils.js +0 -89
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.d.ts +0 -67
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.js +0 -263
- package/dist/temp/assets/scripts/progress-bar/index.d.ts +0 -1
- package/dist/temp/assets/scripts/progress-bar/index.js +0 -1
- package/dist/temp/assets/scripts/selectBox.d.ts +0 -50
- package/dist/temp/assets/scripts/selectBox.js +0 -170
- package/dist/temp/assets/scripts/shared/ButtonCloseX.d.ts +0 -5
- package/dist/temp/assets/scripts/shared/ButtonCloseX.js +0 -33
- package/dist/temp/assets/scripts/tab.d.ts +0 -7
- package/dist/temp/assets/scripts/tab.js +0 -33
- package/dist/temp/assets/scripts/table/Table.d.ts +0 -41
- package/dist/temp/assets/scripts/table/Table.js +0 -378
- package/dist/temp/assets/scripts/table/const/classNames.d.ts +0 -27
- package/dist/temp/assets/scripts/table/const/classNames.js +0 -27
- package/dist/temp/assets/scripts/table/const/index.d.ts +0 -2
- package/dist/temp/assets/scripts/table/const/index.js +0 -2
- package/dist/temp/assets/scripts/table/const/types.d.ts +0 -23
- package/dist/temp/assets/scripts/table/index.d.ts +0 -3
- package/dist/temp/assets/scripts/table/index.js +0 -8
- package/dist/temp/assets/scripts/tag/Tag.d.ts +0 -27
- package/dist/temp/assets/scripts/tag/Tag.js +0 -259
- package/dist/temp/assets/scripts/tag/const/classNames.d.ts +0 -11
- package/dist/temp/assets/scripts/tag/const/classNames.js +0 -12
- package/dist/temp/assets/scripts/tag/const/index.d.ts +0 -3
- package/dist/temp/assets/scripts/tag/const/index.js +0 -3
- package/dist/temp/assets/scripts/tag/const/sizes.d.ts +0 -7
- package/dist/temp/assets/scripts/tag/const/sizes.js +0 -7
- package/dist/temp/assets/scripts/tag/const/types.d.ts +0 -33
- package/dist/temp/assets/scripts/tag/index.d.ts +0 -3
- package/dist/temp/assets/scripts/tag/index.js +0 -9
- package/dist/temp/assets/scripts/tooltip/Tooltip.d.ts +0 -54
- package/dist/temp/assets/scripts/tooltip/Tooltip.js +0 -335
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.d.ts +0 -21
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.js +0 -71
- package/dist/temp/assets/scripts/tooltip/const/classNames.d.ts +0 -17
- package/dist/temp/assets/scripts/tooltip/const/classNames.js +0 -23
- package/dist/temp/assets/scripts/tooltip/const/constants.d.ts +0 -33
- package/dist/temp/assets/scripts/tooltip/const/constants.js +0 -46
- package/dist/temp/assets/scripts/tooltip/const/icons.d.ts +0 -4
- package/dist/temp/assets/scripts/tooltip/const/icons.js +0 -9
- package/dist/temp/assets/scripts/tooltip/const/index.d.ts +0 -5
- package/dist/temp/assets/scripts/tooltip/const/index.js +0 -4
- package/dist/temp/assets/scripts/tooltip/const/templates.d.ts +0 -16
- package/dist/temp/assets/scripts/tooltip/const/templates.js +0 -59
- package/dist/temp/assets/scripts/tooltip/const/types.d.ts +0 -14
- package/dist/temp/assets/scripts/tooltip/index.d.ts +0 -6
- package/dist/temp/assets/scripts/tooltip/index.js +0 -10
- package/dist/temp/assets/scripts/tooltip/utils.d.ts +0 -2
- package/dist/temp/assets/scripts/tooltip/utils.js +0 -33
- package/dist/temp/assets/scripts/utils/debounce.d.ts +0 -8
- package/dist/temp/assets/scripts/utils/debounce.js +0 -23
- package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.d.ts +0 -107
- package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.js +0 -367
- package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.d.ts +0 -142
- package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.js +0 -286
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts +0 -156
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.js +0 -604
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts +0 -95
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +0 -482
- package/dist/temp/src/components/badge/Badge.d.ts +0 -18
- package/dist/temp/src/components/badge/index.d.ts +0 -1
- package/dist/temp/src/components/badge/index.js +0 -1
- package/dist/temp/src/components/badge/utils.d.ts +0 -8
- package/dist/temp/src/components/badge/utils.js +0 -15
- package/dist/temp/src/components/badge-group/BadgeGroup.d.ts +0 -18
- package/dist/temp/src/components/button/Button.d.ts +0 -35
- package/dist/temp/src/components/button/Button.js +0 -52
- package/dist/temp/src/components/button/ButtonCloseX.d.ts +0 -10
- package/dist/temp/src/components/button/ButtonStepper.d.ts +0 -9
- package/dist/temp/src/components/button-group/ButtonGroup.d.ts +0 -312
- package/dist/temp/src/components/button-group/ButtonGroup.js +0 -51
- package/dist/temp/src/components/checkbox/CheckboxInput.d.ts +0 -9
- package/dist/temp/src/components/combo-box/ComboBox.d.ts +0 -28
- package/dist/temp/src/components/combo-box/ComboBox.js +0 -166
- package/dist/temp/src/components/date-picker/CustomInput.d.ts +0 -10
- package/dist/temp/src/components/date-picker/DatePicker.d.ts +0 -28
- package/dist/temp/src/components/date-picker/DatePicker.js +0 -499
- package/dist/temp/src/components/date-picker/index.d.ts +0 -2
- package/dist/temp/src/components/date-picker/index.js +0 -2
- package/dist/temp/src/components/dot/Dot.d.ts +0 -24
- package/dist/temp/src/components/dropdown/Dropdown.d.ts +0 -52
- package/dist/temp/src/components/dropdown/Dropdown.js +0 -74
- package/dist/temp/src/components/empty-state/EmptyState.d.ts +0 -14
- package/dist/temp/src/components/empty-state/EmptyState.js +0 -7
- package/dist/temp/src/components/featured-icon/FeaturedIcon.d.ts +0 -15
- package/dist/temp/src/components/file-input/FileInput.js +0 -87
- package/dist/temp/src/components/horizontal-tab/HorizontalTab.d.ts +0 -12
- package/dist/temp/src/components/horizontal-tab/HorizontalTab.js +0 -24
- package/dist/temp/src/components/image-file-input/ImageFileInput.js +0 -96
- package/dist/temp/src/components/image-file-input/components/ImagePreview.js +0 -6
- package/dist/temp/src/components/image-file-input/index.d.ts +0 -1
- package/dist/temp/src/components/image-file-input/index.js +0 -1
- package/dist/temp/src/components/input-base/InputBase.d.ts +0 -55
- package/dist/temp/src/components/input-base/InputBase.js +0 -96
- package/dist/temp/src/components/modal/Modal.d.ts +0 -79
- package/dist/temp/src/components/modal/Modal.js +0 -75
- package/dist/temp/src/components/notification/FloatingNotification.js +0 -56
- package/dist/temp/src/components/notification/FullWidthNotification.js +0 -56
- package/dist/temp/src/components/notification/MessageNotification.d.ts +0 -41
- package/dist/temp/src/components/notification/MessageNotification.js +0 -34
- package/dist/temp/src/components/notification/Notification.d.ts +0 -72
- package/dist/temp/src/components/number-input/NumberInput.js +0 -68
- package/dist/temp/src/components/pagination/NavButton.d.ts +0 -31
- package/dist/temp/src/components/pagination/NavButton.js +0 -54
- package/dist/temp/src/components/progress-bar/index.d.ts +0 -2
- package/dist/temp/src/components/progress-bar/index.js +0 -2
- package/dist/temp/src/components/progress-bar/types.js +0 -1
- package/dist/temp/src/components/radio/RadioInput.d.ts +0 -8
- package/dist/temp/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.d.ts +0 -71
- package/dist/temp/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +0 -43
- package/dist/temp/src/components/select/Select.d.ts +0 -16
- package/dist/temp/src/components/select/Select.js +0 -10
- package/dist/temp/src/components/select-box/SelectBox.d.ts +0 -27
- package/dist/temp/src/components/select-box/SelectBox.js +0 -130
- package/dist/temp/src/components/slider/Slider.d.ts +0 -14
- package/dist/temp/src/components/slider/Slider.js +0 -43
- package/dist/temp/src/components/spinner/Spinner.d.ts +0 -9
- package/dist/temp/src/components/switch/Switch.d.ts +0 -22
- package/dist/temp/src/components/switch/index.d.ts +0 -2
- package/dist/temp/src/components/switch/index.js +0 -1
- package/dist/temp/src/components/table/types.js +0 -1
- package/dist/temp/src/components/tag/Tag.d.ts +0 -17
- package/dist/temp/src/components/tag/Tag.js +0 -96
- package/dist/temp/src/components/textarea/Textarea.d.ts +0 -14
- package/dist/temp/src/components/textarea/Textarea.js +0 -34
- package/dist/temp/src/components/tooltip/Tooltip.d.ts +0 -15
- package/dist/temp/src/components/tooltip/Tooltip.js +0 -104
- package/dist/temp/src/components/vertical-tab/VerticalTab.d.ts +0 -9
- package/dist/temp/src/components/vertical-tab/VerticalTab.js +0 -20
- package/dist/types/assets/scripts/baseBox.d.ts +0 -55
- package/dist/types/assets/scripts/comboBox.d.ts +0 -60
- package/dist/types/assets/scripts/datePicker.d.ts +0 -86
- package/dist/types/assets/scripts/featuredIcon.d.ts +0 -22
- package/dist/types/assets/scripts/fileInput/const/classNames.d.ts +0 -15
- package/dist/types/assets/scripts/fileInput/const/index.d.ts +0 -2
- package/dist/types/assets/scripts/fileInput/const/types.d.ts +0 -88
- package/dist/types/assets/scripts/fileInput/fileInput.d.ts +0 -13
- package/dist/types/assets/scripts/fileInput/fileInputModel.d.ts +0 -12
- package/dist/types/assets/scripts/fileInput/fileInputView.d.ts +0 -42
- package/dist/types/assets/scripts/fileInput/index.d.ts +0 -3
- package/dist/types/assets/scripts/imageFileInput/ImageFileInput.d.ts +0 -63
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +0 -73
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputView.d.ts +0 -79
- package/dist/types/assets/scripts/imageFileInput/const/classNames.d.ts +0 -19
- package/dist/types/assets/scripts/imageFileInput/const/index.d.ts +0 -2
- package/dist/types/assets/scripts/imageFileInput/const/types.d.ts +0 -125
- package/dist/types/assets/scripts/imageFileInput/index.d.ts +0 -3
- package/dist/types/assets/scripts/index.d.ts +0 -34
- package/dist/types/assets/scripts/modal/Modal.d.ts +0 -27
- package/dist/types/assets/scripts/modal/ModalActions.d.ts +0 -18
- package/dist/types/assets/scripts/modal/ModalContent.d.ts +0 -13
- package/dist/types/assets/scripts/modal/ModalHeader.d.ts +0 -15
- package/dist/types/assets/scripts/modal/const/classNames.d.ts +0 -22
- package/dist/types/assets/scripts/modal/const/index.d.ts +0 -2
- package/dist/types/assets/scripts/modal/const/types.d.ts +0 -61
- package/dist/types/assets/scripts/modal/index.d.ts +0 -7
- package/dist/types/assets/scripts/modal/utils/contentUtils.d.ts +0 -10
- package/dist/types/assets/scripts/notification/FloatingNotification.d.ts +0 -24
- package/dist/types/assets/scripts/notification/FullWidthNotification.d.ts +0 -21
- package/dist/types/assets/scripts/notification/MessageNotification.d.ts +0 -22
- package/dist/types/assets/scripts/notification/Notification.d.ts +0 -21
- package/dist/types/assets/scripts/notification/const/classNames.d.ts +0 -43
- package/dist/types/assets/scripts/notification/const/icons.d.ts +0 -25
- package/dist/types/assets/scripts/notification/const/index.d.ts +0 -5
- package/dist/types/assets/scripts/notification/const/sizes.d.ts +0 -32
- package/dist/types/assets/scripts/notification/const/types.d.ts +0 -19
- package/dist/types/assets/scripts/notification/index.d.ts +0 -7
- package/dist/types/assets/scripts/notification/utils.d.ts +0 -8
- package/dist/types/assets/scripts/progress-bar/ProgressBar.d.ts +0 -67
- package/dist/types/assets/scripts/progress-bar/index.d.ts +0 -1
- package/dist/types/assets/scripts/selectBox.d.ts +0 -50
- package/dist/types/assets/scripts/shared/ButtonCloseX.d.ts +0 -5
- package/dist/types/assets/scripts/tab.d.ts +0 -7
- package/dist/types/assets/scripts/table/Table.d.ts +0 -41
- package/dist/types/assets/scripts/table/const/classNames.d.ts +0 -27
- package/dist/types/assets/scripts/table/const/index.d.ts +0 -2
- package/dist/types/assets/scripts/table/const/types.d.ts +0 -23
- package/dist/types/assets/scripts/table/index.d.ts +0 -3
- package/dist/types/assets/scripts/tag/Tag.d.ts +0 -27
- package/dist/types/assets/scripts/tag/const/classNames.d.ts +0 -11
- package/dist/types/assets/scripts/tag/const/index.d.ts +0 -3
- package/dist/types/assets/scripts/tag/const/sizes.d.ts +0 -7
- package/dist/types/assets/scripts/tag/const/types.d.ts +0 -33
- package/dist/types/assets/scripts/tag/index.d.ts +0 -3
- package/dist/types/assets/scripts/tooltip/Tooltip.d.ts +0 -54
- package/dist/types/assets/scripts/tooltip/TooltipLayerManager.d.ts +0 -21
- package/dist/types/assets/scripts/tooltip/const/classNames.d.ts +0 -17
- package/dist/types/assets/scripts/tooltip/const/constants.d.ts +0 -33
- package/dist/types/assets/scripts/tooltip/const/icons.d.ts +0 -4
- package/dist/types/assets/scripts/tooltip/const/index.d.ts +0 -5
- package/dist/types/assets/scripts/tooltip/const/templates.d.ts +0 -16
- package/dist/types/assets/scripts/tooltip/const/types.d.ts +0 -14
- package/dist/types/assets/scripts/tooltip/index.d.ts +0 -6
- package/dist/types/assets/scripts/tooltip/utils.d.ts +0 -2
- package/dist/types/assets/scripts/utils/debounce.d.ts +0 -8
- package/dist/types/assets/scripts/utils/unifiedBox/domRenderer.d.ts +0 -107
- package/dist/types/assets/scripts/utils/unifiedBox/dropdownModel.d.ts +0 -142
- package/dist/types/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts +0 -156
- package/dist/types/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts +0 -95
- package/dist/types/src/components/badge/Badge.d.ts +0 -18
- package/dist/types/src/components/badge/index.d.ts +0 -1
- package/dist/types/src/components/badge/utils.d.ts +0 -8
- package/dist/types/src/components/badge-group/BadgeGroup.d.ts +0 -18
- package/dist/types/src/components/button/Button.d.ts +0 -35
- package/dist/types/src/components/button/ButtonCloseX.d.ts +0 -10
- package/dist/types/src/components/button/ButtonStepper.d.ts +0 -9
- package/dist/types/src/components/button-group/ButtonGroup.d.ts +0 -312
- package/dist/types/src/components/checkbox/CheckboxInput.d.ts +0 -9
- package/dist/types/src/components/combo-box/ComboBox.d.ts +0 -28
- package/dist/types/src/components/date-picker/CustomInput.d.ts +0 -10
- package/dist/types/src/components/date-picker/DatePicker.d.ts +0 -28
- package/dist/types/src/components/date-picker/index.d.ts +0 -2
- package/dist/types/src/components/dot/Dot.d.ts +0 -24
- package/dist/types/src/components/dropdown/Dropdown.d.ts +0 -52
- package/dist/types/src/components/empty-state/EmptyState.d.ts +0 -14
- package/dist/types/src/components/featured-icon/FeaturedIcon.d.ts +0 -15
- package/dist/types/src/components/horizontal-tab/HorizontalTab.d.ts +0 -12
- package/dist/types/src/components/image-file-input/index.d.ts +0 -1
- package/dist/types/src/components/input-base/InputBase.d.ts +0 -55
- package/dist/types/src/components/modal/Modal.d.ts +0 -79
- package/dist/types/src/components/notification/MessageNotification.d.ts +0 -41
- package/dist/types/src/components/notification/Notification.d.ts +0 -72
- package/dist/types/src/components/pagination/NavButton.d.ts +0 -31
- package/dist/types/src/components/progress-bar/index.d.ts +0 -2
- package/dist/types/src/components/radio/RadioInput.d.ts +0 -8
- package/dist/types/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.d.ts +0 -71
- package/dist/types/src/components/select/Select.d.ts +0 -16
- package/dist/types/src/components/select-box/SelectBox.d.ts +0 -27
- package/dist/types/src/components/slider/Slider.d.ts +0 -14
- package/dist/types/src/components/spinner/Spinner.d.ts +0 -9
- package/dist/types/src/components/switch/Switch.d.ts +0 -22
- package/dist/types/src/components/switch/index.d.ts +0 -2
- package/dist/types/src/components/tag/Tag.d.ts +0 -17
- package/dist/types/src/components/textarea/Textarea.d.ts +0 -14
- package/dist/types/src/components/tooltip/Tooltip.d.ts +0 -15
- package/dist/types/src/components/vertical-tab/VerticalTab.d.ts +0 -9
- /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/{assets/scripts/modal/const → src/components/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-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}/hooks/useProgressBar.js +0 -0
- /package/dist/cjs/{assets/scripts/table/const → src/components/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}/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/{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/{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/cjs/{assets/scripts/tag/const/types.js → src/types/component-meta.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/{assets/scripts/modal/const → src/components/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-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}/hooks/useProgressBar.js +0 -0
- /package/dist/esm/{assets/scripts/table/const → src/components/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}/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/{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/{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/{assets/scripts/modal/const → src/components/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-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}/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}/types.d.ts +0 -0
- /package/dist/temp/{assets/scripts/table/const → src/components/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.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}/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/{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/{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/{assets/scripts/tag/const/types.js → src/components/overlays/dropdown/__tests__/utils.test.d.ts} +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}/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-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}/hooks/useProgressBar.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}/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}/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/{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/{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/{temp/assets/scripts/tooltip/const/types.js → types/src/components/overlays/dropdown/__tests__/utils.test.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}/index.d.ts +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { type ComponentPropsWithRef, type ReactNode } from 'react';
|
|
2
|
+
import type { UseFormRegisterReturn } from 'react-hook-form';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { OptionChangeHandler, OptionType, OptionValue } from '../../../types/dropdown';
|
|
5
|
+
declare const defaultMaxHeight = 275;
|
|
6
|
+
interface ComboBoxProps extends Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChange'> {
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
hintText?: string;
|
|
10
|
+
destructive?: boolean;
|
|
11
|
+
size?: Extract<Size, 'xs' | 'sm'>;
|
|
12
|
+
optionItems?: OptionType[];
|
|
13
|
+
value?: OptionValue;
|
|
14
|
+
onChange?: OptionChangeHandler;
|
|
15
|
+
onSearch?: (searchValue: string) => void;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
register?: UseFormRegisterReturn;
|
|
18
|
+
maxHeight?: number;
|
|
19
|
+
searchValue?: string;
|
|
20
|
+
label?: string;
|
|
21
|
+
required?: boolean;
|
|
22
|
+
multiple?: boolean;
|
|
23
|
+
showFooterButtons?: boolean;
|
|
24
|
+
onEdit?: () => void;
|
|
25
|
+
}
|
|
26
|
+
declare const ComboBox: import("react").ForwardRefExoticComponent<Omit<ComboBoxProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
27
|
+
export { defaultMaxHeight, ComboBox };
|
|
28
|
+
export type { ComboBoxProps };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type InputHTMLAttributes } from 'react';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
interface CustomInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
iconName: 'calendar' | 'clock';
|
|
6
|
+
iconSize: Extract<Size, 'xs' | 'sm'>;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const CustomInput: import("react").ForwardRefExoticComponent<CustomInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
10
|
+
export { CustomInput };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { DateOption, Options } from 'flatpickr/dist/types/options';
|
|
2
|
+
import { type DateTimePickerHandle, type DateTimePickerProps } from 'react-flatpickr';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
export type DatePickerProps = {
|
|
5
|
+
size?: Extract<Size, 'xs' | 'sm'>;
|
|
6
|
+
shouldFocus?: boolean;
|
|
7
|
+
currentDate: string;
|
|
8
|
+
datePickerOptions?: Options;
|
|
9
|
+
destructive?: string;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
isEndDate?: boolean;
|
|
12
|
+
className?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 캘린더를 body에 포탈 마운트합니다.
|
|
15
|
+
* overflow: auto/scroll/hidden이 적용된 스크롤 컨테이너 안에서
|
|
16
|
+
* 캘린더가 잘리는 문제를 해결합니다.
|
|
17
|
+
*/
|
|
18
|
+
portal?: boolean;
|
|
19
|
+
onChangeDate: (date: string) => void;
|
|
20
|
+
onValidationError?: (error: {
|
|
21
|
+
date: Date;
|
|
22
|
+
minDate?: DateOption;
|
|
23
|
+
maxDate?: DateOption;
|
|
24
|
+
violations: Array<'minDate' | 'maxDate'>;
|
|
25
|
+
previousDate?: Date;
|
|
26
|
+
}) => void;
|
|
27
|
+
} & Omit<DateTimePickerProps, 'size' | 'options' | 'value'>;
|
|
28
|
+
export declare const DatePicker: import("react").ForwardRefExoticComponent<Omit<DatePickerProps, "ref"> & import("react").RefAttributes<DateTimePickerHandle>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ImagePreview';
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import { COLOR } from '../../../../constant/color';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
5
|
+
interface InputSideButtonSlot {
|
|
6
|
+
type: 'button';
|
|
7
|
+
label: string;
|
|
8
|
+
isSubmit?: boolean;
|
|
9
|
+
onClick: () => void;
|
|
10
|
+
}
|
|
11
|
+
interface InputSideTextSlot {
|
|
12
|
+
type: 'text';
|
|
13
|
+
text: string;
|
|
14
|
+
}
|
|
15
|
+
interface InputSideIconSlot {
|
|
16
|
+
type: 'icon';
|
|
17
|
+
icon: SlotIconComponent;
|
|
18
|
+
size?: number;
|
|
19
|
+
color?: keyof typeof COLOR;
|
|
20
|
+
className?: string;
|
|
21
|
+
}
|
|
22
|
+
interface InputSideCustomSlot {
|
|
23
|
+
type: 'custom';
|
|
24
|
+
children: React.ReactNode;
|
|
25
|
+
placement?: 'inside' | 'outside';
|
|
26
|
+
}
|
|
27
|
+
type InputLeadingSlotType = InputSideTextSlot | InputSideIconSlot | InputSideCustomSlot;
|
|
28
|
+
type InputTrailingSlotType = InputSideButtonSlot | InputSideIconSlot | InputSideCustomSlot;
|
|
29
|
+
interface InputBaseCommonProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
30
|
+
required?: boolean;
|
|
31
|
+
label?: string;
|
|
32
|
+
hintText?: string;
|
|
33
|
+
size?: Extract<Size, 'xs' | 'sm'>;
|
|
34
|
+
disabled?: boolean;
|
|
35
|
+
fullWidth?: boolean;
|
|
36
|
+
validation?: boolean;
|
|
37
|
+
destructive?: boolean;
|
|
38
|
+
leadingElement?: InputLeadingSlotType;
|
|
39
|
+
trailingElement?: InputTrailingSlotType;
|
|
40
|
+
showHelpIcon?: boolean;
|
|
41
|
+
showTextCount?: boolean;
|
|
42
|
+
maxLength?: number;
|
|
43
|
+
}
|
|
44
|
+
interface NoneClearableInputBaseProps extends InputBaseCommonProps {
|
|
45
|
+
clearText?: never;
|
|
46
|
+
onClearText?: never;
|
|
47
|
+
}
|
|
48
|
+
interface ClearableInputBaseProps extends InputBaseCommonProps {
|
|
49
|
+
clearText: boolean;
|
|
50
|
+
onClearText: () => void;
|
|
51
|
+
}
|
|
52
|
+
type InputBaseProps = NoneClearableInputBaseProps | ClearableInputBaseProps;
|
|
53
|
+
declare const InputBase: React.ForwardRefExoticComponent<InputBaseProps & React.RefAttributes<HTMLInputElement>>;
|
|
54
|
+
export type { InputBaseProps };
|
|
55
|
+
export { InputBase };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type ChangeEvent, type ComponentPropsWithRef } from 'react';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
export interface RadioInputProps extends Omit<ComponentPropsWithRef<'input'>, 'size' | 'ref'> {
|
|
4
|
+
size?: Extract<Size, 'xs' | 'sm'>;
|
|
5
|
+
destructive?: boolean;
|
|
6
|
+
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const RadioInput: import("react").ForwardRefExoticComponent<RadioInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { type Dispatch, type SetStateAction } from 'react';
|
|
2
|
+
import { PERIOD_ITEM, type PeriodItemMap } from '../../../constant/date-picker';
|
|
3
|
+
import { type RangeDatePickerProps } from '../range-date-picker/RangeDatePicker';
|
|
4
|
+
type PeriodKeyType = keyof typeof PERIOD_ITEM;
|
|
5
|
+
type RangeDatePickerWithButtonsProps<T extends PeriodItemMap = typeof PERIOD_ITEM> = {
|
|
6
|
+
useYesterdayAsEndDate?: boolean;
|
|
7
|
+
currentButtonId: keyof T & string;
|
|
8
|
+
setCurrentButtonId: Dispatch<SetStateAction<keyof T & string>>;
|
|
9
|
+
periodKeys: (keyof T & string)[];
|
|
10
|
+
periodItems?: T;
|
|
11
|
+
size?: 'xs' | 'sm';
|
|
12
|
+
} & RangeDatePickerProps;
|
|
13
|
+
declare const RangeDatePickerWithButtons: <T extends PeriodItemMap = {
|
|
14
|
+
TODAY: {
|
|
15
|
+
text: string;
|
|
16
|
+
period: number;
|
|
17
|
+
unit: string;
|
|
18
|
+
};
|
|
19
|
+
YESTERDAY: {
|
|
20
|
+
text: string;
|
|
21
|
+
period: number;
|
|
22
|
+
unit: string;
|
|
23
|
+
};
|
|
24
|
+
'3DAYS': {
|
|
25
|
+
text: string;
|
|
26
|
+
period: number;
|
|
27
|
+
unit: string;
|
|
28
|
+
};
|
|
29
|
+
'7DAYS': {
|
|
30
|
+
text: string;
|
|
31
|
+
period: number;
|
|
32
|
+
unit: string;
|
|
33
|
+
};
|
|
34
|
+
'1WEEK': {
|
|
35
|
+
text: string;
|
|
36
|
+
period: number;
|
|
37
|
+
unit: string;
|
|
38
|
+
};
|
|
39
|
+
'15DAYS': {
|
|
40
|
+
text: string;
|
|
41
|
+
period: number;
|
|
42
|
+
unit: string;
|
|
43
|
+
};
|
|
44
|
+
'1MONTHS': {
|
|
45
|
+
text: string;
|
|
46
|
+
period: number;
|
|
47
|
+
unit: string;
|
|
48
|
+
};
|
|
49
|
+
'3MONTHS': {
|
|
50
|
+
text: string;
|
|
51
|
+
period: number;
|
|
52
|
+
unit: string;
|
|
53
|
+
};
|
|
54
|
+
'1YEAR': {
|
|
55
|
+
text: string;
|
|
56
|
+
period: number;
|
|
57
|
+
unit: string;
|
|
58
|
+
};
|
|
59
|
+
ENTIRE: {
|
|
60
|
+
text: string;
|
|
61
|
+
period: number;
|
|
62
|
+
unit: null;
|
|
63
|
+
};
|
|
64
|
+
NONE: {
|
|
65
|
+
text: string;
|
|
66
|
+
period: number;
|
|
67
|
+
unit: null;
|
|
68
|
+
};
|
|
69
|
+
}>({ useYesterdayAsEndDate, size, currentButtonId, setCurrentButtonId, startDateOptions, endDateOptions, validationOption, periodKeys, periodItems, onDateValidation, }: RangeDatePickerWithButtonsProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
70
|
+
export type { PeriodKeyType };
|
|
71
|
+
export { RangeDatePickerWithButtons };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type ComponentPropsWithRef, type ReactNode } from 'react';
|
|
2
|
+
import type { UseFormRegisterReturn } from 'react-hook-form';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { OptionType } from '../../../types/dropdown';
|
|
5
|
+
export interface SelectProps extends Omit<ComponentPropsWithRef<'select'>, 'size'> {
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
disabledPlaceholder?: boolean;
|
|
8
|
+
hintText?: string;
|
|
9
|
+
destructive?: boolean;
|
|
10
|
+
size?: Extract<Size, 'xs' | 'sm' | 'md'>;
|
|
11
|
+
optionItems?: OptionType[];
|
|
12
|
+
register?: UseFormRegisterReturn;
|
|
13
|
+
type?: 'default' | 'simple';
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
}
|
|
16
|
+
export declare const Select: import("react").ForwardRefExoticComponent<Omit<SelectProps, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { type ComponentPropsWithRef, type ReactNode } from 'react';
|
|
2
|
+
import type { UseFormRegisterReturn } from 'react-hook-form';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
import type { OptionChangeHandler, OptionType, OptionValue } from '../../../types/dropdown';
|
|
5
|
+
declare const DEFAULT_MAX_HEIGHT = 275;
|
|
6
|
+
type SelectBoxProps = Omit<ComponentPropsWithRef<'div'>, 'size' | 'onChange'> & {
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
disabledPlaceholder?: boolean;
|
|
10
|
+
hintText?: string;
|
|
11
|
+
destructive?: boolean;
|
|
12
|
+
size?: Extract<Size, 'xs' | 'sm' | 'md'>;
|
|
13
|
+
autoWidth?: boolean;
|
|
14
|
+
type?: 'default' | 'simple';
|
|
15
|
+
optionItems?: OptionType[];
|
|
16
|
+
value?: OptionValue;
|
|
17
|
+
onChange?: OptionChangeHandler;
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
register?: UseFormRegisterReturn;
|
|
20
|
+
maxHeight?: number;
|
|
21
|
+
multiple?: boolean;
|
|
22
|
+
onEdit?: () => void;
|
|
23
|
+
align?: 'left' | 'right';
|
|
24
|
+
};
|
|
25
|
+
declare const SelectBox: import("react").ForwardRefExoticComponent<Omit<SelectBoxProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
26
|
+
export type { SelectBoxProps };
|
|
27
|
+
export { DEFAULT_MAX_HEIGHT, SelectBox };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type SliderOptions } from '../../../../assets/scripts/slider';
|
|
2
|
+
export type SliderLabelPosition = SliderOptions['labelPosition'];
|
|
3
|
+
export interface SliderProps {
|
|
4
|
+
min?: number;
|
|
5
|
+
max?: number;
|
|
6
|
+
step?: number;
|
|
7
|
+
value?: number | [number, number];
|
|
8
|
+
onChange?: (value: number | [number, number]) => void;
|
|
9
|
+
labelPosition?: SliderLabelPosition;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const Slider: ({ min, max, step, value, onChange, labelPosition, disabled, className, }: SliderProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default Slider;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type ReactNode, type Ref } from 'react';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
type SwitchOption = {
|
|
4
|
+
label: ReactNode;
|
|
5
|
+
value: string | boolean;
|
|
6
|
+
};
|
|
7
|
+
type SwitchSize = Extract<Size, 'xxs' | 'xs' | 'sm' | 'md'>;
|
|
8
|
+
type SwitchProps = {
|
|
9
|
+
size?: SwitchSize;
|
|
10
|
+
left: SwitchOption;
|
|
11
|
+
right: SwitchOption;
|
|
12
|
+
onChange?: (value: string | boolean) => void;
|
|
13
|
+
name: string;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
value?: string | boolean;
|
|
16
|
+
defaultValue?: string | boolean;
|
|
17
|
+
className?: string;
|
|
18
|
+
refs?: [Ref<HTMLInputElement>, Ref<HTMLInputElement>];
|
|
19
|
+
};
|
|
20
|
+
declare const Switch: import("react").ForwardRefExoticComponent<SwitchProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
21
|
+
export type { SwitchSize, SwitchProps };
|
|
22
|
+
export { Switch };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Switch';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type ComponentPropsWithRef } from 'react';
|
|
2
|
+
import type { Size } from '../../../../constant/size';
|
|
3
|
+
interface TextareaProps extends ComponentPropsWithRef<'textarea'> {
|
|
4
|
+
className?: string;
|
|
5
|
+
size?: Extract<Size, 'xs' | 'sm'>;
|
|
6
|
+
label?: string;
|
|
7
|
+
hintText?: string;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
destructive?: boolean;
|
|
11
|
+
characterCount?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare const Textarea: import("react").ForwardRefExoticComponent<Omit<TextareaProps, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { type HTMLAttributes } from 'react';
|
|
2
|
+
import type { ColorTone } from '../../../../constant/color';
|
|
3
|
+
import type { Size } from '../../../../constant/size';
|
|
4
|
+
type DotColor = Extract<ColorTone, 'neutral' | 'error' | 'warning' | 'success' | 'blue' | 'pink' | 'disabled'>;
|
|
5
|
+
type DotSize = Extract<Size, 'sm' | 'md' | 'lg'>;
|
|
6
|
+
interface DotProps extends Omit<HTMLAttributes<HTMLSpanElement>, 'color'> {
|
|
7
|
+
/**
|
|
8
|
+
* The color of the dot
|
|
9
|
+
* @default 'success'
|
|
10
|
+
*/
|
|
11
|
+
color?: DotColor;
|
|
12
|
+
/**
|
|
13
|
+
* The size of the dot
|
|
14
|
+
* @default 'md'
|
|
15
|
+
*/
|
|
16
|
+
size?: DotSize;
|
|
17
|
+
/**
|
|
18
|
+
* Additional class names
|
|
19
|
+
*/
|
|
20
|
+
className?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const Dot: import("react").ForwardRefExoticComponent<DotProps & import("react").RefAttributes<HTMLSpanElement>>;
|
|
23
|
+
export type { DotColor, DotSize, DotProps };
|
|
24
|
+
export { Dot };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type ComponentPropsWithoutRef } from 'react';
|
|
2
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
3
|
+
type FeaturedIconTheme = 'light-circle' | 'dark-circle' | 'outline-circle' | 'square-outline';
|
|
4
|
+
type FeaturedIconColor = 'neutral' | 'error' | 'warning' | 'success';
|
|
5
|
+
type FeaturedIconSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
6
|
+
interface FeaturedIconProps extends Omit<ComponentPropsWithoutRef<'div'>, 'color'> {
|
|
7
|
+
icon: SlotIconComponent;
|
|
8
|
+
theme?: FeaturedIconTheme;
|
|
9
|
+
color?: FeaturedIconColor;
|
|
10
|
+
size?: FeaturedIconSize;
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
declare const FeaturedIcon: import("react").ForwardRefExoticComponent<FeaturedIconProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export type { FeaturedIconTheme, FeaturedIconColor, FeaturedIconSize, FeaturedIconProps };
|
|
15
|
+
export { FeaturedIcon };
|
|
@@ -1,45 +1,45 @@
|
|
|
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/divider';
|
|
35
|
+
export * from './navigation/bread-crumb';
|
|
36
|
+
export * from './navigation/horizontal-tab';
|
|
37
|
+
export * from './navigation/pagination';
|
|
38
|
+
export * from './navigation/vertical-tab';
|
|
39
|
+
export * from './overlays/dropdown';
|
|
40
|
+
export * from './overlays/modal';
|
|
41
|
+
export * from './overlays/notification';
|
|
42
|
+
export * from './overlays/tooltip';
|
|
34
43
|
export * from './select-dropdown';
|
|
35
44
|
export * from './shared';
|
|
36
|
-
export * from './slider';
|
|
37
|
-
export * from './spinner';
|
|
38
|
-
export * from './switch';
|
|
39
45
|
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,12 @@
|
|
|
1
|
+
import { type TabButtonProps, type TabSize, type TabType } from '../../tab/TabButton';
|
|
2
|
+
type HorizontalTabProps = {
|
|
3
|
+
type?: Exclude<TabType, 'line-vertical'>;
|
|
4
|
+
size?: TabSize;
|
|
5
|
+
activeTab?: string;
|
|
6
|
+
fullWidth?: boolean;
|
|
7
|
+
menus?: TabButtonProps[];
|
|
8
|
+
className?: string;
|
|
9
|
+
};
|
|
10
|
+
declare const HorizontalTab: ({ type, size, activeTab, fullWidth, menus, className, }: HorizontalTabProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
11
|
+
export type { HorizontalTabProps };
|
|
12
|
+
export { HorizontalTab };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
2
|
+
declare const NAV_BUTTON_CONFIG: {
|
|
3
|
+
readonly first: {
|
|
4
|
+
readonly label: "처음";
|
|
5
|
+
readonly className: "ncua-pagination__first";
|
|
6
|
+
readonly getIcon: (_isPC: boolean) => SlotIconComponent;
|
|
7
|
+
};
|
|
8
|
+
readonly prev: {
|
|
9
|
+
readonly label: "이전";
|
|
10
|
+
readonly className: "ncua-pagination__before";
|
|
11
|
+
readonly getIcon: (isPC: boolean) => SlotIconComponent;
|
|
12
|
+
};
|
|
13
|
+
readonly next: {
|
|
14
|
+
readonly label: "다음";
|
|
15
|
+
readonly className: "ncua-pagination__next";
|
|
16
|
+
readonly getIcon: (isPC: boolean) => SlotIconComponent;
|
|
17
|
+
};
|
|
18
|
+
readonly last: {
|
|
19
|
+
readonly label: "마지막";
|
|
20
|
+
readonly className: "ncua-pagination__last";
|
|
21
|
+
readonly getIcon: (_isPC: boolean) => SlotIconComponent;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export declare const NavButton: ({ type, breakPoint, noPrev, noNext, onClick, }: {
|
|
25
|
+
type: keyof typeof NAV_BUTTON_CONFIG;
|
|
26
|
+
breakPoint: 'pc' | 'mo';
|
|
27
|
+
noPrev: boolean;
|
|
28
|
+
noNext: boolean;
|
|
29
|
+
onClick: () => void;
|
|
30
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type TabButtonProps } from '../../tab/TabButton';
|
|
2
|
+
export type VerticalTabProps = {
|
|
3
|
+
type?: 'button-primary' | 'button-white' | 'line-vertical';
|
|
4
|
+
breakPoint?: 'mobile' | 'pc';
|
|
5
|
+
activeTab?: string;
|
|
6
|
+
menus?: TabButtonProps[];
|
|
7
|
+
onSelect?: (value: string) => void;
|
|
8
|
+
};
|
|
9
|
+
export declare const VerticalTab: ({ type, breakPoint, activeTab, menus, onSelect, }: VerticalTabProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import type { SlotIconComponent } from '../../../types/side-slot';
|
|
2
|
+
export type AvatarTrigger = {
|
|
3
|
+
type: 'avatar';
|
|
4
|
+
avatar: string;
|
|
5
|
+
};
|
|
6
|
+
export type ButtonTrigger = {
|
|
7
|
+
type: 'button';
|
|
8
|
+
text: string;
|
|
9
|
+
};
|
|
10
|
+
export type IconTrigger = {
|
|
11
|
+
type: 'icon';
|
|
12
|
+
icon?: SlotIconComponent;
|
|
13
|
+
};
|
|
14
|
+
export type CustomTrigger = {
|
|
15
|
+
type: 'custom';
|
|
16
|
+
children: React.ReactNode;
|
|
17
|
+
};
|
|
18
|
+
export type DropdownItemType = {
|
|
19
|
+
id: string;
|
|
20
|
+
text: string;
|
|
21
|
+
icon?: SlotIconComponent;
|
|
22
|
+
shortcut?: string;
|
|
23
|
+
onClick?: () => void;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
type?: 'default' | 'danger';
|
|
26
|
+
className?: string;
|
|
27
|
+
visible?: boolean;
|
|
28
|
+
required?: boolean;
|
|
29
|
+
};
|
|
30
|
+
export type DropdownGroup = {
|
|
31
|
+
items: DropdownItemType[];
|
|
32
|
+
sortable?: boolean;
|
|
33
|
+
};
|
|
34
|
+
export type AvatarHeader = {
|
|
35
|
+
type: 'avatar';
|
|
36
|
+
avatar: string;
|
|
37
|
+
title: string;
|
|
38
|
+
subtitle: string;
|
|
39
|
+
};
|
|
40
|
+
export type TextHeader = {
|
|
41
|
+
type: 'text';
|
|
42
|
+
title: string;
|
|
43
|
+
};
|
|
44
|
+
export type DropdownHeaderType = AvatarHeader | TextHeader;
|
|
45
|
+
export type DropdownBaseProps = {
|
|
46
|
+
trigger: AvatarTrigger | ButtonTrigger | IconTrigger | CustomTrigger;
|
|
47
|
+
align?: 'left' | 'right';
|
|
48
|
+
header?: DropdownHeaderType;
|
|
49
|
+
className?: string;
|
|
50
|
+
opened?: boolean;
|
|
51
|
+
closeOnClickOutside?: boolean;
|
|
52
|
+
};
|
|
53
|
+
export type ActionDropdownProps = DropdownBaseProps & {
|
|
54
|
+
variant?: 'action';
|
|
55
|
+
groups: DropdownGroup[];
|
|
56
|
+
closeOnClickItem?: boolean;
|
|
57
|
+
};
|
|
58
|
+
export type ConfigDropdownProps = DropdownBaseProps & {
|
|
59
|
+
variant: 'config';
|
|
60
|
+
groups: DropdownGroup[];
|
|
61
|
+
onApply: (items: DropdownItemType[]) => void;
|
|
62
|
+
applyButtonText?: string;
|
|
63
|
+
};
|
|
64
|
+
export type DropdownProps = ActionDropdownProps | ConfigDropdownProps;
|
|
65
|
+
export declare const Dropdown: (props: DropdownProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -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;
|