@ncds/ui-admin 0.0.34 → 0.0.35
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/datePicker.js +248 -0
- package/dist/cjs/assets/scripts/index.js +10 -0
- package/dist/cjs/assets/scripts/slider.js +332 -0
- package/dist/cjs/assets/scripts/tab.js +40 -0
- package/dist/cjs/constant/color.js +38 -0
- package/dist/cjs/constant/size.js +5 -0
- package/dist/cjs/index.js +313 -0
- package/dist/cjs/src/components/badge/Badge.js +52 -0
- package/dist/cjs/src/components/badge/BadgeGroup.js +62 -0
- package/dist/cjs/src/components/badge/index.js +27 -0
- package/dist/cjs/src/components/badge/utils.js +33 -0
- package/dist/cjs/src/components/breadcrumb/BreadCrumb.js +67 -0
- package/dist/cjs/src/components/breadcrumb/index.js +16 -0
- package/dist/cjs/src/components/button/Button.js +127 -0
- package/dist/cjs/src/components/button/ButtonCloseX.js +44 -0
- package/dist/cjs/src/components/button/ButtonGroup.js +121 -0
- package/dist/cjs/src/components/button/index.js +27 -0
- package/dist/cjs/src/components/carousel/CarouselArrow.js +41 -0
- package/dist/cjs/src/components/carousel/CarouselNumberGroup.js +46 -0
- package/dist/cjs/src/components/carousel/index.js +27 -0
- package/dist/cjs/src/components/checkbox/Checkbox.js +70 -0
- package/dist/cjs/src/components/checkbox/CheckboxInput.js +96 -0
- package/dist/cjs/src/components/checkbox/index.js +27 -0
- package/dist/cjs/src/components/date-picker/DatePicker.js +86 -0
- package/dist/cjs/src/components/date-picker/RangeDatePicker.js +137 -0
- package/dist/cjs/src/components/date-picker/RangeDatePickerWithButtons.js +92 -0
- package/dist/cjs/src/components/date-picker/index.js +49 -0
- package/dist/cjs/src/components/date-picker/utils.js +18 -0
- package/dist/cjs/src/components/divider/Divider.js +47 -0
- package/dist/cjs/src/components/divider/index.js +16 -0
- package/dist/cjs/src/components/dot/Dot.js +41 -0
- package/dist/cjs/src/components/dot/index.js +16 -0
- package/dist/cjs/src/components/dropdown/Dropdown.js +206 -0
- package/dist/cjs/src/components/dropdown/index.js +16 -0
- package/dist/cjs/src/components/empty-state/EmptyState.js +58 -0
- package/dist/cjs/src/components/empty-state/index.js +16 -0
- package/dist/cjs/src/components/featured-icon/FeaturedIcon.js +62 -0
- package/dist/cjs/src/components/featured-icon/index.js +16 -0
- package/dist/cjs/src/components/index.js +291 -0
- package/dist/cjs/src/components/input/InputBase.js +184 -0
- package/dist/cjs/src/components/input/PasswordInput.js +94 -0
- package/dist/cjs/src/components/input/Textarea.js +115 -0
- package/dist/cjs/src/components/input/index.js +38 -0
- package/dist/cjs/src/components/modal/Modal.js +194 -0
- package/dist/cjs/src/components/modal/index.js +16 -0
- package/dist/cjs/src/components/notification/FloatingNotification.js +108 -0
- package/dist/cjs/src/components/notification/FullWidthNotification.js +119 -0
- package/dist/cjs/src/components/notification/Notification.js +45 -0
- package/dist/cjs/src/components/notification/index.js +38 -0
- package/dist/cjs/src/components/pagination/NavButton.js +93 -0
- package/dist/cjs/src/components/pagination/Pagination.js +161 -0
- package/dist/cjs/src/components/pagination/index.js +27 -0
- package/dist/cjs/src/components/progress-bar/ProgressBar.js +57 -0
- package/dist/cjs/src/components/progress-bar/index.js +16 -0
- package/dist/cjs/src/components/progress-circle/ProgressCircle.js +121 -0
- package/dist/cjs/src/components/progress-circle/index.js +16 -0
- package/dist/cjs/src/components/radio/Radio.js +65 -0
- package/dist/cjs/src/components/radio/RadioInput.js +50 -0
- package/dist/cjs/src/components/radio/index.js +27 -0
- package/dist/cjs/src/components/select/Select.js +98 -0
- package/dist/cjs/src/components/select/index.js +16 -0
- package/dist/cjs/src/components/shared/hintText/HintText.js +43 -0
- package/dist/cjs/src/components/shared/hintText/index.js +16 -0
- package/dist/cjs/src/components/shared/index.js +27 -0
- package/dist/cjs/src/components/shared/label/Label.js +43 -0
- package/dist/cjs/src/components/shared/label/index.js +16 -0
- package/dist/cjs/src/components/slider/Slider.js +64 -0
- package/dist/cjs/src/components/slider/index.js +16 -0
- package/dist/cjs/src/components/spinner/Spinner.js +53 -0
- package/dist/cjs/src/components/spinner/index.js +27 -0
- package/dist/cjs/src/components/tab/HorizontalTab.js +77 -0
- package/dist/cjs/src/components/tab/TabButton.js +76 -0
- package/dist/cjs/src/components/tab/VerticalTab.js +75 -0
- package/dist/cjs/src/components/tab/index.js +38 -0
- package/dist/cjs/src/components/tag/Tag.js +78 -0
- package/dist/cjs/src/components/tag/index.js +16 -0
- package/dist/cjs/src/components/toggle/Toggle.js +74 -0
- package/dist/cjs/src/components/toggle/index.js +16 -0
- package/dist/cjs/src/components/tooltip/Tooltip.js +74 -0
- package/dist/cjs/src/components/tooltip/index.js +16 -0
- package/dist/cjs/src/constant/breakpoint.js +12 -0
- package/dist/cjs/src/constant/date-picker.js +63 -0
- package/dist/cjs/src/constant/index.js +27 -0
- package/dist/cjs/src/constant/size.js +7 -0
- package/dist/cjs/src/hooks/useMediaQuery.js +29 -0
- package/dist/cjs/src/utils/date-picker.js +26 -0
- package/dist/esm/assets/scripts/datePicker.js +243 -0
- package/dist/{temp → esm}/assets/scripts/index.js +4 -4
- package/dist/esm/assets/scripts/slider.js +327 -0
- package/dist/esm/assets/scripts/tab.js +35 -0
- package/dist/esm/constant/color.js +32 -0
- package/dist/esm/constant/size.js +1 -0
- package/dist/{temp → esm}/index.js +1 -1
- package/dist/esm/src/components/badge/Badge.js +44 -0
- package/dist/esm/src/components/badge/BadgeGroup.js +54 -0
- package/dist/esm/src/components/badge/index.js +2 -0
- package/dist/esm/src/components/badge/utils.js +25 -0
- package/dist/esm/src/components/breadcrumb/BreadCrumb.js +59 -0
- package/dist/esm/src/components/breadcrumb/index.js +1 -0
- package/dist/esm/src/components/button/Button.js +120 -0
- package/dist/esm/src/components/button/ButtonCloseX.js +36 -0
- package/dist/esm/src/components/button/ButtonGroup.js +111 -0
- package/dist/esm/src/components/button/index.js +2 -0
- package/dist/esm/src/components/carousel/CarouselArrow.js +33 -0
- package/dist/esm/src/components/carousel/CarouselNumberGroup.js +38 -0
- package/dist/esm/src/components/carousel/index.js +2 -0
- package/dist/esm/src/components/checkbox/Checkbox.js +62 -0
- package/dist/esm/src/components/checkbox/CheckboxInput.js +89 -0
- package/dist/esm/src/components/checkbox/index.js +2 -0
- package/dist/esm/src/components/date-picker/DatePicker.js +79 -0
- package/dist/esm/src/components/date-picker/RangeDatePicker.js +130 -0
- package/dist/esm/src/components/date-picker/RangeDatePickerWithButtons.js +85 -0
- package/dist/{temp → esm}/src/components/date-picker/index.js +1 -1
- package/dist/esm/src/components/date-picker/utils.js +10 -0
- package/dist/esm/src/components/divider/Divider.js +40 -0
- package/dist/esm/src/components/divider/index.js +1 -0
- package/dist/esm/src/components/dot/Dot.js +34 -0
- package/dist/esm/src/components/dot/index.js +1 -0
- package/dist/esm/src/components/dropdown/Dropdown.js +198 -0
- package/dist/esm/src/components/dropdown/index.js +1 -0
- package/dist/esm/src/components/empty-state/EmptyState.js +51 -0
- package/dist/esm/src/components/empty-state/index.js +1 -0
- package/dist/esm/src/components/featured-icon/FeaturedIcon.js +55 -0
- package/dist/esm/src/components/featured-icon/index.js +1 -0
- package/dist/{temp → esm}/src/components/index.js +1 -1
- package/dist/esm/src/components/input/InputBase.js +177 -0
- package/dist/esm/src/components/input/PasswordInput.js +87 -0
- package/dist/esm/src/components/input/Textarea.js +108 -0
- package/dist/{temp → esm}/src/components/input/index.js +1 -1
- package/dist/esm/src/components/modal/Modal.js +186 -0
- package/dist/esm/src/components/modal/index.js +1 -0
- package/dist/esm/src/components/notification/FloatingNotification.js +101 -0
- package/dist/esm/src/components/notification/FullWidthNotification.js +112 -0
- package/dist/esm/src/components/notification/Notification.js +39 -0
- package/dist/{temp → esm}/src/components/notification/index.js +1 -1
- package/dist/esm/src/components/pagination/NavButton.js +86 -0
- package/dist/esm/src/components/pagination/Pagination.js +153 -0
- package/dist/esm/src/components/pagination/index.js +2 -0
- package/dist/esm/src/components/progress-bar/ProgressBar.js +50 -0
- package/dist/esm/src/components/progress-bar/index.js +1 -0
- package/dist/esm/src/components/progress-circle/ProgressCircle.js +114 -0
- package/dist/esm/src/components/progress-circle/index.js +1 -0
- package/dist/esm/src/components/radio/Radio.js +57 -0
- package/dist/esm/src/components/radio/RadioInput.js +43 -0
- package/dist/esm/src/components/radio/index.js +2 -0
- package/dist/esm/src/components/select/Select.js +91 -0
- package/dist/esm/src/components/select/index.js +1 -0
- package/dist/esm/src/components/shared/hintText/HintText.js +35 -0
- package/dist/esm/src/components/shared/hintText/index.js +1 -0
- package/dist/{temp → esm}/src/components/shared/index.js +1 -1
- package/dist/esm/src/components/shared/label/Label.js +35 -0
- package/dist/esm/src/components/shared/label/index.js +1 -0
- package/dist/esm/src/components/slider/Slider.js +57 -0
- package/dist/esm/src/components/slider/index.js +1 -0
- package/dist/esm/src/components/spinner/Spinner.js +45 -0
- package/dist/{temp → esm}/src/components/spinner/index.js +1 -1
- package/dist/esm/src/components/tab/HorizontalTab.js +69 -0
- package/dist/esm/src/components/tab/TabButton.js +68 -0
- package/dist/esm/src/components/tab/VerticalTab.js +67 -0
- package/dist/{temp → esm}/src/components/tab/index.js +1 -1
- package/dist/esm/src/components/tag/Tag.js +70 -0
- package/dist/esm/src/components/tag/index.js +1 -0
- package/dist/esm/src/components/toggle/Toggle.js +66 -0
- package/dist/esm/src/components/toggle/index.js +1 -0
- package/dist/esm/src/components/tooltip/Tooltip.js +66 -0
- package/dist/esm/src/components/tooltip/index.js +1 -0
- package/dist/esm/src/constant/breakpoint.js +6 -0
- package/dist/esm/src/constant/date-picker.js +57 -0
- package/dist/esm/src/constant/index.js +2 -0
- package/dist/esm/src/constant/size.js +1 -0
- package/dist/esm/src/hooks/useMediaQuery.js +22 -0
- package/dist/esm/src/utils/date-picker.js +17 -0
- package/dist/{temp → types}/src/components/date-picker/DatePicker.d.ts +0 -1
- package/dist/{temp → types}/src/components/date-picker/RangeDatePicker.d.ts +0 -1
- package/dist/{temp → types}/src/components/dropdown/Dropdown.d.ts +0 -1
- package/dist/{temp → types}/src/components/input/PasswordInput.d.ts +0 -1
- package/dist/{temp → types}/src/components/shared/hintText/HintText.d.ts +0 -1
- package/dist/{temp → types}/src/components/shared/label/Label.d.ts +0 -1
- package/dist/ui-admin/assets/images/sprite.png +0 -0
- package/dist/ui-admin/assets/styles/style.css +3653 -0
- package/package.json +1 -1
- package/dist/temp/assets/scripts/datePicker.d.ts.map +0 -1
- package/dist/temp/assets/scripts/datePicker.js +0 -232
- package/dist/temp/assets/scripts/index.d.ts.map +0 -1
- package/dist/temp/assets/scripts/slider.d.ts.map +0 -1
- package/dist/temp/assets/scripts/slider.js +0 -331
- package/dist/temp/assets/scripts/tab.d.ts.map +0 -1
- package/dist/temp/assets/scripts/tab.js +0 -35
- package/dist/temp/constant/color.d.ts.map +0 -1
- package/dist/temp/constant/color.js +0 -32
- package/dist/temp/constant/size.d.ts.map +0 -1
- package/dist/temp/constant/size.js +0 -1
- package/dist/temp/docusaurus/docusaurus.config.d.ts +0 -4
- package/dist/temp/docusaurus/docusaurus.config.d.ts.map +0 -1
- package/dist/temp/docusaurus/docusaurus.config.js +0 -300
- package/dist/temp/docusaurus/sidebars.d.ts +0 -14
- package/dist/temp/docusaurus/sidebars.d.ts.map +0 -1
- package/dist/temp/docusaurus/sidebars.js +0 -104
- package/dist/temp/docusaurus/src/components/Badge.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/Badge.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Badge.js +0 -1
- package/dist/temp/docusaurus/src/components/BadgeGroup.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/BadgeGroup.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/BadgeGroup.js +0 -1
- package/dist/temp/docusaurus/src/components/BreadCrumb.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/BreadCrumb.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/BreadCrumb.js +0 -2
- package/dist/temp/docusaurus/src/components/Button.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/Button.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Button.js +0 -1
- package/dist/temp/docusaurus/src/components/ButtonGroup.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/ButtonGroup.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/ButtonGroup.js +0 -1
- package/dist/temp/docusaurus/src/components/CarouselArrow.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/CarouselArrow.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/CarouselArrow.js +0 -1
- package/dist/temp/docusaurus/src/components/CarouselNumberGroup.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/CarouselNumberGroup.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/CarouselNumberGroup.js +0 -1
- package/dist/temp/docusaurus/src/components/Checkbox.d.ts +0 -4
- package/dist/temp/docusaurus/src/components/Checkbox.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Checkbox.js +0 -20
- package/dist/temp/docusaurus/src/components/CodeTabs/index.d.ts +0 -10
- package/dist/temp/docusaurus/src/components/CodeTabs/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/CodeTabs/index.js +0 -143
- package/dist/temp/docusaurus/src/components/ColorSwatch.d.ts +0 -9
- package/dist/temp/docusaurus/src/components/ColorSwatch.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/ColorSwatch.js +0 -37
- package/dist/temp/docusaurus/src/components/DatePicker.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/DatePicker.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/DatePicker.js +0 -1
- package/dist/temp/docusaurus/src/components/Divider.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/Divider.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Divider.js +0 -2
- package/dist/temp/docusaurus/src/components/Dot.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/Dot.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Dot.js +0 -1
- package/dist/temp/docusaurus/src/components/Dropdown.d.ts +0 -4
- package/dist/temp/docusaurus/src/components/Dropdown.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Dropdown.js +0 -20
- package/dist/temp/docusaurus/src/components/EmptyState.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/EmptyState.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/EmptyState.js +0 -1
- package/dist/temp/docusaurus/src/components/ExampleCode/index.d.ts +0 -9
- package/dist/temp/docusaurus/src/components/ExampleCode/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/ExampleCode/index.js +0 -30
- package/dist/temp/docusaurus/src/components/ExampleContainer/index.d.ts +0 -8
- package/dist/temp/docusaurus/src/components/ExampleContainer/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/ExampleContainer/index.js +0 -30
- package/dist/temp/docusaurus/src/components/FeaturedIcon.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/FeaturedIcon.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/FeaturedIcon.js +0 -1
- package/dist/temp/docusaurus/src/components/HorizontalTab.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/HorizontalTab.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/HorizontalTab.js +0 -2
- package/dist/temp/docusaurus/src/components/IconList.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/IconList.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/IconList.js +0 -1588
- package/dist/temp/docusaurus/src/components/Input.d.ts +0 -4
- package/dist/temp/docusaurus/src/components/Input.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Input.js +0 -3
- package/dist/temp/docusaurus/src/components/InteractiveExample/index.d.ts +0 -19
- package/dist/temp/docusaurus/src/components/InteractiveExample/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/InteractiveExample/index.js +0 -174
- package/dist/temp/docusaurus/src/components/InteractiveIconWrapper.d.ts +0 -46
- package/dist/temp/docusaurus/src/components/InteractiveIconWrapper.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/InteractiveIconWrapper.js +0 -211
- package/dist/temp/docusaurus/src/components/Modal.d.ts +0 -8
- package/dist/temp/docusaurus/src/components/Modal.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Modal.js +0 -30
- package/dist/temp/docusaurus/src/components/Notification.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/Notification.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Notification.js +0 -1
- package/dist/temp/docusaurus/src/components/PaginationExample.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/PaginationExample.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/PaginationExample.js +0 -1
- package/dist/temp/docusaurus/src/components/ProgressBar.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/ProgressBar.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/ProgressBar.js +0 -2
- package/dist/temp/docusaurus/src/components/ProgressCircle.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/ProgressCircle.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/ProgressCircle.js +0 -2
- package/dist/temp/docusaurus/src/components/Radio.d.ts +0 -4
- package/dist/temp/docusaurus/src/components/Radio.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Radio.js +0 -20
- package/dist/temp/docusaurus/src/components/RangeDatePicker.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/RangeDatePicker.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/RangeDatePicker.js +0 -1
- package/dist/temp/docusaurus/src/components/RangeDatePickerWithButtons.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/RangeDatePickerWithButtons.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/RangeDatePickerWithButtons.js +0 -1
- package/dist/temp/docusaurus/src/components/Select.d.ts +0 -4
- package/dist/temp/docusaurus/src/components/Select.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Select.js +0 -17
- package/dist/temp/docusaurus/src/components/Slider.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/Slider.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Slider.js +0 -1
- package/dist/temp/docusaurus/src/components/Spinner.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/Spinner.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Spinner.js +0 -1
- package/dist/temp/docusaurus/src/components/Table.d.ts +0 -43
- package/dist/temp/docusaurus/src/components/Table.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Table.js +0 -56
- package/dist/temp/docusaurus/src/components/Tabs.d.ts +0 -27
- package/dist/temp/docusaurus/src/components/Tabs.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Tabs.js +0 -49
- package/dist/temp/docusaurus/src/components/Tag.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/Tag.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Tag.js +0 -16
- package/dist/temp/docusaurus/src/components/Toggle.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/Toggle.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/Toggle.js +0 -19
- package/dist/temp/docusaurus/src/components/TooltipExample.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/TooltipExample.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/TooltipExample.js +0 -1
- package/dist/temp/docusaurus/src/components/VerticalTab.d.ts +0 -3
- package/dist/temp/docusaurus/src/components/VerticalTab.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/VerticalTab.js +0 -2
- package/dist/temp/docusaurus/src/components/demos/BadgeGroupDemo.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/demos/BadgeGroupDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/BadgeGroupDemo.js +0 -46
- package/dist/temp/docusaurus/src/components/demos/DividerDemo.d.ts +0 -9
- package/dist/temp/docusaurus/src/components/demos/DividerDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/DividerDemo.js +0 -40
- package/dist/temp/docusaurus/src/components/demos/DotDemo.d.ts +0 -5
- package/dist/temp/docusaurus/src/components/demos/DotDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/DotDemo.js +0 -17
- package/dist/temp/docusaurus/src/components/demos/DropdownDemo.d.ts +0 -19
- package/dist/temp/docusaurus/src/components/demos/DropdownDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/DropdownDemo.js +0 -89
- package/dist/temp/docusaurus/src/components/demos/FeaturedIconDemo.d.ts +0 -9
- package/dist/temp/docusaurus/src/components/demos/FeaturedIconDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/FeaturedIconDemo.js +0 -6
- package/dist/temp/docusaurus/src/components/demos/ModalDemo.d.ts +0 -27
- package/dist/temp/docusaurus/src/components/demos/ModalDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/ModalDemo.js +0 -51
- package/dist/temp/docusaurus/src/components/demos/NotificationDemo.d.ts +0 -48
- package/dist/temp/docusaurus/src/components/demos/NotificationDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/NotificationDemo.js +0 -77
- package/dist/temp/docusaurus/src/components/demos/SliderDemo.d.ts +0 -18
- package/dist/temp/docusaurus/src/components/demos/SliderDemo.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/SliderDemo.js +0 -24
- package/dist/temp/docusaurus/src/components/demos/index.d.ts +0 -8
- package/dist/temp/docusaurus/src/components/demos/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/demos/index.js +0 -7
- package/dist/temp/docusaurus/src/components/index.d.ts +0 -2
- package/dist/temp/docusaurus/src/components/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/components/index.js +0 -2
- package/dist/temp/docusaurus/src/pages/index.d.ts +0 -4
- package/dist/temp/docusaurus/src/pages/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/pages/index.js +0 -10
- package/dist/temp/docusaurus/src/step-guide-example/BasicExample.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/BasicExample.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/BasicExample.js +0 -47
- package/dist/temp/docusaurus/src/step-guide-example/ClickableDim.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/ClickableDim.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/ClickableDim.js +0 -48
- package/dist/temp/docusaurus/src/step-guide-example/CustomStyle.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/CustomStyle.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/CustomStyle.js +0 -50
- package/dist/temp/docusaurus/src/step-guide-example/EndCallback.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/EndCallback.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/EndCallback.js +0 -62
- package/dist/temp/docusaurus/src/step-guide-example/GoToStep.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/GoToStep.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/GoToStep.js +0 -65
- package/dist/temp/docusaurus/src/step-guide-example/NoTargetElement.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/NoTargetElement.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/NoTargetElement.js +0 -63
- package/dist/temp/docusaurus/src/step-guide-example/NotUseAnimation.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/NotUseAnimation.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/NotUseAnimation.js +0 -48
- package/dist/temp/docusaurus/src/step-guide-example/PositionExample.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/PositionExample.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/PositionExample.js +0 -52
- package/dist/temp/docusaurus/src/step-guide-example/SetBtnLabel.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/SetBtnLabel.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/SetBtnLabel.js +0 -52
- package/dist/temp/docusaurus/src/step-guide-example/SkipBtn.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/SkipBtn.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/SkipBtn.js +0 -54
- package/dist/temp/docusaurus/src/step-guide-example/StepCount.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/StepCount.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/StepCount.js +0 -65
- package/dist/temp/docusaurus/src/step-guide-example/UseHtml.d.ts +0 -3
- package/dist/temp/docusaurus/src/step-guide-example/UseHtml.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/UseHtml.js +0 -46
- package/dist/temp/docusaurus/src/step-guide-example/component/ExampleContainer.d.ts +0 -7
- package/dist/temp/docusaurus/src/step-guide-example/component/ExampleContainer.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/component/ExampleContainer.js +0 -21
- package/dist/temp/docusaurus/src/step-guide-example/util/index.d.ts +0 -5
- package/dist/temp/docusaurus/src/step-guide-example/util/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/step-guide-example/util/index.js +0 -16
- package/dist/temp/docusaurus/src/theme/BlogArchivePage/index.d.ts +0 -6
- package/dist/temp/docusaurus/src/theme/BlogArchivePage/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/theme/BlogArchivePage/index.js +0 -46
- package/dist/temp/docusaurus/src/theme/BlogSidebar/index.d.ts +0 -6
- package/dist/temp/docusaurus/src/theme/BlogSidebar/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/theme/BlogSidebar/index.js +0 -30
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/Items/Home/index.d.ts +0 -3
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/Items/Home/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/Items/Home/index.js +0 -25
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/StructuredData/index.d.ts +0 -4
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/StructuredData/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/StructuredData/index.js +0 -20
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/index.d.ts +0 -3
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/index.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/theme/DocBreadcrumbs/index.js +0 -46
- package/dist/temp/docusaurus/src/utils/html.d.ts +0 -3
- package/dist/temp/docusaurus/src/utils/html.d.ts.map +0 -1
- package/dist/temp/docusaurus/src/utils/html.js +0 -100
- package/dist/temp/index.d.ts.map +0 -1
- package/dist/temp/src/components/badge/Badge.d.ts.map +0 -1
- package/dist/temp/src/components/badge/Badge.js +0 -22
- package/dist/temp/src/components/badge/BadgeGroup.d.ts.map +0 -1
- package/dist/temp/src/components/badge/BadgeGroup.js +0 -31
- package/dist/temp/src/components/badge/index.d.ts.map +0 -1
- package/dist/temp/src/components/badge/index.js +0 -2
- package/dist/temp/src/components/badge/utils.d.ts.map +0 -1
- package/dist/temp/src/components/badge/utils.js +0 -16
- package/dist/temp/src/components/breadcrumb/BreadCrumb.d.ts.map +0 -1
- package/dist/temp/src/components/breadcrumb/BreadCrumb.js +0 -30
- package/dist/temp/src/components/breadcrumb/index.d.ts.map +0 -1
- package/dist/temp/src/components/breadcrumb/index.js +0 -1
- package/dist/temp/src/components/button/Button.d.ts.map +0 -1
- package/dist/temp/src/components/button/Button.js +0 -89
- package/dist/temp/src/components/button/ButtonCloseX.d.ts.map +0 -1
- package/dist/temp/src/components/button/ButtonCloseX.js +0 -24
- package/dist/temp/src/components/button/ButtonGroup.d.ts.map +0 -1
- package/dist/temp/src/components/button/ButtonGroup.js +0 -71
- package/dist/temp/src/components/button/index.d.ts.map +0 -1
- package/dist/temp/src/components/button/index.js +0 -2
- package/dist/temp/src/components/carousel/CarouselArrow.d.ts.map +0 -1
- package/dist/temp/src/components/carousel/CarouselArrow.js +0 -23
- package/dist/temp/src/components/carousel/CarouselNumberGroup.d.ts.map +0 -1
- package/dist/temp/src/components/carousel/CarouselNumberGroup.js +0 -23
- package/dist/temp/src/components/carousel/index.d.ts.map +0 -1
- package/dist/temp/src/components/carousel/index.js +0 -2
- package/dist/temp/src/components/checkbox/Checkbox.d.ts.map +0 -1
- package/dist/temp/src/components/checkbox/Checkbox.js +0 -29
- package/dist/temp/src/components/checkbox/CheckboxInput.d.ts.map +0 -1
- package/dist/temp/src/components/checkbox/CheckboxInput.js +0 -37
- package/dist/temp/src/components/checkbox/index.d.ts.map +0 -1
- package/dist/temp/src/components/checkbox/index.js +0 -2
- package/dist/temp/src/components/date-picker/DatePicker.d.ts.map +0 -1
- package/dist/temp/src/components/date-picker/DatePicker.js +0 -39
- package/dist/temp/src/components/date-picker/RangeDatePicker.d.ts.map +0 -1
- package/dist/temp/src/components/date-picker/RangeDatePicker.js +0 -127
- package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.d.ts.map +0 -1
- package/dist/temp/src/components/date-picker/RangeDatePickerWithButtons.js +0 -46
- package/dist/temp/src/components/date-picker/index.d.ts.map +0 -1
- package/dist/temp/src/components/date-picker/utils.d.ts.map +0 -1
- package/dist/temp/src/components/date-picker/utils.js +0 -8
- package/dist/temp/src/components/divider/Divider.d.ts.map +0 -1
- package/dist/temp/src/components/divider/Divider.js +0 -24
- package/dist/temp/src/components/divider/index.d.ts.map +0 -1
- package/dist/temp/src/components/divider/index.js +0 -1
- package/dist/temp/src/components/dot/Dot.d.ts.map +0 -1
- package/dist/temp/src/components/dot/Dot.js +0 -30
- package/dist/temp/src/components/dot/index.d.ts.map +0 -1
- package/dist/temp/src/components/dot/index.js +0 -1
- package/dist/temp/src/components/dropdown/Dropdown.d.ts.map +0 -1
- package/dist/temp/src/components/dropdown/Dropdown.js +0 -82
- package/dist/temp/src/components/dropdown/index.d.ts.map +0 -1
- package/dist/temp/src/components/dropdown/index.js +0 -1
- package/dist/temp/src/components/empty-state/EmptyState.d.ts.map +0 -1
- package/dist/temp/src/components/empty-state/EmptyState.js +0 -32
- package/dist/temp/src/components/empty-state/index.d.ts.map +0 -1
- package/dist/temp/src/components/empty-state/index.js +0 -1
- package/dist/temp/src/components/featured-icon/FeaturedIcon.d.ts.map +0 -1
- package/dist/temp/src/components/featured-icon/FeaturedIcon.js +0 -36
- package/dist/temp/src/components/featured-icon/index.d.ts.map +0 -1
- package/dist/temp/src/components/featured-icon/index.js +0 -1
- package/dist/temp/src/components/index.d.ts.map +0 -1
- package/dist/temp/src/components/input/InputBase.d.ts.map +0 -1
- package/dist/temp/src/components/input/InputBase.js +0 -91
- package/dist/temp/src/components/input/PasswordInput.d.ts.map +0 -1
- package/dist/temp/src/components/input/PasswordInput.js +0 -75
- package/dist/temp/src/components/input/Textarea.d.ts.map +0 -1
- package/dist/temp/src/components/input/Textarea.js +0 -60
- package/dist/temp/src/components/input/index.d.ts.map +0 -1
- package/dist/temp/src/components/modal/Modal.d.ts.map +0 -1
- package/dist/temp/src/components/modal/Modal.js +0 -100
- package/dist/temp/src/components/modal/index.d.ts.map +0 -1
- package/dist/temp/src/components/modal/index.js +0 -1
- package/dist/temp/src/components/notification/FloatingNotification.d.ts.map +0 -1
- package/dist/temp/src/components/notification/FloatingNotification.js +0 -50
- package/dist/temp/src/components/notification/FullWidthNotification.d.ts.map +0 -1
- package/dist/temp/src/components/notification/FullWidthNotification.js +0 -47
- package/dist/temp/src/components/notification/Notification.d.ts.map +0 -1
- package/dist/temp/src/components/notification/Notification.js +0 -31
- package/dist/temp/src/components/notification/index.d.ts.map +0 -1
- package/dist/temp/src/components/pagination/NavButton.d.ts.map +0 -1
- package/dist/temp/src/components/pagination/NavButton.js +0 -66
- package/dist/temp/src/components/pagination/Pagination.d.ts.map +0 -1
- package/dist/temp/src/components/pagination/Pagination.js +0 -97
- package/dist/temp/src/components/pagination/index.d.ts.map +0 -1
- package/dist/temp/src/components/pagination/index.js +0 -2
- package/dist/temp/src/components/progress-bar/ProgressBar.d.ts.map +0 -1
- package/dist/temp/src/components/progress-bar/ProgressBar.js +0 -25
- package/dist/temp/src/components/progress-bar/index.d.ts.map +0 -1
- package/dist/temp/src/components/progress-bar/index.js +0 -1
- package/dist/temp/src/components/progress-circle/ProgressCircle.d.ts.map +0 -1
- package/dist/temp/src/components/progress-circle/ProgressCircle.js +0 -22
- package/dist/temp/src/components/progress-circle/index.d.ts.map +0 -1
- package/dist/temp/src/components/progress-circle/index.js +0 -1
- package/dist/temp/src/components/radio/Radio.d.ts.map +0 -1
- package/dist/temp/src/components/radio/Radio.js +0 -29
- package/dist/temp/src/components/radio/RadioInput.d.ts.map +0 -1
- package/dist/temp/src/components/radio/RadioInput.js +0 -29
- package/dist/temp/src/components/radio/index.d.ts.map +0 -1
- package/dist/temp/src/components/radio/index.js +0 -2
- package/dist/temp/src/components/select/Select.d.ts.map +0 -1
- package/dist/temp/src/components/select/Select.js +0 -38
- package/dist/temp/src/components/select/index.d.ts.map +0 -1
- package/dist/temp/src/components/select/index.js +0 -1
- package/dist/temp/src/components/shared/hintText/HintText.d.ts.map +0 -1
- package/dist/temp/src/components/shared/hintText/HintText.js +0 -28
- package/dist/temp/src/components/shared/hintText/index.d.ts.map +0 -1
- package/dist/temp/src/components/shared/hintText/index.js +0 -1
- package/dist/temp/src/components/shared/index.d.ts.map +0 -1
- package/dist/temp/src/components/shared/label/Label.d.ts.map +0 -1
- package/dist/temp/src/components/shared/label/Label.js +0 -28
- package/dist/temp/src/components/shared/label/index.d.ts.map +0 -1
- package/dist/temp/src/components/shared/label/index.js +0 -1
- package/dist/temp/src/components/slider/Slider.d.ts.map +0 -1
- package/dist/temp/src/components/slider/Slider.js +0 -44
- package/dist/temp/src/components/slider/index.d.ts.map +0 -1
- package/dist/temp/src/components/slider/index.js +0 -1
- package/dist/temp/src/components/spinner/Spinner.d.ts.map +0 -1
- package/dist/temp/src/components/spinner/Spinner.js +0 -21
- package/dist/temp/src/components/spinner/index.d.ts.map +0 -1
- package/dist/temp/src/components/tab/HorizontalTab.d.ts.map +0 -1
- package/dist/temp/src/components/tab/HorizontalTab.js +0 -44
- package/dist/temp/src/components/tab/TabButton.d.ts.map +0 -1
- package/dist/temp/src/components/tab/TabButton.js +0 -38
- package/dist/temp/src/components/tab/VerticalTab.d.ts.map +0 -1
- package/dist/temp/src/components/tab/VerticalTab.js +0 -39
- package/dist/temp/src/components/tab/index.d.ts.map +0 -1
- package/dist/temp/src/components/tag/Tag.d.ts.map +0 -1
- package/dist/temp/src/components/tag/Tag.js +0 -34
- package/dist/temp/src/components/tag/index.d.ts.map +0 -1
- package/dist/temp/src/components/tag/index.js +0 -1
- package/dist/temp/src/components/toggle/Toggle.d.ts.map +0 -1
- package/dist/temp/src/components/toggle/Toggle.js +0 -30
- package/dist/temp/src/components/toggle/index.d.ts.map +0 -1
- package/dist/temp/src/components/toggle/index.js +0 -1
- package/dist/temp/src/components/tooltip/Tooltip.d.ts.map +0 -1
- package/dist/temp/src/components/tooltip/Tooltip.js +0 -23
- package/dist/temp/src/components/tooltip/index.d.ts.map +0 -1
- package/dist/temp/src/components/tooltip/index.js +0 -1
- package/dist/temp/src/constant/breakpoint.d.ts.map +0 -1
- package/dist/temp/src/constant/breakpoint.js +0 -6
- package/dist/temp/src/constant/date-picker.d.ts.map +0 -1
- package/dist/temp/src/constant/date-picker.js +0 -53
- package/dist/temp/src/constant/index.d.ts.map +0 -1
- package/dist/temp/src/constant/index.js +0 -2
- package/dist/temp/src/constant/size.d.ts.map +0 -1
- package/dist/temp/src/constant/size.js +0 -1
- package/dist/temp/src/hooks/useMediaQuery.d.ts.map +0 -1
- package/dist/temp/src/hooks/useMediaQuery.js +0 -20
- package/dist/temp/src/utils/date-picker.d.ts.map +0 -1
- package/dist/temp/src/utils/date-picker.js +0 -12
- package/dist/temp/tsconfig.tsbuildinfo +0 -1
- /package/dist/{temp → types}/assets/scripts/datePicker.d.ts +0 -0
- /package/dist/{temp → types}/assets/scripts/index.d.ts +0 -0
- /package/dist/{temp → types}/assets/scripts/slider.d.ts +0 -0
- /package/dist/{temp → types}/assets/scripts/tab.d.ts +0 -0
- /package/dist/{temp → types}/constant/color.d.ts +0 -0
- /package/dist/{temp → types}/constant/size.d.ts +0 -0
- /package/dist/{temp → types}/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/badge/Badge.d.ts +0 -0
- /package/dist/{temp → types}/src/components/badge/BadgeGroup.d.ts +0 -0
- /package/dist/{temp → types}/src/components/badge/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/badge/utils.d.ts +0 -0
- /package/dist/{temp → types}/src/components/breadcrumb/BreadCrumb.d.ts +0 -0
- /package/dist/{temp → types}/src/components/breadcrumb/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/button/Button.d.ts +0 -0
- /package/dist/{temp → types}/src/components/button/ButtonCloseX.d.ts +0 -0
- /package/dist/{temp → types}/src/components/button/ButtonGroup.d.ts +0 -0
- /package/dist/{temp → types}/src/components/button/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/carousel/CarouselArrow.d.ts +0 -0
- /package/dist/{temp → types}/src/components/carousel/CarouselNumberGroup.d.ts +0 -0
- /package/dist/{temp → types}/src/components/carousel/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/checkbox/Checkbox.d.ts +0 -0
- /package/dist/{temp → types}/src/components/checkbox/CheckboxInput.d.ts +0 -0
- /package/dist/{temp → types}/src/components/checkbox/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/date-picker/RangeDatePickerWithButtons.d.ts +0 -0
- /package/dist/{temp → types}/src/components/date-picker/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/date-picker/utils.d.ts +0 -0
- /package/dist/{temp → types}/src/components/divider/Divider.d.ts +0 -0
- /package/dist/{temp → types}/src/components/divider/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/dot/Dot.d.ts +0 -0
- /package/dist/{temp → types}/src/components/dot/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/dropdown/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/empty-state/EmptyState.d.ts +0 -0
- /package/dist/{temp → types}/src/components/empty-state/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/featured-icon/FeaturedIcon.d.ts +0 -0
- /package/dist/{temp → types}/src/components/featured-icon/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/input/InputBase.d.ts +0 -0
- /package/dist/{temp → types}/src/components/input/Textarea.d.ts +0 -0
- /package/dist/{temp → types}/src/components/input/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/modal/Modal.d.ts +0 -0
- /package/dist/{temp → types}/src/components/modal/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/notification/FloatingNotification.d.ts +0 -0
- /package/dist/{temp → types}/src/components/notification/FullWidthNotification.d.ts +0 -0
- /package/dist/{temp → types}/src/components/notification/Notification.d.ts +0 -0
- /package/dist/{temp → types}/src/components/notification/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/pagination/NavButton.d.ts +0 -0
- /package/dist/{temp → types}/src/components/pagination/Pagination.d.ts +0 -0
- /package/dist/{temp → types}/src/components/pagination/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/progress-bar/ProgressBar.d.ts +0 -0
- /package/dist/{temp → types}/src/components/progress-bar/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/progress-circle/ProgressCircle.d.ts +0 -0
- /package/dist/{temp → types}/src/components/progress-circle/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/radio/Radio.d.ts +0 -0
- /package/dist/{temp → types}/src/components/radio/RadioInput.d.ts +0 -0
- /package/dist/{temp → types}/src/components/radio/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/select/Select.d.ts +0 -0
- /package/dist/{temp → types}/src/components/select/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/shared/hintText/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/shared/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/shared/label/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/slider/Slider.d.ts +0 -0
- /package/dist/{temp → types}/src/components/slider/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/spinner/Spinner.d.ts +0 -0
- /package/dist/{temp → types}/src/components/spinner/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tab/HorizontalTab.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tab/TabButton.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tab/VerticalTab.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tab/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tag/Tag.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tag/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/toggle/Toggle.d.ts +0 -0
- /package/dist/{temp → types}/src/components/toggle/index.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tooltip/Tooltip.d.ts +0 -0
- /package/dist/{temp → types}/src/components/tooltip/index.d.ts +0 -0
- /package/dist/{temp → types}/src/constant/breakpoint.d.ts +0 -0
- /package/dist/{temp → types}/src/constant/date-picker.d.ts +0 -0
- /package/dist/{temp → types}/src/constant/index.d.ts +0 -0
- /package/dist/{temp → types}/src/constant/size.d.ts +0 -0
- /package/dist/{temp → types}/src/hooks/useMediaQuery.d.ts +0 -0
- /package/dist/{temp → types}/src/utils/date-picker.d.ts +0 -0
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { IconName } from '@ncds/ui-admin-icon';
|
|
2
|
-
import { FeaturedIconColor, FeaturedIconTheme } from '../FeaturedIcon';
|
|
3
|
-
export interface ModalDemoProps {
|
|
4
|
-
title?: string;
|
|
5
|
-
subtitle?: string;
|
|
6
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
7
|
-
hideCloseButton?: boolean;
|
|
8
|
-
closeOnBackdropClick?: boolean;
|
|
9
|
-
closeOnEsc?: boolean;
|
|
10
|
-
hasContent?: boolean;
|
|
11
|
-
featuredIconName?: IconName;
|
|
12
|
-
featuredIconColor?: FeaturedIconColor;
|
|
13
|
-
featuredIconTheme?: FeaturedIconTheme;
|
|
14
|
-
cancelButtonText?: string;
|
|
15
|
-
confirmButtonText?: string;
|
|
16
|
-
showCancelButton?: boolean;
|
|
17
|
-
showConfirmButton?: boolean;
|
|
18
|
-
headerAlign?: 'left' | 'center' | 'horizontal';
|
|
19
|
-
actionsLayout?: 'vertical' | 'horizontal' | 'checkbox';
|
|
20
|
-
actionsAlign?: 'center' | 'right' | 'stretch';
|
|
21
|
-
showHeaderDivider?: boolean;
|
|
22
|
-
showActionsDivider?: boolean;
|
|
23
|
-
showCheckbox?: boolean;
|
|
24
|
-
checkboxLabel?: string;
|
|
25
|
-
}
|
|
26
|
-
export default function ModalDemo({ title, subtitle, hideCloseButton, featuredIconName, featuredIconColor, featuredIconTheme, size, closeOnBackdropClick, closeOnEsc, hasContent, cancelButtonText, confirmButtonText, showCancelButton, showConfirmButton, headerAlign, actionsLayout, actionsAlign, showActionsDivider, showCheckbox, checkboxLabel, showHeaderDivider, }: ModalDemoProps): import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
//# sourceMappingURL=ModalDemo.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ModalDemo.d.ts","sourceRoot":"","sources":["../../../../../../docusaurus/src/components/demos/ModalDemo.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAG/C,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAGvE,MAAM,WAAW,cAAc;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IACjC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB,CAAC,EAAE,QAAQ,CAAC;IAC5B,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,YAAY,CAAC;IAC/C,aAAa,CAAC,EAAE,UAAU,GAAG,YAAY,GAAG,UAAU,CAAC;IACvD,YAAY,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAC9C,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAChC,KAA2B,EAC3B,QAAQ,EACR,eAAuB,EACvB,gBAAgB,EAChB,iBAAiB,EACjB,iBAAiB,EACjB,IAAW,EACX,oBAA2B,EAC3B,UAAiB,EACjB,UAAiB,EACjB,gBAAuB,EACvB,iBAAwB,EACxB,gBAAuB,EACvB,iBAAwB,EACxB,WAAoB,EACpB,aAA0B,EAC1B,YAAwB,EACxB,kBAA0B,EAC1B,YAAoB,EACpB,aAA0B,EAC1B,iBAAyB,GAC1B,EAAE,cAAc,2CAiGhB"}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { useState, useEffect } from 'react';
|
|
14
|
-
import { Button } from '../Button';
|
|
15
|
-
import { Modal } from '../Modal';
|
|
16
|
-
import Checkbox from '../Checkbox';
|
|
17
|
-
export default function ModalDemo(_a) {
|
|
18
|
-
var _b = _a.title, title = _b === void 0 ? '제목은 한문장으로 입력해주세요.' : _b, subtitle = _a.subtitle, _c = _a.hideCloseButton, hideCloseButton = _c === void 0 ? false : _c, featuredIconName = _a.featuredIconName, featuredIconColor = _a.featuredIconColor, featuredIconTheme = _a.featuredIconTheme, _d = _a.size, size = _d === void 0 ? 'md' : _d, _e = _a.closeOnBackdropClick, closeOnBackdropClick = _e === void 0 ? true : _e, _f = _a.closeOnEsc, closeOnEsc = _f === void 0 ? true : _f, _g = _a.hasContent, hasContent = _g === void 0 ? true : _g, _h = _a.cancelButtonText, cancelButtonText = _h === void 0 ? '취소' : _h, _j = _a.confirmButtonText, confirmButtonText = _j === void 0 ? '확인' : _j, _k = _a.showCancelButton, showCancelButton = _k === void 0 ? true : _k, _l = _a.showConfirmButton, showConfirmButton = _l === void 0 ? true : _l, _m = _a.headerAlign, headerAlign = _m === void 0 ? 'left' : _m, _o = _a.actionsLayout, actionsLayout = _o === void 0 ? 'vertical' : _o, _p = _a.actionsAlign, actionsAlign = _p === void 0 ? 'stretch' : _p, _q = _a.showActionsDivider, showActionsDivider = _q === void 0 ? false : _q, _r = _a.showCheckbox, showCheckbox = _r === void 0 ? false : _r, _s = _a.checkboxLabel, checkboxLabel = _s === void 0 ? '다시 보지 않기' : _s, _t = _a.showHeaderDivider, showHeaderDivider = _t === void 0 ? false : _t;
|
|
19
|
-
var _u = useState(false), isOpen = _u[0], setIsOpen = _u[1];
|
|
20
|
-
var _v = useState(false), isChecked = _v[0], setIsChecked = _v[1];
|
|
21
|
-
var handleCancel = function () {
|
|
22
|
-
setIsOpen(false);
|
|
23
|
-
};
|
|
24
|
-
var handleConfirm = function () {
|
|
25
|
-
setIsOpen(false);
|
|
26
|
-
};
|
|
27
|
-
var handleCheckboxChange = function (e) {
|
|
28
|
-
setIsChecked(e.target.checked);
|
|
29
|
-
};
|
|
30
|
-
// Close modal when component unmounts
|
|
31
|
-
useEffect(function () {
|
|
32
|
-
return function () {
|
|
33
|
-
setIsOpen(false);
|
|
34
|
-
};
|
|
35
|
-
}, []);
|
|
36
|
-
var renderActions = function () {
|
|
37
|
-
if (showCheckbox && actionsLayout === 'checkbox') {
|
|
38
|
-
var checkboxContent = (_jsxs(_Fragment, { children: [_jsx(Checkbox, { text: checkboxLabel, checked: isChecked, onChange: handleCheckboxChange }), _jsx(Button, { size: "xs", label: "\uC124\uC815", onClick: function () { }, hierarchy: "link" })] }));
|
|
39
|
-
return (_jsxs(Modal.Actions, __assign({ layout: "checkbox", align: actionsAlign, showDivider: showActionsDivider, checkboxContent: checkboxContent }, { children: [showCancelButton && _jsx(Button, { label: cancelButtonText, onClick: handleCancel, hierarchy: "secondary-gray" }), showConfirmButton && _jsx(Button, { label: confirmButtonText, onClick: handleConfirm, hierarchy: "primary" })] })));
|
|
40
|
-
}
|
|
41
|
-
// Standard layout without checkbox
|
|
42
|
-
return (_jsxs(Modal.Actions, __assign({ layout: actionsLayout, align: actionsAlign, showDivider: showActionsDivider }, { children: [showCancelButton && (_jsx(Button, { size: "sm", label: cancelButtonText, onClick: handleCancel, hierarchy: "secondary-gray" })), showConfirmButton && (_jsx(Button, { size: "sm", label: confirmButtonText, onClick: handleConfirm, hierarchy: "primary" }))] })));
|
|
43
|
-
};
|
|
44
|
-
return (_jsxs("div", { children: [_jsx(Button, { label: "\uBAA8\uB2EC \uC5F4\uAE30", hierarchy: "primary", onClick: function () { return setIsOpen(true); } }), _jsxs(Modal, __assign({ isOpen: isOpen, onClose: function () { return setIsOpen(false); }, size: size, closeOnBackdropClick: closeOnBackdropClick, closeOnEsc: closeOnEsc }, { children: [_jsx(Modal.Header, { onClose: function () { return setIsOpen(false); }, hideCloseButton: hideCloseButton, title: title, subtitle: subtitle, align: headerAlign, showDivider: showHeaderDivider, featuredIcon: featuredIconName && featuredIconColor && featuredIconTheme
|
|
45
|
-
? {
|
|
46
|
-
name: featuredIconName,
|
|
47
|
-
color: featuredIconColor,
|
|
48
|
-
theme: featuredIconTheme,
|
|
49
|
-
}
|
|
50
|
-
: undefined }), hasContent && (_jsxs(Modal.Content, { children: [_jsx("p", { children: "\uBAA8\uB2EC \uB0B4\uC6A9\uC744 \uC774\uACF3\uC5D0 \uC791\uC131\uD569\uB2C8\uB2E4." }), _jsx("p", { children: "\uC704\uC758 \uCEE8\uD2B8\uB864\uC744 \uD1B5\uD574 \uB2E4\uC591\uD55C \uC124\uC815\uC744 \uBCC0\uACBD\uD574\uBCF4\uC138\uC694." })] })), renderActions()] }))] }));
|
|
51
|
-
}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { NotificationAction, NotificationColor } from '../Notification';
|
|
2
|
-
export interface NotificationDemoProps {
|
|
3
|
-
title: string;
|
|
4
|
-
supportingText?: string;
|
|
5
|
-
color?: NotificationColor;
|
|
6
|
-
type?: 'floating' | 'full-width';
|
|
7
|
-
onClose?: boolean;
|
|
8
|
-
className?: string;
|
|
9
|
-
actionCount?: number;
|
|
10
|
-
actions?: NotificationAction[];
|
|
11
|
-
}
|
|
12
|
-
declare const NotificationDemo: {
|
|
13
|
-
({ title, supportingText, color, type, onClose, className, actionCount, actions, }: NotificationDemoProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
controls: ({
|
|
15
|
-
name: string;
|
|
16
|
-
type: string;
|
|
17
|
-
description: string;
|
|
18
|
-
options?: undefined;
|
|
19
|
-
itemType?: undefined;
|
|
20
|
-
} | {
|
|
21
|
-
name: string;
|
|
22
|
-
type: string;
|
|
23
|
-
options: string[];
|
|
24
|
-
description: string;
|
|
25
|
-
itemType?: undefined;
|
|
26
|
-
} | {
|
|
27
|
-
name: string;
|
|
28
|
-
type: string;
|
|
29
|
-
description: string;
|
|
30
|
-
itemType: {
|
|
31
|
-
type: string;
|
|
32
|
-
fields: ({
|
|
33
|
-
name: string;
|
|
34
|
-
type: string;
|
|
35
|
-
description: string;
|
|
36
|
-
options?: undefined;
|
|
37
|
-
} | {
|
|
38
|
-
name: string;
|
|
39
|
-
type: string;
|
|
40
|
-
options: string[];
|
|
41
|
-
description: string;
|
|
42
|
-
})[];
|
|
43
|
-
};
|
|
44
|
-
options?: undefined;
|
|
45
|
-
})[];
|
|
46
|
-
};
|
|
47
|
-
export default NotificationDemo;
|
|
48
|
-
//# sourceMappingURL=NotificationDemo.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationDemo.d.ts","sourceRoot":"","sources":["../../../../../../docusaurus/src/components/demos/NotificationDemo.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgB,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEtF,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,IAAI,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IACjC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAChC;AAED,QAAA,MAAM,gBAAgB;wFASnB,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BvB,CAAC;AAqDF,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
-
import { Notification } from '../Notification';
|
|
14
|
-
var NotificationDemo = function (_a) {
|
|
15
|
-
var title = _a.title, supportingText = _a.supportingText, _b = _a.color, color = _b === void 0 ? 'neutral' : _b, _c = _a.type, type = _c === void 0 ? 'floating' : _c, _d = _a.onClose, onClose = _d === void 0 ? true : _d, className = _a.className, _e = _a.actionCount, actionCount = _e === void 0 ? 0 : _e, _f = _a.actions, actions = _f === void 0 ? [] : _f;
|
|
16
|
-
var handleClose = onClose ? function () { return console.log('Notification closed'); } : undefined;
|
|
17
|
-
// 액션 목록 생성
|
|
18
|
-
var actionsList = actions.length > 0
|
|
19
|
-
? actions
|
|
20
|
-
: Array.from({ length: actionCount }, function (_, index) { return ({
|
|
21
|
-
label: index === 0 ? '취소' : '확인',
|
|
22
|
-
onClick: function () { return console.log("".concat(index === 0 ? '취소' : '확인', " \uBC84\uD2BC \uD074\uB9AD")); },
|
|
23
|
-
hierarchy: 'link',
|
|
24
|
-
}); });
|
|
25
|
-
return (_jsx("div", __assign({ style: { width: '100%', maxWidth: type === 'floating' ? '398px' : '100%', margin: '0 auto' } }, { children: _jsx(Notification, { title: title, supportingText: supportingText, color: color, type: type, onClose: handleClose, className: className, actions: actionsList }) })));
|
|
26
|
-
};
|
|
27
|
-
NotificationDemo.controls = [
|
|
28
|
-
{
|
|
29
|
-
name: 'title',
|
|
30
|
-
type: 'string',
|
|
31
|
-
description: '알림 제목을 지정합니다.',
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
name: 'supportingText',
|
|
35
|
-
type: 'string',
|
|
36
|
-
description: '알림 설명을 제공합니다.',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
name: 'color',
|
|
40
|
-
type: 'select',
|
|
41
|
-
options: ['neutral', 'error', 'warning', 'success'],
|
|
42
|
-
description: '알림의 색상을 지정합니다.',
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
name: 'type',
|
|
46
|
-
type: 'select',
|
|
47
|
-
options: ['floating', 'full-width'],
|
|
48
|
-
description: '알림의 표시 방식을 지정합니다.',
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
name: 'onClose',
|
|
52
|
-
type: 'boolean',
|
|
53
|
-
description: '닫기 버튼 표시 여부를 지정합니다.',
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
name: 'actions',
|
|
57
|
-
type: 'array',
|
|
58
|
-
description: '버튼의 속성을 지정합니다.',
|
|
59
|
-
itemType: {
|
|
60
|
-
type: 'object',
|
|
61
|
-
fields: [
|
|
62
|
-
{
|
|
63
|
-
name: 'label',
|
|
64
|
-
type: 'string',
|
|
65
|
-
description: '버튼에 표시될 텍스트',
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
name: 'hierarchy',
|
|
69
|
-
type: 'select',
|
|
70
|
-
options: ['link-gray', 'link'],
|
|
71
|
-
description: '버튼의 스타일',
|
|
72
|
-
},
|
|
73
|
-
],
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
];
|
|
77
|
-
export default NotificationDemo;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { SliderLabelPosition } from '../Slider';
|
|
2
|
-
export type SliderDemoProps = {
|
|
3
|
-
min: number;
|
|
4
|
-
max: number;
|
|
5
|
-
step: number;
|
|
6
|
-
singleValue: number;
|
|
7
|
-
useRange: boolean;
|
|
8
|
-
rangeStart: number;
|
|
9
|
-
rangeEnd: number;
|
|
10
|
-
labelPosition: SliderLabelPosition;
|
|
11
|
-
disabled: boolean;
|
|
12
|
-
};
|
|
13
|
-
declare const SliderDemo: {
|
|
14
|
-
({ min, max, step, singleValue, useRange, rangeStart, rangeEnd, labelPosition, disabled, }: SliderDemoProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
displayName: string;
|
|
16
|
-
};
|
|
17
|
-
export default SliderDemo;
|
|
18
|
-
//# sourceMappingURL=SliderDemo.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SliderDemo.d.ts","sourceRoot":"","sources":["../../../../../../docusaurus/src/components/demos/SliderDemo.tsx"],"names":[],"mappings":"AACA,OAAO,EAAU,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAExD,MAAM,MAAM,eAAe,GAAG;IAC5B,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,mBAAmB,CAAC;IACnC,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,QAAA,MAAM,UAAU;gGAUb,eAAe;;CAuBjB,CAAC;AAIF,eAAe,UAAU,CAAC"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { useState, useEffect } from 'react';
|
|
14
|
-
import { Slider } from '../Slider';
|
|
15
|
-
var SliderDemo = function (_a) {
|
|
16
|
-
var min = _a.min, max = _a.max, step = _a.step, singleValue = _a.singleValue, useRange = _a.useRange, rangeStart = _a.rangeStart, rangeEnd = _a.rangeEnd, labelPosition = _a.labelPosition, disabled = _a.disabled;
|
|
17
|
-
var _b = useState(useRange ? [rangeStart, rangeEnd] : singleValue), value = _b[0], setValue = _b[1];
|
|
18
|
-
useEffect(function () {
|
|
19
|
-
setValue(useRange ? [rangeStart, rangeEnd] : singleValue);
|
|
20
|
-
}, [useRange, singleValue, rangeStart, rangeEnd]);
|
|
21
|
-
return (_jsxs("div", __assign({ style: { padding: '20px 0', width: '100%' } }, { children: [_jsx("div", __assign({ style: { marginBottom: '10px' } }, { children: useRange ? "\uD604\uC7AC \uAC12: ".concat(Array.isArray(value) ? "".concat(value[0], " - ").concat(value[1]) : value) : "\uD604\uC7AC \uAC12: ".concat(value) })), _jsx(Slider, { min: min, max: max, step: step, value: value, onChange: setValue, labelPosition: labelPosition, disabled: disabled })] })));
|
|
22
|
-
};
|
|
23
|
-
SliderDemo.displayName = 'SliderDemo';
|
|
24
|
-
export default SliderDemo;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export { default as SliderDemo } from './SliderDemo';
|
|
2
|
-
export { default as DropdownDemo } from './DropdownDemo';
|
|
3
|
-
export { default as ModalDemo } from './ModalDemo';
|
|
4
|
-
export { default as FeaturedIconDemo } from './FeaturedIconDemo';
|
|
5
|
-
export { default as NotificationDemo } from './NotificationDemo';
|
|
6
|
-
export { default as DividerDemo } from './DividerDemo';
|
|
7
|
-
export { default as DotDemo } from './DotDemo';
|
|
8
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../docusaurus/src/components/demos/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export { default as SliderDemo } from './SliderDemo';
|
|
2
|
-
export { default as DropdownDemo } from './DropdownDemo';
|
|
3
|
-
export { default as ModalDemo } from './ModalDemo';
|
|
4
|
-
export { default as FeaturedIconDemo } from './FeaturedIconDemo';
|
|
5
|
-
export { default as NotificationDemo } from './NotificationDemo';
|
|
6
|
-
export { default as DividerDemo } from './DividerDemo';
|
|
7
|
-
export { default as DotDemo } from './DotDemo';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/pages/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,oBAAoB,CAAC;AAE5B,MAAM,CAAC,OAAO,UAAU,IAAI,IAAI,SAAS,CAQxC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { useHistory } from '@docusaurus/router';
|
|
2
|
-
import { useEffect } from 'react';
|
|
3
|
-
import '../css/custom.scss';
|
|
4
|
-
export default function Home() {
|
|
5
|
-
var history = useHistory();
|
|
6
|
-
useEffect(function () {
|
|
7
|
-
history.push('/design-system/ncds-admin/docs/intro');
|
|
8
|
-
}, [history]);
|
|
9
|
-
return null;
|
|
10
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BasicExample.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/step-guide-example/BasicExample.tsx"],"names":[],"mappings":"AAIA,QAAA,MAAM,YAAY,+CAgDjB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { loadScript } from './util';
|
|
14
|
-
import { ExampleContainer } from './component/ExampleContainer';
|
|
15
|
-
import { useEffect } from 'react';
|
|
16
|
-
var BasicExample = function () {
|
|
17
|
-
useEffect(function () {
|
|
18
|
-
var _a = loadScript(), script = _a.script, link = _a.link;
|
|
19
|
-
return function () {
|
|
20
|
-
document.body.removeChild(script);
|
|
21
|
-
document.head.removeChild(link);
|
|
22
|
-
};
|
|
23
|
-
}, []);
|
|
24
|
-
var handleClickSample = function () {
|
|
25
|
-
window.stepGuide({
|
|
26
|
-
el: document.body,
|
|
27
|
-
options: {
|
|
28
|
-
steps: [
|
|
29
|
-
{
|
|
30
|
-
title: 'Step 1',
|
|
31
|
-
description: 'Step 1 description',
|
|
32
|
-
element: '#step1',
|
|
33
|
-
position: 'bottom',
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
title: 'Step 2',
|
|
37
|
-
description: 'Step 2 description',
|
|
38
|
-
element: '#step2',
|
|
39
|
-
position: 'bottom',
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
},
|
|
43
|
-
});
|
|
44
|
-
};
|
|
45
|
-
return (_jsx(ExampleContainer, __assign({ title: "\uAE30\uBCF8 \uC608\uC81C", description: "`options.steps` \uBC30\uC5F4\uC758 \uC694\uC18C\uC758 `title`, `description`, `element`, `position` \uC18D\uC131\uC744 \uCD94\uAC00\uD558\uC5EC \uD234\uD301\uC744 \uD45C\uC2DC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", handleClickSample: handleClickSample }, { children: _jsxs("div", __assign({ style: { display: 'flex', gap: '20px' } }, { children: [_jsx("div", __assign({ id: "step1", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uCCAB \uBC88\uC9F8 \uB2E8\uACC4" })), _jsx("div", __assign({ id: "step2", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uB450 \uBC88\uC9F8 \uB2E8\uACC4" }))] })) })));
|
|
46
|
-
};
|
|
47
|
-
export default BasicExample;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ClickableDim.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/step-guide-example/ClickableDim.tsx"],"names":[],"mappings":"AAIA,QAAA,MAAM,YAAY,+CAiDjB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { ExampleContainer } from './component/ExampleContainer';
|
|
14
|
-
import { loadScript } from './util';
|
|
15
|
-
import { useEffect } from 'react';
|
|
16
|
-
var ClickableDim = function () {
|
|
17
|
-
useEffect(function () {
|
|
18
|
-
var _a = loadScript(), script = _a.script, link = _a.link;
|
|
19
|
-
return function () {
|
|
20
|
-
document.body.removeChild(script);
|
|
21
|
-
document.head.removeChild(link);
|
|
22
|
-
};
|
|
23
|
-
}, []);
|
|
24
|
-
var handleClickSample = function () {
|
|
25
|
-
window.stepGuide({
|
|
26
|
-
el: document.body,
|
|
27
|
-
options: {
|
|
28
|
-
clickableDim: true,
|
|
29
|
-
steps: [
|
|
30
|
-
{
|
|
31
|
-
title: 'Step 1',
|
|
32
|
-
description: 'Step 1 description',
|
|
33
|
-
element: '#step1-click',
|
|
34
|
-
position: 'bottom',
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
title: 'Step 2',
|
|
38
|
-
description: 'Step 2 description',
|
|
39
|
-
element: '#step2-click',
|
|
40
|
-
position: 'bottom',
|
|
41
|
-
},
|
|
42
|
-
],
|
|
43
|
-
},
|
|
44
|
-
});
|
|
45
|
-
};
|
|
46
|
-
return (_jsx(ExampleContainer, __assign({ title: "\uD074\uB9AD \uAC00\uB2A5\uD55C Dim", description: "`options.clickableDim` \uC18D\uC131\uC744 `true`\uB85C \uC124\uC815\uD558\uBA74 Dim click\uC2DC \uB2E4\uC74C \uC2A4\uD15D\uC73C\uB85C \uC774\uB3D9\uD569\uB2C8\uB2E4.", handleClickSample: handleClickSample }, { children: _jsxs("div", __assign({ style: { display: 'flex', gap: '20px' } }, { children: [_jsx("div", __assign({ id: "step1-click", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uCCAB \uBC88\uC9F8 \uB2E8\uACC4" })), _jsx("div", __assign({ id: "step2-click", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uB450 \uBC88\uC9F8 \uB2E8\uACC4" }))] })) })));
|
|
47
|
-
};
|
|
48
|
-
export default ClickableDim;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomStyle.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/step-guide-example/CustomStyle.tsx"],"names":[],"mappings":"AAIA,QAAA,MAAM,WAAW,+CA6DhB,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { ExampleContainer } from './component/ExampleContainer';
|
|
14
|
-
import { loadScript } from './util';
|
|
15
|
-
import { useEffect } from 'react';
|
|
16
|
-
var CustomStyle = function () {
|
|
17
|
-
useEffect(function () {
|
|
18
|
-
var _a = loadScript(), script = _a.script, link = _a.link;
|
|
19
|
-
return function () {
|
|
20
|
-
document.body.removeChild(script);
|
|
21
|
-
document.head.removeChild(link);
|
|
22
|
-
};
|
|
23
|
-
}, []);
|
|
24
|
-
var handleClickSample = function () {
|
|
25
|
-
window.stepGuide({
|
|
26
|
-
el: document.body,
|
|
27
|
-
options: {
|
|
28
|
-
buttonLabel: {
|
|
29
|
-
prev: '이전',
|
|
30
|
-
next: '다음',
|
|
31
|
-
done: '종료',
|
|
32
|
-
},
|
|
33
|
-
steps: [
|
|
34
|
-
{
|
|
35
|
-
title: 'Step 1',
|
|
36
|
-
description: 'Step 1 description',
|
|
37
|
-
element: '#name',
|
|
38
|
-
position: 'bottom',
|
|
39
|
-
customStyle: {
|
|
40
|
-
height: '87px',
|
|
41
|
-
backgroundColor: 'rgba(255, 0, 0, 0.3)',
|
|
42
|
-
},
|
|
43
|
-
},
|
|
44
|
-
],
|
|
45
|
-
},
|
|
46
|
-
});
|
|
47
|
-
};
|
|
48
|
-
return (_jsx(ExampleContainer, __assign({ title: "\uCEE4\uC2A4\uD140 \uC2A4\uD0C0\uC77C", description: "`options.steps` \uBC30\uC5F4\uC758 \uC694\uC18C\uC758 `customStyle` \uC18D\uC131\uC744 \uCD94\uAC00\uD558\uC5EC \uD234\uD301\uC758 \uC2A4\uD0C0\uC77C\uC744 \uCEE4\uC2A4\uD140\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", handleClickSample: handleClickSample }, { children: _jsx("div", __assign({ style: { display: 'flex', gap: '20px', marginBlockStart: '20px' } }, { children: _jsxs("table", { children: [_jsx("thead", { children: _jsxs("tr", { children: [_jsx("th", __assign({ id: "name" }, { children: "\uC774\uB984" })), _jsx("th", { children: "\uB098\uC774" }), _jsx("th", { children: "\uC131\uBCC4" })] }) }), _jsx("tbody", { children: _jsxs("tr", { children: [_jsx("td", { children: "\uD64D\uAE38\uB3D9" }), _jsx("td", { children: "20" }), _jsx("td", { children: "\uB0A8\uC790" })] }) })] }) })) })));
|
|
49
|
-
};
|
|
50
|
-
export default CustomStyle;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EndCallback.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/step-guide-example/EndCallback.tsx"],"names":[],"mappings":"AAIA,QAAA,MAAM,WAAW,+CAkEhB,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { loadScript } from './util';
|
|
14
|
-
import { ExampleContainer } from './component/ExampleContainer';
|
|
15
|
-
import { useEffect } from 'react';
|
|
16
|
-
var EndCallback = function () {
|
|
17
|
-
useEffect(function () {
|
|
18
|
-
var _a = loadScript(), script = _a.script, link = _a.link;
|
|
19
|
-
return function () {
|
|
20
|
-
document.body.removeChild(script);
|
|
21
|
-
document.head.removeChild(link);
|
|
22
|
-
};
|
|
23
|
-
}, []);
|
|
24
|
-
var handleClickSample = function () {
|
|
25
|
-
window.stepGuide({
|
|
26
|
-
el: document.body,
|
|
27
|
-
options: {
|
|
28
|
-
isExitOnCompleteButtonClick: true,
|
|
29
|
-
onExit: function () {
|
|
30
|
-
alert('종료');
|
|
31
|
-
},
|
|
32
|
-
buttonLabel: {
|
|
33
|
-
prev: '이전',
|
|
34
|
-
next: '다음',
|
|
35
|
-
done: '종료',
|
|
36
|
-
},
|
|
37
|
-
steps: [
|
|
38
|
-
{
|
|
39
|
-
title: '첫 번째 단계',
|
|
40
|
-
description: '현재 1/3 단계입니다.',
|
|
41
|
-
element: '#step1-no-target',
|
|
42
|
-
position: 'bottom',
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
title: '두 번째 단계',
|
|
46
|
-
description: '현재 2/3 단계입니다.',
|
|
47
|
-
element: '#step2-no-target',
|
|
48
|
-
position: 'bottom',
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
title: '마지막 단계',
|
|
52
|
-
description: '현재 3/3 단계입니다.',
|
|
53
|
-
element: '#step3-no-target',
|
|
54
|
-
position: 'bottom',
|
|
55
|
-
},
|
|
56
|
-
],
|
|
57
|
-
},
|
|
58
|
-
});
|
|
59
|
-
};
|
|
60
|
-
return (_jsx(ExampleContainer, __assign({ title: "\uC885\uB8CC \uD6C4 \uCF5C\uBC31 \uD568\uC218 \uD638\uCD9C", description: "`options.onExit` \uC18D\uC131\uC744 \uC124\uC815\uD558\uBA74 \uC885\uB8CC \uD6C4 \uCF5C\uBC31 \uD568\uC218\uB97C \uD638\uCD9C\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", handleClickSample: handleClickSample }, { children: _jsxs("div", __assign({ style: { display: 'flex', gap: '20px', marginBlockStart: '20px' } }, { children: [_jsx("div", __assign({ id: "step1-no-target", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uCCAB \uBC88\uC9F8 \uB2E8\uACC4" })), _jsx("div", __assign({ id: "step2-no-target", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uB450 \uBC88\uC9F8 \uB2E8\uACC4" })), _jsx("div", __assign({ id: "step3-no-target", style: { background: '#fff', padding: '20px', border: '1px solid #ccc' } }, { children: "\uB9C8\uC9C0\uB9C9 \uB2E8\uACC4" }))] })) })));
|
|
61
|
-
};
|
|
62
|
-
export default EndCallback;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GoToStep.d.ts","sourceRoot":"","sources":["../../../../../docusaurus/src/step-guide-example/GoToStep.tsx"],"names":[],"mappings":"AAKA,QAAA,MAAM,QAAQ,+CAyEb,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|