@iyulab/components 0.1.7 → 0.1.8
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/CHANGELOG.md +42 -18
- package/LICENSE +20 -20
- package/README.md +33 -33
- package/dist/assets/icons/arrow-clockwise.svg.js +1 -1
- package/dist/assets/icons/arrow-down.svg.js +1 -1
- package/dist/assets/icons/arrow-up.svg.js +1 -1
- package/dist/assets/icons/ban.svg.js +1 -1
- package/dist/assets/icons/bell-fill.svg.js +1 -1
- package/dist/assets/icons/check-circle-fill.svg.js +1 -1
- package/dist/assets/icons/check-lg.svg.js +1 -1
- package/dist/assets/icons/chevron-down.svg.js +1 -1
- package/dist/assets/icons/chevron-left.svg.js +1 -1
- package/dist/assets/icons/chevron-right.svg.js +1 -1
- package/dist/assets/icons/chevron-up.svg.js +1 -1
- package/dist/assets/icons/copy.svg.js +1 -1
- package/dist/assets/icons/dash-lg.svg.js +1 -1
- package/dist/assets/icons/exclamation-circle-fill.svg.js +1 -1
- package/dist/assets/icons/exclamation-triangle-fill.svg.js +1 -1
- package/dist/assets/icons/eye-slash.svg.js +1 -1
- package/dist/assets/icons/eye.svg.js +1 -1
- package/dist/assets/icons/info-circle-fill.svg.js +1 -1
- package/dist/assets/icons/layout-sidebar.svg.js +1 -1
- package/dist/assets/icons/lightbulb-fill.svg.js +1 -1
- package/dist/assets/icons/lightbulb-off.svg.js +1 -1
- package/dist/assets/icons/lightbulb.svg.js +1 -1
- package/dist/assets/icons/mic-fill.svg.js +1 -1
- package/dist/assets/icons/mic-mute-fill.svg.js +1 -1
- package/dist/assets/icons/paperclip.svg.js +1 -1
- package/dist/assets/icons/pencil-square.svg.js +1 -1
- package/dist/assets/icons/plus-lg.svg.js +1 -1
- package/dist/assets/icons/search.svg.js +1 -1
- package/dist/assets/icons/speedometer.svg.js +1 -1
- package/dist/assets/icons/x-lg.svg.js +1 -1
- package/dist/assets/styles/dark.css +129 -129
- package/dist/assets/styles/dark.css.js +1 -1
- package/dist/assets/styles/light.css +129 -129
- package/dist/assets/styles/light.css.js +1 -1
- package/dist/components/BaseElement.styles.js +1 -1
- package/dist/components/FloatingElement.d.ts +31 -19
- package/dist/components/FloatingElement.js +46 -34
- package/dist/components/FloatingElement.styles.js +5 -4
- package/dist/components/ModalElement.d.ts +70 -0
- package/dist/components/ModalElement.js +144 -0
- package/dist/components/ModalElement.styles.js +29 -0
- package/dist/components/alert/{Alert.d.ts → UAlert.component.d.ts} +1 -1
- package/dist/components/alert/{Alert.js → UAlert.component.js} +20 -18
- package/dist/components/alert/UAlert.d.ts +8 -0
- package/dist/components/alert/UAlert.js +5 -0
- package/dist/components/alert/{Alert.styles.js → UAlert.styles.js} +1 -3
- package/dist/components/button/{Button.d.ts → UButton.component.d.ts} +1 -1
- package/dist/components/button/{Button.js → UButton.component.js} +7 -7
- package/dist/components/button/UButton.d.ts +7 -0
- package/dist/components/button/UButton.js +5 -0
- package/dist/components/copy-button/{CopyButton.d.ts → UCopyButton.component.d.ts} +1 -1
- package/dist/components/copy-button/{CopyButton.js → UCopyButton.component.js} +10 -10
- package/dist/components/copy-button/UCopyButton.d.ts +7 -0
- package/dist/components/copy-button/UCopyButton.js +5 -0
- package/dist/components/dialog/UDialog.component.d.ts +15 -0
- package/dist/components/dialog/UDialog.component.js +65 -0
- package/dist/components/dialog/UDialog.d.ts +7 -0
- package/dist/components/dialog/UDialog.js +5 -0
- package/dist/components/dialog/{Dialog.styles.js → UDialog.styles.js} +14 -29
- package/dist/components/divider/{Divider.d.ts → UDivider.component.d.ts} +1 -1
- package/dist/components/divider/{Divider.js → UDivider.component.js} +6 -6
- package/dist/components/divider/UDivider.d.ts +7 -0
- package/dist/components/divider/UDivider.js +5 -0
- package/dist/components/drawer/UDrawer.component.d.ts +16 -0
- package/dist/components/drawer/UDrawer.component.js +59 -0
- package/dist/components/drawer/UDrawer.d.ts +8 -0
- package/dist/components/drawer/UDrawer.js +5 -0
- package/dist/components/drawer/UDrawer.styles.js +82 -0
- package/dist/components/form/{Form.d.ts → UForm.component.d.ts} +2 -2
- package/dist/components/form/{Form.js → UForm.component.js} +14 -12
- package/dist/components/form/UForm.d.ts +7 -0
- package/dist/components/form/UForm.js +5 -0
- package/dist/components/icon/{Icon.d.ts → UIcon.component.d.ts} +5 -4
- package/dist/components/icon/{Icon.js → UIcon.component.js} +9 -10
- package/dist/components/icon/UIcon.d.ts +8 -0
- package/dist/components/icon/UIcon.js +5 -0
- package/dist/components/icon-button/{IconButton.d.ts → UIconButton.component.d.ts} +3 -2
- package/dist/components/icon-button/{IconButton.js → UIconButton.component.js} +15 -15
- package/dist/components/icon-button/UIconButton.d.ts +7 -0
- package/dist/components/icon-button/UIconButton.js +5 -0
- package/dist/components/input/{Input.d.ts → UInput.component.d.ts} +14 -10
- package/dist/components/input/{Input.js → UInput.component.js} +71 -76
- package/dist/components/input/UInput.d.ts +7 -0
- package/dist/components/input/UInput.js +5 -0
- package/dist/components/input/{Input.styles.js → UInput.styles.js} +27 -24
- package/dist/components/menu/UMenu.component.d.ts +70 -0
- package/dist/components/menu/UMenu.component.js +327 -0
- package/dist/components/menu/UMenu.d.ts +8 -0
- package/dist/components/menu/UMenu.js +5 -0
- package/dist/components/menu/UMenu.styles.js +39 -0
- package/dist/components/menu-item/UMenuItem.component.d.ts +19 -0
- package/dist/components/menu-item/UMenuItem.component.js +96 -0
- package/dist/components/menu-item/UMenuItem.d.ts +7 -0
- package/dist/components/menu-item/UMenuItem.js +5 -0
- package/dist/components/menu-item/UMenuItem.styles.js +65 -0
- package/dist/components/progress-bar/{ProgressBar.d.ts → UProgressBar.component.d.ts} +1 -1
- package/dist/components/progress-bar/{ProgressBar.js → UProgressBar.component.js} +10 -10
- package/dist/components/progress-bar/UProgressBar.d.ts +7 -0
- package/dist/components/progress-bar/UProgressBar.js +5 -0
- package/dist/components/progress-ring/{ProgressRing.d.ts → UProgressRing.component.d.ts} +1 -1
- package/dist/components/progress-ring/{ProgressRing.js → UProgressRing.component.js} +9 -9
- package/dist/components/progress-ring/UProgressRing.d.ts +8 -0
- package/dist/components/progress-ring/UProgressRing.js +5 -0
- package/dist/components/skeleton/USkeleton.component.d.ts +22 -0
- package/dist/components/skeleton/USkeleton.component.js +58 -0
- package/dist/components/skeleton/USkeleton.d.ts +8 -0
- package/dist/components/skeleton/USkeleton.js +5 -0
- package/dist/components/skeleton/USkeleton.styles.js +74 -0
- package/dist/components/spinner/{Spinner.d.ts → USpinner.component.d.ts} +1 -1
- package/dist/components/spinner/{Spinner.js → USpinner.component.js} +3 -3
- package/dist/components/spinner/USpinner.d.ts +7 -0
- package/dist/components/spinner/USpinner.js +5 -0
- package/dist/components/split-panel/{SplitPanel.d.ts → USplitPanel.component.d.ts} +1 -1
- package/dist/components/split-panel/{SplitPanel.js → USplitPanel.component.js} +13 -13
- package/dist/components/split-panel/USplitPanel.d.ts +7 -0
- package/dist/components/split-panel/USplitPanel.js +5 -0
- package/dist/components/tooltip/{Tooltip.d.ts → UTooltip.component.d.ts} +6 -7
- package/dist/components/tooltip/{Tooltip.js → UTooltip.component.js} +12 -16
- package/dist/components/tooltip/UTooltip.d.ts +7 -0
- package/dist/components/tooltip/UTooltip.js +5 -0
- package/dist/components/tooltip/{Tooltip.styles.js → UTooltip.styles.js} +1 -0
- package/dist/components/tree/{Tree.d.ts → UTree.component.d.ts} +4 -4
- package/dist/components/tree/{Tree.js → UTree.component.js} +10 -10
- package/dist/components/tree/UTree.d.ts +7 -0
- package/dist/components/tree/UTree.js +5 -0
- package/dist/components/tree/UTree.styles.d.ts +1 -0
- package/dist/components/tree/{Tree.styles.js → UTree.styles.js} +0 -1
- package/dist/components/tree-item/{TreeItem.d.ts → UTreeItem.component.d.ts} +2 -2
- package/dist/components/tree-item/{TreeItem.js → UTreeItem.component.js} +15 -15
- package/dist/components/tree-item/UTreeItem.d.ts +7 -0
- package/dist/components/tree-item/UTreeItem.js +5 -0
- package/dist/index.d.ts +29 -2
- package/dist/index.js +40 -42
- package/dist/internals/attribute-converters.d.ts +5 -3
- package/dist/internals/node-helpers.d.ts +9 -9
- package/dist/internals/node-helpers.js +2 -2
- package/dist/utilities/icons.js +1 -4
- package/dist/utilities/notifier.d.ts +1 -1
- package/dist/utilities/notifier.js +3 -3
- package/package.json +60 -59
- package/dist/components/alert/index.d.ts +0 -7
- package/dist/components/alert/index.js +0 -5
- package/dist/components/button/index.d.ts +0 -7
- package/dist/components/button/index.js +0 -5
- package/dist/components/context-menu/ContextMenu.d.ts +0 -29
- package/dist/components/context-menu/ContextMenu.js +0 -148
- package/dist/components/context-menu/ContextMenu.styles.js +0 -15
- package/dist/components/context-menu/index.d.ts +0 -7
- package/dist/components/context-menu/index.js +0 -5
- package/dist/components/copy-button/index.d.ts +0 -7
- package/dist/components/copy-button/index.js +0 -5
- package/dist/components/dialog/Dialog.d.ts +0 -37
- package/dist/components/dialog/Dialog.js +0 -160
- package/dist/components/dialog/index.d.ts +0 -7
- package/dist/components/dialog/index.js +0 -5
- package/dist/components/divider/index.d.ts +0 -7
- package/dist/components/divider/index.js +0 -5
- package/dist/components/dropdown-menu/DropdownMenu.d.ts +0 -27
- package/dist/components/dropdown-menu/DropdownMenu.js +0 -135
- package/dist/components/dropdown-menu/DropdownMenu.styles.js +0 -15
- package/dist/components/dropdown-menu/index.d.ts +0 -7
- package/dist/components/dropdown-menu/index.js +0 -5
- package/dist/components/form/index.d.ts +0 -7
- package/dist/components/form/index.js +0 -5
- package/dist/components/icon/index.d.ts +0 -7
- package/dist/components/icon/index.js +0 -5
- package/dist/components/icon-button/index.d.ts +0 -7
- package/dist/components/icon-button/index.js +0 -5
- package/dist/components/index.d.ts +0 -20
- package/dist/components/input/index.d.ts +0 -7
- package/dist/components/input/index.js +0 -5
- package/dist/components/menu/Menu.d.ts +0 -25
- package/dist/components/menu/Menu.js +0 -168
- package/dist/components/menu/Menu.styles.js +0 -21
- package/dist/components/menu/index.d.ts +0 -7
- package/dist/components/menu/index.js +0 -5
- package/dist/components/menu-item/MenuItem.d.ts +0 -36
- package/dist/components/menu-item/MenuItem.js +0 -267
- package/dist/components/menu-item/MenuItem.styles.js +0 -70
- package/dist/components/menu-item/index.d.ts +0 -7
- package/dist/components/menu-item/index.js +0 -5
- package/dist/components/progress-bar/index.d.ts +0 -7
- package/dist/components/progress-bar/index.js +0 -5
- package/dist/components/progress-ring/index.d.ts +0 -7
- package/dist/components/progress-ring/index.js +0 -5
- package/dist/components/spinner/index.d.ts +0 -7
- package/dist/components/spinner/index.js +0 -5
- package/dist/components/split-panel/index.d.ts +0 -7
- package/dist/components/split-panel/index.js +0 -5
- package/dist/components/tooltip/index.d.ts +0 -7
- package/dist/components/tooltip/index.js +0 -5
- package/dist/components/tree/index.d.ts +0 -3
- package/dist/components/tree/index.js +0 -5
- package/dist/components/tree-item/index.d.ts +0 -3
- package/dist/components/tree-item/index.js +0 -5
- package/dist/events/index.d.ts +0 -6
- package/dist/integrations/react/UAlert.d.ts +0 -8
- package/dist/integrations/react/UAlert.js +0 -10
- package/dist/integrations/react/UButton.d.ts +0 -8
- package/dist/integrations/react/UButton.js +0 -10
- package/dist/integrations/react/UContextMenu.d.ts +0 -8
- package/dist/integrations/react/UContextMenu.js +0 -10
- package/dist/integrations/react/UCopyButton.d.ts +0 -8
- package/dist/integrations/react/UCopyButton.js +0 -10
- package/dist/integrations/react/UDialog.d.ts +0 -8
- package/dist/integrations/react/UDialog.js +0 -10
- package/dist/integrations/react/UDivider.d.ts +0 -8
- package/dist/integrations/react/UDivider.js +0 -10
- package/dist/integrations/react/UDropdownMenu.d.ts +0 -8
- package/dist/integrations/react/UDropdownMenu.js +0 -10
- package/dist/integrations/react/UForm.d.ts +0 -8
- package/dist/integrations/react/UForm.js +0 -10
- package/dist/integrations/react/UIcon.d.ts +0 -8
- package/dist/integrations/react/UIcon.js +0 -10
- package/dist/integrations/react/UIconButton.d.ts +0 -8
- package/dist/integrations/react/UIconButton.js +0 -10
- package/dist/integrations/react/UInput.d.ts +0 -8
- package/dist/integrations/react/UInput.js +0 -10
- package/dist/integrations/react/UMenu.d.ts +0 -8
- package/dist/integrations/react/UMenu.js +0 -10
- package/dist/integrations/react/UMenuItem.d.ts +0 -8
- package/dist/integrations/react/UMenuItem.js +0 -10
- package/dist/integrations/react/UProgressBar.d.ts +0 -8
- package/dist/integrations/react/UProgressBar.js +0 -10
- package/dist/integrations/react/UProgressRing.d.ts +0 -8
- package/dist/integrations/react/UProgressRing.js +0 -10
- package/dist/integrations/react/USpinner.d.ts +0 -8
- package/dist/integrations/react/USpinner.js +0 -10
- package/dist/integrations/react/USplitPanel.d.ts +0 -8
- package/dist/integrations/react/USplitPanel.js +0 -10
- package/dist/integrations/react/UTooltip.d.ts +0 -8
- package/dist/integrations/react/UTooltip.js +0 -10
- package/dist/integrations/react/UTree.d.ts +0 -8
- package/dist/integrations/react/UTree.js +0 -10
- package/dist/integrations/react/UTreeItem.d.ts +0 -8
- package/dist/integrations/react/UTreeItem.js +0 -10
- package/dist/integrations/react/index.d.ts +0 -27
- package/dist/integrations/react/index.js +0 -20
- package/dist/internals/index.d.ts +0 -3
- package/dist/utilities/decorators.js +0 -28
- package/dist/utilities/index.d.ts +0 -5
- /package/dist/components/{alert/Alert.styles.d.ts → ModalElement.styles.d.ts} +0 -0
- /package/dist/components/{button/Button.styles.d.ts → alert/UAlert.styles.d.ts} +0 -0
- /package/dist/components/{context-menu/ContextMenu.styles.d.ts → button/UButton.styles.d.ts} +0 -0
- /package/dist/components/button/{Button.styles.js → UButton.styles.js} +0 -0
- /package/dist/components/copy-button/{CopyButton.styles.d.ts → UCopyButton.styles.d.ts} +0 -0
- /package/dist/components/copy-button/{CopyButton.styles.js → UCopyButton.styles.js} +0 -0
- /package/dist/components/dialog/{Dialog.styles.d.ts → UDialog.styles.d.ts} +0 -0
- /package/dist/components/divider/{Divider.styles.d.ts → UDivider.styles.d.ts} +0 -0
- /package/dist/components/divider/{Divider.styles.js → UDivider.styles.js} +0 -0
- /package/dist/components/{dropdown-menu/DropdownMenu.styles.d.ts → drawer/UDrawer.styles.d.ts} +0 -0
- /package/dist/components/form/{Form.styles.d.ts → UForm.styles.d.ts} +0 -0
- /package/dist/components/form/{Form.styles.js → UForm.styles.js} +0 -0
- /package/dist/components/icon/{Icon.styles.d.ts → UIcon.styles.d.ts} +0 -0
- /package/dist/components/icon/{Icon.styles.js → UIcon.styles.js} +0 -0
- /package/dist/components/icon-button/{IconButton.styles.d.ts → UIconButton.styles.d.ts} +0 -0
- /package/dist/components/icon-button/{IconButton.styles.js → UIconButton.styles.js} +0 -0
- /package/dist/components/input/{Input.styles.d.ts → UInput.styles.d.ts} +0 -0
- /package/dist/components/menu/{Menu.styles.d.ts → UMenu.styles.d.ts} +0 -0
- /package/dist/components/menu-item/{MenuItem.styles.d.ts → UMenuItem.styles.d.ts} +0 -0
- /package/dist/components/progress-bar/{ProgressBar.styles.d.ts → UProgressBar.styles.d.ts} +0 -0
- /package/dist/components/progress-bar/{ProgressBar.styles.js → UProgressBar.styles.js} +0 -0
- /package/dist/components/progress-ring/{ProgressRing.styles.d.ts → UProgressRing.styles.d.ts} +0 -0
- /package/dist/components/progress-ring/{ProgressRing.styles.js → UProgressRing.styles.js} +0 -0
- /package/dist/components/{spinner/Spinner.styles.d.ts → skeleton/USkeleton.styles.d.ts} +0 -0
- /package/dist/components/{split-panel/SplitPanel.styles.d.ts → spinner/USpinner.styles.d.ts} +0 -0
- /package/dist/components/spinner/{Spinner.styles.js → USpinner.styles.js} +0 -0
- /package/dist/components/{tooltip/Tooltip.styles.d.ts → split-panel/USplitPanel.styles.d.ts} +0 -0
- /package/dist/components/split-panel/{SplitPanel.styles.js → USplitPanel.styles.js} +0 -0
- /package/dist/components/{tree-item/TreeItem.styles.d.ts → tooltip/UTooltip.styles.d.ts} +0 -0
- /package/dist/components/{tree/Tree.styles.d.ts → tree-item/UTreeItem.styles.d.ts} +0 -0
- /package/dist/components/tree-item/{TreeItem.styles.js → UTreeItem.styles.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,43 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 0.1.
|
|
4
|
-
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
|
|
10
|
-
## 0.1.
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.8 (2025-12-18)
|
|
4
|
+
- **Breaking Change**: Added `U` prefix to all component class names (e.g., `Alert` → `UAlert`)
|
|
5
|
+
- **Breaking Change**: Changed file naming convention
|
|
6
|
+
- `{Name}.ts` → `U{Name}.component.ts` (class implementation)
|
|
7
|
+
- `{Name}.styles.ts` → `U{Name}.styles.ts` (styles)
|
|
8
|
+
- `index.ts` → `U{Name}.ts` (element definition)
|
|
9
|
+
|
|
10
|
+
## 0.1.7 (2025-12-13)
|
|
11
|
+
- Added `FloatingElement` base class for popover, tooltip common logic
|
|
12
|
+
- Added `ModalElement` base class for dialog, drawer common logic
|
|
13
|
+
- Added `Drawer` component
|
|
14
|
+
- Added `Skeleton` component
|
|
15
|
+
- Improved `Menu` component with dropdown, contextmenu, submenu support
|
|
16
|
+
- Refactored `Dialog` component based on `ModalElement`
|
|
17
|
+
- Removed `ContextMenu`, `DropdownMenu` (merged into `Menu`)
|
|
18
|
+
|
|
19
|
+
## 0.1.5 (2025-12-10)
|
|
20
|
+
- Improved `Icon` component and refactored icon utilities
|
|
21
|
+
- Improved `Input` component styles and validation
|
|
22
|
+
- Improved `Tooltip`, `Divider`, `SplitPanel` components
|
|
23
|
+
- Improved `notifier` utility
|
|
24
|
+
- Removed `Panel` component
|
|
25
|
+
- Updated theme styles (light/dark)
|
|
26
|
+
|
|
27
|
+
## 0.1.4 (2025-12-05)
|
|
28
|
+
- Fixes some issues
|
|
29
|
+
|
|
30
|
+
## 0.1.3 (2025-11-17)
|
|
31
|
+
- fixed a theme `useBuiltIn` Option, now it works as expected.
|
|
32
|
+
- added `ProgressBar` component to show loading progress at the top of the page.
|
|
33
|
+
|
|
34
|
+
## 0.1.2 (2025-11-13)
|
|
35
|
+
- fixed a type issue in `theme` utility.
|
|
36
|
+
|
|
37
|
+
## 0.1.1 (2025-11-13)
|
|
38
|
+
- added `BrowserStorage` which supports `localStorage` and `cookie` with async methods for getting, setting, and removing items.
|
|
39
|
+
- changed theme `persist` option to `store` option, and fixed some issues.
|
|
40
|
+
- removed `toggle` method from theme utility.
|
|
41
|
+
|
|
42
|
+
## 0.1.0 (2025-11-12)
|
|
19
43
|
- Initial library version release
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) [year] [fullname]
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) [year] [fullname]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
# @iyulab/components
|
|
2
|
-
|
|
3
|
-
Modern web components library built with Lit-Element for building reactive user interfaces.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install @iyulab/components
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Usage
|
|
12
|
-
|
|
13
|
-
### Basic Import
|
|
14
|
-
|
|
15
|
-
```js
|
|
16
|
-
import "@iyulab/components";
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## Links
|
|
20
|
-
|
|
21
|
-
- [GitHub Repository](https://github.com/iyulab/u-components)
|
|
22
|
-
- [NPM Package](https://www.npmjs.com/package/@iyulab/components)
|
|
23
|
-
|
|
24
|
-
> 📝 **Note**: Demo site is coming soon!
|
|
25
|
-
|
|
26
|
-
## Core Dependencies
|
|
27
|
-
|
|
28
|
-
- [lit](https://www.npmjs.com/package/lit) - Fast web components framework
|
|
29
|
-
- [@floating-ui/dom](https://www.npmjs.com/package/@floating-ui/dom) - Positioning library for tooltips and popovers
|
|
30
|
-
|
|
31
|
-
## License
|
|
32
|
-
|
|
33
|
-
MIT © [iyulab](https://www.iyulab.com)
|
|
1
|
+
# @iyulab/components
|
|
2
|
+
|
|
3
|
+
Modern web components library built with Lit-Element for building reactive user interfaces.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @iyulab/components
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Basic Import
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
import "@iyulab/components";
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Links
|
|
20
|
+
|
|
21
|
+
- [GitHub Repository](https://github.com/iyulab/u-components)
|
|
22
|
+
- [NPM Package](https://www.npmjs.com/package/@iyulab/components)
|
|
23
|
+
|
|
24
|
+
> 📝 **Note**: Demo site is coming soon!
|
|
25
|
+
|
|
26
|
+
## Core Dependencies
|
|
27
|
+
|
|
28
|
+
- [lit](https://www.npmjs.com/package/lit) - Fast web components framework
|
|
29
|
+
- [@floating-ui/dom](https://www.npmjs.com/package/@floating-ui/dom) - Positioning library for tooltips and popovers
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
MIT © [iyulab](https://www.iyulab.com)
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const arrowClockwise = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const arrowClockwise = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2z\"/>\n <path d=\"M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { arrowClockwise as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const arrowDown = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const arrowDown = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { arrowDown as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const arrowUp = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const arrowUp = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { arrowUp as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const ban = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const ban = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M15 8a6.97 6.97 0 0 0-1.71-4.584l-9.874 9.875A7 7 0 0 0 15 8M2.71 12.584l9.874-9.875a7 7 0 0 0-9.874 9.874ZM16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { ban as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const bellFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const bellFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2m.995-14.901a1 1 0 1 0-1.99 0A5 5 0 0 0 3 6c0 1.098-.5 6-2 7h14c-1.5-1-2-5.902-2-7 0-2.42-1.72-4.44-4.005-4.901\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { bellFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const checkCircleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const checkCircleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { checkCircleFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const checkLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const checkLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { checkLg as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const chevronDown = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const chevronDown = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708\"></path>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { chevronDown as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const chevronLeft = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const chevronLeft = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { chevronLeft as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const chevronRight = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const chevronRight = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { chevronRight as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const chevronUp = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const chevronUp = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z\"></path>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { chevronUp as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const copy = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const copy = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M4 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM2 5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1h1v1a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1v1z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { copy as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const dashLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const dashLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { dashLg as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const exclamationCircleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const exclamationCircleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4m.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { exclamationCircleFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const exclamationTriangleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const exclamationTriangleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { exclamationTriangleFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const eyeSlash = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const eyeSlash = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M13.359 11.238C15.06 9.72 16 8 16 8s-3-5.5-8-5.5a7 7 0 0 0-2.79.588l.77.771A6 6 0 0 1 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755q-.247.248-.517.486z\"/>\n <path d=\"M11.297 9.176a3.5 3.5 0 0 0-4.474-4.474l.823.823a2.5 2.5 0 0 1 2.829 2.829zm-2.943 1.299.822.822a3.5 3.5 0 0 1-4.474-4.474l.823.823a2.5 2.5 0 0 0 2.829 2.829\"/>\n <path d=\"M3.35 5.47q-.27.24-.518.487A13 13 0 0 0 1.172 8l.195.288c.335.48.83 1.12 1.465 1.755C4.121 11.332 5.881 12.5 8 12.5c.716 0 1.39-.133 2.02-.36l.77.772A7 7 0 0 1 8 13.5C3 13.5 0 8 0 8s.939-1.721 2.641-3.238l.708.709zm10.296 8.884-12-12 .708-.708 12 12z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { eyeSlash as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const eye = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const eye = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8M1.173 8a13 13 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5s3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5s-3.879-1.168-5.168-2.457A13 13 0 0 1 1.172 8z\"/>\n <path d=\"M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { eye as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const infoCircleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const infoCircleFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { infoCircleFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const layoutSidebar = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const layoutSidebar = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M0 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5-1v12h9a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zM4 2H2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h2z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { layoutSidebar as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const lightbulbFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const lightbulbFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13h-5a.5.5 0 0 1-.46-.302l-.761-1.77a2 2 0 0 0-.453-.618A5.98 5.98 0 0 1 2 6m3 8.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1-.5-.5\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { lightbulbFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const lightbulbOff = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const lightbulbOff = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M2.23 4.35A6 6 0 0 0 2 6c0 1.691.7 3.22 1.826 4.31.203.196.359.4.453.619l.762 1.769A.5.5 0 0 0 5.5 13a.5.5 0 0 0 0 1 .5.5 0 0 0 0 1l.224.447a1 1 0 0 0 .894.553h2.764a1 1 0 0 0 .894-.553L10.5 15a.5.5 0 0 0 0-1 .5.5 0 0 0 0-1 .5.5 0 0 0 .288-.091L9.878 12H5.83l-.632-1.467a3 3 0 0 0-.676-.941 4.98 4.98 0 0 1-1.455-4.405zm1.588-2.653.708.707a5 5 0 0 1 7.07 7.07l.707.707a6 6 0 0 0-8.484-8.484zm-2.172-.051a.5.5 0 0 1 .708 0l12 12a.5.5 0 0 1-.708.708l-12-12a.5.5 0 0 1 0-.708\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { lightbulbOff as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const lightbulb = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const lightbulb = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a2 2 0 0 0-.453-.618A5.98 5.98 0 0 1 2 6m6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { lightbulb as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const micFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const micFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0z\"/>\n <path d=\"M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { micFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const micMuteFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const micMuteFill = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M13 8c0 .564-.094 1.107-.266 1.613l-.814-.814A4 4 0 0 0 12 8V7a.5.5 0 0 1 1 0zm-5 4c.818 0 1.578-.245 2.212-.667l.718.719a5 5 0 0 1-2.43.923V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 1 0v1a4 4 0 0 0 4 4m3-9v4.879L5.158 2.037A3.001 3.001 0 0 1 11 3\"/>\n <path d=\"M9.486 10.607 5 6.12V8a3 3 0 0 0 4.486 2.607m-7.84-9.253 12 12 .708-.708-12-12z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { micMuteFill as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const paperclip = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const paperclip = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M4.5 3a2.5 2.5 0 0 1 5 0v9a1.5 1.5 0 0 1-3 0V5a.5.5 0 0 1 1 0v7a.5.5 0 0 0 1 0V3a1.5 1.5 0 1 0-3 0v9a2.5 2.5 0 0 0 5 0V5a.5.5 0 0 1 1 0v7a3.5 3.5 0 1 1-7 0z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { paperclip as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const pencilSquare = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const pencilSquare = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z\"/>\n <path fill-rule=\"evenodd\" d=\"M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { pencilSquare as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const plusLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const plusLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path fill-rule=\"evenodd\" d=\"M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { plusLg as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const search = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const search = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { search as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const speedometer = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const speedometer = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M8 2a.5.5 0 0 1 .5.5V4a.5.5 0 0 1-1 0V2.5A.5.5 0 0 1 8 2M3.732 3.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707M2 8a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8m9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5m.754-4.246a.39.39 0 0 0-.527-.02L7.547 7.31A.91.91 0 1 0 8.85 8.569l3.434-4.297a.39.39 0 0 0-.029-.518z\"/>\n <path fill-rule=\"evenodd\" d=\"M6.664 15.889A8 8 0 1 1 9.336.11a8 8 0 0 1-2.672 15.78zm-4.665-4.283A11.95 11.95 0 0 1 8 10c2.186 0 4.236.585 6.001 1.606a7 7 0 1 0-12.002 0\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { speedometer as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const xLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\
|
|
1
|
+
const xLg = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\n</svg>";
|
|
2
2
|
|
|
3
3
|
export { xLg as default };
|