@ncds/ui-admin 1.7.0 → 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 +54 -56
- package/dist/cjs/assets/scripts/comboBox.js +54 -105
- package/dist/cjs/assets/scripts/datePicker.js +289 -324
- package/dist/cjs/assets/scripts/featuredIcon.js +41 -49
- package/dist/cjs/assets/scripts/fileInput/const/classNames.js +4 -10
- package/dist/cjs/assets/scripts/fileInput/fileInput.js +33 -34
- package/dist/cjs/assets/scripts/fileInput/fileInputModel.js +27 -35
- package/dist/cjs/assets/scripts/fileInput/fileInputView.js +53 -48
- 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 +107 -105
- 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 +72 -132
- 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 +7 -8
- package/dist/cjs/assets/scripts/utils/unifiedBox/domRenderer.js +102 -116
- package/dist/cjs/assets/scripts/utils/unifiedBox/dropdownModel.js +103 -144
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxController.js +180 -207
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +166 -362
- 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 +37 -58
- 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 +23 -42
- 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 -32
- package/dist/cjs/src/components/date-picker/DatePicker.js +416 -256
- 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 +14 -25
- package/dist/cjs/src/components/dot/Dot.js +11 -28
- package/dist/cjs/src/components/dropdown/Dropdown.js +90 -132
- 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 -170
- 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/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 +28 -42
- package/dist/cjs/src/components/pagination/Pagination.js +58 -97
- 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 +45 -60
- 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 -78
- package/dist/cjs/src/components/progress-bar/utils.js +8 -8
- package/dist/cjs/src/components/progress-circle/ProgressCircle.js +49 -72
- 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 +25 -39
- package/dist/cjs/src/components/switch/Switch.js +44 -69
- 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 +28 -52
- package/dist/cjs/src/components/tooltip/Tooltip.js +75 -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/size.js +1 -1
- package/dist/cjs/src/hooks/dropdown/useDropdown.js +58 -60
- package/dist/cjs/src/hooks/dropdown/useDropdownKeyboard.js +37 -40
- 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 +23 -19
- package/dist/cjs/src/hooks/dropdown/useWindowResize.js +12 -13
- 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 +29 -30
- package/dist/cjs/src/utils/dropdown/dropdownUtils.js +39 -35
- package/dist/cjs/src/utils/dropdown/multiSelect.js +25 -45
- package/dist/esm/assets/scripts/baseBox.js +53 -57
- package/dist/esm/assets/scripts/comboBox.js +54 -107
- package/dist/esm/assets/scripts/datePicker.js +288 -324
- package/dist/esm/assets/scripts/featuredIcon.js +40 -50
- package/dist/esm/assets/scripts/fileInput/const/classNames.js +4 -10
- package/dist/esm/assets/scripts/fileInput/fileInput.js +32 -35
- package/dist/esm/assets/scripts/fileInput/fileInputModel.js +26 -36
- package/dist/esm/assets/scripts/fileInput/fileInputView.js +52 -49
- 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 +106 -106
- 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 +71 -133
- 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 +7 -8
- package/dist/esm/assets/scripts/utils/unifiedBox/domRenderer.js +101 -117
- package/dist/esm/assets/scripts/utils/unifiedBox/dropdownModel.js +103 -144
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxController.js +179 -208
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +165 -363
- package/dist/esm/constant/color.js +1 -1
- package/dist/esm/index.js +0 -27
- package/dist/esm/src/components/badge/Badge.js +17 -30
- package/dist/esm/src/components/badge/index.js +1 -2
- package/dist/esm/src/components/badge/utils.js +11 -10
- 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 +37 -58
- package/dist/esm/src/components/button/ButtonCloseX.js +12 -22
- 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 +23 -42
- 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 +16 -32
- package/dist/esm/src/components/date-picker/DatePicker.js +421 -260
- 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 +14 -25
- package/dist/esm/src/components/dot/Dot.js +11 -28
- package/dist/esm/src/components/dropdown/Dropdown.js +90 -132
- package/dist/esm/src/components/empty-state/EmptyState.js +28 -45
- package/dist/esm/src/components/featured-icon/FeaturedIcon.js +14 -33
- 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 +109 -170
- 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 +76 -105
- package/dist/esm/src/components/notification/FloatingNotification.js +52 -80
- package/dist/esm/src/components/notification/FullWidthNotification.js +67 -101
- package/dist/esm/src/components/notification/MessageNotification.js +60 -89
- package/dist/esm/src/components/notification/Notification.js +18 -36
- package/dist/esm/src/components/{input → number-input}/NumberInput.js +34 -54
- package/dist/esm/src/components/number-input/index.js +1 -0
- package/dist/esm/src/components/pagination/NavButton.js +28 -42
- package/dist/esm/src/components/pagination/Pagination.js +58 -97
- 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 +45 -60
- package/dist/esm/src/components/progress-bar/components/SegmentBar.js +11 -9
- package/dist/esm/src/components/progress-bar/components/SegmentLabels.js +32 -43
- package/dist/esm/src/components/progress-bar/hooks/useProgressBar.js +59 -78
- package/dist/esm/src/components/progress-bar/utils.js +8 -8
- package/dist/esm/src/components/progress-circle/ProgressCircle.js +49 -72
- 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 +64 -100
- 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 +25 -39
- package/dist/esm/src/components/switch/Switch.js +44 -69
- package/dist/esm/src/components/tab/TabButton.js +41 -61
- 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 +65 -85
- 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 +28 -52
- package/dist/esm/src/components/tooltip/Tooltip.js +75 -108
- 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/size.js +1 -1
- package/dist/esm/src/hooks/dropdown/useDropdown.js +58 -60
- package/dist/esm/src/hooks/dropdown/useDropdownKeyboard.js +37 -40
- 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 +23 -19
- package/dist/esm/src/hooks/dropdown/useWindowResize.js +12 -13
- 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 +29 -30
- package/dist/esm/src/utils/dropdown/dropdownUtils.js +39 -35
- package/dist/esm/src/utils/dropdown/multiSelect.js +25 -45
- package/dist/temp/assets/scripts/baseBox.js +53 -57
- package/dist/temp/assets/scripts/comboBox.js +62 -93
- package/dist/temp/assets/scripts/datePicker.js +286 -293
- package/dist/temp/assets/scripts/featuredIcon.js +40 -47
- package/dist/temp/assets/scripts/fileInput/const/classNames.js +4 -8
- package/dist/temp/assets/scripts/fileInput/fileInput.js +29 -33
- package/dist/temp/assets/scripts/fileInput/fileInputModel.js +24 -32
- package/dist/temp/assets/scripts/fileInput/fileInputView.js +52 -49
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.js +57 -63
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.js +79 -99
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.js +106 -104
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.js +6 -10
- package/dist/temp/assets/scripts/index.d.ts +2 -0
- package/dist/temp/assets/scripts/index.js +2 -0
- package/dist/temp/assets/scripts/modal/Modal.js +46 -52
- package/dist/temp/assets/scripts/modal/ModalActions.js +42 -50
- package/dist/temp/assets/scripts/modal/ModalContent.js +21 -23
- package/dist/temp/assets/scripts/modal/ModalHeader.js +40 -46
- package/dist/temp/assets/scripts/modal/const/classNames.js +5 -5
- package/dist/temp/assets/scripts/modal/utils/contentUtils.js +1 -1
- package/dist/temp/assets/scripts/notification/FloatingNotification.js +80 -77
- package/dist/temp/assets/scripts/notification/FullWidthNotification.js +78 -62
- package/dist/temp/assets/scripts/notification/MessageNotification.js +81 -64
- package/dist/temp/assets/scripts/notification/Notification.js +48 -62
- package/dist/temp/assets/scripts/notification/const/classNames.js +1 -1
- package/dist/temp/assets/scripts/notification/const/icons.js +11 -25
- package/dist/temp/assets/scripts/notification/const/sizes.js +11 -11
- package/dist/temp/assets/scripts/notification/const/types.js +1 -1
- package/dist/temp/assets/scripts/notification/utils.js +31 -26
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.js +124 -119
- package/dist/temp/assets/scripts/selectBox.js +81 -105
- package/dist/temp/assets/scripts/shared/ButtonCloseX.js +14 -13
- package/dist/temp/assets/scripts/slider.js +105 -113
- package/dist/temp/assets/scripts/tab.js +7 -9
- 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.js +104 -112
- package/dist/temp/assets/scripts/tag/const/classNames.js +3 -3
- package/dist/temp/assets/scripts/tag/const/sizes.js +4 -4
- package/dist/temp/assets/scripts/tooltip/Tooltip.js +125 -150
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.js +20 -23
- package/dist/temp/assets/scripts/tooltip/const/classNames.js +1 -1
- package/dist/temp/assets/scripts/tooltip/const/constants.d.ts +1 -1
- package/dist/temp/assets/scripts/tooltip/const/constants.js +14 -14
- package/dist/temp/assets/scripts/tooltip/const/icons.js +7 -7
- package/dist/temp/assets/scripts/tooltip/const/templates.js +42 -13
- package/dist/temp/assets/scripts/tooltip/utils.js +13 -15
- package/dist/temp/assets/scripts/utils/debounce.js +5 -9
- package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.js +96 -105
- package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.js +96 -121
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.js +170 -193
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +173 -250
- package/dist/temp/constant/color.js +1 -1
- package/dist/temp/index.d.ts +0 -27
- package/dist/temp/index.js +0 -27
- package/dist/temp/src/components/badge/Badge.js +3 -15
- package/dist/temp/src/components/badge/index.d.ts +0 -1
- package/dist/temp/src/components/badge/index.js +0 -1
- package/dist/temp/src/components/badge/utils.js +5 -7
- package/dist/{types/src/components/badge → temp/src/components/badge-group}/BadgeGroup.d.ts +1 -1
- 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.js +20 -0
- package/dist/temp/src/components/button/Button.js +21 -38
- package/dist/temp/src/components/button/ButtonCloseX.js +3 -15
- package/dist/temp/src/components/button/ButtonStepper.js +2 -3
- package/dist/temp/src/components/button/index.d.ts +0 -1
- package/dist/temp/src/components/button/index.js +0 -1
- package/dist/{types/src/components/button → temp/src/components/button-group}/ButtonGroup.d.ts +5 -4
- 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.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.js +10 -0
- package/dist/{types/src/components/carousel → temp/src/components/carousel-number-group}/index.d.ts +0 -1
- package/dist/temp/src/components/{carousel → carousel-number-group}/index.js +0 -1
- package/dist/temp/src/components/checkbox/Checkbox.js +2 -25
- package/dist/temp/src/components/checkbox/CheckboxInput.js +6 -29
- package/dist/temp/src/components/combo-box/ComboBox.js +165 -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.js +5 -28
- package/dist/temp/src/components/date-picker/DatePicker.d.ts +11 -7
- package/dist/temp/src/components/date-picker/DatePicker.js +394 -221
- package/dist/temp/src/components/date-picker/index.d.ts +0 -2
- package/dist/temp/src/components/date-picker/index.js +0 -2
- package/dist/temp/src/components/date-picker/utils.js +1 -2
- package/dist/temp/src/components/divider/Divider.js +1 -15
- package/dist/temp/src/components/dot/Dot.js +2 -25
- package/dist/temp/src/components/dropdown/Dropdown.js +23 -39
- package/dist/temp/src/components/empty-state/EmptyState.js +3 -29
- package/dist/temp/src/components/featured-icon/FeaturedIcon.js +3 -26
- package/dist/temp/src/components/file-input/FileInput.d.ts +1 -1
- package/dist/temp/src/components/file-input/FileInput.js +33 -69
- package/dist/{types/src/components/tab → temp/src/components/horizontal-tab}/HorizontalTab.d.ts +1 -1
- 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 +1 -1
- package/dist/temp/src/components/image-file-input/ImageFileInput.js +45 -73
- package/dist/temp/src/components/image-file-input/components/ImagePreview.js +2 -14
- package/dist/temp/src/components/index.d.ts +17 -5
- package/dist/temp/src/components/index.js +17 -5
- package/dist/temp/src/components/{input → input-base}/InputBase.d.ts +1 -0
- 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.js +15 -41
- package/dist/temp/src/components/notification/FloatingNotification.js +11 -34
- package/dist/temp/src/components/notification/FullWidthNotification.js +12 -35
- package/dist/temp/src/components/notification/MessageNotification.js +8 -31
- package/dist/temp/src/components/notification/Notification.js +4 -27
- package/dist/{types/src/components/input → temp/src/components/number-input}/NumberInput.d.ts +1 -1
- 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.js +19 -31
- package/dist/temp/src/components/pagination/Pagination.js +33 -60
- package/dist/temp/src/components/{input → password-input}/PasswordInput.d.ts +1 -1
- 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.js +10 -22
- package/dist/temp/src/components/progress-bar/components/SegmentBar.js +5 -6
- package/dist/temp/src/components/progress-bar/components/SegmentLabels.js +11 -24
- package/dist/temp/src/components/progress-bar/hooks/useProgressBar.js +36 -45
- package/dist/temp/src/components/progress-bar/utils.js +8 -8
- package/dist/temp/src/components/progress-circle/ProgressCircle.js +5 -17
- package/dist/temp/src/components/radio/Radio.js +2 -25
- package/dist/temp/src/components/radio/RadioInput.js +2 -25
- package/dist/{types/src/components/date-picker → temp/src/components/range-date-picker}/RangeDatePicker.d.ts +1 -1
- 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 +1 -1
- 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.js +3 -26
- package/dist/temp/src/components/select-box/SelectBox.js +130 -0
- package/dist/temp/src/components/select-dropdown/SelectDropdown.js +11 -34
- package/dist/temp/src/components/shared/hintText/HintText.js +2 -25
- package/dist/temp/src/components/shared/label/Label.js +2 -25
- package/dist/temp/src/components/slider/Slider.js +15 -16
- package/dist/temp/src/components/spinner/Spinner.js +4 -17
- package/dist/temp/src/components/switch/Switch.js +17 -30
- package/dist/temp/src/components/tab/TabButton.js +6 -29
- package/dist/temp/src/components/tab/index.d.ts +0 -2
- package/dist/temp/src/components/tab/index.js +0 -2
- 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.js +39 -53
- 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.js +3 -26
- package/dist/temp/src/components/tooltip/Tooltip.js +49 -67
- package/dist/temp/src/components/{tab → vertical-tab}/VerticalTab.d.ts +1 -1
- 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.js +3 -3
- package/dist/temp/src/constant/date-picker.js +1 -1
- package/dist/temp/src/constant/size.js +1 -1
- package/dist/temp/src/hooks/dropdown/useDropdown.js +37 -37
- package/dist/temp/src/hooks/dropdown/useDropdownKeyboard.js +26 -27
- package/dist/temp/src/hooks/dropdown/useDropdownPosition.js +7 -7
- package/dist/temp/src/hooks/dropdown/useOutsideClick.js +7 -7
- package/dist/temp/src/hooks/dropdown/useScrollLock.js +17 -17
- package/dist/temp/src/hooks/dropdown/useWindowResize.js +10 -11
- package/dist/temp/src/hooks/useCallbackRef.js +2 -2
- package/dist/temp/src/hooks/useMediaQuery.js +8 -9
- package/dist/temp/src/hooks/useMergeRefs.js +2 -2
- package/dist/temp/src/utils/date-picker.js +23 -25
- package/dist/temp/src/utils/dropdown/dropdownUtils.js +26 -27
- package/dist/temp/src/utils/dropdown/multiSelect.js +23 -25
- package/dist/types/assets/scripts/index.d.ts +2 -0
- 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/tooltip/const/constants.d.ts +1 -1
- package/dist/types/index.d.ts +0 -27
- package/dist/types/src/components/badge/index.d.ts +0 -1
- package/dist/{temp/src/components/badge → types/src/components/badge-group}/BadgeGroup.d.ts +1 -1
- package/dist/types/src/components/badge-group/index.d.ts +1 -0
- package/dist/types/src/components/button/index.d.ts +0 -1
- package/dist/{temp/src/components/button → types/src/components/button-group}/ButtonGroup.d.ts +5 -4
- package/dist/types/src/components/button-group/index.d.ts +1 -0
- package/dist/types/src/components/carousel-arrow/index.d.ts +1 -0
- package/dist/{temp/src/components/carousel → types/src/components/carousel-number-group}/index.d.ts +0 -1
- 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/DatePicker.d.ts +11 -7
- package/dist/types/src/components/date-picker/index.d.ts +0 -2
- package/dist/types/src/components/file-input/FileInput.d.ts +1 -1
- package/dist/{temp/src/components/tab → types/src/components/horizontal-tab}/HorizontalTab.d.ts +1 -1
- package/dist/types/src/components/horizontal-tab/index.d.ts +1 -0
- package/dist/types/src/components/image-file-input/ImageFileInput.d.ts +1 -1
- package/dist/types/src/components/index.d.ts +17 -5
- package/dist/types/src/components/{input → input-base}/InputBase.d.ts +1 -0
- package/dist/types/src/components/input-base/index.d.ts +1 -0
- package/dist/{temp/src/components/input → types/src/components/number-input}/NumberInput.d.ts +1 -1
- package/dist/types/src/components/number-input/index.d.ts +1 -0
- package/dist/types/src/components/{input → password-input}/PasswordInput.d.ts +1 -1
- package/dist/types/src/components/password-input/index.d.ts +1 -0
- package/dist/{temp/src/components/date-picker → types/src/components/range-date-picker}/RangeDatePicker.d.ts +1 -1
- package/dist/types/src/components/range-date-picker/index.d.ts +1 -0
- package/dist/{temp/src/components/date-picker → types/src/components/range-date-picker-with-buttons}/RangeDatePickerWithButtons.d.ts +1 -1
- package/dist/types/src/components/range-date-picker-with-buttons/index.d.ts +1 -0
- package/dist/types/src/components/tab/index.d.ts +0 -2
- 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/textarea/index.d.ts +1 -0
- package/dist/types/src/components/{tab → vertical-tab}/VerticalTab.d.ts +1 -1
- package/dist/types/src/components/vertical-tab/index.d.ts +1 -0
- package/dist/ui-admin/assets/styles/style.css +625 -165
- package/package.json +2 -1
- 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 -116
- package/dist/cjs/src/components/carousel/CarouselArrow.js +0 -41
- package/dist/cjs/src/components/carousel/CarouselNumberGroup.js +0 -45
- package/dist/cjs/src/components/combobox/ComboBox.js +0 -349
- package/dist/cjs/src/components/date-picker/RangeDatePicker.js +0 -154
- 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 -318
- package/dist/cjs/src/components/tab/HorizontalTab.js +0 -68
- package/dist/cjs/src/components/tab/VerticalTab.js +0 -60
- package/dist/esm/src/components/badge/BadgeGroup.js +0 -55
- package/dist/esm/src/components/breadcrumb/BreadCrumb.js +0 -59
- package/dist/esm/src/components/button/ButtonGroup.js +0 -108
- package/dist/esm/src/components/carousel/CarouselArrow.js +0 -33
- package/dist/esm/src/components/carousel/CarouselNumberGroup.js +0 -37
- package/dist/esm/src/components/carousel/index.js +0 -2
- package/dist/esm/src/components/combobox/ComboBox.js +0 -343
- package/dist/esm/src/components/date-picker/RangeDatePicker.js +0 -148
- package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +0 -93
- package/dist/esm/src/components/input/InputBase.js +0 -223
- 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 -312
- package/dist/esm/src/components/tab/HorizontalTab.js +0 -61
- package/dist/esm/src/components/tab/VerticalTab.js +0 -52
- package/dist/temp/src/components/badge/BadgeGroup.js +0 -36
- package/dist/temp/src/components/breadcrumb/BreadCrumb.js +0 -33
- package/dist/temp/src/components/button/ButtonGroup.js +0 -72
- package/dist/temp/src/components/carousel/CarouselArrow.js +0 -24
- package/dist/temp/src/components/carousel/CarouselNumberGroup.js +0 -24
- package/dist/temp/src/components/combobox/ComboBox.js +0 -199
- package/dist/temp/src/components/date-picker/RangeDatePicker.js +0 -117
- package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.js +0 -55
- package/dist/temp/src/components/input/InputBase.js +0 -121
- package/dist/temp/src/components/input/NumberInput.js +0 -93
- package/dist/temp/src/components/input/PasswordInput.js +0 -51
- package/dist/temp/src/components/input/Textarea.js +0 -60
- package/dist/temp/src/components/input/index.d.ts +0 -4
- package/dist/temp/src/components/input/index.js +0 -4
- package/dist/temp/src/components/selectbox/SelectBox.js +0 -163
- package/dist/temp/src/components/tab/HorizontalTab.js +0 -37
- package/dist/temp/src/components/tab/VerticalTab.js +0 -32
- package/dist/types/src/components/input/index.d.ts +0 -4
- /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
- /package/dist/temp/src/components/{breadcrumb → bread-crumb}/BreadCrumb.d.ts +0 -0
- /package/dist/temp/src/components/{breadcrumb → bread-crumb}/index.d.ts +0 -0
- /package/dist/temp/src/components/{breadcrumb → bread-crumb}/index.js +0 -0
- /package/dist/temp/src/components/{carousel → carousel-arrow}/CarouselArrow.d.ts +0 -0
- /package/dist/temp/src/components/{carousel → carousel-number-group}/CarouselNumberGroup.d.ts +0 -0
- /package/dist/temp/src/components/{combobox → combo-box}/ComboBox.d.ts +0 -0
- /package/dist/temp/src/components/{combobox → combo-box}/index.d.ts +0 -0
- /package/dist/temp/src/components/{combobox → combo-box}/index.js +0 -0
- /package/dist/temp/src/components/{selectbox → select-box}/SelectBox.d.ts +0 -0
- /package/dist/temp/src/components/{selectbox → select-box}/index.d.ts +0 -0
- /package/dist/temp/src/components/{selectbox → select-box}/index.js +0 -0
- /package/dist/temp/src/components/{input → textarea}/Textarea.d.ts +0 -0
- /package/dist/types/src/components/{breadcrumb → bread-crumb}/BreadCrumb.d.ts +0 -0
- /package/dist/types/src/components/{breadcrumb → bread-crumb}/index.d.ts +0 -0
- /package/dist/types/src/components/{carousel → carousel-arrow}/CarouselArrow.d.ts +0 -0
- /package/dist/types/src/components/{carousel → carousel-number-group}/CarouselNumberGroup.d.ts +0 -0
- /package/dist/types/src/components/{combobox → combo-box}/ComboBox.d.ts +0 -0
- /package/dist/types/src/components/{combobox → combo-box}/index.d.ts +0 -0
- /package/dist/types/src/components/{selectbox → select-box}/SelectBox.d.ts +0 -0
- /package/dist/types/src/components/{selectbox → select-box}/index.d.ts +0 -0
- /package/dist/types/src/components/{input → textarea}/Textarea.d.ts +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);
|
|
@@ -594,6 +601,106 @@ button {
|
|
|
594
601
|
text-underline-offset: 2px;
|
|
595
602
|
}
|
|
596
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
|
+
|
|
597
704
|
.ncua-button-group {
|
|
598
705
|
display: inline-flex;
|
|
599
706
|
overflow: hidden;
|
|
@@ -675,6 +782,12 @@ button {
|
|
|
675
782
|
padding: 10px;
|
|
676
783
|
}
|
|
677
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
|
+
}
|
|
678
791
|
:where(.ncua-button-group.has-border) {
|
|
679
792
|
box-shadow: var(--shadow-xs);
|
|
680
793
|
}
|
|
@@ -774,106 +887,6 @@ button {
|
|
|
774
887
|
border-bottom-right-radius: 8px;
|
|
775
888
|
}
|
|
776
889
|
|
|
777
|
-
.ncua-button-close-x {
|
|
778
|
-
display: inline-flex;
|
|
779
|
-
align-items: center;
|
|
780
|
-
justify-content: center;
|
|
781
|
-
color: var(--gray-400);
|
|
782
|
-
border-radius: 8px;
|
|
783
|
-
cursor: pointer;
|
|
784
|
-
background-color: transparent;
|
|
785
|
-
}
|
|
786
|
-
.ncua-button-close-x:hover {
|
|
787
|
-
background-color: var(--gray-50);
|
|
788
|
-
color: var(--gray-500);
|
|
789
|
-
}
|
|
790
|
-
.ncua-button-close-x:focus {
|
|
791
|
-
background-color: var(--gray-50);
|
|
792
|
-
}
|
|
793
|
-
.ncua-button-close-x--xs {
|
|
794
|
-
width: 28px;
|
|
795
|
-
height: 28px;
|
|
796
|
-
}
|
|
797
|
-
.ncua-button-close-x--sm {
|
|
798
|
-
width: 36px;
|
|
799
|
-
height: 36px;
|
|
800
|
-
}
|
|
801
|
-
.ncua-button-close-x--md {
|
|
802
|
-
width: 40px;
|
|
803
|
-
height: 40px;
|
|
804
|
-
}
|
|
805
|
-
.ncua-button-close-x--lg {
|
|
806
|
-
width: 44px;
|
|
807
|
-
height: 44px;
|
|
808
|
-
}
|
|
809
|
-
.ncua-button-close-x--dark {
|
|
810
|
-
color: var(--gray-100);
|
|
811
|
-
}
|
|
812
|
-
.ncua-button-close-x--dark:hover {
|
|
813
|
-
color: var(--base-white);
|
|
814
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
815
|
-
}
|
|
816
|
-
.ncua-button-close-x--dark:focus {
|
|
817
|
-
color: var(--gray-100);
|
|
818
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
.ncua-button-stepper {
|
|
822
|
-
display: inline-flex;
|
|
823
|
-
align-items: center;
|
|
824
|
-
justify-content: center;
|
|
825
|
-
width: 20px;
|
|
826
|
-
height: 10px;
|
|
827
|
-
cursor: pointer;
|
|
828
|
-
background-color: var(--gray-100);
|
|
829
|
-
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");
|
|
830
|
-
background-repeat: no-repeat;
|
|
831
|
-
background-position: center;
|
|
832
|
-
background-size: 6px 4px;
|
|
833
|
-
border-radius: 4px 4px 1px 1px;
|
|
834
|
-
}
|
|
835
|
-
.ncua-button-stepper:hover:not(:disabled), .ncua-button-stepper:focus:not(:disabled) {
|
|
836
|
-
background-color: var(--gray-200);
|
|
837
|
-
}
|
|
838
|
-
.ncua-button-stepper:disabled {
|
|
839
|
-
background-color: var(--gray-100);
|
|
840
|
-
}
|
|
841
|
-
.ncua-button-stepper--xs {
|
|
842
|
-
width: 20px;
|
|
843
|
-
height: 10px;
|
|
844
|
-
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");
|
|
845
|
-
background-size: 6px 4px;
|
|
846
|
-
}
|
|
847
|
-
.ncua-button-stepper--xs:hover:not(:disabled), .ncua-button-stepper--xs:focus:not(:disabled) {
|
|
848
|
-
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");
|
|
849
|
-
}
|
|
850
|
-
.ncua-input:focus-within .ncua-button-stepper--xs {
|
|
851
|
-
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");
|
|
852
|
-
}
|
|
853
|
-
.ncua-input.is-disabled .ncua-button-stepper--xs, .ncua-button-stepper--xs:disabled {
|
|
854
|
-
cursor: not-allowed;
|
|
855
|
-
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");
|
|
856
|
-
}
|
|
857
|
-
.ncua-button-stepper--sm {
|
|
858
|
-
width: 22px;
|
|
859
|
-
height: 14px;
|
|
860
|
-
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");
|
|
861
|
-
background-size: 8.2px 4.7px;
|
|
862
|
-
}
|
|
863
|
-
.ncua-button-stepper--sm:hover:not(:disabled), .ncua-button-stepper--sm:focus:not(:disabled) {
|
|
864
|
-
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");
|
|
865
|
-
}
|
|
866
|
-
.ncua-input:focus-within .ncua-button-stepper--sm {
|
|
867
|
-
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");
|
|
868
|
-
}
|
|
869
|
-
.ncua-input.is-disabled .ncua-button-stepper--sm, .ncua-button-stepper--sm:disabled {
|
|
870
|
-
cursor: not-allowed;
|
|
871
|
-
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");
|
|
872
|
-
}
|
|
873
|
-
.ncua-button-stepper--down {
|
|
874
|
-
transform: rotate(180deg);
|
|
875
|
-
}
|
|
876
|
-
|
|
877
890
|
.ncua-checkbox-input {
|
|
878
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");
|
|
879
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");
|
|
@@ -1439,12 +1452,12 @@ button {
|
|
|
1439
1452
|
line-height: var(--line-heights-sm);
|
|
1440
1453
|
padding: 6px 12px;
|
|
1441
1454
|
}
|
|
1442
|
-
.ncua-input__field:has(.ncua-input__stepper-button-group ~
|
|
1455
|
+
.ncua-input__field:has(.ncua-input__stepper-button-group ~ input) {
|
|
1443
1456
|
padding-top: 2px;
|
|
1444
1457
|
padding-bottom: 2px;
|
|
1445
1458
|
padding-left: 2px;
|
|
1446
1459
|
}
|
|
1447
|
-
.ncua-input__field:has(
|
|
1460
|
+
.ncua-input__field:has(input ~ .ncua-input__stepper-button-group) {
|
|
1448
1461
|
padding-top: 2px;
|
|
1449
1462
|
padding-bottom: 2px;
|
|
1450
1463
|
padding-right: 2px;
|
|
@@ -1595,11 +1608,14 @@ button {
|
|
|
1595
1608
|
.ncua-input.full-width {
|
|
1596
1609
|
width: 100%;
|
|
1597
1610
|
}
|
|
1598
|
-
.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 {
|
|
1599
1615
|
-webkit-appearance: none;
|
|
1600
1616
|
margin: 0;
|
|
1601
1617
|
}
|
|
1602
|
-
.ncua-input__number {
|
|
1618
|
+
.ncua-input__number input {
|
|
1603
1619
|
-moz-appearance: textfield;
|
|
1604
1620
|
appearance: textfield;
|
|
1605
1621
|
}
|
|
@@ -1608,10 +1624,10 @@ button {
|
|
|
1608
1624
|
flex-direction: column;
|
|
1609
1625
|
gap: 2px;
|
|
1610
1626
|
}
|
|
1611
|
-
.ncua-input__field--xs .ncua-input__stepper-button-group ~
|
|
1627
|
+
.ncua-input__field--xs .ncua-input__stepper-button-group ~ input {
|
|
1612
1628
|
padding-left: 10px;
|
|
1613
1629
|
}
|
|
1614
|
-
.ncua-input__field--sm .ncua-input__stepper-button-group ~
|
|
1630
|
+
.ncua-input__field--sm .ncua-input__stepper-button-group ~ input {
|
|
1615
1631
|
padding-left: 12px;
|
|
1616
1632
|
}
|
|
1617
1633
|
.ncua-input__field--xs .ncua-input__icon-wrap + .ncua-input__stepper-button-group {
|
|
@@ -2735,26 +2751,26 @@ button {
|
|
|
2735
2751
|
.ncua-tag__tooltip--top-left {
|
|
2736
2752
|
bottom: 100%;
|
|
2737
2753
|
right: 0;
|
|
2738
|
-
margin-bottom: var(--spacing-
|
|
2754
|
+
margin-bottom: var(--spacing-s);
|
|
2739
2755
|
}
|
|
2740
2756
|
.ncua-tag__tooltip--top-right {
|
|
2741
2757
|
bottom: 100%;
|
|
2742
2758
|
left: 0;
|
|
2743
|
-
margin-bottom: var(--spacing-
|
|
2759
|
+
margin-bottom: var(--spacing-s);
|
|
2744
2760
|
}
|
|
2745
2761
|
.ncua-tag__tooltip--bottom-left {
|
|
2746
2762
|
top: 100%;
|
|
2747
2763
|
right: 0;
|
|
2748
|
-
margin-top: var(--spacing-
|
|
2764
|
+
margin-top: var(--spacing-s);
|
|
2749
2765
|
}
|
|
2750
2766
|
.ncua-tag__tooltip--bottom-right {
|
|
2751
2767
|
top: 100%;
|
|
2752
2768
|
left: 0;
|
|
2753
|
-
margin-top: var(--spacing-
|
|
2769
|
+
margin-top: var(--spacing-s);
|
|
2754
2770
|
}
|
|
2755
2771
|
.ncua-tag__tooltip-content {
|
|
2756
2772
|
display: block;
|
|
2757
|
-
padding: var(--spacing-
|
|
2773
|
+
padding: var(--spacing-s) var(--spacing-lg);
|
|
2758
2774
|
background-color: var(--base-white);
|
|
2759
2775
|
color: var(--gray-500);
|
|
2760
2776
|
font-size: var(--font-size-xxs);
|
|
@@ -3168,17 +3184,17 @@ button {
|
|
|
3168
3184
|
border: 0;
|
|
3169
3185
|
background-color: transparent;
|
|
3170
3186
|
}
|
|
3171
|
-
.ncua-select--simple
|
|
3187
|
+
.ncua-select--simple.ncua-select--xs {
|
|
3172
3188
|
min-width: auto;
|
|
3173
3189
|
height: var(--select-simple-height-xs);
|
|
3174
3190
|
border-radius: 0;
|
|
3175
3191
|
}
|
|
3176
|
-
.ncua-select--simple
|
|
3192
|
+
.ncua-select--simple.ncua-select--sm {
|
|
3177
3193
|
min-width: auto;
|
|
3178
3194
|
height: var(--select-simple-height-sm);
|
|
3179
3195
|
border-radius: 0;
|
|
3180
3196
|
}
|
|
3181
|
-
.ncua-select--simple
|
|
3197
|
+
.ncua-select--simple.ncua-select--md {
|
|
3182
3198
|
min-width: auto;
|
|
3183
3199
|
height: var(--select-simple-height-md);
|
|
3184
3200
|
border-radius: 0;
|
|
@@ -4069,13 +4085,15 @@ button {
|
|
|
4069
4085
|
background: var(--base-white);
|
|
4070
4086
|
box-shadow: var(--shadow-xs);
|
|
4071
4087
|
color: var(--gray-700);
|
|
4072
|
-
height: 100%;
|
|
4073
4088
|
padding: 5px 10px;
|
|
4074
4089
|
font-size: var(--font-size-xs);
|
|
4075
4090
|
}
|
|
4076
4091
|
.ncua-date-picker .flatpickr-wrapper:focus-within {
|
|
4077
4092
|
border-color: var(--gray-400);
|
|
4078
4093
|
}
|
|
4094
|
+
.ncua-date-picker .flatpickr-wrapper {
|
|
4095
|
+
height: 100%;
|
|
4096
|
+
}
|
|
4079
4097
|
.ncua-date-picker__input {
|
|
4080
4098
|
width: 100%;
|
|
4081
4099
|
height: 100%;
|
|
@@ -4443,6 +4461,28 @@ button {
|
|
|
4443
4461
|
border-block-start-width: 0;
|
|
4444
4462
|
}
|
|
4445
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
|
+
|
|
4446
4486
|
.ncua-range-date-picker {
|
|
4447
4487
|
display: inline-flex;
|
|
4448
4488
|
align-items: center;
|
|
@@ -4458,13 +4498,33 @@ button {
|
|
|
4458
4498
|
margin-inline-end: 4px;
|
|
4459
4499
|
}
|
|
4460
4500
|
|
|
4461
|
-
.ncua-carousel-
|
|
4462
|
-
display: inline-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
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
|
+
|
|
4521
|
+
.ncua-carousel-number-group {
|
|
4522
|
+
display: inline-flex;
|
|
4523
|
+
align-items: center;
|
|
4524
|
+
gap: 2px;
|
|
4525
|
+
}
|
|
4526
|
+
.ncua-carousel-number-group--light .ncua-carousel-number-group__number {
|
|
4527
|
+
color: var(--gray-600);
|
|
4468
4528
|
}
|
|
4469
4529
|
.ncua-carousel-number-group--light .ncua-carousel-number-group__total {
|
|
4470
4530
|
color: var(--gray-300);
|
|
@@ -4493,26 +4553,6 @@ button {
|
|
|
4493
4553
|
padding: 2px 8px;
|
|
4494
4554
|
}
|
|
4495
4555
|
|
|
4496
|
-
.ncua-carousel-arrow {
|
|
4497
|
-
display: inline-block;
|
|
4498
|
-
border-radius: 999px;
|
|
4499
|
-
background-color: #ffffff;
|
|
4500
|
-
cursor: pointer;
|
|
4501
|
-
}
|
|
4502
|
-
.ncua-carousel-arrow__icon {
|
|
4503
|
-
display: block;
|
|
4504
|
-
}
|
|
4505
|
-
.ncua-carousel-arrow--line {
|
|
4506
|
-
outline: 1px solid var(--gray-200);
|
|
4507
|
-
}
|
|
4508
|
-
.ncua-carousel-arrow--md {
|
|
4509
|
-
padding: 8px;
|
|
4510
|
-
}
|
|
4511
|
-
.ncua-carousel-arrow--md .ncua-carousel-arrow__icon {
|
|
4512
|
-
width: 16px;
|
|
4513
|
-
height: 16px;
|
|
4514
|
-
}
|
|
4515
|
-
|
|
4516
4556
|
.ncua-breadcrumb {
|
|
4517
4557
|
display: flex;
|
|
4518
4558
|
align-items: center;
|
|
@@ -4950,16 +4990,16 @@ button {
|
|
|
4950
4990
|
.ncua-horizontal-tab--lg.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
4951
4991
|
height: 40px;
|
|
4952
4992
|
}
|
|
4953
|
-
.ncua-horizontal-tab
|
|
4993
|
+
.ncua-horizontal-tab.full-width {
|
|
4954
4994
|
width: 100%;
|
|
4955
4995
|
}
|
|
4956
|
-
.ncua-horizontal-tab
|
|
4996
|
+
.ncua-horizontal-tab.full-width .ncua-horizontal-tab__item {
|
|
4957
4997
|
width: 100% !important;
|
|
4958
4998
|
}
|
|
4959
|
-
.ncua-horizontal-tab
|
|
4999
|
+
.ncua-horizontal-tab.full-width .swiper-wrapper {
|
|
4960
5000
|
width: auto;
|
|
4961
5001
|
}
|
|
4962
|
-
.ncua-horizontal-tab
|
|
5002
|
+
.ncua-horizontal-tab.full-width .swiper-slide {
|
|
4963
5003
|
flex-shrink: 1;
|
|
4964
5004
|
}
|
|
4965
5005
|
.ncua-horizontal-tab--underline::after, .ncua-horizontal-tab--underline-fill::after {
|
|
@@ -5526,6 +5566,426 @@ button {
|
|
|
5526
5566
|
gap: 16px;
|
|
5527
5567
|
}
|
|
5528
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
|
+
|
|
5529
5989
|
.flatpickr-calendar {
|
|
5530
5990
|
background: transparent;
|
|
5531
5991
|
opacity: 0;
|