moduix 0.10.0 → 0.11.1
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/README.md +9 -2
- package/dist/_virtual/_rolldown/runtime.cjs +23 -0
- package/dist/components/Accordion/Accordion.cjs +65 -0
- package/dist/components/Accordion/Accordion.css +99 -0
- package/dist/components/Accordion/Accordion.d.ts +17 -9
- package/dist/components/Accordion/Accordion.js +60 -0
- package/dist/components/Accordion/Accordion.module.cjs +12 -0
- package/dist/components/Accordion/Accordion.module.js +12 -0
- package/dist/components/Accordion/index.d.ts +1 -1
- package/dist/components/Alert/Alert.cjs +50 -0
- package/dist/components/Alert/Alert.css +114 -0
- package/dist/components/Alert/Alert.d.ts +33 -9
- package/dist/components/Alert/Alert.js +44 -0
- package/dist/components/Alert/Alert.module.cjs +11 -0
- package/dist/components/Alert/Alert.module.js +11 -0
- package/dist/components/Alert/index.d.ts +1 -1
- package/dist/components/AlertDialog/AlertDialog.cjs +122 -0
- package/dist/components/AlertDialog/AlertDialog.css +159 -0
- package/dist/components/AlertDialog/AlertDialog.d.ts +66 -15
- package/dist/components/AlertDialog/AlertDialog.js +107 -0
- package/dist/components/AlertDialog/AlertDialog.module.cjs +18 -0
- package/dist/components/AlertDialog/AlertDialog.module.js +18 -0
- package/dist/components/AlertDialog/index.d.ts +1 -1
- package/dist/components/AspectRatio/AspectRatio.cjs +24 -0
- package/dist/components/AspectRatio/AspectRatio.css +14 -0
- package/dist/components/AspectRatio/AspectRatio.d.ts +14 -0
- package/dist/components/AspectRatio/AspectRatio.js +24 -0
- package/dist/components/AspectRatio/AspectRatio.module.cjs +5 -0
- package/dist/components/AspectRatio/AspectRatio.module.js +5 -0
- package/dist/components/AspectRatio/index.d.ts +1 -0
- package/dist/components/Autocomplete/Autocomplete.cjs +303 -0
- package/dist/components/Autocomplete/Autocomplete.css +454 -0
- package/dist/components/Autocomplete/Autocomplete.d.ts +40 -37
- package/dist/components/Autocomplete/Autocomplete.js +271 -0
- package/dist/components/Autocomplete/Autocomplete.module.cjs +37 -0
- package/dist/components/Autocomplete/Autocomplete.module.js +37 -0
- package/dist/components/Autocomplete/index.d.ts +1 -1
- package/dist/components/Avatar/Avatar.cjs +31 -0
- package/dist/components/Avatar/Avatar.css +74 -0
- package/dist/components/Avatar/Avatar.d.ts +21 -5
- package/dist/components/Avatar/Avatar.js +29 -0
- package/dist/components/Avatar/Avatar.module.cjs +9 -0
- package/dist/components/Avatar/Avatar.module.js +9 -0
- package/dist/components/Avatar/index.d.ts +1 -1
- package/dist/components/Badge/Badge.cjs +25 -0
- package/dist/components/Badge/Badge.css +66 -0
- package/dist/components/Badge/Badge.d.ts +19 -6
- package/dist/components/Badge/Badge.js +22 -0
- package/dist/components/Badge/Badge.module.cjs +8 -0
- package/dist/components/Badge/Badge.module.js +8 -0
- package/dist/components/Badge/index.d.ts +1 -1
- package/dist/components/Bleed/Bleed.cjs +17 -0
- package/dist/components/Bleed/Bleed.css +51 -0
- package/dist/components/Bleed/Bleed.d.ts +16 -7
- package/dist/components/Bleed/Bleed.js +15 -0
- package/dist/components/Bleed/Bleed.module.cjs +5 -0
- package/dist/components/Bleed/Bleed.module.js +5 -0
- package/dist/components/Bleed/index.d.ts +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +72 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.css +88 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +38 -10
- package/dist/components/Breadcrumbs/Breadcrumbs.js +66 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.module.cjs +13 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.module.js +13 -0
- package/dist/components/Breadcrumbs/index.d.ts +1 -1
- package/dist/components/Button/Button.cjs +18 -0
- package/dist/components/Button/Button.css +194 -0
- package/dist/components/Button/Button.d.ts +12 -5
- package/dist/components/Button/Button.js +18 -0
- package/dist/components/Button/Button.module.cjs +5 -0
- package/dist/components/Button/Button.module.js +5 -0
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/Card/Card.cjs +81 -0
- package/dist/components/Card/Card.css +136 -0
- package/dist/components/Card/Card.d.ts +48 -13
- package/dist/components/Card/Card.js +72 -0
- package/dist/components/Card/Card.module.cjs +14 -0
- package/dist/components/Card/Card.module.js +14 -0
- package/dist/components/Card/index.d.ts +1 -1
- package/dist/components/Checkbox/Checkbox.cjs +63 -0
- package/dist/components/Checkbox/Checkbox.css +131 -0
- package/dist/components/Checkbox/Checkbox.d.ts +27 -10
- package/dist/components/Checkbox/Checkbox.js +59 -0
- package/dist/components/Checkbox/Checkbox.module.cjs +13 -0
- package/dist/components/Checkbox/Checkbox.module.js +13 -0
- package/dist/components/Checkbox/index.d.ts +1 -1
- package/dist/components/CheckboxGroup/CheckboxGroup.cjs +55 -0
- package/dist/components/CheckboxGroup/CheckboxGroup.css +33 -0
- package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +28 -10
- package/dist/components/CheckboxGroup/CheckboxGroup.js +50 -0
- package/dist/components/CheckboxGroup/CheckboxGroup.module.cjs +11 -0
- package/dist/components/CheckboxGroup/CheckboxGroup.module.js +11 -0
- package/dist/components/CheckboxGroup/index.d.ts +1 -1
- package/dist/components/CloseButton/CloseButton.cjs +22 -0
- package/dist/components/CloseButton/CloseButton.css +49 -0
- package/dist/components/CloseButton/CloseButton.d.ts +4 -2
- package/dist/components/CloseButton/CloseButton.js +22 -0
- package/dist/components/CloseButton/CloseButton.module.cjs +5 -0
- package/dist/components/CloseButton/CloseButton.module.js +5 -0
- package/dist/components/Collapsible/Collapsible.cjs +47 -0
- package/dist/components/Collapsible/Collapsible.css +92 -0
- package/dist/components/Collapsible/Collapsible.d.ts +14 -6
- package/dist/components/Collapsible/Collapsible.js +44 -0
- package/dist/components/Collapsible/Collapsible.module.cjs +10 -0
- package/dist/components/Collapsible/Collapsible.module.js +10 -0
- package/dist/components/Collapsible/index.d.ts +1 -1
- package/dist/components/Combobox/Combobox.cjs +330 -0
- package/dist/components/Combobox/Combobox.css +497 -0
- package/dist/components/Combobox/Combobox.d.ts +59 -42
- package/dist/components/Combobox/Combobox.js +295 -0
- package/dist/components/Combobox/Combobox.module.cjs +42 -0
- package/dist/components/Combobox/Combobox.module.js +42 -0
- package/dist/components/Combobox/index.d.ts +1 -1
- package/dist/components/CommandPalette/CommandPalette.cjs +304 -0
- package/dist/components/CommandPalette/CommandPalette.css +375 -0
- package/dist/components/CommandPalette/CommandPalette.d.ts +137 -48
- package/dist/components/CommandPalette/CommandPalette.js +278 -0
- package/dist/components/CommandPalette/CommandPalette.module.cjs +30 -0
- package/dist/components/CommandPalette/CommandPalette.module.js +30 -0
- package/dist/components/CommandPalette/index.d.ts +1 -1
- package/dist/components/Container/Container.cjs +17 -0
- package/dist/components/Container/Container.css +45 -0
- package/dist/components/Container/Container.d.ts +16 -8
- package/dist/components/Container/Container.js +15 -0
- package/dist/components/Container/Container.module.cjs +5 -0
- package/dist/components/Container/Container.module.js +5 -0
- package/dist/components/Container/index.d.ts +1 -1
- package/dist/components/ContextMenu/ContextMenu.cjs +241 -0
- package/dist/components/ContextMenu/ContextMenu.css +308 -0
- package/dist/components/ContextMenu/ContextMenu.d.ts +133 -38
- package/dist/components/ContextMenu/ContextMenu.js +215 -0
- package/dist/components/ContextMenu/ContextMenu.module.cjs +33 -0
- package/dist/components/ContextMenu/ContextMenu.module.js +33 -0
- package/dist/components/ContextMenu/index.d.ts +1 -1
- package/dist/components/CopyButton/CopyButton.cjs +66 -0
- package/dist/components/CopyButton/CopyButton.css +14 -0
- package/dist/components/CopyButton/CopyButton.d.ts +16 -0
- package/dist/components/CopyButton/CopyButton.js +66 -0
- package/dist/components/CopyButton/CopyButton.module.cjs +5 -0
- package/dist/components/CopyButton/CopyButton.module.js +5 -0
- package/dist/components/CopyButton/index.d.ts +1 -0
- package/dist/components/Dialog/Dialog.cjs +136 -0
- package/dist/components/Dialog/Dialog.css +186 -0
- package/dist/components/Dialog/Dialog.d.ts +68 -18
- package/dist/components/Dialog/Dialog.js +122 -0
- package/dist/components/Dialog/Dialog.module.cjs +18 -0
- package/dist/components/Dialog/Dialog.module.js +18 -0
- package/dist/components/Dialog/index.d.ts +1 -1
- package/dist/components/Drawer/Drawer.cjs +202 -0
- package/dist/components/Drawer/Drawer.css +483 -0
- package/dist/components/Drawer/Drawer.d.ts +96 -27
- package/dist/components/Drawer/Drawer.js +182 -0
- package/dist/components/Drawer/Drawer.module.cjs +24 -0
- package/dist/components/Drawer/Drawer.module.js +24 -0
- package/dist/components/Drawer/index.d.ts +1 -1
- package/dist/components/Empty/Empty.cjs +55 -0
- package/dist/components/Empty/Empty.css +78 -0
- package/dist/components/Empty/Empty.d.ts +33 -0
- package/dist/components/Empty/Empty.js +48 -0
- package/dist/components/Empty/Empty.module.cjs +12 -0
- package/dist/components/Empty/Empty.module.js +12 -0
- package/dist/components/Empty/index.d.ts +1 -0
- package/dist/components/Field/Field.cjs +56 -0
- package/dist/components/Field/Field.css +86 -0
- package/dist/components/Field/Field.d.ts +30 -9
- package/dist/components/Field/Field.js +50 -0
- package/dist/components/Field/Field.module.cjs +12 -0
- package/dist/components/Field/Field.module.js +12 -0
- package/dist/components/Field/index.d.ts +1 -1
- package/dist/components/Fieldset/Fieldset.cjs +22 -0
- package/dist/components/Fieldset/Fieldset.css +39 -0
- package/dist/components/Fieldset/Fieldset.d.ts +13 -4
- package/dist/components/Fieldset/Fieldset.js +21 -0
- package/dist/components/Fieldset/Fieldset.module.cjs +8 -0
- package/dist/components/Fieldset/Fieldset.module.js +8 -0
- package/dist/components/Fieldset/index.d.ts +1 -1
- package/dist/components/Form/Form.cjs +16 -0
- package/dist/components/Form/Form.css +9 -0
- package/dist/components/Form/Form.d.ts +6 -3
- package/dist/components/Form/Form.js +16 -0
- package/dist/components/Form/Form.module.cjs +5 -0
- package/dist/components/Form/Form.module.js +5 -0
- package/dist/components/Form/index.d.ts +1 -1
- package/dist/components/Heading/Heading.cjs +25 -0
- package/dist/components/Heading/Heading.css +50 -0
- package/dist/components/Heading/Heading.d.ts +24 -13
- package/dist/components/Heading/Heading.js +23 -0
- package/dist/components/Heading/Heading.module.cjs +5 -0
- package/dist/components/Heading/Heading.module.js +5 -0
- package/dist/components/Heading/index.d.ts +1 -1
- package/dist/components/Input/Input.cjs +18 -0
- package/dist/components/Input/Input.css +78 -0
- package/dist/components/Input/Input.d.ts +12 -7
- package/dist/components/Input/Input.js +18 -0
- package/dist/components/Input/Input.module.cjs +5 -0
- package/dist/components/Input/Input.module.js +5 -0
- package/dist/components/Input/index.d.ts +1 -1
- package/dist/components/InputGroup/InputGroup.cjs +77 -0
- package/dist/components/InputGroup/InputGroup.css +160 -0
- package/dist/components/InputGroup/InputGroup.d.ts +14 -16
- package/dist/components/InputGroup/InputGroup.js +73 -0
- package/dist/components/InputGroup/InputGroup.module.cjs +11 -0
- package/dist/components/InputGroup/InputGroup.module.js +11 -0
- package/dist/components/InputGroup/index.d.ts +1 -1
- package/dist/components/Kbd/Kbd.cjs +23 -0
- package/dist/components/Kbd/Kbd.css +49 -0
- package/dist/components/Kbd/Kbd.d.ts +13 -4
- package/dist/components/Kbd/Kbd.js +20 -0
- package/dist/components/Kbd/Kbd.module.cjs +8 -0
- package/dist/components/Kbd/Kbd.module.js +8 -0
- package/dist/components/Kbd/index.d.ts +1 -1
- package/dist/components/Lightbox/Lightbox.cjs +220 -0
- package/dist/components/Lightbox/Lightbox.css +114 -0
- package/dist/components/Lightbox/Lightbox.d.ts +84 -31
- package/dist/components/Lightbox/Lightbox.js +208 -0
- package/dist/components/Lightbox/Lightbox.module.cjs +14 -0
- package/dist/components/Lightbox/Lightbox.module.js +14 -0
- package/dist/components/Lightbox/index.d.ts +1 -1
- package/dist/components/List/List.cjs +31 -0
- package/dist/components/List/List.css +114 -0
- package/dist/components/List/List.d.ts +33 -11
- package/dist/components/List/List.js +28 -0
- package/dist/components/List/List.module.cjs +5 -0
- package/dist/components/List/List.module.js +5 -0
- package/dist/components/List/index.d.ts +1 -1
- package/dist/components/Menu/Menu.cjs +260 -0
- package/dist/components/Menu/Menu.css +377 -0
- package/dist/components/Menu/Menu.d.ts +143 -41
- package/dist/components/Menu/Menu.js +231 -0
- package/dist/components/Menu/Menu.module.cjs +36 -0
- package/dist/components/Menu/Menu.module.js +36 -0
- package/dist/components/Menu/index.d.ts +1 -1
- package/dist/components/Menubar/Menubar.cjs +261 -0
- package/dist/components/Menubar/Menubar.css +387 -0
- package/dist/components/Menubar/Menubar.d.ts +146 -42
- package/dist/components/Menubar/Menubar.js +232 -0
- package/dist/components/Menubar/Menubar.module.cjs +36 -0
- package/dist/components/Menubar/Menubar.module.js +36 -0
- package/dist/components/Menubar/index.d.ts +1 -1
- package/dist/components/Meter/Meter.cjs +60 -0
- package/dist/components/Meter/Meter.css +46 -0
- package/dist/components/Meter/Meter.d.ts +9 -8
- package/dist/components/Meter/Meter.js +55 -0
- package/dist/components/Meter/Meter.module.cjs +11 -0
- package/dist/components/Meter/Meter.module.js +11 -0
- package/dist/components/NavigationMenu/NavigationMenu.cjs +146 -0
- package/dist/components/NavigationMenu/NavigationMenu.css +319 -0
- package/dist/components/NavigationMenu/NavigationMenu.d.ts +82 -22
- package/dist/components/NavigationMenu/NavigationMenu.js +134 -0
- package/dist/components/NavigationMenu/NavigationMenu.module.cjs +21 -0
- package/dist/components/NavigationMenu/NavigationMenu.module.js +21 -0
- package/dist/components/NavigationMenu/index.d.ts +1 -1
- package/dist/components/NumberField/NumberField.cjs +82 -0
- package/dist/components/NumberField/NumberField.css +158 -0
- package/dist/components/NumberField/NumberField.d.ts +49 -13
- package/dist/components/NumberField/NumberField.js +75 -0
- package/dist/components/NumberField/NumberField.module.cjs +13 -0
- package/dist/components/NumberField/NumberField.module.js +13 -0
- package/dist/components/NumberField/index.d.ts +1 -1
- package/dist/components/OTPField/OTPField.cjs +41 -0
- package/dist/components/OTPField/OTPField.css +78 -0
- package/dist/components/OTPField/OTPField.d.ts +19 -5
- package/dist/components/OTPField/OTPField.js +39 -0
- package/dist/components/OTPField/OTPField.module.cjs +9 -0
- package/dist/components/OTPField/OTPField.module.js +9 -0
- package/dist/components/OTPField/index.d.ts +1 -1
- package/dist/components/Pagination/Pagination.cjs +123 -0
- package/dist/components/Pagination/Pagination.css +103 -0
- package/dist/components/Pagination/Pagination.d.ts +61 -23
- package/dist/components/Pagination/Pagination.js +116 -0
- package/dist/components/Pagination/Pagination.module.cjs +16 -0
- package/dist/components/Pagination/Pagination.module.js +16 -0
- package/dist/components/Pagination/index.d.ts +1 -1
- package/dist/components/PasswordInput/PasswordInput.cjs +47 -0
- package/dist/components/PasswordInput/PasswordInput.css +19 -0
- package/dist/components/PasswordInput/PasswordInput.d.ts +16 -0
- package/dist/components/PasswordInput/PasswordInput.js +47 -0
- package/dist/components/PasswordInput/PasswordInput.module.cjs +9 -0
- package/dist/components/PasswordInput/PasswordInput.module.js +9 -0
- package/dist/components/PasswordInput/index.d.ts +1 -0
- package/dist/components/Popover/Popover.cjs +146 -0
- package/dist/components/Popover/Popover.css +200 -0
- package/dist/components/Popover/Popover.d.ts +79 -22
- package/dist/components/Popover/Popover.js +131 -0
- package/dist/components/Popover/Popover.module.cjs +22 -0
- package/dist/components/Popover/Popover.module.js +22 -0
- package/dist/components/Popover/index.d.ts +1 -1
- package/dist/components/PreviewCard/PreviewCard.cjs +96 -0
- package/dist/components/PreviewCard/PreviewCard.css +136 -0
- package/dist/components/PreviewCard/PreviewCard.d.ts +51 -15
- package/dist/components/PreviewCard/PreviewCard.js +87 -0
- package/dist/components/PreviewCard/PreviewCard.module.cjs +16 -0
- package/dist/components/PreviewCard/PreviewCard.module.js +16 -0
- package/dist/components/PreviewCard/index.d.ts +1 -1
- package/dist/components/Progress/Progress.cjs +60 -0
- package/dist/components/Progress/Progress.css +68 -0
- package/dist/components/Progress/Progress.d.ts +9 -7
- package/dist/components/Progress/Progress.js +55 -0
- package/dist/components/Progress/Progress.module.cjs +12 -0
- package/dist/components/Progress/Progress.module.js +12 -0
- package/dist/components/Radio/Radio.cjs +78 -0
- package/dist/components/Radio/Radio.css +141 -0
- package/dist/components/Radio/Radio.d.ts +39 -14
- package/dist/components/Radio/Radio.js +71 -0
- package/dist/components/Radio/Radio.module.cjs +14 -0
- package/dist/components/Radio/Radio.module.js +14 -0
- package/dist/components/Radio/index.d.ts +1 -1
- package/dist/components/Rating/Rating.cjs +61 -0
- package/dist/components/Rating/Rating.css +79 -0
- package/dist/components/Rating/Rating.d.ts +14 -0
- package/dist/components/Rating/Rating.js +61 -0
- package/dist/components/Rating/Rating.module.cjs +9 -0
- package/dist/components/Rating/Rating.module.js +9 -0
- package/dist/components/Rating/index.d.ts +1 -0
- package/dist/components/ScrollArea/ScrollArea.cjs +82 -0
- package/dist/components/ScrollArea/ScrollArea.css +205 -0
- package/dist/components/ScrollArea/ScrollArea.d.ts +16 -14
- package/dist/components/ScrollArea/ScrollArea.js +76 -0
- package/dist/components/ScrollArea/ScrollArea.module.cjs +12 -0
- package/dist/components/ScrollArea/ScrollArea.module.js +12 -0
- package/dist/components/ScrollArea/index.d.ts +1 -1
- package/dist/components/Select/Select.cjs +219 -0
- package/dist/components/Select/Select.css +357 -0
- package/dist/components/Select/Select.d.ts +117 -32
- package/dist/components/Select/Select.js +196 -0
- package/dist/components/Select/Select.module.cjs +33 -0
- package/dist/components/Select/Select.module.js +33 -0
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/Separator/Separator.cjs +16 -0
- package/dist/components/Separator/Separator.css +17 -0
- package/dist/components/Separator/Separator.d.ts +4 -4
- package/dist/components/Separator/Separator.js +16 -0
- package/dist/components/Separator/Separator.module.cjs +5 -0
- package/dist/components/Separator/Separator.module.js +5 -0
- package/dist/components/Skeleton/Skeleton.cjs +25 -0
- package/dist/components/Skeleton/Skeleton.css +21 -0
- package/dist/components/Skeleton/Skeleton.d.ts +23 -10
- package/dist/components/Skeleton/Skeleton.js +25 -0
- package/dist/components/Skeleton/Skeleton.module.cjs +5 -0
- package/dist/components/Skeleton/Skeleton.module.js +5 -0
- package/dist/components/Skeleton/index.d.ts +1 -1
- package/dist/components/Slider/Slider.cjs +106 -0
- package/dist/components/Slider/Slider.css +115 -0
- package/dist/components/Slider/Slider.d.ts +16 -10
- package/dist/components/Slider/Slider.js +99 -0
- package/dist/components/Slider/Slider.module.cjs +13 -0
- package/dist/components/Slider/Slider.module.js +13 -0
- package/dist/components/Slider/index.d.ts +1 -1
- package/dist/components/SnapCarousel/SnapCarousel.cjs +130 -0
- package/dist/components/SnapCarousel/SnapCarousel.css +131 -0
- package/dist/components/SnapCarousel/SnapCarousel.d.ts +45 -0
- package/dist/components/SnapCarousel/SnapCarousel.js +125 -0
- package/dist/components/SnapCarousel/SnapCarousel.module.cjs +13 -0
- package/dist/components/SnapCarousel/SnapCarousel.module.js +13 -0
- package/dist/components/SnapCarousel/index.d.ts +1 -0
- package/dist/components/Spinner/Spinner.cjs +30 -0
- package/dist/components/Spinner/Spinner.css +60 -0
- package/dist/components/Spinner/Spinner.d.ts +18 -6
- package/dist/components/Spinner/Spinner.js +28 -0
- package/dist/components/Spinner/Spinner.module.cjs +9 -0
- package/dist/components/Spinner/Spinner.module.js +9 -0
- package/dist/components/Spinner/index.d.ts +1 -1
- package/dist/components/SplitButton/SplitButton.cjs +69 -0
- package/dist/components/SplitButton/SplitButton.css +59 -0
- package/dist/components/SplitButton/SplitButton.d.ts +46 -0
- package/dist/components/SplitButton/SplitButton.js +66 -0
- package/dist/components/SplitButton/SplitButton.module.cjs +9 -0
- package/dist/components/SplitButton/SplitButton.module.js +9 -0
- package/dist/components/SplitButton/index.d.ts +1 -0
- package/dist/components/Stack/Stack.cjs +27 -0
- package/dist/components/Stack/Stack.css +13 -0
- package/dist/components/Stack/Stack.d.ts +28 -14
- package/dist/components/Stack/Stack.js +27 -0
- package/dist/components/Stack/Stack.module.cjs +5 -0
- package/dist/components/Stack/Stack.module.js +5 -0
- package/dist/components/Stack/index.d.ts +1 -1
- package/dist/components/Stepper/Stepper.cjs +138 -0
- package/dist/components/Stepper/Stepper.css +174 -0
- package/dist/components/Stepper/Stepper.d.ts +59 -0
- package/dist/components/Stepper/Stepper.js +131 -0
- package/dist/components/Stepper/Stepper.module.cjs +14 -0
- package/dist/components/Stepper/Stepper.module.js +14 -0
- package/dist/components/Stepper/index.d.ts +1 -0
- package/dist/components/Switch/Switch.cjs +43 -0
- package/dist/components/Switch/Switch.css +138 -0
- package/dist/components/Switch/Switch.d.ts +21 -9
- package/dist/components/Switch/Switch.js +40 -0
- package/dist/components/Switch/Switch.module.cjs +10 -0
- package/dist/components/Switch/Switch.module.js +10 -0
- package/dist/components/Switch/index.d.ts +1 -1
- package/dist/components/Table/Table.cjs +96 -0
- package/dist/components/Table/Table.css +107 -0
- package/dist/components/Table/Table.d.ts +58 -0
- package/dist/components/Table/Table.js +85 -0
- package/dist/components/Table/Table.module.cjs +18 -0
- package/dist/components/Table/Table.module.js +18 -0
- package/dist/components/Table/index.d.ts +1 -0
- package/dist/components/Tabs/Tabs.cjs +70 -0
- package/dist/components/Tabs/Tabs.css +181 -0
- package/dist/components/Tabs/Tabs.d.ts +10 -8
- package/dist/components/Tabs/Tabs.js +66 -0
- package/dist/components/Tabs/Tabs.module.cjs +11 -0
- package/dist/components/Tabs/Tabs.module.js +11 -0
- package/dist/components/Text/Text.cjs +42 -0
- package/dist/components/Text/Text.css +73 -0
- package/dist/components/Text/Text.d.ts +27 -9
- package/dist/components/Text/Text.js +42 -0
- package/dist/components/Text/Text.module.cjs +5 -0
- package/dist/components/Text/Text.module.js +5 -0
- package/dist/components/Text/index.d.ts +1 -1
- package/dist/components/Textarea/Textarea.cjs +28 -0
- package/dist/components/Textarea/Textarea.css +59 -0
- package/dist/components/Textarea/Textarea.d.ts +9 -4
- package/dist/components/Textarea/Textarea.js +28 -0
- package/dist/components/Textarea/Textarea.module.cjs +5 -0
- package/dist/components/Textarea/Textarea.module.js +5 -0
- package/dist/components/Textarea/index.d.ts +1 -1
- package/dist/components/Toast/Toast.cjs +278 -0
- package/dist/components/Toast/Toast.css +351 -0
- package/dist/components/Toast/Toast.d.ts +82 -41
- package/dist/components/Toast/Toast.js +263 -0
- package/dist/components/Toast/Toast.module.cjs +26 -0
- package/dist/components/Toast/Toast.module.js +26 -0
- package/dist/components/Toast/index.d.ts +1 -1
- package/dist/components/Toggle/Toggle.cjs +18 -0
- package/dist/components/Toggle/Toggle.css +147 -0
- package/dist/components/Toggle/Toggle.d.ts +9 -6
- package/dist/components/Toggle/Toggle.js +18 -0
- package/dist/components/Toggle/Toggle.module.cjs +5 -0
- package/dist/components/Toggle/Toggle.module.js +5 -0
- package/dist/components/Toggle/index.d.ts +1 -1
- package/dist/components/ToggleGroup/ToggleGroup.cjs +42 -0
- package/dist/components/ToggleGroup/ToggleGroup.css +42 -0
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +15 -12
- package/dist/components/ToggleGroup/ToggleGroup.js +41 -0
- package/dist/components/ToggleGroup/ToggleGroup.module.cjs +8 -0
- package/dist/components/ToggleGroup/ToggleGroup.module.js +8 -0
- package/dist/components/ToggleGroup/index.d.ts +1 -1
- package/dist/components/Toolbar/Toolbar.cjs +61 -0
- package/dist/components/Toolbar/Toolbar.css +203 -0
- package/dist/components/Toolbar/Toolbar.d.ts +9 -7
- package/dist/components/Toolbar/Toolbar.js +56 -0
- package/dist/components/Toolbar/Toolbar.module.cjs +12 -0
- package/dist/components/Toolbar/Toolbar.module.js +12 -0
- package/dist/components/Tooltip/Tooltip.cjs +91 -0
- package/dist/components/Tooltip/Tooltip.css +155 -0
- package/dist/components/Tooltip/Tooltip.d.ts +51 -15
- package/dist/components/Tooltip/Tooltip.js +82 -0
- package/dist/components/Tooltip/Tooltip.module.cjs +15 -0
- package/dist/components/Tooltip/Tooltip.module.js +15 -0
- package/dist/components/Tooltip/index.d.ts +1 -1
- package/dist/icons/demo/Icons.cjs +234 -0
- package/dist/icons/demo/Icons.d.ts +15 -12
- package/dist/icons/demo/Icons.js +225 -0
- package/dist/icons/demo/index.d.ts +1 -1
- package/dist/icons/ui/Icons.cjs +324 -0
- package/dist/icons/ui/Icons.d.ts +30 -18
- package/dist/icons/ui/Icons.js +308 -0
- package/dist/icons/ui/index.d.ts +1 -1
- package/dist/index.cjs +619 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +68 -58
- package/dist/index.js +68 -5039
- package/dist/reset.cjs +1 -0
- package/dist/reset.d.cts +1 -0
- package/dist/reset.d.ts +1 -0
- package/dist/reset.js +1 -0
- package/dist/style.cjs +1 -0
- package/dist/style.d.cts +1 -0
- package/dist/style.d.ts +1 -0
- package/dist/style.js +1 -0
- package/dist/styles/reset.css +175 -0
- package/dist/styles/style.css +263 -0
- package/dist/utils/mergeClassName.cjs +8 -0
- package/dist/utils/mergeClassName.js +8 -0
- package/package.json +8 -7
- package/dist/components/CloseButton/index.d.ts +0 -1
- package/dist/components/Meter/index.d.ts +0 -1
- package/dist/components/Progress/index.d.ts +0 -1
- package/dist/components/Separator/index.d.ts +0 -1
- package/dist/components/Tabs/index.d.ts +0 -1
- package/dist/components/Toolbar/index.d.ts +0 -1
- package/dist/data/insideScrollSections.d.ts +0 -4
- package/dist/index.css +0 -1
- package/dist/reset.css +0 -334
- package/dist/utils/mergeClassName.d.ts +0 -4
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region src/icons/demo/Icons.tsx
|
|
3
|
+
function HandshakeIcon(props) {
|
|
4
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "24",
|
|
7
|
+
height: "24",
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: "currentColor",
|
|
11
|
+
strokeWidth: "2",
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
focusable: "false",
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx("path", { d: "M8 2v4" }),
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M16 2v4" }),
|
|
20
|
+
/* @__PURE__ */ jsx("rect", {
|
|
21
|
+
width: "18",
|
|
22
|
+
height: "18",
|
|
23
|
+
x: "3",
|
|
24
|
+
y: "4",
|
|
25
|
+
rx: "2"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ jsx("path", { d: "M3 10h18" }),
|
|
28
|
+
/* @__PURE__ */ jsx("path", { d: "M8 14h.01" }),
|
|
29
|
+
/* @__PURE__ */ jsx("path", { d: "M12 14h.01" }),
|
|
30
|
+
/* @__PURE__ */ jsx("path", { d: "M16 14h.01" }),
|
|
31
|
+
/* @__PURE__ */ jsx("path", { d: "M8 18h.01" }),
|
|
32
|
+
/* @__PURE__ */ jsx("path", { d: "M12 18h.01" }),
|
|
33
|
+
/* @__PURE__ */ jsx("path", { d: "M16 18h.01" })
|
|
34
|
+
]
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
function PresentIcon(props) {
|
|
38
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: "24",
|
|
41
|
+
height: "24",
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
fill: "none",
|
|
44
|
+
stroke: "currentColor",
|
|
45
|
+
strokeWidth: "2",
|
|
46
|
+
strokeLinecap: "round",
|
|
47
|
+
strokeLinejoin: "round",
|
|
48
|
+
"aria-hidden": "true",
|
|
49
|
+
focusable: "false",
|
|
50
|
+
...props,
|
|
51
|
+
children: [
|
|
52
|
+
/* @__PURE__ */ jsx("path", { d: "M12 7v14" }),
|
|
53
|
+
/* @__PURE__ */ jsx("path", { d: "M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8" }),
|
|
54
|
+
/* @__PURE__ */ jsx("path", { d: "M7.5 7a1 1 0 0 1 0-5A4.8 8 0 0 1 12 7a4.8 8 0 0 1 4.5-5 1 1 0 0 1 0 5" }),
|
|
55
|
+
/* @__PURE__ */ jsx("rect", {
|
|
56
|
+
x: "3",
|
|
57
|
+
y: "7",
|
|
58
|
+
width: "18",
|
|
59
|
+
height: "4",
|
|
60
|
+
rx: "1"
|
|
61
|
+
})
|
|
62
|
+
]
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
function MapIcon(props) {
|
|
66
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
67
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
68
|
+
width: "24",
|
|
69
|
+
height: "24",
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
stroke: "currentColor",
|
|
73
|
+
strokeWidth: "2",
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeLinejoin: "round",
|
|
76
|
+
"aria-hidden": "true",
|
|
77
|
+
focusable: "false",
|
|
78
|
+
...props,
|
|
79
|
+
children: [
|
|
80
|
+
/* @__PURE__ */ jsx("path", { d: "M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0" }),
|
|
81
|
+
/* @__PURE__ */ jsx("circle", {
|
|
82
|
+
cx: "12",
|
|
83
|
+
cy: "8",
|
|
84
|
+
r: "2"
|
|
85
|
+
}),
|
|
86
|
+
/* @__PURE__ */ jsx("path", { d: "M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712" })
|
|
87
|
+
]
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
function ShareIcon(props) {
|
|
91
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
92
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
93
|
+
width: "24",
|
|
94
|
+
height: "24",
|
|
95
|
+
viewBox: "0 0 24 24",
|
|
96
|
+
fill: "none",
|
|
97
|
+
stroke: "currentColor",
|
|
98
|
+
strokeWidth: "2",
|
|
99
|
+
strokeLinecap: "round",
|
|
100
|
+
strokeLinejoin: "round",
|
|
101
|
+
"aria-hidden": "true",
|
|
102
|
+
focusable: "false",
|
|
103
|
+
...props,
|
|
104
|
+
children: [
|
|
105
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2v13" }),
|
|
106
|
+
/* @__PURE__ */ jsx("path", { d: "m16 6-4-4-4 4" }),
|
|
107
|
+
/* @__PURE__ */ jsx("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" })
|
|
108
|
+
]
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
function ComputerIcon(props) {
|
|
112
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
113
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
114
|
+
width: "24",
|
|
115
|
+
height: "24",
|
|
116
|
+
viewBox: "0 0 24 24",
|
|
117
|
+
fill: "none",
|
|
118
|
+
stroke: "currentColor",
|
|
119
|
+
strokeWidth: "2",
|
|
120
|
+
strokeLinecap: "round",
|
|
121
|
+
strokeLinejoin: "round",
|
|
122
|
+
"aria-hidden": "true",
|
|
123
|
+
focusable: "false",
|
|
124
|
+
...props,
|
|
125
|
+
children: [
|
|
126
|
+
/* @__PURE__ */ jsx("path", { d: "M12 17v4" }),
|
|
127
|
+
/* @__PURE__ */ jsx("path", { d: "M8 21h8" }),
|
|
128
|
+
/* @__PURE__ */ jsx("path", { d: "m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15" }),
|
|
129
|
+
/* @__PURE__ */ jsx("circle", {
|
|
130
|
+
cx: "8",
|
|
131
|
+
cy: "9",
|
|
132
|
+
r: "2"
|
|
133
|
+
}),
|
|
134
|
+
/* @__PURE__ */ jsx("rect", {
|
|
135
|
+
x: "2",
|
|
136
|
+
y: "3",
|
|
137
|
+
width: "20",
|
|
138
|
+
height: "14",
|
|
139
|
+
rx: "2"
|
|
140
|
+
})
|
|
141
|
+
]
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
function TagIcon(props) {
|
|
145
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
146
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
147
|
+
width: "24",
|
|
148
|
+
height: "24",
|
|
149
|
+
viewBox: "0 0 24 24",
|
|
150
|
+
fill: "none",
|
|
151
|
+
stroke: "currentColor",
|
|
152
|
+
strokeWidth: "2",
|
|
153
|
+
strokeLinecap: "round",
|
|
154
|
+
strokeLinejoin: "round",
|
|
155
|
+
"aria-hidden": "true",
|
|
156
|
+
focusable: "false",
|
|
157
|
+
...props,
|
|
158
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }), /* @__PURE__ */ jsx("circle", {
|
|
159
|
+
cx: "7.5",
|
|
160
|
+
cy: "7.5",
|
|
161
|
+
r: ".5",
|
|
162
|
+
fill: "currentColor"
|
|
163
|
+
})]
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
function InfoIcon(props) {
|
|
167
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
168
|
+
viewBox: "0 0 24 24",
|
|
169
|
+
fill: "none",
|
|
170
|
+
"aria-hidden": "true",
|
|
171
|
+
focusable: "false",
|
|
172
|
+
...props,
|
|
173
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
174
|
+
d: "m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z",
|
|
175
|
+
stroke: "currentColor",
|
|
176
|
+
strokeWidth: "1.5",
|
|
177
|
+
strokeLinecap: "round",
|
|
178
|
+
strokeLinejoin: "round"
|
|
179
|
+
})
|
|
180
|
+
});
|
|
181
|
+
}
|
|
182
|
+
function BellIcon(props) {
|
|
183
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
184
|
+
fill: "currentColor",
|
|
185
|
+
viewBox: "0 0 16 16",
|
|
186
|
+
"aria-hidden": "true",
|
|
187
|
+
focusable: "false",
|
|
188
|
+
...props,
|
|
189
|
+
children: /* @__PURE__ */ jsx("path", { d: "M8 1a1 1 0 0 0-1 1v1.14A4 4 0 0 0 4 7v3.98s-.02.28-.15.54C3.72 11.78 3.56 12 3 12v1h10v-1c-.6 0-.75-.22-.87-.47-.13-.25-.13-.52-.13-.53V7a4 4 0 0 0-3-3.86V2a1 1 0 0 0-1-1Zm0 12a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" })
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
function ArrowUpRightIcon(props) {
|
|
193
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
194
|
+
viewBox: "0 0 24 24",
|
|
195
|
+
fill: "none",
|
|
196
|
+
"aria-hidden": "true",
|
|
197
|
+
focusable: "false",
|
|
198
|
+
...props,
|
|
199
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
200
|
+
d: "M7 17 17 7M9 7h8v8",
|
|
201
|
+
stroke: "currentColor",
|
|
202
|
+
strokeWidth: "2",
|
|
203
|
+
strokeLinecap: "round",
|
|
204
|
+
strokeLinejoin: "round"
|
|
205
|
+
})
|
|
206
|
+
});
|
|
207
|
+
}
|
|
208
|
+
function StarIcon(props) {
|
|
209
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
210
|
+
viewBox: "0 0 24 24",
|
|
211
|
+
fill: "none",
|
|
212
|
+
"aria-hidden": "true",
|
|
213
|
+
focusable: "false",
|
|
214
|
+
...props,
|
|
215
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
216
|
+
d: "M12 3.75 14.7 9.22l5.93.86-4.29 4.18 1.01 5.9L12 17.32l-5.35 2.84 1.02-5.9-4.3-4.18 5.94-.86L12 3.75Z",
|
|
217
|
+
stroke: "currentColor",
|
|
218
|
+
strokeWidth: "2",
|
|
219
|
+
strokeLinecap: "round",
|
|
220
|
+
strokeLinejoin: "round"
|
|
221
|
+
})
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
//#endregion
|
|
225
|
+
export { ArrowUpRightIcon, BellIcon, ComputerIcon, HandshakeIcon, InfoIcon, MapIcon, PresentIcon, ShareIcon, StarIcon, TagIcon };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import { ArrowUpRightIcon, BellIcon, ComputerIcon, HandshakeIcon, InfoIcon, MapIcon, PresentIcon, ShareIcon, StarIcon, TagIcon } from "./Icons.js";
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
2
|
+
//#region src/icons/ui/Icons.tsx
|
|
3
|
+
function ChevronLeftIcon(props) {
|
|
4
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "24",
|
|
7
|
+
height: "24",
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: "currentColor",
|
|
11
|
+
strokeWidth: "3",
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
focusable: "false",
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
function ChevronRightIcon(props) {
|
|
21
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
width: "24",
|
|
24
|
+
height: "24",
|
|
25
|
+
viewBox: "0 0 24 24",
|
|
26
|
+
fill: "none",
|
|
27
|
+
stroke: "currentColor",
|
|
28
|
+
strokeWidth: "3",
|
|
29
|
+
strokeLinecap: "round",
|
|
30
|
+
strokeLinejoin: "round",
|
|
31
|
+
"aria-hidden": "true",
|
|
32
|
+
focusable: "false",
|
|
33
|
+
...props,
|
|
34
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
function ChevronDownIcon(props) {
|
|
38
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: "24",
|
|
41
|
+
height: "24",
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
fill: "none",
|
|
44
|
+
stroke: "currentColor",
|
|
45
|
+
strokeWidth: "3",
|
|
46
|
+
strokeLinecap: "round",
|
|
47
|
+
strokeLinejoin: "round",
|
|
48
|
+
"aria-hidden": "true",
|
|
49
|
+
focusable: "false",
|
|
50
|
+
...props,
|
|
51
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
function ChevronUpIcon(props) {
|
|
55
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
56
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
57
|
+
width: "24",
|
|
58
|
+
height: "24",
|
|
59
|
+
viewBox: "0 0 24 24",
|
|
60
|
+
fill: "none",
|
|
61
|
+
stroke: "currentColor",
|
|
62
|
+
strokeWidth: "3",
|
|
63
|
+
strokeLinecap: "round",
|
|
64
|
+
strokeLinejoin: "round",
|
|
65
|
+
"aria-hidden": "true",
|
|
66
|
+
focusable: "false",
|
|
67
|
+
...props,
|
|
68
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18 15-6-6-6 6" })
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
function ChevronUpDownIcon(props) {
|
|
72
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
73
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
74
|
+
width: "24",
|
|
75
|
+
height: "24",
|
|
76
|
+
viewBox: "0 0 24 24",
|
|
77
|
+
fill: "none",
|
|
78
|
+
stroke: "currentColor",
|
|
79
|
+
strokeWidth: "3",
|
|
80
|
+
strokeLinecap: "round",
|
|
81
|
+
strokeLinejoin: "round",
|
|
82
|
+
"aria-hidden": "true",
|
|
83
|
+
focusable: "false",
|
|
84
|
+
...props,
|
|
85
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m7 15 5 5 5-5" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m7 9 5-5 5 5" })]
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
function PlusIcon(props) {
|
|
89
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
90
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
91
|
+
width: "24",
|
|
92
|
+
height: "24",
|
|
93
|
+
viewBox: "0 0 24 24",
|
|
94
|
+
fill: "none",
|
|
95
|
+
stroke: "currentColor",
|
|
96
|
+
strokeWidth: "3",
|
|
97
|
+
strokeLinecap: "round",
|
|
98
|
+
strokeLinejoin: "round",
|
|
99
|
+
"aria-hidden": "true",
|
|
100
|
+
focusable: "false",
|
|
101
|
+
...props,
|
|
102
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12h14" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 5v14" })]
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
function MinusIcon(props) {
|
|
106
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
107
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
108
|
+
width: "24",
|
|
109
|
+
height: "24",
|
|
110
|
+
viewBox: "0 0 24 24",
|
|
111
|
+
fill: "none",
|
|
112
|
+
stroke: "currentColor",
|
|
113
|
+
strokeWidth: "3",
|
|
114
|
+
strokeLinecap: "round",
|
|
115
|
+
strokeLinejoin: "round",
|
|
116
|
+
"aria-hidden": "true",
|
|
117
|
+
focusable: "false",
|
|
118
|
+
...props,
|
|
119
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12h14" })
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
function CheckIcon(props) {
|
|
123
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
124
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
125
|
+
width: "24",
|
|
126
|
+
height: "24",
|
|
127
|
+
viewBox: "0 0 24 24",
|
|
128
|
+
fill: "none",
|
|
129
|
+
stroke: "currentColor",
|
|
130
|
+
strokeWidth: "3",
|
|
131
|
+
strokeLinecap: "round",
|
|
132
|
+
strokeLinejoin: "round",
|
|
133
|
+
"aria-hidden": "true",
|
|
134
|
+
focusable: "false",
|
|
135
|
+
...props,
|
|
136
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
function CloseIcon(props) {
|
|
140
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
141
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
142
|
+
width: "24",
|
|
143
|
+
height: "24",
|
|
144
|
+
viewBox: "0 0 24 24",
|
|
145
|
+
fill: "none",
|
|
146
|
+
stroke: "currentColor",
|
|
147
|
+
strokeWidth: "3",
|
|
148
|
+
strokeLinecap: "round",
|
|
149
|
+
strokeLinejoin: "round",
|
|
150
|
+
"aria-hidden": "true",
|
|
151
|
+
focusable: "false",
|
|
152
|
+
...props,
|
|
153
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 6 6 18" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m6 6 12 12" })]
|
|
154
|
+
});
|
|
155
|
+
}
|
|
156
|
+
function EyeIcon(props) {
|
|
157
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
158
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
159
|
+
width: "24",
|
|
160
|
+
height: "24",
|
|
161
|
+
viewBox: "0 0 24 24",
|
|
162
|
+
fill: "none",
|
|
163
|
+
stroke: "currentColor",
|
|
164
|
+
strokeWidth: "3",
|
|
165
|
+
strokeLinecap: "round",
|
|
166
|
+
strokeLinejoin: "round",
|
|
167
|
+
"aria-hidden": "true",
|
|
168
|
+
focusable: "false",
|
|
169
|
+
...props,
|
|
170
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
171
|
+
cx: "12",
|
|
172
|
+
cy: "12",
|
|
173
|
+
r: "3"
|
|
174
|
+
})]
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
function EyeClosedIcon(props) {
|
|
178
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
179
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
180
|
+
width: "24",
|
|
181
|
+
height: "24",
|
|
182
|
+
viewBox: "0 0 24 24",
|
|
183
|
+
fill: "none",
|
|
184
|
+
stroke: "currentColor",
|
|
185
|
+
strokeWidth: "3",
|
|
186
|
+
strokeLinecap: "round",
|
|
187
|
+
strokeLinejoin: "round",
|
|
188
|
+
"aria-hidden": "true",
|
|
189
|
+
focusable: "false",
|
|
190
|
+
...props,
|
|
191
|
+
children: [
|
|
192
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15 18-.722-3.25" }),
|
|
193
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 8a10.645 10.645 0 0 0 20 0" }),
|
|
194
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20 15-1.726-2.05" }),
|
|
195
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m4 15 1.726-2.05" }),
|
|
196
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9 18 .722-3.25" })
|
|
197
|
+
]
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
function RatingStarIcon(props) {
|
|
201
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
202
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
203
|
+
width: "24",
|
|
204
|
+
height: "24",
|
|
205
|
+
viewBox: "0 0 24 24",
|
|
206
|
+
fill: "none",
|
|
207
|
+
stroke: "currentColor",
|
|
208
|
+
strokeWidth: "2",
|
|
209
|
+
strokeLinecap: "round",
|
|
210
|
+
strokeLinejoin: "round",
|
|
211
|
+
"aria-hidden": "true",
|
|
212
|
+
focusable: "false",
|
|
213
|
+
...props,
|
|
214
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z" })
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
function CopyIcon(props) {
|
|
218
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
219
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
220
|
+
width: "24",
|
|
221
|
+
height: "24",
|
|
222
|
+
viewBox: "0 0 24 24",
|
|
223
|
+
fill: "none",
|
|
224
|
+
stroke: "currentColor",
|
|
225
|
+
strokeWidth: "3",
|
|
226
|
+
strokeLinecap: "round",
|
|
227
|
+
strokeLinejoin: "round",
|
|
228
|
+
"aria-hidden": "true",
|
|
229
|
+
focusable: "false",
|
|
230
|
+
...props,
|
|
231
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
232
|
+
width: "14",
|
|
233
|
+
height: "14",
|
|
234
|
+
x: "8",
|
|
235
|
+
y: "8",
|
|
236
|
+
rx: "2",
|
|
237
|
+
ry: "2"
|
|
238
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })]
|
|
239
|
+
});
|
|
240
|
+
}
|
|
241
|
+
function IndeterminateIcon(props) {
|
|
242
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
243
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
244
|
+
width: "24",
|
|
245
|
+
height: "24",
|
|
246
|
+
viewBox: "0 0 24 24",
|
|
247
|
+
fill: "none",
|
|
248
|
+
stroke: "currentColor",
|
|
249
|
+
strokeWidth: "3",
|
|
250
|
+
strokeLinecap: "round",
|
|
251
|
+
strokeLinejoin: "round",
|
|
252
|
+
"aria-hidden": "true",
|
|
253
|
+
focusable: "false",
|
|
254
|
+
...props,
|
|
255
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12h14" })
|
|
256
|
+
});
|
|
257
|
+
}
|
|
258
|
+
function SeparatorMarkIcon(props) {
|
|
259
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
260
|
+
viewBox: "0 0 16 4",
|
|
261
|
+
fill: "none",
|
|
262
|
+
"aria-hidden": "true",
|
|
263
|
+
focusable: "false",
|
|
264
|
+
...props,
|
|
265
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
266
|
+
d: "M1 2h14",
|
|
267
|
+
stroke: "currentColor",
|
|
268
|
+
strokeWidth: "1.6",
|
|
269
|
+
strokeLinecap: "round"
|
|
270
|
+
})
|
|
271
|
+
});
|
|
272
|
+
}
|
|
273
|
+
function ScrubCursorIcon(props) {
|
|
274
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
275
|
+
viewBox: "0 0 25 14",
|
|
276
|
+
fill: "black",
|
|
277
|
+
stroke: "white",
|
|
278
|
+
"aria-hidden": "true",
|
|
279
|
+
focusable: "false",
|
|
280
|
+
...props,
|
|
281
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.5 5.5H6.5V2L1 7l5.5 5v-3.5h13V12L25 7l-5.5-5z" })
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
function PopupArrowIcon({ fillClassName, outerStrokeClassName, innerStrokeClassName, ...props }) {
|
|
285
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
286
|
+
viewBox: "0 0 20 10",
|
|
287
|
+
fill: "none",
|
|
288
|
+
"aria-hidden": "true",
|
|
289
|
+
focusable: "false",
|
|
290
|
+
...props,
|
|
291
|
+
children: [
|
|
292
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
293
|
+
d: "M9.66437 2.60207L4.80758 6.97318C4.07308 7.63423 3.11989 8 2.13172 8H0V10H20V8H18.5349C17.5468 8 16.5936 7.63423 15.8591 6.97318L11.0023 2.60207C10.622 2.2598 10.0447 2.25979 9.66437 2.60207Z",
|
|
294
|
+
className: fillClassName
|
|
295
|
+
}),
|
|
296
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
297
|
+
d: "M8.99542 1.85876C9.75604 1.17425 10.9106 1.17422 11.6713 1.85878L16.5281 6.22989C17.0789 6.72568 17.7938 7.00001 18.5349 7.00001L15.89 7L11.0023 2.60207C10.622 2.2598 10.0447 2.2598 9.66436 2.60207L4.77734 7L2.13171 7.00001C2.87284 7.00001 3.58774 6.72568 4.13861 6.22989L8.99542 1.85876Z",
|
|
298
|
+
className: outerStrokeClassName
|
|
299
|
+
}),
|
|
300
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
301
|
+
d: "M10.3333 3.34539L5.47654 7.71648C4.55842 8.54279 3.36693 9 2.13172 9H0V8H2.13172C3.11989 8 4.07308 7.63423 4.80758 6.97318L9.66437 2.60207C10.0447 2.25979 10.622 2.2598 11.0023 2.60207L15.8591 6.97318C16.5936 7.63423 17.5468 8 18.5349 8H20V9H18.5349C17.2998 9 16.1083 8.54278 15.1901 7.71648L10.3333 3.34539Z",
|
|
302
|
+
className: innerStrokeClassName
|
|
303
|
+
})
|
|
304
|
+
]
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
//#endregion
|
|
308
|
+
exports.CheckIcon = CheckIcon;
|
|
309
|
+
exports.ChevronDownIcon = ChevronDownIcon;
|
|
310
|
+
exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
311
|
+
exports.ChevronRightIcon = ChevronRightIcon;
|
|
312
|
+
exports.ChevronUpDownIcon = ChevronUpDownIcon;
|
|
313
|
+
exports.ChevronUpIcon = ChevronUpIcon;
|
|
314
|
+
exports.CloseIcon = CloseIcon;
|
|
315
|
+
exports.CopyIcon = CopyIcon;
|
|
316
|
+
exports.EyeClosedIcon = EyeClosedIcon;
|
|
317
|
+
exports.EyeIcon = EyeIcon;
|
|
318
|
+
exports.IndeterminateIcon = IndeterminateIcon;
|
|
319
|
+
exports.MinusIcon = MinusIcon;
|
|
320
|
+
exports.PlusIcon = PlusIcon;
|
|
321
|
+
exports.PopupArrowIcon = PopupArrowIcon;
|
|
322
|
+
exports.RatingStarIcon = RatingStarIcon;
|
|
323
|
+
exports.ScrubCursorIcon = ScrubCursorIcon;
|
|
324
|
+
exports.SeparatorMarkIcon = SeparatorMarkIcon;
|
package/dist/icons/ui/Icons.d.ts
CHANGED
|
@@ -1,21 +1,33 @@
|
|
|
1
|
-
import { ComponentProps } from
|
|
1
|
+
import { ComponentProps } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/icons/ui/Icons.d.ts
|
|
2
4
|
type IconProps = ComponentProps<'svg'>;
|
|
3
5
|
type PopupArrowIconProps = IconProps & {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
fillClassName?: string;
|
|
7
|
+
outerStrokeClassName?: string;
|
|
8
|
+
innerStrokeClassName?: string;
|
|
7
9
|
};
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
declare function ChevronLeftIcon(props: IconProps): import("react").JSX.Element;
|
|
11
|
+
declare function ChevronRightIcon(props: IconProps): import("react").JSX.Element;
|
|
12
|
+
declare function ChevronDownIcon(props: IconProps): import("react").JSX.Element;
|
|
13
|
+
declare function ChevronUpIcon(props: IconProps): import("react").JSX.Element;
|
|
14
|
+
declare function ChevronUpDownIcon(props: IconProps): import("react").JSX.Element;
|
|
15
|
+
declare function PlusIcon(props: IconProps): import("react").JSX.Element;
|
|
16
|
+
declare function MinusIcon(props: IconProps): import("react").JSX.Element;
|
|
17
|
+
declare function CheckIcon(props: IconProps): import("react").JSX.Element;
|
|
18
|
+
declare function CloseIcon(props: IconProps): import("react").JSX.Element;
|
|
19
|
+
declare function EyeIcon(props: IconProps): import("react").JSX.Element;
|
|
20
|
+
declare function EyeClosedIcon(props: IconProps): import("react").JSX.Element;
|
|
21
|
+
declare function RatingStarIcon(props: IconProps): import("react").JSX.Element;
|
|
22
|
+
declare function CopyIcon(props: IconProps): import("react").JSX.Element;
|
|
23
|
+
declare function IndeterminateIcon(props: IconProps): import("react").JSX.Element;
|
|
24
|
+
declare function SeparatorMarkIcon(props: IconProps): import("react").JSX.Element;
|
|
25
|
+
declare function ScrubCursorIcon(props: IconProps): import("react").JSX.Element;
|
|
26
|
+
declare function PopupArrowIcon({
|
|
27
|
+
fillClassName,
|
|
28
|
+
outerStrokeClassName,
|
|
29
|
+
innerStrokeClassName,
|
|
30
|
+
...props
|
|
31
|
+
}: PopupArrowIconProps): import("react").JSX.Element;
|
|
32
|
+
//#endregion
|
|
33
|
+
export { CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, CloseIcon, CopyIcon, EyeClosedIcon, EyeIcon, IndeterminateIcon, MinusIcon, PlusIcon, PopupArrowIcon, RatingStarIcon, ScrubCursorIcon, SeparatorMarkIcon };
|