@situaction/traq-ui-ste 1.0.14 → 1.0.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/components/button/Button.d.ts +6 -6
- package/dist/components/button/Button.js +44 -40
- package/dist/components/colors/Colors.d.ts +8 -0
- package/dist/components/colors/Colors.js +24 -0
- package/dist/components/icon-button/IconButton.d.ts +6 -6
- package/dist/components/icon-button/IconButton.js +42 -37
- package/dist/components/input/Input.d.ts +11 -12
- package/dist/components/input/Input.js +85 -82
- package/dist/components/tabs/Tabs.d.ts +4 -4
- package/dist/components/tabs/Tabs.js +31 -35
- package/dist/components/tag/Tag.d.ts +7 -8
- package/dist/components/tag/Tag.js +48 -25
- package/dist/components/theme/ThemeContext.js +2 -9
- package/dist/components/title/Title.d.ts +3 -4
- package/dist/components/title/Title.js +10 -8
- package/dist/main.js +14 -15
- package/dist/styles/Button.css +1 -1
- package/dist/styles/Colors.css +1 -0
- package/dist/styles/IconButton.css +1 -1
- package/dist/styles/Input.css +1 -1
- package/dist/styles/Tabs.css +1 -1
- package/dist/styles/Tag.css +1 -1
- package/dist/styles/ThemeContext.css +1 -0
- package/dist/styles/Title.css +1 -0
- package/dist/styles/main.css +1 -1
- package/package.json +12 -13
- package/dist/styles/index.css +0 -1
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { ButtonHTMLAttributes, FC, ReactNode } from 'react';
|
|
2
2
|
import { Color } from '../interface';
|
|
3
3
|
|
|
4
|
-
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
5
|
-
mode?: 'primary' | 'secondary' | 'tertiary' | 'ghost'; /** Is this the principal call to action on the page? */
|
|
4
|
+
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
5
|
+
mode?: 'primary' | 'secondary' | 'tertiary' | 'ghost' | 'text'; /** Is this the principal call to action on the page? */
|
|
6
6
|
color?: Color; /** What background color to use (blue, red, ...)*/
|
|
7
7
|
colorMode?: 'light' | 'dark'; /** what mode do you use for light or dark color **/
|
|
8
8
|
size?: 's' | 'm' | 'l' | 'xl'; /** How large should the button be? */
|
|
9
9
|
label: string; /** button contents */
|
|
10
|
-
error?: boolean;
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
error?: boolean; /** If true, the button will be styled to indicate an error state. */
|
|
11
|
+
selected?: boolean; /** If true, the button is activated */
|
|
12
|
+
childrenLeft?: ReactNode; /** Additional content inside the input */
|
|
13
|
+
childrenRight?: ReactNode; /** Additional content inside the input */
|
|
13
14
|
onClick?: () => void; /** Optional click handler */
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
16
17
|
* Primary UI component for user interaction
|
|
17
18
|
*/
|
|
18
19
|
export declare const Button: FC<ButtonProps>;
|
|
19
|
-
export {};
|
|
@@ -1,63 +1,67 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
button:
|
|
6
|
-
"button-
|
|
7
|
-
"button-
|
|
8
|
-
"button-
|
|
9
|
-
"button-
|
|
10
|
-
"button-
|
|
11
|
-
"button-
|
|
12
|
-
"button-size-
|
|
13
|
-
"button-size-
|
|
14
|
-
"button-size-
|
|
15
|
-
"button-
|
|
16
|
-
"button-gap-
|
|
17
|
-
"button-gap-
|
|
18
|
-
"button-gap-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
import { jsxs as x, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect as y } from "react";
|
|
3
|
+
import '../../styles/Button.css';const j = "_button_1mr6j_38", d = "_flexHorizontalCenter_1mr6j_180", r = {
|
|
4
|
+
button: j,
|
|
5
|
+
"button-primary": "_button-primary_1mr6j_60",
|
|
6
|
+
"button-secondary": "_button-secondary_1mr6j_74",
|
|
7
|
+
"button-tertiary": "_button-tertiary_1mr6j_88",
|
|
8
|
+
"button-ghost": "_button-ghost_1mr6j_102",
|
|
9
|
+
"button-text": "_button-text_1mr6j_118",
|
|
10
|
+
"button-text-selected": "_button-text-selected_1mr6j_131",
|
|
11
|
+
"button-error": "_button-error_1mr6j_137",
|
|
12
|
+
"button-size-xl": "_button-size-xl_1mr6j_150",
|
|
13
|
+
"button-size-l": "_button-size-l_1mr6j_155",
|
|
14
|
+
"button-size-m": "_button-size-m_1mr6j_160",
|
|
15
|
+
"button-size-s": "_button-size-s_1mr6j_165",
|
|
16
|
+
"button-gap-xl": "_button-gap-xl_1mr6j_170",
|
|
17
|
+
"button-gap-l": "_button-gap-l_1mr6j_173",
|
|
18
|
+
"button-gap-m": "_button-gap-m_1mr6j_176",
|
|
19
|
+
"button-gap-s": "_button-gap-s_1mr6j_176",
|
|
20
|
+
flexHorizontalCenter: d
|
|
21
|
+
}, z = ({
|
|
22
|
+
mode: o = "primary",
|
|
23
|
+
size: a = "m",
|
|
22
24
|
color: t,
|
|
23
25
|
colorMode: n,
|
|
24
26
|
label: u,
|
|
25
27
|
error: b,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
selected: i,
|
|
29
|
+
childrenLeft: s,
|
|
30
|
+
childrenRight: _,
|
|
31
|
+
...m
|
|
29
32
|
}) => {
|
|
30
|
-
const l = () => b ? "error" :
|
|
31
|
-
|
|
33
|
+
const l = () => b ? "error" : o;
|
|
34
|
+
y(() => {
|
|
32
35
|
n && !t && console.warn("`colorMode` is defined but `color` is missing. `colorMode` will be ignored.");
|
|
33
36
|
}, [t]);
|
|
34
|
-
const
|
|
37
|
+
const c = [
|
|
35
38
|
r.button,
|
|
36
39
|
r[`button-${l()}`],
|
|
37
|
-
r[`button-size-${
|
|
38
|
-
r[`button-gap-${
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
r[`button-size-${a}`],
|
|
41
|
+
r[`button-gap-${a}`],
|
|
42
|
+
i && o === "text" && r["button-text-selected"],
|
|
43
|
+
r.flexHorizontalCenter
|
|
44
|
+
].join(" "), p = {
|
|
45
|
+
"--dynamic-color-text": t ? n === "dark" ? `var(--color-${t}-900)` : "var(--color-light-100)" : "var(--btn-primary-color-text)",
|
|
42
46
|
"--dynamic-color": t ? `var(--color-${t}-${n === "dark" ? "200" : "900"})` : "var(--btn-primary-color)",
|
|
43
47
|
"--dynamic-color-hover": t ? `var(--color-${t}-${n === "dark" ? "100" : "800"})` : "var(--btn-primary-color-hover)",
|
|
44
48
|
"--dynamic-color-activated": t ? `var(--color-${t}-${n === "dark" ? "50" : "700"})` : "var(--btn-primary-color-activated)"
|
|
45
49
|
};
|
|
46
|
-
return /* @__PURE__ */
|
|
50
|
+
return /* @__PURE__ */ x(
|
|
47
51
|
"button",
|
|
48
52
|
{
|
|
49
53
|
type: "button",
|
|
50
|
-
className:
|
|
51
|
-
style:
|
|
52
|
-
...
|
|
54
|
+
className: c,
|
|
55
|
+
style: o === "primary" ? p : void 0,
|
|
56
|
+
...m,
|
|
53
57
|
children: [
|
|
54
|
-
s && /* @__PURE__ */
|
|
55
|
-
/* @__PURE__ */
|
|
56
|
-
|
|
58
|
+
s && /* @__PURE__ */ e("span", { className: r.flexHorizontalCenter, children: s }),
|
|
59
|
+
/* @__PURE__ */ e("span", { children: u }),
|
|
60
|
+
_ && /* @__PURE__ */ e("span", { className: r.flexHorizontalCenter, children: _ })
|
|
57
61
|
]
|
|
58
62
|
}
|
|
59
63
|
);
|
|
60
64
|
};
|
|
61
65
|
export {
|
|
62
|
-
|
|
66
|
+
z as Button
|
|
63
67
|
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx as e, jsxs as l } from "react/jsx-runtime";
|
|
2
|
+
import '../../styles/Colors.css';const n = "_palette_l21ra_6", d = "_colors_l21ra_13", i = "_desc_l21ra_26", h = "_hex_l21ra_35", s = {
|
|
3
|
+
palette: n,
|
|
4
|
+
colors: d,
|
|
5
|
+
desc: i,
|
|
6
|
+
hex: h
|
|
7
|
+
}, v = ({ color: t, hex: o }) => {
|
|
8
|
+
const r = t === "light" ? ["05", "10", "20", "30", "40", "50", "60", "70", "80", "90", "100"] : ["50", "100", "200", "300", "400", "500", "600", "700", "800", "900", "950"];
|
|
9
|
+
return /* @__PURE__ */ e("div", { className: s.palette, children: o.map((c, a) => /* @__PURE__ */ l("div", { className: s.colors, children: [
|
|
10
|
+
/* @__PURE__ */ e("div", { style: { backgroundColor: c } }),
|
|
11
|
+
/* @__PURE__ */ l("div", { className: s.desc, children: [
|
|
12
|
+
/* @__PURE__ */ l("div", { children: [
|
|
13
|
+
"color-",
|
|
14
|
+
t,
|
|
15
|
+
"-",
|
|
16
|
+
r[a]
|
|
17
|
+
] }),
|
|
18
|
+
/* @__PURE__ */ e("div", { className: s.hex, children: c })
|
|
19
|
+
] })
|
|
20
|
+
] })) });
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
v as default
|
|
24
|
+
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { FC, ReactElement } from 'react';
|
|
2
2
|
import { Color } from '../interface';
|
|
3
3
|
|
|
4
|
-
interface IconButtonProps {
|
|
5
|
-
mode?: 'primary' | 'secondary' | 'tertiary' | 'ghost';
|
|
4
|
+
export interface IconButtonProps {
|
|
5
|
+
mode?: 'primary' | 'secondary' | 'tertiary' | 'ghost' | 'icon'; /** Specifies the visual style of the button. */
|
|
6
6
|
color?: Color; /** What background color to use (blue, red, ...)*/
|
|
7
7
|
colorMode?: 'light' | 'dark'; /** what mode do you use for light or dark color **/
|
|
8
8
|
size?: 's' | 'm' | 'l' | 'xl'; /** How large should the button be? */
|
|
9
|
-
round?: boolean;
|
|
10
|
-
error?: boolean;
|
|
11
|
-
|
|
9
|
+
round?: boolean; /** If true, the button will have rounded corners. */
|
|
10
|
+
error?: boolean; /** If true, the button will be styled to indicate an error state. */
|
|
11
|
+
selected?: boolean; /** If true, the button is activated */
|
|
12
|
+
disabled?: boolean; /** If true, the button will be disabled and non-interactive. */
|
|
12
13
|
children: ReactElement; /** Only icons (React elements) allowed inside the button */
|
|
13
14
|
onClick?: () => void; /** Optional click handler */
|
|
14
15
|
}
|
|
15
16
|
export declare const IconButton: FC<IconButtonProps>;
|
|
16
|
-
export {};
|
|
@@ -1,55 +1,60 @@
|
|
|
1
1
|
import { jsx as m } from "react/jsx-runtime";
|
|
2
|
-
import { useEffect as
|
|
3
|
-
import '../../styles/IconButton.css';const
|
|
4
|
-
button:
|
|
5
|
-
"button-round": "_button-
|
|
6
|
-
"button-primary": "_button-
|
|
7
|
-
"button-secondary": "_button-
|
|
8
|
-
"button-tertiary": "_button-
|
|
9
|
-
"button-ghost": "_button-
|
|
10
|
-
"button-
|
|
11
|
-
"button-
|
|
12
|
-
"button-
|
|
13
|
-
"button-size-
|
|
14
|
-
"button-size-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
import { useEffect as y } from "react";
|
|
3
|
+
import '../../styles/IconButton.css';const k = "_button_7dkt1_38", x = "_flexHorizontalCenter_7dkt1_175", o = {
|
|
4
|
+
button: k,
|
|
5
|
+
"button-round": "_button-round_7dkt1_66",
|
|
6
|
+
"button-primary": "_button-primary_7dkt1_69",
|
|
7
|
+
"button-secondary": "_button-secondary_7dkt1_82",
|
|
8
|
+
"button-tertiary": "_button-tertiary_7dkt1_96",
|
|
9
|
+
"button-ghost": "_button-ghost_7dkt1_110",
|
|
10
|
+
"button-text": "_button-text_7dkt1_123",
|
|
11
|
+
"button-text-selected": "_button-text-selected_7dkt1_135",
|
|
12
|
+
"button-error": "_button-error_7dkt1_141",
|
|
13
|
+
"button-size-xl": "_button-size-xl_7dkt1_154",
|
|
14
|
+
"button-size-l": "_button-size-l_7dkt1_159",
|
|
15
|
+
"button-size-m": "_button-size-m_7dkt1_164",
|
|
16
|
+
"button-size-s": "_button-size-s_7dkt1_169",
|
|
17
|
+
flexHorizontalCenter: x
|
|
18
|
+
}, f = ({
|
|
19
|
+
mode: r = "primary",
|
|
17
20
|
color: t,
|
|
18
|
-
colorMode:
|
|
21
|
+
colorMode: n,
|
|
19
22
|
size: e = "m",
|
|
20
|
-
error:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
error: u,
|
|
24
|
+
selected: i,
|
|
25
|
+
round: a,
|
|
26
|
+
disabled: _,
|
|
27
|
+
children: b,
|
|
28
|
+
onClick: s
|
|
25
29
|
}) => {
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
30
|
+
const d = () => u ? "error" : r;
|
|
31
|
+
y(() => {
|
|
32
|
+
n && !t && console.warn("`colorMode` is defined but `color` is missing. `colorMode` will be ignored.");
|
|
29
33
|
}, [t]);
|
|
30
|
-
const
|
|
34
|
+
const l = [
|
|
31
35
|
o.button,
|
|
32
|
-
o[`button-${
|
|
33
|
-
|
|
36
|
+
o[`button-${d()}`],
|
|
37
|
+
a && o["button-round"],
|
|
34
38
|
o[`button-size-${e}`],
|
|
35
|
-
"
|
|
39
|
+
i && r === "icon" && o["button-text-selected"],
|
|
40
|
+
o.flexHorizontalCenter
|
|
36
41
|
].join(" "), c = {
|
|
37
|
-
"--dynamic-color-text": t ?
|
|
38
|
-
"--dynamic-color": t ? `var(--color-${t}-${
|
|
39
|
-
"--dynamic-color-hover": t ? `var(--color-${t}-${
|
|
40
|
-
"--dynamic-color-activated": t ? `var(--color-${t}-${
|
|
42
|
+
"--dynamic-color-text": t ? n === "dark" ? "var(--primary-color-900)" : "var(--color-light-100)" : "var(--btn-primary-color-text)",
|
|
43
|
+
"--dynamic-color": t ? `var(--color-${t}-${n === "dark" ? "200" : "900"})` : "var(--btn-primary-color)",
|
|
44
|
+
"--dynamic-color-hover": t ? `var(--color-${t}-${n === "dark" ? "100" : "800"})` : "var(--btn-primary-color-hover)",
|
|
45
|
+
"--dynamic-color-activated": t ? `var(--color-${t}-${n === "dark" ? "50" : "700"})` : "var(--btn-primary-color-activated)"
|
|
41
46
|
};
|
|
42
47
|
return /* @__PURE__ */ m(
|
|
43
48
|
"button",
|
|
44
49
|
{
|
|
45
|
-
className:
|
|
50
|
+
className: l,
|
|
46
51
|
style: c,
|
|
47
|
-
onClick:
|
|
48
|
-
disabled:
|
|
49
|
-
children:
|
|
52
|
+
onClick: s,
|
|
53
|
+
disabled: _,
|
|
54
|
+
children: b
|
|
50
55
|
}
|
|
51
56
|
);
|
|
52
57
|
};
|
|
53
58
|
export {
|
|
54
|
-
|
|
59
|
+
f as IconButton
|
|
55
60
|
};
|
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
import { FC, InputHTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
|
|
3
|
-
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
3
|
+
export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
4
4
|
sizeStyle?: 's' | 'm' | 'l' | 'xl'; /** How large should the input be? */
|
|
5
|
-
label: string; /** input
|
|
6
|
-
labelUnit?: string;
|
|
7
|
-
dark?: boolean;
|
|
5
|
+
label: string; /** The label or placeholder text for the input field */
|
|
6
|
+
labelUnit?: string; /** Optional unit or additional label to display next to the input */
|
|
7
|
+
dark?: boolean; /** Toggle for dark mode styling */
|
|
8
8
|
color?: string; /** red, green, blue, pink **/
|
|
9
9
|
classNames?: string; /** class names for parent div due to general input props (input elem takes every other props in <Input/> component) **/
|
|
10
|
-
focusBackground?: boolean;
|
|
10
|
+
focusBackground?: boolean; /** Whether to change the background color when the input is focused */
|
|
11
11
|
status?: 'default' | 'error' | 'success' | 'ternary'; /** input status style **/
|
|
12
|
-
ghost?: boolean;
|
|
13
|
-
round?: boolean;
|
|
14
|
-
iconLeft?: ReactNode; /**
|
|
15
|
-
iconRight?: ReactNode; /**
|
|
16
|
-
defaultValue?: string;
|
|
17
|
-
disabled?: boolean;
|
|
12
|
+
ghost?: boolean; /** Whether to apply a ghost style (transparent background) */
|
|
13
|
+
round?: boolean; /** If true, the input will have rounded corners */
|
|
14
|
+
iconLeft?: ReactNode; /** Icon or element to display on the left side of the input */
|
|
15
|
+
iconRight?: ReactNode; /** Icon or element to display on the right side of the input */
|
|
16
|
+
defaultValue?: string; /** Default value for the input field */
|
|
17
|
+
disabled?: boolean; /** Disable the input field */
|
|
18
18
|
}
|
|
19
19
|
export declare const Input: FC<InputProps>;
|
|
20
|
-
export {};
|
|
@@ -1,108 +1,111 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as _, jsx as s, Fragment as R } from "react/jsx-runtime";
|
|
2
2
|
import { useState as y, useRef as q } from "react";
|
|
3
|
-
import '../../styles/Input.css';const
|
|
4
|
-
"input-style": "_input-
|
|
5
|
-
"input-style-ghost": "_input-style-
|
|
6
|
-
"input-style-disabled": "_input-style-
|
|
7
|
-
"input-style-focused": "_input-style-
|
|
8
|
-
"input-style-error": "_input-style-
|
|
9
|
-
"input-style-error-focused": "_input-style-error-
|
|
10
|
-
"input-style-error-focus-background": "_input-style-error-focus-
|
|
11
|
-
"input-style-error-disabled": "_input-style-error-
|
|
12
|
-
"input-style-success": "_input-style-
|
|
13
|
-
"input-style-success-focused": "_input-style-success-
|
|
14
|
-
"input-style-success-focus-background": "_input-style-success-focus-
|
|
15
|
-
"input-style-success-disabled": "_input-style-success-
|
|
16
|
-
"input-container": "_input-
|
|
17
|
-
"floating-input": "_floating-
|
|
18
|
-
"floating-input-size-xl": "_floating-input-size-
|
|
19
|
-
"floating-input-size-l": "_floating-input-size-
|
|
20
|
-
"floating-input-size-m": "_floating-input-size-
|
|
21
|
-
"floating-input-size-s": "_floating-input-size-
|
|
22
|
-
"input-style-size-xl": "_input-style-size-
|
|
23
|
-
"input-style-size-l": "_input-style-size-
|
|
24
|
-
"input-style-size-m": "_input-style-size-
|
|
25
|
-
"input-style-size-s": "_input-style-size-
|
|
26
|
-
"input-style-radius": "_input-style-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
3
|
+
import '../../styles/Input.css';const A = "_flexHorizontalBetween_dkt9v_197", E = "_flexHorizontal_dkt9v_197", t = {
|
|
4
|
+
"input-style": "_input-style_dkt9v_65",
|
|
5
|
+
"input-style-ghost": "_input-style-ghost_dkt9v_76",
|
|
6
|
+
"input-style-disabled": "_input-style-disabled_dkt9v_81",
|
|
7
|
+
"input-style-focused": "_input-style-focused_dkt9v_90",
|
|
8
|
+
"input-style-error": "_input-style-error_dkt9v_95",
|
|
9
|
+
"input-style-error-focused": "_input-style-error-focused_dkt9v_102",
|
|
10
|
+
"input-style-error-focus-background": "_input-style-error-focus-background_dkt9v_108",
|
|
11
|
+
"input-style-error-disabled": "_input-style-error-disabled_dkt9v_111",
|
|
12
|
+
"input-style-success": "_input-style-success_dkt9v_119",
|
|
13
|
+
"input-style-success-focused": "_input-style-success-focused_dkt9v_126",
|
|
14
|
+
"input-style-success-focus-background": "_input-style-success-focus-background_dkt9v_132",
|
|
15
|
+
"input-style-success-disabled": "_input-style-success-disabled_dkt9v_135",
|
|
16
|
+
"input-container": "_input-container_dkt9v_143",
|
|
17
|
+
"floating-input": "_floating-input_dkt9v_147",
|
|
18
|
+
"floating-input-size-xl": "_floating-input-size-xl_dkt9v_153",
|
|
19
|
+
"floating-input-size-l": "_floating-input-size-l_dkt9v_157",
|
|
20
|
+
"floating-input-size-m": "_floating-input-size-m_dkt9v_161",
|
|
21
|
+
"floating-input-size-s": "_floating-input-size-s_dkt9v_165",
|
|
22
|
+
"input-style-size-xl": "_input-style-size-xl_dkt9v_169",
|
|
23
|
+
"input-style-size-l": "_input-style-size-l_dkt9v_175",
|
|
24
|
+
"input-style-size-m": "_input-style-size-m_dkt9v_181",
|
|
25
|
+
"input-style-size-s": "_input-style-size-s_dkt9v_187",
|
|
26
|
+
"input-style-radius": "_input-style-radius_dkt9v_193",
|
|
27
|
+
flexHorizontalBetween: A,
|
|
28
|
+
flexHorizontal: E
|
|
29
|
+
}, K = ({
|
|
30
|
+
sizeStyle: u = "m",
|
|
31
|
+
label: f,
|
|
32
|
+
labelUnit: o,
|
|
31
33
|
color: n,
|
|
32
34
|
dark: r,
|
|
33
|
-
focusBackground:
|
|
34
|
-
status:
|
|
35
|
-
ghost:
|
|
36
|
-
iconLeft:
|
|
35
|
+
focusBackground: l,
|
|
36
|
+
status: a = "default",
|
|
37
|
+
ghost: v = !1,
|
|
38
|
+
iconLeft: c,
|
|
37
39
|
iconRight: p,
|
|
38
|
-
round:
|
|
39
|
-
classNames:
|
|
40
|
-
disabled:
|
|
41
|
-
defaultValue:
|
|
42
|
-
...
|
|
40
|
+
round: k,
|
|
41
|
+
classNames: g,
|
|
42
|
+
disabled: i,
|
|
43
|
+
defaultValue: m,
|
|
44
|
+
...z
|
|
43
45
|
}) => {
|
|
44
|
-
const [
|
|
45
|
-
|
|
46
|
-
},
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
t && e["input-style-focused"],
|
|
55
|
-
o && e["input-style-disabled"]
|
|
56
|
-
].filter(Boolean).join(" "), k = [
|
|
57
|
-
e["input-style-error"],
|
|
58
|
-
o && e["input-style-error-disabled"],
|
|
59
|
-
t && e["input-style-error-focused"],
|
|
60
|
-
t && i && e["input-style-error-focus-background"]
|
|
46
|
+
const [e, d] = y(!1), [b, h] = y(m || ""), x = q(null), $ = () => d(!0), H = () => d(!1), S = (D) => {
|
|
47
|
+
h(D.target.value);
|
|
48
|
+
}, j = [
|
|
49
|
+
t["input-style"],
|
|
50
|
+
t[`input-style-size-${u}`],
|
|
51
|
+
t[`input-style-gap-${a}`],
|
|
52
|
+
k && t["input-style-radius"],
|
|
53
|
+
t.flexHorizontalBetween,
|
|
54
|
+
"gap4",
|
|
55
|
+
v && t["input-style-ghost"]
|
|
61
56
|
].filter(Boolean).join(" "), B = [
|
|
62
|
-
e["input-style-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
t
|
|
66
|
-
|
|
67
|
-
|
|
57
|
+
e && t["input-style-focused"],
|
|
58
|
+
i && t["input-style-disabled"]
|
|
59
|
+
].filter(Boolean).join(" "), N = [
|
|
60
|
+
t["input-style-error"],
|
|
61
|
+
i && t["input-style-error-disabled"],
|
|
62
|
+
e && t["input-style-error-focused"],
|
|
63
|
+
e && l && t["input-style-error-focus-background"]
|
|
64
|
+
].filter(Boolean).join(" "), C = [
|
|
65
|
+
t["input-style-success"],
|
|
66
|
+
i && t["input-style-success-disabled"],
|
|
67
|
+
e && t["input-style-success-focused"],
|
|
68
|
+
e && l && t["input-style-success-focus-background"]
|
|
69
|
+
].filter(Boolean).join(" "), w = () => {
|
|
70
|
+
switch (a) {
|
|
68
71
|
case "error":
|
|
69
|
-
return
|
|
72
|
+
return N;
|
|
70
73
|
case "success":
|
|
71
|
-
return
|
|
74
|
+
return C;
|
|
72
75
|
default:
|
|
73
|
-
return
|
|
76
|
+
return B;
|
|
74
77
|
}
|
|
75
|
-
},
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
].join(" "),
|
|
78
|
+
}, F = [
|
|
79
|
+
t["floating-input"],
|
|
80
|
+
t[`floating-input-size-${u}`]
|
|
81
|
+
].join(" "), I = {
|
|
79
82
|
"--dynamic-color": `var(--color-${n}-${r ? "800" : "300"})`,
|
|
80
83
|
"--dynamic-color-border": `var(--color-${n}-${r ? "800" : "300"})`,
|
|
81
|
-
"--dynamic-background-color": `${
|
|
84
|
+
"--dynamic-background-color": `${l ? `var(--color-${n}-50)` : "transparent"}`
|
|
82
85
|
}, V = {
|
|
83
86
|
"--dynamic-color": "var(--color-blue-situaction-800)",
|
|
84
87
|
"--dynamic-color-border": "var(--color-blue-situaction-800)",
|
|
85
|
-
"--dynamic-background-color": `${
|
|
88
|
+
"--dynamic-background-color": `${l ? "var(--color-blue-situaction-50)" : "transparent"}`
|
|
86
89
|
};
|
|
87
|
-
return /* @__PURE__ */
|
|
88
|
-
|
|
89
|
-
/* @__PURE__ */ s("div", { className:
|
|
90
|
+
return /* @__PURE__ */ _("div", { ref: x, className: `input-style ${j} ${g} ${w()} gap-xs-2`, onFocus: $, onBlur: H, style: n ? I : V, children: [
|
|
91
|
+
c && /* @__PURE__ */ s("span", { className: "", children: c }),
|
|
92
|
+
/* @__PURE__ */ s("div", { className: t["input-container"], children: /* @__PURE__ */ s(
|
|
90
93
|
"input",
|
|
91
94
|
{
|
|
92
95
|
autoCorrect: "false",
|
|
93
|
-
className:
|
|
94
|
-
placeholder:
|
|
95
|
-
value:
|
|
96
|
-
onChange:
|
|
97
|
-
...
|
|
96
|
+
className: F,
|
|
97
|
+
placeholder: f,
|
|
98
|
+
value: b,
|
|
99
|
+
onChange: S,
|
|
100
|
+
...z
|
|
98
101
|
}
|
|
99
102
|
) }),
|
|
100
|
-
/* @__PURE__ */
|
|
101
|
-
|
|
102
|
-
p && /* @__PURE__ */ s("span", { className:
|
|
103
|
+
/* @__PURE__ */ _(R, { children: [
|
|
104
|
+
o && /* @__PURE__ */ s("div", { children: o }),
|
|
105
|
+
p && /* @__PURE__ */ s("span", { className: t.flexHorizontal, children: p })
|
|
103
106
|
] })
|
|
104
107
|
] });
|
|
105
108
|
};
|
|
106
109
|
export {
|
|
107
|
-
|
|
110
|
+
K as Input
|
|
108
111
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
|
|
3
|
-
interface TabsProps {
|
|
4
|
-
listItems: string[];
|
|
5
|
-
|
|
3
|
+
export interface TabsProps {
|
|
4
|
+
listItems: string[]; /** Array of strings representing the labels of the tabs */
|
|
5
|
+
defaultActiveTab?: number; /** Index of the tab that should be active by default */
|
|
6
|
+
onTabSelect: (selectedItem: string) => void; /** Callback function to handle tab selection, receiving the selected tab's label */
|
|
6
7
|
}
|
|
7
8
|
export declare const Tabs: FC<TabsProps>;
|
|
8
|
-
export {};
|
|
@@ -1,43 +1,39 @@
|
|
|
1
|
-
import { jsxs as h, jsx as
|
|
2
|
-
import { useState as
|
|
3
|
-
import
|
|
4
|
-
const
|
|
5
|
-
"tab-container": "_tab-
|
|
6
|
-
"tab-items": "_tab-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
width: e.width
|
|
1
|
+
import { jsxs as h, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { useState as u, useRef as a, useLayoutEffect as g } from "react";
|
|
3
|
+
import { Button as v } from "../button/Button.js";
|
|
4
|
+
import '../../styles/Tabs.css';const y = "_underline_eo8ix_34", $ = "_flexHorizontal_eo8ix_42", l = {
|
|
5
|
+
"tab-container": "_tab-container_eo8ix_21",
|
|
6
|
+
"tab-items": "_tab-items_eo8ix_28",
|
|
7
|
+
underline: y,
|
|
8
|
+
flexHorizontal: $
|
|
9
|
+
}, w = ({ listItems: o, onTabSelect: f, defaultActiveTab: d = 0 }) => {
|
|
10
|
+
const [r, b] = u(d), [x, m] = u({}), i = a(null), _ = a(null), s = a(new Array(o.length).fill(null)), p = (e) => {
|
|
11
|
+
b(e), f(o[e]);
|
|
12
|
+
}, R = (e) => {
|
|
13
|
+
if (i.current && e) {
|
|
14
|
+
const t = e.getBoundingClientRect(), c = i.current.getBoundingClientRect();
|
|
15
|
+
m({
|
|
16
|
+
left: `${t.left - c.left}px`,
|
|
17
|
+
width: `${t.width}px`
|
|
19
18
|
});
|
|
20
19
|
}
|
|
21
20
|
};
|
|
22
|
-
return
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}, [r]), /* @__PURE__ */ h("div", { className: `tab ${n["tab-container"]}`, ref: i, children: [
|
|
29
|
-
/* @__PURE__ */ a("div", { className: `flexHorizontal ${n["tab-items"]}`, children: c.map((t, e) => /* @__PURE__ */ a(
|
|
30
|
-
"div",
|
|
21
|
+
return g(() => {
|
|
22
|
+
const e = s.current[r];
|
|
23
|
+
e && R(e);
|
|
24
|
+
}, [r]), /* @__PURE__ */ h("div", { className: `tab ${l["tab-container"]}`, ref: i, children: [
|
|
25
|
+
/* @__PURE__ */ n("div", { className: `${l.flexHorizontal} ${l["tab-items"]}`, children: o.map((e, t) => /* @__PURE__ */ n("div", { ref: (c) => s.current[t] = c, children: /* @__PURE__ */ n(
|
|
26
|
+
v,
|
|
31
27
|
{
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
)) }),
|
|
38
|
-
/* @__PURE__ */
|
|
28
|
+
label: e,
|
|
29
|
+
mode: "text",
|
|
30
|
+
selected: t === r,
|
|
31
|
+
onClick: () => p(t)
|
|
32
|
+
}
|
|
33
|
+
) }, t)) }),
|
|
34
|
+
/* @__PURE__ */ n("div", { ref: _, className: l.underline, style: x })
|
|
39
35
|
] });
|
|
40
36
|
};
|
|
41
37
|
export {
|
|
42
|
-
|
|
38
|
+
w as Tabs
|
|
43
39
|
};
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { FC, ReactNode } from 'react';
|
|
2
2
|
import { Color } from '../interface';
|
|
3
3
|
|
|
4
|
-
interface TagProps {
|
|
5
|
-
label
|
|
6
|
-
color?: Color;
|
|
7
|
-
deletable?: boolean;
|
|
8
|
-
size?: 's' | 'm' | 'l' | 'xl';
|
|
9
|
-
children?: ReactNode;
|
|
10
|
-
onClick?: () => void;
|
|
4
|
+
export interface TagProps {
|
|
5
|
+
label?: string; /** The text label for the tag. This will be displayed if provided. */
|
|
6
|
+
color?: Color; /** The color of the tag, must be one of the defined valid colors. */
|
|
7
|
+
deletable?: boolean; /** Indicates if the tag can be deleted; when true, a delete icon is shown. */
|
|
8
|
+
size?: 's' | 'm' | 'l' | 'xl'; /** The size of the tag, which affects its styling. */
|
|
9
|
+
children?: ReactNode; /** Additional content to be displayed inside the tag, like icons or other elements. */
|
|
10
|
+
onClick?: () => void; /** A callback function to be called when the tag is clicked. */
|
|
11
11
|
}
|
|
12
12
|
export declare const Tag: FC<TagProps>;
|
|
13
|
-
export {};
|
|
@@ -1,43 +1,66 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useEffect as
|
|
3
|
-
import { IconButton as
|
|
4
|
-
import '../../styles/Tag.css';const
|
|
5
|
-
tag:
|
|
6
|
-
"tag-children": "_tag-
|
|
7
|
-
"tag-size-xl": "_tag-size-
|
|
8
|
-
"tag-size-
|
|
9
|
-
"tag-size-
|
|
10
|
-
"tag-size-
|
|
1
|
+
import { jsxs as c, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect as d } from "react";
|
|
3
|
+
import { IconButton as f } from "../icon-button/IconButton.js";
|
|
4
|
+
import '../../styles/Tag.css';const u = "_tag_nyjfz_6", m = "_flexHorizontalCenter_nyjfz_64", y = "_flexHorizontal_nyjfz_64", e = {
|
|
5
|
+
tag: u,
|
|
6
|
+
"tag-children": "_tag-children_nyjfz_16",
|
|
7
|
+
"tag-size-xl": "_tag-size-xl_nyjfz_23",
|
|
8
|
+
"tag-size-xl-round": "_tag-size-xl-round_nyjfz_27",
|
|
9
|
+
"tag-size-l": "_tag-size-l_nyjfz_33",
|
|
10
|
+
"tag-size-l-round": "_tag-size-l-round_nyjfz_37",
|
|
11
|
+
"tag-size-m": "_tag-size-m_nyjfz_43",
|
|
12
|
+
"tag-size-m-round": "_tag-size-m-round_nyjfz_47",
|
|
13
|
+
"tag-size-s": "_tag-size-s_nyjfz_53",
|
|
14
|
+
"tag-size-s-round": "_tag-size-s-round_nyjfz_57",
|
|
15
|
+
flexHorizontalCenter: m,
|
|
16
|
+
flexHorizontal: y
|
|
11
17
|
}, a = ["light", "dark", "grey", "blue-grey", "blue", "blue-situaction", "purple", "pink", "gold", "brown", "emerald"], v = ({
|
|
12
|
-
label:
|
|
18
|
+
label: o,
|
|
13
19
|
color: t,
|
|
14
|
-
deletable:
|
|
15
|
-
size:
|
|
16
|
-
children:
|
|
20
|
+
deletable: l = !1,
|
|
21
|
+
size: s = "m",
|
|
22
|
+
children: i,
|
|
17
23
|
onClick: r
|
|
18
24
|
}) => {
|
|
19
|
-
|
|
25
|
+
d(() => {
|
|
20
26
|
t && !a.includes(t) && console.warn(`Warning: The color "${t}" is not a valid option. Expected one of: ${a.join(", ")}.`);
|
|
21
27
|
}, [t]);
|
|
22
|
-
const
|
|
23
|
-
|
|
24
|
-
i[`tag-size-${
|
|
25
|
-
|
|
28
|
+
const z = [
|
|
29
|
+
e.tag,
|
|
30
|
+
i && !o && e[`tag-size-${s}-round`],
|
|
31
|
+
e[`tag-size-${s}`],
|
|
32
|
+
e.flexHorizontalCenter
|
|
26
33
|
].join(" "), g = {
|
|
27
34
|
"--dynamic-background": t && a.includes(t) ? `var(--color-${t}-200)` : "var(--color-blue-situaction-200)",
|
|
28
35
|
"--dynamic-color-text": t && a.includes(t) ? `var(--color-${t}-950)` : "var(--color-blue-situaction-950)"
|
|
29
|
-
},
|
|
36
|
+
}, _ = {
|
|
30
37
|
color: t ? `var(--color${t}-950)` : "var(--color-blue-situaction-950)"
|
|
31
38
|
};
|
|
32
|
-
return /* @__PURE__ */
|
|
39
|
+
return /* @__PURE__ */ c(
|
|
33
40
|
"div",
|
|
34
41
|
{
|
|
35
|
-
className:
|
|
42
|
+
className: z,
|
|
36
43
|
style: g,
|
|
37
44
|
children: [
|
|
38
|
-
|
|
39
|
-
/* @__PURE__ */
|
|
40
|
-
|
|
45
|
+
i && /* @__PURE__ */ n("div", { className: `${e.flexHorizontalCenter} ${e["tag-children"]}`, children: i }),
|
|
46
|
+
o && /* @__PURE__ */ n("label", { className: e.flexHorizontal, children: o }),
|
|
47
|
+
l && /* @__PURE__ */ n(f, { mode: "ghost", size: "s", onClick: () => r, children: /* @__PURE__ */ n(
|
|
48
|
+
"svg",
|
|
49
|
+
{
|
|
50
|
+
style: _,
|
|
51
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52
|
+
width: "9",
|
|
53
|
+
height: "9",
|
|
54
|
+
fill: "currentColor",
|
|
55
|
+
viewBox: "0 0 256 256",
|
|
56
|
+
children: /* @__PURE__ */ n(
|
|
57
|
+
"path",
|
|
58
|
+
{
|
|
59
|
+
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"
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
}
|
|
63
|
+
) })
|
|
41
64
|
]
|
|
42
65
|
}
|
|
43
66
|
);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as g } from "react/jsx-runtime";
|
|
2
2
|
import { createContext as S, useState as f, useContext as k } from "react";
|
|
3
3
|
import { baseTheme as r } from "./createTheme.js";
|
|
4
|
-
const h = S(void 0), j = ({ children: a, theme: i, mode: $ }) => {
|
|
4
|
+
import '../../styles/ThemeContext.css';const h = S(void 0), j = ({ children: a, theme: i, mode: $ }) => {
|
|
5
5
|
var y, s, c, d, e, p, m;
|
|
6
6
|
const [o] = f(i ?? r), [t, x] = f($ ?? "light"), b = () => {
|
|
7
7
|
x((l) => l === "light" ? "dark" : "light");
|
|
@@ -13,14 +13,7 @@ const h = S(void 0), j = ({ children: a, theme: i, mode: $ }) => {
|
|
|
13
13
|
"--primary-color": t === "light" ? `var(--color-${((d = o == null ? void 0 : o.color) == null ? void 0 : d.primary) ?? r.color.primary}-900)` : `var(--color-${((e = o == null ? void 0 : o.color) == null ? void 0 : e.primary) ?? r.color.primary}-200)`,
|
|
14
14
|
"--secondary-color": t === "light" ? `var(--color-${((p = o == null ? void 0 : o.color) == null ? void 0 : p.primary) ?? r.color.primary}-200)` : `var(--color-${((m = o == null ? void 0 : o.color) == null ? void 0 : m.primary) ?? r.color.primary}-900)`
|
|
15
15
|
};
|
|
16
|
-
return /* @__PURE__ */ g(h.Provider, { value: { theme: o, mode: t, toggleMode: b }, children: /* @__PURE__ */ g(
|
|
17
|
-
"div",
|
|
18
|
-
{
|
|
19
|
-
"data-theme": t,
|
|
20
|
-
style: F,
|
|
21
|
-
children: a
|
|
22
|
-
}
|
|
23
|
-
) });
|
|
16
|
+
return /* @__PURE__ */ g(h.Provider, { value: { theme: o, mode: t, toggleMode: b }, children: /* @__PURE__ */ g("div", { "data-theme": t, style: F, children: a }) });
|
|
24
17
|
}, E = () => {
|
|
25
18
|
const a = k(h);
|
|
26
19
|
if (a === void 0)
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { FC, ReactNode } from 'react';
|
|
2
2
|
|
|
3
|
-
interface TitleProps {
|
|
4
|
-
title: string;
|
|
5
|
-
children?: ReactNode;
|
|
3
|
+
export interface TitleProps {
|
|
4
|
+
title: string; /** The main title text to be displayed in the heading. */
|
|
5
|
+
children?: ReactNode; /** Optional additional content to be displayed alongside the title, such as icons or other elements. */
|
|
6
6
|
}
|
|
7
7
|
export declare const Title: FC<TitleProps>;
|
|
8
|
-
export {};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import '../../styles/Title.css';const n = "_flexHorizontal_1funw_6", r = {
|
|
3
|
+
flexHorizontal: n
|
|
4
|
+
}, i = ({
|
|
5
|
+
title: o,
|
|
6
|
+
children: l
|
|
7
|
+
}) => /* @__PURE__ */ t("div", { className: `${r.flexHorizontal} gap-xs-3 fontSize30`, children: [
|
|
8
|
+
l,
|
|
9
|
+
/* @__PURE__ */ e("h1", { children: o })
|
|
8
10
|
] });
|
|
9
11
|
export {
|
|
10
|
-
|
|
12
|
+
i as Title
|
|
11
13
|
};
|
package/dist/main.js
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
import { Button as
|
|
2
|
-
import { Input as
|
|
3
|
-
import { Tabs as
|
|
4
|
-
import { IconButton as
|
|
5
|
-
import { Tag as
|
|
1
|
+
import { Button as e } from "./components/button/Button.js";
|
|
2
|
+
import { Input as m } from "./components/input/Input.js";
|
|
3
|
+
import { Tabs as f } from "./components/tabs/Tabs.js";
|
|
4
|
+
import { IconButton as T } from "./components/icon-button/IconButton.js";
|
|
5
|
+
import { Tag as u } from "./components/tag/Tag.js";
|
|
6
6
|
import { Title as h } from "./components/title/Title.js";
|
|
7
|
-
import { ThemeProvider as
|
|
8
|
-
import './styles/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
B as ThemeProvider,
|
|
7
|
+
import { ThemeProvider as s, useTheme as B } from "./components/theme/ThemeContext.js";
|
|
8
|
+
import './styles/main.css';export {
|
|
9
|
+
e as Button,
|
|
10
|
+
T as IconButton,
|
|
11
|
+
m as Input,
|
|
12
|
+
f as Tabs,
|
|
13
|
+
u as Tag,
|
|
14
|
+
s as ThemeProvider,
|
|
16
15
|
h as Title,
|
|
17
|
-
|
|
16
|
+
B as useTheme
|
|
18
17
|
};
|
package/dist/styles/Button.css
CHANGED
|
@@ -1 +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}:root,[data-theme=light]{--btn-primary-color: var(--primary-color-900);--btn-primary-color-hover: var(--primary-color-800);--btn-primary-color-activated: var(--primary-color-700);--btn-primary-color-text: var(--color-light-100);--color-text: var(--color-blue-situaction-900)}[data-theme=dark]{--btn-primary-color: var(--primary-color-200);--btn-primary-color-hover: var(--primary-color-100);--btn-primary-color-activated: var(--primary-color-50);--btn-primary-color-text: var(--primary-color-900);--color-text: var(--color-light-100)}._button_1mr6j_38{font-family:var(--font-family);font-weight:500;border:0;border-radius:8px;cursor:pointer;width:fit-content}._button_1mr6j_38:focus{outline:none}._button_1mr6j_38:disabled{background-color:#0f0f0f0d;color:#0f0f0f66;border:1px solid rgba(15,15,15,.1);cursor:initial;pointer-events:none}._button_1mr6j_38:disabled *{fill:#0f0f0f66}._button-primary_1mr6j_60{color:var(--dynamic-color-text);background-color:var(--dynamic-color)}._button-primary_1mr6j_60:hover{background-color:var(--dynamic-color-hover)}._button-primary_1mr6j_60:active{background-color:var(--dynamic-color-activated);outline:none}._button-primary_1mr6j_60 *{fill:var(--dynamic-color-text)}._button-secondary_1mr6j_74{color:var(--color-text);background-color:#96b4ee33;border:1px solid rgba(150,180,238,.5)}._button-secondary_1mr6j_74:hover{background-color:#96b4ee66}._button-secondary_1mr6j_74:active{background-color:#96b4ee99}._button-secondary_1mr6j_74 *{fill:var(--color-text)}._button-tertiary_1mr6j_88{color:var(--color-text);background-color:transparent;border:1px solid rgba(150,180,238,.5)}._button-tertiary_1mr6j_88:hover{background-color:#96b4ee1a}._button-tertiary_1mr6j_88:active{background-color:#96b4ee33}._button-tertiary_1mr6j_88 *{fill:var(--color-text)}._button-ghost_1mr6j_102{color:var(--color-text);background-color:transparent}._button-ghost_1mr6j_102:hover{background-color:#96b4ee1a}._button-ghost_1mr6j_102:active{background-color:#96b4ee33}._button-ghost_1mr6j_102:disabled{border:none}._button-ghost_1mr6j_102 *{fill:var(--color-text)}._button-text_1mr6j_118{color:#96b4eecc;background-color:transparent;padding:0!important}._button-text_1mr6j_118:hover{color:#96b4ee}._button-text_1mr6j_118:disabled{border:none;background-color:transparent;color:#a5b4bb}._button-text-selected_1mr6j_131,._button-text-selected_1mr6j_131:hover{color:var(--color-text)}._button-error_1mr6j_137{color:#fff;background-color:#ff4747}._button-error_1mr6j_137:hover{background-color:#ed1515}._button-error_1mr6j_137:active{background-color:#c80d0d}._button-error_1mr6j_137 *{fill:var(--color-text)}._button-size-xl_1mr6j_150{padding:1rem 2rem;font-size:1.125em;line-height:28px}._button-size-l_1mr6j_155{padding:.75rem 1.5rem;font-size:1em;line-height:24px}._button-size-m_1mr6j_160{padding:.5rem 1rem;font-size:.875em;line-height:22px}._button-size-s_1mr6j_165{padding:.375rem .75rem;font-size:.75em;line-height:16px}._button-gap-xl_1mr6j_170{gap:12px}._button-gap-l_1mr6j_173{gap:8px}._button-gap-m_1mr6j_176,._button-gap-s_1mr6j_176{gap:4px}._flexHorizontalCenter_1mr6j_180{display:flex;justify-content:center;align-items:center;flex-direction:row}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._palette_l21ra_6{display:flex;align-items:center;gap:.75rem;font-family:Urbanist,sans-serif}._colors_l21ra_13{border-radius:.5rem;box-shadow:0 5px 15px #0000001f,0 15px 35px #676e7614;min-width:120px;height:180px;font-family:Urbanist,sans-serif;font-size:.875em}._colors_l21ra_13>div{border-radius:8px 8px 0 0;width:100%;height:60%}._colors_l21ra_13 ._desc_l21ra_26{display:flex;justify-content:start;flex-direction:column;gap:.125rem;padding:.75rem;box-sizing:border-box;font-size:1em}._colors_l21ra_13 ._hex_l21ra_35{font-weight:600}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root,[data-theme=light]{--btn-primary-color: var(--primary-color-900);--btn-primary-color-hover: var(--primary-color-800);--btn-primary-color-activated: var(--primary-color-700);--btn-primary-color-text: var(--color-light-100);--color-text: var(--color-blue-situaction-900)}[data-theme=dark]{--btn-primary-color: var(--primary-color-200);--btn-primary-color-hover: var(--primary-color-100);--btn-primary-color-activated: var(--primary-color-50);--btn-primary-color-text: var(--primary-color-900);--color-text: var(--color-light-100)}._button_7dkt1_38{font-family:var(--font-family);font-weight:500;border:0;cursor:pointer;line-height:1;box-shadow:0 4px 10px #00000008;display:inline-flex;justify-content:center;align-items:center;min-width:12px;min-height:12px;aspect-ratio:1/1}._button_7dkt1_38:focus{outline:none}._button_7dkt1_38:disabled{background-color:#0f0f0f0d;color:#0f0f0f66;border:1px solid rgba(15,15,15,.1);cursor:initial;pointer-events:none}._button_7dkt1_38:disabled *{fill:#0f0f0f66}._button-round_7dkt1_66._button_7dkt1_38{border-radius:50%}._button-primary_7dkt1_69{color:var(--dynamic-color-text);background-color:var(--dynamic-color)}._button-primary_7dkt1_69:hover{background-color:var(--dynamic-color-hover)}._button-primary_7dkt1_69:active{background-color:var(--dynamic-color-activated)}._button-primary_7dkt1_69 *{fill:var(--dynamic-color-text)}._button-secondary_7dkt1_82{color:var(--color-text);background-color:#96b4ee33;border:1px solid rgba(150,180,238,.5)}._button-secondary_7dkt1_82:hover{background-color:#96b4ee66}._button-secondary_7dkt1_82:active{background-color:#96b4ee99}._button-secondary_7dkt1_82 *{fill:var(--color-text)}._button-tertiary_7dkt1_96{color:var(--color-text);background-color:transparent;border:1px solid rgba(150,180,238,.5)}._button-tertiary_7dkt1_96:hover{background-color:#96b4ee1a}._button-tertiary_7dkt1_96:active{background-color:#96b4ee33}._button-tertiary_7dkt1_96 *{fill:var(--color-text)}._button-ghost_7dkt1_110{color:var(--color-text);background-color:transparent}._button-ghost_7dkt1_110:hover{background-color:#96b4ee1a}._button-ghost_7dkt1_110:active{background-color:#96b4ee33}._button-ghost_7dkt1_110 *{fill:var(--dynamic-color-text)}._button-text_7dkt1_123{color:#96b4eecc;background-color:transparent}._button-text_7dkt1_123:hover{color:#96b4ee}._button-text_7dkt1_123:disabled{border:none;background-color:transparent;color:#a5b4bb}._button-text-selected_7dkt1_135,._button-text-selected_7dkt1_135:hover{color:var(--color-text)}._button-error_7dkt1_141{color:#fff;background-color:#ff4747}._button-error_7dkt1_141:hover{background-color:#ed1515}._button-error_7dkt1_141:active{background-color:#c80d0d}._button-error_7dkt1_141 *{fill:var(--color-text)}._button-size-xl_7dkt1_154{border-radius:.5rem;padding:1rem;font-size:1.125em}._button-size-l_7dkt1_159{border-radius:.5rem;padding:.75rem;font-size:1em}._button-size-m_7dkt1_164{border-radius:.25rem;padding:.5rem;font-size:.875em}._button-size-s_7dkt1_169{border-radius:.25rem;padding:.375rem;font-size:.75em}._flexHorizontalCenter_7dkt1_175{display:flex;justify-content:center;align-items:center;flex-direction:row}
|
package/dist/styles/Input.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-theme=light]{--btn-primary-color: var(--primary-color-900);--btn-primary-color-hover: var(--primary-color-800);--btn-primary-color-activated: var(--primary-color-700);--btn-primary-color-text: var(--color-light-100);--
|
|
1
|
+
:root,[data-theme=light]{--btn-primary-color: var(--primary-color-900);--btn-primary-color-hover: var(--primary-color-800);--btn-primary-color-activated: var(--primary-color-700);--btn-primary-color-text: var(--color-light-100);--color-text: var(--color-blue-situaction-900)}[data-theme=dark]{--btn-primary-color: var(--primary-color-200);--btn-primary-color-hover: var(--primary-color-100);--btn-primary-color-activated: var(--primary-color-50);--btn-primary-color-text: var(--primary-color-900);--color-text: var(--color-light-100)}input{font-family:Urbanist,sans-serif;border:none;background-color:transparent}input:focus{outline:none;box-shadow:none;border-color:transparent}._input-style_dkt9v_65{font-family:Urbanist,sans-serif;border:1px solid var(--dynamic-color-border);box-shadow:0 4px 5px #0000000a;color:var(--dynamic-color);position:relative}._input-style_dkt9v_65 input{color:var(--dynamic-color)}._input-style-ghost_dkt9v_76{border-bottom:solid #A5B4BB;border-width:0 0 1px 0;border-radius:0!important}._input-style-disabled_dkt9v_81{background-color:#fff;border-color:#a5b4bb;pointer-events:none;color:#a5b4bb}._input-style-disabled_dkt9v_81 input{color:#a5b4bb}._input-style-focused_dkt9v_90{color:var(--dynamic-color);border-color:var(--dynamic-color-border);background-color:var(--dynamic-background-color)}._input-style-error_dkt9v_95{border-color:#ff4747;color:#ff4747}._input-style-error_dkt9v_95 input,._input-style-error-focused_dkt9v_102,._input-style-error-focused_dkt9v_102 input{color:#ff4747}._input-style-error-focus-background_dkt9v_108{background-color:#fff1f1}._input-style-error-disabled_dkt9v_111{background-color:#fff1f1;border-color:#ff9d9d;color:#ff9d9d}._input-style-error-disabled_dkt9v_111 input{color:#ff9d9d}._input-style-success_dkt9v_119{border-color:#33b449;color:#33b449}._input-style-success_dkt9v_119 input,._input-style-success-focused_dkt9v_126,._input-style-success-focused_dkt9v_126 input{color:#33b449}._input-style-success-focus-background_dkt9v_132{background-color:#f1fcf3}._input-style-success-disabled_dkt9v_135{background-color:#f1fcf3;border-color:#91e49e;color:#91e49e}._input-style-success-disabled_dkt9v_135 input{color:#91e49e}._input-style_dkt9v_65 ._input-container_dkt9v_143{position:relative;width:100%}._input-style_dkt9v_65 ._floating-input_dkt9v_147{display:block;width:100%;box-sizing:border-box}._input-style_dkt9v_65 ._floating-input-size-xl_dkt9v_153{font-size:1.125em;line-height:28px}._input-style_dkt9v_65 ._floating-input-size-l_dkt9v_157{font-size:1em;line-height:24px}._input-style_dkt9v_65 ._floating-input-size-m_dkt9v_161{font-size:.875em;line-height:22px}._input-style_dkt9v_65 ._floating-input-size-s_dkt9v_165{font-size:.875em;line-height:20px}._input-style-size-xl_dkt9v_169{padding:16px;font-size:1.125em;line-height:28px;border-radius:8px}._input-style-size-l_dkt9v_175{padding:12px;font-size:1em;line-height:24px;border-radius:8px}._input-style-size-m_dkt9v_181{padding:8px;font-size:.875em;line-height:22px;border-radius:8px}._input-style-size-s_dkt9v_187{padding:6px;font-size:.875em;line-height:20px;border-radius:4px}._input-style-radius_dkt9v_193{border-radius:50px}._flexHorizontalBetween_dkt9v_197{display:flex;justify-content:space-between;align-items:center;flex-direction:row}._flexHorizontal_dkt9v_197{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}
|
package/dist/styles/Tabs.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._tab-
|
|
1
|
+
._tab-container_eo8ix_21{position:relative;color:#a5b4bb;font-weight:500;font-size:.875em;line-height:1.25rem}._tab-items_eo8ix_28{gap:2.25rem;padding:.625rem .125rem;border-bottom:1px solid rgba(150,180,238,.8)}._underline_eo8ix_34{position:absolute;bottom:0;height:2px;background-color:var(--primary-color);transition:all .3s ease}._flexHorizontal_eo8ix_42{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}
|
package/dist/styles/Tag.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._tag_nyjfz_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-children_nyjfz_16{color:var(--dynamic-color-text);border-radius:50px;min-width:16px;min-height:16px;aspect-ratio:1/1}._tag-size-xl_nyjfz_23{padding:.5rem .75rem;font-size:1.125em}._tag-size-xl-round_nyjfz_27{padding:.5rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag-size-l_nyjfz_33{padding:.375rem .625rem;font-size:1em}._tag-size-l-round_nyjfz_37{padding:.375rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag-size-m_nyjfz_43{padding:.25rem .5rem;font-size:.875em}._tag-size-m-round_nyjfz_47{padding:.25rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._tag-size-s_nyjfz_53{padding:.25rem .5rem;font-size:.625em}._tag-size-s-round_nyjfz_57{padding:.125rem;min-width:12px;min-height:12px;aspect-ratio:1/1}._flexHorizontalCenter_nyjfz_64{display:flex;justify-content:center;align-items:center;flex-direction:row}._flexHorizontal_nyjfz_64{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--color-light-05: rgba(255, 255, 255, .05);--color-light-10: rgba(255, 255, 255, .1);--color-light-20: rgba(255, 255, 255, .2);--color-light-30: rgba(255, 255, 255, .3);--color-light-40: rgba(255, 255, 255, .4);--color-light-50: rgba(255, 255, 255, .5);--color-light-60: rgba(255, 255, 255, .6);--color-light-70: rgba(255, 255, 255, .7);--color-light-80: rgba(255, 255, 255, .8);--color-light-90: rgba(255, 255, 255, .9);--color-light-100: #FFF;--color-dark-05: rgba(15, 15, 15, .05);--color-dark-10: rgba(15, 15, 15, .1);--color-dark-20: rgba(15, 15, 15, .2);--color-dark-30: rgba(15, 15, 15, .3);--color-dark-40: rgba(15, 15, 15, .4);--color-dark-50: rgba(15, 15, 15, .5);--color-dark-60: rgba(15, 15, 15, .6);--color-dark-70: rgba(15, 15, 15, .7);--color-dark-80: rgba(15, 15, 15, .8);--color-dark-90: rgba(15, 15, 15, .9);--color-dark-100: #09090B;--color-grey-50: #FAFAFA;--color-grey-100: #E7E7E7;--color-grey-200: #D1D1D1;--color-grey-300: #B0B0B0;--color-grey-400: #888888;--color-grey-500: #6D6D6D;--color-grey-600: #5D5D5D;--color-grey-700: #4F4F4F;--color-grey-800: #454545;--color-grey-900: #3D3D3D;--color-grey-950: #0F0F0F;--color-blue-grey-50: #F4F6F7;--color-blue-grey-100: #E3E8EA;--color-blue-grey-200: #CAD3D7;--color-blue-grey-300: #A5B4BB;--color-blue-grey-400: #788D98;--color-blue-grey-500: #55626C;--color-blue-grey-600: #49565F;--color-blue-grey-700: #445058;--color-blue-grey-800: #3A4047;--color-blue-grey-900: #2B3137;--color-blue-grey-950: #24292E;--color-blue-50: #F5F8FE;--color-blue-100: #EFF4FD;--color-blue-200: #EAF0FC;--color-blue-300: #E0E9FA;--color-blue-400: #D5E1F8;--color-blue-500: #CBDAF7;--color-blue-600: #C0D2F5;--color-blue-700: #B6CBF4;--color-blue-800: #ABC3F1;--color-blue-900: #A1BCF0;--color-blue-950: #24292E;--color-blue-situaction-50: #EFF8FF;--color-blue-situaction-100: #DFF1FF;--color-blue-situaction-200: #C3E9FD;--color-blue-situaction-300: #7ED3FB;--color-blue-situaction-400: #31B7FF;--color-blue-situaction-500: #069DEF;--color-blue-situaction-600: #007DCE;--color-blue-situaction-700: #02548A;--color-blue-situaction-800: #1F416D;--color-blue-situaction-900: #1D3557;--color-blue-situaction-950: #14243D;--color-purple-50: #F1F2FC;--color-purple-100: #E6E7F9;--color-purple-200: #D1D3F4;--color-purple-300: #B5B6EC;--color-purple-400: #9A96E3;--color-purple-500: #887DD7;--color-purple-600: #6E59C5;--color-purple-700: #6652B0;--color-purple-800: #53458E;--color-purple-900: #463D72;--color-purple-950: #2A2442;--color-pink-50: #FBF4F8;--color-pink-100: #F8EBF3;--color-pink-200: #F2D8E9;--color-pink-300: #E9B8D6;--color-pink-400: #DB8BBB;--color-pink-500: #CC68A0;--color-pink-600: #B84A83;--color-pink-700: #9D3869;--color-pink-800: #833158;--color-pink-900: #6E2D4C;--color-pink-950: #42152A;--color-gold-50: #FDFAE9;--color-gold-100: #FAF0B9;--color-gold-200: #F8E490;--color-gold-300: #F4CF50;--color-gold-400: #EEB721;--color-gold-500: #DE9F14;--color-gold-600: #C07A0E;--color-gold-700: #99570F;--color-gold-800: #7F4614;--color-gold-900: #6C3917;--color-gold-950: #3F1C09;--color-brown-50: #FDF9ED;--color-brown-100: #F6E4B6;--color-brown-200: #F2D897;--color-brown-300: #ECBD5F;--color-brown-400: #E6A637;--color-brown-500: #DF8620;--color-brown-600: #C7681A;--color-brown-700: #A44919;--color-brown-800: #853A19;--color-brown-900: #6C3019;--color-brown-950: #3E1709;--color-emerald-50: #F2F7F3;--color-emerald-100: #DFECE0;--color-emerald-200: #C1D9C5;--color-emerald-300: #98BDA0;--color-emerald-400: #71A07D;--color-emerald-500: #4A7F59;--color-emerald-600: #376445;--color-emerald-700: #2C5038;--color-emerald-800: #25402F;--color-emerald-900: #1F3527;--color-emerald-950: #111D15;--color-red-50: #FFF1F1;--color-red-100: #FFDFDF;--color-red-200: #FFC5C5;--color-red-300: #FF9D9D;--color-red-400: #FF6464;--color-red-500: #FF4747;--color-red-600: #ED1515;--color-red-700: #C80D0D;--color-red-800: #A50F0F;--color-red-900: #881414;--color-red-950: #4B0404;--color-green-50: #F1FCF3;--color-green-100: #DFF9E3;--color-green-200: #C1F1C8;--color-green-300: #91E49E;--color-green-400: #45C85A;--color-green-500: #33B449;--color-green-600: #259437;--color-green-700: #20752F;--color-green-800: #1E5D29;--color-green-900: #1B4C24;--color-green-950: #092A10;--color-blue-trans-50: rgba(150, 180, 238, .05);--color-blue-trans-100: rgba(150, 180, 238, .1);--color-blue-trans-200: rgba(150, 180, 238, .2);--color-blue-trans-300: rgba(150, 180, 238, .3);--color-blue-trans-400: rgba(150, 180, 238, .4);--color-blue-trans-500: rgba(150, 180, 238, .5);--color-blue-trans-600: rgba(150, 180, 238, .6);--color-blue-trans-700: rgba(150, 180, 238, .7);--color-blue-trans-800: rgba(150, 180, 238, .8);--color-blue-trans-900: rgba(150, 180, 238, .8);--color-blue-trans-950: #96B4EE;--spacing-xs-7: .125rem;--spacing-xs-6: .25rem;--spacing-xs-5: .375rem;--spacing-xs-4: .5rem;--spacing-xs-3: .625rem;--spacing-xs-2: .75rem;--spacing-xs: .875rem;--spacing-s: 1rem;--spacing-m-1: 1.125rem;--spacing-m-2: 1.25rem;--spacing-l: 1.5rem;--spacing-xl: 1.75rem;--spacing-xl-2: 2rem;--spacing-xl-3: 2.25rem;--spacing-xl-4: 2.75rem;--spacing-xl-5: 3rem;--spacing-xl-6: 4rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._flexHorizontal_1funw_6{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}h1{margin:0;padding:0;font-style:normal;font-weight:700;line-height:36px}
|
package/dist/styles/main.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.padding-xs-7{padding:.125rem}.padding-xs-6{padding:.25rem}.padding-xs-5{padding:.375rem}.padding-xs-4{padding:.5rem}.padding-xs-3{padding:.625rem}.padding-xs-2{padding:.75rem}.padding-xs{padding:.875rem}.padding-s{padding:1rem}.padding-m-1{padding:1.125rem}.padding-m-2{padding:1.25rem}.padding-l{padding:1.5rem}.padding-xl{padding:1.75rem}.padding-xl-2{padding:2rem}.padding-xl-3{padding:2.25rem}.padding-xl-4{padding:2.75rem}.padding-xl-5{padding:3rem}.padding-xl-6{padding:4rem}.padding-h-xs-7{padding:0 .125rem}.padding-h-xs-6{padding:0 .25rem}.padding-h-xs-5{padding:0 .375rem}.padding-h-xs-4{padding:0 .5rem}.padding-h-xs-3{padding:0 .625rem}.padding-h-xs-2{padding:0 .75rem}.padding-h-xs{padding:0 .875rem}.padding-h-s{padding:0 1rem}.padding-h-m-1{padding:0 1.125rem}.padding-h-m-2{padding:0 1.25rem}.padding-h-l{padding:0 1.5rem}.padding-h-xl{padding:0 1.75rem}.padding-h-xl-2{padding:0 2rem}.padding-h-xl-3{padding:0 2.25rem}.padding-h-xl-4{padding:0 2.75rem}.padding-h-xl-5{padding:0 3rem}.padding-h-xl-6{padding:0 4rem}.padding-v-xs-7{padding:.125rem 0}.padding-v-xs-6{padding:.25rem 0}.padding-v-xs-5{padding:.375rem 0}.padding-v-xs-4{padding:.5rem 0}.padding-v-xs-3{padding:.625rem 0}.padding-v-xs-2{padding:.75rem 0}.padding-v-xs{padding:.875rem 0}.padding-v-s{padding:1rem 0}.padding-v-m-1{padding:1.125rem 0}.padding-v-m-2{padding:1.25rem 0}.padding-v-l{padding:1.5rem 0}.padding-v-xl{padding:1.75rem 0}.padding-v-xl-2{padding:2rem 0}.padding-v-xl-3{padding:2.25rem 0}.padding-v-xl-4{padding:2.75rem 0}.padding-v-xl-5{padding:3rem 0}.padding-v-xl-6{padding:4rem 0}.padding-l-xs-7{padding:0 .125rem}.padding-l-xs-6{padding:0 .25rem}.padding-l-xs-5{padding:0 .375rem}.padding-l-xs-4{padding:0 .5rem}.padding-l-xs-3{padding:0 .625rem}.padding-l-xs-2{padding:0 .75rem}.padding-l-xs{padding:0 .875rem}.padding-l-s{padding:0 1rem}.padding-l-m-1{padding:0 1.125rem}.padding-l-m-2{padding:0 1.25rem}.padding-l-l{padding:0 1.5rem}.padding-l-xl{padding:0 1.75rem}.padding-l-xl-2{padding:0 2rem}.padding-l-xl-3{padding:0 2.25rem}.padding-l-xl-4{padding:0 2.75rem}.padding-l-xl-5{padding:0 3rem}.padding-l-xl-6{padding:0 4rem}.padding-r-xs-7{padding:0 .125rem}.padding-r-xs-6{padding:0 .25rem}.padding-r-xs-5{padding:0 .375rem}.padding-r-xs-4{padding:0 .5rem}.padding-r-xs-3{padding:0 .625rem}.padding-r-xs-2{padding:0 .75rem}.padding-r-xs{padding:0 .875rem}.padding-r-s{padding:0 1rem}.padding-r-m-1{padding:0 1.125rem}.padding-r-m-2{padding:0 1.25rem}.padding-r-l{padding:0 1.5rem}.padding-r-xl{padding:0 1.75rem}.padding-r-xl-2{padding:0 2rem}.padding-r-xl-3{padding:0 2.25rem}.padding-r-xl-4{padding:0 2.75rem}.padding-r-xl-5{padding:0 3rem}.padding-r-xl-6{padding:0 4rem}.margin-xs-7{margin:.125rem}.margin-xs-6{margin:.25rem}.margin-xs-5{margin:.375rem}.margin-xs-4{margin:.5rem}.margin-xs-3{margin:.625rem}.margin-xs-2{margin:.75rem}.margin-xs{margin:.875rem}.margin-s{margin:1rem}.margin-m-1{margin:1.125rem}.margin-m-2{margin:1.25rem}.margin-l{margin:1.5rem}.margin-xl{margin:1.75rem}.margin-xl-2{margin:2rem}.margin-xl-3{margin:2.25rem}.margin-xl-4{margin:2.75rem}.margin-xl-5{margin:3rem}.margin-xl-6{margin:4rem}.margin-h-xs-7{margin:0 .125rem}.margin-h-xs-6{margin:0 .25rem}.margin-h-xs-5{margin:0 .375rem}.margin-h-xs-4{margin:0 .5rem}.margin-h-xs-3{margin:0 .625rem}.margin-h-xs-2{margin:0 .75rem}.margin-h-xs{margin:0 .875rem}.margin-h-s{margin:0 1rem}.margin-h-m-1{margin:0 1.125rem}.margin-h-m-2{margin:0 1.25rem}.margin-h-l{margin:0 1.5rem}.margin-h-xl{margin:0 1.75rem}.margin-h-xl-2{margin:0 2rem}.margin-h-xl-3{margin:0 2.25rem}.margin-h-xl-4{margin:0 2.75rem}.margin-h-xl-5{margin:0 3rem}.margin-h-xl-6{margin:0 4rem}.margin-v-xs-7{margin:.125rem 0}.margin-v-xs-6{margin:.25rem 0}.margin-v-xs-5{margin:.375rem 0}.margin-v-xs-4{margin:.5rem 0}.margin-v-xs-3{margin:.625rem 0}.margin-v-xs-2{margin:.75rem 0}.margin-v-xs{margin:.875rem 0}.margin-v-s{margin:1rem 0}.margin-v-m-1{margin:1.125rem 0}.margin-v-m-2{margin:1.25rem 0}.margin-v-l{margin:1.5rem 0}.margin-v-xl{margin:1.75rem 0}.margin-v-xl-2{margin:2rem 0}.margin-v-xl-3{margin:2.25rem 0}.margin-v-xl-4{margin:2.75rem 0}.margin-v-xl-5{margin:3rem 0}.margin-v-xl-6{margin:4rem 0}.margin-l-xs-7{margin-left:.125rem}.margin-l-xs-6{margin-left:.25rem}.margin-l-xs-5{margin-left:.375rem}.margin-l-xs-4{margin-left:.5rem}.margin-l-xs-3{margin-left:.625rem}.margin-l-xs-2{margin-left:.75rem}.margin-l-xs{margin-left:.875rem}.margin-l-s{margin-left:1rem}.margin-l-m-1{margin-left:1.125rem}.margin-l-m-2{margin-left:1.25rem}.margin-l-l{margin-left:1.5rem}.margin-l-xl{margin-left:1.75rem}.margin-l-xl-2{margin-left:2rem}.margin-l-xl-3{margin-left:2.25rem}.margin-l-xl-4{margin-left:2.75rem}.margin-l-xl-5{margin-left:3rem}.margin-l-xl-6{margin-left:4rem}.margin-r-xs-7{margin-right:.125rem}.margin-r-xs-6{margin-right:.25rem}.margin-r-xs-5{margin-right:.375rem}.margin-r-xs-4{margin-right:.5rem}.margin-r-xs-3{margin-right:.625rem}.margin-r-xs-2{margin-right:.75rem}.margin-r-xs{margin-right:.875rem}.margin-r-s{margin-right:1rem}.margin-r-m-1{margin-right:1.125rem}.margin-r-m-2{margin-right:1.25rem}.margin-r-l{margin-right:1.5rem}.margin-r-xl{margin-right:1.75rem}.margin-r-xl-2{margin-right:2rem}.margin-r-xl-3{margin-right:2.25rem}.margin-r-xl-4{margin-right:2.75rem}.margin-r-xl-5{margin-right:3rem}.margin-r-xl-6{margin-right:4rem}.fontSize10{font-size:.625em}.fontSize12{font-size:.75em}.fontSize14{font-size:.875em}.fontSize16{font-size:1em}.fontSize18{font-size:1.125em}.fontSize20{font-size:1.25em}.fontSize22{font-size:1.375em}.fontSize24{font-size:1.5em}.fontSize30{font-size:1.875em}.fontSize32{font-size:2em}.fontSize40{font-size:3em}.fontSize64{font-size:4em}.gap-xs-7{gap:.125rem}.gap-xs-6{gap:.25rem}.gap-xs-5{gap:.375rem}.gap-xs-4{gap:.5rem}.gap-xs-3{gap:.625rem}.gap-xs-2{gap:.75rem}.gap-xs{gap:.875rem}.gap-s{gap:1rem}.gap-m-1{gap:1.125rem}.gap-m-2{gap:1.25rem}.gap-l{gap:1.5rem}.gap-xl{gap:1.75rem}.gap-xl-2{gap:2rem}.gap-xl-3{gap:2.25rem}.gap-xl-4{gap:2.75rem}.gap-xl-5{gap:3rem}.gap-xl-6{gap:4rem}:root{--spacing-xs-7: .125rem;--spacing-xs-6: .25rem;--spacing-xs-5: .375rem;--spacing-xs-4: .5rem;--spacing-xs-3: .625rem;--spacing-xs-2: .75rem;--spacing-xs: .875rem;--spacing-s: 1rem;--spacing-m-1: 1.125rem;--spacing-m-2: 1.25rem;--spacing-l: 1.5rem;--spacing-xl: 1.75rem;--spacing-xl-2: 2rem;--spacing-xl-3: 2.25rem;--spacing-xl-4: 2.75rem;--spacing-xl-5: 3rem;--spacing-xl-6: 4rem}:root{--color-light-05: rgba(255, 255, 255, .05);--color-light-10: rgba(255, 255, 255, .1);--color-light-20: rgba(255, 255, 255, .2);--color-light-30: rgba(255, 255, 255, .3);--color-light-40: rgba(255, 255, 255, .4);--color-light-50: rgba(255, 255, 255, .5);--color-light-60: rgba(255, 255, 255, .6);--color-light-70: rgba(255, 255, 255, .7);--color-light-80: rgba(255, 255, 255, .8);--color-light-90: rgba(255, 255, 255, .9);--color-light-100: #FFF;--color-dark-05: rgba(15, 15, 15, .05);--color-dark-10: rgba(15, 15, 15, .1);--color-dark-20: rgba(15, 15, 15, .2);--color-dark-30: rgba(15, 15, 15, .3);--color-dark-40: rgba(15, 15, 15, .4);--color-dark-50: rgba(15, 15, 15, .5);--color-dark-60: rgba(15, 15, 15, .6);--color-dark-70: rgba(15, 15, 15, .7);--color-dark-80: rgba(15, 15, 15, .8);--color-dark-90: rgba(15, 15, 15, .9);--color-dark-100: #09090B;--color-grey-50: #FAFAFA;--color-grey-100: #E7E7E7;--color-grey-200: #D1D1D1;--color-grey-300: #B0B0B0;--color-grey-400: #888888;--color-grey-500: #6D6D6D;--color-grey-600: #5D5D5D;--color-grey-700: #4F4F4F;--color-grey-800: #454545;--color-grey-900: #3D3D3D;--color-grey-950: #0F0F0F;--color-blue-grey-50: #F4F6F7;--color-blue-grey-100: #E3E8EA;--color-blue-grey-200: #CAD3D7;--color-blue-grey-300: #A5B4BB;--color-blue-grey-400: #788D98;--color-blue-grey-500: #55626C;--color-blue-grey-600: #49565F;--color-blue-grey-700: #445058;--color-blue-grey-800: #3A4047;--color-blue-grey-900: #2B3137;--color-blue-grey-950: #24292E;--color-blue-50: #F5F8FE;--color-blue-100: #EFF4FD;--color-blue-200: #EAF0FC;--color-blue-300: #E0E9FA;--color-blue-400: #D5E1F8;--color-blue-500: #CBDAF7;--color-blue-600: #C0D2F5;--color-blue-700: #B6CBF4;--color-blue-800: #ABC3F1;--color-blue-900: #A1BCF0;--color-blue-950: #24292E;--color-blue-situaction-50: #EFF8FF;--color-blue-situaction-100: #DFF1FF;--color-blue-situaction-200: #C3E9FD;--color-blue-situaction-300: #7ED3FB;--color-blue-situaction-400: #31B7FF;--color-blue-situaction-500: #069DEF;--color-blue-situaction-600: #007DCE;--color-blue-situaction-700: #02548A;--color-blue-situaction-800: #1F416D;--color-blue-situaction-900: #1D3557;--color-blue-situaction-950: #14243D;--color-purple-50: #F1F2FC;--color-purple-100: #E6E7F9;--color-purple-200: #D1D3F4;--color-purple-300: #B5B6EC;--color-purple-400: #9A96E3;--color-purple-500: #887DD7;--color-purple-600: #6E59C5;--color-purple-700: #6652B0;--color-purple-800: #53458E;--color-purple-900: #463D72;--color-purple-950: #2A2442;--color-pink-50: #FBF4F8;--color-pink-100: #F8EBF3;--color-pink-200: #F2D8E9;--color-pink-300: #E9B8D6;--color-pink-400: #DB8BBB;--color-pink-500: #CC68A0;--color-pink-600: #B84A83;--color-pink-700: #9D3869;--color-pink-800: #833158;--color-pink-900: #6E2D4C;--color-pink-950: #42152A;--color-gold-50: #FDFAE9;--color-gold-100: #FAF0B9;--color-gold-200: #F8E490;--color-gold-300: #F4CF50;--color-gold-400: #EEB721;--color-gold-500: #DE9F14;--color-gold-600: #C07A0E;--color-gold-700: #99570F;--color-gold-800: #7F4614;--color-gold-900: #6C3917;--color-gold-950: #3F1C09;--color-brown-50: #FDF9ED;--color-brown-100: #F6E4B6;--color-brown-200: #F2D897;--color-brown-300: #ECBD5F;--color-brown-400: #E6A637;--color-brown-500: #DF8620;--color-brown-600: #C7681A;--color-brown-700: #A44919;--color-brown-800: #853A19;--color-brown-900: #6C3019;--color-brown-950: #3E1709;--color-emerald-50: #F2F7F3;--color-emerald-100: #DFECE0;--color-emerald-200: #C1D9C5;--color-emerald-300: #98BDA0;--color-emerald-400: #71A07D;--color-emerald-500: #4A7F59;--color-emerald-600: #376445;--color-emerald-700: #2C5038;--color-emerald-800: #25402F;--color-emerald-900: #1F3527;--color-emerald-950: #111D15;--color-red-50: #FFF1F1;--color-red-100: #FFDFDF;--color-red-200: #FFC5C5;--color-red-300: #FF9D9D;--color-red-400: #FF6464;--color-red-500: #FF4747;--color-red-600: #ED1515;--color-red-700: #C80D0D;--color-red-800: #A50F0F;--color-red-900: #881414;--color-red-950: #4B0404;--color-green-50: #F1FCF3;--color-green-100: #DFF9E3;--color-green-200: #C1F1C8;--color-green-300: #91E49E;--color-green-400: #45C85A;--color-green-500: #33B449;--color-green-600: #259437;--color-green-700: #20752F;--color-green-800: #1E5D29;--color-green-900: #1B4C24;--color-green-950: #092A10}:root,[data-theme=light]{--btn-primary-color: var(--primary-color-900);--btn-primary-color-hover: var(--primary-color-800);--btn-primary-color-activated: var(--primary-color-700);--btn-primary-color-text: var(--color-light-100);--secondary-color-text: var(--color-blue-situaction-900);--btn-ghost-color-hover: var(--color-dark-05);--btn-ghost-color-activated: var(--color-dark-10);--btn-ghost-color-text: var(--color-grey-950)}[data-theme=dark]{--btn-primary-color: var(--primary-color-200);--btn-primary-color-hover: var(--primary-color-100);--btn-primary-color-activated: var(--primary-color-50);--btn-primary-color-text: var(--primary-color-900);--secondary-color-text: var(--color-light-100);--btn-ghost-color-hover: var(--color-light-05);--btn-ghost-color-activated: var(--color-light-10);--btn-ghost-color-text: var(--color-light-100)}
|
|
1
|
+
.padding-xs-7{padding:.125rem}.padding-xs-6{padding:.25rem}.padding-xs-5{padding:.375rem}.padding-xs-4{padding:.5rem}.padding-xs-3{padding:.625rem}.padding-xs-2{padding:.75rem}.padding-xs{padding:.875rem}.padding-s{padding:1rem}.padding-m-1{padding:1.125rem}.padding-m-2{padding:1.25rem}.padding-l{padding:1.5rem}.padding-xl{padding:1.75rem}.padding-xl-2{padding:2rem}.padding-xl-3{padding:2.25rem}.padding-xl-4{padding:2.75rem}.padding-xl-5{padding:3rem}.padding-xl-6{padding:4rem}.padding-h-xs-7{padding:0 .125rem}.padding-h-xs-6{padding:0 .25rem}.padding-h-xs-5{padding:0 .375rem}.padding-h-xs-4{padding:0 .5rem}.padding-h-xs-3{padding:0 .625rem}.padding-h-xs-2{padding:0 .75rem}.padding-h-xs{padding:0 .875rem}.padding-h-s{padding:0 1rem}.padding-h-m-1{padding:0 1.125rem}.padding-h-m-2{padding:0 1.25rem}.padding-h-l{padding:0 1.5rem}.padding-h-xl{padding:0 1.75rem}.padding-h-xl-2{padding:0 2rem}.padding-h-xl-3{padding:0 2.25rem}.padding-h-xl-4{padding:0 2.75rem}.padding-h-xl-5{padding:0 3rem}.padding-h-xl-6{padding:0 4rem}.padding-v-xs-7{padding:.125rem 0}.padding-v-xs-6{padding:.25rem 0}.padding-v-xs-5{padding:.375rem 0}.padding-v-xs-4{padding:.5rem 0}.padding-v-xs-3{padding:.625rem 0}.padding-v-xs-2{padding:.75rem 0}.padding-v-xs{padding:.875rem 0}.padding-v-s{padding:1rem 0}.padding-v-m-1{padding:1.125rem 0}.padding-v-m-2{padding:1.25rem 0}.padding-v-l{padding:1.5rem 0}.padding-v-xl{padding:1.75rem 0}.padding-v-xl-2{padding:2rem 0}.padding-v-xl-3{padding:2.25rem 0}.padding-v-xl-4{padding:2.75rem 0}.padding-v-xl-5{padding:3rem 0}.padding-v-xl-6{padding:4rem 0}.padding-l-xs-7{padding:0 .125rem}.padding-l-xs-6{padding:0 .25rem}.padding-l-xs-5{padding:0 .375rem}.padding-l-xs-4{padding:0 .5rem}.padding-l-xs-3{padding:0 .625rem}.padding-l-xs-2{padding:0 .75rem}.padding-l-xs{padding:0 .875rem}.padding-l-s{padding:0 1rem}.padding-l-m-1{padding:0 1.125rem}.padding-l-m-2{padding:0 1.25rem}.padding-l-l{padding:0 1.5rem}.padding-l-xl{padding:0 1.75rem}.padding-l-xl-2{padding:0 2rem}.padding-l-xl-3{padding:0 2.25rem}.padding-l-xl-4{padding:0 2.75rem}.padding-l-xl-5{padding:0 3rem}.padding-l-xl-6{padding:0 4rem}.padding-r-xs-7{padding:0 .125rem}.padding-r-xs-6{padding:0 .25rem}.padding-r-xs-5{padding:0 .375rem}.padding-r-xs-4{padding:0 .5rem}.padding-r-xs-3{padding:0 .625rem}.padding-r-xs-2{padding:0 .75rem}.padding-r-xs{padding:0 .875rem}.padding-r-s{padding:0 1rem}.padding-r-m-1{padding:0 1.125rem}.padding-r-m-2{padding:0 1.25rem}.padding-r-l{padding:0 1.5rem}.padding-r-xl{padding:0 1.75rem}.padding-r-xl-2{padding:0 2rem}.padding-r-xl-3{padding:0 2.25rem}.padding-r-xl-4{padding:0 2.75rem}.padding-r-xl-5{padding:0 3rem}.padding-r-xl-6{padding:0 4rem}.padding-top-xs-7{padding-top:.125rem}.padding-top-xs-6{padding-top:.25rem}.padding-top-xs-5{padding-top:.375rem}.padding-top-xs-4{padding-top:.5rem}.padding-top-xs-3{padding-top:.625rem}.padding-top-xs-2{padding-top:.75rem}.padding-top-xs{padding-top:.875rem}.padding-top-s{padding-top:1rem}.padding-top-m-1{padding-top:1.125rem}.padding-top-m-2{padding-top:1.25rem}.padding-top-l{padding-top:1.5rem}.padding-top-xl{padding-top:1.75rem}.padding-top-xl-2{padding-top:2rem}.padding-top-xl-3{padding-top:2.25rem}.padding-top-xl-4{padding-top:2.75rem}.padding-top-xl-5{padding-top:3rem}.padding-top-xl-6{padding-top:4rem}.padding-bottom-xs-7{padding-bottom:.125rem}.padding-bottom-xs-6{padding-bottom:.25rem}.padding-bottom-xs-5{padding-bottom:.375rem}.padding-bottom-xs-4{padding-bottom:.5rem}.padding-bottom-xs-3{padding-bottom:.625rem}.padding-bottom-xs-2{padding-bottom:.75rem}.padding-bottom-xs{padding-bottom:.875rem}.padding-bottom-s{padding-bottom:1rem}.padding-bottom-m-1{padding-bottom:1.125rem}.padding-bottom-m-2{padding-bottom:1.25rem}.padding-bottom-l{padding-bottom:1.5rem}.padding-bottom-xl{padding-bottom:1.75rem}.padding-bottom-xl-2{padding-bottom:2rem}.padding-bottom-xl-3{padding-bottom:2.25rem}.padding-bottom-xl-4{padding-bottom:2.75rem}.padding-bottom-xl-5{padding-bottom:3rem}.padding-bottom-xl-6{padding-bottom:4rem}.margin-xs-7{margin:.125rem}.margin-xs-6{margin:.25rem}.margin-xs-5{margin:.375rem}.margin-xs-4{margin:.5rem}.margin-xs-3{margin:.625rem}.margin-xs-2{margin:.75rem}.margin-xs{margin:.875rem}.margin-s{margin:1rem}.margin-m-1{margin:1.125rem}.margin-m-2{margin:1.25rem}.margin-l{margin:1.5rem}.margin-xl{margin:1.75rem}.margin-xl-2{margin:2rem}.margin-xl-3{margin:2.25rem}.margin-xl-4{margin:2.75rem}.margin-xl-5{margin:3rem}.margin-xl-6{margin:4rem}.margin-h-xs-7{margin:0 .125rem}.margin-h-xs-6{margin:0 .25rem}.margin-h-xs-5{margin:0 .375rem}.margin-h-xs-4{margin:0 .5rem}.margin-h-xs-3{margin:0 .625rem}.margin-h-xs-2{margin:0 .75rem}.margin-h-xs{margin:0 .875rem}.margin-h-s{margin:0 1rem}.margin-h-m-1{margin:0 1.125rem}.margin-h-m-2{margin:0 1.25rem}.margin-h-l{margin:0 1.5rem}.margin-h-xl{margin:0 1.75rem}.margin-h-xl-2{margin:0 2rem}.margin-h-xl-3{margin:0 2.25rem}.margin-h-xl-4{margin:0 2.75rem}.margin-h-xl-5{margin:0 3rem}.margin-h-xl-6{margin:0 4rem}.margin-v-xs-7{margin:.125rem 0}.margin-v-xs-6{margin:.25rem 0}.margin-v-xs-5{margin:.375rem 0}.margin-v-xs-4{margin:.5rem 0}.margin-v-xs-3{margin:.625rem 0}.margin-v-xs-2{margin:.75rem 0}.margin-v-xs{margin:.875rem 0}.margin-v-s{margin:1rem 0}.margin-v-m-1{margin:1.125rem 0}.margin-v-m-2{margin:1.25rem 0}.margin-v-l{margin:1.5rem 0}.margin-v-xl{margin:1.75rem 0}.margin-v-xl-2{margin:2rem 0}.margin-v-xl-3{margin:2.25rem 0}.margin-v-xl-4{margin:2.75rem 0}.margin-v-xl-5{margin:3rem 0}.margin-v-xl-6{margin:4rem 0}.margin-l-xs-7{margin-left:.125rem}.margin-l-xs-6{margin-left:.25rem}.margin-l-xs-5{margin-left:.375rem}.margin-l-xs-4{margin-left:.5rem}.margin-l-xs-3{margin-left:.625rem}.margin-l-xs-2{margin-left:.75rem}.margin-l-xs{margin-left:.875rem}.margin-l-s{margin-left:1rem}.margin-l-m-1{margin-left:1.125rem}.margin-l-m-2{margin-left:1.25rem}.margin-l-l{margin-left:1.5rem}.margin-l-xl{margin-left:1.75rem}.margin-l-xl-2{margin-left:2rem}.margin-l-xl-3{margin-left:2.25rem}.margin-l-xl-4{margin-left:2.75rem}.margin-l-xl-5{margin-left:3rem}.margin-l-xl-6{margin-left:4rem}.margin-r-xs-7{margin-right:.125rem}.margin-r-xs-6{margin-right:.25rem}.margin-r-xs-5{margin-right:.375rem}.margin-r-xs-4{margin-right:.5rem}.margin-r-xs-3{margin-right:.625rem}.margin-r-xs-2{margin-right:.75rem}.margin-r-xs{margin-right:.875rem}.margin-r-s{margin-right:1rem}.margin-r-m-1{margin-right:1.125rem}.margin-r-m-2{margin-right:1.25rem}.margin-r-l{margin-right:1.5rem}.margin-r-xl{margin-right:1.75rem}.margin-r-xl-2{margin-right:2rem}.margin-r-xl-3{margin-right:2.25rem}.margin-r-xl-4{margin-right:2.75rem}.margin-r-xl-5{margin-right:3rem}.margin-r-xl-6{margin-right:4rem}.margin-top-xs-7{margin-top:.125rem}.margin-top-xs-6{margin-top:.25rem}.margin-top-xs-5{margin-top:.375rem}.margin-top-xs-4{margin-top:.5rem}.margin-top-xs-3{margin-top:.625rem}.margin-top-xs-2{margin-top:.75rem}.margin-top-xs{margin-top:.875rem}.margin-top-s{margin-top:1rem}.margin-top-m-1{margin-top:1.125rem}.margin-top-m-2{margin-top:1.25rem}.margin-top-l{margin-top:1.5rem}.margin-top-xl{margin-top:1.75rem}.margin-top-xl-2{margin-top:2rem}.margin-top-xl-3{margin-top:2.25rem}.margin-top-xl-4{margin-top:2.75rem}.margin-top-xl-5{margin-top:3rem}.margin-top-xl-6{margin-top:4rem}.margin-bottom-xs-7{margin-bottom:.125rem}.margin-bottom-xs-6{margin-bottom:.25rem}.margin-bottom-xs-5{margin-bottom:.375rem}.margin-bottom-xs-4{margin-bottom:.5rem}.margin-bottom-xs-3{margin-bottom:.625rem}.margin-bottom-xs-2{margin-bottom:.75rem}.margin-bottom-xs{margin-bottom:.875rem}.margin-bottom-s{margin-bottom:1rem}.margin-bottom-m-1{margin-bottom:1.125rem}.margin-bottom-m-2{margin-bottom:1.25rem}.margin-bottom-l{margin-bottom:1.5rem}.margin-bottom-xl{margin-bottom:1.75rem}.margin-bottom-xl-2{margin-bottom:2rem}.margin-bottom-xl-3{margin-bottom:2.25rem}.margin-bottom-xl-4{margin-bottom:2.75rem}.margin-bottom-xl-5{margin-bottom:3rem}.margin-bottom-xl-6{margin-bottom:4rem}.fontSize10{font-size:.625em}.fontSize12{font-size:.75em}.fontSize14{font-size:.875em}.fontSize16{font-size:1em}.fontSize18{font-size:1.125em}.fontSize20{font-size:1.25em}.fontSize22{font-size:1.375em}.fontSize24{font-size:1.5em}.fontSize30{font-size:1.875em}.fontSize32{font-size:2em}.fontSize40{font-size:3em}.fontSize64{font-size:4em}.gap-xs-7{gap:.125rem}.gap-xs-6{gap:.25rem}.gap-xs-5{gap:.375rem}.gap-xs-4{gap:.5rem}.gap-xs-3{gap:.625rem}.gap-xs-2{gap:.75rem}.gap-xs{gap:.875rem}.gap-s{gap:1rem}.gap-m-1{gap:1.125rem}.gap-m-2{gap:1.25rem}.gap-l{gap:1.5rem}.gap-xl{gap:1.75rem}.gap-xl-2{gap:2rem}.gap-xl-3{gap:2.25rem}.gap-xl-4{gap:2.75rem}.gap-xl-5{gap:3rem}.gap-xl-6{gap:4rem}:root,[data-theme=light]{--btn-primary-color: var(--primary-color-900);--btn-primary-color-hover: var(--primary-color-800);--btn-primary-color-activated: var(--primary-color-700);--btn-primary-color-text: var(--color-light-100);--color-text: var(--color-blue-situaction-900)}[data-theme=dark]{--btn-primary-color: var(--primary-color-200);--btn-primary-color-hover: var(--primary-color-100);--btn-primary-color-activated: var(--primary-color-50);--btn-primary-color-text: var(--primary-color-900);--color-text: var(--color-light-100)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@situaction/traq-ui-ste",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "library react component Situaction",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"types": "dist/main.d.ts",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"dev": "vite --open",
|
|
12
11
|
"test": "jest",
|
|
13
12
|
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
14
13
|
"prepublish": "npm run build",
|
|
@@ -36,14 +35,14 @@
|
|
|
36
35
|
"license": "ISC",
|
|
37
36
|
"devDependencies": {
|
|
38
37
|
"@chromatic-com/storybook": "^1.5.0",
|
|
39
|
-
"@storybook/addon-essentials": "^8.
|
|
40
|
-
"@storybook/addon-interactions": "^8.
|
|
41
|
-
"@storybook/addon-links": "^8.
|
|
42
|
-
"@storybook/addon-onboarding": "^8.
|
|
43
|
-
"@storybook/blocks": "^8.
|
|
44
|
-
"@storybook/react": "^8.
|
|
45
|
-
"@storybook/react-vite": "^8.
|
|
46
|
-
"@storybook/test": "^8.
|
|
38
|
+
"@storybook/addon-essentials": "^8.3.5",
|
|
39
|
+
"@storybook/addon-interactions": "^8.3.5",
|
|
40
|
+
"@storybook/addon-links": "^8.3.5",
|
|
41
|
+
"@storybook/addon-onboarding": "^8.3.5",
|
|
42
|
+
"@storybook/blocks": "^8.3.5",
|
|
43
|
+
"@storybook/react": "^8.3.5",
|
|
44
|
+
"@storybook/react-vite": "^8.3.5",
|
|
45
|
+
"@storybook/test": "^8.3.5",
|
|
47
46
|
"@testing-library/jest-dom": "^6.4.6",
|
|
48
47
|
"@testing-library/react": "^16.0.0",
|
|
49
48
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -66,7 +65,7 @@
|
|
|
66
65
|
"rollup-plugin-copy": "^3.5.0",
|
|
67
66
|
"sass": "^1.77.5",
|
|
68
67
|
"sass-loader": "^14.2.0",
|
|
69
|
-
"storybook": "^8.
|
|
68
|
+
"storybook": "^8.3.6",
|
|
70
69
|
"style-loader": "^4.0.0",
|
|
71
70
|
"ts-jest": "^29.1.5",
|
|
72
71
|
"ts-node": "^10.9.2",
|
|
@@ -76,8 +75,8 @@
|
|
|
76
75
|
"vite-plugin-lib-inject-css": "^2.1.1"
|
|
77
76
|
},
|
|
78
77
|
"dependencies": {
|
|
79
|
-
"react": "^18.
|
|
80
|
-
"react-dom": "^18.
|
|
78
|
+
"react": "^18.2.0",
|
|
79
|
+
"react-dom": "^18.2.0",
|
|
81
80
|
"storybook-figma": "^0.1.2",
|
|
82
81
|
"storybook-react-context": "^0.6.0"
|
|
83
82
|
}
|
package/dist/styles/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
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}.padding-xs-7{padding:.125rem}.padding-xs-6{padding:.25rem}.padding-xs-5{padding:.375rem}.padding-xs-4{padding:.5rem}.padding-xs-3{padding:.625rem}.padding-xs-2{padding:.75rem}.padding-xs{padding:.875rem}.padding-s{padding:1rem}.padding-m-1{padding:1.125rem}.padding-m-2{padding:1.25rem}.padding-l{padding:1.5rem}.padding-xl{padding:1.75rem}.padding-xl-2{padding:2rem}.padding-xl-3{padding:2.25rem}.padding-xl-4{padding:2.75rem}.padding-xl-5{padding:3rem}.padding-xl-6{padding:4rem}.padding-h-xs-7{padding:0 .125rem}.padding-h-xs-6{padding:0 .25rem}.padding-h-xs-5{padding:0 .375rem}.padding-h-xs-4{padding:0 .5rem}.padding-h-xs-3{padding:0 .625rem}.padding-h-xs-2{padding:0 .75rem}.padding-h-xs{padding:0 .875rem}.padding-h-s{padding:0 1rem}.padding-h-m-1{padding:0 1.125rem}.padding-h-m-2{padding:0 1.25rem}.padding-h-l{padding:0 1.5rem}.padding-h-xl{padding:0 1.75rem}.padding-h-xl-2{padding:0 2rem}.padding-h-xl-3{padding:0 2.25rem}.padding-h-xl-4{padding:0 2.75rem}.padding-h-xl-5{padding:0 3rem}.padding-h-xl-6{padding:0 4rem}.padding-v-xs-7{padding:.125rem 0}.padding-v-xs-6{padding:.25rem 0}.padding-v-xs-5{padding:.375rem 0}.padding-v-xs-4{padding:.5rem 0}.padding-v-xs-3{padding:.625rem 0}.padding-v-xs-2{padding:.75rem 0}.padding-v-xs{padding:.875rem 0}.padding-v-s{padding:1rem 0}.padding-v-m-1{padding:1.125rem 0}.padding-v-m-2{padding:1.25rem 0}.padding-v-l{padding:1.5rem 0}.padding-v-xl{padding:1.75rem 0}.padding-v-xl-2{padding:2rem 0}.padding-v-xl-3{padding:2.25rem 0}.padding-v-xl-4{padding:2.75rem 0}.padding-v-xl-5{padding:3rem 0}.padding-v-xl-6{padding:4rem 0}.padding-l-xs-7{padding:0 .125rem}.padding-l-xs-6{padding:0 .25rem}.padding-l-xs-5{padding:0 .375rem}.padding-l-xs-4{padding:0 .5rem}.padding-l-xs-3{padding:0 .625rem}.padding-l-xs-2{padding:0 .75rem}.padding-l-xs{padding:0 .875rem}.padding-l-s{padding:0 1rem}.padding-l-m-1{padding:0 1.125rem}.padding-l-m-2{padding:0 1.25rem}.padding-l-l{padding:0 1.5rem}.padding-l-xl{padding:0 1.75rem}.padding-l-xl-2{padding:0 2rem}.padding-l-xl-3{padding:0 2.25rem}.padding-l-xl-4{padding:0 2.75rem}.padding-l-xl-5{padding:0 3rem}.padding-l-xl-6{padding:0 4rem}.padding-r-xs-7{padding:0 .125rem}.padding-r-xs-6{padding:0 .25rem}.padding-r-xs-5{padding:0 .375rem}.padding-r-xs-4{padding:0 .5rem}.padding-r-xs-3{padding:0 .625rem}.padding-r-xs-2{padding:0 .75rem}.padding-r-xs{padding:0 .875rem}.padding-r-s{padding:0 1rem}.padding-r-m-1{padding:0 1.125rem}.padding-r-m-2{padding:0 1.25rem}.padding-r-l{padding:0 1.5rem}.padding-r-xl{padding:0 1.75rem}.padding-r-xl-2{padding:0 2rem}.padding-r-xl-3{padding:0 2.25rem}.padding-r-xl-4{padding:0 2.75rem}.padding-r-xl-5{padding:0 3rem}.padding-r-xl-6{padding:0 4rem}.margin-xs-7{margin:.125rem}.margin-xs-6{margin:.25rem}.margin-xs-5{margin:.375rem}.margin-xs-4{margin:.5rem}.margin-xs-3{margin:.625rem}.margin-xs-2{margin:.75rem}.margin-xs{margin:.875rem}.margin-s{margin:1rem}.margin-m-1{margin:1.125rem}.margin-m-2{margin:1.25rem}.margin-l{margin:1.5rem}.margin-xl{margin:1.75rem}.margin-xl-2{margin:2rem}.margin-xl-3{margin:2.25rem}.margin-xl-4{margin:2.75rem}.margin-xl-5{margin:3rem}.margin-xl-6{margin:4rem}.margin-h-xs-7{margin:0 .125rem}.margin-h-xs-6{margin:0 .25rem}.margin-h-xs-5{margin:0 .375rem}.margin-h-xs-4{margin:0 .5rem}.margin-h-xs-3{margin:0 .625rem}.margin-h-xs-2{margin:0 .75rem}.margin-h-xs{margin:0 .875rem}.margin-h-s{margin:0 1rem}.margin-h-m-1{margin:0 1.125rem}.margin-h-m-2{margin:0 1.25rem}.margin-h-l{margin:0 1.5rem}.margin-h-xl{margin:0 1.75rem}.margin-h-xl-2{margin:0 2rem}.margin-h-xl-3{margin:0 2.25rem}.margin-h-xl-4{margin:0 2.75rem}.margin-h-xl-5{margin:0 3rem}.margin-h-xl-6{margin:0 4rem}.margin-v-xs-7{margin:.125rem 0}.margin-v-xs-6{margin:.25rem 0}.margin-v-xs-5{margin:.375rem 0}.margin-v-xs-4{margin:.5rem 0}.margin-v-xs-3{margin:.625rem 0}.margin-v-xs-2{margin:.75rem 0}.margin-v-xs{margin:.875rem 0}.margin-v-s{margin:1rem 0}.margin-v-m-1{margin:1.125rem 0}.margin-v-m-2{margin:1.25rem 0}.margin-v-l{margin:1.5rem 0}.margin-v-xl{margin:1.75rem 0}.margin-v-xl-2{margin:2rem 0}.margin-v-xl-3{margin:2.25rem 0}.margin-v-xl-4{margin:2.75rem 0}.margin-v-xl-5{margin:3rem 0}.margin-v-xl-6{margin:4rem 0}.margin-l-xs-7{margin-left:.125rem}.margin-l-xs-6{margin-left:.25rem}.margin-l-xs-5{margin-left:.375rem}.margin-l-xs-4{margin-left:.5rem}.margin-l-xs-3{margin-left:.625rem}.margin-l-xs-2{margin-left:.75rem}.margin-l-xs{margin-left:.875rem}.margin-l-s{margin-left:1rem}.margin-l-m-1{margin-left:1.125rem}.margin-l-m-2{margin-left:1.25rem}.margin-l-l{margin-left:1.5rem}.margin-l-xl{margin-left:1.75rem}.margin-l-xl-2{margin-left:2rem}.margin-l-xl-3{margin-left:2.25rem}.margin-l-xl-4{margin-left:2.75rem}.margin-l-xl-5{margin-left:3rem}.margin-l-xl-6{margin-left:4rem}.margin-r-xs-7{margin-right:.125rem}.margin-r-xs-6{margin-right:.25rem}.margin-r-xs-5{margin-right:.375rem}.margin-r-xs-4{margin-right:.5rem}.margin-r-xs-3{margin-right:.625rem}.margin-r-xs-2{margin-right:.75rem}.margin-r-xs{margin-right:.875rem}.margin-r-s{margin-right:1rem}.margin-r-m-1{margin-right:1.125rem}.margin-r-m-2{margin-right:1.25rem}.margin-r-l{margin-right:1.5rem}.margin-r-xl{margin-right:1.75rem}.margin-r-xl-2{margin-right:2rem}.margin-r-xl-3{margin-right:2.25rem}.margin-r-xl-4{margin-right:2.75rem}.margin-r-xl-5{margin-right:3rem}.margin-r-xl-6{margin-right:4rem}.fontSize10{font-size:.625em}.fontSize12{font-size:.75em}.fontSize14{font-size:.875em}.fontSize16{font-size:1em}.fontSize18{font-size:1.125em}.fontSize20{font-size:1.25em}.fontSize22{font-size:1.375em}.fontSize24{font-size:1.5em}.fontSize30{font-size:1.875em}.fontSize32{font-size:2em}.fontSize40{font-size:3em}.fontSize64{font-size:4em}.gap-xs-7{gap:.125rem}.gap-xs-6{gap:.25rem}.gap-xs-5{gap:.375rem}.gap-xs-4{gap:.5rem}.gap-xs-3{gap:.625rem}.gap-xs-2{gap:.75rem}.gap-xs{gap:.875rem}.gap-s{gap:1rem}.gap-m-1{gap:1.125rem}.gap-m-2{gap:1.25rem}.gap-l{gap:1.5rem}.gap-xl{gap:1.75rem}.gap-xl-2{gap:2rem}.gap-xl-3{gap:2.25rem}.gap-xl-4{gap:2.75rem}.gap-xl-5{gap:3rem}.gap-xl-6{gap:4rem}:root,body{font-family:Urbanist,sans-serif}.fontUrbanist{font-family:Urbanist,sans-serif}.textColorPrimary{color:var(--color-blue-situaction-900)}.backColorPrimary{background-color:var(--color-blue-situaction-900)}.flexHorizontal{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}.flexHorizontalCenter{display:flex;justify-content:center;align-items:center;flex-direction:row}.flexHorizontalBetween{display:flex;justify-content:space-between;align-items:center;flex-direction:row}.flexVertical{display:flex;justify-content:flex-start;align-items:center;flex-direction:column}.flexVerticalCenter{display:flex;justify-content:center;align-items:center;flex-direction:row}
|