@situaction/traq-ui-ste 1.2.13 → 1.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/X.es-BEJ-zMPl.mjs +146 -0
- package/dist/components/button/Button.js +36 -36
- package/dist/components/calendar/Calendar.js +210 -214
- package/dist/components/drag-and-drop/DragAndDrop.d.ts +31 -0
- package/dist/components/drag-and-drop/DragAndDrop.js +143 -0
- package/dist/components/icon/Icon.js +23729 -46405
- package/dist/components/icon-button/IconButton.js +27 -27
- package/dist/components/input/Input.js +49 -49
- package/dist/components/loading/Loading.d.ts +38 -0
- package/dist/components/loading/Loading.js +87 -0
- package/dist/components/menu/Menu.js +60 -63
- package/dist/components/panel/side-panel/SidePanel.js +18 -19
- package/dist/components/select/Select.js +67 -69
- package/dist/components/select-filter-input-tags/SelectFilterInputTags.js +8 -9
- package/dist/components/select-multi-items/SelectMultiItems.js +18 -18
- package/dist/components/tag/Tag.js +25 -25
- package/dist/components/theme/variables_dark.d.ts +11 -0
- package/dist/components/theme/variables_dark.js +12 -1
- package/dist/components/theme/variables_light.d.ts +11 -0
- package/dist/components/theme/variables_light.js +12 -1
- package/dist/components/toast/Toast.js +38 -38
- package/dist/main.d.ts +2 -0
- package/dist/main.js +29 -25
- package/dist/styles/Button.css +1 -1
- package/dist/styles/DragAndDrop.css +1 -0
- package/dist/styles/IconButton.css +1 -1
- package/dist/styles/Input.css +1 -1
- package/dist/styles/Loading.css +1 -0
- package/dist/styles/Tag.css +1 -1
- package/dist/styles/Toast.css +1 -1
- package/package.json +1 -1
- package/dist/X-Bd1VjKAF.mjs +0 -190
package/dist/main.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { Button as t } from "./components/button/Button.js";
|
|
2
2
|
import { ButtonControlledScroll as p } from "./components/buttonControledScroll/ButtonControlledScroll.js";
|
|
3
3
|
import { Input as f } from "./components/input/Input.js";
|
|
4
|
-
import { Tabs as
|
|
4
|
+
import { Tabs as n } from "./components/tabs/Tabs.js";
|
|
5
5
|
import { IconButton as a } from "./components/icon-button/IconButton.js";
|
|
6
6
|
import { Tag as c } from "./components/tag/Tag.js";
|
|
7
7
|
import { Title as u } from "./components/title/Title.js";
|
|
8
8
|
import { TagCounter as I } from "./components/tag-counter/TagCounter.js";
|
|
9
9
|
import { Checkbox as C } from "./components/checkbox/Checkbox.js";
|
|
10
|
-
import { Tooltip as
|
|
11
|
-
import { Select as
|
|
12
|
-
import { Calendar as
|
|
13
|
-
import { Accordion as
|
|
14
|
-
import { AccordionItem as
|
|
15
|
-
import { Card as
|
|
16
|
-
import { Icon as
|
|
17
|
-
import { Menu as
|
|
18
|
-
import { Modal as
|
|
19
|
-
import { SelectMultiItems as
|
|
10
|
+
import { Tooltip as g } from "./components/tooltip/Tooltip.js";
|
|
11
|
+
import { Select as h } from "./components/select/Select.js";
|
|
12
|
+
import { Calendar as B } from "./components/calendar/Calendar.js";
|
|
13
|
+
import { Accordion as P } from "./components/accordion/Accordion.js";
|
|
14
|
+
import { AccordionItem as E } from "./components/accordion/item/AccordionItem.js";
|
|
15
|
+
import { Card as N } from "./components/card/Card.js";
|
|
16
|
+
import { Icon as v } from "./components/icon/Icon.js";
|
|
17
|
+
import { Menu as H } from "./components/menu/Menu.js";
|
|
18
|
+
import { Modal as q } from "./components/modal/Modal.js";
|
|
19
|
+
import { SelectMultiItems as z } from "./components/select-multi-items/SelectMultiItems.js";
|
|
20
20
|
import { SelectFilterInputTags as J } from "./components/select-filter-input-tags/SelectFilterInputTags.js";
|
|
21
21
|
import { ListControls as O } from "./components/list/list-controls/ListControls.js";
|
|
22
22
|
import { NestedList as R } from "./components/list/nested-list/NestedList.js";
|
|
@@ -28,39 +28,43 @@ import { InputLabel as ro } from "./components/input-label/InputLabel.js";
|
|
|
28
28
|
import { EditableField as to } from "./components/editable-field/EditableField.js";
|
|
29
29
|
import { EditableSelect as po } from "./components/editable-select/EditableSelect.js";
|
|
30
30
|
import { Toast as fo } from "./components/toast/Toast.js";
|
|
31
|
-
import {
|
|
31
|
+
import { DragAndDrop as no } from "./components/drag-and-drop/DragAndDrop.js";
|
|
32
|
+
import { Loading as ao } from "./components/loading/Loading.js";
|
|
33
|
+
import { ThemeProvider as so, useTheme as uo } from "./components/theme/ThemeContext.js";
|
|
32
34
|
import './styles/Size.css';/* empty css */
|
|
33
35
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
+
P as Accordion,
|
|
37
|
+
E as AccordionItem,
|
|
36
38
|
t as Button,
|
|
37
39
|
p as ButtonControlledScroll,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
+
B as Calendar,
|
|
41
|
+
N as Card,
|
|
40
42
|
C as Checkbox,
|
|
43
|
+
no as DragAndDrop,
|
|
41
44
|
to as EditableField,
|
|
42
45
|
po as EditableSelect,
|
|
43
|
-
|
|
46
|
+
v as Icon,
|
|
44
47
|
a as IconButton,
|
|
45
48
|
f as Input,
|
|
46
49
|
ro as InputLabel,
|
|
47
50
|
O as ListControls,
|
|
48
|
-
|
|
49
|
-
|
|
51
|
+
ao as Loading,
|
|
52
|
+
H as Menu,
|
|
53
|
+
q as Modal,
|
|
50
54
|
R as NestedList,
|
|
51
55
|
V as NestedListItem,
|
|
52
|
-
|
|
56
|
+
h as Select,
|
|
53
57
|
J as SelectFilterInputTags,
|
|
54
|
-
|
|
58
|
+
z as SelectMultiItems,
|
|
55
59
|
Z as SidePanel,
|
|
56
60
|
$ as SidePanelHeader,
|
|
57
61
|
X as Switch,
|
|
58
|
-
|
|
62
|
+
n as Tabs,
|
|
59
63
|
c as Tag,
|
|
60
64
|
I as TagCounter,
|
|
61
|
-
|
|
65
|
+
so as ThemeProvider,
|
|
62
66
|
u as Title,
|
|
63
67
|
fo as Toast,
|
|
64
|
-
|
|
65
|
-
|
|
68
|
+
g as Tooltip,
|
|
69
|
+
uo as useTheme
|
|
66
70
|
};
|
package/dist/styles/Button.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@font-face{font-family:Urbanist-Thin;src:url(../fonts/Urbanist-Thin.ttf) format("truetype");font-weight:100;font-style:normal}@font-face{font-family:Urbanist-Extra-Light;src:url(../fonts/Urbanist-ExtraLight.ttf) format("truetype");font-weight:200;font-style:normal}@font-face{font-family:Urbanist-Light;src:url(../fonts/Urbanist-Light.ttf) format("truetype");font-weight:300;font-style:normal}@font-face{font-family:Urbanist-Regular;src:url(../fonts/Urbanist-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Urbanist;src:url(../fonts/Urbanist-Medium.ttf) format("truetype");font-weight:500;font-style:normal}@font-face{font-family:Urbanist-Back;src:url(../fonts/Urbanist-Black.ttf) format("truetype");font-weight:600;font-style:normal}@font-face{font-family:Urbanist-Semi-Bold;src:url(../fonts/Urbanist-SemiBold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:Urbanist-Bold;src:url(../fonts/Urbanist-Bold.ttf) format("truetype");font-weight:800;font-style:normal}@font-face{font-family:Urbanist-Extra-Bold;src:url(../fonts/Urbanist-ExtraBold.ttf) format("truetype");font-weight:900;font-style:normal}:root,body{font-family:Urbanist,sans-serif;line-height:1;width:100vw;height:100vh}h1{font-size:1.875em;font-style:normal;font-weight:700;line-height:2.25rem}h2{font-size:1.5em;font-style:normal;font-weight:700;line-height:2rem;margin:0}h3{font-size:1.25em;font-style:normal;font-weight:700;line-height:1.75rem;margin:0}h4{font-size:1.125em;font-style:normal;font-weight:700;line-height:1.75rem;margin:0}h5{font-size:1em;font-style:normal;font-weight:700;line-height:1.5rem;margin:0}h6{font-size:.875em;font-style:normal;font-weight:700;line-height:1.25rem;margin:0}.textExtraLarge{font-size:1.25em;font-style:normal;line-height:2rem}.textLarge{font-size:1.125em;font-style:normal;line-height:1.75rem}.textMedium{font-size:1em;font-style:normal;line-height:1.5rem}.textSmall{font-size:.875em;font-style:normal;line-height:1.25rem}.textSmaller{font-size:.75em;font-style:normal;line-height:1rem}.labelExtraLarge{font-size:1.25em;font-style:normal;line-height:normal;letter-spacing:1.2px}.labelLarge{font-size:1.125em;font-style:normal;line-height:normal;letter-spacing:1.08px}.labelMedium{font-size:1em;font-style:normal;line-height:normal;letter-spacing:.96px}.labelSmall{font-size:.875em;font-style:normal;line-height:normal;letter-spacing:.84px}.labelSmaller{font-size:.75em;font-style:normal;line-height:normal;letter-spacing:.72px}.labelSmallest{font-size:.625em;font-style:normal;line-height:normal;letter-spacing:.6px}.fontWeight-100{font-weight:100}.fontWeight-200{font-weight:200}.fontWeight-300{font-weight:300}.fontWeight-400{font-weight:400}.fontWeight-500{font-weight:500}.fontWeight-600{font-weight:600}.fontWeight-700{font-weight:700}.fontWeight-800{font-weight:800}.fontWeight-900{font-weight:900}::-webkit-scrollbar{width:4px;height:4px}::-webkit-scrollbar-thumb{background-color:var(--scrollbar-background);border-radius:.5rem;transition:all .3s ease;margin:.625rem;background-clip:padding-box}::-webkit-scrollbar:hover{cursor:pointer}::-webkit-scrollbar-corner{background:var(--scrollbar-background)}.
|
|
1
|
+
@font-face{font-family:Urbanist-Thin;src:url(../fonts/Urbanist-Thin.ttf) format("truetype");font-weight:100;font-style:normal}@font-face{font-family:Urbanist-Extra-Light;src:url(../fonts/Urbanist-ExtraLight.ttf) format("truetype");font-weight:200;font-style:normal}@font-face{font-family:Urbanist-Light;src:url(../fonts/Urbanist-Light.ttf) format("truetype");font-weight:300;font-style:normal}@font-face{font-family:Urbanist-Regular;src:url(../fonts/Urbanist-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Urbanist;src:url(../fonts/Urbanist-Medium.ttf) format("truetype");font-weight:500;font-style:normal}@font-face{font-family:Urbanist-Back;src:url(../fonts/Urbanist-Black.ttf) format("truetype");font-weight:600;font-style:normal}@font-face{font-family:Urbanist-Semi-Bold;src:url(../fonts/Urbanist-SemiBold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:Urbanist-Bold;src:url(../fonts/Urbanist-Bold.ttf) format("truetype");font-weight:800;font-style:normal}@font-face{font-family:Urbanist-Extra-Bold;src:url(../fonts/Urbanist-ExtraBold.ttf) format("truetype");font-weight:900;font-style:normal}:root,body{font-family:Urbanist,sans-serif;line-height:1;width:100vw;height:100vh}h1{font-size:1.875em;font-style:normal;font-weight:700;line-height:2.25rem}h2{font-size:1.5em;font-style:normal;font-weight:700;line-height:2rem;margin:0}h3{font-size:1.25em;font-style:normal;font-weight:700;line-height:1.75rem;margin:0}h4{font-size:1.125em;font-style:normal;font-weight:700;line-height:1.75rem;margin:0}h5{font-size:1em;font-style:normal;font-weight:700;line-height:1.5rem;margin:0}h6{font-size:.875em;font-style:normal;font-weight:700;line-height:1.25rem;margin:0}.textExtraLarge{font-size:1.25em;font-style:normal;line-height:2rem}.textLarge{font-size:1.125em;font-style:normal;line-height:1.75rem}.textMedium{font-size:1em;font-style:normal;line-height:1.5rem}.textSmall{font-size:.875em;font-style:normal;line-height:1.25rem}.textSmaller{font-size:.75em;font-style:normal;line-height:1rem}.labelExtraLarge{font-size:1.25em;font-style:normal;line-height:normal;letter-spacing:1.2px}.labelLarge{font-size:1.125em;font-style:normal;line-height:normal;letter-spacing:1.08px}.labelMedium{font-size:1em;font-style:normal;line-height:normal;letter-spacing:.96px}.labelSmall{font-size:.875em;font-style:normal;line-height:normal;letter-spacing:.84px}.labelSmaller{font-size:.75em;font-style:normal;line-height:normal;letter-spacing:.72px}.labelSmallest{font-size:.625em;font-style:normal;line-height:normal;letter-spacing:.6px}.fontWeight-100{font-weight:100}.fontWeight-200{font-weight:200}.fontWeight-300{font-weight:300}.fontWeight-400{font-weight:400}.fontWeight-500{font-weight:500}.fontWeight-600{font-weight:600}.fontWeight-700{font-weight:700}.fontWeight-800{font-weight:800}.fontWeight-900{font-weight:900}::-webkit-scrollbar{width:4px;height:4px}::-webkit-scrollbar-thumb{background-color:var(--scrollbar-background);border-radius:.5rem;transition:all .3s ease;margin:.625rem;background-clip:padding-box}::-webkit-scrollbar:hover{cursor:pointer}::-webkit-scrollbar-corner{background:var(--scrollbar-background)}._button_11huw_30{font-family:var(--font-family);font-weight:500;font-style:normal;line-height:1.25rem;border:0;cursor:pointer;width:fit-content}._button_11huw_30:focus-visible{outline:2px solid var(--button-focus-mode);outline-offset:2px}._button_11huw_30:disabled{background:var(--button-primary-disabled-background);color:var(--button-primary-disabled-text);border:1px solid var(--button-primary-disabled-border);cursor:initial;pointer-events:none}._button_11huw_30:disabled *{fill:var(--button-primary-disabled-text)}._button-primary_11huw_53{color:var(--button-primary-default-text);background:var(--button-primary-default-background)}._button-primary_11huw_53:hover{background:var(--button-primary-hover-background)}._button-primary_11huw_53:active{background:var(--button-primary-pressed-background);outline:none}._button-primary_11huw_53 *{fill:var(--button-primary-default-text)}._button-secondary_11huw_67{color:var(--button-secondary-default-text);border:1px solid var(--button-secondary-default-border);background:var(--button-secondary-default-background)}._button-secondary_11huw_67:hover{border:1px solid var(--button-secondary-hover-border);background:var(--button-secondary-hover-background)}._button-secondary_11huw_67:active{border:1px solid var(--button-secondary-pressed-border);background:var(--button-secondary-pressed-background)}._button-secondary_11huw_67 *{fill:var(--button-secondary-default-text)}._button-tertiary_11huw_83{color:var(--button-tertiary-default-text);background-color:transparent;border:1px solid var(--button-tertiary-default-border)}._button-tertiary_11huw_83:hover{border:1px solid var(--button-tertiary-hover-border);background:var(--button-tertiary-hover-background)}._button-tertiary_11huw_83:active{border:1px solid var(--button-tertiary-pressed-border);background:var(--button-tertiary-pressed-background)}._button-tertiary_11huw_83 *{fill:var(--button-tertiary-default-text)}._button-ghost_11huw_99{color:var(--button-ghost-default-text);background-color:transparent;border:1px solid transparent}._button-ghost_11huw_99:hover{background:var(--button-ghost-hover-background)}._button-ghost_11huw_99:active{background-color:var(--button-ghost-pressed-background)}._button-ghost_11huw_99:disabled{border:none}._button-ghost_11huw_99 *{fill:var(--button-ghost-default-text)}._button-text_11huw_116{color:var(--text-button-inactive-text);background-color:transparent;padding:0!important}._button-text_11huw_116:hover{color:var(--text-button-inactive-hover-text)}._button-text_11huw_116:disabled{border:none;background-color:transparent;color:var(--text-button-disabled-text)}._button-text-selected_11huw_129,._button-text-selected_11huw_129:hover{color:var(--text-button-active-text)}._button-error_11huw_135{color:var(--button-destructive-default-text);background:var(--button-destructive-default-background)}._button-error_11huw_135:hover{background:var(--button-destructive-hover-background)}._button-error_11huw_135:active{background:var(--button-destructive-pressed-background)}._button-error_11huw_135 *{fill:var(--button-destructive-default-text)}._button-size-xl_11huw_151{padding:1rem 2rem;font-size:1.125em;line-height:28px;border-radius:8px}._button-size-l_11huw_157{padding:.75rem 1.5rem;font-size:1em;line-height:24px;border-radius:8px}._button-size-m_11huw_163{padding:.5rem 1rem;font-size:.875em;line-height:20px;border-radius:4px}._button-size-s_11huw_169{padding:.375rem .75rem;font-size:.875em;line-height:20px;border-radius:4px}._button-size-menu_11huw_175{padding:.5rem;font-size:1em;line-height:24px;border-radius:4px}._button-gap-menu_11huw_181{gap:.5rem}._button-gap-xl_11huw_184{gap:12px}._button-gap-l_11huw_187{gap:8px}._button-gap-m_11huw_181,._button-gap-s_11huw_190{gap:4px}._fullWidth_11huw_194{width:100%}._flexHorizontalCenter_11huw_198{display:flex;justify-content:center;align-items:center;flex-direction:row}._flexHorizontalBetween_11huw_205{display:flex;justify-content:space-between;align-items:center;flex-direction:row}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._dropzone_jj8g2_30{width:100%;padding:1.125rem;border:2px dashed var(--general-border-window);border-radius:.375rem;cursor:pointer;-webkit-user-select:none;user-select:none;box-sizing:border-box;display:flex;align-items:center;justify-content:center;transition:background .12s ease,border-color .12s ease,box-shadow .12s ease}._dropzone_jj8g2_30:focus-visible{outline:none}._dropzoneActive_jj8g2_48{background:var(--drag-n-drop-background-active);border-color:var(--general-border-window)}._input_jj8g2_53{display:none}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._button_olxwb_30{font-family:var(--font-family);font-weight:500;border:0;cursor:pointer;line-height:1;display:inline-flex;justify-content:center;align-items:center;min-width:12px;min-height:12px;aspect-ratio:1/1}._button_olxwb_30:focus-visible{outline:2px solid var(--button-focus-mode);outline-offset:2px}._button_olxwb_30:disabled{background:var(--button-primary-disabled-background);color:var(--button-primary-disabled-text);border:1px solid var(--button-primary-disabled-border);cursor:initial;pointer-events:none}._button_olxwb_30:disabled *{fill:var(--button-primary-disabled-text)}._button-round_olxwb_57._button_olxwb_30{border-radius:50%}._button-primary_olxwb_60{color:var(--button-primary-default-text);background:var(--button-primary-default-background)}._button-primary_olxwb_60:hover{background:var(--button-primary-hover-background)}._button-primary_olxwb_60:active{background:var(--button-primary-pressed-background);outline:none}._button-primary_olxwb_60 *{fill:var(--button-primary-default-text)}._button-secondary_olxwb_74{color:var(--button-secondary-default-text);border:1px solid var(--button-secondary-default-border);background:var(--button-secondary-default-background)}._button-secondary_olxwb_74:hover{border:1px solid var(--button-secondary-hover-border);background:var(--button-secondary-hover-background)}._button-secondary_olxwb_74:active{border:1px solid var(--button-secondary-pressed-border);background:var(--button-secondary-pressed-background)}._button-secondary_olxwb_74 *{fill:var(--button-secondary-default-text)}._button-tertiary_olxwb_90{color:var(--button-tertiary-default-text);background-color:transparent;border:1px solid var(--button-tertiary-default-border)}._button-tertiary_olxwb_90:hover{border:1px solid var(--button-tertiary-hover-border);background:var(--button-tertiary-hover-background)}._button-tertiary_olxwb_90:active{border:1px solid var(--button-tertiary-pressed-border);background:var(--button-tertiary-pressed-background)}._button-tertiary_olxwb_90 *{fill:var(--button-tertiary-default-text)}._button-ghost_olxwb_106{color:var(--button-ghost-default-text);background-color:transparent;border:1px solid transparent}._button-ghost_olxwb_106:hover{background:var(--button-ghost-hover-background)}._button-ghost_olxwb_106:active{background-color:var(--button-ghost-pressed-background)}._button-ghost_olxwb_106:disabled{border:none}._button-ghost_olxwb_106 *{fill:var(--button-ghost-default-text)}._button-icon_olxwb_123{fill:var(--text-button-inactive-text);background-color:transparent}._button-icon_olxwb_123:hover{fill:var(--text-button-inactive-hover-text)}._button-icon_olxwb_123:disabled{border:none;background-color:transparent;fill:var(--text-button-disabled-text)}._button-icon-selected_olxwb_135,._button-icon-selected_olxwb_135:hover{fill:var(--text-button-active-text)}._button-icon_olxwb_123 svg{fill:inherit}._button-error_olxwb_144{fill:var(--button-destructive-default-text);background:var(--button-destructive-default-background)}._button-error_olxwb_144:hover{background:var(--button-destructive-hover-background)}._button-error_olxwb_144:active{background:var(--button-destructive-pressed-background)}._button-error_olxwb_144 *{fill:var(--button-destructive-default-text)}._button-size-xl_olxwb_160{border-radius:.5rem;padding:1rem;font-size:1.125em}._button-size-l_olxwb_165{border-radius:.5rem;padding:.75rem;font-size:1em}._button-size-m_olxwb_170{border-radius:.25rem;padding:.5rem;font-size:.875em}._button-size-s_olxwb_175{border-radius:.25rem;padding:.375rem;font-size:.875em}._button-size-menu_olxwb_180{padding:.5rem;font-size:1em;line-height:24px;border-radius:4px}._flexHorizontalCenter_olxwb_187{display:flex;justify-content:center;align-items:center;flex-direction:row}
|
package/dist/styles/Input.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._input-
|
|
1
|
+
._input-style_1ch0x_30{font-family:Urbanist,sans-serif;border:1px solid var(--input-primary-default-border);color:var(--input-primary-default-text)}._input-style_1ch0x_30 input{font:inherit;color:var(--input-primary-actived-text);background-color:transparent;border:none;width:100%}._input-style_1ch0x_30 input:focus{outline:none;box-shadow:none;border-color:transparent}._input-style_1ch0x_30 input::placeholder{font:inherit;color:var(--input-primary-default-text)}._input-style_1ch0x_30 input:-webkit-autofill{box-shadow:0 0 0 1000px transparent inset!important;-webkit-text-fill-color:inherit!important;background-color:transparent!important}._input-style_1ch0x_30 *{fill:var(--input-primary-default-icons)}._input-style-disabled_1ch0x_59{background-color:#0000000d;border-color:var(--input-primary-disabled-border);pointer-events:none}._input-style-disabled_1ch0x_59 input{color:var(--input-primary-disabled-text)}._input-style-disabled_1ch0x_59 *{fill:var(--input-primary-disabled-icons)}._input-style-focused_1ch0x_70{color:var(--input-primary-actived-text);border-color:var(--input-primary-actived-border)}._input-style-focused_1ch0x_70 *{fill:var(--icon-selector-button-default-icon)}._input-style-secondary_1ch0x_77{color:var(--input-secondary-default-text);border:1px solid var(--input-secondary-default-border);background:var(--input-secondary-default-background)}._input-style-secondary_1ch0x_77 input{color:var(--input-primary-actived-text)}._input-style-secondary_1ch0x_77 input::placeholder{color:var(--input-secondary-default-text)}._input-style-secondary_1ch0x_77 *{fill:var(--input-secondary-default-icons)}._input-style-ghost_1ch0x_91{border:none}._input-style-error_1ch0x_94{border-color:var(--input-primary-error-border);color:var(--input-primary-error-text)}._input-style-error_1ch0x_94 input::placeholder{color:var(--input-primary-error-text)}._input-style-error_1ch0x_94 *{fill:var(--input-primary-error-icons)}._input-style_1ch0x_30 ._input-container_1ch0x_104{position:relative;width:100%}._input-style-size-xl_1ch0x_111{padding:1rem;font-size:1.125em;line-height:28px;border-radius:8px;gap:.625rem}._input-style-size-l_1ch0x_118{padding:.75rem;font-size:1em;line-height:24px;border-radius:8px;gap:.5rem}._input-style-size-m_1ch0x_125{padding:.5rem;font-size:.875em;line-height:20px;border-radius:4px;gap:.375rem}._input-style-size-s_1ch0x_132{padding:.375rem;font-size:.875em;line-height:20px;border-radius:4px;gap:.25rem}._input-style-radius_1ch0x_139{border-radius:50px}._fullWidth_1ch0x_143{width:100%}._flexHorizontalBetween_1ch0x_147{display:flex;justify-content:space-between;align-items:center;flex-direction:row}._flexHorizontal_1ch0x_147{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._size_s_ljbi5_30{--sz: 1rem;--stroke: 2px}._size_m_ljbi5_35{--sz: 1.5rem;--stroke: 2px}._size_l_ljbi5_40{--sz: 2rem;--stroke: 3px}._size_xl_ljbi5_45{--sz: 2.75rem;--stroke: 4px}._root_ljbi5_50{--ring-bg: var(--spinner-background-stroke);--ring-fg: var(--spinner-icons);--fill: var(--spinner-background-stroke);width:var(--sz);height:var(--sz);border-radius:999px;display:inline-flex;align-items:center;justify-content:center;padding:0;background:transparent;box-sizing:border-box;border:var(--stroke) solid transparent;color:var(--ring-fg);transition:background .12s ease,border-color .12s ease}._idle_ljbi5_72{border-color:var(--ring-bg)}._spinner_ljbi5_76{border-color:var(--ring-bg);border-top-color:var(--ring-fg);animation:_spin_ljbi5_76 .9s linear infinite}._complete_ljbi5_82{border-color:var(--ring-fg)}._iconCheck_ljbi5_86,._iconX_ljbi5_87{align-items:center;justify-content:center}._iconCheck_ljbi5_86{display:inline-flex}._iconX_ljbi5_87{display:none}._hovered_ljbi5_108{background:var(--fill)!important;border-color:transparent}._spinner_ljbi5_76._hovered_ljbi5_108{border-top-color:transparent;animation:none}._hovered_ljbi5_108 ._iconCheck_ljbi5_86{display:none!important}._hovered_ljbi5_108 ._iconX_ljbi5_87{display:inline-flex!important}._clearable_ljbi5_129{cursor:pointer;transition:background .12s ease,border-color .12s ease;background:transparent}._clearable_ljbi5_129:focus-visible{outline:none;box-shadow:0 0 0 3px #3b82f640}@keyframes _spin_ljbi5_76{to{transform:rotate(360deg)}}._flexHorizontalCenter_ljbi5_146{display:flex;justify-content:center;align-items:center;flex-direction:row}
|
package/dist/styles/Tag.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._tag_qjzpb_6{color:var(--dynamic-color-text);background-color:var(--dynamic-background);border-radius:50px;line-height:normal;gap:.25rem;font-weight:600;letter-spacing:.84px}._tag_qjzpb_6 ._icon_qjzpb_15{display:flex;cursor:pointer;fill:var(--dynamic-color-text)!important}._tag-children_qjzpb_20{color:var(--dynamic-color-text);border-radius:50px;min-width:16px;min-height:16px;aspect-ratio:1/1}._tag-size-xl_qjzpb_30{padding:.5rem .75rem;font-size:1.125em}._tag-size-xl-round_qjzpb_34{padding:.5rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag-size-l_qjzpb_40{padding:.375rem .625rem;font-size:1em}._tag-size-l-round_qjzpb_44{padding:.375rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag-size-m_qjzpb_50{padding:.25rem .5rem;font-size:.875em}._tag-size-m-round_qjzpb_54{padding:.25rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag-size-s_qjzpb_60{padding:.1875rem .5rem;font-size:.75em}._tag-size-s-round_qjzpb_64{padding:.125rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag_qjzpb_6 ._label_qjzpb_70{white-space:nowrap}._flexHorizontalCenter_qjzpb_74{display:flex;justify-content:center;align-items:center;flex-direction:row}._flexHorizontal_qjzpb_74{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}
|
package/dist/styles/Toast.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._toast_1ygaj_30{padding:.625rem;display:inline-flex;flex-direction:column;justify-content:start;align-items:start;border-radius:.25rem;border:1px solid var(--general-border-window);background:var(--background-primary);box-shadow:0 4px 4px 0 var(--shadow-color-lowest);width:auto;max-width:80vw;min-width:200px;opacity:1;transform:translateY(0);transition:opacity .3s ease,transform .3s ease;position:fixed;z-index:9999}._toast-header_1ygaj_49{display:flex;justify-content:space-between;align-items:center;width:100%}._toast-title-container_1ygaj_55{display:flex;align-items:center;gap:8px}._toast-title_1ygaj_55{font-size:1em;font-style:normal;font-weight:700}._toast-content_1ygaj_65{padding-left:2rem}._base_1ygaj_69 ._toast-title_1ygaj_55{color:var(--general-text-icons)}._success_1ygaj_73 ._toast-title_1ygaj_55{color:var(--color-succes-500)}._error_1ygaj_77 ._toast-title_1ygaj_55{color:var(--color-error-500)}._error_1ygaj_77{border-color:var(--color-error-500)}._bottom-right_1ygaj_84{bottom:1.25rem;right:1.25rem}._bottom-left_1ygaj_89{bottom:1.25rem;left:1.25rem}._top-right_1ygaj_94{top:1.25rem;right:1.25rem}._top-left_1ygaj_99{top:1.25rem;left:1.25rem}._closing_1ygaj_104{opacity:0;transform:translateY(10px)}
|
package/package.json
CHANGED
package/dist/X-Bd1VjKAF.mjs
DELETED
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
import t, { createContext as C, forwardRef as o, useContext as I } from "react";
|
|
2
|
-
const z = /* @__PURE__ */ new Map([
|
|
3
|
-
[
|
|
4
|
-
"bold",
|
|
5
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M216.49,104.49l-80,80a12,12,0,0,1-17,0l-80-80a12,12,0,0,1,17-17L128,159l71.51-71.52a12,12,0,0,1,17,17Z" }))
|
|
6
|
-
],
|
|
7
|
-
[
|
|
8
|
-
"duotone",
|
|
9
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M208,96l-80,80L48,96Z", opacity: "0.2" }), /* @__PURE__ */ t.createElement("path", { d: "M215.39,92.94A8,8,0,0,0,208,88H48a8,8,0,0,0-5.66,13.66l80,80a8,8,0,0,0,11.32,0l80-80A8,8,0,0,0,215.39,92.94ZM128,164.69,67.31,104H188.69Z" }))
|
|
10
|
-
],
|
|
11
|
-
[
|
|
12
|
-
"fill",
|
|
13
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,48,88H208a8,8,0,0,1,5.66,13.66Z" }))
|
|
14
|
-
],
|
|
15
|
-
[
|
|
16
|
-
"light",
|
|
17
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M212.24,100.24l-80,80a6,6,0,0,1-8.48,0l-80-80a6,6,0,0,1,8.48-8.48L128,167.51l75.76-75.75a6,6,0,0,1,8.48,8.48Z" }))
|
|
18
|
-
],
|
|
19
|
-
[
|
|
20
|
-
"regular",
|
|
21
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z" }))
|
|
22
|
-
],
|
|
23
|
-
[
|
|
24
|
-
"thin",
|
|
25
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M210.83,98.83l-80,80a4,4,0,0,1-5.66,0l-80-80a4,4,0,0,1,5.66-5.66L128,170.34l77.17-77.17a4,4,0,1,1,5.66,5.66Z" }))
|
|
26
|
-
]
|
|
27
|
-
]), D = /* @__PURE__ */ new Map([
|
|
28
|
-
[
|
|
29
|
-
"bold",
|
|
30
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M216.49,168.49a12,12,0,0,1-17,0L128,97,56.49,168.49a12,12,0,0,1-17-17l80-80a12,12,0,0,1,17,0l80,80A12,12,0,0,1,216.49,168.49Z" }))
|
|
31
|
-
],
|
|
32
|
-
[
|
|
33
|
-
"duotone",
|
|
34
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M208,160H48l80-80Z", opacity: "0.2" }), /* @__PURE__ */ t.createElement("path", { d: "M213.66,154.34l-80-80a8,8,0,0,0-11.32,0l-80,80A8,8,0,0,0,48,168H208a8,8,0,0,0,5.66-13.66ZM67.31,152,128,91.31,188.69,152Z" }))
|
|
35
|
-
],
|
|
36
|
-
[
|
|
37
|
-
"fill",
|
|
38
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M215.39,163.06A8,8,0,0,1,208,168H48a8,8,0,0,1-5.66-13.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,215.39,163.06Z" }))
|
|
39
|
-
],
|
|
40
|
-
[
|
|
41
|
-
"light",
|
|
42
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M212.24,164.24a6,6,0,0,1-8.48,0L128,88.49,52.24,164.24a6,6,0,0,1-8.48-8.48l80-80a6,6,0,0,1,8.48,0l80,80A6,6,0,0,1,212.24,164.24Z" }))
|
|
43
|
-
],
|
|
44
|
-
[
|
|
45
|
-
"regular",
|
|
46
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M213.66,165.66a8,8,0,0,1-11.32,0L128,91.31,53.66,165.66a8,8,0,0,1-11.32-11.32l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,213.66,165.66Z" }))
|
|
47
|
-
],
|
|
48
|
-
[
|
|
49
|
-
"thin",
|
|
50
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M210.83,162.83a4,4,0,0,1-5.66,0L128,85.66,50.83,162.83a4,4,0,0,1-5.66-5.66l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,210.83,162.83Z" }))
|
|
51
|
-
]
|
|
52
|
-
]), N = /* @__PURE__ */ new Map([
|
|
53
|
-
[
|
|
54
|
-
"bold",
|
|
55
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M208.49,191.51a12,12,0,0,1-17,17L128,145,64.49,208.49a12,12,0,0,1-17-17L111,128,47.51,64.49a12,12,0,0,1,17-17L128,111l63.51-63.52a12,12,0,0,1,17,17L145,128Z" }))
|
|
56
|
-
],
|
|
57
|
-
[
|
|
58
|
-
"duotone",
|
|
59
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement(
|
|
60
|
-
"path",
|
|
61
|
-
{
|
|
62
|
-
d: "M216,56V200a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V56A16,16,0,0,1,56,40H200A16,16,0,0,1,216,56Z",
|
|
63
|
-
opacity: "0.2"
|
|
64
|
-
}
|
|
65
|
-
), /* @__PURE__ */ t.createElement("path", { d: "M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z" }))
|
|
66
|
-
],
|
|
67
|
-
[
|
|
68
|
-
"fill",
|
|
69
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM181.66,170.34a8,8,0,0,1-11.32,11.32L128,139.31,85.66,181.66a8,8,0,0,1-11.32-11.32L116.69,128,74.34,85.66A8,8,0,0,1,85.66,74.34L128,116.69l42.34-42.35a8,8,0,0,1,11.32,11.32L139.31,128Z" }))
|
|
70
|
-
],
|
|
71
|
-
[
|
|
72
|
-
"light",
|
|
73
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M204.24,195.76a6,6,0,1,1-8.48,8.48L128,136.49,60.24,204.24a6,6,0,0,1-8.48-8.48L119.51,128,51.76,60.24a6,6,0,0,1,8.48-8.48L128,119.51l67.76-67.75a6,6,0,0,1,8.48,8.48L136.49,128Z" }))
|
|
74
|
-
],
|
|
75
|
-
[
|
|
76
|
-
"regular",
|
|
77
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z" }))
|
|
78
|
-
],
|
|
79
|
-
[
|
|
80
|
-
"thin",
|
|
81
|
-
/* @__PURE__ */ t.createElement(t.Fragment, null, /* @__PURE__ */ t.createElement("path", { d: "M202.83,197.17a4,4,0,0,1-5.66,5.66L128,133.66,58.83,202.83a4,4,0,0,1-5.66-5.66L122.34,128,53.17,58.83a4,4,0,0,1,5.66-5.66L128,122.34l69.17-69.17a4,4,0,1,1,5.66,5.66L133.66,128Z" }))
|
|
82
|
-
]
|
|
83
|
-
]), S = C({
|
|
84
|
-
color: "currentColor",
|
|
85
|
-
size: "1em",
|
|
86
|
-
weight: "regular",
|
|
87
|
-
mirrored: !1
|
|
88
|
-
});
|
|
89
|
-
var V = Object.defineProperty, c = Object.getOwnPropertySymbols, O = Object.prototype.hasOwnProperty, L = Object.prototype.propertyIsEnumerable, g = (a, e, r) => e in a ? V(a, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : a[e] = r, d = (a, e) => {
|
|
90
|
-
for (var r in e || (e = {}))
|
|
91
|
-
O.call(e, r) && g(a, r, e[r]);
|
|
92
|
-
if (c)
|
|
93
|
-
for (var r of c(e))
|
|
94
|
-
L.call(e, r) && g(a, r, e[r]);
|
|
95
|
-
return a;
|
|
96
|
-
}, f = (a, e) => {
|
|
97
|
-
var r = {};
|
|
98
|
-
for (var l in a)
|
|
99
|
-
O.call(a, l) && e.indexOf(l) < 0 && (r[l] = a[l]);
|
|
100
|
-
if (a != null && c)
|
|
101
|
-
for (var l of c(a))
|
|
102
|
-
e.indexOf(l) < 0 && L.call(a, l) && (r[l] = a[l]);
|
|
103
|
-
return r;
|
|
104
|
-
};
|
|
105
|
-
const M = o((a, e) => {
|
|
106
|
-
const r = a, {
|
|
107
|
-
alt: l,
|
|
108
|
-
color: i,
|
|
109
|
-
size: n,
|
|
110
|
-
weight: p,
|
|
111
|
-
mirrored: $,
|
|
112
|
-
children: Z,
|
|
113
|
-
weights: j
|
|
114
|
-
} = r, A = f(r, [
|
|
115
|
-
"alt",
|
|
116
|
-
"color",
|
|
117
|
-
"size",
|
|
118
|
-
"weight",
|
|
119
|
-
"mirrored",
|
|
120
|
-
"children",
|
|
121
|
-
"weights"
|
|
122
|
-
]), s = I(S), {
|
|
123
|
-
color: F = "currentColor",
|
|
124
|
-
size: u,
|
|
125
|
-
weight: P = "regular",
|
|
126
|
-
mirrored: H = !1
|
|
127
|
-
} = s, x = f(s, [
|
|
128
|
-
"color",
|
|
129
|
-
"size",
|
|
130
|
-
"weight",
|
|
131
|
-
"mirrored"
|
|
132
|
-
]);
|
|
133
|
-
return /* @__PURE__ */ t.createElement(
|
|
134
|
-
"svg",
|
|
135
|
-
d(d({
|
|
136
|
-
ref: e,
|
|
137
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
138
|
-
width: n ?? u,
|
|
139
|
-
height: n ?? u,
|
|
140
|
-
fill: i ?? F,
|
|
141
|
-
viewBox: "0 0 256 256",
|
|
142
|
-
transform: $ || H ? "scale(-1, 1)" : void 0
|
|
143
|
-
}, x), A),
|
|
144
|
-
!!l && /* @__PURE__ */ t.createElement("title", null, l),
|
|
145
|
-
Z,
|
|
146
|
-
j.get(p ?? P)
|
|
147
|
-
);
|
|
148
|
-
});
|
|
149
|
-
M.displayName = "IconBase";
|
|
150
|
-
const m = M;
|
|
151
|
-
var B = Object.defineProperty, R = Object.defineProperties, U = Object.getOwnPropertyDescriptors, E = Object.getOwnPropertySymbols, X = Object.prototype.hasOwnProperty, k = Object.prototype.propertyIsEnumerable, h = (a, e, r) => e in a ? B(a, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : a[e] = r, q = (a, e) => {
|
|
152
|
-
for (var r in e || (e = {}))
|
|
153
|
-
X.call(e, r) && h(a, r, e[r]);
|
|
154
|
-
if (E)
|
|
155
|
-
for (var r of E(e))
|
|
156
|
-
k.call(e, r) && h(a, r, e[r]);
|
|
157
|
-
return a;
|
|
158
|
-
}, G = (a, e) => R(a, U(e));
|
|
159
|
-
const J = o((a, e) => /* @__PURE__ */ t.createElement(m, G(q({ ref: e }, a), { weights: z })));
|
|
160
|
-
J.displayName = "CaretDown";
|
|
161
|
-
var K = Object.defineProperty, Q = Object.defineProperties, T = Object.getOwnPropertyDescriptors, b = Object.getOwnPropertySymbols, W = Object.prototype.hasOwnProperty, Y = Object.prototype.propertyIsEnumerable, v = (a, e, r) => e in a ? K(a, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : a[e] = r, _ = (a, e) => {
|
|
162
|
-
for (var r in e || (e = {}))
|
|
163
|
-
W.call(e, r) && v(a, r, e[r]);
|
|
164
|
-
if (b)
|
|
165
|
-
for (var r of b(e))
|
|
166
|
-
Y.call(e, r) && v(a, r, e[r]);
|
|
167
|
-
return a;
|
|
168
|
-
}, e1 = (a, e) => Q(a, T(e));
|
|
169
|
-
const t1 = o((a, e) => /* @__PURE__ */ t.createElement(m, e1(_({ ref: e }, a), { weights: D })));
|
|
170
|
-
t1.displayName = "CaretUp";
|
|
171
|
-
var a1 = Object.defineProperty, r1 = Object.defineProperties, l1 = Object.getOwnPropertyDescriptors, y = Object.getOwnPropertySymbols, n1 = Object.prototype.hasOwnProperty, c1 = Object.prototype.propertyIsEnumerable, w = (a, e, r) => e in a ? a1(a, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : a[e] = r, o1 = (a, e) => {
|
|
172
|
-
for (var r in e || (e = {}))
|
|
173
|
-
n1.call(e, r) && w(a, r, e[r]);
|
|
174
|
-
if (y)
|
|
175
|
-
for (var r of y(e))
|
|
176
|
-
c1.call(e, r) && w(a, r, e[r]);
|
|
177
|
-
return a;
|
|
178
|
-
}, m1 = (a, e) => r1(a, l1(e));
|
|
179
|
-
const i1 = o((a, e) => /* @__PURE__ */ t.createElement(m, m1(o1({ ref: e }, a), { weights: N })));
|
|
180
|
-
i1.displayName = "X";
|
|
181
|
-
export {
|
|
182
|
-
J as D,
|
|
183
|
-
t1 as I,
|
|
184
|
-
i1 as R,
|
|
185
|
-
D as a,
|
|
186
|
-
m as b,
|
|
187
|
-
z as l,
|
|
188
|
-
S as o,
|
|
189
|
-
N as t
|
|
190
|
-
};
|