@situaction/traq-ui-ste 1.0.21 → 1.0.22
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/icon-button/IconButton.js +31 -31
- package/dist/components/input/Input.d.ts +0 -2
- package/dist/components/input/Input.js +38 -40
- package/dist/components/tabs/Tabs.d.ts +7 -3
- package/dist/components/tabs/Tabs.js +37 -23
- package/dist/styles/IconButton.css +1 -1
- package/dist/styles/Input.css +1 -1
- package/dist/styles/Tabs.css +1 -1
- package/package.json +1 -1
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { jsx as y } from "react/jsx-runtime";
|
|
2
2
|
import { useEffect as d } from "react";
|
|
3
|
-
import { useTheme as
|
|
4
|
-
import '../../styles/IconButton.css';const
|
|
5
|
-
button:
|
|
6
|
-
"button-round": "_button-
|
|
7
|
-
"button-primary": "_button-
|
|
8
|
-
"button-secondary": "_button-
|
|
9
|
-
"button-tertiary": "_button-
|
|
10
|
-
"button-ghost": "_button-
|
|
11
|
-
"button-
|
|
12
|
-
"button-
|
|
13
|
-
"button-error": "_button-
|
|
14
|
-
"button-size-xl": "_button-size-
|
|
15
|
-
"button-size-l": "_button-size-
|
|
16
|
-
"button-size-m": "_button-size-
|
|
17
|
-
"button-size-s": "_button-size-
|
|
18
|
-
flexHorizontalCenter:
|
|
19
|
-
},
|
|
3
|
+
import { useTheme as j } from "../theme/ThemeContext.js";
|
|
4
|
+
import '../../styles/IconButton.css';const w = "_button_pjwt4_21", v = "_flexHorizontalCenter_pjwt4_160", o = {
|
|
5
|
+
button: w,
|
|
6
|
+
"button-round": "_button-round_pjwt4_48",
|
|
7
|
+
"button-primary": "_button-primary_pjwt4_51",
|
|
8
|
+
"button-secondary": "_button-secondary_pjwt4_64",
|
|
9
|
+
"button-tertiary": "_button-tertiary_pjwt4_78",
|
|
10
|
+
"button-ghost": "_button-ghost_pjwt4_92",
|
|
11
|
+
"button-icon": "_button-icon_pjwt4_105",
|
|
12
|
+
"button-icon-selected": "_button-icon-selected_pjwt4_117",
|
|
13
|
+
"button-error": "_button-error_pjwt4_126",
|
|
14
|
+
"button-size-xl": "_button-size-xl_pjwt4_139",
|
|
15
|
+
"button-size-l": "_button-size-l_pjwt4_144",
|
|
16
|
+
"button-size-m": "_button-size-m_pjwt4_149",
|
|
17
|
+
"button-size-s": "_button-size-s_pjwt4_154",
|
|
18
|
+
flexHorizontalCenter: v
|
|
19
|
+
}, h = ({
|
|
20
20
|
mode: e = "primary",
|
|
21
21
|
color: t,
|
|
22
22
|
colorMode: r,
|
|
@@ -24,22 +24,22 @@ import '../../styles/IconButton.css';const x = "_button_1v64m_21", z = "_flexHor
|
|
|
24
24
|
error: a,
|
|
25
25
|
selected: u,
|
|
26
26
|
round: s,
|
|
27
|
-
disabled:
|
|
28
|
-
children:
|
|
29
|
-
onClick:
|
|
27
|
+
disabled: _,
|
|
28
|
+
children: b,
|
|
29
|
+
onClick: l
|
|
30
30
|
}) => {
|
|
31
|
-
const { mode: n } =
|
|
31
|
+
const { mode: n } = j(), c = () => a ? "error" : e;
|
|
32
32
|
d(() => {
|
|
33
33
|
r && !t && console.warn("`colorMode` is defined but `color` is missing. `colorMode` will be ignored.");
|
|
34
34
|
}, [t]);
|
|
35
|
-
const
|
|
35
|
+
const m = [
|
|
36
36
|
o.button,
|
|
37
|
-
o[`button-${
|
|
37
|
+
o[`button-${c()}`],
|
|
38
38
|
s && o["button-round"],
|
|
39
39
|
o[`button-size-${i}`],
|
|
40
|
-
u && e === "icon" && o["button-
|
|
40
|
+
u && e === "icon" && o["button-icon-selected"],
|
|
41
41
|
o.flexHorizontalCenter
|
|
42
|
-
].join(" "),
|
|
42
|
+
].join(" "), p = {
|
|
43
43
|
"--dynamic-color-text": t ? r === "dark" ? "var(--primary-color-900)" : "var(--color-light-100)" : n === "light" ? "var(--color-light-100)" : "var(--primary-color-900)",
|
|
44
44
|
"--dynamic-color": t ? `var(--color-${t}-${r === "dark" ? "200" : "900"})` : "var(--primary-color)",
|
|
45
45
|
"--dynamic-color-hover": t ? `var(--color-${t}-${r === "dark" ? "100" : "800"})` : n === "light" ? "var(--primary-color-800)" : "var(--primary-color-100)",
|
|
@@ -48,14 +48,14 @@ import '../../styles/IconButton.css';const x = "_button_1v64m_21", z = "_flexHor
|
|
|
48
48
|
return /* @__PURE__ */ y(
|
|
49
49
|
"button",
|
|
50
50
|
{
|
|
51
|
-
className:
|
|
52
|
-
style:
|
|
53
|
-
onClick:
|
|
54
|
-
disabled:
|
|
55
|
-
children:
|
|
51
|
+
className: m,
|
|
52
|
+
style: p,
|
|
53
|
+
onClick: l,
|
|
54
|
+
disabled: _,
|
|
55
|
+
children: b
|
|
56
56
|
}
|
|
57
57
|
);
|
|
58
58
|
};
|
|
59
59
|
export {
|
|
60
|
-
|
|
60
|
+
h as IconButton
|
|
61
61
|
};
|
|
@@ -6,8 +6,6 @@ export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
6
6
|
sizeStyle?: Size;
|
|
7
7
|
/** input status style **/
|
|
8
8
|
status?: 'default' | 'error' | 'success' | 'secondary' | 'ghost';
|
|
9
|
-
/** The label or placeholder text for the input field **/
|
|
10
|
-
label: string;
|
|
11
9
|
/** Optional unit or additional label to display next to the input **/
|
|
12
10
|
labelUnit?: string;
|
|
13
11
|
/** If true, the input will have rounded corners **/
|
|
@@ -1,56 +1,55 @@
|
|
|
1
1
|
import { jsxs as a, jsx as s, Fragment as c } from "react/jsx-runtime";
|
|
2
|
-
import { useState as y, useRef as
|
|
3
|
-
import { useTheme as
|
|
4
|
-
import '../../styles/Input.css';const
|
|
5
|
-
"input-style": "_input-
|
|
6
|
-
"input-style-disabled": "_input-style-
|
|
7
|
-
"input-style-focused": "_input-style-
|
|
8
|
-
"input-style-secondary": "_input-style-
|
|
9
|
-
"input-style-ghost": "_input-style-
|
|
10
|
-
"input-style-error": "_input-style-
|
|
11
|
-
"input-style-success": "_input-style-
|
|
12
|
-
"input-container": "_input-
|
|
13
|
-
"input-style-size-xl": "_input-style-size-
|
|
14
|
-
"input-style-size-l": "_input-style-size-
|
|
15
|
-
"input-style-size-m": "_input-style-size-
|
|
16
|
-
"input-style-size-s": "_input-style-size-
|
|
17
|
-
"input-style-radius": "_input-style-
|
|
18
|
-
flexHorizontalBetween:
|
|
19
|
-
flexHorizontal:
|
|
20
|
-
},
|
|
2
|
+
import { useState as y, useRef as F } from "react";
|
|
3
|
+
import { useTheme as j } from "../theme/ThemeContext.js";
|
|
4
|
+
import '../../styles/Input.css';const N = "_flexHorizontalBetween_tg8sh_154", k = "_flexHorizontal_tg8sh_154", t = {
|
|
5
|
+
"input-style": "_input-style_tg8sh_38",
|
|
6
|
+
"input-style-disabled": "_input-style-disabled_tg8sh_50",
|
|
7
|
+
"input-style-focused": "_input-style-focused_tg8sh_61",
|
|
8
|
+
"input-style-secondary": "_input-style-secondary_tg8sh_69",
|
|
9
|
+
"input-style-ghost": "_input-style-ghost_tg8sh_83",
|
|
10
|
+
"input-style-error": "_input-style-error_tg8sh_86",
|
|
11
|
+
"input-style-success": "_input-style-success_tg8sh_96",
|
|
12
|
+
"input-container": "_input-container_tg8sh_106",
|
|
13
|
+
"input-style-size-xl": "_input-style-size-xl_tg8sh_110",
|
|
14
|
+
"input-style-size-l": "_input-style-size-l_tg8sh_120",
|
|
15
|
+
"input-style-size-m": "_input-style-size-m_tg8sh_130",
|
|
16
|
+
"input-style-size-s": "_input-style-size-s_tg8sh_140",
|
|
17
|
+
"input-style-radius": "_input-style-radius_tg8sh_150",
|
|
18
|
+
flexHorizontalBetween: N,
|
|
19
|
+
flexHorizontal: k
|
|
20
|
+
}, D = ({
|
|
21
21
|
sizeStyle: p = "m",
|
|
22
|
-
label: d,
|
|
23
22
|
labelUnit: n,
|
|
24
23
|
status: l = "default",
|
|
25
24
|
childrenLeft: o,
|
|
26
25
|
childrenRight: i,
|
|
27
|
-
round:
|
|
26
|
+
round: d,
|
|
28
27
|
disabled: r,
|
|
29
|
-
defaultValue:
|
|
28
|
+
defaultValue: _,
|
|
30
29
|
...h
|
|
31
30
|
}) => {
|
|
32
|
-
const { mode: e } =
|
|
33
|
-
|
|
34
|
-
},
|
|
31
|
+
const { mode: e } = j(), [g, u] = y(!1), [f, m] = y(_ || ""), z = F(null), v = () => u(!0), x = () => u(!1), B = (C) => {
|
|
32
|
+
m(C.target.value);
|
|
33
|
+
}, H = [
|
|
35
34
|
t["input-style"],
|
|
36
35
|
t[`input-style-size-${p}`],
|
|
37
|
-
|
|
36
|
+
d && t["input-style-radius"],
|
|
38
37
|
t.flexHorizontalBetween
|
|
39
|
-
].filter(Boolean).join(" "),
|
|
40
|
-
|
|
38
|
+
].filter(Boolean).join(" "), b = [
|
|
39
|
+
g && t["input-style-focused"],
|
|
41
40
|
r && t["input-style-disabled"],
|
|
42
41
|
l === "secondary" && t["input-style-secondary"],
|
|
43
42
|
l === "ghost" && t["input-style-ghost"]
|
|
44
|
-
].filter(Boolean).join(" "),
|
|
43
|
+
].filter(Boolean).join(" "), S = () => {
|
|
45
44
|
switch (l) {
|
|
46
45
|
case "error":
|
|
47
46
|
return t["input-style-error"];
|
|
48
47
|
case "success":
|
|
49
48
|
return t["input-style-success"];
|
|
50
49
|
default:
|
|
51
|
-
return
|
|
50
|
+
return b;
|
|
52
51
|
}
|
|
53
|
-
},
|
|
52
|
+
}, w = {
|
|
54
53
|
"--dynamic-color": e === "light" ? "var(--color-blue-grey-400)" : "var(--color-blue-grey-200)",
|
|
55
54
|
"--dynamic-color-activated": e === "light" ? "var(--color-dark-100)" : "var(--color-light-100)",
|
|
56
55
|
"--dynamic-color-disabled": e === "light" ? "var(--color-dark-40)" : "var(--color-light-40)",
|
|
@@ -60,21 +59,20 @@ import '../../styles/Input.css';const k = "_flexHorizontalBetween_115tz_153", I
|
|
|
60
59
|
return /* @__PURE__ */ a(
|
|
61
60
|
"div",
|
|
62
61
|
{
|
|
63
|
-
ref:
|
|
64
|
-
className: `input-style ${
|
|
65
|
-
onFocus:
|
|
66
|
-
onBlur:
|
|
67
|
-
style:
|
|
62
|
+
ref: z,
|
|
63
|
+
className: `input-style ${H} ${S()}`,
|
|
64
|
+
onFocus: v,
|
|
65
|
+
onBlur: x,
|
|
66
|
+
style: w,
|
|
68
67
|
children: [
|
|
69
68
|
o && /* @__PURE__ */ s(c, { children: o }),
|
|
70
69
|
/* @__PURE__ */ s("div", { className: t["input-container"], children: /* @__PURE__ */ s(
|
|
71
70
|
"input",
|
|
72
71
|
{
|
|
73
72
|
autoCorrect: "false",
|
|
74
|
-
placeholder: d,
|
|
75
73
|
disabled: r,
|
|
76
|
-
value:
|
|
77
|
-
onChange:
|
|
74
|
+
value: f,
|
|
75
|
+
onChange: B,
|
|
78
76
|
...h
|
|
79
77
|
}
|
|
80
78
|
) }),
|
|
@@ -87,5 +85,5 @@ import '../../styles/Input.css';const k = "_flexHorizontalBetween_115tz_153", I
|
|
|
87
85
|
);
|
|
88
86
|
};
|
|
89
87
|
export {
|
|
90
|
-
|
|
88
|
+
D as Input
|
|
91
89
|
};
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
|
|
3
3
|
export interface TabsProps {
|
|
4
|
+
/** select the type of data text or icon that we put in tabs */
|
|
5
|
+
type: 'text' | 'icon';
|
|
4
6
|
/** Array of strings representing the labels of the tabs */
|
|
5
|
-
listItems: string[];
|
|
7
|
+
listItems: (string | ReactNode)[];
|
|
6
8
|
/** Index of the tab that should be active by default */
|
|
7
9
|
defaultActiveTab?: number;
|
|
10
|
+
/** Position Tabs */
|
|
11
|
+
position?: 'center' | 'right' | 'left';
|
|
8
12
|
/** Callback function to handle tab selection, receiving the selected tab's label */
|
|
9
|
-
onTabSelect: (selectedItem: string) => void;
|
|
13
|
+
onTabSelect: (selectedItem: string | ReactNode) => void;
|
|
10
14
|
}
|
|
11
15
|
export declare const Tabs: FC<TabsProps>;
|
|
@@ -1,39 +1,53 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useState as
|
|
1
|
+
import { jsxs as z, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { useState as d, useRef as i, useLayoutEffect as H } from "react";
|
|
3
3
|
import { Button as v } from "../button/Button.js";
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
"tab-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
import { IconButton as C } from "../icon-button/IconButton.js";
|
|
5
|
+
import '../../styles/Tabs.css';const B = "_underline_6d6ac_34", o = {
|
|
6
|
+
"tab-container": "_tab-container_6d6ac_21",
|
|
7
|
+
"tab-items": "_tab-items_6d6ac_29",
|
|
8
|
+
underline: B,
|
|
9
|
+
"flexHorizontal-center": "_flexHorizontal-center_6d6ac_42",
|
|
10
|
+
"flexHorizontal-left": "_flexHorizontal-left_6d6ac_48",
|
|
11
|
+
"flexHorizontal-right": "_flexHorizontal-right_6d6ac_54"
|
|
12
|
+
}, k = ({ listItems: r, type: u, onTabSelect: _, defaultActiveTab: m = 0, position: b = "left" }) => {
|
|
13
|
+
const [l, x] = d(m), [h, p] = d({}), c = i(null), g = i(null), s = i(new Array(r.length).fill(null)), f = (e) => {
|
|
14
|
+
x(e), _(r[e]);
|
|
12
15
|
}, R = (e) => {
|
|
13
|
-
if (
|
|
14
|
-
const t = e.getBoundingClientRect(),
|
|
15
|
-
|
|
16
|
-
left: `${t.left -
|
|
16
|
+
if (c.current && e) {
|
|
17
|
+
const t = e.getBoundingClientRect(), a = c.current.getBoundingClientRect();
|
|
18
|
+
p({
|
|
19
|
+
left: `${t.left - a.left}px`,
|
|
17
20
|
width: `${t.width}px`
|
|
18
21
|
});
|
|
19
22
|
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
}, y = [
|
|
24
|
+
o[`flexHorizontal-${b}`],
|
|
25
|
+
o["tab-items"]
|
|
26
|
+
].filter(Boolean).join(" ");
|
|
27
|
+
return H(() => {
|
|
28
|
+
const e = s.current[l];
|
|
23
29
|
e && R(e);
|
|
24
|
-
}, [
|
|
25
|
-
/* @__PURE__ */ n("div", { className:
|
|
30
|
+
}, [l]), /* @__PURE__ */ z("div", { className: `tab ${o["tab-container"]}`, ref: c, children: [
|
|
31
|
+
/* @__PURE__ */ n("div", { className: y, children: r.map((e, t) => /* @__PURE__ */ n("div", { ref: (a) => s.current[t] = a, children: u === "text" ? /* @__PURE__ */ n(
|
|
26
32
|
v,
|
|
27
33
|
{
|
|
28
34
|
label: e,
|
|
29
35
|
mode: "text",
|
|
30
|
-
selected: t ===
|
|
31
|
-
onClick: () =>
|
|
36
|
+
selected: t === l,
|
|
37
|
+
onClick: () => f(t)
|
|
38
|
+
}
|
|
39
|
+
) : /* @__PURE__ */ n(
|
|
40
|
+
C,
|
|
41
|
+
{
|
|
42
|
+
mode: "icon",
|
|
43
|
+
selected: t === l,
|
|
44
|
+
onClick: () => f(t),
|
|
45
|
+
children: e
|
|
32
46
|
}
|
|
33
47
|
) }, t)) }),
|
|
34
|
-
/* @__PURE__ */ n("div", { ref:
|
|
48
|
+
/* @__PURE__ */ n("div", { ref: g, className: o.underline, style: h })
|
|
35
49
|
] });
|
|
36
50
|
};
|
|
37
51
|
export {
|
|
38
|
-
|
|
52
|
+
k as Tabs
|
|
39
53
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._button_pjwt4_21{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_pjwt4_21:focus-visible{outline:none}._button_pjwt4_21:disabled{background-color:#0f0f0f0d;color:#0f0f0f66;border:1px solid rgba(15,15,15,.1);cursor:initial;pointer-events:none}._button_pjwt4_21:disabled *{fill:#0f0f0f66}._button-round_pjwt4_48._button_pjwt4_21{border-radius:50%}._button-primary_pjwt4_51{color:var(--dynamic-color-text);background-color:var(--dynamic-color)}._button-primary_pjwt4_51:hover{background-color:var(--dynamic-color-hover)}._button-primary_pjwt4_51:active{background-color:var(--dynamic-color-activated)}._button-primary_pjwt4_51 *{fill:var(--dynamic-color-text)}._button-secondary_pjwt4_64{color:var(--color-text);background-color:#96b4ee33;border:1px solid rgba(150,180,238,.5)}._button-secondary_pjwt4_64:hover{background-color:#96b4ee66}._button-secondary_pjwt4_64:active{background-color:#96b4ee99}._button-secondary_pjwt4_64 *{fill:var(--color-text)}._button-tertiary_pjwt4_78{color:var(--color-text);background-color:transparent;border:1px solid rgba(150,180,238,.5)}._button-tertiary_pjwt4_78:hover{background-color:#96b4ee1a}._button-tertiary_pjwt4_78:active{background-color:#96b4ee33}._button-tertiary_pjwt4_78 *{fill:var(--color-text)}._button-ghost_pjwt4_92{color:var(--color-text);background-color:transparent}._button-ghost_pjwt4_92:hover{background-color:#96b4ee1a}._button-ghost_pjwt4_92:active{background-color:#96b4ee33}._button-ghost_pjwt4_92 *{fill:var(--color-text)}._button-icon_pjwt4_105{fill:#96b4eecc;background-color:transparent}._button-icon_pjwt4_105:hover{fill:#96b4ee}._button-icon_pjwt4_105:disabled{border:none;background-color:transparent;fill:#a5b4bb}._button-icon-selected_pjwt4_117,._button-icon-selected_pjwt4_117:hover{fill:var(--color-text)}._button-icon_pjwt4_105 svg{fill:inherit}._button-error_pjwt4_126{color:#fff;background-color:#ff4747}._button-error_pjwt4_126:hover{background-color:#ed1515}._button-error_pjwt4_126:active{background-color:#c80d0d}._button-error_pjwt4_126 *{fill:var(--color-text)}._button-size-xl_pjwt4_139{border-radius:.5rem;padding:1rem;font-size:1.125em}._button-size-l_pjwt4_144{border-radius:.5rem;padding:.75rem;font-size:1em}._button-size-m_pjwt4_149{border-radius:.25rem;padding:.5rem;font-size:.875em}._button-size-s_pjwt4_154{border-radius:.25rem;padding:.375rem;font-size:.75em}._flexHorizontalCenter_pjwt4_160{display:flex;justify-content:center;align-items:center;flex-direction:row}
|
package/dist/styles/Input.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
input{font-family:Urbanist,sans-serif;border:none;background-color:transparent}input:focus{outline:none;box-shadow:none;border-color:transparent}input::placeholder{font-family:Urbanist,sans-serif;color:var(--dynamic-color)}._input-
|
|
1
|
+
input{font-family:Urbanist,sans-serif;border:none;background-color:transparent;width:auto}input:focus{outline:none;box-shadow:none;border-color:transparent}input::placeholder{font-family:Urbanist,sans-serif;color:var(--dynamic-color)}._input-style_tg8sh_38{font-family:Urbanist,sans-serif;border:1px solid rgba(150,180,238,.5);color:var(--dynamic-color)}._input-style_tg8sh_38 input{color:var(--dynamic-color-activated)}._input-style_tg8sh_38 *{fill:var(--dynamic-color)}._input-style-disabled_tg8sh_50{background-color:#0f0f0f0d;border-color:var(--dynamic-color-border-disabled);pointer-events:none}._input-style-disabled_tg8sh_50 input{color:var(--dynamic-color-disabled)}._input-style-disabled_tg8sh_50 *{fill:var(--dynamic-color-disabled)}._input-style-focused_tg8sh_61{color:var(--dynamic-color);border-color:var(--dynamic-color-border);background-color:var(--dynamic-background-color)}._input-style-focused_tg8sh_61 *{fill:var(--dynamic-color-activated)}._input-style-secondary_tg8sh_69{background-color:#96b4ee33;color:var(--dynamic-color-secondary);border:1px solid rgba(150,180,238,.5)}._input-style-secondary_tg8sh_69 input{color:var(--dynamic-color-secondary)}._input-style-secondary_tg8sh_69 input::placeholder{color:var(--dynamic-color-secondary)}._input-style-secondary_tg8sh_69 *{fill:var(--dynamic-color-secondary)}._input-style-ghost_tg8sh_83{border:none}._input-style-error_tg8sh_86{border-color:#ff4747;color:#ff4747}._input-style-error_tg8sh_86 input::placeholder{color:#ff4747}._input-style-error_tg8sh_86 *{fill:#ff4747}._input-style-success_tg8sh_96{border-color:#33b449;color:#33b449}._input-style-success_tg8sh_96 input::placeholder{color:#33b449}._input-style-success_tg8sh_96 *{fill:#33b449}._input-style_tg8sh_38 ._input-container_tg8sh_106{position:relative;width:100%}._input-style-size-xl_tg8sh_110{padding:1rem;font-size:1.125em;line-height:28px;border-radius:8px;gap:.625rem}._input-style-size-xl_tg8sh_110 input{line-height:28px}._input-style-size-l_tg8sh_120{padding:.75rem;font-size:1em;line-height:24px;border-radius:8px;gap:.5rem}._input-style-size-l_tg8sh_120 input{line-height:24px}._input-style-size-m_tg8sh_130{padding:.5rem;font-size:.875em;line-height:20px;border-radius:4px;gap:.375rem}._input-style-size-m_tg8sh_130 input{line-height:20px}._input-style-size-s_tg8sh_140{padding:.375rem;font-size:.75em;line-height:16px;border-radius:4px;gap:.25rem}._input-style-size-s_tg8sh_140 input{line-height:16px}._input-style-radius_tg8sh_150{border-radius:50px}._flexHorizontalBetween_tg8sh_154{display:flex;justify-content:space-between;align-items:center;flex-direction:row}._flexHorizontal_tg8sh_154{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_6d6ac_21{position:relative;color:#a5b4bb;font-weight:500;font-size:.875em;line-height:1.25rem;border-bottom:1px solid rgba(150,180,238,.8)}._tab-items_6d6ac_29{gap:2.25rem;padding:.625rem .125rem}._underline_6d6ac_34{position:absolute;bottom:0;height:2px;background-color:var(--primary-color);transition:all .3s ease}._flexHorizontal-center_6d6ac_42{display:flex;justify-content:center;align-items:center;flex-direction:row}._flexHorizontal-left_6d6ac_48{display:flex;justify-content:flex-start;align-items:center;flex-direction:row}._flexHorizontal-right_6d6ac_54{display:flex;justify-content:flex-end;align-items:center;flex-direction:row}
|