@iyulab/components 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/LICENSE +21 -0
- package/README.md +33 -0
- package/dist/assets/icons/arrow-clockwise.svg.js +7 -0
- package/dist/assets/icons/arrow-down.svg.js +6 -0
- package/dist/assets/icons/arrow-up.svg.js +6 -0
- package/dist/assets/icons/ban.svg.js +6 -0
- package/dist/assets/icons/bell-fill.svg.js +6 -0
- package/dist/assets/icons/check-circle-fill.svg.js +6 -0
- package/dist/assets/icons/check-lg.svg.js +6 -0
- package/dist/assets/icons/chevron-down.svg.js +6 -0
- package/dist/assets/icons/chevron-left.svg.js +6 -0
- package/dist/assets/icons/chevron-right.svg.js +6 -0
- package/dist/assets/icons/chevron-up.svg.js +6 -0
- package/dist/assets/icons/copy.svg.js +6 -0
- package/dist/assets/icons/dash-lg.svg.js +6 -0
- package/dist/assets/icons/exclamation-circle-fill.svg.js +6 -0
- package/dist/assets/icons/exclamation-triangle-fill.svg.js +6 -0
- package/dist/assets/icons/eye-slash.svg.js +8 -0
- package/dist/assets/icons/eye.svg.js +7 -0
- package/dist/assets/icons/info-circle-fill.svg.js +6 -0
- package/dist/assets/icons/layout-sidebar.svg.js +6 -0
- package/dist/assets/icons/lightbulb-fill.svg.js +6 -0
- package/dist/assets/icons/lightbulb-off.svg.js +6 -0
- package/dist/assets/icons/lightbulb.svg.js +6 -0
- package/dist/assets/icons/mic-fill.svg.js +7 -0
- package/dist/assets/icons/mic-mute-fill.svg.js +7 -0
- package/dist/assets/icons/paperclip.svg.js +6 -0
- package/dist/assets/icons/pencil-square.svg.js +7 -0
- package/dist/assets/icons/plus-lg.svg.js +6 -0
- package/dist/assets/icons/search.svg.js +6 -0
- package/dist/assets/icons/speedometer.svg.js +7 -0
- package/dist/assets/icons/x-lg.svg.js +6 -0
- package/dist/assets/styles/dark.css +126 -0
- package/dist/assets/styles/dark.css.js +4 -0
- package/dist/assets/styles/light.css +127 -0
- package/dist/assets/styles/light.css.js +4 -0
- package/dist/components/BaseElement.d.ts +33 -0
- package/dist/components/BaseElement.js +49 -0
- package/dist/components/BaseElement.styles.d.ts +1 -0
- package/dist/components/BaseElement.styles.js +29 -0
- package/dist/components/alert/Alert.d.ts +36 -0
- package/dist/components/alert/Alert.js +107 -0
- package/dist/components/alert/Alert.styles.d.ts +1 -0
- package/dist/components/alert/Alert.styles.js +114 -0
- package/dist/components/alert/index.d.ts +7 -0
- package/dist/components/button/Button.d.ts +16 -0
- package/dist/components/button/Button.js +45 -0
- package/dist/components/button/Button.styles.d.ts +1 -0
- package/dist/components/button/Button.styles.js +89 -0
- package/dist/components/button/index.d.ts +7 -0
- package/dist/components/context-menu/ContextMenu.d.ts +48 -0
- package/dist/components/context-menu/ContextMenu.js +142 -0
- package/dist/components/context-menu/ContextMenu.styles.d.ts +1 -0
- package/dist/components/context-menu/ContextMenu.styles.js +40 -0
- package/dist/components/context-menu/index.d.ts +7 -0
- package/dist/components/copy-button/CopyButton.d.ts +15 -0
- package/dist/components/copy-button/CopyButton.styles.d.ts +1 -0
- package/dist/components/copy-button/index.d.ts +7 -0
- package/dist/components/dialog/Dialog.d.ts +30 -0
- package/dist/components/dialog/Dialog.js +66 -0
- package/dist/components/dialog/Dialog.styles.d.ts +1 -0
- package/dist/components/dialog/Dialog.styles.js +32 -0
- package/dist/components/dialog/index.d.ts +7 -0
- package/dist/components/form/Form.d.ts +22 -0
- package/dist/components/form/Form.js +53 -0
- package/dist/components/form/Form.styles.d.ts +1 -0
- package/dist/components/form/Form.styles.js +18 -0
- package/dist/components/form/index.d.ts +7 -0
- package/dist/components/icon/Icon.d.ts +35 -0
- package/dist/components/icon/Icon.js +63 -0
- package/dist/components/icon/Icon.styles.d.ts +1 -0
- package/dist/components/icon/Icon.styles.js +17 -0
- package/dist/components/icon/index.d.ts +7 -0
- package/dist/components/icon-button/IconButton.d.ts +19 -0
- package/dist/components/icon-button/IconButton.js +51 -0
- package/dist/components/icon-button/IconButton.styles.d.ts +1 -0
- package/dist/components/icon-button/IconButton.styles.js +69 -0
- package/dist/components/icon-button/index.d.ts +7 -0
- package/dist/components/index.d.ts +14 -0
- package/dist/components/input/Input.d.ts +73 -0
- package/dist/components/input/Input.js +193 -0
- package/dist/components/input/Input.styles.d.ts +1 -0
- package/dist/components/input/Input.styles.js +149 -0
- package/dist/components/input/index.d.ts +7 -0
- package/dist/components/menu/Menu.d.ts +36 -0
- package/dist/components/menu/Menu.js +103 -0
- package/dist/components/menu/Menu.styles.d.ts +1 -0
- package/dist/components/menu/Menu.styles.js +33 -0
- package/dist/components/menu/index.d.ts +7 -0
- package/dist/components/menu-item/MenuItem.d.ts +27 -0
- package/dist/components/menu-item/MenuItem.js +68 -0
- package/dist/components/menu-item/MenuItem.styles.d.ts +1 -0
- package/dist/components/menu-item/MenuItem.styles.js +64 -0
- package/dist/components/menu-item/index.d.ts +7 -0
- package/dist/components/panel/Panel.d.ts +10 -0
- package/dist/components/panel/Panel.js +20 -0
- package/dist/components/panel/Panel.styles.d.ts +1 -0
- package/dist/components/panel/Panel.styles.js +12 -0
- package/dist/components/panel/index.d.ts +7 -0
- package/dist/components/progress-ring/ProgressRing.d.ts +31 -0
- package/dist/components/progress-ring/ProgressRing.js +85 -0
- package/dist/components/progress-ring/ProgressRing.styles.d.ts +1 -0
- package/dist/components/progress-ring/ProgressRing.styles.js +53 -0
- package/dist/components/progress-ring/index.d.ts +7 -0
- package/dist/components/spinner/Spinner.d.ts +9 -0
- package/dist/components/spinner/Spinner.js +22 -0
- package/dist/components/spinner/Spinner.styles.d.ts +1 -0
- package/dist/components/spinner/Spinner.styles.js +57 -0
- package/dist/components/spinner/index.d.ts +7 -0
- package/dist/components/split-panel/SplitPanel.d.ts +26 -0
- package/dist/components/split-panel/SplitPanel.js +86 -0
- package/dist/components/split-panel/SplitPanel.styles.d.ts +1 -0
- package/dist/components/split-panel/SplitPanel.styles.js +19 -0
- package/dist/components/split-panel/SplitPanel.types.d.ts +2 -0
- package/dist/components/split-panel/Splitter.d.ts +17 -0
- package/dist/components/split-panel/Splitter.js +39 -0
- package/dist/components/split-panel/Splitter.styles.d.ts +1 -0
- package/dist/components/split-panel/Splitter.styles.js +45 -0
- package/dist/components/split-panel/index.d.ts +7 -0
- package/dist/components/tooltip/Tooltip.d.ts +44 -0
- package/dist/components/tooltip/Tooltip.js +130 -0
- package/dist/components/tooltip/Tooltip.styles.d.ts +1 -0
- package/dist/components/tooltip/Tooltip.styles.js +36 -0
- package/dist/components/tooltip/index.d.ts +7 -0
- package/dist/events/UChangeEvent.d.ts +6 -0
- package/dist/events/UHideEvent.d.ts +6 -0
- package/dist/events/UInputEvent.d.ts +6 -0
- package/dist/events/UResizeEvent.d.ts +6 -0
- package/dist/events/USelectEvent.d.ts +6 -0
- package/dist/events/UShowEvent.d.ts +6 -0
- package/dist/events/index.d.ts +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +40 -0
- package/dist/integrations/react/UAlert.d.ts +8 -0
- package/dist/integrations/react/UAlert.js +10 -0
- package/dist/integrations/react/UButton.d.ts +8 -0
- package/dist/integrations/react/UButton.js +10 -0
- package/dist/integrations/react/UContextMenu.d.ts +8 -0
- package/dist/integrations/react/UContextMenu.js +10 -0
- package/dist/integrations/react/UCopyButton.d.ts +8 -0
- package/dist/integrations/react/UCopyButton.js +10 -0
- package/dist/integrations/react/UDialog.d.ts +8 -0
- package/dist/integrations/react/UDialog.js +10 -0
- package/dist/integrations/react/UForm.d.ts +8 -0
- package/dist/integrations/react/UForm.js +10 -0
- package/dist/integrations/react/UIcon.d.ts +8 -0
- package/dist/integrations/react/UIcon.js +10 -0
- package/dist/integrations/react/UIconButton.d.ts +8 -0
- package/dist/integrations/react/UIconButton.js +10 -0
- package/dist/integrations/react/UInput.d.ts +8 -0
- package/dist/integrations/react/UInput.js +10 -0
- package/dist/integrations/react/UMenu.d.ts +8 -0
- package/dist/integrations/react/UMenu.js +10 -0
- package/dist/integrations/react/UMenuItem.d.ts +8 -0
- package/dist/integrations/react/UMenuItem.js +10 -0
- package/dist/integrations/react/UPanel.d.ts +8 -0
- package/dist/integrations/react/UPanel.js +10 -0
- package/dist/integrations/react/UProgressRing.d.ts +8 -0
- package/dist/integrations/react/UProgressRing.js +10 -0
- package/dist/integrations/react/USpinner.d.ts +8 -0
- package/dist/integrations/react/USpinner.js +10 -0
- package/dist/integrations/react/USplitPanel.d.ts +8 -0
- package/dist/integrations/react/USplitPanel.js +10 -0
- package/dist/integrations/react/UTooltip.d.ts +8 -0
- package/dist/integrations/react/UTooltip.js +10 -0
- package/dist/integrations/react/index.d.ts +23 -0
- package/dist/integrations/react/index.js +16 -0
- package/dist/internals/attribute-converters.d.ts +10 -0
- package/dist/internals/attribute-converters.js +12 -0
- package/dist/internals/icons.d.ts +6 -0
- package/dist/internals/icons.js +67 -0
- package/dist/internals/index.d.ts +4 -0
- package/dist/internals/node-helpers.d.ts +12 -0
- package/dist/internals/node-helpers.js +21 -0
- package/dist/internals/react-wrapper.d.ts +21 -0
- package/dist/utilities/decorators.d.ts +28 -0
- package/dist/utilities/decorators.js +21 -0
- package/dist/utilities/index.d.ts +4 -0
- package/dist/utilities/notifier.d.ts +26 -0
- package/dist/utilities/notifier.js +29 -0
- package/dist/utilities/storage.d.ts +60 -0
- package/dist/utilities/storage.js +120 -0
- package/dist/utilities/theme.d.ts +54 -0
- package/dist/utilities/theme.js +108 -0
- package/package.json +58 -0
package/CHANGELOG.md
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +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
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +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)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const r = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
<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"/>\r
|
|
4
|
+
</svg>`;
|
|
5
|
+
export {
|
|
6
|
+
r as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const r = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
r as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const r = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
r as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<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"/>
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<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"/>
|
|
3
|
+
<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"/>
|
|
4
|
+
<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"/>
|
|
5
|
+
</svg>`;
|
|
6
|
+
export {
|
|
7
|
+
a as default
|
|
8
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const s = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<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"/>
|
|
3
|
+
<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"/>
|
|
4
|
+
</svg>`;
|
|
5
|
+
export {
|
|
6
|
+
s as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const l = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
l as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<path d="M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0z"/>\r
|
|
3
|
+
<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"/>\r
|
|
4
|
+
</svg>`;
|
|
5
|
+
export {
|
|
6
|
+
a as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
<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"/>\r
|
|
4
|
+
</svg>`;
|
|
5
|
+
export {
|
|
6
|
+
a as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
<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"/>\r
|
|
4
|
+
</svg>`;
|
|
5
|
+
export {
|
|
6
|
+
a as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
<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"/>\r
|
|
4
|
+
</svg>`;
|
|
5
|
+
export {
|
|
6
|
+
a as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const a = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">\r
|
|
2
|
+
<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"/>\r
|
|
3
|
+
</svg>`;
|
|
4
|
+
export {
|
|
5
|
+
a as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
:root[theme="dark"] {
|
|
2
|
+
color-scheme: dark;
|
|
3
|
+
|
|
4
|
+
/* Neutral Colors */
|
|
5
|
+
--u-neutral-0: #000000;
|
|
6
|
+
--u-neutral-50: #0A0A0A;
|
|
7
|
+
--u-neutral-100: #121212;
|
|
8
|
+
--u-neutral-200: #1E1E1E;
|
|
9
|
+
--u-neutral-300: #2A2A2A;
|
|
10
|
+
--u-neutral-400: #3D3D3D;
|
|
11
|
+
--u-neutral-500: #525252;
|
|
12
|
+
--u-neutral-600: #6E6E6E;
|
|
13
|
+
--u-neutral-700: #8A8A8A;
|
|
14
|
+
--u-neutral-800: #B0B0B0;
|
|
15
|
+
--u-neutral-900: #D4D4D4;
|
|
16
|
+
--u-neutral-1000: #FFFFFF;
|
|
17
|
+
|
|
18
|
+
/* Blue Colors */
|
|
19
|
+
--u-blue-0: #0A1E3D;
|
|
20
|
+
--u-blue-100: #1E3A5F;
|
|
21
|
+
--u-blue-200: #2B4F7E;
|
|
22
|
+
--u-blue-300: #3D6B9E;
|
|
23
|
+
--u-blue-400: #5284BE;
|
|
24
|
+
--u-blue-500: #6BA3E3;
|
|
25
|
+
--u-blue-600: #87B8F5;
|
|
26
|
+
--u-blue-700: #A5CDFF;
|
|
27
|
+
--u-blue-800: #C2DEFF;
|
|
28
|
+
--u-blue-900: #DDEEFF;
|
|
29
|
+
--u-blue-1000: #F0F7FF;
|
|
30
|
+
|
|
31
|
+
/* Green Colors */
|
|
32
|
+
--u-green-0: #0D2818;
|
|
33
|
+
--u-green-100: #1A3F2A;
|
|
34
|
+
--u-green-200: #285639;
|
|
35
|
+
--u-green-300: #3A7450;
|
|
36
|
+
--u-green-400: #4E9268;
|
|
37
|
+
--u-green-500: #66B584;
|
|
38
|
+
--u-green-600: #81D19D;
|
|
39
|
+
--u-green-700: #9FE5B5;
|
|
40
|
+
--u-green-800: #BEF2CD;
|
|
41
|
+
--u-green-900: #DDF9E5;
|
|
42
|
+
--u-green-1000: #F0FDF5;
|
|
43
|
+
|
|
44
|
+
/* Yellow Colors */
|
|
45
|
+
--u-yellow-0: #2E2200;
|
|
46
|
+
--u-yellow-100: #4D3A00;
|
|
47
|
+
--u-yellow-200: #6B5200;
|
|
48
|
+
--u-yellow-300: #8A6B00;
|
|
49
|
+
--u-yellow-400: #B08900;
|
|
50
|
+
--u-yellow-500: #D4A712;
|
|
51
|
+
--u-yellow-600: #F5C842;
|
|
52
|
+
--u-yellow-700: #FFE066;
|
|
53
|
+
--u-yellow-800: #FFED99;
|
|
54
|
+
--u-yellow-900: #FFF5CC;
|
|
55
|
+
--u-yellow-1000: #FFFBE6;
|
|
56
|
+
|
|
57
|
+
/* Red Colors */
|
|
58
|
+
--u-red-0: #2E0A0A;
|
|
59
|
+
--u-red-100: #4D1717;
|
|
60
|
+
--u-red-200: #6B2424;
|
|
61
|
+
--u-red-300: #8F3535;
|
|
62
|
+
--u-red-400: #B24848;
|
|
63
|
+
--u-red-500: #D66060;
|
|
64
|
+
--u-red-600: #F57878;
|
|
65
|
+
--u-red-700: #FF9494;
|
|
66
|
+
--u-red-800: #FFB3B3;
|
|
67
|
+
--u-red-900: #FFD2D2;
|
|
68
|
+
--u-red-1000: #FFF0F0;
|
|
69
|
+
|
|
70
|
+
/* Shadow Colors */
|
|
71
|
+
--u-shadow-weak: rgba(0, 0, 0, 0.15);
|
|
72
|
+
--u-shadow-normal: rgba(0, 0, 0, 0.25);
|
|
73
|
+
--u-shadow-medium: rgba(0, 0, 0, 0.35);
|
|
74
|
+
--u-shadow-strong: rgba(0, 0, 0, 0.45);
|
|
75
|
+
--u-shadow-heavy: rgba(0, 0, 0, 0.60);
|
|
76
|
+
|
|
77
|
+
/* background Colors */
|
|
78
|
+
--u-bg-color: var(--u-neutral-100);
|
|
79
|
+
--u-bg-color-inverse: var(--u-neutral-0);
|
|
80
|
+
--u-bg-color-hover: var(--u-neutral-300);
|
|
81
|
+
--u-bg-color-active: var(--u-neutral-400);
|
|
82
|
+
--u-bg-color-disabled: var(--u-neutral-200);
|
|
83
|
+
|
|
84
|
+
--u-panel-bg-color: var(--u-neutral-200);
|
|
85
|
+
--u-overlay-bg-color: rgba(0, 0, 0, 0.7);
|
|
86
|
+
--u-tooltip-bg-color: rgba(255, 255, 255, 0.85);
|
|
87
|
+
|
|
88
|
+
/* border Colors */
|
|
89
|
+
--u-border-color: var(--u-neutral-400);
|
|
90
|
+
--u-border-color-weak: var(--u-neutral-300);
|
|
91
|
+
--u-border-color-strong: var(--u-neutral-500);
|
|
92
|
+
|
|
93
|
+
--u-input-border-color: var(--u-neutral-400);
|
|
94
|
+
--u-input-border-hover: var(--u-neutral-500);
|
|
95
|
+
--u-input-border-focus: var(--u-blue-600);
|
|
96
|
+
|
|
97
|
+
/* text Colors */
|
|
98
|
+
--u-text-color: var(--u-neutral-900);
|
|
99
|
+
--u-text-color-inverse: var(--u-neutral-100);
|
|
100
|
+
--u-text-color-hover: var(--u-blue-600);
|
|
101
|
+
--u-text-color-disabled: var(--u-neutral-500);
|
|
102
|
+
|
|
103
|
+
--u-soft-text-color: var(--u-neutral-700);
|
|
104
|
+
--u-strong-text-color: var(--u-neutral-1000);
|
|
105
|
+
--u-link-text-color: var(--u-blue-700);
|
|
106
|
+
--u-tooltip-text-color: var(--u-neutral-100);
|
|
107
|
+
|
|
108
|
+
/* Icon Colors */
|
|
109
|
+
--u-icon-color: var(--u-neutral-800);
|
|
110
|
+
--u-icon-color-inverse: var(--u-neutral-100);
|
|
111
|
+
--u-icon-color-hover: var(--u-blue-600);
|
|
112
|
+
--u-icon-color-disabled: var(--u-neutral-500);
|
|
113
|
+
|
|
114
|
+
/* Scrollbar Colors */
|
|
115
|
+
--u-scrollbar-color: var(--u-neutral-500);
|
|
116
|
+
--u-scrollbar-color-hover: var(--u-neutral-600);
|
|
117
|
+
--u-scrollbar-track-color: transparent;
|
|
118
|
+
|
|
119
|
+
/* Font Styles */
|
|
120
|
+
--u-font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
121
|
+
--u-font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Monaco, 'Courier New', monospace;
|
|
122
|
+
--u-font-serif: 'Georgia', 'Times New Roman', Times, serif;
|
|
123
|
+
--u-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
|
|
124
|
+
--u-font-modern: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
125
|
+
--u-font-rounded: 'Nunito', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
126
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const e = ':root[theme=dark]{color-scheme:dark;--u-neutral-0: #000000;--u-neutral-50: #0A0A0A;--u-neutral-100: #121212;--u-neutral-200: #1E1E1E;--u-neutral-300: #2A2A2A;--u-neutral-400: #3D3D3D;--u-neutral-500: #525252;--u-neutral-600: #6E6E6E;--u-neutral-700: #8A8A8A;--u-neutral-800: #B0B0B0;--u-neutral-900: #D4D4D4;--u-neutral-1000: #FFFFFF;--u-blue-0: #0A1E3D;--u-blue-100: #1E3A5F;--u-blue-200: #2B4F7E;--u-blue-300: #3D6B9E;--u-blue-400: #5284BE;--u-blue-500: #6BA3E3;--u-blue-600: #87B8F5;--u-blue-700: #A5CDFF;--u-blue-800: #C2DEFF;--u-blue-900: #DDEEFF;--u-blue-1000: #F0F7FF;--u-green-0: #0D2818;--u-green-100: #1A3F2A;--u-green-200: #285639;--u-green-300: #3A7450;--u-green-400: #4E9268;--u-green-500: #66B584;--u-green-600: #81D19D;--u-green-700: #9FE5B5;--u-green-800: #BEF2CD;--u-green-900: #DDF9E5;--u-green-1000: #F0FDF5;--u-yellow-0: #2E2200;--u-yellow-100: #4D3A00;--u-yellow-200: #6B5200;--u-yellow-300: #8A6B00;--u-yellow-400: #B08900;--u-yellow-500: #D4A712;--u-yellow-600: #F5C842;--u-yellow-700: #FFE066;--u-yellow-800: #FFED99;--u-yellow-900: #FFF5CC;--u-yellow-1000: #FFFBE6;--u-red-0: #2E0A0A;--u-red-100: #4D1717;--u-red-200: #6B2424;--u-red-300: #8F3535;--u-red-400: #B24848;--u-red-500: #D66060;--u-red-600: #F57878;--u-red-700: #FF9494;--u-red-800: #FFB3B3;--u-red-900: #FFD2D2;--u-red-1000: #FFF0F0;--u-shadow-weak: rgba(0, 0, 0, .15);--u-shadow-normal: rgba(0, 0, 0, .25);--u-shadow-medium: rgba(0, 0, 0, .35);--u-shadow-strong: rgba(0, 0, 0, .45);--u-shadow-heavy: rgba(0, 0, 0, .6);--u-bg-color: var(--u-neutral-100);--u-bg-color-inverse: var(--u-neutral-0);--u-bg-color-hover: var(--u-neutral-300);--u-bg-color-active: var(--u-neutral-400);--u-bg-color-disabled: var(--u-neutral-200);--u-panel-bg-color: var(--u-neutral-200);--u-overlay-bg-color: rgba(0, 0, 0, .7);--u-tooltip-bg-color: rgba(255, 255, 255, .85);--u-border-color: var(--u-neutral-400);--u-border-color-weak: var(--u-neutral-300);--u-border-color-strong: var(--u-neutral-500);--u-input-border-color: var(--u-neutral-400);--u-input-border-hover: var(--u-neutral-500);--u-input-border-focus: var(--u-blue-600);--u-text-color: var(--u-neutral-900);--u-text-color-inverse: var(--u-neutral-100);--u-text-color-hover: var(--u-blue-600);--u-text-color-disabled: var(--u-neutral-500);--u-soft-text-color: var(--u-neutral-700);--u-strong-text-color: var(--u-neutral-1000);--u-link-text-color: var(--u-blue-700);--u-tooltip-text-color: var(--u-neutral-100);--u-icon-color: var(--u-neutral-800);--u-icon-color-inverse: var(--u-neutral-100);--u-icon-color-hover: var(--u-blue-600);--u-icon-color-disabled: var(--u-neutral-500);--u-scrollbar-color: var(--u-neutral-500);--u-scrollbar-color-hover: var(--u-neutral-600);--u-scrollbar-track-color: transparent;--u-font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";--u-font-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Monaco, "Courier New", monospace;--u-font-serif: "Georgia", "Times New Roman", Times, serif;--u-font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;--u-font-modern: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;--u-font-rounded: "Nunito", "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif}';
|
|
2
|
+
export {
|
|
3
|
+
e as default
|
|
4
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
color-scheme: light;
|
|
3
|
+
|
|
4
|
+
/* Neutral Colors */
|
|
5
|
+
--u-neutral-0: #FFFFFF;
|
|
6
|
+
--u-neutral-50: #FAFAFA;
|
|
7
|
+
--u-neutral-100: #F5F5F5;
|
|
8
|
+
--u-neutral-200: #EEEEEE;
|
|
9
|
+
--u-neutral-300: #E0E0E0;
|
|
10
|
+
--u-neutral-400: #BDBDBD;
|
|
11
|
+
--u-neutral-500: #9E9E9E;
|
|
12
|
+
--u-neutral-600: #757575;
|
|
13
|
+
--u-neutral-700: #616161;
|
|
14
|
+
--u-neutral-800: #424242;
|
|
15
|
+
--u-neutral-900: #212121;
|
|
16
|
+
--u-neutral-1000: #000000;
|
|
17
|
+
|
|
18
|
+
/* Blue Colors */
|
|
19
|
+
--u-blue-0: #E3F2FD;
|
|
20
|
+
--u-blue-100: #BBDEFB;
|
|
21
|
+
--u-blue-200: #90CAF9;
|
|
22
|
+
--u-blue-300: #64B5F6;
|
|
23
|
+
--u-blue-400: #42A5F5;
|
|
24
|
+
--u-blue-500: #2196F3;
|
|
25
|
+
--u-blue-600: #1E88E5;
|
|
26
|
+
--u-blue-700: #1976D2;
|
|
27
|
+
--u-blue-800: #1565C0;
|
|
28
|
+
--u-blue-900: #0D47A1;
|
|
29
|
+
--u-blue-1000: #062A5E;
|
|
30
|
+
|
|
31
|
+
/* Green Colors */
|
|
32
|
+
--u-green-0: #E8F5E9;
|
|
33
|
+
--u-green-100: #C8E6C9;
|
|
34
|
+
--u-green-200: #A5D6A7;
|
|
35
|
+
--u-green-300: #81C784;
|
|
36
|
+
--u-green-400: #66BB6A;
|
|
37
|
+
--u-green-500: #4CAF50;
|
|
38
|
+
--u-green-600: #43A047;
|
|
39
|
+
--u-green-700: #388E3C;
|
|
40
|
+
--u-green-800: #2E7D32;
|
|
41
|
+
--u-green-900: #1B5E20;
|
|
42
|
+
--u-green-1000: #0F3A12;
|
|
43
|
+
|
|
44
|
+
/* Yellow Colors */
|
|
45
|
+
--u-yellow-0: #FFFDE7;
|
|
46
|
+
--u-yellow-100: #FFF9C4;
|
|
47
|
+
--u-yellow-200: #FFF59D;
|
|
48
|
+
--u-yellow-300: #FFF176;
|
|
49
|
+
--u-yellow-400: #FFEE58;
|
|
50
|
+
--u-yellow-500: #FFEB3B;
|
|
51
|
+
--u-yellow-600: #FDD835;
|
|
52
|
+
--u-yellow-700: #FBC02D;
|
|
53
|
+
--u-yellow-800: #F9A825;
|
|
54
|
+
--u-yellow-900: #F57F17;
|
|
55
|
+
--u-yellow-1000: #8A4A00;
|
|
56
|
+
|
|
57
|
+
/* Red Colors */
|
|
58
|
+
--u-red-0: #FFEBEE;
|
|
59
|
+
--u-red-100: #FFCDD2;
|
|
60
|
+
--u-red-200: #EF9A9A;
|
|
61
|
+
--u-red-300: #E57373;
|
|
62
|
+
--u-red-400: #EF5350;
|
|
63
|
+
--u-red-500: #F44336;
|
|
64
|
+
--u-red-600: #E53935;
|
|
65
|
+
--u-red-700: #D32F2F;
|
|
66
|
+
--u-red-800: #C62828;
|
|
67
|
+
--u-red-900: #B71C1C;
|
|
68
|
+
--u-red-1000: #6B0F0F;
|
|
69
|
+
|
|
70
|
+
/* Shadow Colors */
|
|
71
|
+
--u-shadow-weak: rgba(0, 0, 0, 0.04);
|
|
72
|
+
--u-shadow-normal: rgba(0, 0, 0, 0.08);
|
|
73
|
+
--u-shadow-medium: rgba(0, 0, 0, 0.12);
|
|
74
|
+
--u-shadow-strong: rgba(0, 0, 0, 0.16);
|
|
75
|
+
--u-shadow-heavy: rgba(0, 0, 0, 0.24);
|
|
76
|
+
|
|
77
|
+
/* background Colors */
|
|
78
|
+
--u-bg-color: var(--u-neutral-0);
|
|
79
|
+
--u-bg-color-inverse: var(--u-neutral-900);
|
|
80
|
+
--u-bg-color-hover: var(--u-neutral-100);
|
|
81
|
+
--u-bg-color-active: var(--u-neutral-200);
|
|
82
|
+
--u-bg-color-disabled: var(--u-neutral-50);
|
|
83
|
+
|
|
84
|
+
--u-panel-bg-color: var(--u-neutral-0);
|
|
85
|
+
--u-overlay-bg-color: rgba(0, 0, 0, 0.5);
|
|
86
|
+
--u-tooltip-bg-color: rgba(0, 0, 0, 0.75);
|
|
87
|
+
|
|
88
|
+
/* border Colors */
|
|
89
|
+
--u-border-color: var(--u-neutral-300);
|
|
90
|
+
--u-border-color-weak: var(--u-neutral-200);
|
|
91
|
+
--u-border-color-strong: var(--u-neutral-400);
|
|
92
|
+
|
|
93
|
+
--u-input-border-color: var(--u-neutral-300);
|
|
94
|
+
--u-input-border-hover: var(--u-neutral-400);
|
|
95
|
+
--u-input-border-focus: var(--u-blue-600);
|
|
96
|
+
|
|
97
|
+
/* text Colors */
|
|
98
|
+
--u-text-color: var(--u-neutral-900);
|
|
99
|
+
--u-text-color-inverse: var(--u-neutral-0);
|
|
100
|
+
--u-text-color-hover: var(--u-blue-600);
|
|
101
|
+
--u-text-color-active: var(--u-blue-600);
|
|
102
|
+
--u-text-color-disabled: var(--u-neutral-400);
|
|
103
|
+
|
|
104
|
+
--u-soft-text-color: var(--u-neutral-700);
|
|
105
|
+
--u-link-text-color: var(--u-blue-700);
|
|
106
|
+
--u-tooltip-text-color: var(--u-neutral-0);
|
|
107
|
+
|
|
108
|
+
/* Icon Colors */
|
|
109
|
+
--u-icon-color: var(--u-neutral-700);
|
|
110
|
+
--u-icon-color-inverse: var(--u-neutral-0);
|
|
111
|
+
--u-icon-color-hover: var(--u-blue-600);
|
|
112
|
+
--u-icon-color-active: var(--u-blue-600);
|
|
113
|
+
--u-icon-color-disabled: var(--u-neutral-400);
|
|
114
|
+
|
|
115
|
+
/* Scrollbar Colors */
|
|
116
|
+
--u-scrollbar-color: var(--u-neutral-400);
|
|
117
|
+
--u-scrollbar-color-hover: var(--u-neutral-500);
|
|
118
|
+
--u-scrollbar-track-color: transparent;
|
|
119
|
+
|
|
120
|
+
/* Font Styles */
|
|
121
|
+
--u-font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
122
|
+
--u-font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Monaco, 'Courier New', monospace;
|
|
123
|
+
--u-font-serif: 'Georgia', 'Times New Roman', Times, serif;
|
|
124
|
+
--u-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
|
|
125
|
+
--u-font-modern: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
126
|
+
--u-font-rounded: 'Nunito', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
127
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const e = ':root{color-scheme:light;--u-neutral-0: #FFFFFF;--u-neutral-50: #FAFAFA;--u-neutral-100: #F5F5F5;--u-neutral-200: #EEEEEE;--u-neutral-300: #E0E0E0;--u-neutral-400: #BDBDBD;--u-neutral-500: #9E9E9E;--u-neutral-600: #757575;--u-neutral-700: #616161;--u-neutral-800: #424242;--u-neutral-900: #212121;--u-neutral-1000: #000000;--u-blue-0: #E3F2FD;--u-blue-100: #BBDEFB;--u-blue-200: #90CAF9;--u-blue-300: #64B5F6;--u-blue-400: #42A5F5;--u-blue-500: #2196F3;--u-blue-600: #1E88E5;--u-blue-700: #1976D2;--u-blue-800: #1565C0;--u-blue-900: #0D47A1;--u-blue-1000: #062A5E;--u-green-0: #E8F5E9;--u-green-100: #C8E6C9;--u-green-200: #A5D6A7;--u-green-300: #81C784;--u-green-400: #66BB6A;--u-green-500: #4CAF50;--u-green-600: #43A047;--u-green-700: #388E3C;--u-green-800: #2E7D32;--u-green-900: #1B5E20;--u-green-1000: #0F3A12;--u-yellow-0: #FFFDE7;--u-yellow-100: #FFF9C4;--u-yellow-200: #FFF59D;--u-yellow-300: #FFF176;--u-yellow-400: #FFEE58;--u-yellow-500: #FFEB3B;--u-yellow-600: #FDD835;--u-yellow-700: #FBC02D;--u-yellow-800: #F9A825;--u-yellow-900: #F57F17;--u-yellow-1000: #8A4A00;--u-red-0: #FFEBEE;--u-red-100: #FFCDD2;--u-red-200: #EF9A9A;--u-red-300: #E57373;--u-red-400: #EF5350;--u-red-500: #F44336;--u-red-600: #E53935;--u-red-700: #D32F2F;--u-red-800: #C62828;--u-red-900: #B71C1C;--u-red-1000: #6B0F0F;--u-shadow-weak: rgba(0, 0, 0, .04);--u-shadow-normal: rgba(0, 0, 0, .08);--u-shadow-medium: rgba(0, 0, 0, .12);--u-shadow-strong: rgba(0, 0, 0, .16);--u-shadow-heavy: rgba(0, 0, 0, .24);--u-bg-color: var(--u-neutral-0);--u-bg-color-inverse: var(--u-neutral-900);--u-bg-color-hover: var(--u-neutral-100);--u-bg-color-active: var(--u-neutral-200);--u-bg-color-disabled: var(--u-neutral-50);--u-panel-bg-color: var(--u-neutral-0);--u-overlay-bg-color: rgba(0, 0, 0, .5);--u-tooltip-bg-color: rgba(0, 0, 0, .75);--u-border-color: var(--u-neutral-300);--u-border-color-weak: var(--u-neutral-200);--u-border-color-strong: var(--u-neutral-400);--u-input-border-color: var(--u-neutral-300);--u-input-border-hover: var(--u-neutral-400);--u-input-border-focus: var(--u-blue-600);--u-text-color: var(--u-neutral-900);--u-text-color-inverse: var(--u-neutral-0);--u-text-color-hover: var(--u-blue-600);--u-text-color-active: var(--u-blue-600);--u-text-color-disabled: var(--u-neutral-400);--u-soft-text-color: var(--u-neutral-700);--u-link-text-color: var(--u-blue-700);--u-tooltip-text-color: var(--u-neutral-0);--u-icon-color: var(--u-neutral-700);--u-icon-color-inverse: var(--u-neutral-0);--u-icon-color-hover: var(--u-blue-600);--u-icon-color-active: var(--u-blue-600);--u-icon-color-disabled: var(--u-neutral-400);--u-scrollbar-color: var(--u-neutral-400);--u-scrollbar-color-hover: var(--u-neutral-500);--u-scrollbar-track-color: transparent;--u-font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";--u-font-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Monaco, "Courier New", monospace;--u-font-serif: "Georgia", "Times New Roman", Times, serif;--u-font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;--u-font-modern: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;--u-font-rounded: "Nunito", "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif}';
|
|
2
|
+
export {
|
|
3
|
+
e as default
|
|
4
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { CSSResultGroup, LitElement } from 'lit';
|
|
2
|
+
/**
|
|
3
|
+
* BaseElement는 LitElement를 확장한 기본 Web Component 클래스입니다.
|
|
4
|
+
* 이 클래스는 자동으로 종속된 컴포넌트를 정의하며, 유용한 헬퍼 메서드들을 제공합니다.
|
|
5
|
+
*/
|
|
6
|
+
export declare class BaseElement extends LitElement {
|
|
7
|
+
/**
|
|
8
|
+
* 기본 스타일을 정의합니다.
|
|
9
|
+
*/
|
|
10
|
+
static styles: CSSResultGroup;
|
|
11
|
+
/**
|
|
12
|
+
* 현재 컴포넌트에 종속된 컴포넌트들을 정의하는 정적 속성입니다.
|
|
13
|
+
* 이 속성은 컴포넌트가 정의될 때 자동으로 호출되어
|
|
14
|
+
* 종속된 컴포넌트를 등록합니다.
|
|
15
|
+
*/
|
|
16
|
+
static dependencies: Record<string, typeof BaseElement>;
|
|
17
|
+
constructor();
|
|
18
|
+
/**
|
|
19
|
+
* 커스텀 엘리먼트를 정의합니다.
|
|
20
|
+
* 이미 정의된 엘리먼트는 다시 정의하지 않습니다.
|
|
21
|
+
* @param name - 커스텀 엘리먼트의 이름
|
|
22
|
+
* @param options - 엘리먼트 정의 옵션
|
|
23
|
+
*/
|
|
24
|
+
static define(name: string, options?: ElementDefinitionOptions): void;
|
|
25
|
+
/**
|
|
26
|
+
* 커스텀 이벤트를 디스패치합니다.
|
|
27
|
+
* @param name - 이벤트 이름
|
|
28
|
+
* @param value - 이벤트의 detail에 포함될 데이터
|
|
29
|
+
* @param options - 추가 이벤트 옵션 (예: bubbles, composed 등)
|
|
30
|
+
* @returns 이벤트가 성공적으로 디스패치되었는지 여부
|
|
31
|
+
*/
|
|
32
|
+
protected emit(name: string, value?: any, options?: CustomEventInit): boolean;
|
|
33
|
+
}
|