@ncds/ui-admin 0.0.34 → 0.0.36
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 +136 -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 +129 -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,1588 +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 Icon from '@ncds/ui-admin-icon';
|
|
14
|
-
import { useState, useDeferredValue } from 'react';
|
|
15
|
-
var iconFiles = [
|
|
16
|
-
'activity-fill',
|
|
17
|
-
'activity-heart-fill',
|
|
18
|
-
'activity-heart',
|
|
19
|
-
'activity',
|
|
20
|
-
'airplay',
|
|
21
|
-
'airpods',
|
|
22
|
-
'alert-circle',
|
|
23
|
-
'alert-hexagon',
|
|
24
|
-
'alert-octagon',
|
|
25
|
-
'alert-square',
|
|
26
|
-
'alert-triangle',
|
|
27
|
-
'align-bottom-01',
|
|
28
|
-
'align-bottom-02',
|
|
29
|
-
'align-center',
|
|
30
|
-
'align-horizontal-centre-01',
|
|
31
|
-
'align-horizontal-centre-02',
|
|
32
|
-
'align-justify',
|
|
33
|
-
'align-left-01',
|
|
34
|
-
'align-left-02',
|
|
35
|
-
'align-left',
|
|
36
|
-
'align-right-01',
|
|
37
|
-
'align-right-02',
|
|
38
|
-
'align-right',
|
|
39
|
-
'align-top-01',
|
|
40
|
-
'align-top-02',
|
|
41
|
-
'align-vertical-center-01',
|
|
42
|
-
'align-vertical-center-02',
|
|
43
|
-
'anchor-fill',
|
|
44
|
-
'anchor',
|
|
45
|
-
'annotation-alert-fill',
|
|
46
|
-
'annotation-alert',
|
|
47
|
-
'annotation-check-fill',
|
|
48
|
-
'annotation-check',
|
|
49
|
-
'annotation-dots-fill',
|
|
50
|
-
'annotation-dots',
|
|
51
|
-
'annotation-fill',
|
|
52
|
-
'annotation-heart-fill',
|
|
53
|
-
'annotation-heart',
|
|
54
|
-
'annotation-info-fill',
|
|
55
|
-
'annotation-info',
|
|
56
|
-
'annotation-plus-fill',
|
|
57
|
-
'annotation-plus',
|
|
58
|
-
'annotation-question-fill',
|
|
59
|
-
'annotation-question',
|
|
60
|
-
'annotation-x-fill',
|
|
61
|
-
'annotation-x',
|
|
62
|
-
'annotation',
|
|
63
|
-
'announcement-01',
|
|
64
|
-
'announcement-02',
|
|
65
|
-
'announcement-03',
|
|
66
|
-
'archive-fill',
|
|
67
|
-
'archive',
|
|
68
|
-
'arrow-block-down',
|
|
69
|
-
'arrow-block-left',
|
|
70
|
-
'arrow-block-right',
|
|
71
|
-
'arrow-block-up',
|
|
72
|
-
'arrow-circle-broken-down-left',
|
|
73
|
-
'arrow-circle-broken-down-right',
|
|
74
|
-
'arrow-circle-broken-down',
|
|
75
|
-
'arrow-circle-broken-left',
|
|
76
|
-
'arrow-circle-broken-right',
|
|
77
|
-
'arrow-circle-broken-up-left',
|
|
78
|
-
'arrow-circle-broken-up-right',
|
|
79
|
-
'arrow-circle-broken-up',
|
|
80
|
-
'arrow-circle-down-left',
|
|
81
|
-
'arrow-circle-down-right',
|
|
82
|
-
'arrow-circle-down',
|
|
83
|
-
'arrow-circle-left',
|
|
84
|
-
'arrow-circle-right',
|
|
85
|
-
'arrow-circle-up-left',
|
|
86
|
-
'arrow-circle-up-right',
|
|
87
|
-
'arrow-circle-up',
|
|
88
|
-
'arrow-down-left',
|
|
89
|
-
'arrow-down-right',
|
|
90
|
-
'arrow-down',
|
|
91
|
-
'arrow-left',
|
|
92
|
-
'arrow-narrow-down-left',
|
|
93
|
-
'arrow-narrow-down-right',
|
|
94
|
-
'arrow-narrow-down',
|
|
95
|
-
'arrow-narrow-left',
|
|
96
|
-
'arrow-narrow-right',
|
|
97
|
-
'arrow-narrow-up-left',
|
|
98
|
-
'arrow-narrow-up-right',
|
|
99
|
-
'arrow-narrow-up',
|
|
100
|
-
'arrow-right',
|
|
101
|
-
'arrow-square-down-left',
|
|
102
|
-
'arrow-square-down-right',
|
|
103
|
-
'arrow-square-down',
|
|
104
|
-
'arrow-square-left',
|
|
105
|
-
'arrow-square-right',
|
|
106
|
-
'arrow-square-up-left',
|
|
107
|
-
'arrow-square-up-right',
|
|
108
|
-
'arrow-square-up',
|
|
109
|
-
'arrow-up-left',
|
|
110
|
-
'arrow-up-right',
|
|
111
|
-
'arrow-up',
|
|
112
|
-
'arrows-down',
|
|
113
|
-
'arrows-left',
|
|
114
|
-
'arrows-right',
|
|
115
|
-
'arrows-triangle',
|
|
116
|
-
'arrows-up',
|
|
117
|
-
'asterisk-01-fill',
|
|
118
|
-
'asterisk-01',
|
|
119
|
-
'asterisk-02-fill',
|
|
120
|
-
'asterisk-02',
|
|
121
|
-
'at-sign-fill',
|
|
122
|
-
'at-sign',
|
|
123
|
-
'atom-01',
|
|
124
|
-
'atom-02',
|
|
125
|
-
'attachment-01',
|
|
126
|
-
'attachment-02',
|
|
127
|
-
'award-01',
|
|
128
|
-
'award-02',
|
|
129
|
-
'award-03',
|
|
130
|
-
'award-04',
|
|
131
|
-
'award-05',
|
|
132
|
-
'backpack',
|
|
133
|
-
'bank-note-01',
|
|
134
|
-
'bank-note-02',
|
|
135
|
-
'bank-note-03',
|
|
136
|
-
'bank',
|
|
137
|
-
'bar-chart-01',
|
|
138
|
-
'bar-chart-02',
|
|
139
|
-
'bar-chart-03',
|
|
140
|
-
'bar-chart-04',
|
|
141
|
-
'bar-chart-05',
|
|
142
|
-
'bar-chart-06',
|
|
143
|
-
'bar-chart-07',
|
|
144
|
-
'bar-chart-08',
|
|
145
|
-
'bar-chart-09',
|
|
146
|
-
'bar-chart-10',
|
|
147
|
-
'bar-chart-11',
|
|
148
|
-
'bar-chart-12',
|
|
149
|
-
'bar-chart-circle-01',
|
|
150
|
-
'bar-chart-circle-02',
|
|
151
|
-
'bar-chart-circle-03',
|
|
152
|
-
'bar-chart-square-01',
|
|
153
|
-
'bar-chart-square-02',
|
|
154
|
-
'bar-chart-square-03',
|
|
155
|
-
'bar-chart-square-down',
|
|
156
|
-
'bar-chart-square-minus',
|
|
157
|
-
'bar-chart-square-plus',
|
|
158
|
-
'bar-chart-square-up',
|
|
159
|
-
'bar-line-chart',
|
|
160
|
-
'battery-charging-01',
|
|
161
|
-
'battery-charging-02',
|
|
162
|
-
'battery-empty',
|
|
163
|
-
'battery-full',
|
|
164
|
-
'battery-low',
|
|
165
|
-
'battery-mid',
|
|
166
|
-
'beaker-01',
|
|
167
|
-
'beaker-02',
|
|
168
|
-
'bell-01',
|
|
169
|
-
'bell-02',
|
|
170
|
-
'bell-03',
|
|
171
|
-
'bell-04',
|
|
172
|
-
'bell-minus',
|
|
173
|
-
'bell-off-01',
|
|
174
|
-
'bell-off-02',
|
|
175
|
-
'bell-off-03',
|
|
176
|
-
'bell-plus',
|
|
177
|
-
'bell-ringing-01',
|
|
178
|
-
'bell-ringing-02',
|
|
179
|
-
'bell-ringing-03',
|
|
180
|
-
'bell-ringing-04',
|
|
181
|
-
'bezier-curve-01',
|
|
182
|
-
'bezier-curve-02',
|
|
183
|
-
'bezier-curve-03',
|
|
184
|
-
'bluetooth-connect',
|
|
185
|
-
'bluetooth-off',
|
|
186
|
-
'bluetooth-on',
|
|
187
|
-
'bluetooth-signal',
|
|
188
|
-
'bold-01',
|
|
189
|
-
'bold-02',
|
|
190
|
-
'bold-square',
|
|
191
|
-
'book-closed',
|
|
192
|
-
'book-open-01',
|
|
193
|
-
'book-open-02',
|
|
194
|
-
'bookmark-add-fill',
|
|
195
|
-
'bookmark-add',
|
|
196
|
-
'bookmark-check-fill',
|
|
197
|
-
'bookmark-check',
|
|
198
|
-
'bookmark-fill',
|
|
199
|
-
'bookmark-minus-fill',
|
|
200
|
-
'bookmark-minus',
|
|
201
|
-
'bookmark-x-fill',
|
|
202
|
-
'bookmark-x',
|
|
203
|
-
'bookmark',
|
|
204
|
-
'box',
|
|
205
|
-
'brackets-check',
|
|
206
|
-
'brackets-ellipses',
|
|
207
|
-
'brackets-minus',
|
|
208
|
-
'brackets-plus',
|
|
209
|
-
'brackets-slash',
|
|
210
|
-
'brackets-x',
|
|
211
|
-
'brackets',
|
|
212
|
-
'briefcase-01',
|
|
213
|
-
'briefcase-02',
|
|
214
|
-
'browser',
|
|
215
|
-
'brush-01',
|
|
216
|
-
'brush-02',
|
|
217
|
-
'brush-03',
|
|
218
|
-
'building-01-fill',
|
|
219
|
-
'building-01',
|
|
220
|
-
'building-02-fill',
|
|
221
|
-
'building-02',
|
|
222
|
-
'building-03-fill',
|
|
223
|
-
'building-03',
|
|
224
|
-
'building-04-fill',
|
|
225
|
-
'building-04',
|
|
226
|
-
'building-05-fill',
|
|
227
|
-
'building-05',
|
|
228
|
-
'building-06-fill',
|
|
229
|
-
'building-06',
|
|
230
|
-
'building-07-fill',
|
|
231
|
-
'building-07',
|
|
232
|
-
'building-08-fill',
|
|
233
|
-
'building-08',
|
|
234
|
-
'bus',
|
|
235
|
-
'calculator',
|
|
236
|
-
'camera-01',
|
|
237
|
-
'camera-02',
|
|
238
|
-
'camera-03',
|
|
239
|
-
'camera-lens',
|
|
240
|
-
'camera-off',
|
|
241
|
-
'camera-plus',
|
|
242
|
-
'car-01',
|
|
243
|
-
'car-02',
|
|
244
|
-
'certificate-01',
|
|
245
|
-
'certificate-02',
|
|
246
|
-
'chart-breakout-circle',
|
|
247
|
-
'chart-breakout-square',
|
|
248
|
-
'check-circle-broken-fill',
|
|
249
|
-
'check-circle-broken',
|
|
250
|
-
'check-circle-fill',
|
|
251
|
-
'check-circle',
|
|
252
|
-
'check-done-01-fill',
|
|
253
|
-
'check-done-01',
|
|
254
|
-
'check-done-02-fill',
|
|
255
|
-
'check-done-02',
|
|
256
|
-
'check-fill',
|
|
257
|
-
'check-heart-fill',
|
|
258
|
-
'check-heart',
|
|
259
|
-
'check-square-broken-fill',
|
|
260
|
-
'check-square-broken',
|
|
261
|
-
'check-square-fill',
|
|
262
|
-
'check-square',
|
|
263
|
-
'check-verified-01-fill',
|
|
264
|
-
'check-verified-01',
|
|
265
|
-
'check-verified-02-fill',
|
|
266
|
-
'check-verified-02',
|
|
267
|
-
'check-verified-03-fill',
|
|
268
|
-
'check-verified-03',
|
|
269
|
-
'check',
|
|
270
|
-
'chevron-down-double',
|
|
271
|
-
'chevron-down',
|
|
272
|
-
'chevron-left-double',
|
|
273
|
-
'chevron-left',
|
|
274
|
-
'chevron-right-double',
|
|
275
|
-
'chevron-right',
|
|
276
|
-
'chevron-selector-horizontal',
|
|
277
|
-
'chevron-selector-vertical',
|
|
278
|
-
'chevron-up-double',
|
|
279
|
-
'chevron-up',
|
|
280
|
-
'chrome-cast',
|
|
281
|
-
'circle-cut',
|
|
282
|
-
'clapperboard',
|
|
283
|
-
'clipboard-attachment',
|
|
284
|
-
'clipboard-check',
|
|
285
|
-
'clipboard-download',
|
|
286
|
-
'clipboard-minus',
|
|
287
|
-
'clipboard-plus',
|
|
288
|
-
'clipboard-x',
|
|
289
|
-
'clipboard',
|
|
290
|
-
'cloud-01',
|
|
291
|
-
'cloud-02',
|
|
292
|
-
'cloud-03',
|
|
293
|
-
'cloud-blank-01-fill',
|
|
294
|
-
'cloud-blank-01',
|
|
295
|
-
'cloud-blank-02-fill',
|
|
296
|
-
'cloud-blank-02',
|
|
297
|
-
'cloud-lightning',
|
|
298
|
-
'cloud-moon',
|
|
299
|
-
'cloud-off',
|
|
300
|
-
'cloud-raining-01',
|
|
301
|
-
'cloud-raining-02',
|
|
302
|
-
'cloud-raining-03',
|
|
303
|
-
'cloud-raining-04',
|
|
304
|
-
'cloud-raining-05',
|
|
305
|
-
'cloud-raining-06',
|
|
306
|
-
'cloud-snowing-01',
|
|
307
|
-
'cloud-snowing-02',
|
|
308
|
-
'cloud-sun-01',
|
|
309
|
-
'cloud-sun-02',
|
|
310
|
-
'cloud-sun-03',
|
|
311
|
-
'code-01',
|
|
312
|
-
'code-02',
|
|
313
|
-
'code-browser',
|
|
314
|
-
'code-circle-01',
|
|
315
|
-
'code-circle-02',
|
|
316
|
-
'code-circle-03',
|
|
317
|
-
'code-snippet-01',
|
|
318
|
-
'code-snippet-02',
|
|
319
|
-
'code-square-01',
|
|
320
|
-
'code-square-02',
|
|
321
|
-
'codepen',
|
|
322
|
-
'coins-01',
|
|
323
|
-
'coins-02',
|
|
324
|
-
'coins-03',
|
|
325
|
-
'coins-04',
|
|
326
|
-
'coins-hand',
|
|
327
|
-
'coins-stacked-01',
|
|
328
|
-
'coins-stacked-02',
|
|
329
|
-
'coins-stacked-03',
|
|
330
|
-
'coins-stacked-04',
|
|
331
|
-
'coins-swap-01',
|
|
332
|
-
'coins-swap-02',
|
|
333
|
-
'color-file-aep-default',
|
|
334
|
-
'color-file-aep-gray',
|
|
335
|
-
'color-file-aep-solid',
|
|
336
|
-
'color-file-ai-default',
|
|
337
|
-
'color-file-ai-gray',
|
|
338
|
-
'color-file-ai-solid',
|
|
339
|
-
'color-file-alz-default',
|
|
340
|
-
'color-file-alz-gray',
|
|
341
|
-
'color-file-alz-solid',
|
|
342
|
-
'color-file-audio-default',
|
|
343
|
-
'color-file-audio-gray',
|
|
344
|
-
'color-file-audio-solid',
|
|
345
|
-
'color-file-avi-default',
|
|
346
|
-
'color-file-avi-gray',
|
|
347
|
-
'color-file-avi-solid',
|
|
348
|
-
'color-file-bmp-default',
|
|
349
|
-
'color-file-bmp-gray',
|
|
350
|
-
'color-file-bmp-solid',
|
|
351
|
-
'color-file-code-default',
|
|
352
|
-
'color-file-code-gray',
|
|
353
|
-
'color-file-code-solid',
|
|
354
|
-
'color-file-css-default',
|
|
355
|
-
'color-file-css-gray',
|
|
356
|
-
'color-file-css-solid',
|
|
357
|
-
'color-file-csv-default',
|
|
358
|
-
'color-file-csv-gray',
|
|
359
|
-
'color-file-csv-solid',
|
|
360
|
-
'color-file-dmg-default',
|
|
361
|
-
'color-file-dmg-gray',
|
|
362
|
-
'color-file-dmg-solid',
|
|
363
|
-
'color-file-doc-default',
|
|
364
|
-
'color-file-doc-gray',
|
|
365
|
-
'color-file-doc-solid',
|
|
366
|
-
'color-file-document-default',
|
|
367
|
-
'color-file-document-gray',
|
|
368
|
-
'color-file-document-solid',
|
|
369
|
-
'color-file-docx-default',
|
|
370
|
-
'color-file-docx-gray',
|
|
371
|
-
'color-file-docx-solid',
|
|
372
|
-
'color-file-empty-default',
|
|
373
|
-
'color-file-empty-gray',
|
|
374
|
-
'color-file-empty-solid',
|
|
375
|
-
'color-file-eps-default',
|
|
376
|
-
'color-file-eps-gray',
|
|
377
|
-
'color-file-eps-solid',
|
|
378
|
-
'color-file-exe-default',
|
|
379
|
-
'color-file-exe-gray',
|
|
380
|
-
'color-file-exe-solid',
|
|
381
|
-
'color-file-fig-default',
|
|
382
|
-
'color-file-fig-gray',
|
|
383
|
-
'color-file-fig-solid',
|
|
384
|
-
'color-file-folder-default',
|
|
385
|
-
'color-file-folder-gray',
|
|
386
|
-
'color-file-folder-solid',
|
|
387
|
-
'color-file-gif-default',
|
|
388
|
-
'color-file-gif-gray',
|
|
389
|
-
'color-file-gif-solid',
|
|
390
|
-
'color-file-html-default',
|
|
391
|
-
'color-file-html-gray',
|
|
392
|
-
'color-file-html-solid',
|
|
393
|
-
'color-file-image-default',
|
|
394
|
-
'color-file-image-gray',
|
|
395
|
-
'color-file-image-solid',
|
|
396
|
-
'color-file-img-default',
|
|
397
|
-
'color-file-img-gray',
|
|
398
|
-
'color-file-img-solid',
|
|
399
|
-
'color-file-indd-default',
|
|
400
|
-
'color-file-indd-gray',
|
|
401
|
-
'color-file-indd-solid',
|
|
402
|
-
'color-file-java-default',
|
|
403
|
-
'color-file-java-gray',
|
|
404
|
-
'color-file-java-solid',
|
|
405
|
-
'color-file-jpeg-default',
|
|
406
|
-
'color-file-jpeg-gray',
|
|
407
|
-
'color-file-jpeg-solid',
|
|
408
|
-
'color-file-jpg-default',
|
|
409
|
-
'color-file-jpg-gray',
|
|
410
|
-
'color-file-jpg-solid',
|
|
411
|
-
'color-file-js-default',
|
|
412
|
-
'color-file-js-gray',
|
|
413
|
-
'color-file-js-solid',
|
|
414
|
-
'color-file-json-default',
|
|
415
|
-
'color-file-json-gray',
|
|
416
|
-
'color-file-json-solid',
|
|
417
|
-
'color-file-mkv-default',
|
|
418
|
-
'color-file-mkv-gray',
|
|
419
|
-
'color-file-mkv-solid',
|
|
420
|
-
'color-file-mp3-default',
|
|
421
|
-
'color-file-mp3-gray',
|
|
422
|
-
'color-file-mp3-solid',
|
|
423
|
-
'color-file-mp4-default',
|
|
424
|
-
'color-file-mp4-gray',
|
|
425
|
-
'color-file-mp4-solid',
|
|
426
|
-
'color-file-mpeg-default',
|
|
427
|
-
'color-file-mpeg-gray',
|
|
428
|
-
'color-file-mpeg-solid',
|
|
429
|
-
'color-file-pdf-default',
|
|
430
|
-
'color-file-pdf-gray',
|
|
431
|
-
'color-file-pdf-logo-default',
|
|
432
|
-
'color-file-pdf-logo-gray',
|
|
433
|
-
'color-file-pdf-logo-solid',
|
|
434
|
-
'color-file-pdf-solid',
|
|
435
|
-
'color-file-png-default',
|
|
436
|
-
'color-file-png-gray',
|
|
437
|
-
'color-file-png-solid',
|
|
438
|
-
'color-file-ppt-default',
|
|
439
|
-
'color-file-ppt-gray',
|
|
440
|
-
'color-file-ppt-solid',
|
|
441
|
-
'color-file-pptx-default',
|
|
442
|
-
'color-file-pptx-gray',
|
|
443
|
-
'color-file-pptx-solid',
|
|
444
|
-
'color-file-psd-default',
|
|
445
|
-
'color-file-psd-gray',
|
|
446
|
-
'color-file-psd-solid',
|
|
447
|
-
'color-file-rar-default',
|
|
448
|
-
'color-file-rar-gray',
|
|
449
|
-
'color-file-rar-solid',
|
|
450
|
-
'color-file-rss-default',
|
|
451
|
-
'color-file-rss-gray',
|
|
452
|
-
'color-file-rss-solid',
|
|
453
|
-
'color-file-spreadsheet-default',
|
|
454
|
-
'color-file-spreadsheet-gray',
|
|
455
|
-
'color-file-spreadsheet-solid',
|
|
456
|
-
'color-file-sql-default',
|
|
457
|
-
'color-file-sql-gray',
|
|
458
|
-
'color-file-sql-solid',
|
|
459
|
-
'color-file-svg-default',
|
|
460
|
-
'color-file-svg-gray',
|
|
461
|
-
'color-file-svg-solid',
|
|
462
|
-
'color-file-tiff-default',
|
|
463
|
-
'color-file-tiff-gray',
|
|
464
|
-
'color-file-tiff-solid',
|
|
465
|
-
'color-file-txt-default',
|
|
466
|
-
'color-file-txt-gray',
|
|
467
|
-
'color-file-txt-solid',
|
|
468
|
-
'color-file-video-01-default',
|
|
469
|
-
'color-file-video-01-gray',
|
|
470
|
-
'color-file-video-01-solid',
|
|
471
|
-
'color-file-video-02-gray',
|
|
472
|
-
'color-file-video-02-solid',
|
|
473
|
-
'color-file-vidoe-02-default',
|
|
474
|
-
'color-file-wav-default',
|
|
475
|
-
'color-file-wav-gray',
|
|
476
|
-
'color-file-wav-solid',
|
|
477
|
-
'color-file-webp-default',
|
|
478
|
-
'color-file-webp-gray',
|
|
479
|
-
'color-file-webp-solid',
|
|
480
|
-
'color-file-xls-default',
|
|
481
|
-
'color-file-xls-gray',
|
|
482
|
-
'color-file-xls-solid',
|
|
483
|
-
'color-file-xlsx-default',
|
|
484
|
-
'color-file-xlsx-gray',
|
|
485
|
-
'color-file-xlsx-solid',
|
|
486
|
-
'color-file-xml-default',
|
|
487
|
-
'color-file-xml-gray',
|
|
488
|
-
'color-file-xml-solid',
|
|
489
|
-
'color-file-zip-default',
|
|
490
|
-
'color-file-zip-gray',
|
|
491
|
-
'color-file-zip-solid',
|
|
492
|
-
'colors-1',
|
|
493
|
-
'colors',
|
|
494
|
-
'columns-01',
|
|
495
|
-
'columns-02',
|
|
496
|
-
'columns-03',
|
|
497
|
-
'command',
|
|
498
|
-
'compass-01',
|
|
499
|
-
'compass-02',
|
|
500
|
-
'compass-03',
|
|
501
|
-
'compass',
|
|
502
|
-
'container',
|
|
503
|
-
'contrast-01',
|
|
504
|
-
'contrast-02',
|
|
505
|
-
'contrast-03',
|
|
506
|
-
'copy-01-fill',
|
|
507
|
-
'copy-01',
|
|
508
|
-
'copy-02-fill',
|
|
509
|
-
'copy-02',
|
|
510
|
-
'copy-03-fill',
|
|
511
|
-
'copy-03',
|
|
512
|
-
'copy-04-fill',
|
|
513
|
-
'copy-04',
|
|
514
|
-
'copy-05-fill',
|
|
515
|
-
'copy-05',
|
|
516
|
-
'copy-06-fill',
|
|
517
|
-
'copy-06',
|
|
518
|
-
'copy-07-fill',
|
|
519
|
-
'copy-07',
|
|
520
|
-
'corner-down-left',
|
|
521
|
-
'corner-down-right',
|
|
522
|
-
'corner-left-down',
|
|
523
|
-
'corner-left-up',
|
|
524
|
-
'corner-right-down',
|
|
525
|
-
'corner-right-up',
|
|
526
|
-
'corner-up-left',
|
|
527
|
-
'corner-up-right',
|
|
528
|
-
'cpu-chip-01',
|
|
529
|
-
'cpu-chip-02',
|
|
530
|
-
'credit-card-01',
|
|
531
|
-
'credit-card-02',
|
|
532
|
-
'credit-card-check',
|
|
533
|
-
'credit-card-down',
|
|
534
|
-
'credit-card-download',
|
|
535
|
-
'credit-card-edit',
|
|
536
|
-
'credit-card-lock',
|
|
537
|
-
'credit-card-minus',
|
|
538
|
-
'credit-card-plus',
|
|
539
|
-
'credit-card-refresh',
|
|
540
|
-
'credit-card-search',
|
|
541
|
-
'credit-card-shield',
|
|
542
|
-
'credit-card-up',
|
|
543
|
-
'credit-card-upload',
|
|
544
|
-
'credit-card-x',
|
|
545
|
-
'crop-01',
|
|
546
|
-
'crop-02',
|
|
547
|
-
'cryptocurrency-01',
|
|
548
|
-
'cryptocurrency-02',
|
|
549
|
-
'cryptocurrency-03',
|
|
550
|
-
'cryptocurrency-04',
|
|
551
|
-
'currency-bitcoin-circle',
|
|
552
|
-
'currency-bitcoin',
|
|
553
|
-
'currency-dollar-circle',
|
|
554
|
-
'currency-dollar',
|
|
555
|
-
'currency-ethereum-circle',
|
|
556
|
-
'currency-ethereum',
|
|
557
|
-
'currency-euro-circle',
|
|
558
|
-
'currency-euro',
|
|
559
|
-
'currency-pound-circle',
|
|
560
|
-
'currency-pound',
|
|
561
|
-
'currency-ruble-circle',
|
|
562
|
-
'currency-ruble',
|
|
563
|
-
'currency-rupee-circle',
|
|
564
|
-
'currency-rupee',
|
|
565
|
-
'currency-yen-circle',
|
|
566
|
-
'currency-yen',
|
|
567
|
-
'cursor-01',
|
|
568
|
-
'cursor-02',
|
|
569
|
-
'cursor-03',
|
|
570
|
-
'cursor-04',
|
|
571
|
-
'cursor-box',
|
|
572
|
-
'cursor-click-01',
|
|
573
|
-
'cursor-click-02',
|
|
574
|
-
'data',
|
|
575
|
-
'database-01',
|
|
576
|
-
'database-02',
|
|
577
|
-
'database-03',
|
|
578
|
-
'dataflow-01',
|
|
579
|
-
'dataflow-02',
|
|
580
|
-
'dataflow-03',
|
|
581
|
-
'dataflow-04',
|
|
582
|
-
'delete',
|
|
583
|
-
'diamond-01',
|
|
584
|
-
'diamond-02',
|
|
585
|
-
'disc-01',
|
|
586
|
-
'disc-02',
|
|
587
|
-
'distribute-spacing-horizontal',
|
|
588
|
-
'distribute-spacing-vertical',
|
|
589
|
-
'divide-01-fill',
|
|
590
|
-
'divide-01',
|
|
591
|
-
'divide-02-fill',
|
|
592
|
-
'divide-02',
|
|
593
|
-
'divide-03-fill',
|
|
594
|
-
'divide-03',
|
|
595
|
-
'divider',
|
|
596
|
-
'dotpoints-01',
|
|
597
|
-
'dotpoints-02',
|
|
598
|
-
'dots-grid-fill',
|
|
599
|
-
'dots-grid',
|
|
600
|
-
'dots-horizontal-fill',
|
|
601
|
-
'dots-horizontal',
|
|
602
|
-
'dots-vertical-fill',
|
|
603
|
-
'dots-vertical',
|
|
604
|
-
'download-01-alt-fill',
|
|
605
|
-
'download-01-fill',
|
|
606
|
-
'download-01',
|
|
607
|
-
'download-02-fill',
|
|
608
|
-
'download-02',
|
|
609
|
-
'download-03-fill',
|
|
610
|
-
'download-03',
|
|
611
|
-
'download-04-fill',
|
|
612
|
-
'download-04',
|
|
613
|
-
'download-cloud-01-fill',
|
|
614
|
-
'download-cloud-01',
|
|
615
|
-
'download-cloud-02-fill',
|
|
616
|
-
'download-cloud-02',
|
|
617
|
-
'drop',
|
|
618
|
-
'droplets-01',
|
|
619
|
-
'droplets-02',
|
|
620
|
-
'droplets-03',
|
|
621
|
-
'dropper',
|
|
622
|
-
'edit-01-fill',
|
|
623
|
-
'edit-01',
|
|
624
|
-
'edit-02-fill',
|
|
625
|
-
'edit-02',
|
|
626
|
-
'edit-03-fill',
|
|
627
|
-
'edit-03',
|
|
628
|
-
'edit-04-fill',
|
|
629
|
-
'edit-04',
|
|
630
|
-
'edit-05-fill',
|
|
631
|
-
'edit-05',
|
|
632
|
-
'equal-fill',
|
|
633
|
-
'equal-not-fill',
|
|
634
|
-
'equal-not',
|
|
635
|
-
'equal',
|
|
636
|
-
'eraser',
|
|
637
|
-
'expand-01',
|
|
638
|
-
'expand-02',
|
|
639
|
-
'expand-03',
|
|
640
|
-
'expand-04',
|
|
641
|
-
'expand-05',
|
|
642
|
-
'expand-06',
|
|
643
|
-
'eye-fill',
|
|
644
|
-
'eye-off-fill',
|
|
645
|
-
'eye-off',
|
|
646
|
-
'eye',
|
|
647
|
-
'face-content',
|
|
648
|
-
'face-frown',
|
|
649
|
-
'face-happy',
|
|
650
|
-
'face-id-square',
|
|
651
|
-
'face-id',
|
|
652
|
-
'face-neutral',
|
|
653
|
-
'face-sad',
|
|
654
|
-
'face-smile',
|
|
655
|
-
'face-wink',
|
|
656
|
-
'fast-backward',
|
|
657
|
-
'fast-forward',
|
|
658
|
-
'feather',
|
|
659
|
-
'figma',
|
|
660
|
-
'file-01',
|
|
661
|
-
'file-02',
|
|
662
|
-
'file-03',
|
|
663
|
-
'file-04',
|
|
664
|
-
'file-05',
|
|
665
|
-
'file-06',
|
|
666
|
-
'file-07',
|
|
667
|
-
'file-attachment-01',
|
|
668
|
-
'file-attachment-02',
|
|
669
|
-
'file-attachment-03',
|
|
670
|
-
'file-attachment-04',
|
|
671
|
-
'file-attachment-05',
|
|
672
|
-
'file-check-01',
|
|
673
|
-
'file-check-02',
|
|
674
|
-
'file-check-03',
|
|
675
|
-
'file-code-01',
|
|
676
|
-
'file-code-02',
|
|
677
|
-
'file-download-01',
|
|
678
|
-
'file-download-02',
|
|
679
|
-
'file-download-03',
|
|
680
|
-
'file-heart-01',
|
|
681
|
-
'file-heart-02',
|
|
682
|
-
'file-heart-03',
|
|
683
|
-
'file-lock-01',
|
|
684
|
-
'file-lock-02',
|
|
685
|
-
'file-lock-03',
|
|
686
|
-
'file-minus-01',
|
|
687
|
-
'file-minus-02',
|
|
688
|
-
'file-minus-03',
|
|
689
|
-
'file-plus-01',
|
|
690
|
-
'file-plus-02',
|
|
691
|
-
'file-plus-03',
|
|
692
|
-
'file-question-01',
|
|
693
|
-
'file-question-02',
|
|
694
|
-
'file-question-03',
|
|
695
|
-
'file-search-01',
|
|
696
|
-
'file-search-02',
|
|
697
|
-
'file-search-03',
|
|
698
|
-
'file-shield-01',
|
|
699
|
-
'file-shield-02',
|
|
700
|
-
'file-shield-03',
|
|
701
|
-
'file-x-01',
|
|
702
|
-
'file-x-02',
|
|
703
|
-
'file-x-03',
|
|
704
|
-
'film-01',
|
|
705
|
-
'film-02',
|
|
706
|
-
'film-03',
|
|
707
|
-
'filter-funnel-01-fill',
|
|
708
|
-
'filter-funnel-01',
|
|
709
|
-
'filter-funnel-02-fill',
|
|
710
|
-
'filter-funnel-02',
|
|
711
|
-
'filter-lines-fill',
|
|
712
|
-
'filter-lines',
|
|
713
|
-
'fingerprint-01',
|
|
714
|
-
'fingerprint-02',
|
|
715
|
-
'fingerprint-03',
|
|
716
|
-
'fingerprint-04',
|
|
717
|
-
'flag-01',
|
|
718
|
-
'flag-02',
|
|
719
|
-
'flag-03',
|
|
720
|
-
'flag-04',
|
|
721
|
-
'flag-05',
|
|
722
|
-
'flag-06',
|
|
723
|
-
'flash-off',
|
|
724
|
-
'flash',
|
|
725
|
-
'flex-align-bottom',
|
|
726
|
-
'flex-align-left',
|
|
727
|
-
'flex-align-right',
|
|
728
|
-
'flex-align-top',
|
|
729
|
-
'flip-backward',
|
|
730
|
-
'flip-forward',
|
|
731
|
-
'folder-check',
|
|
732
|
-
'folder-closed',
|
|
733
|
-
'folder-code',
|
|
734
|
-
'folder-download',
|
|
735
|
-
'folder-lock',
|
|
736
|
-
'folder-minus',
|
|
737
|
-
'folder-plus',
|
|
738
|
-
'folder-question',
|
|
739
|
-
'folder-search',
|
|
740
|
-
'folder-shield',
|
|
741
|
-
'folder-x',
|
|
742
|
-
'folder',
|
|
743
|
-
'framer',
|
|
744
|
-
'gaming-pad-01',
|
|
745
|
-
'gaming-pad-02',
|
|
746
|
-
'gift-01',
|
|
747
|
-
'gift-02',
|
|
748
|
-
'git-branch-01',
|
|
749
|
-
'git-branch-02',
|
|
750
|
-
'git-commit',
|
|
751
|
-
'git-merge',
|
|
752
|
-
'git-pull-request',
|
|
753
|
-
'glasses-01',
|
|
754
|
-
'glasses-02',
|
|
755
|
-
'globe-01',
|
|
756
|
-
'globe-02',
|
|
757
|
-
'globe-03',
|
|
758
|
-
'globe-04',
|
|
759
|
-
'globe-05',
|
|
760
|
-
'globe-06',
|
|
761
|
-
'globe-slated-01',
|
|
762
|
-
'globe-slated-02',
|
|
763
|
-
'google-chrome-fill',
|
|
764
|
-
'google-chrome',
|
|
765
|
-
'graduation-hat-01',
|
|
766
|
-
'graduation-hat-02',
|
|
767
|
-
'grid-01',
|
|
768
|
-
'grid-02',
|
|
769
|
-
'grid-03',
|
|
770
|
-
'grid-dots-blank',
|
|
771
|
-
'grid-dots-bottom',
|
|
772
|
-
'grid-dots-horizontal-center',
|
|
773
|
-
'grid-dots-left',
|
|
774
|
-
'grid-dots-outer',
|
|
775
|
-
'grid-dots-right',
|
|
776
|
-
'grid-dots-top',
|
|
777
|
-
'grid-dots-vertical-center',
|
|
778
|
-
'hand',
|
|
779
|
-
'hard-drive',
|
|
780
|
-
'hash-01-fill',
|
|
781
|
-
'hash-01',
|
|
782
|
-
'hash-02-fill',
|
|
783
|
-
'hash-02',
|
|
784
|
-
'heading-01',
|
|
785
|
-
'heading-02',
|
|
786
|
-
'heading-square',
|
|
787
|
-
'headphones-01',
|
|
788
|
-
'headphones-02',
|
|
789
|
-
'heart-1',
|
|
790
|
-
'heart-circle-fill',
|
|
791
|
-
'heart-circle',
|
|
792
|
-
'heart-fill',
|
|
793
|
-
'heart-hand-fill',
|
|
794
|
-
'heart-hand',
|
|
795
|
-
'heart-hexagon-fill',
|
|
796
|
-
'heart-hexagon',
|
|
797
|
-
'heart-octagon-fill',
|
|
798
|
-
'heart-octagon',
|
|
799
|
-
'heart-rounded-fill',
|
|
800
|
-
'heart-rounded',
|
|
801
|
-
'heart-square-fill',
|
|
802
|
-
'heart-square',
|
|
803
|
-
'heart',
|
|
804
|
-
'hearts-fill',
|
|
805
|
-
'hearts',
|
|
806
|
-
'help-circle-fill',
|
|
807
|
-
'help-circle',
|
|
808
|
-
'help-hexagon-fill',
|
|
809
|
-
'help-hexagon',
|
|
810
|
-
'help-octagon-fill',
|
|
811
|
-
'help-octagon',
|
|
812
|
-
'help-square-fill',
|
|
813
|
-
'help-square',
|
|
814
|
-
'home-01-fill',
|
|
815
|
-
'home-01',
|
|
816
|
-
'home-02-fill',
|
|
817
|
-
'home-02',
|
|
818
|
-
'home-03-fill',
|
|
819
|
-
'home-03',
|
|
820
|
-
'home-04-fill',
|
|
821
|
-
'home-04',
|
|
822
|
-
'home-05-fill',
|
|
823
|
-
'home-05',
|
|
824
|
-
'home-line-fill',
|
|
825
|
-
'home-line',
|
|
826
|
-
'home-smile-fill',
|
|
827
|
-
'home-smile',
|
|
828
|
-
'horizontal-bar-chart-01',
|
|
829
|
-
'horizontal-bar-chart-02',
|
|
830
|
-
'horizontal-bar-chart-03',
|
|
831
|
-
'hurricane-01',
|
|
832
|
-
'hurricane-02',
|
|
833
|
-
'hurricane-03',
|
|
834
|
-
'image-01',
|
|
835
|
-
'image-02',
|
|
836
|
-
'image-03',
|
|
837
|
-
'image-04',
|
|
838
|
-
'image-05',
|
|
839
|
-
'image-check',
|
|
840
|
-
'image-down',
|
|
841
|
-
'image-indent-left',
|
|
842
|
-
'image-indent-right',
|
|
843
|
-
'image-left',
|
|
844
|
-
'image-plus',
|
|
845
|
-
'image-right',
|
|
846
|
-
'image-up',
|
|
847
|
-
'image-user-check',
|
|
848
|
-
'image-user-down',
|
|
849
|
-
'image-user-left',
|
|
850
|
-
'image-user-plus',
|
|
851
|
-
'image-user-right',
|
|
852
|
-
'image-user-up',
|
|
853
|
-
'image-user-x',
|
|
854
|
-
'image-user',
|
|
855
|
-
'image-x',
|
|
856
|
-
'inbox-01-fill',
|
|
857
|
-
'inbox-01',
|
|
858
|
-
'inbox-02-fill',
|
|
859
|
-
'inbox-02',
|
|
860
|
-
'infinity',
|
|
861
|
-
'info-circle-fill',
|
|
862
|
-
'info-circle',
|
|
863
|
-
'info-hexagon-fill',
|
|
864
|
-
'info-hexagon',
|
|
865
|
-
'info-octagon-fill',
|
|
866
|
-
'info-octagon',
|
|
867
|
-
'info-square-fill',
|
|
868
|
-
'info-square',
|
|
869
|
-
'intersect-circle',
|
|
870
|
-
'intersect-square',
|
|
871
|
-
'italic-01',
|
|
872
|
-
'italic-02',
|
|
873
|
-
'italic-square',
|
|
874
|
-
'key-01',
|
|
875
|
-
'key-02',
|
|
876
|
-
'keyboard-01',
|
|
877
|
-
'keyboard-02',
|
|
878
|
-
'laptop-01',
|
|
879
|
-
'laptop-02',
|
|
880
|
-
'layer-single',
|
|
881
|
-
'layers-three-01',
|
|
882
|
-
'layers-three-02',
|
|
883
|
-
'layers-two-01',
|
|
884
|
-
'layers-two-02',
|
|
885
|
-
'layout-alt-01',
|
|
886
|
-
'layout-alt-02',
|
|
887
|
-
'layout-alt-03',
|
|
888
|
-
'layout-alt-04',
|
|
889
|
-
'layout-bottom',
|
|
890
|
-
'layout-grid-01',
|
|
891
|
-
'layout-grid-02',
|
|
892
|
-
'layout-left',
|
|
893
|
-
'layout-right',
|
|
894
|
-
'layout-top',
|
|
895
|
-
'left-indent-01',
|
|
896
|
-
'left-indent-02',
|
|
897
|
-
'letter-spacing-01',
|
|
898
|
-
'letter-spacing-02',
|
|
899
|
-
'life-buoy-01-fill',
|
|
900
|
-
'life-buoy-01',
|
|
901
|
-
'life-buoy-02-fill',
|
|
902
|
-
'life-buoy-02',
|
|
903
|
-
'lightbulb-01',
|
|
904
|
-
'lightbulb-02',
|
|
905
|
-
'lightbulb-03',
|
|
906
|
-
'lightbulb-04',
|
|
907
|
-
'lightbulb-05',
|
|
908
|
-
'lightning-01',
|
|
909
|
-
'lightning-02',
|
|
910
|
-
'line-chart-down-01',
|
|
911
|
-
'line-chart-down-02',
|
|
912
|
-
'line-chart-down-03',
|
|
913
|
-
'line-chart-down-04',
|
|
914
|
-
'line-chart-down-05',
|
|
915
|
-
'line-chart-up-01',
|
|
916
|
-
'line-chart-up-02',
|
|
917
|
-
'line-chart-up-03',
|
|
918
|
-
'line-chart-up-04',
|
|
919
|
-
'line-chart-up-05',
|
|
920
|
-
'line-height',
|
|
921
|
-
'link-01-fill',
|
|
922
|
-
'link-01',
|
|
923
|
-
'link-02-fill',
|
|
924
|
-
'link-02',
|
|
925
|
-
'link-03-fill',
|
|
926
|
-
'link-03',
|
|
927
|
-
'link-04-fill',
|
|
928
|
-
'link-04',
|
|
929
|
-
'link-05-fill',
|
|
930
|
-
'link-05',
|
|
931
|
-
'link-broken-01-fill',
|
|
932
|
-
'link-broken-01',
|
|
933
|
-
'link-broken-02-fill',
|
|
934
|
-
'link-broken-02',
|
|
935
|
-
'link-external-01-alt-fill',
|
|
936
|
-
'link-external-01-fill',
|
|
937
|
-
'link-external-01',
|
|
938
|
-
'link-external-02-fill',
|
|
939
|
-
'link-external-02',
|
|
940
|
-
'list',
|
|
941
|
-
'loading-01-fill',
|
|
942
|
-
'loading-01',
|
|
943
|
-
'loading-02-fill',
|
|
944
|
-
'loading-02',
|
|
945
|
-
'loading-03-fill',
|
|
946
|
-
'loading-03',
|
|
947
|
-
'lock-01',
|
|
948
|
-
'lock-02',
|
|
949
|
-
'lock-03',
|
|
950
|
-
'lock-04',
|
|
951
|
-
'lock-keyhole-circle',
|
|
952
|
-
'lock-keyhole-square',
|
|
953
|
-
'lock-unlocked-01',
|
|
954
|
-
'lock-unlocked-02',
|
|
955
|
-
'lock-unlocked-03',
|
|
956
|
-
'lock-unlocked-04',
|
|
957
|
-
'log-in-01-alt-fill',
|
|
958
|
-
'log-in-01-fill',
|
|
959
|
-
'log-in-01',
|
|
960
|
-
'log-in-02-alt-fill',
|
|
961
|
-
'log-in-02-fill',
|
|
962
|
-
'log-in-02',
|
|
963
|
-
'log-in-03-alt-fill',
|
|
964
|
-
'log-in-03-fill',
|
|
965
|
-
'log-in-03',
|
|
966
|
-
'log-in-04-alt-fill',
|
|
967
|
-
'log-in-04-fill',
|
|
968
|
-
'log-in-04',
|
|
969
|
-
'log-out-01-alt-fill',
|
|
970
|
-
'log-out-01-fill',
|
|
971
|
-
'log-out-01',
|
|
972
|
-
'log-out-02-alt-fill',
|
|
973
|
-
'log-out-02-fill',
|
|
974
|
-
'log-out-02',
|
|
975
|
-
'log-out-03-alt-fill',
|
|
976
|
-
'log-out-03-fill',
|
|
977
|
-
'log-out-03',
|
|
978
|
-
'log-out-04-alt-fill',
|
|
979
|
-
'log-out-04-fill',
|
|
980
|
-
'log-out-04',
|
|
981
|
-
'luggage-01',
|
|
982
|
-
'luggage-02',
|
|
983
|
-
'luggage-03',
|
|
984
|
-
'magic-wand-01',
|
|
985
|
-
'magic-wand-02',
|
|
986
|
-
'mail-01-fill',
|
|
987
|
-
'mail-01',
|
|
988
|
-
'mail-02-fill',
|
|
989
|
-
'mail-02',
|
|
990
|
-
'mail-03-fill',
|
|
991
|
-
'mail-03',
|
|
992
|
-
'mail-04-fill',
|
|
993
|
-
'mail-04',
|
|
994
|
-
'mail-05-fill',
|
|
995
|
-
'mail-05',
|
|
996
|
-
'map-01',
|
|
997
|
-
'map-02',
|
|
998
|
-
'mark',
|
|
999
|
-
'marker-pin-01',
|
|
1000
|
-
'marker-pin-02',
|
|
1001
|
-
'marker-pin-03',
|
|
1002
|
-
'marker-pin-04',
|
|
1003
|
-
'marker-pin-05',
|
|
1004
|
-
'marker-pin-06',
|
|
1005
|
-
'maximize-01',
|
|
1006
|
-
'maximize-02',
|
|
1007
|
-
'medical-circle-fill',
|
|
1008
|
-
'medical-circle',
|
|
1009
|
-
'medical-cross-fill',
|
|
1010
|
-
'medical-cross',
|
|
1011
|
-
'medical-square-fill',
|
|
1012
|
-
'medical-square',
|
|
1013
|
-
'menu-01-fill',
|
|
1014
|
-
'menu-01',
|
|
1015
|
-
'menu-02-fill',
|
|
1016
|
-
'menu-02',
|
|
1017
|
-
'menu-03-fill',
|
|
1018
|
-
'menu-03',
|
|
1019
|
-
'menu-04-fill',
|
|
1020
|
-
'menu-04',
|
|
1021
|
-
'menu-05-fill',
|
|
1022
|
-
'menu-05',
|
|
1023
|
-
'message-alert-circle-fill',
|
|
1024
|
-
'message-alert-circle',
|
|
1025
|
-
'message-alert-square-fill',
|
|
1026
|
-
'message-alert-square',
|
|
1027
|
-
'message-chat-circle-fill',
|
|
1028
|
-
'message-chat-circle',
|
|
1029
|
-
'message-chat-square-fill',
|
|
1030
|
-
'message-chat-square',
|
|
1031
|
-
'message-check-circle-fill',
|
|
1032
|
-
'message-check-circle',
|
|
1033
|
-
'message-check-square-fill',
|
|
1034
|
-
'message-check-square',
|
|
1035
|
-
'message-circle-01-fill',
|
|
1036
|
-
'message-circle-01',
|
|
1037
|
-
'message-circle-02-fill',
|
|
1038
|
-
'message-circle-02',
|
|
1039
|
-
'message-dots-circle-fill',
|
|
1040
|
-
'message-dots-circle',
|
|
1041
|
-
'message-dots-square-fill',
|
|
1042
|
-
'message-dots-square',
|
|
1043
|
-
'message-heart-circle-fill',
|
|
1044
|
-
'message-heart-circle',
|
|
1045
|
-
'message-heart-square-fill',
|
|
1046
|
-
'message-heart-square',
|
|
1047
|
-
'message-notification-circle-fill',
|
|
1048
|
-
'message-notification-circle',
|
|
1049
|
-
'message-notification-square-fill',
|
|
1050
|
-
'message-notification-square',
|
|
1051
|
-
'message-plus-circle-fill',
|
|
1052
|
-
'message-plus-circle',
|
|
1053
|
-
'message-plus-square-fill',
|
|
1054
|
-
'message-plus-square',
|
|
1055
|
-
'message-question-circle-fill',
|
|
1056
|
-
'message-question-circle',
|
|
1057
|
-
'message-question-square-fill',
|
|
1058
|
-
'message-question-square',
|
|
1059
|
-
'message-smile-circle-fill',
|
|
1060
|
-
'message-smile-circle',
|
|
1061
|
-
'message-smile-square-fill',
|
|
1062
|
-
'message-smile-square',
|
|
1063
|
-
'message-square-01-fill',
|
|
1064
|
-
'message-square-01',
|
|
1065
|
-
'message-square-02-fill',
|
|
1066
|
-
'message-square-02',
|
|
1067
|
-
'message-text-circle-01-fill',
|
|
1068
|
-
'message-text-circle-01',
|
|
1069
|
-
'message-text-circle-02-fill',
|
|
1070
|
-
'message-text-circle-02',
|
|
1071
|
-
'message-text-square-01-fill',
|
|
1072
|
-
'message-text-square-01',
|
|
1073
|
-
'message-text-square-02-fill',
|
|
1074
|
-
'message-text-square-02',
|
|
1075
|
-
'message-x-circle-fill',
|
|
1076
|
-
'message-x-circle',
|
|
1077
|
-
'message-x-square-fill',
|
|
1078
|
-
'message-x-square',
|
|
1079
|
-
'microphone-01',
|
|
1080
|
-
'microphone-02',
|
|
1081
|
-
'microphone-off-01',
|
|
1082
|
-
'microphone-off-02',
|
|
1083
|
-
'microscope',
|
|
1084
|
-
'minimize-01',
|
|
1085
|
-
'minimize-02',
|
|
1086
|
-
'minus-circle-fill',
|
|
1087
|
-
'minus-circle',
|
|
1088
|
-
'minus-fill',
|
|
1089
|
-
'minus-square-fill',
|
|
1090
|
-
'minus-square',
|
|
1091
|
-
'minus',
|
|
1092
|
-
'modem-01',
|
|
1093
|
-
'modem-02',
|
|
1094
|
-
'monitor-01',
|
|
1095
|
-
'monitor-02',
|
|
1096
|
-
'monitor-03',
|
|
1097
|
-
'monitor-04',
|
|
1098
|
-
'monitor-05',
|
|
1099
|
-
'moon-01',
|
|
1100
|
-
'moon-02',
|
|
1101
|
-
'moon-eclipse',
|
|
1102
|
-
'moon-star',
|
|
1103
|
-
'mouse',
|
|
1104
|
-
'move',
|
|
1105
|
-
'music-note-01',
|
|
1106
|
-
'music-note-02',
|
|
1107
|
-
'music-note-plus',
|
|
1108
|
-
'navigation-pointer-01',
|
|
1109
|
-
'navigation-pointer-02',
|
|
1110
|
-
'navigation-pointer-off-01',
|
|
1111
|
-
'navigation-pointer-off-02',
|
|
1112
|
-
'notification-box',
|
|
1113
|
-
'notification-message',
|
|
1114
|
-
'notification-text',
|
|
1115
|
-
'package-check',
|
|
1116
|
-
'package-minus',
|
|
1117
|
-
'package-plus',
|
|
1118
|
-
'package-search',
|
|
1119
|
-
'package-x',
|
|
1120
|
-
'package',
|
|
1121
|
-
'paint-pour',
|
|
1122
|
-
'paint',
|
|
1123
|
-
'palette',
|
|
1124
|
-
'paperclip',
|
|
1125
|
-
'paragraph-spacing',
|
|
1126
|
-
'paragraph-wrap',
|
|
1127
|
-
'passcode-lock',
|
|
1128
|
-
'passcode',
|
|
1129
|
-
'passport',
|
|
1130
|
-
'pause-circle',
|
|
1131
|
-
'pause-square',
|
|
1132
|
-
'pen-tool-01',
|
|
1133
|
-
'pen-tool-02',
|
|
1134
|
-
'pen-tool-minus',
|
|
1135
|
-
'pen-tool-plus',
|
|
1136
|
-
'pencil-01',
|
|
1137
|
-
'pencil-02',
|
|
1138
|
-
'pencil-line',
|
|
1139
|
-
'percent-01-fill',
|
|
1140
|
-
'percent-01',
|
|
1141
|
-
'percent-02-fill',
|
|
1142
|
-
'percent-02',
|
|
1143
|
-
'percent-03-fill',
|
|
1144
|
-
'percent-03',
|
|
1145
|
-
'perspective-01',
|
|
1146
|
-
'perspective-02',
|
|
1147
|
-
'phone-01',
|
|
1148
|
-
'phone-02',
|
|
1149
|
-
'phone-call-01-fill',
|
|
1150
|
-
'phone-call-01',
|
|
1151
|
-
'phone-call-02-fill',
|
|
1152
|
-
'phone-call-02',
|
|
1153
|
-
'phone-fill',
|
|
1154
|
-
'phone-hang-up-fill',
|
|
1155
|
-
'phone-hang-up',
|
|
1156
|
-
'phone-incoming-01-fill',
|
|
1157
|
-
'phone-incoming-01',
|
|
1158
|
-
'phone-incoming-02-fill',
|
|
1159
|
-
'phone-incoming-02',
|
|
1160
|
-
'phone-outgoing-01-fill',
|
|
1161
|
-
'phone-outgoing-01',
|
|
1162
|
-
'phone-outgoing-02-fill',
|
|
1163
|
-
'phone-outgoing-02',
|
|
1164
|
-
'phone-pause-fill',
|
|
1165
|
-
'phone-pause',
|
|
1166
|
-
'phone-plus-fill',
|
|
1167
|
-
'phone-plus',
|
|
1168
|
-
'phone-x-fill',
|
|
1169
|
-
'phone-x',
|
|
1170
|
-
'phone',
|
|
1171
|
-
'pie-chart-01',
|
|
1172
|
-
'pie-chart-02',
|
|
1173
|
-
'pie-chart-03',
|
|
1174
|
-
'pie-chart-04',
|
|
1175
|
-
'piggy-bank-01',
|
|
1176
|
-
'piggy-bank-02',
|
|
1177
|
-
'pilcrow-01',
|
|
1178
|
-
'pilcrow-02',
|
|
1179
|
-
'pilcrow-square',
|
|
1180
|
-
'pin-01-fill',
|
|
1181
|
-
'pin-01',
|
|
1182
|
-
'pin-02-fill',
|
|
1183
|
-
'pin-02',
|
|
1184
|
-
'placeholder-fill',
|
|
1185
|
-
'placeholder',
|
|
1186
|
-
'plane',
|
|
1187
|
-
'play-circle',
|
|
1188
|
-
'play-square',
|
|
1189
|
-
'play',
|
|
1190
|
-
'plus-circle-fill',
|
|
1191
|
-
'plus-circle',
|
|
1192
|
-
'plus-fill',
|
|
1193
|
-
'plus-square-fill',
|
|
1194
|
-
'plus-square',
|
|
1195
|
-
'plus',
|
|
1196
|
-
'podcast',
|
|
1197
|
-
'power-01',
|
|
1198
|
-
'power-02',
|
|
1199
|
-
'power-03',
|
|
1200
|
-
'presentation-chart-01',
|
|
1201
|
-
'presentation-chart-02',
|
|
1202
|
-
'presentation-chart-03',
|
|
1203
|
-
'printer',
|
|
1204
|
-
'puzzle-piece-01',
|
|
1205
|
-
'puzzle-piece-02',
|
|
1206
|
-
'qr-code-01',
|
|
1207
|
-
'qr-code-02',
|
|
1208
|
-
'receipt-check',
|
|
1209
|
-
'receipt',
|
|
1210
|
-
'recording-01',
|
|
1211
|
-
'recording-02',
|
|
1212
|
-
'recording-03',
|
|
1213
|
-
'reflect-01',
|
|
1214
|
-
'reflect-02',
|
|
1215
|
-
'refresh-ccw-01',
|
|
1216
|
-
'refresh-ccw-02',
|
|
1217
|
-
'refresh-ccw-03',
|
|
1218
|
-
'refresh-ccw-04',
|
|
1219
|
-
'refresh-ccw-05',
|
|
1220
|
-
'refresh-cw-01',
|
|
1221
|
-
'refresh-cw-02',
|
|
1222
|
-
'refresh-cw-03',
|
|
1223
|
-
'refresh-cw-04',
|
|
1224
|
-
'refresh-cw-05',
|
|
1225
|
-
'repeat-01',
|
|
1226
|
-
'repeat-02',
|
|
1227
|
-
'repeat-03',
|
|
1228
|
-
'repeat-04',
|
|
1229
|
-
'reverse-left',
|
|
1230
|
-
'reverse-right',
|
|
1231
|
-
'right-indent-01',
|
|
1232
|
-
'right-indent-02',
|
|
1233
|
-
'rocket-01',
|
|
1234
|
-
'rocket-02',
|
|
1235
|
-
'roller-brush',
|
|
1236
|
-
'route',
|
|
1237
|
-
'rows-01',
|
|
1238
|
-
'rows-02',
|
|
1239
|
-
'rows-03',
|
|
1240
|
-
'rss-01',
|
|
1241
|
-
'rss-02',
|
|
1242
|
-
'ruler',
|
|
1243
|
-
'safe',
|
|
1244
|
-
'sale-01',
|
|
1245
|
-
'sale-02',
|
|
1246
|
-
'sale-03',
|
|
1247
|
-
'sale-04',
|
|
1248
|
-
'save-01-fill',
|
|
1249
|
-
'save-01',
|
|
1250
|
-
'save-02-fill',
|
|
1251
|
-
'save-02',
|
|
1252
|
-
'save-03-fill',
|
|
1253
|
-
'save-03',
|
|
1254
|
-
'scale-01',
|
|
1255
|
-
'scale-02',
|
|
1256
|
-
'scale-03',
|
|
1257
|
-
'scales-01',
|
|
1258
|
-
'scales-02',
|
|
1259
|
-
'scan',
|
|
1260
|
-
'scissors-01',
|
|
1261
|
-
'scissors-02',
|
|
1262
|
-
'scissors-cut-01',
|
|
1263
|
-
'scissors-cut-02',
|
|
1264
|
-
'search-lg-fill',
|
|
1265
|
-
'search-lg',
|
|
1266
|
-
'search-md-fill',
|
|
1267
|
-
'search-md',
|
|
1268
|
-
'search-refraction-fill',
|
|
1269
|
-
'search-refraction',
|
|
1270
|
-
'search-sm-fill',
|
|
1271
|
-
'search-sm',
|
|
1272
|
-
'send-01-fill',
|
|
1273
|
-
'send-01',
|
|
1274
|
-
'send-02-fill',
|
|
1275
|
-
'send-02',
|
|
1276
|
-
'send-03-fill',
|
|
1277
|
-
'send-03',
|
|
1278
|
-
'server-01',
|
|
1279
|
-
'server-02',
|
|
1280
|
-
'server-03',
|
|
1281
|
-
'server-04',
|
|
1282
|
-
'server-05',
|
|
1283
|
-
'server-06',
|
|
1284
|
-
'settings-01-fill',
|
|
1285
|
-
'settings-01',
|
|
1286
|
-
'settings-02-fill',
|
|
1287
|
-
'settings-02',
|
|
1288
|
-
'settings-03-fill',
|
|
1289
|
-
'settings-03',
|
|
1290
|
-
'settings-04-fill',
|
|
1291
|
-
'settings-04',
|
|
1292
|
-
'share-01-alt-fill',
|
|
1293
|
-
'share-01-fill',
|
|
1294
|
-
'share-01',
|
|
1295
|
-
'share-02-alt-fill',
|
|
1296
|
-
'share-02-fill',
|
|
1297
|
-
'share-02',
|
|
1298
|
-
'share-03-fill',
|
|
1299
|
-
'share-03',
|
|
1300
|
-
'share-04-alt-fill',
|
|
1301
|
-
'share-04-fill',
|
|
1302
|
-
'share-04',
|
|
1303
|
-
'share-05-fill',
|
|
1304
|
-
'share-05',
|
|
1305
|
-
'share-06-fill',
|
|
1306
|
-
'share-06',
|
|
1307
|
-
'share-07-fill',
|
|
1308
|
-
'share-07',
|
|
1309
|
-
'shield-01',
|
|
1310
|
-
'shield-02',
|
|
1311
|
-
'shield-03',
|
|
1312
|
-
'shield-dollar',
|
|
1313
|
-
'shield-off',
|
|
1314
|
-
'shield-plus',
|
|
1315
|
-
'shield-tick',
|
|
1316
|
-
'shield-zap',
|
|
1317
|
-
'shopping-bag-01',
|
|
1318
|
-
'shopping-bag-02',
|
|
1319
|
-
'shopping-bag-03',
|
|
1320
|
-
'shopping-cart-01',
|
|
1321
|
-
'shopping-cart-02',
|
|
1322
|
-
'shopping-cart-03',
|
|
1323
|
-
'shuffle-01',
|
|
1324
|
-
'shuffle-02',
|
|
1325
|
-
'signal-01',
|
|
1326
|
-
'signal-02',
|
|
1327
|
-
'signal-03',
|
|
1328
|
-
'simcard',
|
|
1329
|
-
'skew',
|
|
1330
|
-
'skip-back',
|
|
1331
|
-
'skip-forward',
|
|
1332
|
-
'slash-circle-01-fill',
|
|
1333
|
-
'slash-circle-01',
|
|
1334
|
-
'slash-circle-02-fill',
|
|
1335
|
-
'slash-circle-02',
|
|
1336
|
-
'slash-divider-fill',
|
|
1337
|
-
'slash-divider',
|
|
1338
|
-
'slash-octagon-fill',
|
|
1339
|
-
'slash-octagon',
|
|
1340
|
-
'sliders-01',
|
|
1341
|
-
'sliders-02',
|
|
1342
|
-
'sliders-03',
|
|
1343
|
-
'sliders-04',
|
|
1344
|
-
'snowflake-01',
|
|
1345
|
-
'snowflake-02',
|
|
1346
|
-
'spacing-height-01',
|
|
1347
|
-
'spacing-height-02',
|
|
1348
|
-
'spacing-width-01',
|
|
1349
|
-
'spacing-width-02',
|
|
1350
|
-
'speaker-01',
|
|
1351
|
-
'speaker-02',
|
|
1352
|
-
'speaker-03',
|
|
1353
|
-
'speedometer-01-fill',
|
|
1354
|
-
'speedometer-01',
|
|
1355
|
-
'speedometer-02-fill',
|
|
1356
|
-
'speedometer-02',
|
|
1357
|
-
'speedometer-03-fill',
|
|
1358
|
-
'speedometer-03',
|
|
1359
|
-
'speedometer-04-fill',
|
|
1360
|
-
'speedometer-04',
|
|
1361
|
-
'stand',
|
|
1362
|
-
'star-06',
|
|
1363
|
-
'stars-01',
|
|
1364
|
-
'stars-02',
|
|
1365
|
-
'stars-03',
|
|
1366
|
-
'sticker-circle',
|
|
1367
|
-
'sticker-square',
|
|
1368
|
-
'stop-circle',
|
|
1369
|
-
'stop-square',
|
|
1370
|
-
'stop',
|
|
1371
|
-
'strikethrough-01',
|
|
1372
|
-
'strikethrough-02',
|
|
1373
|
-
'strikethrough-square',
|
|
1374
|
-
'subscript',
|
|
1375
|
-
'sun-setting-01',
|
|
1376
|
-
'sun-setting-02',
|
|
1377
|
-
'sun-setting-03',
|
|
1378
|
-
'sun',
|
|
1379
|
-
'sunrise',
|
|
1380
|
-
'sunset',
|
|
1381
|
-
'switch-horizontal-01',
|
|
1382
|
-
'switch-horizontal-02',
|
|
1383
|
-
'switch-vertical-01',
|
|
1384
|
-
'switch-vertical-02',
|
|
1385
|
-
'table',
|
|
1386
|
-
'tablet-01',
|
|
1387
|
-
'tablet-02',
|
|
1388
|
-
'tag-01',
|
|
1389
|
-
'tag-02',
|
|
1390
|
-
'tag-03',
|
|
1391
|
-
'target-01-fill',
|
|
1392
|
-
'target-01',
|
|
1393
|
-
'target-02-fill',
|
|
1394
|
-
'target-02',
|
|
1395
|
-
'target-03-fill',
|
|
1396
|
-
'target-03',
|
|
1397
|
-
'target-04-fill',
|
|
1398
|
-
'target-04',
|
|
1399
|
-
'target-05-fill',
|
|
1400
|
-
'target-05',
|
|
1401
|
-
'telescope',
|
|
1402
|
-
'terminal-browser',
|
|
1403
|
-
'terminal-circle',
|
|
1404
|
-
'terminal-square',
|
|
1405
|
-
'terminal',
|
|
1406
|
-
'text-input',
|
|
1407
|
-
'thermometer-01',
|
|
1408
|
-
'thermometer-02',
|
|
1409
|
-
'thermometer-03',
|
|
1410
|
-
'thermometer-cold',
|
|
1411
|
-
'thermometer-warm',
|
|
1412
|
-
'thumbs-down',
|
|
1413
|
-
'thumbs-up',
|
|
1414
|
-
'ticket-01',
|
|
1415
|
-
'ticket-02',
|
|
1416
|
-
'toggle-01-left-fill',
|
|
1417
|
-
'toggle-01-left',
|
|
1418
|
-
'toggle-01-right-fill',
|
|
1419
|
-
'toggle-01-right',
|
|
1420
|
-
'toggle-02-left-fill',
|
|
1421
|
-
'toggle-02-left',
|
|
1422
|
-
'toggle-02-right-fill',
|
|
1423
|
-
'toggle-02-right',
|
|
1424
|
-
'toggle-03-left-fill',
|
|
1425
|
-
'toggle-03-left',
|
|
1426
|
-
'toggle-03-right-fill',
|
|
1427
|
-
'toggle-03-right',
|
|
1428
|
-
'tool-01-fill',
|
|
1429
|
-
'tool-01',
|
|
1430
|
-
'tool-02-fill',
|
|
1431
|
-
'tool-02',
|
|
1432
|
-
'train',
|
|
1433
|
-
'tram',
|
|
1434
|
-
'transform',
|
|
1435
|
-
'translate-01-fill',
|
|
1436
|
-
'translate-01',
|
|
1437
|
-
'translate-02-fill',
|
|
1438
|
-
'translate-02',
|
|
1439
|
-
'trash-01-fill',
|
|
1440
|
-
'trash-01',
|
|
1441
|
-
'trash-02-fill',
|
|
1442
|
-
'trash-02',
|
|
1443
|
-
'trash-03-fill',
|
|
1444
|
-
'trash-03',
|
|
1445
|
-
'trash-04-fill',
|
|
1446
|
-
'trash-04',
|
|
1447
|
-
'trend-down-01',
|
|
1448
|
-
'trend-down-02',
|
|
1449
|
-
'trend-up-01',
|
|
1450
|
-
'trend-up-02',
|
|
1451
|
-
'trophy-01',
|
|
1452
|
-
'trophy-02',
|
|
1453
|
-
'truck-01',
|
|
1454
|
-
'truck-02',
|
|
1455
|
-
'tv-01',
|
|
1456
|
-
'tv-02',
|
|
1457
|
-
'tv-03',
|
|
1458
|
-
'type-01',
|
|
1459
|
-
'type-02',
|
|
1460
|
-
'type-square',
|
|
1461
|
-
'type-strikethrough-01',
|
|
1462
|
-
'type-strikethrough-02',
|
|
1463
|
-
'umbrella-01',
|
|
1464
|
-
'umbrella-02',
|
|
1465
|
-
'umbrella-03',
|
|
1466
|
-
'underline-01',
|
|
1467
|
-
'underline-02',
|
|
1468
|
-
'underline-square',
|
|
1469
|
-
'upload-01-alt-fill',
|
|
1470
|
-
'upload-01-fill',
|
|
1471
|
-
'upload-01',
|
|
1472
|
-
'upload-02-fill',
|
|
1473
|
-
'upload-02',
|
|
1474
|
-
'upload-03-fill',
|
|
1475
|
-
'upload-03',
|
|
1476
|
-
'upload-04-fill',
|
|
1477
|
-
'upload-04',
|
|
1478
|
-
'upload-cloud-01-fill',
|
|
1479
|
-
'upload-cloud-01',
|
|
1480
|
-
'upload-cloud-02-fill',
|
|
1481
|
-
'upload-cloud-02',
|
|
1482
|
-
'usb-flash-drive',
|
|
1483
|
-
'user-01',
|
|
1484
|
-
'user-02',
|
|
1485
|
-
'user-03',
|
|
1486
|
-
'user-check-01',
|
|
1487
|
-
'user-check-02',
|
|
1488
|
-
'user-circle',
|
|
1489
|
-
'user-down-01',
|
|
1490
|
-
'user-down-02',
|
|
1491
|
-
'user-edit',
|
|
1492
|
-
'user-left-01',
|
|
1493
|
-
'user-left-02',
|
|
1494
|
-
'user-minus-01',
|
|
1495
|
-
'user-minus-02',
|
|
1496
|
-
'user-plus-01',
|
|
1497
|
-
'user-plus-02',
|
|
1498
|
-
'user-right-01',
|
|
1499
|
-
'user-right-02',
|
|
1500
|
-
'user-square',
|
|
1501
|
-
'user-up-01',
|
|
1502
|
-
'user-up-02',
|
|
1503
|
-
'user-x-01',
|
|
1504
|
-
'user-x-02',
|
|
1505
|
-
'users-01',
|
|
1506
|
-
'users-02',
|
|
1507
|
-
'users-03',
|
|
1508
|
-
'users-check',
|
|
1509
|
-
'users-down',
|
|
1510
|
-
'users-edit',
|
|
1511
|
-
'users-left',
|
|
1512
|
-
'users-minus',
|
|
1513
|
-
'users-plus',
|
|
1514
|
-
'users-right',
|
|
1515
|
-
'users-up',
|
|
1516
|
-
'users-x',
|
|
1517
|
-
'variable',
|
|
1518
|
-
'verifyage-01',
|
|
1519
|
-
'verifyage-02',
|
|
1520
|
-
'video-recorder-off',
|
|
1521
|
-
'video-recorder',
|
|
1522
|
-
'virus-fill',
|
|
1523
|
-
'virus',
|
|
1524
|
-
'voicemail',
|
|
1525
|
-
'volume-max',
|
|
1526
|
-
'volume-min',
|
|
1527
|
-
'volume-minus',
|
|
1528
|
-
'volume-plus',
|
|
1529
|
-
'volume-x',
|
|
1530
|
-
'wallet-01',
|
|
1531
|
-
'wallet-02',
|
|
1532
|
-
'wallet-03',
|
|
1533
|
-
'wallet-04',
|
|
1534
|
-
'wallet-05',
|
|
1535
|
-
'warining',
|
|
1536
|
-
'waves',
|
|
1537
|
-
'webcam-01',
|
|
1538
|
-
'webcam-02',
|
|
1539
|
-
'wifi-off',
|
|
1540
|
-
'wifi',
|
|
1541
|
-
'wind-01',
|
|
1542
|
-
'wind-02',
|
|
1543
|
-
'wind-03',
|
|
1544
|
-
'x-circle-fill',
|
|
1545
|
-
'x-circle',
|
|
1546
|
-
'x-close-fill',
|
|
1547
|
-
'x-close',
|
|
1548
|
-
'x-fill',
|
|
1549
|
-
'x-square-fill',
|
|
1550
|
-
'x-square',
|
|
1551
|
-
'x',
|
|
1552
|
-
'youtube',
|
|
1553
|
-
'zap-circle-fill',
|
|
1554
|
-
'zap-circle',
|
|
1555
|
-
'zap-fast-fill',
|
|
1556
|
-
'zap-fast',
|
|
1557
|
-
'zap-fill',
|
|
1558
|
-
'zap-off-fill',
|
|
1559
|
-
'zap-off',
|
|
1560
|
-
'zap-square-fill',
|
|
1561
|
-
'zap-square',
|
|
1562
|
-
'zap',
|
|
1563
|
-
'zoom-in',
|
|
1564
|
-
'zoom-out',
|
|
1565
|
-
];
|
|
1566
|
-
export default function IconList() {
|
|
1567
|
-
var _a = useState(''), search = _a[0], setSearch = _a[1];
|
|
1568
|
-
var _b = useState(24), iconSize = _b[0], setIconSize = _b[1];
|
|
1569
|
-
var _c = useState('name'), copyType = _c[0], setCopyType = _c[1];
|
|
1570
|
-
var _d = useState(null), copiedIcon = _d[0], setCopiedIcon = _d[1];
|
|
1571
|
-
var filteredIconFiles = useDeferredValue(iconFiles.filter(function (file) { return file.toLowerCase().includes(search.toLowerCase()); }));
|
|
1572
|
-
var handleCopy = function (e, iconName) {
|
|
1573
|
-
if (copyType === 'name') {
|
|
1574
|
-
navigator.clipboard.writeText(iconName);
|
|
1575
|
-
setCopiedIcon(iconName);
|
|
1576
|
-
setTimeout(function () { return setCopiedIcon(null); }, 1500);
|
|
1577
|
-
}
|
|
1578
|
-
else {
|
|
1579
|
-
var svg = e.currentTarget.querySelector('svg');
|
|
1580
|
-
if (svg) {
|
|
1581
|
-
navigator.clipboard.writeText(svg.outerHTML);
|
|
1582
|
-
setCopiedIcon(iconName);
|
|
1583
|
-
setTimeout(function () { return setCopiedIcon(null); }, 1500);
|
|
1584
|
-
}
|
|
1585
|
-
}
|
|
1586
|
-
};
|
|
1587
|
-
return (_jsxs("div", __assign({ className: "icon-page__container" }, { children: [_jsxs("div", __assign({ className: "icon-page__controls" }, { children: [_jsxs("div", __assign({ className: "icon-page__search-container" }, { children: [_jsx(Icon, { name: "search-md", width: 20, height: 20 }), _jsx("input", { type: "text", className: "icon-page__search", value: search, onChange: function (e) { return setSearch(e.target.value); }, placeholder: "\uC544\uC774\uCF58 \uAC80\uC0C9" })] })), _jsxs("div", __assign({ className: "icon-page__size-control" }, { children: [_jsx("span", { children: "\uC0AC\uC774\uC988:" }), _jsxs("select", __assign({ value: iconSize, onChange: function (e) { return setIconSize(Number(e.target.value)); } }, { children: [_jsx("option", __assign({ value: 12 }, { children: "12px" })), _jsx("option", __assign({ value: 14 }, { children: "14px" })), _jsx("option", __assign({ value: 16 }, { children: "16px" })), _jsx("option", __assign({ value: 20 }, { children: "20px" })), _jsx("option", __assign({ value: 24 }, { children: "24px" })), _jsx("option", __assign({ value: 28 }, { children: "28px" })), _jsx("option", __assign({ value: 32 }, { children: "32px" }))] }))] })), _jsxs("div", __assign({ className: "icon-page__copy-type-control" }, { children: [_jsx("button", __assign({ onClick: function () { return setCopyType('name'); }, className: copyType === 'name' ? 'active' : '' }, { children: "\uC774\uB984 \uBCF5\uC0AC" })), _jsx("button", __assign({ onClick: function () { return setCopyType('code'); }, className: copyType === 'code' ? 'active' : '' }, { children: "\uCF54\uB4DC \uBCF5\uC0AC" }))] }))] })), _jsx("div", __assign({ className: "icon-page__grid" }, { children: filteredIconFiles.map(function (file) { return (_jsxs("div", __assign({ className: "icon-page__item", onClick: function (e) { return handleCopy(e, file); } }, { children: [_jsx("div", __assign({ className: "icon-page__item-icon", style: { height: "".concat(iconSize + 16, "px") } }, { children: _jsx(Icon, { name: file, width: iconSize, height: iconSize }) })), _jsx("span", __assign({ className: "icon-page__item-name" }, { children: file })), _jsx("div", __assign({ className: "icon-page__item-copy-message ".concat(copiedIcon === file ? 'icon-page__item-copy-message--visible' : '') }, { children: "\uBCF5\uC0AC\uB428!" }))] }), file)); }) }))] })));
|
|
1588
|
-
}
|