@ncds/ui-admin 1.6.4-alpha.1 → 1.7.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 +148 -0
- package/dist/cjs/assets/scripts/comboBox.js +188 -0
- package/dist/cjs/assets/scripts/datePicker.js +706 -0
- package/dist/cjs/assets/scripts/featuredIcon.js +95 -0
- package/dist/cjs/assets/scripts/fileInput/const/classNames.js +31 -0
- package/dist/cjs/assets/scripts/fileInput/const/index.js +27 -0
- package/dist/cjs/assets/scripts/fileInput/const/types.js +13 -0
- package/dist/cjs/assets/scripts/fileInput/fileInput.js +79 -0
- package/dist/cjs/assets/scripts/fileInput/fileInputModel.js +61 -0
- package/dist/cjs/assets/scripts/fileInput/fileInputView.js +147 -0
- package/dist/cjs/assets/scripts/fileInput/index.js +44 -0
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInput.js +187 -0
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputModel.js +255 -0
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputView.js +354 -0
- package/dist/cjs/assets/scripts/imageFileInput/const/classNames.js +41 -0
- package/dist/cjs/assets/scripts/imageFileInput/const/index.js +27 -0
- package/dist/cjs/assets/scripts/imageFileInput/const/types.js +13 -0
- package/dist/cjs/assets/scripts/imageFileInput/index.js +44 -0
- package/dist/cjs/assets/scripts/index.js +30 -0
- package/dist/cjs/assets/scripts/modal/Modal.js +116 -0
- package/dist/cjs/assets/scripts/modal/ModalActions.js +128 -0
- package/dist/cjs/assets/scripts/modal/ModalContent.js +46 -0
- package/dist/cjs/assets/scripts/modal/ModalHeader.js +115 -0
- package/dist/cjs/assets/scripts/modal/const/classNames.js +41 -0
- package/dist/cjs/assets/scripts/modal/const/index.js +27 -0
- package/dist/cjs/assets/scripts/modal/const/types.js +5 -0
- package/dist/cjs/assets/scripts/modal/index.js +61 -0
- package/dist/cjs/assets/scripts/modal/utils/contentUtils.js +35 -0
- package/dist/cjs/assets/scripts/notification/FloatingNotification.js +180 -0
- package/dist/cjs/assets/scripts/notification/FullWidthNotification.js +120 -0
- package/dist/cjs/assets/scripts/notification/MessageNotification.js +146 -0
- package/dist/cjs/assets/scripts/notification/Notification.js +116 -0
- package/dist/cjs/assets/scripts/notification/const/classNames.js +50 -0
- package/dist/cjs/assets/scripts/notification/const/icons.js +45 -0
- package/dist/cjs/assets/scripts/notification/const/index.js +87 -0
- package/dist/cjs/assets/scripts/notification/const/sizes.js +54 -0
- package/dist/cjs/assets/scripts/notification/const/types.js +14 -0
- package/dist/cjs/assets/scripts/notification/index.js +92 -0
- package/dist/cjs/assets/scripts/notification/utils.js +92 -0
- package/dist/cjs/assets/scripts/progress-bar/ProgressBar.js +272 -0
- package/dist/cjs/assets/scripts/progress-bar/index.js +12 -0
- package/dist/cjs/assets/scripts/selectBox.js +229 -0
- package/dist/cjs/assets/scripts/shared/ButtonCloseX.js +46 -0
- package/dist/cjs/assets/scripts/tab.js +40 -0
- package/dist/cjs/assets/scripts/tag/Tag.js +268 -0
- package/dist/cjs/assets/scripts/tag/const/classNames.js +24 -0
- package/dist/cjs/assets/scripts/tag/const/index.js +38 -0
- package/dist/cjs/assets/scripts/tag/const/sizes.js +13 -0
- package/dist/cjs/assets/scripts/tag/const/types.js +5 -0
- package/dist/cjs/assets/scripts/tag/index.js +44 -0
- package/dist/cjs/assets/scripts/tooltip/Tooltip.js +380 -0
- package/dist/cjs/assets/scripts/tooltip/TooltipLayerManager.js +84 -0
- package/dist/cjs/assets/scripts/tooltip/const/classNames.js +29 -0
- package/dist/cjs/assets/scripts/tooltip/const/constants.js +56 -0
- package/dist/cjs/assets/scripts/tooltip/const/icons.js +15 -0
- package/dist/cjs/assets/scripts/tooltip/const/index.js +123 -0
- package/dist/cjs/assets/scripts/tooltip/const/templates.js +49 -0
- package/dist/cjs/assets/scripts/tooltip/const/types.js +5 -0
- package/dist/cjs/assets/scripts/tooltip/index.js +57 -0
- package/dist/cjs/assets/scripts/tooltip/utils.js +41 -0
- package/dist/cjs/assets/scripts/utils/debounce.js +33 -0
- package/dist/cjs/assets/scripts/utils/unifiedBox/domRenderer.js +384 -0
- package/dist/cjs/assets/scripts/utils/unifiedBox/dropdownModel.js +326 -0
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxController.js +649 -0
- package/dist/cjs/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +669 -0
- package/dist/cjs/src/components/badge/Badge.js +1 -1
- package/dist/cjs/src/components/breadcrumb/BreadCrumb.js +1 -1
- package/dist/cjs/src/components/button/Button.js +13 -5
- package/dist/cjs/src/components/button/ButtonGroup.js +4 -4
- package/dist/cjs/src/components/carousel/CarouselArrow.js +2 -2
- package/dist/cjs/src/components/carousel/CarouselNumberGroup.js +4 -5
- package/dist/cjs/src/components/checkbox/CheckboxInput.js +1 -1
- package/dist/cjs/src/components/combobox/ComboBox.js +54 -43
- package/dist/cjs/src/components/date-picker/CustomInput.js +3 -1
- package/dist/cjs/src/components/date-picker/DatePicker.js +85 -65
- package/dist/cjs/src/components/date-picker/RangeDatePicker.js +46 -37
- package/dist/cjs/src/components/divider/Divider.js +1 -1
- package/dist/cjs/src/components/dot/Dot.js +1 -1
- package/dist/cjs/src/components/dropdown/Dropdown.js +3 -2
- package/dist/cjs/src/components/featured-icon/FeaturedIcon.js +1 -1
- package/dist/cjs/src/components/file-input/FileInput.js +3 -3
- package/dist/cjs/src/components/image-file-input/ImageFileInput.js +5 -2
- package/dist/cjs/src/components/input/InputBase.js +3 -2
- package/dist/cjs/src/components/input/NumberInput.js +1 -1
- package/dist/cjs/src/components/notification/index.js +11 -11
- package/dist/cjs/src/components/pagination/NavButton.js +3 -1
- package/dist/cjs/src/components/pagination/Pagination.js +65 -67
- package/dist/cjs/src/components/progress-bar/ProgressBar.js +13 -9
- package/dist/cjs/src/components/progress-bar/components/SegmentBar.js +1 -1
- package/dist/cjs/src/components/progress-bar/components/SegmentLabels.js +1 -1
- package/dist/cjs/src/components/progress-bar/hooks/useProgressBar.js +3 -2
- package/dist/cjs/src/components/progress-bar/utils.js +3 -2
- package/dist/cjs/src/components/progress-circle/ProgressCircle.js +41 -41
- package/dist/cjs/src/components/select/Select.js +2 -2
- package/dist/cjs/src/components/selectbox/SelectBox.js +57 -45
- package/dist/cjs/src/components/spinner/Spinner.js +5 -4
- package/dist/cjs/src/components/spinner/index.js +0 -11
- package/dist/cjs/src/components/switch/Switch.js +15 -10
- package/dist/cjs/src/components/tab/HorizontalTab.js +8 -5
- package/dist/cjs/src/components/tab/TabButton.js +1 -1
- package/dist/cjs/src/components/toggle/Toggle.js +13 -15
- package/dist/cjs/src/components/tooltip/Tooltip.js +28 -13
- package/dist/cjs/src/constant/index.js +8 -8
- package/dist/cjs/src/hooks/dropdown/useDropdownKeyboard.js +47 -56
- package/dist/cjs/src/hooks/dropdown/useScrollLock.js +26 -19
- package/dist/cjs/src/hooks/index.js +4 -4
- package/dist/cjs/src/utils/date-picker.js +14 -7
- package/dist/cjs/src/utils/dropdown/dropdownUtils.js +6 -8
- package/dist/esm/assets/scripts/baseBox.js +143 -0
- package/dist/esm/assets/scripts/comboBox.js +183 -0
- package/dist/esm/assets/scripts/datePicker.js +699 -0
- package/dist/esm/assets/scripts/featuredIcon.js +90 -0
- package/dist/esm/assets/scripts/fileInput/const/classNames.js +22 -0
- package/dist/esm/assets/scripts/fileInput/const/index.js +2 -0
- package/dist/esm/assets/scripts/fileInput/const/types.js +7 -0
- package/dist/esm/assets/scripts/fileInput/fileInput.js +74 -0
- package/dist/esm/assets/scripts/fileInput/fileInputModel.js +56 -0
- package/dist/esm/assets/scripts/fileInput/fileInputView.js +142 -0
- package/dist/esm/assets/scripts/fileInput/index.js +9 -0
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInput.js +182 -0
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputModel.js +250 -0
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputView.js +349 -0
- package/dist/esm/assets/scripts/imageFileInput/const/classNames.js +30 -0
- package/dist/esm/assets/scripts/imageFileInput/const/index.js +2 -0
- package/dist/esm/assets/scripts/imageFileInput/const/types.js +7 -0
- package/dist/esm/assets/scripts/imageFileInput/index.js +9 -0
- package/dist/esm/assets/scripts/index.js +28 -0
- package/dist/esm/assets/scripts/modal/Modal.js +110 -0
- package/dist/esm/assets/scripts/modal/ModalActions.js +123 -0
- package/dist/esm/assets/scripts/modal/ModalContent.js +41 -0
- package/dist/esm/assets/scripts/modal/ModalHeader.js +110 -0
- package/dist/esm/assets/scripts/modal/const/classNames.js +31 -0
- package/dist/esm/assets/scripts/modal/const/index.js +2 -0
- package/dist/esm/assets/scripts/modal/const/types.js +1 -0
- package/dist/esm/assets/scripts/modal/index.js +15 -0
- package/dist/esm/assets/scripts/modal/utils/contentUtils.js +28 -0
- package/dist/esm/assets/scripts/notification/FloatingNotification.js +176 -0
- package/dist/esm/assets/scripts/notification/FullWidthNotification.js +115 -0
- package/dist/esm/assets/scripts/notification/MessageNotification.js +141 -0
- package/dist/esm/assets/scripts/notification/Notification.js +111 -0
- package/dist/esm/assets/scripts/notification/const/classNames.js +44 -0
- package/dist/esm/assets/scripts/notification/const/icons.js +39 -0
- package/dist/esm/assets/scripts/notification/const/index.js +4 -0
- package/dist/esm/assets/scripts/notification/const/sizes.js +48 -0
- package/dist/esm/assets/scripts/notification/const/types.js +8 -0
- package/dist/esm/assets/scripts/notification/index.js +11 -0
- package/dist/esm/assets/scripts/notification/utils.js +79 -0
- package/dist/esm/assets/scripts/progress-bar/ProgressBar.js +267 -0
- package/dist/esm/assets/scripts/progress-bar/index.js +1 -0
- package/dist/esm/assets/scripts/selectBox.js +224 -0
- package/dist/esm/assets/scripts/shared/ButtonCloseX.js +38 -0
- package/dist/esm/assets/scripts/tab.js +35 -0
- package/dist/esm/assets/scripts/tag/Tag.js +263 -0
- package/dist/esm/assets/scripts/tag/const/classNames.js +16 -0
- package/dist/esm/assets/scripts/tag/const/index.js +3 -0
- package/dist/esm/assets/scripts/tag/const/sizes.js +7 -0
- package/dist/esm/assets/scripts/tag/const/types.js +1 -0
- package/dist/esm/assets/scripts/tag/index.js +9 -0
- package/dist/esm/assets/scripts/tooltip/Tooltip.js +375 -0
- package/dist/esm/assets/scripts/tooltip/TooltipLayerManager.js +79 -0
- package/dist/esm/assets/scripts/tooltip/const/classNames.js +23 -0
- package/dist/esm/assets/scripts/tooltip/const/constants.js +50 -0
- package/dist/esm/assets/scripts/tooltip/const/icons.js +9 -0
- package/dist/esm/assets/scripts/tooltip/const/index.js +4 -0
- package/dist/esm/assets/scripts/tooltip/const/templates.js +42 -0
- package/dist/esm/assets/scripts/tooltip/const/types.js +1 -0
- package/dist/esm/assets/scripts/tooltip/index.js +10 -0
- package/dist/esm/assets/scripts/tooltip/utils.js +35 -0
- package/dist/esm/assets/scripts/utils/debounce.js +27 -0
- package/dist/esm/assets/scripts/utils/unifiedBox/domRenderer.js +379 -0
- package/dist/esm/assets/scripts/utils/unifiedBox/dropdownModel.js +320 -0
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxController.js +644 -0
- package/dist/esm/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +664 -0
- package/dist/esm/src/components/badge/Badge.js +4 -3
- package/dist/esm/src/components/badge/BadgeGroup.js +3 -2
- package/dist/esm/src/components/badge/utils.js +3 -2
- package/dist/esm/src/components/breadcrumb/BreadCrumb.js +4 -3
- package/dist/esm/src/components/button/Button.js +13 -5
- package/dist/esm/src/components/button/ButtonCloseX.js +3 -2
- package/dist/esm/src/components/button/ButtonGroup.js +6 -4
- package/dist/esm/src/components/carousel/CarouselArrow.js +2 -2
- package/dist/esm/src/components/carousel/CarouselNumberGroup.js +4 -5
- package/dist/esm/src/components/checkbox/CheckboxInput.js +1 -1
- package/dist/esm/src/components/combobox/ComboBox.js +58 -46
- package/dist/esm/src/components/date-picker/CustomInput.js +6 -3
- package/dist/esm/src/components/date-picker/DatePicker.js +88 -67
- package/dist/esm/src/components/date-picker/RangeDatePicker.js +49 -39
- package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +3 -2
- package/dist/esm/src/components/divider/Divider.js +1 -1
- package/dist/esm/src/components/dot/Dot.js +4 -3
- package/dist/esm/src/components/dropdown/Dropdown.js +3 -2
- package/dist/esm/src/components/empty-state/EmptyState.js +3 -2
- package/dist/esm/src/components/featured-icon/FeaturedIcon.js +4 -3
- package/dist/esm/src/components/file-input/FileInput.js +3 -3
- package/dist/esm/src/components/image-file-input/ImageFileInput.js +6 -3
- package/dist/esm/src/components/input/InputBase.js +6 -4
- package/dist/esm/src/components/input/NumberInput.js +1 -1
- package/dist/esm/src/components/modal/Modal.js +3 -2
- package/dist/esm/src/components/notification/FloatingNotification.js +3 -2
- package/dist/esm/src/components/notification/FullWidthNotification.js +3 -2
- package/dist/esm/src/components/notification/MessageNotification.js +3 -2
- package/dist/esm/src/components/notification/Notification.js +3 -2
- package/dist/esm/src/components/notification/index.js +2 -2
- package/dist/esm/src/components/pagination/NavButton.js +3 -1
- package/dist/esm/src/components/pagination/Pagination.js +65 -67
- package/dist/esm/src/components/progress-bar/ProgressBar.js +13 -9
- package/dist/esm/src/components/progress-bar/components/SegmentBar.js +1 -1
- package/dist/esm/src/components/progress-bar/components/SegmentLabels.js +5 -4
- package/dist/esm/src/components/progress-bar/hooks/useProgressBar.js +3 -2
- package/dist/esm/src/components/progress-bar/utils.js +7 -5
- package/dist/esm/src/components/progress-circle/ProgressCircle.js +41 -41
- package/dist/esm/src/components/select/Select.js +2 -2
- package/dist/esm/src/components/select-dropdown/SelectDropdown.js +3 -2
- package/dist/esm/src/components/selectbox/SelectBox.js +61 -48
- package/dist/esm/src/components/spinner/Spinner.js +5 -4
- package/dist/esm/src/components/spinner/index.js +1 -2
- package/dist/esm/src/components/switch/Switch.js +19 -13
- package/dist/esm/src/components/tab/HorizontalTab.js +12 -8
- package/dist/esm/src/components/tab/TabButton.js +4 -3
- package/dist/esm/src/components/tag/Tag.js +3 -2
- package/dist/esm/src/components/toggle/Toggle.js +14 -16
- package/dist/esm/src/components/tooltip/Tooltip.js +29 -14
- package/dist/esm/src/constant/index.js +2 -2
- package/dist/esm/src/hooks/dropdown/useDropdownKeyboard.js +47 -56
- package/dist/esm/src/hooks/dropdown/useScrollLock.js +26 -19
- package/dist/esm/src/hooks/index.js +3 -3
- package/dist/esm/src/utils/date-picker.js +14 -7
- package/dist/esm/src/utils/dropdown/dropdownUtils.js +6 -8
- package/dist/temp/assets/scripts/baseBox.d.ts +55 -0
- package/dist/temp/assets/scripts/baseBox.js +144 -0
- package/dist/temp/assets/scripts/comboBox.d.ts +60 -0
- package/dist/temp/assets/scripts/comboBox.js +163 -0
- package/dist/temp/assets/scripts/datePicker.d.ts +86 -0
- package/dist/temp/assets/scripts/datePicker.js +706 -0
- package/dist/temp/assets/scripts/featuredIcon.d.ts +22 -0
- package/dist/temp/assets/scripts/featuredIcon.js +86 -0
- package/dist/temp/assets/scripts/fileInput/const/classNames.d.ts +15 -0
- package/dist/temp/assets/scripts/fileInput/const/classNames.js +20 -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 +75 -0
- package/dist/temp/assets/scripts/fileInput/fileInputModel.d.ts +12 -0
- package/dist/temp/assets/scripts/fileInput/fileInputModel.js +45 -0
- package/dist/temp/assets/scripts/fileInput/fileInputView.d.ts +42 -0
- package/dist/temp/assets/scripts/fileInput/fileInputView.js +142 -0
- package/dist/temp/assets/scripts/fileInput/index.d.ts +3 -0
- package/dist/temp/assets/scripts/fileInput/index.js +9 -0
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.d.ts +63 -0
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInput.js +186 -0
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +73 -0
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputModel.js +234 -0
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.d.ts +79 -0
- package/dist/temp/assets/scripts/imageFileInput/ImageFileInputView.js +348 -0
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.d.ts +19 -0
- package/dist/temp/assets/scripts/imageFileInput/const/classNames.js +24 -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 +32 -0
- package/dist/temp/assets/scripts/index.js +28 -0
- package/dist/temp/assets/scripts/modal/Modal.d.ts +27 -0
- package/dist/temp/assets/scripts/modal/Modal.js +106 -0
- package/dist/temp/assets/scripts/modal/ModalActions.d.ts +18 -0
- package/dist/temp/assets/scripts/modal/ModalActions.js +125 -0
- package/dist/temp/assets/scripts/modal/ModalContent.d.ts +13 -0
- package/dist/temp/assets/scripts/modal/ModalContent.js +41 -0
- package/dist/temp/assets/scripts/modal/ModalHeader.d.ts +15 -0
- package/dist/temp/assets/scripts/modal/ModalHeader.js +102 -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/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 +154 -0
- package/dist/temp/assets/scripts/notification/FullWidthNotification.d.ts +21 -0
- package/dist/temp/assets/scripts/notification/FullWidthNotification.js +94 -0
- package/dist/temp/assets/scripts/notification/MessageNotification.d.ts +22 -0
- package/dist/temp/assets/scripts/notification/MessageNotification.js +123 -0
- package/dist/temp/assets/scripts/notification/Notification.d.ts +21 -0
- package/dist/temp/assets/scripts/notification/Notification.js +108 -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 +39 -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 +84 -0
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.d.ts +67 -0
- package/dist/temp/assets/scripts/progress-bar/ProgressBar.js +258 -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 +194 -0
- package/dist/temp/assets/scripts/shared/ButtonCloseX.d.ts +5 -0
- package/dist/temp/assets/scripts/shared/ButtonCloseX.js +32 -0
- package/dist/temp/assets/scripts/slider.d.ts +41 -0
- package/dist/temp/assets/scripts/slider.js +331 -0
- package/dist/temp/assets/scripts/tab.d.ts +7 -0
- package/dist/temp/assets/scripts/tab.js +35 -0
- package/dist/temp/assets/scripts/tag/Tag.d.ts +27 -0
- package/dist/temp/assets/scripts/tag/Tag.js +267 -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 +360 -0
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.d.ts +21 -0
- package/dist/temp/assets/scripts/tooltip/TooltipLayerManager.js +74 -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 +30 -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 +35 -0
- package/dist/temp/assets/scripts/utils/debounce.d.ts +8 -0
- package/dist/temp/assets/scripts/utils/debounce.js +27 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.d.ts +107 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/domRenderer.js +376 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.d.ts +142 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/dropdownModel.js +311 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.d.ts +156 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxController.js +627 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.d.ts +95 -0
- package/dist/temp/assets/scripts/utils/unifiedBox/unifiedBoxManager.js +559 -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 +29 -0
- package/dist/temp/index.js +29 -0
- package/dist/temp/src/components/badge/Badge.d.ts +18 -0
- package/dist/temp/src/components/badge/Badge.js +23 -0
- package/dist/temp/src/components/badge/BadgeGroup.d.ts +18 -0
- package/dist/temp/src/components/badge/BadgeGroup.js +36 -0
- package/dist/temp/src/components/badge/index.d.ts +2 -0
- package/dist/temp/src/components/badge/index.js +2 -0
- package/dist/temp/src/components/badge/utils.d.ts +8 -0
- package/dist/temp/src/components/badge/utils.js +17 -0
- package/dist/temp/src/components/breadcrumb/BreadCrumb.d.ts +11 -0
- package/dist/temp/src/components/breadcrumb/BreadCrumb.js +33 -0
- package/dist/temp/src/components/breadcrumb/index.d.ts +1 -0
- package/dist/temp/src/components/breadcrumb/index.js +1 -0
- package/dist/temp/src/components/button/Button.d.ts +35 -0
- package/dist/temp/src/components/button/Button.js +69 -0
- package/dist/temp/src/components/button/ButtonCloseX.d.ts +10 -0
- package/dist/temp/src/components/button/ButtonCloseX.js +25 -0
- package/dist/temp/src/components/button/ButtonGroup.d.ts +311 -0
- package/dist/temp/src/components/button/ButtonGroup.js +72 -0
- package/dist/temp/src/components/button/ButtonStepper.d.ts +9 -0
- package/dist/temp/src/components/button/ButtonStepper.js +6 -0
- package/dist/temp/src/components/button/index.d.ts +4 -0
- package/dist/temp/src/components/button/index.js +4 -0
- package/dist/temp/src/components/carousel/CarouselArrow.d.ts +8 -0
- package/dist/temp/src/components/carousel/CarouselArrow.js +24 -0
- package/dist/temp/src/components/carousel/CarouselNumberGroup.d.ts +8 -0
- package/dist/temp/src/components/carousel/CarouselNumberGroup.js +24 -0
- package/dist/temp/src/components/carousel/index.d.ts +2 -0
- package/dist/temp/src/components/carousel/index.js +2 -0
- package/dist/temp/src/components/checkbox/Checkbox.d.ts +7 -0
- package/dist/temp/src/components/checkbox/Checkbox.js +30 -0
- package/dist/temp/src/components/checkbox/CheckboxInput.d.ts +9 -0
- package/dist/temp/src/components/checkbox/CheckboxInput.js +46 -0
- package/dist/temp/src/components/checkbox/index.d.ts +2 -0
- package/dist/temp/src/components/checkbox/index.js +2 -0
- package/dist/temp/src/components/combobox/ComboBox.d.ts +28 -0
- package/dist/temp/src/components/combobox/ComboBox.js +199 -0
- package/dist/temp/src/components/combobox/index.d.ts +2 -0
- package/dist/temp/src/components/combobox/index.js +1 -0
- package/dist/temp/src/components/date-picker/CustomInput.d.ts +10 -0
- package/dist/temp/src/components/date-picker/CustomInput.js +34 -0
- package/dist/temp/src/components/date-picker/DatePicker.d.ts +24 -0
- package/dist/temp/src/components/date-picker/DatePicker.js +326 -0
- package/dist/temp/src/components/date-picker/RangeDatePicker.d.ts +26 -0
- package/dist/temp/src/components/date-picker/RangeDatePicker.js +117 -0
- package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.d.ts +71 -0
- package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.js +55 -0
- package/dist/temp/src/components/date-picker/index.d.ts +4 -0
- package/dist/temp/src/components/date-picker/index.js +4 -0
- package/dist/temp/src/components/date-picker/utils.d.ts +2 -0
- package/dist/temp/src/components/date-picker/utils.js +8 -0
- package/dist/temp/src/components/divider/Divider.d.ts +15 -0
- package/dist/temp/src/components/divider/Divider.js +23 -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 +31 -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 +90 -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 +33 -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 +36 -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 +123 -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/image-file-input/ImageFileInput.d.ts +70 -0
- package/dist/temp/src/components/image-file-input/ImageFileInput.js +124 -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 +18 -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 +33 -0
- package/dist/temp/src/components/index.js +32 -0
- package/dist/temp/src/components/input/InputBase.d.ts +54 -0
- package/dist/temp/src/components/input/InputBase.js +121 -0
- package/dist/temp/src/components/input/NumberInput.d.ts +9 -0
- package/dist/temp/src/components/input/NumberInput.js +93 -0
- package/dist/temp/src/components/input/PasswordInput.d.ts +2 -0
- package/dist/temp/src/components/input/PasswordInput.js +51 -0
- package/dist/temp/src/components/input/Textarea.d.ts +14 -0
- package/dist/temp/src/components/input/Textarea.js +60 -0
- package/dist/temp/src/components/input/index.d.ts +4 -0
- package/dist/temp/src/components/input/index.js +4 -0
- package/dist/temp/src/components/modal/Modal.d.ts +79 -0
- package/dist/temp/src/components/modal/Modal.js +101 -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 +79 -0
- package/dist/temp/src/components/notification/FullWidthNotification.d.ts +46 -0
- package/dist/temp/src/components/notification/FullWidthNotification.js +79 -0
- package/dist/temp/src/components/notification/MessageNotification.d.ts +41 -0
- package/dist/temp/src/components/notification/MessageNotification.js +57 -0
- package/dist/temp/src/components/notification/Notification.d.ts +72 -0
- package/dist/temp/src/components/notification/Notification.js +42 -0
- package/dist/temp/src/components/notification/index.d.ts +4 -0
- package/dist/temp/src/components/notification/index.js +4 -0
- package/dist/temp/src/components/pagination/NavButton.d.ts +31 -0
- package/dist/temp/src/components/pagination/NavButton.js +66 -0
- package/dist/temp/src/components/pagination/Pagination.d.ts +11 -0
- package/dist/temp/src/components/pagination/Pagination.js +93 -0
- package/dist/temp/src/components/pagination/index.d.ts +2 -0
- package/dist/temp/src/components/pagination/index.js +2 -0
- package/dist/temp/src/components/progress-bar/ProgressBar.d.ts +2 -0
- package/dist/temp/src/components/progress-bar/ProgressBar.js +31 -0
- package/dist/temp/src/components/progress-bar/components/SegmentBar.d.ts +7 -0
- package/dist/temp/src/components/progress-bar/components/SegmentBar.js +10 -0
- package/dist/temp/src/components/progress-bar/components/SegmentLabels.d.ts +15 -0
- package/dist/temp/src/components/progress-bar/components/SegmentLabels.js +45 -0
- package/dist/temp/src/components/progress-bar/hooks/useProgressBar.d.ts +13 -0
- package/dist/temp/src/components/progress-bar/hooks/useProgressBar.js +96 -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 +21 -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 +30 -0
- package/dist/temp/src/components/radio/RadioInput.d.ts +8 -0
- package/dist/temp/src/components/radio/RadioInput.js +29 -0
- package/dist/temp/src/components/radio/index.d.ts +2 -0
- package/dist/temp/src/components/radio/index.js +2 -0
- package/dist/temp/src/components/select/Select.d.ts +16 -0
- package/dist/temp/src/components/select/Select.js +33 -0
- package/dist/temp/src/components/select/index.d.ts +1 -0
- package/dist/temp/src/components/select/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 +49 -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/selectbox/SelectBox.d.ts +27 -0
- package/dist/temp/src/components/selectbox/SelectBox.js +163 -0
- package/dist/temp/src/components/selectbox/index.d.ts +1 -0
- package/dist/temp/src/components/selectbox/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 +28 -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 +28 -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 +44 -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 +21 -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 +68 -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/HorizontalTab.d.ts +12 -0
- package/dist/temp/src/components/tab/HorizontalTab.js +37 -0
- package/dist/temp/src/components/tab/TabButton.d.ts +23 -0
- package/dist/temp/src/components/tab/TabButton.js +37 -0
- package/dist/temp/src/components/tab/VerticalTab.d.ts +9 -0
- package/dist/temp/src/components/tab/VerticalTab.js +32 -0
- package/dist/temp/src/components/tab/index.d.ts +3 -0
- package/dist/temp/src/components/tab/index.js +3 -0
- package/dist/temp/src/components/tag/Tag.d.ts +17 -0
- package/dist/temp/src/components/tag/Tag.js +110 -0
- package/dist/temp/src/components/tag/index.d.ts +1 -0
- package/dist/temp/src/components/tag/index.js +1 -0
- package/dist/temp/src/components/toggle/Toggle.d.ts +10 -0
- package/dist/temp/src/components/toggle/Toggle.js +30 -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 +122 -0
- package/dist/temp/src/components/tooltip/index.d.ts +1 -0
- package/dist/temp/src/components/tooltip/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 +108 -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 +44 -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 +20 -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 +51 -0
- package/dist/temp/src/utils/dropdown/dropdownUtils.d.ts +17 -0
- package/dist/temp/src/utils/dropdown/dropdownUtils.js +79 -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 +68 -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 +60 -0
- package/dist/types/assets/scripts/datePicker.d.ts +86 -0
- package/dist/types/assets/scripts/featuredIcon.d.ts +22 -0
- package/dist/types/assets/scripts/fileInput/const/classNames.d.ts +15 -0
- package/dist/types/assets/scripts/fileInput/const/index.d.ts +2 -0
- package/dist/types/assets/scripts/fileInput/const/types.d.ts +88 -0
- 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 +3 -0
- package/dist/types/assets/scripts/imageFileInput/ImageFileInput.d.ts +63 -0
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +73 -0
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputView.d.ts +79 -0
- package/dist/types/assets/scripts/imageFileInput/const/classNames.d.ts +19 -0
- package/dist/types/assets/scripts/imageFileInput/const/index.d.ts +2 -0
- package/dist/types/assets/scripts/imageFileInput/const/types.d.ts +125 -0
- package/dist/types/assets/scripts/imageFileInput/index.d.ts +3 -0
- package/dist/types/assets/scripts/index.d.ts +32 -0
- package/dist/types/assets/scripts/modal/Modal.d.ts +27 -0
- package/dist/types/assets/scripts/modal/ModalActions.d.ts +18 -0
- package/dist/types/assets/scripts/modal/ModalContent.d.ts +13 -0
- package/dist/types/assets/scripts/modal/ModalHeader.d.ts +15 -0
- package/dist/types/assets/scripts/modal/const/classNames.d.ts +22 -0
- package/dist/types/assets/scripts/modal/const/index.d.ts +2 -0
- package/dist/types/assets/scripts/modal/const/types.d.ts +61 -0
- package/dist/types/assets/scripts/modal/index.d.ts +7 -0
- package/dist/types/assets/scripts/modal/utils/contentUtils.d.ts +10 -0
- package/dist/types/assets/scripts/notification/FloatingNotification.d.ts +24 -0
- package/dist/types/assets/scripts/notification/FullWidthNotification.d.ts +21 -0
- package/dist/types/assets/scripts/notification/MessageNotification.d.ts +22 -0
- package/dist/types/assets/scripts/notification/Notification.d.ts +21 -0
- package/dist/types/assets/scripts/notification/const/classNames.d.ts +43 -0
- package/dist/types/assets/scripts/notification/const/icons.d.ts +25 -0
- package/dist/types/assets/scripts/notification/const/index.d.ts +5 -0
- package/dist/types/assets/scripts/notification/const/sizes.d.ts +32 -0
- package/dist/types/assets/scripts/notification/const/types.d.ts +19 -0
- package/dist/types/assets/scripts/notification/index.d.ts +7 -0
- package/dist/types/assets/scripts/notification/utils.d.ts +8 -0
- package/dist/types/assets/scripts/progress-bar/ProgressBar.d.ts +67 -0
- package/dist/types/assets/scripts/progress-bar/index.d.ts +1 -0
- package/dist/types/assets/scripts/selectBox.d.ts +50 -0
- package/dist/types/assets/scripts/shared/ButtonCloseX.d.ts +5 -0
- package/dist/types/assets/scripts/slider.d.ts +0 -1
- package/dist/types/assets/scripts/tab.d.ts +7 -0
- package/dist/types/assets/scripts/tag/Tag.d.ts +27 -0
- package/dist/types/assets/scripts/tag/const/classNames.d.ts +11 -0
- package/dist/types/assets/scripts/tag/const/index.d.ts +3 -0
- package/dist/types/assets/scripts/tag/const/sizes.d.ts +7 -0
- package/dist/types/assets/scripts/tag/const/types.d.ts +33 -0
- package/dist/types/assets/scripts/tag/index.d.ts +3 -0
- package/dist/types/assets/scripts/tooltip/Tooltip.d.ts +54 -0
- package/dist/types/assets/scripts/tooltip/TooltipLayerManager.d.ts +21 -0
- package/dist/types/assets/scripts/tooltip/const/classNames.d.ts +17 -0
- package/dist/types/assets/scripts/tooltip/const/constants.d.ts +33 -0
- package/dist/types/assets/scripts/tooltip/const/icons.d.ts +4 -0
- package/dist/types/assets/scripts/tooltip/const/index.d.ts +5 -0
- package/dist/types/assets/scripts/tooltip/const/templates.d.ts +16 -0
- package/dist/types/assets/scripts/tooltip/const/types.d.ts +14 -0
- package/dist/types/assets/scripts/tooltip/index.d.ts +6 -0
- package/dist/types/assets/scripts/tooltip/utils.d.ts +2 -0
- 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 -1
- package/dist/types/src/components/badge/Badge.d.ts +10 -9
- package/dist/types/src/components/badge/BadgeGroup.d.ts +7 -6
- package/dist/types/src/components/badge/index.d.ts +0 -1
- package/dist/types/src/components/badge/utils.d.ts +4 -3
- package/dist/types/src/components/breadcrumb/BreadCrumb.d.ts +5 -4
- package/dist/types/src/components/breadcrumb/index.d.ts +0 -1
- 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/ButtonGroup.d.ts +9 -11
- package/dist/types/src/components/button/ButtonStepper.d.ts +1 -2
- package/dist/types/src/components/button/index.d.ts +0 -1
- package/dist/types/src/components/carousel/CarouselArrow.d.ts +1 -3
- package/dist/types/src/components/carousel/CarouselNumberGroup.d.ts +1 -3
- package/dist/types/src/components/carousel/index.d.ts +0 -1
- 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/combobox/ComboBox.d.ts +7 -6
- package/dist/types/src/components/combobox/index.d.ts +1 -2
- package/dist/types/src/components/date-picker/CustomInput.d.ts +2 -3
- package/dist/types/src/components/date-picker/DatePicker.d.ts +7 -6
- package/dist/types/src/components/date-picker/RangeDatePicker.d.ts +6 -5
- package/dist/types/src/components/date-picker/RangeDatePickerWithButtons.d.ts +4 -4
- package/dist/types/src/components/date-picker/index.d.ts +0 -1
- 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 +0 -1
- package/dist/types/src/components/file-input/index.d.ts +0 -1
- package/dist/types/src/components/image-file-input/ImageFileInput.d.ts +0 -1
- 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 +1 -2
- package/dist/types/src/components/input/InputBase.d.ts +4 -4
- package/dist/types/src/components/input/NumberInput.d.ts +1 -2
- package/dist/types/src/components/input/PasswordInput.d.ts +1 -2
- package/dist/types/src/components/input/Textarea.d.ts +2 -3
- package/dist/types/src/components/input/index.d.ts +0 -1
- 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/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/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/select/Select.d.ts +4 -5
- package/dist/types/src/components/select/index.d.ts +0 -1
- 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/selectbox/SelectBox.d.ts +5 -4
- package/dist/types/src/components/selectbox/index.d.ts +0 -1
- 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/HorizontalTab.d.ts +7 -5
- package/dist/types/src/components/tab/TabButton.d.ts +8 -8
- package/dist/types/src/components/tab/VerticalTab.d.ts +2 -3
- package/dist/types/src/components/tab/index.d.ts +0 -1
- 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/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/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 +115 -24
- package/package.json +50 -77
- package/mcp/bin/server.js +0 -67
- package/mcp/bin/server.mjs +0 -14
- package/mcp/bin/tools/getComponentHtml.d.ts +0 -3
- package/mcp/bin/tools/getComponentHtml.js +0 -30
- package/mcp/bin/tools/getComponentProps.d.ts +0 -3
- package/mcp/bin/tools/getComponentProps.js +0 -16
- package/mcp/bin/tools/listComponents.d.ts +0 -3
- package/mcp/bin/tools/listComponents.js +0 -15
- package/mcp/bin/tools/ping.d.ts +0 -11
- package/mcp/bin/tools/ping.js +0 -30
- package/mcp/bin/tools/searchComponent.d.ts +0 -3
- package/mcp/bin/tools/searchComponent.js +0 -20
- package/mcp/bin/tools/validateHtml.d.ts +0 -10
- package/mcp/bin/tools/validateHtml.js +0 -142
- package/mcp/bin/types.d.ts +0 -28
- package/mcp/bin/types.js +0 -5
- package/mcp/bin/utils/dataLoader.d.ts +0 -11
- package/mcp/bin/utils/dataLoader.js +0 -68
- package/mcp/bin/utils/logger.d.ts +0 -18
- package/mcp/bin/utils/logger.js +0 -27
- package/mcp/bin/utils/response.d.ts +0 -23
- package/mcp/bin/utils/response.js +0 -31
- package/mcp/bin/version.d.ts +0 -1
- package/mcp/bin/version.js +0 -4
- package/mcp/data/.gitkeep +0 -0
- package/mcp/data/_meta.json +0 -7
- package/mcp/data/badge-group.json +0 -73
- package/mcp/data/badge.json +0 -86
- package/mcp/data/bread-crumb.json +0 -22
- package/mcp/data/breadcrumb.json +0 -31
- package/mcp/data/button-group.json +0 -65
- package/mcp/data/button.json +0 -114
- package/mcp/data/carousel-arrow.json +0 -59
- package/mcp/data/carousel-number-group.json +0 -57
- package/mcp/data/carousel.json +0 -22
- package/mcp/data/checkbox.json +0 -31
- package/mcp/data/combobox.json +0 -114
- package/mcp/data/date-picker.json +0 -77
- package/mcp/data/divider.json +0 -56
- package/mcp/data/dot.json +0 -55
- package/mcp/data/dropdown.json +0 -81
- package/mcp/data/empty-state.json +0 -34
- package/mcp/data/featured-icon.json +0 -83
- package/mcp/data/file-input.json +0 -76
- package/mcp/data/horizontal-tab.json +0 -71
- package/mcp/data/image-file-input.json +0 -97
- package/mcp/data/input.json +0 -104
- package/mcp/data/modal.json +0 -85
- package/mcp/data/notification.json +0 -116
- package/mcp/data/number-input.json +0 -128
- package/mcp/data/pagination.json +0 -65
- package/mcp/data/password-input.json +0 -47
- package/mcp/data/progress-bar.json +0 -51
- package/mcp/data/progress-circle.json +0 -54
- package/mcp/data/radio.json +0 -31
- package/mcp/data/range-date-picker-with-buttons.json +0 -64
- package/mcp/data/range-date-picker.json +0 -55
- package/mcp/data/select-dropdown.json +0 -32
- package/mcp/data/select.json +0 -64
- package/mcp/data/selectbox.json +0 -129
- package/mcp/data/slider.json +0 -57
- package/mcp/data/spinner.json +0 -54
- package/mcp/data/switch.json +0 -71
- package/mcp/data/tab.json +0 -122
- package/mcp/data/tag.json +0 -66
- package/mcp/data/textarea.json +0 -88
- package/mcp/data/toggle.json +0 -59
- package/mcp/data/tooltip.json +0 -123
- package/mcp/data/vertical-tab.json +0 -64
- package/mcp/templates/.mcp.json.example +0 -8
- package/mcp/templates/README.md +0 -31
- /package/{mcp/bin/server.d.ts → dist/temp/assets/scripts/modal/const/types.js} +0 -0
package/mcp/data/input.json
DELETED
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "input",
|
|
3
|
-
"description": "NCDS Input 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"destructive": {
|
|
7
|
-
"type": "string",
|
|
8
|
-
"required": false
|
|
9
|
-
},
|
|
10
|
-
"disabled": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"required": false
|
|
13
|
-
},
|
|
14
|
-
"hintText": {
|
|
15
|
-
"type": "string",
|
|
16
|
-
"required": false
|
|
17
|
-
},
|
|
18
|
-
"label": {
|
|
19
|
-
"type": "string",
|
|
20
|
-
"required": false
|
|
21
|
-
},
|
|
22
|
-
"leadingElement": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"required": false
|
|
25
|
-
},
|
|
26
|
-
"maxLength": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"required": false
|
|
29
|
-
},
|
|
30
|
-
"required": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"required": false
|
|
33
|
-
},
|
|
34
|
-
"showHelpIcon": {
|
|
35
|
-
"type": "string",
|
|
36
|
-
"required": false
|
|
37
|
-
},
|
|
38
|
-
"showTextCount": {
|
|
39
|
-
"type": "string",
|
|
40
|
-
"required": false
|
|
41
|
-
},
|
|
42
|
-
"size": {
|
|
43
|
-
"type": "enum",
|
|
44
|
-
"required": false,
|
|
45
|
-
"values": ["sm", "xs"],
|
|
46
|
-
"default": "xs"
|
|
47
|
-
},
|
|
48
|
-
"trailingElement": {
|
|
49
|
-
"type": "string",
|
|
50
|
-
"required": false
|
|
51
|
-
},
|
|
52
|
-
"validation": {
|
|
53
|
-
"type": "string",
|
|
54
|
-
"required": false
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"html": {
|
|
58
|
-
"default": "<div class=\"ncua-input ncua-input--xs\"><div class=\"ncua-input__content-wrap\"><div class=\"ncua-input__content\"><div class=\"ncua-input__field ncua-input__field--xs\"><input type=\"text\" placeholder=\"텍스트를 입력하세요\"/></div></div></div></div>",
|
|
59
|
-
"size:sm": "<div class=\"ncua-input ncua-input--sm\"><div class=\"ncua-input__content-wrap\"><div class=\"ncua-input__content\"><div class=\"ncua-input__field ncua-input__field--sm\"><input type=\"text\" placeholder=\"텍스트를 입력하세요\"/></div></div></div></div>",
|
|
60
|
-
"size:md": "<div class=\"ncua-input ncua-input--md\"><div class=\"ncua-input__content-wrap\"><div class=\"ncua-input__content\"><div class=\"ncua-input__field ncua-input__field--md\"><input type=\"text\" placeholder=\"텍스트를 입력하세요\"/></div></div></div></div>"
|
|
61
|
-
},
|
|
62
|
-
"bemClasses": [
|
|
63
|
-
"ncua-input",
|
|
64
|
-
"ncua-input--sm",
|
|
65
|
-
"ncua-input--textarea",
|
|
66
|
-
"ncua-input--xs",
|
|
67
|
-
"ncua-input__",
|
|
68
|
-
"ncua-input__button",
|
|
69
|
-
"ncua-input__clear",
|
|
70
|
-
"ncua-input__clear-icon",
|
|
71
|
-
"ncua-input__content",
|
|
72
|
-
"ncua-input__content-wrap",
|
|
73
|
-
"ncua-input__destructive-icon",
|
|
74
|
-
"ncua-input__field",
|
|
75
|
-
"ncua-input__field-text-count",
|
|
76
|
-
"ncua-input__field-text-count-current",
|
|
77
|
-
"ncua-input__help-icon",
|
|
78
|
-
"ncua-input__hint-text",
|
|
79
|
-
"ncua-input__icon-wrap",
|
|
80
|
-
"ncua-input__icon-wrap ncua-input__right-icon",
|
|
81
|
-
"ncua-input__label",
|
|
82
|
-
"ncua-input__leading-text",
|
|
83
|
-
"ncua-input__leading-text-wrap",
|
|
84
|
-
"ncua-input__number",
|
|
85
|
-
"ncua-input__password-icon",
|
|
86
|
-
"ncua-input__right-icon",
|
|
87
|
-
"ncua-input__stepper-button-group",
|
|
88
|
-
"ncua-input__text-count",
|
|
89
|
-
"ncua-input__text-count-text",
|
|
90
|
-
"ncua-input__text-count-text-count",
|
|
91
|
-
"ncua-input__text-count-wrap",
|
|
92
|
-
"ncua-input__textarea",
|
|
93
|
-
"ncua-input__trailing-button",
|
|
94
|
-
"ncua-input__validation-icon"
|
|
95
|
-
],
|
|
96
|
-
"usage": {
|
|
97
|
-
"import": "import { Input } from '@ncds/ui-admin';",
|
|
98
|
-
"react": {
|
|
99
|
-
"default": "<Input />",
|
|
100
|
-
"size:sm": "<Input size=\"sm\" />",
|
|
101
|
-
"size:xs": "<Input size=\"xs\" />"
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
package/mcp/data/modal.json
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "modal",
|
|
3
|
-
"description": "NCDS Modal 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"children": {
|
|
7
|
-
"type": "ReactNode",
|
|
8
|
-
"required": true
|
|
9
|
-
},
|
|
10
|
-
"className": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"required": false
|
|
13
|
-
},
|
|
14
|
-
"closeOnBackdropClick": {
|
|
15
|
-
"type": "string",
|
|
16
|
-
"required": false,
|
|
17
|
-
"default": false
|
|
18
|
-
},
|
|
19
|
-
"closeOnEsc": {
|
|
20
|
-
"type": "string",
|
|
21
|
-
"required": false,
|
|
22
|
-
"default": true
|
|
23
|
-
},
|
|
24
|
-
"isOpen": {
|
|
25
|
-
"type": "boolean",
|
|
26
|
-
"required": true
|
|
27
|
-
},
|
|
28
|
-
"onClose": {
|
|
29
|
-
"type": "string",
|
|
30
|
-
"required": true
|
|
31
|
-
},
|
|
32
|
-
"size": {
|
|
33
|
-
"type": "enum",
|
|
34
|
-
"required": false,
|
|
35
|
-
"values": ["2xl", "lg", "md", "sm", "xl"],
|
|
36
|
-
"default": "md"
|
|
37
|
-
},
|
|
38
|
-
"zIndex": {
|
|
39
|
-
"type": "string",
|
|
40
|
-
"required": false
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
"html": {
|
|
44
|
-
"default": "<div class=\"ncua-modal\"></div>",
|
|
45
|
-
"size:2xl": "<div class=\"ncua-modal ncua-modal--2xl\"></div>",
|
|
46
|
-
"size:lg": "<div class=\"ncua-modal ncua-modal--lg\"></div>",
|
|
47
|
-
"size:md": "<div class=\"ncua-modal ncua-modal--md\"></div>",
|
|
48
|
-
"size:sm": "<div class=\"ncua-modal ncua-modal--sm\"></div>",
|
|
49
|
-
"size:xl": "<div class=\"ncua-modal ncua-modal--xl\"></div>"
|
|
50
|
-
},
|
|
51
|
-
"bemClasses": [
|
|
52
|
-
"ncua-modal",
|
|
53
|
-
"ncua-modal--2xl",
|
|
54
|
-
"ncua-modal--lg",
|
|
55
|
-
"ncua-modal--md",
|
|
56
|
-
"ncua-modal--sm",
|
|
57
|
-
"ncua-modal--xl",
|
|
58
|
-
"ncua-modal-backdrop",
|
|
59
|
-
"ncua-modal__actions",
|
|
60
|
-
"ncua-modal__actions-checkbox",
|
|
61
|
-
"ncua-modal__actions-checkbox-content",
|
|
62
|
-
"ncua-modal__actions-divider",
|
|
63
|
-
"ncua-modal__actions-wrapper",
|
|
64
|
-
"ncua-modal__actions-wrapper--checkbox",
|
|
65
|
-
"ncua-modal__close-button",
|
|
66
|
-
"ncua-modal__content",
|
|
67
|
-
"ncua-modal__header",
|
|
68
|
-
"ncua-modal__header--close-button",
|
|
69
|
-
"ncua-modal__header-divider",
|
|
70
|
-
"ncua-modal__title",
|
|
71
|
-
"ncua-modal__title-subtitle",
|
|
72
|
-
"ncua-modal__title-text"
|
|
73
|
-
],
|
|
74
|
-
"usage": {
|
|
75
|
-
"import": "import { Modal } from '@ncds/ui-admin';",
|
|
76
|
-
"react": {
|
|
77
|
-
"default": "<Modal children=\"예시\" isOpen onClose=\"\" />",
|
|
78
|
-
"size:2xl": "<Modal size=\"2xl\" children=\"예시\" isOpen onClose=\"\" />",
|
|
79
|
-
"size:lg": "<Modal size=\"lg\" children=\"예시\" isOpen onClose=\"\" />",
|
|
80
|
-
"size:md": "<Modal size=\"md\" children=\"예시\" isOpen onClose=\"\" />",
|
|
81
|
-
"size:sm": "<Modal size=\"sm\" children=\"예시\" isOpen onClose=\"\" />",
|
|
82
|
-
"size:xl": "<Modal size=\"xl\" children=\"예시\" isOpen onClose=\"\" />"
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "notification",
|
|
3
|
-
"description": "NCDS Notification 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"actions": {
|
|
7
|
-
"type": "string",
|
|
8
|
-
"required": false
|
|
9
|
-
},
|
|
10
|
-
"autoClose": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"required": false,
|
|
13
|
-
"default": 0
|
|
14
|
-
},
|
|
15
|
-
"className": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"required": false
|
|
18
|
-
},
|
|
19
|
-
"color": {
|
|
20
|
-
"type": "enum",
|
|
21
|
-
"required": false,
|
|
22
|
-
"values": ["error", "info", "neutral", "success", "warning"],
|
|
23
|
-
"default": "neutral"
|
|
24
|
-
},
|
|
25
|
-
"icon": {
|
|
26
|
-
"type": "string",
|
|
27
|
-
"required": false
|
|
28
|
-
},
|
|
29
|
-
"onClose": {
|
|
30
|
-
"type": "string",
|
|
31
|
-
"required": false
|
|
32
|
-
},
|
|
33
|
-
"onHidePermanently": {
|
|
34
|
-
"type": "string",
|
|
35
|
-
"required": false
|
|
36
|
-
},
|
|
37
|
-
"supportingText": {
|
|
38
|
-
"type": "string",
|
|
39
|
-
"required": false
|
|
40
|
-
},
|
|
41
|
-
"title": {
|
|
42
|
-
"type": "ReactNode",
|
|
43
|
-
"required": true
|
|
44
|
-
},
|
|
45
|
-
"type": {
|
|
46
|
-
"type": "enum",
|
|
47
|
-
"required": false,
|
|
48
|
-
"values": ["floating", "full-width", "message"],
|
|
49
|
-
"default": "floating"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"html": {
|
|
53
|
-
"default": "<div class=\"ncua-floating-notification ncua-floating-notification--neutral\" role=\"alert\" message=\"알림 메시지\"><div class=\"ncua-floating-notification__content\"><div class=\"ncua-floating-notification__container\"><div class=\"ncua-featured-icon ncua-featured-icon--dark-circle ncua-featured-icon--neutral ncua-featured-icon--sm\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.377 15.616 2.72 21.273m8.974-14.631-1.56 1.56a2 2 0 0 1-.264.242 1 1 0 0 1-.207.111c-.082.032-.17.05-.347.085l-3.665.733c-.952.19-1.428.286-1.65.537a1 1 0 0 0-.243.8c.046.333.39.677 1.076 1.363l7.086 7.086c.686.687 1.03 1.03 1.362 1.076a1 1 0 0 0 .801-.242c.251-.223.346-.7.537-1.651l.733-3.665c.035-.176.053-.265.085-.347a1 1 0 0 1 .11-.207c.051-.072.115-.136.242-.263l1.561-1.561c.082-.082.122-.122.167-.158q.06-.047.126-.085c.05-.029.103-.051.208-.097l2.495-1.069c.727-.312 1.091-.467 1.256-.72a1 1 0 0 0 .144-.747c-.06-.295-.34-.575-.9-1.135l-5.142-5.143c-.56-.56-.84-.84-1.135-.9a1 1 0 0 0-.748.145c-.252.165-.407.529-.72 1.256l-1.068 2.495a2 2 0 0 1-.097.208 1 1 0 0 1-.085.126 2 2 0 0 1-.158.167\"></path></svg></div><div class=\"ncua-floating-notification__text-container\"><div class=\"ncua-floating-notification__title-wrapper\"><span class=\"ncua-floating-notification__title\"></span></div></div></div></div></div>"
|
|
54
|
-
},
|
|
55
|
-
"bemClasses": [
|
|
56
|
-
"ncua-floating-notification",
|
|
57
|
-
"ncua-floating-notification--error",
|
|
58
|
-
"ncua-floating-notification--floating",
|
|
59
|
-
"ncua-floating-notification--full-width",
|
|
60
|
-
"ncua-floating-notification--info",
|
|
61
|
-
"ncua-floating-notification--message",
|
|
62
|
-
"ncua-floating-notification--neutral",
|
|
63
|
-
"ncua-floating-notification--success",
|
|
64
|
-
"ncua-floating-notification--warning",
|
|
65
|
-
"ncua-floating-notification__actions",
|
|
66
|
-
"ncua-floating-notification__close-button",
|
|
67
|
-
"ncua-floating-notification__container",
|
|
68
|
-
"ncua-floating-notification__content",
|
|
69
|
-
"ncua-floating-notification__supporting-text",
|
|
70
|
-
"ncua-floating-notification__text-container",
|
|
71
|
-
"ncua-floating-notification__title",
|
|
72
|
-
"ncua-floating-notification__title-wrapper",
|
|
73
|
-
"ncua-full-width-notification",
|
|
74
|
-
"ncua-full-width-notification__actions",
|
|
75
|
-
"ncua-full-width-notification__actions-container",
|
|
76
|
-
"ncua-full-width-notification__close-button",
|
|
77
|
-
"ncua-full-width-notification__container",
|
|
78
|
-
"ncua-full-width-notification__content",
|
|
79
|
-
"ncua-full-width-notification__content-wrapper",
|
|
80
|
-
"ncua-full-width-notification__icon",
|
|
81
|
-
"ncua-full-width-notification__link",
|
|
82
|
-
"ncua-full-width-notification__supporting-text",
|
|
83
|
-
"ncua-full-width-notification__text-container",
|
|
84
|
-
"ncua-full-width-notification__title",
|
|
85
|
-
"ncua-message-notification",
|
|
86
|
-
"ncua-message-notification__actions",
|
|
87
|
-
"ncua-message-notification__actions-container",
|
|
88
|
-
"ncua-message-notification__close-button",
|
|
89
|
-
"ncua-message-notification__container",
|
|
90
|
-
"ncua-message-notification__content",
|
|
91
|
-
"ncua-message-notification__content-wrapper",
|
|
92
|
-
"ncua-message-notification__footer-container",
|
|
93
|
-
"ncua-message-notification__hide-link",
|
|
94
|
-
"ncua-message-notification__icon",
|
|
95
|
-
"ncua-message-notification__supporting-text",
|
|
96
|
-
"ncua-message-notification__text-container",
|
|
97
|
-
"ncua-message-notification__title",
|
|
98
|
-
"ncua-notification__action-button",
|
|
99
|
-
"ncua-notification__action-button--link",
|
|
100
|
-
"ncua-notification__action-button--text"
|
|
101
|
-
],
|
|
102
|
-
"usage": {
|
|
103
|
-
"import": "import { Notification } from '@ncds/ui-admin';",
|
|
104
|
-
"react": {
|
|
105
|
-
"default": "<Notification title=\"예시\" />",
|
|
106
|
-
"color:error": "<Notification color=\"error\" title=\"예시\" />",
|
|
107
|
-
"color:info": "<Notification color=\"info\" title=\"예시\" />",
|
|
108
|
-
"color:neutral": "<Notification color=\"neutral\" title=\"예시\" />",
|
|
109
|
-
"color:success": "<Notification color=\"success\" title=\"예시\" />",
|
|
110
|
-
"color:warning": "<Notification color=\"warning\" title=\"예시\" />",
|
|
111
|
-
"type:floating": "<Notification type=\"floating\" title=\"예시\" />",
|
|
112
|
-
"type:full-width": "<Notification type=\"full-width\" title=\"예시\" />",
|
|
113
|
-
"type:message": "<Notification type=\"message\" title=\"예시\" />"
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "number-input",
|
|
3
|
-
"description": "NCDS Number Input 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"destructive": {
|
|
7
|
-
"type": "string",
|
|
8
|
-
"required": false
|
|
9
|
-
},
|
|
10
|
-
"disabled": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"required": false
|
|
13
|
-
},
|
|
14
|
-
"hintText": {
|
|
15
|
-
"type": "string",
|
|
16
|
-
"required": false
|
|
17
|
-
},
|
|
18
|
-
"label": {
|
|
19
|
-
"type": "string",
|
|
20
|
-
"required": false
|
|
21
|
-
},
|
|
22
|
-
"leadingElement": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"required": false
|
|
25
|
-
},
|
|
26
|
-
"maxLength": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"required": false
|
|
29
|
-
},
|
|
30
|
-
"maxValue": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"required": false
|
|
33
|
-
},
|
|
34
|
-
"minValue": {
|
|
35
|
-
"type": "string",
|
|
36
|
-
"required": false
|
|
37
|
-
},
|
|
38
|
-
"required": {
|
|
39
|
-
"type": "string",
|
|
40
|
-
"required": false
|
|
41
|
-
},
|
|
42
|
-
"showHelpIcon": {
|
|
43
|
-
"type": "string",
|
|
44
|
-
"required": false
|
|
45
|
-
},
|
|
46
|
-
"showTextCount": {
|
|
47
|
-
"type": "string",
|
|
48
|
-
"required": false
|
|
49
|
-
},
|
|
50
|
-
"size": {
|
|
51
|
-
"type": "enum",
|
|
52
|
-
"required": false,
|
|
53
|
-
"values": ["sm", "xs"],
|
|
54
|
-
"default": "xs"
|
|
55
|
-
},
|
|
56
|
-
"step": {
|
|
57
|
-
"type": "string",
|
|
58
|
-
"required": false,
|
|
59
|
-
"default": 1
|
|
60
|
-
},
|
|
61
|
-
"stepperPosition": {
|
|
62
|
-
"type": "enum",
|
|
63
|
-
"required": true,
|
|
64
|
-
"values": ["leading", "trailing"]
|
|
65
|
-
},
|
|
66
|
-
"trailingElement": {
|
|
67
|
-
"type": "string",
|
|
68
|
-
"required": false
|
|
69
|
-
},
|
|
70
|
-
"validation": {
|
|
71
|
-
"type": "string",
|
|
72
|
-
"required": false
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
"html": {
|
|
76
|
-
"default": "<div class=\"ncua-input\"></div>",
|
|
77
|
-
"size:sm": "<div class=\"ncua-input ncua-input--sm\"></div>",
|
|
78
|
-
"size:xs": "<div class=\"ncua-input ncua-input--xs\"></div>",
|
|
79
|
-
"stepperPosition:leading": "<div class=\"ncua-input ncua-input--leading\"></div>",
|
|
80
|
-
"stepperPosition:trailing": "<div class=\"ncua-input ncua-input--trailing\"></div>"
|
|
81
|
-
},
|
|
82
|
-
"bemClasses": [
|
|
83
|
-
"ncua-input",
|
|
84
|
-
"ncua-input--leading",
|
|
85
|
-
"ncua-input--sm",
|
|
86
|
-
"ncua-input--textarea",
|
|
87
|
-
"ncua-input--trailing",
|
|
88
|
-
"ncua-input--xs",
|
|
89
|
-
"ncua-input__",
|
|
90
|
-
"ncua-input__button",
|
|
91
|
-
"ncua-input__clear",
|
|
92
|
-
"ncua-input__clear-icon",
|
|
93
|
-
"ncua-input__content",
|
|
94
|
-
"ncua-input__content-wrap",
|
|
95
|
-
"ncua-input__destructive-icon",
|
|
96
|
-
"ncua-input__field",
|
|
97
|
-
"ncua-input__field-text-count",
|
|
98
|
-
"ncua-input__field-text-count-current",
|
|
99
|
-
"ncua-input__help-icon",
|
|
100
|
-
"ncua-input__hint-text",
|
|
101
|
-
"ncua-input__icon-wrap",
|
|
102
|
-
"ncua-input__icon-wrap ncua-input__right-icon",
|
|
103
|
-
"ncua-input__label",
|
|
104
|
-
"ncua-input__leading-text",
|
|
105
|
-
"ncua-input__leading-text-wrap",
|
|
106
|
-
"ncua-input__number",
|
|
107
|
-
"ncua-input__password-icon",
|
|
108
|
-
"ncua-input__right-icon",
|
|
109
|
-
"ncua-input__stepper-button-group",
|
|
110
|
-
"ncua-input__text-count",
|
|
111
|
-
"ncua-input__text-count-text",
|
|
112
|
-
"ncua-input__text-count-text-count",
|
|
113
|
-
"ncua-input__text-count-wrap",
|
|
114
|
-
"ncua-input__textarea",
|
|
115
|
-
"ncua-input__trailing-button",
|
|
116
|
-
"ncua-input__validation-icon"
|
|
117
|
-
],
|
|
118
|
-
"usage": {
|
|
119
|
-
"import": "import { NumberInput } from '@ncds/ui-admin';",
|
|
120
|
-
"react": {
|
|
121
|
-
"default": "<NumberInput stepperPosition=\"leading\" />",
|
|
122
|
-
"size:sm": "<NumberInput size=\"sm\" stepperPosition=\"leading\" />",
|
|
123
|
-
"size:xs": "<NumberInput size=\"xs\" stepperPosition=\"leading\" />",
|
|
124
|
-
"stepperPosition:leading": "<NumberInput stepperPosition=\"leading\" />",
|
|
125
|
-
"stepperPosition:trailing": "<NumberInput stepperPosition=\"trailing\" />"
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
package/mcp/data/pagination.json
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "pagination",
|
|
3
|
-
"description": "NCDS Pagination 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"breakPoint": {
|
|
7
|
-
"type": "enum",
|
|
8
|
-
"required": false,
|
|
9
|
-
"values": ["mo", "pc"],
|
|
10
|
-
"default": "pc"
|
|
11
|
-
},
|
|
12
|
-
"className": {
|
|
13
|
-
"type": "string",
|
|
14
|
-
"required": false,
|
|
15
|
-
"default": ""
|
|
16
|
-
},
|
|
17
|
-
"currentPage": {
|
|
18
|
-
"type": "number",
|
|
19
|
-
"required": true
|
|
20
|
-
},
|
|
21
|
-
"itemCountPerPage": {
|
|
22
|
-
"type": "string",
|
|
23
|
-
"required": false,
|
|
24
|
-
"default": 10
|
|
25
|
-
},
|
|
26
|
-
"onPageChange": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"required": false
|
|
29
|
-
},
|
|
30
|
-
"pageCount": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"required": false,
|
|
33
|
-
"default": 10
|
|
34
|
-
},
|
|
35
|
-
"totalCount": {
|
|
36
|
-
"type": "number",
|
|
37
|
-
"required": true
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"html": {
|
|
41
|
-
"default": "<div class=\"ncua-pagination ncua-pagination--pc\"><ul class=\"ncua-pagination__list\"><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num is-current\">1</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">2</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">3</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">4</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">5</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">6</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">7</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">8</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">9</button></li><li class=\"ncua-pagination__item\"><button class=\"ncua-pagination__page-num\">10</button></li></ul><p class=\"ncua-pagination__page-info\"><em class=\"ncua-pagination__current-num\">1</em> / 10</p></div>"
|
|
42
|
-
},
|
|
43
|
-
"bemClasses": [
|
|
44
|
-
"ncua-pagination",
|
|
45
|
-
"ncua-pagination--mo",
|
|
46
|
-
"ncua-pagination--pc",
|
|
47
|
-
"ncua-pagination__before",
|
|
48
|
-
"ncua-pagination__current-num",
|
|
49
|
-
"ncua-pagination__first",
|
|
50
|
-
"ncua-pagination__item",
|
|
51
|
-
"ncua-pagination__last",
|
|
52
|
-
"ncua-pagination__list",
|
|
53
|
-
"ncua-pagination__next",
|
|
54
|
-
"ncua-pagination__page-info",
|
|
55
|
-
"ncua-pagination__page-num"
|
|
56
|
-
],
|
|
57
|
-
"usage": {
|
|
58
|
-
"import": "import { Pagination } from '@ncds/ui-admin';",
|
|
59
|
-
"react": {
|
|
60
|
-
"default": "<Pagination currentPage={0} totalCount={0} />",
|
|
61
|
-
"breakPoint:mo": "<Pagination breakPoint=\"mo\" currentPage={0} totalCount={0} />",
|
|
62
|
-
"breakPoint:pc": "<Pagination breakPoint=\"pc\" currentPage={0} totalCount={0} />"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "password-input",
|
|
3
|
-
"description": "NCDS Password Input 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {},
|
|
6
|
-
"html": {
|
|
7
|
-
"default": "<div class=\"ncua-input\"></div>"
|
|
8
|
-
},
|
|
9
|
-
"bemClasses": [
|
|
10
|
-
"ncua-input",
|
|
11
|
-
"ncua-input--textarea",
|
|
12
|
-
"ncua-input__",
|
|
13
|
-
"ncua-input__button",
|
|
14
|
-
"ncua-input__clear",
|
|
15
|
-
"ncua-input__clear-icon",
|
|
16
|
-
"ncua-input__content",
|
|
17
|
-
"ncua-input__content-wrap",
|
|
18
|
-
"ncua-input__destructive-icon",
|
|
19
|
-
"ncua-input__field",
|
|
20
|
-
"ncua-input__field-text-count",
|
|
21
|
-
"ncua-input__field-text-count-current",
|
|
22
|
-
"ncua-input__help-icon",
|
|
23
|
-
"ncua-input__hint-text",
|
|
24
|
-
"ncua-input__icon-wrap",
|
|
25
|
-
"ncua-input__icon-wrap ncua-input__right-icon",
|
|
26
|
-
"ncua-input__label",
|
|
27
|
-
"ncua-input__leading-text",
|
|
28
|
-
"ncua-input__leading-text-wrap",
|
|
29
|
-
"ncua-input__number",
|
|
30
|
-
"ncua-input__password-icon",
|
|
31
|
-
"ncua-input__right-icon",
|
|
32
|
-
"ncua-input__stepper-button-group",
|
|
33
|
-
"ncua-input__text-count",
|
|
34
|
-
"ncua-input__text-count-text",
|
|
35
|
-
"ncua-input__text-count-text-count",
|
|
36
|
-
"ncua-input__text-count-wrap",
|
|
37
|
-
"ncua-input__textarea",
|
|
38
|
-
"ncua-input__trailing-button",
|
|
39
|
-
"ncua-input__validation-icon"
|
|
40
|
-
],
|
|
41
|
-
"usage": {
|
|
42
|
-
"import": "import { PasswordInput } from '@ncds/ui-admin';",
|
|
43
|
-
"react": {
|
|
44
|
-
"default": "<PasswordInput />"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "progress-bar",
|
|
3
|
-
"description": "NCDS Progress Bar 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"label": {
|
|
7
|
-
"type": "enum",
|
|
8
|
-
"required": false,
|
|
9
|
-
"values": ["bottom", "bottom-float", "right", "top-float"]
|
|
10
|
-
},
|
|
11
|
-
"segments": {
|
|
12
|
-
"type": "string",
|
|
13
|
-
"required": false
|
|
14
|
-
},
|
|
15
|
-
"showZeroLabel": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"required": false,
|
|
18
|
-
"default": false
|
|
19
|
-
},
|
|
20
|
-
"value": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"required": false
|
|
23
|
-
},
|
|
24
|
-
"valueToPercent": {
|
|
25
|
-
"type": "string",
|
|
26
|
-
"required": false,
|
|
27
|
-
"default": true
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"html": {
|
|
31
|
-
"default": "<div class=\"ncua-progress-bar ncua-progress-bar-\"><div class=\"ncua-progress-bar__content\"><div class=\"ncua-progress-bar__bar \"><div class=\"ncua-progress-bar__fill\" style=\"width:50%\" aria-valuenow=\"50\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div></div></div></div>"
|
|
32
|
-
},
|
|
33
|
-
"bemClasses": [
|
|
34
|
-
"ncua-progress-bar",
|
|
35
|
-
"ncua-progress-bar-",
|
|
36
|
-
"ncua-progress-bar__bar",
|
|
37
|
-
"ncua-progress-bar__bar--segments",
|
|
38
|
-
"ncua-progress-bar__content",
|
|
39
|
-
"ncua-progress-bar__fill"
|
|
40
|
-
],
|
|
41
|
-
"usage": {
|
|
42
|
-
"import": "import { ProgressBar } from '@ncds/ui-admin';",
|
|
43
|
-
"react": {
|
|
44
|
-
"default": "<ProgressBar />",
|
|
45
|
-
"label:bottom": "<ProgressBar label=\"bottom\" />",
|
|
46
|
-
"label:bottom-float": "<ProgressBar label=\"bottom-float\" />",
|
|
47
|
-
"label:right": "<ProgressBar label=\"right\" />",
|
|
48
|
-
"label:top-float": "<ProgressBar label=\"top-float\" />"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "progress-circle",
|
|
3
|
-
"description": "NCDS Progress Circle 컴포넌트",
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"props": {
|
|
6
|
-
"label": {
|
|
7
|
-
"type": "string",
|
|
8
|
-
"required": false
|
|
9
|
-
},
|
|
10
|
-
"size": {
|
|
11
|
-
"type": "enum",
|
|
12
|
-
"required": true,
|
|
13
|
-
"values": ["lg", "md", "sm", "xs", "xxs"]
|
|
14
|
-
},
|
|
15
|
-
"theme": {
|
|
16
|
-
"type": "enum",
|
|
17
|
-
"required": false,
|
|
18
|
-
"values": ["circle", "half-circle"],
|
|
19
|
-
"default": "circle"
|
|
20
|
-
},
|
|
21
|
-
"value": {
|
|
22
|
-
"type": "number",
|
|
23
|
-
"required": true
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"html": {
|
|
27
|
-
"default": "<div class=\"ncua-progress-circle ncua-progress-circle-undefined ncua-progress-circle-circle\"><div class=\"ncua-progress-circle__content\"><svg class=\"ncua-progress-circle__svg\" viewBox=\"0 0 100 100\"><circle class=\"ncua-progress-circle__background\" cx=\"50\" cy=\"50\" r=\"45\" stroke-width=\"10\" fill=\"none\"></circle><circle class=\"ncua-progress-circle__progress\" cx=\"50\" cy=\"50\" r=\"45\" stroke-width=\"10\" fill=\"none\" stroke-dasharray=\"var(--circle-circumference)\" stroke-dashoffset=\"calc(var(--circle-circumference) * (1 - 50 / 100))\" transform=\"rotate(-90 50 50)\" stroke-linecap=\"round\"></circle></svg><div class=\"ncua-progress-circle__label-container\"><div class=\"ncua-progress-circle__label\">50%</div></div></div></div>"
|
|
28
|
-
},
|
|
29
|
-
"bemClasses": [
|
|
30
|
-
"ncua-progress-circle",
|
|
31
|
-
"ncua-progress-circle-",
|
|
32
|
-
"ncua-progress-circle__background",
|
|
33
|
-
"ncua-progress-circle__content",
|
|
34
|
-
"ncua-progress-circle__label",
|
|
35
|
-
"ncua-progress-circle__label-container",
|
|
36
|
-
"ncua-progress-circle__label-text",
|
|
37
|
-
"ncua-progress-circle__outside-label",
|
|
38
|
-
"ncua-progress-circle__progress",
|
|
39
|
-
"ncua-progress-circle__svg"
|
|
40
|
-
],
|
|
41
|
-
"usage": {
|
|
42
|
-
"import": "import { ProgressCircle } from '@ncds/ui-admin';",
|
|
43
|
-
"react": {
|
|
44
|
-
"default": "<ProgressCircle size=\"lg\" value={0} />",
|
|
45
|
-
"size:lg": "<ProgressCircle size=\"lg\" value={0} />",
|
|
46
|
-
"size:md": "<ProgressCircle size=\"md\" value={0} />",
|
|
47
|
-
"size:sm": "<ProgressCircle size=\"sm\" value={0} />",
|
|
48
|
-
"size:xs": "<ProgressCircle size=\"xs\" value={0} />",
|
|
49
|
-
"size:xxs": "<ProgressCircle size=\"xxs\" value={0} />",
|
|
50
|
-
"theme:circle": "<ProgressCircle theme=\"circle\" size=\"lg\" value={0} />",
|
|
51
|
-
"theme:half-circle": "<ProgressCircle theme=\"half-circle\" size=\"lg\" value={0} />"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|