@ncds/ui-admin 1.6.4 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/assets/scripts/baseBox.js +146 -0
- package/dist/cjs/assets/scripts/comboBox.js +61 -204
- package/dist/cjs/assets/scripts/datePicker.js +290 -325
- package/dist/cjs/assets/scripts/featuredIcon.js +42 -50
- package/dist/cjs/assets/scripts/fileInput/const/classNames.js +5 -15
- package/dist/cjs/assets/scripts/fileInput/fileInput.js +78 -0
- package/dist/cjs/assets/scripts/fileInput/fileInputModel.js +53 -0
- package/dist/cjs/assets/scripts/fileInput/fileInputView.js +152 -0
- package/dist/cjs/assets/scripts/fileInput/index.js +3 -3
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInput.js +61 -64
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputModel.js +79 -112
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputView.js +108 -106
- package/dist/cjs/assets/scripts/imageFileInput/const/classNames.js +6 -16
- package/dist/cjs/assets/scripts/index.js +2 -0
- package/dist/cjs/assets/scripts/modal/Modal.js +43 -55
- package/dist/cjs/assets/scripts/modal/ModalActions.js +40 -52
- package/dist/cjs/assets/scripts/modal/ModalContent.js +22 -22
- package/dist/cjs/assets/scripts/modal/ModalHeader.js +37 -48
- package/dist/cjs/assets/scripts/modal/const/classNames.js +5 -13
- package/dist/cjs/assets/scripts/modal/utils/contentUtils.js +1 -1
- package/dist/cjs/assets/scripts/notification/FloatingNotification.js +91 -93
- package/dist/cjs/assets/scripts/notification/FullWidthNotification.js +92 -80
- package/dist/cjs/assets/scripts/notification/MessageNotification.js +92 -79
- package/dist/cjs/assets/scripts/notification/Notification.js +50 -65
- package/dist/cjs/assets/scripts/notification/const/classNames.js +1 -1
- package/dist/cjs/assets/scripts/notification/const/icons.js +11 -25
- package/dist/cjs/assets/scripts/notification/const/sizes.js +11 -19
- package/dist/cjs/assets/scripts/notification/const/types.js +1 -1
- package/dist/cjs/assets/scripts/notification/utils.js +28 -23
- package/dist/cjs/assets/scripts/progress-bar/ProgressBar.js +140 -141
- package/dist/cjs/assets/scripts/selectBox.js +77 -227
- package/dist/cjs/assets/scripts/shared/ButtonCloseX.js +18 -19
- package/dist/cjs/assets/scripts/slider.js +104 -122
- package/dist/cjs/assets/scripts/tab.js +8 -8
- package/dist/cjs/assets/scripts/table/Table.js +377 -0
- package/dist/cjs/assets/scripts/table/const/classNames.js +33 -0
- package/dist/cjs/assets/scripts/table/const/index.js +27 -0
- package/dist/cjs/assets/scripts/table/const/types.js +5 -0
- package/dist/cjs/assets/scripts/table/index.js +43 -0
- package/dist/cjs/assets/scripts/tag/Tag.js +108 -115
- package/dist/cjs/assets/scripts/tag/const/classNames.js +3 -7
- package/dist/cjs/assets/scripts/tag/const/sizes.js +4 -4
- package/dist/cjs/assets/scripts/tooltip/Tooltip.js +155 -182
- package/dist/cjs/assets/scripts/tooltip/TooltipLayerManager.js +23 -25
- package/dist/cjs/assets/scripts/tooltip/const/classNames.js +1 -1
- package/dist/cjs/assets/scripts/tooltip/const/constants.js +14 -14
- package/dist/cjs/assets/scripts/tooltip/const/icons.js +7 -7
- package/dist/cjs/assets/scripts/tooltip/const/templates.js +42 -25
- package/dist/cjs/assets/scripts/tooltip/utils.js +17 -18
- package/dist/cjs/assets/scripts/utils/debounce.js +32 -0
- package/dist/cjs/assets/scripts/utils/unifiedBox/{DOMRenderer.js → domRenderer.js} +102 -116
- package/dist/cjs/assets/scripts/utils/unifiedBox/dropdownModel.js +285 -0
- package/dist/cjs/assets/scripts/utils/unifiedBox/{UnifiedBoxController.js → unifiedBoxController.js} +187 -246
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +473 -0
- package/dist/cjs/constant/color.js +1 -1
- package/dist/cjs/index.js +0 -297
- package/dist/cjs/src/components/badge/Badge.js +17 -30
- package/dist/cjs/src/components/badge/index.js +0 -11
- package/dist/cjs/src/components/badge/utils.js +11 -10
- package/dist/cjs/src/components/badge-group/BadgeGroup.js +42 -0
- package/dist/cjs/src/components/badge-group/index.js +16 -0
- package/dist/cjs/src/components/bread-crumb/BreadCrumb.js +55 -0
- package/dist/cjs/src/components/button/Button.js +42 -55
- package/dist/cjs/src/components/button/ButtonCloseX.js +12 -22
- package/dist/cjs/src/components/button/ButtonStepper.js +9 -7
- package/dist/cjs/src/components/button/index.js +0 -11
- package/dist/cjs/src/components/button-group/ButtonGroup.js +97 -0
- package/dist/cjs/src/components/button-group/index.js +16 -0
- package/dist/cjs/src/components/carousel-arrow/CarouselArrow.js +34 -0
- package/dist/cjs/src/components/carousel-arrow/index.js +16 -0
- package/dist/cjs/src/components/carousel-number-group/CarouselNumberGroup.js +33 -0
- package/dist/cjs/src/components/{carousel → carousel-number-group}/index.js +0 -11
- package/dist/cjs/src/components/checkbox/Checkbox.js +28 -49
- package/dist/cjs/src/components/checkbox/CheckboxInput.js +24 -43
- package/dist/cjs/src/components/combo-box/ComboBox.js +290 -0
- package/dist/cjs/src/components/data-grid/DataGrid.js +182 -0
- package/dist/cjs/src/components/data-grid/DataGrid.types.js +5 -0
- package/dist/cjs/src/components/data-grid/index.js +27 -0
- package/dist/cjs/src/components/date-picker/CustomInput.js +16 -30
- package/dist/cjs/src/components/date-picker/DatePicker.js +420 -240
- package/dist/cjs/src/components/date-picker/index.js +0 -22
- package/dist/cjs/src/components/date-picker/utils.js +2 -4
- package/dist/cjs/src/components/divider/Divider.js +15 -26
- package/dist/cjs/src/components/dot/Dot.js +11 -28
- package/dist/cjs/src/components/dropdown/Dropdown.js +90 -131
- package/dist/cjs/src/components/empty-state/EmptyState.js +28 -45
- package/dist/cjs/src/components/featured-icon/FeaturedIcon.js +14 -33
- package/dist/cjs/src/components/file-input/FileInput.js +102 -148
- package/dist/cjs/src/components/horizontal-tab/HorizontalTab.js +53 -0
- package/dist/cjs/src/components/horizontal-tab/index.js +16 -0
- package/dist/cjs/src/components/image-file-input/ImageFileInput.js +109 -167
- package/dist/cjs/src/components/image-file-input/components/ImagePreview.js +8 -17
- package/dist/cjs/src/components/index.js +156 -24
- package/dist/cjs/src/components/input-base/InputBase.js +195 -0
- package/dist/cjs/src/components/input-base/index.js +16 -0
- package/dist/cjs/src/components/modal/Modal.js +76 -105
- package/dist/cjs/src/components/notification/FloatingNotification.js +52 -80
- package/dist/cjs/src/components/notification/FullWidthNotification.js +67 -101
- package/dist/cjs/src/components/notification/MessageNotification.js +60 -89
- package/dist/cjs/src/components/notification/Notification.js +18 -36
- package/dist/cjs/src/components/notification/index.js +11 -11
- package/dist/cjs/src/components/number-input/NumberInput.js +112 -0
- package/dist/cjs/src/components/number-input/index.js +16 -0
- package/dist/cjs/src/components/pagination/NavButton.js +29 -41
- package/dist/cjs/src/components/pagination/Pagination.js +68 -109
- package/dist/cjs/src/components/password-input/PasswordInput.js +55 -0
- package/dist/cjs/src/components/password-input/index.js +16 -0
- package/dist/cjs/src/components/progress-bar/ProgressBar.js +50 -61
- package/dist/cjs/src/components/progress-bar/components/SegmentBar.js +11 -9
- package/dist/cjs/src/components/progress-bar/components/SegmentLabels.js +32 -43
- package/dist/cjs/src/components/progress-bar/hooks/useProgressBar.js +59 -77
- package/dist/cjs/src/components/progress-bar/utils.js +10 -9
- package/dist/cjs/src/components/progress-circle/ProgressCircle.js +65 -88
- package/dist/cjs/src/components/radio/Radio.js +24 -43
- package/dist/cjs/src/components/radio/RadioInput.js +18 -36
- package/dist/cjs/src/components/range-date-picker/RangeDatePicker.js +147 -0
- package/dist/cjs/src/components/range-date-picker/index.js +16 -0
- package/dist/cjs/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +81 -0
- package/dist/cjs/src/components/range-date-picker-with-buttons/index.js +16 -0
- package/dist/cjs/src/components/select/Select.js +36 -63
- package/dist/cjs/src/components/select-box/SelectBox.js +260 -0
- package/dist/cjs/src/components/select-dropdown/SelectDropdown.js +64 -100
- package/dist/cjs/src/components/shared/hintText/HintText.js +13 -30
- package/dist/cjs/src/components/shared/label/Label.js +12 -29
- package/dist/cjs/src/components/slider/Slider.js +25 -28
- package/dist/cjs/src/components/spinner/Spinner.js +22 -35
- package/dist/cjs/src/components/spinner/index.js +0 -11
- package/dist/cjs/src/components/switch/Switch.js +44 -64
- package/dist/cjs/src/components/tab/TabButton.js +41 -61
- package/dist/cjs/src/components/tab/index.js +0 -22
- package/dist/cjs/src/components/table/Table.js +269 -0
- package/dist/cjs/src/components/table/index.js +16 -0
- package/dist/cjs/src/components/table/types.js +5 -0
- package/dist/cjs/src/components/tag/Tag.js +65 -85
- package/dist/cjs/src/components/textarea/Textarea.js +79 -0
- package/dist/cjs/src/components/textarea/index.js +16 -0
- package/dist/cjs/src/components/toggle/Toggle.js +29 -55
- package/dist/cjs/src/components/tooltip/Tooltip.js +90 -108
- package/dist/cjs/src/components/vertical-tab/VerticalTab.js +48 -0
- package/dist/cjs/src/components/vertical-tab/index.js +16 -0
- package/dist/cjs/src/constant/breakpoint.js +3 -3
- package/dist/cjs/src/constant/date-picker.js +1 -1
- package/dist/cjs/src/constant/index.js +8 -8
- package/dist/cjs/src/constant/size.js +1 -1
- package/dist/cjs/src/hooks/dropdown/useDropdown.js +58 -60
- package/dist/cjs/src/hooks/dropdown/useDropdownKeyboard.js +69 -81
- package/dist/cjs/src/hooks/dropdown/useDropdownPosition.js +7 -9
- package/dist/cjs/src/hooks/dropdown/useOutsideClick.js +11 -11
- package/dist/cjs/src/hooks/dropdown/useScrollLock.js +43 -32
- package/dist/cjs/src/hooks/dropdown/useWindowResize.js +12 -13
- package/dist/cjs/src/hooks/index.js +4 -4
- package/dist/cjs/src/hooks/useCallbackRef.js +2 -2
- package/dist/cjs/src/hooks/useMediaQuery.js +8 -11
- package/dist/cjs/src/hooks/useMergeRefs.js +2 -2
- package/dist/cjs/src/utils/date-picker.js +31 -25
- package/dist/cjs/src/utils/dropdown/dropdownUtils.js +43 -41
- package/dist/cjs/src/utils/dropdown/multiSelect.js +25 -45
- package/dist/esm/assets/scripts/baseBox.js +139 -0
- package/dist/esm/assets/scripts/comboBox.js +59 -204
- package/dist/esm/assets/scripts/datePicker.js +289 -325
- package/dist/esm/assets/scripts/featuredIcon.js +41 -51
- package/dist/esm/assets/scripts/fileInput/const/classNames.js +4 -13
- package/dist/esm/assets/scripts/fileInput/fileInput.js +71 -0
- package/dist/esm/assets/scripts/fileInput/fileInputModel.js +46 -0
- package/dist/esm/assets/scripts/fileInput/fileInputView.js +145 -0
- package/dist/esm/assets/scripts/fileInput/index.js +2 -2
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInput.js +60 -65
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputModel.js +78 -113
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputView.js +108 -108
- package/dist/esm/assets/scripts/imageFileInput/const/classNames.js +6 -16
- package/dist/esm/assets/scripts/index.js +2 -0
- package/dist/esm/assets/scripts/modal/Modal.js +43 -55
- package/dist/esm/assets/scripts/modal/ModalActions.js +39 -53
- package/dist/esm/assets/scripts/modal/ModalContent.js +21 -23
- package/dist/esm/assets/scripts/modal/ModalHeader.js +36 -49
- package/dist/esm/assets/scripts/modal/const/classNames.js +5 -13
- package/dist/esm/assets/scripts/modal/utils/contentUtils.js +1 -1
- package/dist/esm/assets/scripts/notification/FloatingNotification.js +90 -94
- package/dist/esm/assets/scripts/notification/FullWidthNotification.js +91 -81
- package/dist/esm/assets/scripts/notification/MessageNotification.js +91 -80
- package/dist/esm/assets/scripts/notification/Notification.js +49 -66
- package/dist/esm/assets/scripts/notification/const/classNames.js +1 -1
- package/dist/esm/assets/scripts/notification/const/icons.js +11 -25
- package/dist/esm/assets/scripts/notification/const/sizes.js +11 -19
- package/dist/esm/assets/scripts/notification/const/types.js +1 -1
- package/dist/esm/assets/scripts/notification/utils.js +28 -23
- package/dist/esm/assets/scripts/progress-bar/ProgressBar.js +139 -142
- package/dist/esm/assets/scripts/selectBox.js +75 -227
- package/dist/esm/assets/scripts/shared/ButtonCloseX.js +18 -19
- package/dist/esm/assets/scripts/slider.js +103 -123
- package/dist/esm/assets/scripts/tab.js +7 -9
- package/dist/esm/assets/scripts/table/Table.js +370 -0
- package/dist/esm/assets/scripts/table/const/classNames.js +27 -0
- package/dist/esm/assets/scripts/table/const/index.js +2 -0
- package/dist/esm/assets/scripts/table/const/types.js +1 -0
- package/dist/esm/assets/scripts/table/index.js +8 -0
- package/dist/esm/assets/scripts/tag/Tag.js +107 -116
- package/dist/esm/assets/scripts/tag/const/classNames.js +3 -7
- package/dist/esm/assets/scripts/tag/const/sizes.js +4 -4
- package/dist/esm/assets/scripts/tooltip/Tooltip.js +154 -183
- package/dist/esm/assets/scripts/tooltip/TooltipLayerManager.js +22 -26
- package/dist/esm/assets/scripts/tooltip/const/classNames.js +1 -1
- package/dist/esm/assets/scripts/tooltip/const/constants.js +14 -14
- package/dist/esm/assets/scripts/tooltip/const/icons.js +7 -7
- package/dist/esm/assets/scripts/tooltip/const/templates.js +42 -25
- package/dist/esm/assets/scripts/tooltip/utils.js +17 -18
- package/dist/esm/assets/scripts/utils/debounce.js +26 -0
- package/dist/esm/assets/scripts/utils/unifiedBox/{DOMRenderer.js → domRenderer.js} +101 -117
- package/dist/esm/assets/scripts/utils/unifiedBox/dropdownModel.js +279 -0
- package/dist/esm/assets/scripts/utils/unifiedBox/{UnifiedBoxController.js → unifiedBoxController.js} +186 -247
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +466 -0
- package/dist/esm/constant/color.js +1 -1
- package/dist/esm/index.js +0 -27
- package/dist/esm/src/components/badge/Badge.js +19 -31
- package/dist/esm/src/components/badge/index.js +1 -2
- package/dist/esm/src/components/badge/utils.js +13 -11
- package/dist/esm/src/components/badge-group/BadgeGroup.js +35 -0
- package/dist/esm/src/components/badge-group/index.js +1 -0
- package/dist/esm/src/components/bread-crumb/BreadCrumb.js +48 -0
- package/dist/esm/src/components/button/Button.js +42 -55
- package/dist/esm/src/components/button/ButtonCloseX.js +14 -23
- package/dist/esm/src/components/button/ButtonStepper.js +9 -7
- package/dist/esm/src/components/button/index.js +0 -1
- package/dist/esm/src/components/button-group/ButtonGroup.js +89 -0
- package/dist/esm/src/components/button-group/index.js +1 -0
- package/dist/esm/src/components/carousel-arrow/CarouselArrow.js +26 -0
- package/dist/esm/src/components/carousel-arrow/index.js +1 -0
- package/dist/esm/src/components/carousel-number-group/CarouselNumberGroup.js +25 -0
- package/dist/esm/src/components/carousel-number-group/index.js +1 -0
- package/dist/esm/src/components/checkbox/Checkbox.js +28 -49
- package/dist/esm/src/components/checkbox/CheckboxInput.js +24 -43
- package/dist/esm/src/components/combo-box/ComboBox.js +284 -0
- package/dist/esm/src/components/data-grid/DataGrid.js +175 -0
- package/dist/esm/src/components/data-grid/DataGrid.types.js +1 -0
- package/dist/esm/src/components/data-grid/index.js +2 -0
- package/dist/esm/src/components/date-picker/CustomInput.js +18 -31
- package/dist/esm/src/components/date-picker/DatePicker.js +425 -243
- package/dist/esm/src/components/date-picker/index.js +0 -2
- package/dist/esm/src/components/date-picker/utils.js +2 -4
- package/dist/esm/src/components/divider/Divider.js +15 -26
- package/dist/esm/src/components/dot/Dot.js +13 -29
- package/dist/esm/src/components/dropdown/Dropdown.js +90 -131
- package/dist/esm/src/components/empty-state/EmptyState.js +30 -46
- package/dist/esm/src/components/featured-icon/FeaturedIcon.js +16 -34
- package/dist/esm/src/components/file-input/FileInput.js +102 -148
- package/dist/esm/src/components/horizontal-tab/HorizontalTab.js +46 -0
- package/dist/esm/src/components/horizontal-tab/index.js +1 -0
- package/dist/esm/src/components/image-file-input/ImageFileInput.js +110 -168
- package/dist/esm/src/components/image-file-input/components/ImagePreview.js +8 -17
- package/dist/esm/src/components/index.js +18 -6
- package/dist/esm/src/components/input-base/InputBase.js +189 -0
- package/dist/esm/src/components/input-base/index.js +1 -0
- package/dist/esm/src/components/modal/Modal.js +78 -106
- package/dist/esm/src/components/notification/FloatingNotification.js +54 -81
- package/dist/esm/src/components/notification/FullWidthNotification.js +69 -102
- package/dist/esm/src/components/notification/MessageNotification.js +62 -90
- package/dist/esm/src/components/notification/Notification.js +20 -37
- package/dist/esm/src/components/notification/index.js +2 -2
- package/dist/esm/src/components/number-input/NumberInput.js +106 -0
- package/dist/esm/src/components/number-input/index.js +1 -0
- package/dist/esm/src/components/pagination/NavButton.js +29 -41
- package/dist/esm/src/components/pagination/Pagination.js +68 -109
- package/dist/esm/src/components/password-input/PasswordInput.js +48 -0
- package/dist/esm/src/components/password-input/index.js +1 -0
- package/dist/esm/src/components/progress-bar/ProgressBar.js +50 -61
- package/dist/esm/src/components/progress-bar/components/SegmentBar.js +11 -9
- package/dist/esm/src/components/progress-bar/components/SegmentLabels.js +34 -44
- package/dist/esm/src/components/progress-bar/hooks/useProgressBar.js +59 -77
- package/dist/esm/src/components/progress-bar/utils.js +11 -9
- package/dist/esm/src/components/progress-circle/ProgressCircle.js +65 -88
- package/dist/esm/src/components/radio/Radio.js +24 -43
- package/dist/esm/src/components/radio/RadioInput.js +18 -36
- package/dist/esm/src/components/range-date-picker/RangeDatePicker.js +141 -0
- package/dist/esm/src/components/range-date-picker/index.js +1 -0
- package/dist/esm/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +75 -0
- package/dist/esm/src/components/range-date-picker-with-buttons/index.js +1 -0
- package/dist/esm/src/components/select/Select.js +36 -63
- package/dist/esm/src/components/select-box/SelectBox.js +254 -0
- package/dist/esm/src/components/select-dropdown/SelectDropdown.js +66 -101
- package/dist/esm/src/components/shared/hintText/HintText.js +13 -30
- package/dist/esm/src/components/shared/label/Label.js +12 -29
- package/dist/esm/src/components/slider/Slider.js +25 -28
- package/dist/esm/src/components/spinner/Spinner.js +22 -35
- package/dist/esm/src/components/spinner/index.js +1 -2
- package/dist/esm/src/components/switch/Switch.js +47 -66
- package/dist/esm/src/components/tab/TabButton.js +43 -62
- package/dist/esm/src/components/tab/index.js +1 -3
- package/dist/esm/src/components/table/Table.js +262 -0
- package/dist/esm/src/components/table/index.js +1 -0
- package/dist/esm/src/components/table/types.js +1 -0
- package/dist/esm/src/components/tag/Tag.js +67 -86
- package/dist/esm/src/components/textarea/Textarea.js +72 -0
- package/dist/esm/src/components/textarea/index.js +1 -0
- package/dist/esm/src/components/toggle/Toggle.js +30 -56
- package/dist/esm/src/components/tooltip/Tooltip.js +92 -110
- package/dist/esm/src/components/vertical-tab/VerticalTab.js +40 -0
- package/dist/esm/src/components/vertical-tab/index.js +1 -0
- package/dist/esm/src/constant/breakpoint.js +3 -3
- package/dist/esm/src/constant/date-picker.js +1 -1
- package/dist/esm/src/constant/index.js +2 -2
- package/dist/esm/src/constant/size.js +1 -1
- package/dist/esm/src/hooks/dropdown/useDropdown.js +58 -60
- package/dist/esm/src/hooks/dropdown/useDropdownKeyboard.js +69 -81
- package/dist/esm/src/hooks/dropdown/useDropdownPosition.js +7 -9
- package/dist/esm/src/hooks/dropdown/useOutsideClick.js +11 -11
- package/dist/esm/src/hooks/dropdown/useScrollLock.js +43 -32
- package/dist/esm/src/hooks/dropdown/useWindowResize.js +12 -13
- package/dist/esm/src/hooks/index.js +3 -3
- package/dist/esm/src/hooks/useCallbackRef.js +2 -2
- package/dist/esm/src/hooks/useMediaQuery.js +8 -11
- package/dist/esm/src/hooks/useMergeRefs.js +2 -2
- package/dist/esm/src/utils/date-picker.js +31 -25
- package/dist/esm/src/utils/dropdown/dropdownUtils.js +43 -41
- package/dist/esm/src/utils/dropdown/multiSelect.js +25 -45
- package/dist/temp/assets/scripts/baseBox.d.ts +55 -0
- package/dist/temp/assets/scripts/baseBox.js +140 -0
- package/dist/temp/assets/scripts/comboBox.d.ts +60 -0
- package/dist/temp/assets/scripts/comboBox.js +132 -0
- package/dist/temp/assets/scripts/datePicker.d.ts +86 -0
- package/dist/temp/assets/scripts/datePicker.js +699 -0
- package/dist/temp/assets/scripts/featuredIcon.d.ts +22 -0
- package/dist/temp/assets/scripts/featuredIcon.js +79 -0
- package/dist/temp/assets/scripts/fileInput/const/classNames.d.ts +15 -0
- package/dist/temp/assets/scripts/fileInput/const/classNames.js +16 -0
- package/dist/temp/assets/scripts/fileInput/const/index.d.ts +2 -0
- package/dist/temp/assets/scripts/fileInput/const/index.js +2 -0
- package/dist/temp/assets/scripts/fileInput/const/types.d.ts +88 -0
- package/dist/temp/assets/scripts/fileInput/const/types.js +7 -0
- package/dist/temp/assets/scripts/fileInput/fileInput.d.ts +13 -0
- package/dist/temp/assets/scripts/fileInput/fileInput.js +71 -0
- package/dist/temp/assets/scripts/fileInput/fileInputModel.d.ts +12 -0
- package/dist/temp/assets/scripts/fileInput/fileInputModel.js +37 -0
- package/dist/temp/assets/scripts/fileInput/fileInputView.d.ts +42 -0
- package/dist/temp/assets/scripts/fileInput/fileInputView.js +145 -0
- package/dist/temp/assets/scripts/fileInput/index.d.ts +3 -0
- package/dist/temp/assets/scripts/fileInput/index.js +9 -0
- package/dist/{types/assets/scripts/fileInput/FileInput.d.ts → temp/assets/scripts/imageFileInput/ImageFileInput.d.ts} +6 -10
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.js +180 -0
- package/dist/{types/assets/scripts/fileInput/FileInputModel.d.ts → temp/assets/scripts/imageFileInput/ImageFileInputModel.d.ts} +8 -5
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.js +214 -0
- package/dist/{types/assets/scripts/fileInput/FileInputView.d.ts → temp/assets/scripts/imageFileInput/ImageFileInputView.d.ts} +27 -25
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.js +350 -0
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.d.ts +19 -0
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.js +20 -0
- package/dist/temp/assets/scripts/imageFileInput/const/index.d.ts +2 -0
- package/dist/temp/assets/scripts/imageFileInput/const/index.js +2 -0
- package/dist/temp/assets/scripts/imageFileInput/const/types.d.ts +125 -0
- package/dist/temp/assets/scripts/imageFileInput/const/types.js +7 -0
- package/dist/temp/assets/scripts/imageFileInput/index.d.ts +3 -0
- package/dist/temp/assets/scripts/imageFileInput/index.js +9 -0
- package/dist/temp/assets/scripts/index.d.ts +34 -0
- package/dist/temp/assets/scripts/index.js +30 -0
- package/dist/temp/assets/scripts/modal/Modal.d.ts +27 -0
- package/dist/temp/assets/scripts/modal/Modal.js +100 -0
- package/dist/temp/assets/scripts/modal/ModalActions.d.ts +18 -0
- package/dist/temp/assets/scripts/modal/ModalActions.js +117 -0
- package/dist/temp/assets/scripts/modal/ModalContent.d.ts +13 -0
- package/dist/temp/assets/scripts/modal/ModalContent.js +39 -0
- package/dist/temp/assets/scripts/modal/ModalHeader.d.ts +15 -0
- package/dist/temp/assets/scripts/modal/ModalHeader.js +96 -0
- package/dist/temp/assets/scripts/modal/const/classNames.d.ts +22 -0
- package/dist/temp/assets/scripts/modal/const/classNames.js +23 -0
- package/dist/temp/assets/scripts/modal/const/index.d.ts +2 -0
- package/dist/temp/assets/scripts/modal/const/index.js +2 -0
- package/dist/temp/assets/scripts/modal/const/types.d.ts +61 -0
- package/dist/temp/assets/scripts/modal/const/types.js +1 -0
- package/dist/temp/assets/scripts/modal/index.d.ts +7 -0
- package/dist/temp/assets/scripts/modal/index.js +15 -0
- package/dist/temp/assets/scripts/modal/utils/contentUtils.d.ts +10 -0
- package/dist/temp/assets/scripts/modal/utils/contentUtils.js +29 -0
- package/dist/temp/assets/scripts/notification/FloatingNotification.d.ts +24 -0
- package/dist/temp/assets/scripts/notification/FloatingNotification.js +157 -0
- package/dist/temp/assets/scripts/notification/FullWidthNotification.d.ts +21 -0
- package/dist/temp/assets/scripts/notification/FullWidthNotification.js +110 -0
- package/dist/temp/assets/scripts/notification/MessageNotification.d.ts +22 -0
- package/dist/temp/assets/scripts/notification/MessageNotification.js +140 -0
- package/dist/temp/assets/scripts/notification/Notification.d.ts +21 -0
- package/dist/temp/assets/scripts/notification/Notification.js +94 -0
- package/dist/temp/assets/scripts/notification/const/classNames.d.ts +43 -0
- package/dist/temp/assets/scripts/notification/const/classNames.js +44 -0
- package/dist/temp/assets/scripts/notification/const/icons.d.ts +25 -0
- package/dist/temp/assets/scripts/notification/const/icons.js +25 -0
- package/dist/temp/assets/scripts/notification/const/index.d.ts +5 -0
- package/dist/temp/assets/scripts/notification/const/index.js +4 -0
- package/dist/temp/assets/scripts/notification/const/sizes.d.ts +32 -0
- package/dist/temp/assets/scripts/notification/const/sizes.js +40 -0
- package/dist/temp/assets/scripts/notification/const/types.d.ts +19 -0
- package/dist/temp/assets/scripts/notification/const/types.js +8 -0
- package/dist/temp/assets/scripts/notification/index.d.ts +7 -0
- package/dist/temp/assets/scripts/notification/index.js +11 -0
- package/dist/temp/assets/scripts/notification/utils.d.ts +8 -0
- package/dist/temp/assets/scripts/notification/utils.js +89 -0
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.d.ts +67 -0
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.js +263 -0
- package/dist/temp/assets/scripts/progress-bar/index.d.ts +1 -0
- package/dist/temp/assets/scripts/progress-bar/index.js +1 -0
- package/dist/temp/assets/scripts/selectBox.d.ts +50 -0
- package/dist/temp/assets/scripts/selectBox.js +170 -0
- package/dist/temp/assets/scripts/shared/ButtonCloseX.d.ts +5 -0
- package/dist/temp/assets/scripts/shared/ButtonCloseX.js +33 -0
- package/dist/temp/assets/scripts/slider.d.ts +41 -0
- package/dist/temp/assets/scripts/slider.js +323 -0
- package/dist/temp/assets/scripts/tab.d.ts +7 -0
- package/dist/temp/assets/scripts/tab.js +33 -0
- package/dist/temp/assets/scripts/table/Table.d.ts +41 -0
- package/dist/temp/assets/scripts/table/Table.js +378 -0
- package/dist/temp/assets/scripts/table/const/classNames.d.ts +27 -0
- package/dist/temp/assets/scripts/table/const/classNames.js +27 -0
- package/dist/temp/assets/scripts/table/const/index.d.ts +2 -0
- package/dist/temp/assets/scripts/table/const/index.js +2 -0
- package/dist/temp/assets/scripts/table/const/types.d.ts +23 -0
- package/dist/temp/assets/scripts/table/const/types.js +1 -0
- package/dist/temp/assets/scripts/table/index.d.ts +3 -0
- package/dist/temp/assets/scripts/table/index.js +8 -0
- package/dist/temp/assets/scripts/tag/Tag.d.ts +27 -0
- package/dist/temp/assets/scripts/tag/Tag.js +259 -0
- package/dist/temp/assets/scripts/tag/const/classNames.d.ts +11 -0
- package/dist/temp/assets/scripts/tag/const/classNames.js +12 -0
- package/dist/temp/assets/scripts/tag/const/index.d.ts +3 -0
- package/dist/temp/assets/scripts/tag/const/index.js +3 -0
- package/dist/temp/assets/scripts/tag/const/sizes.d.ts +7 -0
- package/dist/temp/assets/scripts/tag/const/sizes.js +7 -0
- package/dist/temp/assets/scripts/tag/const/types.d.ts +33 -0
- package/dist/temp/assets/scripts/tag/const/types.js +1 -0
- package/dist/temp/assets/scripts/tag/index.d.ts +3 -0
- package/dist/temp/assets/scripts/tag/index.js +9 -0
- package/dist/temp/assets/scripts/tooltip/Tooltip.d.ts +54 -0
- package/dist/temp/assets/scripts/tooltip/Tooltip.js +335 -0
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.d.ts +21 -0
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.js +71 -0
- package/dist/temp/assets/scripts/tooltip/const/classNames.d.ts +17 -0
- package/dist/temp/assets/scripts/tooltip/const/classNames.js +23 -0
- package/dist/temp/assets/scripts/tooltip/const/constants.d.ts +33 -0
- package/dist/temp/assets/scripts/tooltip/const/constants.js +46 -0
- package/dist/temp/assets/scripts/tooltip/const/icons.d.ts +4 -0
- package/dist/temp/assets/scripts/tooltip/const/icons.js +9 -0
- package/dist/temp/assets/scripts/tooltip/const/index.d.ts +5 -0
- package/dist/temp/assets/scripts/tooltip/const/index.js +4 -0
- package/dist/temp/assets/scripts/tooltip/const/templates.d.ts +16 -0
- package/dist/temp/assets/scripts/tooltip/const/templates.js +59 -0
- package/dist/temp/assets/scripts/tooltip/const/types.d.ts +14 -0
- package/dist/temp/assets/scripts/tooltip/const/types.js +1 -0
- package/dist/temp/assets/scripts/tooltip/index.d.ts +6 -0
- package/dist/temp/assets/scripts/tooltip/index.js +10 -0
- package/dist/temp/assets/scripts/tooltip/utils.d.ts +2 -0
- package/dist/temp/assets/scripts/tooltip/utils.js +33 -0
- package/dist/temp/assets/scripts/utils/debounce.d.ts +8 -0
- package/dist/temp/assets/scripts/utils/debounce.js +23 -0
- package/dist/{types/assets/scripts/utils/unifiedBox/DOMRenderer.d.ts → temp/assets/scripts/utils/unifiedBox/domRenderer.d.ts} +0 -1
- package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.js +367 -0
- package/dist/{types/assets/scripts/utils/unifiedBox/DropdownModel.d.ts → temp/assets/scripts/utils/unifiedBox/dropdownModel.d.ts} +7 -23
- package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.js +286 -0
- package/dist/{types/assets/scripts/utils/unifiedBox/UnifiedBoxController.d.ts → temp/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts} +3 -18
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.js +604 -0
- package/dist/{types/assets/scripts/utils/unifiedBox/UnifiedBoxManager.d.ts → temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts} +4 -8
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +482 -0
- package/dist/temp/constant/color.d.ts +36 -0
- package/dist/temp/constant/color.js +34 -0
- package/dist/temp/constant/size.d.ts +1 -0
- package/dist/temp/constant/size.js +1 -0
- package/dist/temp/index.d.ts +2 -0
- package/dist/temp/index.js +2 -0
- package/dist/temp/src/components/badge/Badge.d.ts +18 -0
- package/dist/temp/src/components/badge/Badge.js +11 -0
- package/dist/temp/src/components/badge/index.d.ts +1 -0
- package/dist/temp/src/components/badge/index.js +1 -0
- package/dist/temp/src/components/badge/utils.d.ts +8 -0
- package/dist/temp/src/components/badge/utils.js +15 -0
- package/dist/temp/src/components/badge-group/BadgeGroup.d.ts +18 -0
- package/dist/temp/src/components/badge-group/BadgeGroup.js +13 -0
- package/dist/temp/src/components/badge-group/index.d.ts +1 -0
- package/dist/temp/src/components/badge-group/index.js +1 -0
- package/dist/temp/src/components/bread-crumb/BreadCrumb.d.ts +11 -0
- package/dist/temp/src/components/bread-crumb/BreadCrumb.js +20 -0
- package/dist/temp/src/components/bread-crumb/index.d.ts +1 -0
- package/dist/temp/src/components/bread-crumb/index.js +1 -0
- package/dist/temp/src/components/button/Button.d.ts +35 -0
- package/dist/temp/src/components/button/Button.js +52 -0
- package/dist/temp/src/components/button/ButtonCloseX.d.ts +10 -0
- package/dist/temp/src/components/button/ButtonCloseX.js +13 -0
- package/dist/temp/src/components/button/ButtonStepper.d.ts +9 -0
- package/dist/temp/src/components/button/ButtonStepper.js +5 -0
- package/dist/temp/src/components/button/index.d.ts +3 -0
- package/dist/temp/src/components/button/index.js +3 -0
- package/dist/{types/src/components/button → temp/src/components/button-group}/ButtonGroup.d.ts +12 -13
- package/dist/temp/src/components/button-group/ButtonGroup.js +51 -0
- package/dist/temp/src/components/button-group/index.d.ts +1 -0
- package/dist/temp/src/components/button-group/index.js +1 -0
- package/dist/temp/src/components/carousel-arrow/CarouselArrow.d.ts +8 -0
- package/dist/temp/src/components/carousel-arrow/CarouselArrow.js +9 -0
- package/dist/temp/src/components/carousel-arrow/index.d.ts +1 -0
- package/dist/temp/src/components/carousel-arrow/index.js +1 -0
- package/dist/temp/src/components/carousel-number-group/CarouselNumberGroup.d.ts +8 -0
- package/dist/temp/src/components/carousel-number-group/CarouselNumberGroup.js +10 -0
- package/dist/temp/src/components/carousel-number-group/index.d.ts +1 -0
- package/dist/temp/src/components/carousel-number-group/index.js +1 -0
- package/dist/temp/src/components/checkbox/Checkbox.d.ts +7 -0
- package/dist/temp/src/components/checkbox/Checkbox.js +7 -0
- package/dist/temp/src/components/checkbox/CheckboxInput.d.ts +9 -0
- package/dist/temp/src/components/checkbox/CheckboxInput.js +23 -0
- package/dist/temp/src/components/checkbox/index.d.ts +2 -0
- package/dist/temp/src/components/checkbox/index.js +2 -0
- package/dist/{types/src/components/combobox → temp/src/components/combo-box}/ComboBox.d.ts +7 -6
- package/dist/temp/src/components/combo-box/ComboBox.js +165 -0
- package/dist/{types/src/components/combobox → temp/src/components/combo-box}/index.d.ts +1 -2
- package/dist/temp/src/components/combo-box/index.js +1 -0
- package/dist/temp/src/components/data-grid/DataGrid.d.ts +28 -0
- package/dist/temp/src/components/data-grid/DataGrid.js +88 -0
- package/dist/temp/src/components/data-grid/DataGrid.types.d.ts +35 -0
- package/dist/temp/src/components/data-grid/DataGrid.types.js +1 -0
- package/dist/temp/src/components/data-grid/index.d.ts +2 -0
- package/dist/temp/src/components/data-grid/index.js +2 -0
- package/dist/temp/src/components/date-picker/CustomInput.d.ts +10 -0
- package/dist/temp/src/components/date-picker/CustomInput.js +11 -0
- package/dist/temp/src/components/date-picker/DatePicker.d.ts +28 -0
- package/dist/temp/src/components/date-picker/DatePicker.js +499 -0
- package/dist/temp/src/components/date-picker/index.d.ts +2 -0
- package/dist/temp/src/components/date-picker/index.js +2 -0
- package/dist/temp/src/components/date-picker/utils.d.ts +2 -0
- package/dist/temp/src/components/date-picker/utils.js +7 -0
- package/dist/temp/src/components/divider/Divider.d.ts +15 -0
- package/dist/temp/src/components/divider/Divider.js +9 -0
- package/dist/temp/src/components/divider/index.d.ts +1 -0
- package/dist/temp/src/components/divider/index.js +1 -0
- package/dist/temp/src/components/dot/Dot.d.ts +24 -0
- package/dist/temp/src/components/dot/Dot.js +8 -0
- package/dist/temp/src/components/dot/index.d.ts +1 -0
- package/dist/temp/src/components/dot/index.js +1 -0
- package/dist/temp/src/components/dropdown/Dropdown.d.ts +52 -0
- package/dist/temp/src/components/dropdown/Dropdown.js +74 -0
- package/dist/temp/src/components/dropdown/index.d.ts +1 -0
- package/dist/temp/src/components/dropdown/index.js +1 -0
- package/dist/temp/src/components/empty-state/EmptyState.d.ts +14 -0
- package/dist/temp/src/components/empty-state/EmptyState.js +7 -0
- package/dist/temp/src/components/empty-state/index.d.ts +1 -0
- package/dist/temp/src/components/empty-state/index.js +1 -0
- package/dist/temp/src/components/featured-icon/FeaturedIcon.d.ts +15 -0
- package/dist/temp/src/components/featured-icon/FeaturedIcon.js +13 -0
- package/dist/temp/src/components/featured-icon/index.d.ts +1 -0
- package/dist/temp/src/components/featured-icon/index.js +1 -0
- package/dist/temp/src/components/file-input/FileInput.d.ts +61 -0
- package/dist/temp/src/components/file-input/FileInput.js +87 -0
- package/dist/temp/src/components/file-input/index.d.ts +1 -0
- package/dist/temp/src/components/file-input/index.js +1 -0
- package/dist/temp/src/components/horizontal-tab/HorizontalTab.d.ts +12 -0
- package/dist/temp/src/components/horizontal-tab/HorizontalTab.js +24 -0
- package/dist/temp/src/components/horizontal-tab/index.d.ts +1 -0
- package/dist/temp/src/components/horizontal-tab/index.js +1 -0
- package/dist/temp/src/components/image-file-input/ImageFileInput.d.ts +70 -0
- package/dist/temp/src/components/image-file-input/ImageFileInput.js +96 -0
- package/dist/temp/src/components/image-file-input/components/ImagePreview.d.ts +5 -0
- package/dist/temp/src/components/image-file-input/components/ImagePreview.js +6 -0
- package/dist/temp/src/components/image-file-input/index.d.ts +1 -0
- package/dist/temp/src/components/image-file-input/index.js +1 -0
- package/dist/temp/src/components/index.d.ts +45 -0
- package/dist/temp/src/components/index.js +44 -0
- package/dist/{types/src/components/input → temp/src/components/input-base}/InputBase.d.ts +5 -4
- package/dist/temp/src/components/input-base/InputBase.js +96 -0
- package/dist/temp/src/components/input-base/index.d.ts +1 -0
- package/dist/temp/src/components/input-base/index.js +1 -0
- package/dist/temp/src/components/modal/Modal.d.ts +79 -0
- package/dist/temp/src/components/modal/Modal.js +75 -0
- package/dist/temp/src/components/modal/index.d.ts +1 -0
- package/dist/temp/src/components/modal/index.js +1 -0
- package/dist/temp/src/components/notification/FloatingNotification.d.ts +37 -0
- package/dist/temp/src/components/notification/FloatingNotification.js +56 -0
- package/dist/temp/src/components/notification/FullWidthNotification.d.ts +46 -0
- package/dist/temp/src/components/notification/FullWidthNotification.js +56 -0
- package/dist/temp/src/components/notification/MessageNotification.d.ts +41 -0
- package/dist/temp/src/components/notification/MessageNotification.js +34 -0
- package/dist/temp/src/components/notification/Notification.d.ts +72 -0
- package/dist/temp/src/components/notification/Notification.js +19 -0
- package/dist/temp/src/components/notification/index.d.ts +4 -0
- package/dist/temp/src/components/notification/index.js +4 -0
- package/dist/{types/src/components/input → temp/src/components/number-input}/NumberInput.d.ts +1 -2
- package/dist/temp/src/components/number-input/NumberInput.js +68 -0
- package/dist/temp/src/components/number-input/index.d.ts +1 -0
- package/dist/temp/src/components/number-input/index.js +1 -0
- package/dist/temp/src/components/pagination/NavButton.d.ts +31 -0
- package/dist/temp/src/components/pagination/NavButton.js +54 -0
- package/dist/temp/src/components/pagination/Pagination.d.ts +11 -0
- package/dist/temp/src/components/pagination/Pagination.js +66 -0
- package/dist/temp/src/components/pagination/index.d.ts +2 -0
- package/dist/temp/src/components/pagination/index.js +2 -0
- package/dist/{types/src/components/input → temp/src/components/password-input}/PasswordInput.d.ts +1 -2
- package/dist/temp/src/components/password-input/PasswordInput.js +28 -0
- package/dist/temp/src/components/password-input/index.d.ts +1 -0
- package/dist/temp/src/components/password-input/index.js +1 -0
- package/dist/temp/src/components/progress-bar/ProgressBar.d.ts +2 -0
- package/dist/temp/src/components/progress-bar/ProgressBar.js +19 -0
- package/dist/temp/src/components/progress-bar/components/SegmentBar.d.ts +7 -0
- package/dist/temp/src/components/progress-bar/components/SegmentBar.js +9 -0
- package/dist/temp/src/components/progress-bar/components/SegmentLabels.d.ts +15 -0
- package/dist/temp/src/components/progress-bar/components/SegmentLabels.js +32 -0
- package/dist/temp/src/components/progress-bar/hooks/useProgressBar.d.ts +13 -0
- package/dist/temp/src/components/progress-bar/hooks/useProgressBar.js +87 -0
- package/dist/temp/src/components/progress-bar/index.d.ts +2 -0
- package/dist/temp/src/components/progress-bar/index.js +2 -0
- package/dist/temp/src/components/progress-bar/types.d.ts +15 -0
- package/dist/temp/src/components/progress-bar/types.js +1 -0
- package/dist/temp/src/components/progress-bar/utils.d.ts +13 -0
- package/dist/temp/src/components/progress-bar/utils.js +26 -0
- package/dist/temp/src/components/progress-circle/ProgressCircle.d.ts +7 -0
- package/dist/temp/src/components/progress-circle/ProgressCircle.js +9 -0
- package/dist/temp/src/components/progress-circle/index.d.ts +1 -0
- package/dist/temp/src/components/progress-circle/index.js +1 -0
- package/dist/temp/src/components/radio/Radio.d.ts +7 -0
- package/dist/temp/src/components/radio/Radio.js +7 -0
- package/dist/temp/src/components/radio/RadioInput.d.ts +8 -0
- package/dist/temp/src/components/radio/RadioInput.js +6 -0
- package/dist/temp/src/components/radio/index.d.ts +2 -0
- package/dist/temp/src/components/radio/index.js +2 -0
- package/dist/{types/src/components/date-picker → temp/src/components/range-date-picker}/RangeDatePicker.d.ts +6 -5
- package/dist/temp/src/components/range-date-picker/RangeDatePicker.js +104 -0
- package/dist/temp/src/components/range-date-picker/index.d.ts +1 -0
- package/dist/temp/src/components/range-date-picker/index.js +1 -0
- package/dist/{types/src/components/date-picker → temp/src/components/range-date-picker-with-buttons}/RangeDatePickerWithButtons.d.ts +5 -5
- package/dist/temp/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.js +43 -0
- package/dist/temp/src/components/range-date-picker-with-buttons/index.d.ts +1 -0
- package/dist/temp/src/components/range-date-picker-with-buttons/index.js +1 -0
- package/dist/temp/src/components/select/Select.d.ts +16 -0
- package/dist/temp/src/components/select/Select.js +10 -0
- package/dist/temp/src/components/select/index.d.ts +1 -0
- package/dist/temp/src/components/select/index.js +1 -0
- package/dist/{types/src/components/selectbox → temp/src/components/select-box}/SelectBox.d.ts +5 -4
- package/dist/temp/src/components/select-box/SelectBox.js +130 -0
- package/dist/{types/src/components/selectbox → temp/src/components/select-box}/index.d.ts +0 -1
- package/dist/temp/src/components/select-box/index.js +1 -0
- package/dist/temp/src/components/select-dropdown/SelectDropdown.d.ts +29 -0
- package/dist/temp/src/components/select-dropdown/SelectDropdown.js +26 -0
- package/dist/temp/src/components/select-dropdown/index.d.ts +1 -0
- package/dist/temp/src/components/select-dropdown/index.js +1 -0
- package/dist/temp/src/components/shared/hintText/HintText.d.ts +7 -0
- package/dist/temp/src/components/shared/hintText/HintText.js +5 -0
- package/dist/temp/src/components/shared/hintText/index.d.ts +1 -0
- package/dist/temp/src/components/shared/hintText/index.js +1 -0
- package/dist/temp/src/components/shared/index.d.ts +2 -0
- package/dist/temp/src/components/shared/index.js +2 -0
- package/dist/temp/src/components/shared/label/Label.d.ts +7 -0
- package/dist/temp/src/components/shared/label/Label.js +5 -0
- package/dist/temp/src/components/shared/label/index.d.ts +1 -0
- package/dist/temp/src/components/shared/label/index.js +1 -0
- package/dist/temp/src/components/slider/Slider.d.ts +14 -0
- package/dist/temp/src/components/slider/Slider.js +43 -0
- package/dist/temp/src/components/slider/index.d.ts +1 -0
- package/dist/temp/src/components/slider/index.js +1 -0
- package/dist/temp/src/components/spinner/Spinner.d.ts +9 -0
- package/dist/temp/src/components/spinner/Spinner.js +8 -0
- package/dist/temp/src/components/spinner/index.d.ts +1 -0
- package/dist/temp/src/components/spinner/index.js +1 -0
- package/dist/temp/src/components/switch/Switch.d.ts +22 -0
- package/dist/temp/src/components/switch/Switch.js +55 -0
- package/dist/temp/src/components/switch/index.d.ts +2 -0
- package/dist/temp/src/components/switch/index.js +1 -0
- package/dist/temp/src/components/tab/TabButton.d.ts +23 -0
- package/dist/temp/src/components/tab/TabButton.js +14 -0
- package/dist/temp/src/components/tab/index.d.ts +1 -0
- package/dist/temp/src/components/tab/index.js +1 -0
- package/dist/temp/src/components/table/Table.d.ts +46 -0
- package/dist/temp/src/components/table/Table.js +115 -0
- package/dist/temp/src/components/table/index.d.ts +1 -0
- package/dist/temp/src/components/table/index.js +1 -0
- package/dist/temp/src/components/table/types.d.ts +45 -0
- package/dist/temp/src/components/table/types.js +1 -0
- package/dist/temp/src/components/tag/Tag.d.ts +17 -0
- package/dist/temp/src/components/tag/Tag.js +96 -0
- package/dist/temp/src/components/tag/index.d.ts +1 -0
- package/dist/temp/src/components/tag/index.js +1 -0
- package/dist/{types/src/components/input → temp/src/components/textarea}/Textarea.d.ts +2 -3
- package/dist/temp/src/components/textarea/Textarea.js +34 -0
- package/dist/temp/src/components/textarea/index.d.ts +1 -0
- package/dist/temp/src/components/textarea/index.js +1 -0
- package/dist/temp/src/components/toggle/Toggle.d.ts +10 -0
- package/dist/temp/src/components/toggle/Toggle.js +7 -0
- package/dist/temp/src/components/toggle/index.d.ts +1 -0
- package/dist/temp/src/components/toggle/index.js +1 -0
- package/dist/temp/src/components/tooltip/Tooltip.d.ts +15 -0
- package/dist/temp/src/components/tooltip/Tooltip.js +104 -0
- package/dist/temp/src/components/tooltip/index.d.ts +1 -0
- package/dist/temp/src/components/tooltip/index.js +1 -0
- package/dist/{types/src/components/tab → temp/src/components/vertical-tab}/VerticalTab.d.ts +2 -3
- package/dist/temp/src/components/vertical-tab/VerticalTab.js +20 -0
- package/dist/temp/src/components/vertical-tab/index.d.ts +1 -0
- package/dist/temp/src/components/vertical-tab/index.js +1 -0
- package/dist/temp/src/constant/breakpoint.d.ts +6 -0
- package/dist/temp/src/constant/breakpoint.js +6 -0
- package/dist/temp/src/constant/date-picker.d.ts +63 -0
- package/dist/temp/src/constant/date-picker.js +53 -0
- package/dist/temp/src/constant/index.d.ts +2 -0
- package/dist/temp/src/constant/index.js +2 -0
- package/dist/temp/src/constant/size.d.ts +1 -0
- package/dist/temp/src/constant/size.js +1 -0
- package/dist/temp/src/hooks/dropdown/index.d.ts +6 -0
- package/dist/temp/src/hooks/dropdown/index.js +6 -0
- package/dist/temp/src/hooks/dropdown/useDropdown.d.ts +29 -0
- package/dist/temp/src/hooks/dropdown/useDropdown.js +84 -0
- package/dist/temp/src/hooks/dropdown/useDropdownKeyboard.d.ts +10 -0
- package/dist/temp/src/hooks/dropdown/useDropdownKeyboard.js +107 -0
- package/dist/temp/src/hooks/dropdown/useDropdownPosition.d.ts +9 -0
- package/dist/temp/src/hooks/dropdown/useDropdownPosition.js +18 -0
- package/dist/temp/src/hooks/dropdown/useOutsideClick.d.ts +5 -0
- package/dist/temp/src/hooks/dropdown/useOutsideClick.js +23 -0
- package/dist/temp/src/hooks/dropdown/useScrollLock.d.ts +4 -0
- package/dist/temp/src/hooks/dropdown/useScrollLock.js +72 -0
- package/dist/temp/src/hooks/dropdown/useWindowResize.d.ts +7 -0
- package/dist/temp/src/hooks/dropdown/useWindowResize.js +43 -0
- package/dist/temp/src/hooks/index.d.ts +4 -0
- package/dist/temp/src/hooks/index.js +6 -0
- package/dist/temp/src/hooks/useCallbackRef.d.ts +27 -0
- package/dist/temp/src/hooks/useCallbackRef.js +44 -0
- package/dist/temp/src/hooks/useMediaQuery.d.ts +5 -0
- package/dist/temp/src/hooks/useMediaQuery.js +19 -0
- package/dist/temp/src/hooks/useMergeRefs.d.ts +20 -0
- package/dist/temp/src/hooks/useMergeRefs.js +31 -0
- package/dist/temp/src/types/dropdown/dropdown.d.ts +39 -0
- package/dist/temp/src/types/dropdown/dropdown.js +1 -0
- package/dist/temp/src/types/dropdown/index.d.ts +2 -0
- package/dist/temp/src/types/dropdown/index.js +2 -0
- package/dist/temp/src/types/dropdown/option.d.ts +23 -0
- package/dist/temp/src/types/dropdown/option.js +1 -0
- package/dist/temp/src/types/index.d.ts +2 -0
- package/dist/temp/src/types/index.js +2 -0
- package/dist/temp/src/types/side-slot.d.ts +25 -0
- package/dist/temp/src/types/side-slot.js +1 -0
- package/dist/temp/src/utils/date-picker.d.ts +11 -0
- package/dist/temp/src/utils/date-picker.js +49 -0
- package/dist/temp/src/utils/dropdown/dropdownUtils.d.ts +17 -0
- package/dist/temp/src/utils/dropdown/dropdownUtils.js +78 -0
- package/dist/temp/src/utils/dropdown/index.d.ts +2 -0
- package/dist/temp/src/utils/dropdown/index.js +2 -0
- package/dist/temp/src/utils/dropdown/multiSelect.d.ts +31 -0
- package/dist/temp/src/utils/dropdown/multiSelect.js +66 -0
- package/dist/temp/src/utils/index.d.ts +2 -0
- package/dist/temp/src/utils/index.js +4 -0
- package/dist/types/assets/scripts/baseBox.d.ts +55 -0
- package/dist/types/assets/scripts/comboBox.d.ts +7 -38
- package/dist/types/assets/scripts/datePicker.d.ts +0 -1
- package/dist/types/assets/scripts/featuredIcon.d.ts +0 -1
- package/dist/types/assets/scripts/fileInput/const/classNames.d.ts +0 -2
- package/dist/types/assets/scripts/fileInput/const/index.d.ts +0 -1
- package/dist/types/assets/scripts/fileInput/const/types.d.ts +4 -48
- package/dist/types/assets/scripts/fileInput/fileInput.d.ts +13 -0
- package/dist/types/assets/scripts/fileInput/fileInputModel.d.ts +12 -0
- package/dist/types/assets/scripts/fileInput/fileInputView.d.ts +42 -0
- package/dist/types/assets/scripts/fileInput/index.d.ts +1 -2
- package/dist/types/assets/scripts/imageFileInput/ImageFileInput.d.ts +0 -1
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +0 -1
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputView.d.ts +0 -1
- package/dist/types/assets/scripts/imageFileInput/const/classNames.d.ts +0 -1
- package/dist/types/assets/scripts/imageFileInput/const/index.d.ts +0 -1
- package/dist/types/assets/scripts/imageFileInput/const/types.d.ts +0 -1
- package/dist/types/assets/scripts/imageFileInput/index.d.ts +0 -1
- package/dist/types/assets/scripts/index.d.ts +2 -1
- package/dist/types/assets/scripts/modal/Modal.d.ts +0 -1
- package/dist/types/assets/scripts/modal/ModalActions.d.ts +0 -1
- package/dist/types/assets/scripts/modal/ModalContent.d.ts +0 -1
- package/dist/types/assets/scripts/modal/ModalHeader.d.ts +0 -1
- package/dist/types/assets/scripts/modal/const/classNames.d.ts +0 -1
- package/dist/types/assets/scripts/modal/const/index.d.ts +0 -1
- package/dist/types/assets/scripts/modal/const/types.d.ts +0 -1
- package/dist/types/assets/scripts/modal/index.d.ts +0 -1
- package/dist/types/assets/scripts/modal/utils/contentUtils.d.ts +0 -1
- package/dist/types/assets/scripts/notification/FloatingNotification.d.ts +0 -1
- package/dist/types/assets/scripts/notification/FullWidthNotification.d.ts +0 -1
- package/dist/types/assets/scripts/notification/MessageNotification.d.ts +0 -1
- package/dist/types/assets/scripts/notification/Notification.d.ts +0 -1
- package/dist/types/assets/scripts/notification/const/classNames.d.ts +0 -1
- package/dist/types/assets/scripts/notification/const/icons.d.ts +0 -1
- package/dist/types/assets/scripts/notification/const/index.d.ts +0 -1
- package/dist/types/assets/scripts/notification/const/sizes.d.ts +0 -1
- package/dist/types/assets/scripts/notification/const/types.d.ts +0 -1
- package/dist/types/assets/scripts/notification/index.d.ts +0 -1
- package/dist/types/assets/scripts/notification/utils.d.ts +0 -1
- package/dist/types/assets/scripts/progress-bar/ProgressBar.d.ts +0 -1
- package/dist/types/assets/scripts/progress-bar/index.d.ts +0 -1
- package/dist/types/assets/scripts/selectBox.d.ts +6 -33
- package/dist/types/assets/scripts/shared/ButtonCloseX.d.ts +0 -1
- package/dist/types/assets/scripts/slider.d.ts +0 -1
- package/dist/types/assets/scripts/tab.d.ts +0 -1
- package/dist/types/assets/scripts/table/Table.d.ts +41 -0
- package/dist/types/assets/scripts/table/const/classNames.d.ts +27 -0
- package/dist/types/assets/scripts/table/const/index.d.ts +2 -0
- package/dist/types/assets/scripts/table/const/types.d.ts +23 -0
- package/dist/types/assets/scripts/table/index.d.ts +3 -0
- package/dist/types/assets/scripts/tag/Tag.d.ts +0 -1
- package/dist/types/assets/scripts/tag/const/classNames.d.ts +0 -1
- package/dist/types/assets/scripts/tag/const/index.d.ts +0 -1
- package/dist/types/assets/scripts/tag/const/sizes.d.ts +0 -1
- package/dist/types/assets/scripts/tag/const/types.d.ts +0 -1
- package/dist/types/assets/scripts/tag/index.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/Tooltip.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/TooltipLayerManager.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/const/classNames.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/const/constants.d.ts +1 -2
- package/dist/types/assets/scripts/tooltip/const/icons.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/const/index.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/const/templates.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/const/types.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/index.d.ts +0 -1
- package/dist/types/assets/scripts/tooltip/utils.d.ts +0 -1
- package/dist/types/assets/scripts/utils/debounce.d.ts +8 -0
- package/dist/types/assets/scripts/utils/unifiedBox/domRenderer.d.ts +107 -0
- package/dist/types/assets/scripts/utils/unifiedBox/dropdownModel.d.ts +142 -0
- package/dist/types/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts +156 -0
- package/dist/types/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts +95 -0
- package/dist/types/constant/color.d.ts +0 -1
- package/dist/types/constant/size.d.ts +0 -1
- package/dist/types/index.d.ts +0 -28
- package/dist/types/src/components/badge/Badge.d.ts +10 -9
- package/dist/types/src/components/badge/index.d.ts +0 -2
- package/dist/types/src/components/badge/utils.d.ts +4 -3
- package/dist/types/src/components/badge-group/BadgeGroup.d.ts +18 -0
- package/dist/types/src/components/badge-group/index.d.ts +1 -0
- package/dist/types/src/components/bread-crumb/BreadCrumb.d.ts +11 -0
- package/dist/types/src/components/bread-crumb/index.d.ts +1 -0
- package/dist/types/src/components/button/Button.d.ts +2 -1
- package/dist/types/src/components/button/ButtonCloseX.d.ts +4 -3
- package/dist/types/src/components/button/ButtonStepper.d.ts +1 -2
- package/dist/types/src/components/button/index.d.ts +0 -2
- package/dist/types/src/components/button-group/ButtonGroup.d.ts +312 -0
- package/dist/types/src/components/button-group/index.d.ts +1 -0
- package/dist/types/src/components/carousel-arrow/CarouselArrow.d.ts +8 -0
- package/dist/types/src/components/carousel-arrow/index.d.ts +1 -0
- package/dist/types/src/components/carousel-number-group/CarouselNumberGroup.d.ts +8 -0
- package/dist/types/src/components/carousel-number-group/index.d.ts +1 -0
- package/dist/types/src/components/checkbox/Checkbox.d.ts +2 -3
- package/dist/types/src/components/checkbox/CheckboxInput.d.ts +2 -3
- package/dist/types/src/components/checkbox/index.d.ts +0 -1
- package/dist/types/src/components/combo-box/ComboBox.d.ts +28 -0
- package/dist/types/src/components/combo-box/index.d.ts +2 -0
- package/dist/types/src/components/data-grid/DataGrid.d.ts +28 -0
- package/dist/types/src/components/data-grid/DataGrid.types.d.ts +35 -0
- package/dist/types/src/components/data-grid/index.d.ts +2 -0
- package/dist/types/src/components/date-picker/CustomInput.d.ts +2 -3
- package/dist/types/src/components/date-picker/DatePicker.d.ts +11 -6
- package/dist/types/src/components/date-picker/index.d.ts +0 -3
- package/dist/types/src/components/date-picker/utils.d.ts +0 -1
- package/dist/types/src/components/divider/Divider.d.ts +1 -2
- package/dist/types/src/components/divider/index.d.ts +0 -1
- package/dist/types/src/components/dot/Dot.d.ts +9 -8
- package/dist/types/src/components/dot/index.d.ts +0 -1
- package/dist/types/src/components/dropdown/Dropdown.d.ts +0 -1
- package/dist/types/src/components/dropdown/index.d.ts +0 -1
- package/dist/types/src/components/empty-state/EmptyState.d.ts +5 -5
- package/dist/types/src/components/empty-state/index.d.ts +0 -1
- package/dist/types/src/components/featured-icon/FeaturedIcon.d.ts +8 -7
- package/dist/types/src/components/featured-icon/index.d.ts +0 -1
- package/dist/types/src/components/file-input/FileInput.d.ts +1 -2
- package/dist/types/src/components/file-input/index.d.ts +0 -1
- package/dist/types/src/components/horizontal-tab/HorizontalTab.d.ts +12 -0
- package/dist/types/src/components/horizontal-tab/index.d.ts +1 -0
- package/dist/types/src/components/image-file-input/ImageFileInput.d.ts +1 -2
- package/dist/types/src/components/image-file-input/components/ImagePreview.d.ts +0 -1
- package/dist/types/src/components/image-file-input/index.d.ts +0 -1
- package/dist/types/src/components/index.d.ts +18 -7
- package/dist/types/src/components/input-base/InputBase.d.ts +55 -0
- package/dist/types/src/components/input-base/index.d.ts +1 -0
- package/dist/types/src/components/modal/Modal.d.ts +13 -12
- package/dist/types/src/components/modal/index.d.ts +0 -1
- package/dist/types/src/components/notification/FloatingNotification.d.ts +6 -5
- package/dist/types/src/components/notification/FullWidthNotification.d.ts +6 -5
- package/dist/types/src/components/notification/MessageNotification.d.ts +6 -5
- package/dist/types/src/components/notification/Notification.d.ts +11 -10
- package/dist/types/src/components/notification/index.d.ts +1 -2
- package/dist/types/src/components/number-input/NumberInput.d.ts +9 -0
- package/dist/types/src/components/number-input/index.d.ts +1 -0
- package/dist/types/src/components/pagination/NavButton.d.ts +0 -1
- package/dist/types/src/components/pagination/Pagination.d.ts +0 -1
- package/dist/types/src/components/pagination/index.d.ts +0 -1
- package/dist/types/src/components/password-input/PasswordInput.d.ts +2 -0
- package/dist/types/src/components/password-input/index.d.ts +1 -0
- package/dist/types/src/components/progress-bar/ProgressBar.d.ts +0 -1
- package/dist/types/src/components/progress-bar/components/SegmentBar.d.ts +0 -1
- package/dist/types/src/components/progress-bar/components/SegmentLabels.d.ts +3 -4
- package/dist/types/src/components/progress-bar/hooks/useProgressBar.d.ts +1 -2
- package/dist/types/src/components/progress-bar/index.d.ts +0 -1
- package/dist/types/src/components/progress-bar/types.d.ts +0 -1
- package/dist/types/src/components/progress-bar/utils.d.ts +4 -4
- package/dist/types/src/components/progress-circle/ProgressCircle.d.ts +0 -1
- package/dist/types/src/components/progress-circle/index.d.ts +0 -1
- package/dist/types/src/components/radio/Radio.d.ts +2 -3
- package/dist/types/src/components/radio/RadioInput.d.ts +2 -3
- package/dist/types/src/components/radio/index.d.ts +0 -1
- package/dist/types/src/components/range-date-picker/RangeDatePicker.d.ts +26 -0
- package/dist/types/src/components/range-date-picker/index.d.ts +1 -0
- package/dist/types/src/components/range-date-picker-with-buttons/RangeDatePickerWithButtons.d.ts +71 -0
- package/dist/types/src/components/range-date-picker-with-buttons/index.d.ts +1 -0
- package/dist/types/src/components/select/Select.d.ts +4 -5
- package/dist/types/src/components/select/index.d.ts +0 -1
- package/dist/types/src/components/select-box/SelectBox.d.ts +27 -0
- package/dist/types/src/components/select-box/index.d.ts +1 -0
- package/dist/types/src/components/select-dropdown/SelectDropdown.d.ts +6 -6
- package/dist/types/src/components/select-dropdown/index.d.ts +1 -2
- package/dist/types/src/components/shared/hintText/HintText.d.ts +0 -1
- package/dist/types/src/components/shared/hintText/index.d.ts +0 -1
- package/dist/types/src/components/shared/index.d.ts +0 -1
- package/dist/types/src/components/shared/label/Label.d.ts +0 -1
- package/dist/types/src/components/shared/label/index.d.ts +0 -1
- package/dist/types/src/components/slider/Slider.d.ts +1 -2
- package/dist/types/src/components/slider/index.d.ts +0 -1
- package/dist/types/src/components/spinner/Spinner.d.ts +1 -2
- package/dist/types/src/components/spinner/index.d.ts +0 -2
- package/dist/types/src/components/switch/Switch.d.ts +7 -7
- package/dist/types/src/components/switch/index.d.ts +1 -2
- package/dist/types/src/components/tab/TabButton.d.ts +8 -8
- package/dist/types/src/components/tab/index.d.ts +0 -3
- package/dist/types/src/components/table/Table.d.ts +46 -0
- package/dist/types/src/components/table/index.d.ts +1 -0
- package/dist/types/src/components/table/types.d.ts +45 -0
- package/dist/types/src/components/tag/Tag.d.ts +4 -4
- package/dist/types/src/components/tag/index.d.ts +0 -1
- package/dist/types/src/components/textarea/Textarea.d.ts +14 -0
- package/dist/types/src/components/textarea/index.d.ts +1 -0
- package/dist/types/src/components/toggle/Toggle.d.ts +1 -2
- package/dist/types/src/components/toggle/index.d.ts +0 -1
- package/dist/types/src/components/tooltip/Tooltip.d.ts +0 -1
- package/dist/types/src/components/tooltip/index.d.ts +0 -1
- package/dist/types/src/components/vertical-tab/VerticalTab.d.ts +9 -0
- package/dist/types/src/components/vertical-tab/index.d.ts +1 -0
- package/dist/types/src/constant/breakpoint.d.ts +0 -1
- package/dist/types/src/constant/date-picker.d.ts +0 -1
- package/dist/types/src/constant/index.d.ts +1 -2
- package/dist/types/src/constant/size.d.ts +0 -1
- package/dist/types/src/hooks/dropdown/index.d.ts +0 -1
- package/dist/types/src/hooks/dropdown/useDropdown.d.ts +1 -2
- package/dist/types/src/hooks/dropdown/useDropdownKeyboard.d.ts +2 -3
- package/dist/types/src/hooks/dropdown/useDropdownPosition.d.ts +1 -2
- package/dist/types/src/hooks/dropdown/useOutsideClick.d.ts +1 -2
- package/dist/types/src/hooks/dropdown/useScrollLock.d.ts +0 -1
- package/dist/types/src/hooks/dropdown/useWindowResize.d.ts +0 -1
- package/dist/types/src/hooks/index.d.ts +1 -2
- package/dist/types/src/hooks/useCallbackRef.d.ts +0 -1
- package/dist/types/src/hooks/useMediaQuery.d.ts +0 -1
- package/dist/types/src/hooks/useMergeRefs.d.ts +1 -2
- package/dist/types/src/types/dropdown/dropdown.d.ts +1 -2
- package/dist/types/src/types/dropdown/index.d.ts +0 -1
- package/dist/types/src/types/dropdown/option.d.ts +0 -1
- package/dist/types/src/types/index.d.ts +0 -1
- package/dist/types/src/types/side-slot.d.ts +0 -1
- package/dist/types/src/utils/date-picker.d.ts +1 -2
- package/dist/types/src/utils/dropdown/dropdownUtils.d.ts +2 -3
- package/dist/types/src/utils/dropdown/index.d.ts +0 -1
- package/dist/types/src/utils/dropdown/multiSelect.d.ts +1 -2
- package/dist/types/src/utils/index.d.ts +0 -1
- package/dist/ui-admin/assets/styles/style.css +776 -228
- package/package.json +50 -53
- package/dist/cjs/assets/scripts/fileInput/FileInput.js +0 -183
- package/dist/cjs/assets/scripts/fileInput/FileInputModel.js +0 -246
- package/dist/cjs/assets/scripts/fileInput/FileInputView.js +0 -455
- package/dist/cjs/assets/scripts/utils/unifiedBox/DropdownModel.js +0 -368
- package/dist/cjs/assets/scripts/utils/unifiedBox/UnifiedBoxManager.js +0 -711
- package/dist/cjs/src/components/badge/BadgeGroup.js +0 -62
- package/dist/cjs/src/components/breadcrumb/BreadCrumb.js +0 -66
- package/dist/cjs/src/components/button/ButtonGroup.js +0 -117
- package/dist/cjs/src/components/carousel/CarouselArrow.js +0 -41
- package/dist/cjs/src/components/carousel/CarouselNumberGroup.js +0 -46
- package/dist/cjs/src/components/combobox/ComboBox.js +0 -338
- package/dist/cjs/src/components/date-picker/RangeDatePicker.js +0 -145
- package/dist/cjs/src/components/date-picker/RangeDatePickerWithButtons.js +0 -99
- package/dist/cjs/src/components/input/InputBase.js +0 -229
- package/dist/cjs/src/components/input/NumberInput.js +0 -132
- package/dist/cjs/src/components/input/PasswordInput.js +0 -72
- package/dist/cjs/src/components/input/Textarea.js +0 -107
- package/dist/cjs/src/components/input/index.js +0 -49
- package/dist/cjs/src/components/selectbox/SelectBox.js +0 -306
- package/dist/cjs/src/components/tab/HorizontalTab.js +0 -66
- package/dist/cjs/src/components/tab/VerticalTab.js +0 -60
- package/dist/esm/assets/scripts/fileInput/FileInput.js +0 -178
- package/dist/esm/assets/scripts/fileInput/FileInputModel.js +0 -241
- package/dist/esm/assets/scripts/fileInput/FileInputView.js +0 -450
- package/dist/esm/assets/scripts/utils/unifiedBox/DropdownModel.js +0 -363
- package/dist/esm/assets/scripts/utils/unifiedBox/UnifiedBoxManager.js +0 -706
- package/dist/esm/src/components/badge/BadgeGroup.js +0 -54
- package/dist/esm/src/components/breadcrumb/BreadCrumb.js +0 -58
- package/dist/esm/src/components/button/ButtonGroup.js +0 -107
- package/dist/esm/src/components/carousel/CarouselArrow.js +0 -33
- package/dist/esm/src/components/carousel/CarouselNumberGroup.js +0 -38
- package/dist/esm/src/components/carousel/index.js +0 -2
- package/dist/esm/src/components/combobox/ComboBox.js +0 -331
- package/dist/esm/src/components/date-picker/RangeDatePicker.js +0 -138
- package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +0 -92
- package/dist/esm/src/components/input/InputBase.js +0 -222
- package/dist/esm/src/components/input/NumberInput.js +0 -126
- package/dist/esm/src/components/input/PasswordInput.js +0 -65
- package/dist/esm/src/components/input/Textarea.js +0 -100
- package/dist/esm/src/components/input/index.js +0 -4
- package/dist/esm/src/components/selectbox/SelectBox.js +0 -299
- package/dist/esm/src/components/tab/HorizontalTab.js +0 -58
- package/dist/esm/src/components/tab/VerticalTab.js +0 -52
- package/dist/types/src/components/badge/BadgeGroup.d.ts +0 -17
- package/dist/types/src/components/breadcrumb/BreadCrumb.d.ts +0 -10
- package/dist/types/src/components/breadcrumb/index.d.ts +0 -2
- package/dist/types/src/components/carousel/CarouselArrow.d.ts +0 -10
- package/dist/types/src/components/carousel/CarouselNumberGroup.d.ts +0 -10
- package/dist/types/src/components/carousel/index.d.ts +0 -3
- package/dist/types/src/components/input/index.d.ts +0 -5
- package/dist/types/src/components/tab/HorizontalTab.d.ts +0 -11
- /package/dist/cjs/src/components/{breadcrumb → bread-crumb}/index.js +0 -0
- /package/dist/cjs/src/components/{combobox → combo-box}/index.js +0 -0
- /package/dist/cjs/src/components/{selectbox → select-box}/index.js +0 -0
- /package/dist/esm/src/components/{breadcrumb → bread-crumb}/index.js +0 -0
- /package/dist/esm/src/components/{combobox → combo-box}/index.js +0 -0
- /package/dist/esm/src/components/{selectbox → select-box}/index.js +0 -0
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
--green-600: #087443;
|
|
29
29
|
--green-700: #095c37;
|
|
30
30
|
--blue-50: #f5faff;
|
|
31
|
-
--blue-100: #
|
|
31
|
+
--blue-100: #d1e9ff;
|
|
32
32
|
--blue-200: #b2ddff;
|
|
33
33
|
--blue-300: #84caff;
|
|
34
34
|
--blue-400: #53b1fd;
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
--orange-200: #f9dbaf;
|
|
49
49
|
--orange-300: #f7b27a;
|
|
50
50
|
--orange-400: #f38744;
|
|
51
|
-
--orange-500: #
|
|
51
|
+
--orange-500: #e04f16;
|
|
52
52
|
--orange-600: #b93815;
|
|
53
53
|
--orange-700: #772917;
|
|
54
54
|
--violet-50: #fbfaff;
|
|
@@ -63,13 +63,14 @@
|
|
|
63
63
|
--focus-ring-4px-gray-100: 0px 0px 0px 3px #f2f4f7;
|
|
64
64
|
--focus-ring-4px-error-100: 0px 0px 0px 3px #fee4e2;
|
|
65
65
|
--shadow-xs: 0px 1px 2px 0px #1018280d;
|
|
66
|
+
--shadow-xs-focused-3px-primary-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 3px #ffeaee;
|
|
66
67
|
--shadow-xs-focused-3px-gray-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 3px #f2f4f7;
|
|
67
68
|
--shadow-xs-focused-3px-error-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 3px #fee4e2;
|
|
68
|
-
--shadow-xs-focused-4px-primary-
|
|
69
|
+
--shadow-xs-focused-4px-primary-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #ffeaee;
|
|
69
70
|
--shadow-xs-focused-4px-gray-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #f2f4f7;
|
|
70
71
|
--shadow-xs-focused-4px-error-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #fee4e2;
|
|
71
72
|
--shadow-sm: 0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f;
|
|
72
|
-
--shadow-sm-focused-4px-primary-
|
|
73
|
+
--shadow-sm-focused-4px-primary-100: 0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #ffeaee;
|
|
73
74
|
--shadow-sm-focused-4px-gray-100: 0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #f2f4f7;
|
|
74
75
|
--shadow-sm-focused-4px-error-100: 0px 0px 0px 4px #fee4e2, 0px 1px 2px 0px #1018280d;
|
|
75
76
|
--shadow-md: 0px 4px 8px -2px #1018281a, 0px 2px 4px -2px #1018280f;
|
|
@@ -77,21 +78,13 @@
|
|
|
77
78
|
--shadow-xl: 0px 20px 24px -4px #10182814, 0px 8px 8px -4px #10182808;
|
|
78
79
|
--shadow-2xl: 0px 24px 48px -12px #1018282e;
|
|
79
80
|
--shadow-3xl: 0px 32px 64px -12px #10182824;
|
|
80
|
-
--shadow-tooltip: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 0px 1px 0px rgba(0, 0, 0, 0.5),
|
|
81
|
-
0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
82
|
-
--spacing-xxs: 3px;
|
|
83
81
|
--spacing-xs: 4px;
|
|
84
|
-
--spacing-
|
|
85
|
-
--spacing-
|
|
86
|
-
--spacing-
|
|
87
|
-
--spacing-xl:
|
|
88
|
-
--
|
|
89
|
-
--
|
|
90
|
-
--border-radius-sm: 6px;
|
|
91
|
-
--border-radius-md: 8px;
|
|
92
|
-
--border-radius-lg: 12px;
|
|
93
|
-
--max-width-tooltip: 400px;
|
|
94
|
-
--font-families-commerce-sans: CommerceSans;
|
|
82
|
+
--spacing-s: 8px;
|
|
83
|
+
--spacing-m: 16px;
|
|
84
|
+
--spacing-l: 24px;
|
|
85
|
+
--spacing-xl: 32px;
|
|
86
|
+
--spacing-xxl: 40px;
|
|
87
|
+
--font-families-commerce-sans: 'CommerceSans', 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
|
|
95
88
|
--line-heights-display-xl: 76px;
|
|
96
89
|
--line-heights-display-lg: 60px;
|
|
97
90
|
--line-heights-display-md: 46px;
|
|
@@ -121,6 +114,20 @@
|
|
|
121
114
|
--font-size-display-xl: 60px;
|
|
122
115
|
}
|
|
123
116
|
|
|
117
|
+
:root {
|
|
118
|
+
--spacing-xxs: 3px;
|
|
119
|
+
--spacing-sm: 6px;
|
|
120
|
+
--spacing-lg: 12px;
|
|
121
|
+
--border-radius-xxs: 3px;
|
|
122
|
+
--border-radius-xs: 4px;
|
|
123
|
+
--border-radius-sm: 6px;
|
|
124
|
+
--border-radius-md: 8px;
|
|
125
|
+
--border-radius-lg: 12px;
|
|
126
|
+
--shadow-tooltip: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 0px 1px 0px rgba(0, 0, 0, 0.5),
|
|
127
|
+
0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
128
|
+
--max-width-tooltip: 400px;
|
|
129
|
+
}
|
|
130
|
+
|
|
124
131
|
@font-face {
|
|
125
132
|
font-family: "CommerceSans";
|
|
126
133
|
font-weight: 400;
|
|
@@ -295,7 +302,7 @@ button {
|
|
|
295
302
|
background-color: var(--primary-red-450);
|
|
296
303
|
border: 1px solid var(--primary-red-500);
|
|
297
304
|
color: var(--base-white);
|
|
298
|
-
box-shadow: var(--shadow-xs-focused-4px-primary-
|
|
305
|
+
box-shadow: var(--shadow-xs-focused-4px-primary-100);
|
|
299
306
|
}
|
|
300
307
|
.ncua-btn--primary:disabled, .ncua-btn--primary.is-disable {
|
|
301
308
|
background-color: var(--primary-red-100);
|
|
@@ -525,11 +532,175 @@ button {
|
|
|
525
532
|
width: var(--button-height-md);
|
|
526
533
|
}
|
|
527
534
|
|
|
535
|
+
@keyframes ncua-btn-spinner-rotate {
|
|
536
|
+
from {
|
|
537
|
+
transform: rotate(0deg);
|
|
538
|
+
}
|
|
539
|
+
to {
|
|
540
|
+
transform: rotate(360deg);
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
.ncua-btn__spinner {
|
|
544
|
+
display: inline-block;
|
|
545
|
+
border-radius: 50%;
|
|
546
|
+
border-style: solid;
|
|
547
|
+
animation: ncua-btn-spinner-rotate 1s linear infinite;
|
|
548
|
+
flex-shrink: 0;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.ncua-btn--xxs .ncua-btn__spinner {
|
|
552
|
+
width: 12px;
|
|
553
|
+
height: 12px;
|
|
554
|
+
border-width: 1.5px;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.ncua-btn--xs .ncua-btn__spinner {
|
|
558
|
+
width: 14px;
|
|
559
|
+
height: 14px;
|
|
560
|
+
border-width: 1.5px;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.ncua-btn--sm .ncua-btn__spinner {
|
|
564
|
+
width: 16px;
|
|
565
|
+
height: 16px;
|
|
566
|
+
border-width: 2px;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.ncua-btn--md .ncua-btn__spinner {
|
|
570
|
+
width: 20px;
|
|
571
|
+
height: 20px;
|
|
572
|
+
border-width: 2px;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.ncua-btn--primary .ncua-btn__spinner {
|
|
576
|
+
border-color: var(--primary-red-200);
|
|
577
|
+
border-top-color: var(--primary-red-400);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.ncua-btn--destructive .ncua-btn__spinner {
|
|
581
|
+
border-color: var(--primary-red-200);
|
|
582
|
+
border-top-color: var(--primary-red-400);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.ncua-btn--secondary .ncua-btn__spinner {
|
|
586
|
+
border-color: var(--gray-100);
|
|
587
|
+
border-top-color: var(--gray-500);
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.ncua-btn--secondary-gray .ncua-btn__spinner {
|
|
591
|
+
border-color: var(--gray-100);
|
|
592
|
+
border-top-color: var(--gray-500);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.ncua-btn.is-loading {
|
|
596
|
+
pointer-events: none;
|
|
597
|
+
}
|
|
598
|
+
|
|
528
599
|
.has-underline {
|
|
529
600
|
text-decoration: underline;
|
|
530
601
|
text-underline-offset: 2px;
|
|
531
602
|
}
|
|
532
603
|
|
|
604
|
+
.ncua-button-close-x {
|
|
605
|
+
display: inline-flex;
|
|
606
|
+
align-items: center;
|
|
607
|
+
justify-content: center;
|
|
608
|
+
color: var(--gray-400);
|
|
609
|
+
border-radius: 8px;
|
|
610
|
+
cursor: pointer;
|
|
611
|
+
background-color: transparent;
|
|
612
|
+
}
|
|
613
|
+
.ncua-button-close-x:hover {
|
|
614
|
+
background-color: var(--gray-50);
|
|
615
|
+
color: var(--gray-500);
|
|
616
|
+
}
|
|
617
|
+
.ncua-button-close-x:focus {
|
|
618
|
+
background-color: var(--gray-50);
|
|
619
|
+
}
|
|
620
|
+
.ncua-button-close-x--xs {
|
|
621
|
+
width: 28px;
|
|
622
|
+
height: 28px;
|
|
623
|
+
}
|
|
624
|
+
.ncua-button-close-x--sm {
|
|
625
|
+
width: 36px;
|
|
626
|
+
height: 36px;
|
|
627
|
+
}
|
|
628
|
+
.ncua-button-close-x--md {
|
|
629
|
+
width: 40px;
|
|
630
|
+
height: 40px;
|
|
631
|
+
}
|
|
632
|
+
.ncua-button-close-x--lg {
|
|
633
|
+
width: 44px;
|
|
634
|
+
height: 44px;
|
|
635
|
+
}
|
|
636
|
+
.ncua-button-close-x--dark {
|
|
637
|
+
color: var(--gray-100);
|
|
638
|
+
}
|
|
639
|
+
.ncua-button-close-x--dark:hover {
|
|
640
|
+
color: var(--base-white);
|
|
641
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
642
|
+
}
|
|
643
|
+
.ncua-button-close-x--dark:focus {
|
|
644
|
+
color: var(--gray-100);
|
|
645
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.ncua-button-stepper {
|
|
649
|
+
display: inline-flex;
|
|
650
|
+
align-items: center;
|
|
651
|
+
justify-content: center;
|
|
652
|
+
width: 20px;
|
|
653
|
+
height: 10px;
|
|
654
|
+
cursor: pointer;
|
|
655
|
+
background-color: var(--gray-100);
|
|
656
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
|
|
657
|
+
background-repeat: no-repeat;
|
|
658
|
+
background-position: center;
|
|
659
|
+
background-size: 6px 4px;
|
|
660
|
+
border-radius: 4px 4px 1px 1px;
|
|
661
|
+
}
|
|
662
|
+
.ncua-button-stepper:hover:not(:disabled), .ncua-button-stepper:focus:not(:disabled) {
|
|
663
|
+
background-color: var(--gray-200);
|
|
664
|
+
}
|
|
665
|
+
.ncua-button-stepper:disabled {
|
|
666
|
+
background-color: var(--gray-100);
|
|
667
|
+
}
|
|
668
|
+
.ncua-button-stepper--xs {
|
|
669
|
+
width: 20px;
|
|
670
|
+
height: 10px;
|
|
671
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
|
|
672
|
+
background-size: 6px 4px;
|
|
673
|
+
}
|
|
674
|
+
.ncua-button-stepper--xs:hover:not(:disabled), .ncua-button-stepper--xs:focus:not(:disabled) {
|
|
675
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23171818'/%3E%3C/svg%3E");
|
|
676
|
+
}
|
|
677
|
+
.ncua-input:focus-within .ncua-button-stepper--xs {
|
|
678
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%232f2f30'/%3E%3C/svg%3E");
|
|
679
|
+
}
|
|
680
|
+
.ncua-input.is-disabled .ncua-button-stepper--xs, .ncua-button-stepper--xs:disabled {
|
|
681
|
+
cursor: not-allowed;
|
|
682
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23a4a5a8'/%3E%3C/svg%3E");
|
|
683
|
+
}
|
|
684
|
+
.ncua-button-stepper--sm {
|
|
685
|
+
width: 22px;
|
|
686
|
+
height: 14px;
|
|
687
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
|
|
688
|
+
background-size: 8.2px 4.7px;
|
|
689
|
+
}
|
|
690
|
+
.ncua-button-stepper--sm:hover:not(:disabled), .ncua-button-stepper--sm:focus:not(:disabled) {
|
|
691
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23171818'/%3E%3C/svg%3E");
|
|
692
|
+
}
|
|
693
|
+
.ncua-input:focus-within .ncua-button-stepper--sm {
|
|
694
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%232f2f30'/%3E%3C/svg%3E");
|
|
695
|
+
}
|
|
696
|
+
.ncua-input.is-disabled .ncua-button-stepper--sm, .ncua-button-stepper--sm:disabled {
|
|
697
|
+
cursor: not-allowed;
|
|
698
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23a4a5a8'/%3E%3C/svg%3E");
|
|
699
|
+
}
|
|
700
|
+
.ncua-button-stepper--down {
|
|
701
|
+
transform: rotate(180deg);
|
|
702
|
+
}
|
|
703
|
+
|
|
533
704
|
.ncua-button-group {
|
|
534
705
|
display: inline-flex;
|
|
535
706
|
overflow: hidden;
|
|
@@ -611,6 +782,12 @@ button {
|
|
|
611
782
|
padding: 10px;
|
|
612
783
|
}
|
|
613
784
|
|
|
785
|
+
.ncua-button-group.full-width {
|
|
786
|
+
width: 100%;
|
|
787
|
+
}
|
|
788
|
+
.ncua-button-group.full-width .ncua-button-group__item {
|
|
789
|
+
flex: 1;
|
|
790
|
+
}
|
|
614
791
|
:where(.ncua-button-group.has-border) {
|
|
615
792
|
box-shadow: var(--shadow-xs);
|
|
616
793
|
}
|
|
@@ -710,159 +887,59 @@ button {
|
|
|
710
887
|
border-bottom-right-radius: 8px;
|
|
711
888
|
}
|
|
712
889
|
|
|
713
|
-
.ncua-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
color: var(--
|
|
890
|
+
.ncua-checkbox-input {
|
|
891
|
+
--check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23171818' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
892
|
+
--check-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23d3d4d8' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
893
|
+
--indeterminate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%232f2f30' stroke-width='1.66666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
894
|
+
--indeterminate-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%23d3d4d8' stroke-width='1.66666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
895
|
+
position: relative;
|
|
896
|
+
flex: none;
|
|
897
|
+
display: inline-block;
|
|
898
|
+
width: 16px;
|
|
899
|
+
height: 16px;
|
|
900
|
+
line-height: 1;
|
|
901
|
+
background-color: var(--base-white);
|
|
902
|
+
border-radius: 4px;
|
|
725
903
|
}
|
|
726
|
-
.ncua-
|
|
727
|
-
|
|
904
|
+
.ncua-checkbox-input :where(input) {
|
|
905
|
+
position: absolute;
|
|
906
|
+
top: 0;
|
|
907
|
+
left: 0;
|
|
908
|
+
z-index: 1;
|
|
909
|
+
-webkit-appearance: none;
|
|
910
|
+
-moz-appearance: none;
|
|
911
|
+
appearance: none;
|
|
912
|
+
margin: 0;
|
|
913
|
+
width: 100%;
|
|
914
|
+
height: 100%;
|
|
915
|
+
border: 1px solid var(--gray-200);
|
|
916
|
+
font: inherit;
|
|
917
|
+
border-radius: 4px;
|
|
728
918
|
}
|
|
729
|
-
.ncua-
|
|
730
|
-
|
|
731
|
-
|
|
919
|
+
.ncua-checkbox-input :where(input):focus {
|
|
920
|
+
border-color: var(--gray-400);
|
|
921
|
+
box-shadow: var(--focus-ring-4px-gray-100);
|
|
732
922
|
}
|
|
733
|
-
.ncua-
|
|
734
|
-
|
|
735
|
-
|
|
923
|
+
.ncua-checkbox-input :where(input):checked {
|
|
924
|
+
border-color: var(--gray-700);
|
|
925
|
+
background-color: var(--gray-50);
|
|
926
|
+
outline: none;
|
|
736
927
|
}
|
|
737
|
-
.ncua-
|
|
738
|
-
|
|
739
|
-
|
|
928
|
+
.ncua-checkbox-input :where(input):disabled {
|
|
929
|
+
border-color: var(--gray-200);
|
|
930
|
+
background-color: var(--gray-100);
|
|
740
931
|
}
|
|
741
|
-
.ncua-
|
|
742
|
-
|
|
743
|
-
height: 44px;
|
|
932
|
+
.ncua-checkbox-input.destructive :where(input) {
|
|
933
|
+
border-color: var(--primary-red-600);
|
|
744
934
|
}
|
|
745
|
-
.ncua-
|
|
746
|
-
color: var(--
|
|
935
|
+
.ncua-checkbox-input.destructive :where(input):focus {
|
|
936
|
+
border-color: var(--primary-red-600);
|
|
937
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
747
938
|
}
|
|
748
|
-
.ncua-
|
|
749
|
-
color: var(--
|
|
750
|
-
background-color:
|
|
751
|
-
|
|
752
|
-
.ncua-button-close-x--dark:focus {
|
|
753
|
-
color: var(--gray-100);
|
|
754
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
.ncua-button-stepper {
|
|
758
|
-
display: inline-flex;
|
|
759
|
-
align-items: center;
|
|
760
|
-
justify-content: center;
|
|
761
|
-
width: 20px;
|
|
762
|
-
height: 10px;
|
|
763
|
-
cursor: pointer;
|
|
764
|
-
background-color: var(--gray-100);
|
|
765
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
|
|
766
|
-
background-repeat: no-repeat;
|
|
767
|
-
background-position: center;
|
|
768
|
-
background-size: 6px 4px;
|
|
769
|
-
border-radius: 4px 4px 1px 1px;
|
|
770
|
-
}
|
|
771
|
-
.ncua-button-stepper:hover:not(:disabled), .ncua-button-stepper:focus:not(:disabled) {
|
|
772
|
-
background-color: var(--gray-200);
|
|
773
|
-
}
|
|
774
|
-
.ncua-button-stepper:disabled {
|
|
775
|
-
background-color: var(--gray-100);
|
|
776
|
-
}
|
|
777
|
-
.ncua-button-stepper--xs {
|
|
778
|
-
width: 20px;
|
|
779
|
-
height: 10px;
|
|
780
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
|
|
781
|
-
background-size: 6px 4px;
|
|
782
|
-
}
|
|
783
|
-
.ncua-button-stepper--xs:hover:not(:disabled), .ncua-button-stepper--xs:focus:not(:disabled) {
|
|
784
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23171818'/%3E%3C/svg%3E");
|
|
785
|
-
}
|
|
786
|
-
.ncua-input:focus-within .ncua-button-stepper--xs {
|
|
787
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%232f2f30'/%3E%3C/svg%3E");
|
|
788
|
-
}
|
|
789
|
-
.ncua-input.is-disabled .ncua-button-stepper--xs, .ncua-button-stepper--xs:disabled {
|
|
790
|
-
cursor: not-allowed;
|
|
791
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='4px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23a4a5a8'/%3E%3C/svg%3E");
|
|
792
|
-
}
|
|
793
|
-
.ncua-button-stepper--sm {
|
|
794
|
-
width: 22px;
|
|
795
|
-
height: 14px;
|
|
796
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23757678'/%3E%3C/svg%3E");
|
|
797
|
-
background-size: 8.2px 4.7px;
|
|
798
|
-
}
|
|
799
|
-
.ncua-button-stepper--sm:hover:not(:disabled), .ncua-button-stepper--sm:focus:not(:disabled) {
|
|
800
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23171818'/%3E%3C/svg%3E");
|
|
801
|
-
}
|
|
802
|
-
.ncua-input:focus-within .ncua-button-stepper--sm {
|
|
803
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%232f2f30'/%3E%3C/svg%3E");
|
|
804
|
-
}
|
|
805
|
-
.ncua-input.is-disabled .ncua-button-stepper--sm, .ncua-button-stepper--sm:disabled {
|
|
806
|
-
cursor: not-allowed;
|
|
807
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.2px' height='4.7px' viewBox='0 0 7 4' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.14645 0.146447C3.34171 -0.0488155 3.65829 -0.0488155 3.85355 0.146447L6.85355 3.14645C7.04882 3.34171 7.04882 3.65829 6.85355 3.85355C6.65829 4.04882 6.34171 4.04882 6.14645 3.85355L3.5 1.20711L0.853553 3.85355C0.658291 4.04882 0.341709 4.04882 0.146447 3.85355C-0.0488155 3.65829 -0.0488155 3.34171 0.146447 3.14645L3.14645 0.146447Z' fill='%23a4a5a8'/%3E%3C/svg%3E");
|
|
808
|
-
}
|
|
809
|
-
.ncua-button-stepper--down {
|
|
810
|
-
transform: rotate(180deg);
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.ncua-checkbox-input {
|
|
814
|
-
--check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23171818' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
815
|
-
--check-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23d3d4d8' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
816
|
-
--indeterminate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%232f2f30' stroke-width='1.66666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
817
|
-
--indeterminate-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%23d3d4d8' stroke-width='1.66666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
818
|
-
position: relative;
|
|
819
|
-
flex: none;
|
|
820
|
-
display: inline-block;
|
|
821
|
-
width: 16px;
|
|
822
|
-
height: 16px;
|
|
823
|
-
line-height: 1;
|
|
824
|
-
background-color: var(--base-white);
|
|
825
|
-
border-radius: 4px;
|
|
826
|
-
}
|
|
827
|
-
.ncua-checkbox-input :where(input) {
|
|
828
|
-
position: absolute;
|
|
829
|
-
top: 0;
|
|
830
|
-
left: 0;
|
|
831
|
-
z-index: 1;
|
|
832
|
-
-webkit-appearance: none;
|
|
833
|
-
-moz-appearance: none;
|
|
834
|
-
appearance: none;
|
|
835
|
-
margin: 0;
|
|
836
|
-
width: 100%;
|
|
837
|
-
height: 100%;
|
|
838
|
-
border: 1px solid var(--gray-200);
|
|
839
|
-
font: inherit;
|
|
840
|
-
border-radius: 4px;
|
|
841
|
-
}
|
|
842
|
-
.ncua-checkbox-input :where(input):focus {
|
|
843
|
-
border-color: var(--gray-400);
|
|
844
|
-
box-shadow: var(--focus-ring-4px-gray-100);
|
|
845
|
-
}
|
|
846
|
-
.ncua-checkbox-input :where(input):checked {
|
|
847
|
-
border-color: var(--gray-700);
|
|
848
|
-
background-color: var(--gray-50);
|
|
849
|
-
outline: none;
|
|
850
|
-
}
|
|
851
|
-
.ncua-checkbox-input :where(input):disabled {
|
|
852
|
-
border-color: var(--gray-200);
|
|
853
|
-
background-color: var(--gray-100);
|
|
854
|
-
}
|
|
855
|
-
.ncua-checkbox-input.destructive :where(input) {
|
|
856
|
-
border-color: var(--primary-red-600);
|
|
857
|
-
}
|
|
858
|
-
.ncua-checkbox-input.destructive :where(input):focus {
|
|
859
|
-
border-color: var(--primary-red-600);
|
|
860
|
-
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
861
|
-
}
|
|
862
|
-
.ncua-checkbox-input:hover {
|
|
863
|
-
border-color: var(--gray-600);
|
|
864
|
-
background-color: var(--gray-100);
|
|
865
|
-
border-radius: 4px;
|
|
939
|
+
.ncua-checkbox-input:hover {
|
|
940
|
+
border-color: var(--gray-600);
|
|
941
|
+
background-color: var(--gray-100);
|
|
942
|
+
border-radius: 4px;
|
|
866
943
|
}
|
|
867
944
|
.ncua-checkbox-input:has(input:checked)::before, .ncua-checkbox-input.has-indeterminate::before {
|
|
868
945
|
position: absolute;
|
|
@@ -1375,12 +1452,12 @@ button {
|
|
|
1375
1452
|
line-height: var(--line-heights-sm);
|
|
1376
1453
|
padding: 6px 12px;
|
|
1377
1454
|
}
|
|
1378
|
-
.ncua-input__field:has(.ncua-input__stepper-button-group ~
|
|
1455
|
+
.ncua-input__field:has(.ncua-input__stepper-button-group ~ input) {
|
|
1379
1456
|
padding-top: 2px;
|
|
1380
1457
|
padding-bottom: 2px;
|
|
1381
1458
|
padding-left: 2px;
|
|
1382
1459
|
}
|
|
1383
|
-
.ncua-input__field:has(
|
|
1460
|
+
.ncua-input__field:has(input ~ .ncua-input__stepper-button-group) {
|
|
1384
1461
|
padding-top: 2px;
|
|
1385
1462
|
padding-bottom: 2px;
|
|
1386
1463
|
padding-right: 2px;
|
|
@@ -1531,11 +1608,14 @@ button {
|
|
|
1531
1608
|
.ncua-input.full-width {
|
|
1532
1609
|
width: 100%;
|
|
1533
1610
|
}
|
|
1534
|
-
.ncua-
|
|
1611
|
+
.ncua-input.full-width .ncua-input__content {
|
|
1612
|
+
flex: 1;
|
|
1613
|
+
}
|
|
1614
|
+
.ncua-input__number input::-webkit-inner-spin-button, .ncua-input__number input::-webkit-outer-spin-button {
|
|
1535
1615
|
-webkit-appearance: none;
|
|
1536
1616
|
margin: 0;
|
|
1537
1617
|
}
|
|
1538
|
-
.ncua-input__number {
|
|
1618
|
+
.ncua-input__number input {
|
|
1539
1619
|
-moz-appearance: textfield;
|
|
1540
1620
|
appearance: textfield;
|
|
1541
1621
|
}
|
|
@@ -1544,10 +1624,10 @@ button {
|
|
|
1544
1624
|
flex-direction: column;
|
|
1545
1625
|
gap: 2px;
|
|
1546
1626
|
}
|
|
1547
|
-
.ncua-input__field--xs .ncua-input__stepper-button-group ~
|
|
1627
|
+
.ncua-input__field--xs .ncua-input__stepper-button-group ~ input {
|
|
1548
1628
|
padding-left: 10px;
|
|
1549
1629
|
}
|
|
1550
|
-
.ncua-input__field--sm .ncua-input__stepper-button-group ~
|
|
1630
|
+
.ncua-input__field--sm .ncua-input__stepper-button-group ~ input {
|
|
1551
1631
|
padding-left: 12px;
|
|
1552
1632
|
}
|
|
1553
1633
|
.ncua-input__field--xs .ncua-input__icon-wrap + .ncua-input__stepper-button-group {
|
|
@@ -2671,26 +2751,26 @@ button {
|
|
|
2671
2751
|
.ncua-tag__tooltip--top-left {
|
|
2672
2752
|
bottom: 100%;
|
|
2673
2753
|
right: 0;
|
|
2674
|
-
margin-bottom: var(--spacing-
|
|
2754
|
+
margin-bottom: var(--spacing-s);
|
|
2675
2755
|
}
|
|
2676
2756
|
.ncua-tag__tooltip--top-right {
|
|
2677
2757
|
bottom: 100%;
|
|
2678
2758
|
left: 0;
|
|
2679
|
-
margin-bottom: var(--spacing-
|
|
2759
|
+
margin-bottom: var(--spacing-s);
|
|
2680
2760
|
}
|
|
2681
2761
|
.ncua-tag__tooltip--bottom-left {
|
|
2682
2762
|
top: 100%;
|
|
2683
2763
|
right: 0;
|
|
2684
|
-
margin-top: var(--spacing-
|
|
2764
|
+
margin-top: var(--spacing-s);
|
|
2685
2765
|
}
|
|
2686
2766
|
.ncua-tag__tooltip--bottom-right {
|
|
2687
2767
|
top: 100%;
|
|
2688
2768
|
left: 0;
|
|
2689
|
-
margin-top: var(--spacing-
|
|
2769
|
+
margin-top: var(--spacing-s);
|
|
2690
2770
|
}
|
|
2691
2771
|
.ncua-tag__tooltip-content {
|
|
2692
2772
|
display: block;
|
|
2693
|
-
padding: var(--spacing-
|
|
2773
|
+
padding: var(--spacing-s) var(--spacing-lg);
|
|
2694
2774
|
background-color: var(--base-white);
|
|
2695
2775
|
color: var(--gray-500);
|
|
2696
2776
|
font-size: var(--font-size-xxs);
|
|
@@ -2819,14 +2899,16 @@ button {
|
|
|
2819
2899
|
.ncua-tooltip__bg--top {
|
|
2820
2900
|
top: auto;
|
|
2821
2901
|
bottom: calc(100% + 16px);
|
|
2822
|
-
right: 50%;
|
|
2823
|
-
transform: translateX(50%);
|
|
2824
2902
|
}
|
|
2825
2903
|
.ncua-tooltip__bg--top::after {
|
|
2826
2904
|
top: 100%;
|
|
2827
2905
|
border-block-end: 0;
|
|
2828
2906
|
border-inline: 6px solid transparent;
|
|
2829
2907
|
}
|
|
2908
|
+
.ncua-tooltip__bg--top {
|
|
2909
|
+
right: 50%;
|
|
2910
|
+
transform: translateX(50%);
|
|
2911
|
+
}
|
|
2830
2912
|
.ncua-tooltip__bg--top::after {
|
|
2831
2913
|
left: 50%;
|
|
2832
2914
|
transform: translateX(-50%);
|
|
@@ -2834,64 +2916,74 @@ button {
|
|
|
2834
2916
|
.ncua-tooltip__bg--top-left {
|
|
2835
2917
|
top: auto;
|
|
2836
2918
|
bottom: calc(100% + 16px);
|
|
2837
|
-
left: -12px;
|
|
2838
2919
|
}
|
|
2839
2920
|
.ncua-tooltip__bg--top-left::after {
|
|
2840
2921
|
top: 100%;
|
|
2841
2922
|
border-block-end: 0;
|
|
2842
2923
|
border-inline: 6px solid transparent;
|
|
2843
2924
|
}
|
|
2925
|
+
.ncua-tooltip__bg--top-left {
|
|
2926
|
+
left: -12px;
|
|
2927
|
+
}
|
|
2844
2928
|
.ncua-tooltip__bg--top-left::after {
|
|
2845
2929
|
left: 12px;
|
|
2846
2930
|
}
|
|
2847
2931
|
.ncua-tooltip__bg--top-right {
|
|
2848
2932
|
top: auto;
|
|
2849
2933
|
bottom: calc(100% + 16px);
|
|
2850
|
-
right: -12px;
|
|
2851
2934
|
}
|
|
2852
2935
|
.ncua-tooltip__bg--top-right::after {
|
|
2853
2936
|
top: 100%;
|
|
2854
2937
|
border-block-end: 0;
|
|
2855
2938
|
border-inline: 6px solid transparent;
|
|
2856
2939
|
}
|
|
2940
|
+
.ncua-tooltip__bg--top-right {
|
|
2941
|
+
right: -12px;
|
|
2942
|
+
}
|
|
2857
2943
|
.ncua-tooltip__bg--top-right::after {
|
|
2858
2944
|
right: 15px;
|
|
2859
2945
|
}
|
|
2860
2946
|
.ncua-tooltip__bg--bottom {
|
|
2861
2947
|
top: calc(100% + 6px);
|
|
2862
|
-
right: 50%;
|
|
2863
|
-
transform: translateX(50%);
|
|
2864
2948
|
}
|
|
2865
2949
|
.ncua-tooltip__bg--bottom::after {
|
|
2866
2950
|
bottom: 100%;
|
|
2867
2951
|
border-block-start: 0;
|
|
2868
2952
|
border-inline: 6px solid transparent;
|
|
2869
2953
|
}
|
|
2954
|
+
.ncua-tooltip__bg--bottom {
|
|
2955
|
+
right: 50%;
|
|
2956
|
+
transform: translateX(50%);
|
|
2957
|
+
}
|
|
2870
2958
|
.ncua-tooltip__bg--bottom::after {
|
|
2871
2959
|
left: 50%;
|
|
2872
2960
|
transform: translateX(-50%);
|
|
2873
2961
|
}
|
|
2874
2962
|
.ncua-tooltip__bg--bottom-left {
|
|
2875
2963
|
top: calc(100% + 6px);
|
|
2876
|
-
left: -12px;
|
|
2877
2964
|
}
|
|
2878
2965
|
.ncua-tooltip__bg--bottom-left::after {
|
|
2879
2966
|
bottom: 100%;
|
|
2880
2967
|
border-block-start: 0;
|
|
2881
2968
|
border-inline: 6px solid transparent;
|
|
2882
2969
|
}
|
|
2970
|
+
.ncua-tooltip__bg--bottom-left {
|
|
2971
|
+
left: -12px;
|
|
2972
|
+
}
|
|
2883
2973
|
.ncua-tooltip__bg--bottom-left::after {
|
|
2884
2974
|
left: 12px;
|
|
2885
2975
|
}
|
|
2886
2976
|
.ncua-tooltip__bg--bottom-right {
|
|
2887
2977
|
top: calc(100% + 6px);
|
|
2888
|
-
right: -12px;
|
|
2889
2978
|
}
|
|
2890
2979
|
.ncua-tooltip__bg--bottom-right::after {
|
|
2891
2980
|
bottom: 100%;
|
|
2892
2981
|
border-block-start: 0;
|
|
2893
2982
|
border-inline: 6px solid transparent;
|
|
2894
2983
|
}
|
|
2984
|
+
.ncua-tooltip__bg--bottom-right {
|
|
2985
|
+
right: -12px;
|
|
2986
|
+
}
|
|
2895
2987
|
.ncua-tooltip__bg--bottom-right::after {
|
|
2896
2988
|
right: 15px;
|
|
2897
2989
|
}
|
|
@@ -3051,9 +3143,6 @@ button {
|
|
|
3051
3143
|
font-size: var(--font-size-xxs);
|
|
3052
3144
|
line-height: var(--line-heights-xxs);
|
|
3053
3145
|
}
|
|
3054
|
-
.ncua-select--sm {
|
|
3055
|
-
--icon-size: 16px;
|
|
3056
|
-
}
|
|
3057
3146
|
.ncua-select--sm .ncua-select__content {
|
|
3058
3147
|
height: var(--select-height-sm);
|
|
3059
3148
|
border-radius: 6px;
|
|
@@ -3069,7 +3158,7 @@ button {
|
|
|
3069
3158
|
font-size: var(--font-size-xs);
|
|
3070
3159
|
line-height: var(--line-heights-xs);
|
|
3071
3160
|
}
|
|
3072
|
-
.ncua-select--
|
|
3161
|
+
.ncua-select--sm {
|
|
3073
3162
|
--icon-size: 16px;
|
|
3074
3163
|
}
|
|
3075
3164
|
.ncua-select--md .ncua-select__content {
|
|
@@ -3088,21 +3177,24 @@ button {
|
|
|
3088
3177
|
font-size: var(--font-size-xs);
|
|
3089
3178
|
line-height: var(--line-heights-xs);
|
|
3090
3179
|
}
|
|
3180
|
+
.ncua-select--md {
|
|
3181
|
+
--icon-size: 16px;
|
|
3182
|
+
}
|
|
3091
3183
|
.ncua-select--simple .ncua-select__content {
|
|
3092
3184
|
border: 0;
|
|
3093
3185
|
background-color: transparent;
|
|
3094
3186
|
}
|
|
3095
|
-
.ncua-select--simple
|
|
3187
|
+
.ncua-select--simple.ncua-select--xs {
|
|
3096
3188
|
min-width: auto;
|
|
3097
3189
|
height: var(--select-simple-height-xs);
|
|
3098
3190
|
border-radius: 0;
|
|
3099
3191
|
}
|
|
3100
|
-
.ncua-select--simple
|
|
3192
|
+
.ncua-select--simple.ncua-select--sm {
|
|
3101
3193
|
min-width: auto;
|
|
3102
3194
|
height: var(--select-simple-height-sm);
|
|
3103
3195
|
border-radius: 0;
|
|
3104
3196
|
}
|
|
3105
|
-
.ncua-select--simple
|
|
3197
|
+
.ncua-select--simple.ncua-select--md {
|
|
3106
3198
|
min-width: auto;
|
|
3107
3199
|
height: var(--select-simple-height-md);
|
|
3108
3200
|
border-radius: 0;
|
|
@@ -3143,8 +3235,6 @@ button {
|
|
|
3143
3235
|
list-style: none;
|
|
3144
3236
|
overflow-y: auto;
|
|
3145
3237
|
overscroll-behavior: contain;
|
|
3146
|
-
scrollbar-width: thin;
|
|
3147
|
-
scrollbar-color: #eaecf0 transparent;
|
|
3148
3238
|
}
|
|
3149
3239
|
.ncua-select-dropdown__options::-webkit-scrollbar {
|
|
3150
3240
|
width: 6px;
|
|
@@ -3160,6 +3250,10 @@ button {
|
|
|
3160
3250
|
.ncua-select-dropdown__options::-webkit-scrollbar-thumb:hover {
|
|
3161
3251
|
background: #d0d5dd;
|
|
3162
3252
|
}
|
|
3253
|
+
.ncua-select-dropdown__options {
|
|
3254
|
+
scrollbar-width: thin;
|
|
3255
|
+
scrollbar-color: #eaecf0 transparent;
|
|
3256
|
+
}
|
|
3163
3257
|
.ncua-select-dropdown__option {
|
|
3164
3258
|
min-width: 84px;
|
|
3165
3259
|
padding: 8px 26px 8px 12px;
|
|
@@ -3347,9 +3441,6 @@ button {
|
|
|
3347
3441
|
font-size: var(--font-size-xxs);
|
|
3348
3442
|
line-height: var(--line-heights-xxs);
|
|
3349
3443
|
}
|
|
3350
|
-
.ncua-selectbox--sm {
|
|
3351
|
-
--icon-size: 16px;
|
|
3352
|
-
}
|
|
3353
3444
|
.ncua-selectbox--sm .ncua-selectbox__content {
|
|
3354
3445
|
height: var(--select-height-sm);
|
|
3355
3446
|
border-radius: 6px;
|
|
@@ -3365,9 +3456,11 @@ button {
|
|
|
3365
3456
|
font-size: var(--font-size-xs);
|
|
3366
3457
|
line-height: var(--line-heights-xs);
|
|
3367
3458
|
}
|
|
3459
|
+
.ncua-selectbox--sm {
|
|
3460
|
+
--icon-size: 16px;
|
|
3461
|
+
}
|
|
3368
3462
|
.ncua-selectbox--md {
|
|
3369
3463
|
min-width: 132px;
|
|
3370
|
-
--icon-size: 16px;
|
|
3371
3464
|
}
|
|
3372
3465
|
.ncua-selectbox--md .ncua-selectbox__content {
|
|
3373
3466
|
height: var(--select-height-md);
|
|
@@ -3384,6 +3477,9 @@ button {
|
|
|
3384
3477
|
font-size: var(--font-size-xs);
|
|
3385
3478
|
line-height: var(--line-heights-xs);
|
|
3386
3479
|
}
|
|
3480
|
+
.ncua-selectbox--md {
|
|
3481
|
+
--icon-size: 16px;
|
|
3482
|
+
}
|
|
3387
3483
|
.ncua-selectbox--simple .ncua-selectbox__content {
|
|
3388
3484
|
border: 0;
|
|
3389
3485
|
background-color: transparent;
|
|
@@ -3989,13 +4085,15 @@ button {
|
|
|
3989
4085
|
background: var(--base-white);
|
|
3990
4086
|
box-shadow: var(--shadow-xs);
|
|
3991
4087
|
color: var(--gray-700);
|
|
3992
|
-
height: 100%;
|
|
3993
4088
|
padding: 5px 10px;
|
|
3994
4089
|
font-size: var(--font-size-xs);
|
|
3995
4090
|
}
|
|
3996
4091
|
.ncua-date-picker .flatpickr-wrapper:focus-within {
|
|
3997
4092
|
border-color: var(--gray-400);
|
|
3998
4093
|
}
|
|
4094
|
+
.ncua-date-picker .flatpickr-wrapper {
|
|
4095
|
+
height: 100%;
|
|
4096
|
+
}
|
|
3999
4097
|
.ncua-date-picker__input {
|
|
4000
4098
|
width: 100%;
|
|
4001
4099
|
height: 100%;
|
|
@@ -4363,6 +4461,28 @@ button {
|
|
|
4363
4461
|
border-block-start-width: 0;
|
|
4364
4462
|
}
|
|
4365
4463
|
|
|
4464
|
+
.ncua-date-picker--portal {
|
|
4465
|
+
border: 1px solid var(--gray-200);
|
|
4466
|
+
border-radius: 6px;
|
|
4467
|
+
font-weight: 400;
|
|
4468
|
+
background: var(--base-white);
|
|
4469
|
+
box-shadow: var(--shadow-xs);
|
|
4470
|
+
color: var(--gray-700);
|
|
4471
|
+
padding: 5px 10px;
|
|
4472
|
+
font-size: var(--font-size-xs);
|
|
4473
|
+
}
|
|
4474
|
+
.ncua-date-picker--portal:focus-within {
|
|
4475
|
+
border-color: var(--gray-400);
|
|
4476
|
+
}
|
|
4477
|
+
.ncua-date-picker--portal .flatpickr-calendar.arrowTop {
|
|
4478
|
+
margin-top: 9px;
|
|
4479
|
+
margin-inline-start: -10px;
|
|
4480
|
+
}
|
|
4481
|
+
.ncua-date-picker--portal .flatpickr-calendar.arrowBottom {
|
|
4482
|
+
margin-top: -34px;
|
|
4483
|
+
margin-inline-start: -10px;
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4366
4486
|
.ncua-range-date-picker {
|
|
4367
4487
|
display: inline-flex;
|
|
4368
4488
|
align-items: center;
|
|
@@ -4378,6 +4498,26 @@ button {
|
|
|
4378
4498
|
margin-inline-end: 4px;
|
|
4379
4499
|
}
|
|
4380
4500
|
|
|
4501
|
+
.ncua-carousel-arrow {
|
|
4502
|
+
display: inline-block;
|
|
4503
|
+
border-radius: 999px;
|
|
4504
|
+
background-color: #ffffff;
|
|
4505
|
+
cursor: pointer;
|
|
4506
|
+
}
|
|
4507
|
+
.ncua-carousel-arrow__icon {
|
|
4508
|
+
display: block;
|
|
4509
|
+
}
|
|
4510
|
+
.ncua-carousel-arrow--line {
|
|
4511
|
+
outline: 1px solid var(--gray-200);
|
|
4512
|
+
}
|
|
4513
|
+
.ncua-carousel-arrow--md {
|
|
4514
|
+
padding: 8px;
|
|
4515
|
+
}
|
|
4516
|
+
.ncua-carousel-arrow--md .ncua-carousel-arrow__icon {
|
|
4517
|
+
width: 16px;
|
|
4518
|
+
height: 16px;
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4381
4521
|
.ncua-carousel-number-group {
|
|
4382
4522
|
display: inline-flex;
|
|
4383
4523
|
align-items: center;
|
|
@@ -4413,26 +4553,6 @@ button {
|
|
|
4413
4553
|
padding: 2px 8px;
|
|
4414
4554
|
}
|
|
4415
4555
|
|
|
4416
|
-
.ncua-carousel-arrow {
|
|
4417
|
-
display: inline-block;
|
|
4418
|
-
border-radius: 999px;
|
|
4419
|
-
background-color: #ffffff;
|
|
4420
|
-
cursor: pointer;
|
|
4421
|
-
}
|
|
4422
|
-
.ncua-carousel-arrow__icon {
|
|
4423
|
-
display: block;
|
|
4424
|
-
}
|
|
4425
|
-
.ncua-carousel-arrow--line {
|
|
4426
|
-
outline: 1px solid var(--gray-200);
|
|
4427
|
-
}
|
|
4428
|
-
.ncua-carousel-arrow--md {
|
|
4429
|
-
padding: 8px;
|
|
4430
|
-
}
|
|
4431
|
-
.ncua-carousel-arrow--md .ncua-carousel-arrow__icon {
|
|
4432
|
-
width: 16px;
|
|
4433
|
-
height: 16px;
|
|
4434
|
-
}
|
|
4435
|
-
|
|
4436
4556
|
.ncua-breadcrumb {
|
|
4437
4557
|
display: flex;
|
|
4438
4558
|
align-items: center;
|
|
@@ -4839,11 +4959,13 @@ button {
|
|
|
4839
4959
|
padding: 5px 12px;
|
|
4840
4960
|
height: 34px;
|
|
4841
4961
|
font-size: var(--font-size-xs);
|
|
4842
|
-
justify-content: center;
|
|
4843
4962
|
}
|
|
4844
4963
|
.ncua-horizontal-tab .ncua-tab-button:hover, .ncua-horizontal-tab .ncua-tab-button.is-active {
|
|
4845
4964
|
color: var(--gray-700);
|
|
4846
4965
|
}
|
|
4966
|
+
.ncua-horizontal-tab .ncua-tab-button {
|
|
4967
|
+
justify-content: center;
|
|
4968
|
+
}
|
|
4847
4969
|
.ncua-horizontal-tab--sm .ncua-tab-button {
|
|
4848
4970
|
padding: 5px 12px;
|
|
4849
4971
|
height: 34px;
|
|
@@ -4868,16 +4990,16 @@ button {
|
|
|
4868
4990
|
.ncua-horizontal-tab--lg.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
4869
4991
|
height: 40px;
|
|
4870
4992
|
}
|
|
4871
|
-
.ncua-horizontal-tab
|
|
4993
|
+
.ncua-horizontal-tab.full-width {
|
|
4872
4994
|
width: 100%;
|
|
4873
4995
|
}
|
|
4874
|
-
.ncua-horizontal-tab
|
|
4996
|
+
.ncua-horizontal-tab.full-width .ncua-horizontal-tab__item {
|
|
4875
4997
|
width: 100% !important;
|
|
4876
4998
|
}
|
|
4877
|
-
.ncua-horizontal-tab
|
|
4999
|
+
.ncua-horizontal-tab.full-width .swiper-wrapper {
|
|
4878
5000
|
width: auto;
|
|
4879
5001
|
}
|
|
4880
|
-
.ncua-horizontal-tab
|
|
5002
|
+
.ncua-horizontal-tab.full-width .swiper-slide {
|
|
4881
5003
|
flex-shrink: 1;
|
|
4882
5004
|
}
|
|
4883
5005
|
.ncua-horizontal-tab--underline::after, .ncua-horizontal-tab--underline-fill::after {
|
|
@@ -4950,7 +5072,6 @@ button {
|
|
|
4950
5072
|
background-color: var(--gray-50);
|
|
4951
5073
|
border: 1px solid var(--gray-100);
|
|
4952
5074
|
border-radius: 8px;
|
|
4953
|
-
display: inline-block;
|
|
4954
5075
|
}
|
|
4955
5076
|
.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
4956
5077
|
background-color: var(--gray-50);
|
|
@@ -4965,6 +5086,9 @@ button {
|
|
|
4965
5086
|
outline: none;
|
|
4966
5087
|
box-shadow: var(--shadow-sm);
|
|
4967
5088
|
}
|
|
5089
|
+
.ncua-horizontal-tab--button-white {
|
|
5090
|
+
display: inline-block;
|
|
5091
|
+
}
|
|
4968
5092
|
.ncua-horizontal-tab--button-white .swiper-slide {
|
|
4969
5093
|
padding: 3px 0;
|
|
4970
5094
|
}
|
|
@@ -5028,11 +5152,13 @@ button {
|
|
|
5028
5152
|
padding: 5px 12px;
|
|
5029
5153
|
height: 34px;
|
|
5030
5154
|
font-size: var(--font-size-xs);
|
|
5031
|
-
justify-content: flex-start;
|
|
5032
5155
|
}
|
|
5033
5156
|
.ncua-vertical-tab .ncua-tab-button:hover, .ncua-vertical-tab .ncua-tab-button.is-active {
|
|
5034
5157
|
color: var(--gray-700);
|
|
5035
5158
|
}
|
|
5159
|
+
.ncua-vertical-tab .ncua-tab-button {
|
|
5160
|
+
justify-content: flex-start;
|
|
5161
|
+
}
|
|
5036
5162
|
.ncua-vertical-tab--button-primary .ncua-tab-button:hover, .ncua-vertical-tab--button-primary .ncua-tab-button.is-active {
|
|
5037
5163
|
background-color: var(--gray-50);
|
|
5038
5164
|
}
|
|
@@ -5044,7 +5170,6 @@ button {
|
|
|
5044
5170
|
background-color: var(--gray-50);
|
|
5045
5171
|
border: 1px solid var(--gray-100);
|
|
5046
5172
|
border-radius: 8px;
|
|
5047
|
-
padding: 4px;
|
|
5048
5173
|
}
|
|
5049
5174
|
.ncua-vertical-tab--button-white .ncua-tab-button {
|
|
5050
5175
|
background-color: var(--gray-50);
|
|
@@ -5059,6 +5184,9 @@ button {
|
|
|
5059
5184
|
outline: none;
|
|
5060
5185
|
box-shadow: var(--shadow-sm);
|
|
5061
5186
|
}
|
|
5187
|
+
.ncua-vertical-tab--button-white {
|
|
5188
|
+
padding: 4px;
|
|
5189
|
+
}
|
|
5062
5190
|
.ncua-vertical-tab--line-vertical .ncua-tab-button {
|
|
5063
5191
|
border-radius: 0;
|
|
5064
5192
|
}
|
|
@@ -5438,6 +5566,426 @@ button {
|
|
|
5438
5566
|
gap: 16px;
|
|
5439
5567
|
}
|
|
5440
5568
|
|
|
5569
|
+
.ncua-table-wrapper {
|
|
5570
|
+
display: flex;
|
|
5571
|
+
flex-direction: column;
|
|
5572
|
+
align-items: stretch;
|
|
5573
|
+
width: 100%;
|
|
5574
|
+
}
|
|
5575
|
+
|
|
5576
|
+
.ncua-table {
|
|
5577
|
+
display: flex;
|
|
5578
|
+
flex-direction: column;
|
|
5579
|
+
align-items: stretch;
|
|
5580
|
+
width: 100%;
|
|
5581
|
+
background: var(--base-white);
|
|
5582
|
+
border: 1px solid var(--gray-100);
|
|
5583
|
+
border-radius: var(--border-radius-md);
|
|
5584
|
+
box-shadow: var(--shadow-xs);
|
|
5585
|
+
overflow: hidden;
|
|
5586
|
+
}
|
|
5587
|
+
.ncua-table__scroll-container {
|
|
5588
|
+
width: 100%;
|
|
5589
|
+
overflow-y: auto;
|
|
5590
|
+
}
|
|
5591
|
+
.ncua-table__scroll-container::-webkit-scrollbar {
|
|
5592
|
+
width: 16px;
|
|
5593
|
+
}
|
|
5594
|
+
.ncua-table__scroll-container::-webkit-scrollbar-track {
|
|
5595
|
+
background: transparent;
|
|
5596
|
+
padding: 4px;
|
|
5597
|
+
margin-top: 40px;
|
|
5598
|
+
}
|
|
5599
|
+
.ncua-table__scroll-container::-webkit-scrollbar-thumb {
|
|
5600
|
+
background: var(--gray-200);
|
|
5601
|
+
border-radius: 8px;
|
|
5602
|
+
border: 5px solid transparent;
|
|
5603
|
+
background-clip: padding-box;
|
|
5604
|
+
min-height: 40px;
|
|
5605
|
+
}
|
|
5606
|
+
.ncua-table__table {
|
|
5607
|
+
display: table;
|
|
5608
|
+
width: 100%;
|
|
5609
|
+
border-collapse: collapse;
|
|
5610
|
+
border-spacing: 0;
|
|
5611
|
+
table-layout: fixed;
|
|
5612
|
+
margin-bottom: 0;
|
|
5613
|
+
overflow: visible;
|
|
5614
|
+
}
|
|
5615
|
+
.ncua-table__header {
|
|
5616
|
+
background: var(--gray-100);
|
|
5617
|
+
}
|
|
5618
|
+
.ncua-table__header tr {
|
|
5619
|
+
border-bottom: none;
|
|
5620
|
+
}
|
|
5621
|
+
.ncua-table__header-cell {
|
|
5622
|
+
padding: 0 16px;
|
|
5623
|
+
min-height: 40px;
|
|
5624
|
+
height: 40px;
|
|
5625
|
+
background: var(--gray-100);
|
|
5626
|
+
font-size: var(--font-size-xs);
|
|
5627
|
+
font-weight: var(--font-weights-commerce-sans-5);
|
|
5628
|
+
line-height: var(--line-heights-xs);
|
|
5629
|
+
color: var(--gray-500);
|
|
5630
|
+
text-align: center;
|
|
5631
|
+
vertical-align: middle;
|
|
5632
|
+
border-bottom: 1px solid var(--gray-200);
|
|
5633
|
+
border-right: 1px solid var(--gray-200);
|
|
5634
|
+
white-space: nowrap;
|
|
5635
|
+
position: relative;
|
|
5636
|
+
}
|
|
5637
|
+
.ncua-table__header-cell:last-child {
|
|
5638
|
+
border-right: none;
|
|
5639
|
+
}
|
|
5640
|
+
.ncua-table__header-cell--sortable {
|
|
5641
|
+
cursor: pointer;
|
|
5642
|
+
user-select: none;
|
|
5643
|
+
}
|
|
5644
|
+
.ncua-table__header-cell-inner {
|
|
5645
|
+
display: inline-flex;
|
|
5646
|
+
align-items: center;
|
|
5647
|
+
justify-content: center;
|
|
5648
|
+
gap: 4px;
|
|
5649
|
+
width: 100%;
|
|
5650
|
+
}
|
|
5651
|
+
.ncua-table__header-cell-text {
|
|
5652
|
+
white-space: nowrap;
|
|
5653
|
+
}
|
|
5654
|
+
.ncua-table .ncua-checkbox-input::before {
|
|
5655
|
+
pointer-events: none;
|
|
5656
|
+
}
|
|
5657
|
+
.ncua-table__sort-icon {
|
|
5658
|
+
display: inline-flex;
|
|
5659
|
+
align-items: center;
|
|
5660
|
+
justify-content: center;
|
|
5661
|
+
flex-shrink: 0;
|
|
5662
|
+
width: 16px;
|
|
5663
|
+
height: 16px;
|
|
5664
|
+
overflow: hidden;
|
|
5665
|
+
}
|
|
5666
|
+
.ncua-table__sort-icon svg {
|
|
5667
|
+
display: block;
|
|
5668
|
+
width: 16px;
|
|
5669
|
+
height: 16px;
|
|
5670
|
+
color: var(--gray-400);
|
|
5671
|
+
}
|
|
5672
|
+
.ncua-table__header-cell[aria-sort=ascending] .ncua-table__sort-icon svg, .ncua-table__header-cell[aria-sort=descending] .ncua-table__sort-icon svg {
|
|
5673
|
+
transform: scale(0.85);
|
|
5674
|
+
}
|
|
5675
|
+
.ncua-table__body {
|
|
5676
|
+
background: var(--base-white);
|
|
5677
|
+
}
|
|
5678
|
+
.ncua-table__row {
|
|
5679
|
+
min-height: 48px;
|
|
5680
|
+
background: var(--base-white);
|
|
5681
|
+
transition: background-color 0.15s ease;
|
|
5682
|
+
}
|
|
5683
|
+
.ncua-table__row:nth-child(2n), .ncua-table__row:nth-child(2n+1) {
|
|
5684
|
+
background-color: var(--base-white);
|
|
5685
|
+
}
|
|
5686
|
+
.ncua-table__row td {
|
|
5687
|
+
border-bottom: 1px solid var(--gray-100);
|
|
5688
|
+
}
|
|
5689
|
+
.ncua-table__row:last-child td {
|
|
5690
|
+
border-bottom: none;
|
|
5691
|
+
}
|
|
5692
|
+
.ncua-table__row--selected {
|
|
5693
|
+
background: var(--gray-50);
|
|
5694
|
+
}
|
|
5695
|
+
.ncua-table__row--selected td:first-child {
|
|
5696
|
+
position: relative;
|
|
5697
|
+
}
|
|
5698
|
+
.ncua-table__row--selected td:first-child::before {
|
|
5699
|
+
content: "";
|
|
5700
|
+
position: absolute;
|
|
5701
|
+
left: 0;
|
|
5702
|
+
top: 0;
|
|
5703
|
+
bottom: 0;
|
|
5704
|
+
width: 3px;
|
|
5705
|
+
background: var(--base-black);
|
|
5706
|
+
z-index: 1;
|
|
5707
|
+
}
|
|
5708
|
+
.ncua-table__row--warning {
|
|
5709
|
+
background: var(--warning-50, #fffaeb);
|
|
5710
|
+
}
|
|
5711
|
+
.ncua-table__row--warning td {
|
|
5712
|
+
border-bottom-color: var(--warning-200, #fedf89);
|
|
5713
|
+
}
|
|
5714
|
+
.ncua-table__row--error {
|
|
5715
|
+
background: var(--error-50, #fef3f2);
|
|
5716
|
+
}
|
|
5717
|
+
.ncua-table__row--error td {
|
|
5718
|
+
border-bottom-color: var(--error-200, #fecdca);
|
|
5719
|
+
}
|
|
5720
|
+
.ncua-table--hoverable .ncua-table__row:not(.ncua-table__row--selected):not(.ncua-table__row--warning):not(.ncua-table__row--error):hover {
|
|
5721
|
+
background: var(--gray-50);
|
|
5722
|
+
}
|
|
5723
|
+
.ncua-table--hoverable .ncua-table__row--selected:hover {
|
|
5724
|
+
background: var(--gray-100);
|
|
5725
|
+
}
|
|
5726
|
+
.ncua-table__cell {
|
|
5727
|
+
padding: 10px 8px;
|
|
5728
|
+
font-size: var(--font-size-xs);
|
|
5729
|
+
font-weight: var(--font-weights-commerce-sans-4);
|
|
5730
|
+
line-height: var(--line-heights-xs);
|
|
5731
|
+
color: var(--gray-700);
|
|
5732
|
+
text-align: center;
|
|
5733
|
+
vertical-align: middle;
|
|
5734
|
+
border-right: 1px solid var(--gray-100);
|
|
5735
|
+
min-height: 48px;
|
|
5736
|
+
word-break: break-word;
|
|
5737
|
+
}
|
|
5738
|
+
.ncua-table__cell:last-child {
|
|
5739
|
+
border-right: none;
|
|
5740
|
+
}
|
|
5741
|
+
.ncua-table__checkbox-cell {
|
|
5742
|
+
width: 56px;
|
|
5743
|
+
min-width: 56px;
|
|
5744
|
+
max-width: 56px;
|
|
5745
|
+
text-align: center;
|
|
5746
|
+
vertical-align: middle;
|
|
5747
|
+
border-right: 1px solid var(--gray-100);
|
|
5748
|
+
}
|
|
5749
|
+
.ncua-table__checkbox-cell--header {
|
|
5750
|
+
padding: 0 16px;
|
|
5751
|
+
background: var(--gray-100);
|
|
5752
|
+
border-right-color: var(--gray-200);
|
|
5753
|
+
border-bottom: 1px solid var(--gray-200);
|
|
5754
|
+
}
|
|
5755
|
+
.ncua-table__checkbox-cell--body {
|
|
5756
|
+
padding: 12px 16px;
|
|
5757
|
+
height: 48px;
|
|
5758
|
+
}
|
|
5759
|
+
.ncua-table__footer {
|
|
5760
|
+
display: flex;
|
|
5761
|
+
flex-direction: column;
|
|
5762
|
+
width: 100%;
|
|
5763
|
+
background: var(--gray-50);
|
|
5764
|
+
border-top: 1px solid var(--gray-200);
|
|
5765
|
+
box-shadow: var(--shadow-xs);
|
|
5766
|
+
padding: 8px 24px;
|
|
5767
|
+
gap: 8px;
|
|
5768
|
+
border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
|
|
5769
|
+
}
|
|
5770
|
+
.ncua-table__footer-row {
|
|
5771
|
+
display: flex;
|
|
5772
|
+
flex-direction: row;
|
|
5773
|
+
align-items: center;
|
|
5774
|
+
gap: 12px;
|
|
5775
|
+
}
|
|
5776
|
+
.ncua-table__pagination {
|
|
5777
|
+
display: flex;
|
|
5778
|
+
flex-direction: column;
|
|
5779
|
+
justify-content: center;
|
|
5780
|
+
align-items: center;
|
|
5781
|
+
width: 100%;
|
|
5782
|
+
padding: 12px 0;
|
|
5783
|
+
gap: 16px;
|
|
5784
|
+
}
|
|
5785
|
+
.ncua-table__empty {
|
|
5786
|
+
text-align: center;
|
|
5787
|
+
padding: 40px 16px;
|
|
5788
|
+
color: var(--gray-500);
|
|
5789
|
+
font-size: var(--font-size-xs);
|
|
5790
|
+
line-height: var(--line-heights-xs);
|
|
5791
|
+
}
|
|
5792
|
+
.ncua-table--selectable {
|
|
5793
|
+
border-left: none;
|
|
5794
|
+
}
|
|
5795
|
+
.ncua-table--selectable .ncua-table__header-cell:first-child,
|
|
5796
|
+
.ncua-table--selectable .ncua-table__body .ncua-table__row:not(.ncua-table__row--selected) td:first-child {
|
|
5797
|
+
box-shadow: inset 1px 0 0 0 var(--gray-100);
|
|
5798
|
+
}
|
|
5799
|
+
.ncua-table--selectable {
|
|
5800
|
+
background: var(--gray-50);
|
|
5801
|
+
padding-bottom: 8px;
|
|
5802
|
+
}
|
|
5803
|
+
.ncua-table--selectable .ncua-table__table {
|
|
5804
|
+
background: var(--base-white);
|
|
5805
|
+
}
|
|
5806
|
+
.ncua-table--selectable .ncua-table__scroll-container,
|
|
5807
|
+
.ncua-table--selectable > .ncua-table__table {
|
|
5808
|
+
box-shadow: 0 1px 0 0 var(--gray-200);
|
|
5809
|
+
}
|
|
5810
|
+
.ncua-table--selectable:has(.ncua-table__footer) {
|
|
5811
|
+
padding-bottom: 0;
|
|
5812
|
+
background: var(--base-white);
|
|
5813
|
+
}
|
|
5814
|
+
.ncua-table--selectable:has(.ncua-table__footer) .ncua-table__scroll-container,
|
|
5815
|
+
.ncua-table--selectable:has(.ncua-table__footer) > .ncua-table__table {
|
|
5816
|
+
box-shadow: none;
|
|
5817
|
+
}
|
|
5818
|
+
.ncua-table--in-data-grid.ncua-table--selectable .ncua-table__header-cell:first-child,
|
|
5819
|
+
.ncua-table--in-data-grid.ncua-table--selectable .ncua-table__body .ncua-table__row:not(.ncua-table__row--selected) td:first-child {
|
|
5820
|
+
box-shadow: none;
|
|
5821
|
+
border-left: none;
|
|
5822
|
+
}
|
|
5823
|
+
.ncua-table--in-data-grid.ncua-table--selectable.ncua-table--fixed-header .ncua-table__header-cell:first-child {
|
|
5824
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-200), inset -1px 0 0 0 var(--gray-200);
|
|
5825
|
+
}
|
|
5826
|
+
.ncua-table--fixed-header {
|
|
5827
|
+
position: relative;
|
|
5828
|
+
}
|
|
5829
|
+
.ncua-table--fixed-header::after {
|
|
5830
|
+
content: "";
|
|
5831
|
+
position: absolute;
|
|
5832
|
+
top: 0;
|
|
5833
|
+
right: 0;
|
|
5834
|
+
width: 16px;
|
|
5835
|
+
height: 40px;
|
|
5836
|
+
background: var(--gray-100);
|
|
5837
|
+
border-bottom: 1px solid var(--gray-200);
|
|
5838
|
+
z-index: 11;
|
|
5839
|
+
pointer-events: none;
|
|
5840
|
+
}
|
|
5841
|
+
.ncua-table--fixed-header .ncua-table__header-cell {
|
|
5842
|
+
position: sticky;
|
|
5843
|
+
top: 0;
|
|
5844
|
+
z-index: 10;
|
|
5845
|
+
border-bottom: none;
|
|
5846
|
+
border-right: none;
|
|
5847
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-200), inset -1px 0 0 0 var(--gray-200);
|
|
5848
|
+
}
|
|
5849
|
+
.ncua-table--fixed-header .ncua-table__header-cell:last-child {
|
|
5850
|
+
border-right: none;
|
|
5851
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-200);
|
|
5852
|
+
}
|
|
5853
|
+
.ncua-table--fixed-header.ncua-table--selectable .ncua-table__header-cell:first-child {
|
|
5854
|
+
box-shadow: inset 0 -1px 0 0 var(--gray-200), inset -1px 0 0 0 var(--gray-200), inset 1px 0 0 0 var(--gray-100);
|
|
5855
|
+
}
|
|
5856
|
+
.ncua-table--vertical .ncua-table__row td:first-child,
|
|
5857
|
+
.ncua-table--vertical .ncua-table__row th:first-child {
|
|
5858
|
+
width: 240px;
|
|
5859
|
+
min-width: 240px;
|
|
5860
|
+
max-width: 240px;
|
|
5861
|
+
padding: 10px 16px;
|
|
5862
|
+
font-size: var(--font-size-sm);
|
|
5863
|
+
font-weight: var(--font-weights-commerce-sans-5);
|
|
5864
|
+
line-height: var(--line-heights-sm);
|
|
5865
|
+
color: var(--gray-700);
|
|
5866
|
+
text-align: left;
|
|
5867
|
+
background: var(--gray-50);
|
|
5868
|
+
border-right: 1px solid var(--gray-100);
|
|
5869
|
+
}
|
|
5870
|
+
.ncua-table--vertical .ncua-table__row td:last-child,
|
|
5871
|
+
.ncua-table--vertical .ncua-table__row th:last-child {
|
|
5872
|
+
padding: 10px 16px;
|
|
5873
|
+
text-align: left;
|
|
5874
|
+
font-weight: var(--font-weights-commerce-sans-4);
|
|
5875
|
+
}
|
|
5876
|
+
.ncua-table--vertical .ncua-table__required {
|
|
5877
|
+
color: var(--primary-red-500, #ec1d31);
|
|
5878
|
+
font-size: var(--font-size-sm);
|
|
5879
|
+
font-weight: var(--font-weights-commerce-sans-5);
|
|
5880
|
+
margin-right: 2px;
|
|
5881
|
+
}
|
|
5882
|
+
|
|
5883
|
+
.ncua-data-grid {
|
|
5884
|
+
display: flex;
|
|
5885
|
+
flex-direction: column;
|
|
5886
|
+
width: 100%;
|
|
5887
|
+
}
|
|
5888
|
+
.ncua-data-grid__search-filter {
|
|
5889
|
+
border: 1px solid var(--gray-200);
|
|
5890
|
+
border-radius: var(--border-radius-md);
|
|
5891
|
+
overflow: hidden;
|
|
5892
|
+
margin-bottom: var(--spacing-m);
|
|
5893
|
+
}
|
|
5894
|
+
.ncua-data-grid__summary {
|
|
5895
|
+
display: flex;
|
|
5896
|
+
align-items: flex-end;
|
|
5897
|
+
justify-content: space-between;
|
|
5898
|
+
padding: 0 0 var(--spacing-lg) var(--spacing-lg);
|
|
5899
|
+
font-size: var(--font-size-xs);
|
|
5900
|
+
line-height: var(--line-heights-xs);
|
|
5901
|
+
color: var(--gray-500);
|
|
5902
|
+
}
|
|
5903
|
+
.ncua-data-grid__table-wrapper {
|
|
5904
|
+
border: 1px solid var(--gray-100);
|
|
5905
|
+
border-radius: var(--border-radius-md);
|
|
5906
|
+
box-shadow: var(--shadow-xs);
|
|
5907
|
+
}
|
|
5908
|
+
.ncua-data-grid__filter-bar {
|
|
5909
|
+
display: flex;
|
|
5910
|
+
align-items: center;
|
|
5911
|
+
justify-content: flex-end;
|
|
5912
|
+
gap: var(--spacing-xs);
|
|
5913
|
+
padding: var(--spacing-s) 24px;
|
|
5914
|
+
background-color: var(--base-white);
|
|
5915
|
+
border-bottom: 1px solid var(--gray-200);
|
|
5916
|
+
}
|
|
5917
|
+
.ncua-data-grid__action-bar {
|
|
5918
|
+
display: flex;
|
|
5919
|
+
align-items: center;
|
|
5920
|
+
gap: var(--spacing-s);
|
|
5921
|
+
padding: var(--spacing-s) 24px;
|
|
5922
|
+
background-color: var(--gray-50);
|
|
5923
|
+
position: relative;
|
|
5924
|
+
z-index: 2;
|
|
5925
|
+
}
|
|
5926
|
+
.ncua-data-grid__action-bar:empty {
|
|
5927
|
+
padding: var(--spacing-xs) 0;
|
|
5928
|
+
}
|
|
5929
|
+
.ncua-data-grid__action-bar--top {
|
|
5930
|
+
border-bottom: 1px solid var(--gray-200);
|
|
5931
|
+
}
|
|
5932
|
+
.ncua-data-grid__action-bar--top:first-child {
|
|
5933
|
+
border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
|
|
5934
|
+
}
|
|
5935
|
+
.ncua-data-grid__action-bar--bottom {
|
|
5936
|
+
border-top: 1px solid var(--gray-200);
|
|
5937
|
+
}
|
|
5938
|
+
.ncua-data-grid__action-bar--bottom:last-child {
|
|
5939
|
+
border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
|
|
5940
|
+
}
|
|
5941
|
+
.ncua-data-grid__action-bar--left {
|
|
5942
|
+
justify-content: flex-start;
|
|
5943
|
+
}
|
|
5944
|
+
.ncua-data-grid__action-bar--right {
|
|
5945
|
+
justify-content: flex-end;
|
|
5946
|
+
}
|
|
5947
|
+
.ncua-data-grid__action-bar--space-between {
|
|
5948
|
+
justify-content: space-between;
|
|
5949
|
+
}
|
|
5950
|
+
.ncua-data-grid__table {
|
|
5951
|
+
width: 100%;
|
|
5952
|
+
position: relative;
|
|
5953
|
+
z-index: 1;
|
|
5954
|
+
overflow: hidden;
|
|
5955
|
+
}
|
|
5956
|
+
.ncua-data-grid__table:first-child {
|
|
5957
|
+
border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
|
|
5958
|
+
}
|
|
5959
|
+
.ncua-data-grid__table:last-child {
|
|
5960
|
+
border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
|
|
5961
|
+
}
|
|
5962
|
+
.ncua-data-grid__table:first-child:last-child {
|
|
5963
|
+
border-radius: var(--border-radius-md);
|
|
5964
|
+
}
|
|
5965
|
+
.ncua-data-grid__table .ncua-table-wrapper {
|
|
5966
|
+
border: none;
|
|
5967
|
+
box-shadow: none;
|
|
5968
|
+
border-radius: 0;
|
|
5969
|
+
}
|
|
5970
|
+
.ncua-data-grid__table .ncua-table {
|
|
5971
|
+
border: none;
|
|
5972
|
+
border-radius: 0;
|
|
5973
|
+
box-shadow: none;
|
|
5974
|
+
}
|
|
5975
|
+
.ncua-data-grid__table .ncua-table--selectable {
|
|
5976
|
+
padding-bottom: 0;
|
|
5977
|
+
background: var(--base-white);
|
|
5978
|
+
}
|
|
5979
|
+
.ncua-data-grid__table .ncua-table--selectable .ncua-table__scroll-container,
|
|
5980
|
+
.ncua-data-grid__table .ncua-table--selectable > .ncua-table__table {
|
|
5981
|
+
box-shadow: none;
|
|
5982
|
+
}
|
|
5983
|
+
.ncua-data-grid__pagination {
|
|
5984
|
+
display: flex;
|
|
5985
|
+
justify-content: center;
|
|
5986
|
+
padding: var(--spacing-lg) 0;
|
|
5987
|
+
}
|
|
5988
|
+
|
|
5441
5989
|
.flatpickr-calendar {
|
|
5442
5990
|
background: transparent;
|
|
5443
5991
|
opacity: 0;
|
|
@@ -6345,7 +6893,7 @@ span.flatpickr-weekday {
|
|
|
6345
6893
|
}
|
|
6346
6894
|
}
|
|
6347
6895
|
/**
|
|
6348
|
-
* Swiper 11.2.
|
|
6896
|
+
* Swiper 11.2.10
|
|
6349
6897
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
6350
6898
|
* https://swiperjs.com
|
|
6351
6899
|
*
|
|
@@ -6353,7 +6901,7 @@ span.flatpickr-weekday {
|
|
|
6353
6901
|
*
|
|
6354
6902
|
* Released under the MIT License
|
|
6355
6903
|
*
|
|
6356
|
-
* Released on:
|
|
6904
|
+
* Released on: June 28, 2025
|
|
6357
6905
|
*/
|
|
6358
6906
|
/* FONT_START */
|
|
6359
6907
|
@font-face {
|