@lawkit/ui 0.1.2 → 0.1.4
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/index.css +1 -1
- package/dist/index.js +1532 -1462
- package/dist/tokens/src/contracts/theme-contract.css.d.ts +1 -0
- package/dist/tokens/src/semantic/color-roles.d.ts +362 -362
- package/dist/tokens/src/themes/light-theme.css.d.ts +1 -0
- package/dist/ui-v3/src/components/Alert/Alert.css.d.ts +4 -4
- package/dist/ui-v3/src/components/Avatar/Avatar.css.d.ts +1 -1
- package/dist/ui-v3/src/components/ButtonGroup/ButtonGroup.css.d.ts +5 -5
- package/dist/ui-v3/src/components/ButtonTab/ButtonTab.css.d.ts +3 -3
- package/dist/ui-v3/src/components/Card/Card.css.d.ts +1 -1
- package/dist/ui-v3/src/components/ChartTooltip/ChartTooltip.css.d.ts +4 -4
- package/dist/ui-v3/src/components/Checkbox/Checkbox.css.d.ts +2 -2
- package/dist/ui-v3/src/components/ChipsNavigation/ChipsNavigation.css.d.ts +2 -2
- package/dist/ui-v3/src/components/Collapse/Collapse.css.d.ts +3 -3
- package/dist/ui-v3/src/components/DataTable/DataTable.css.d.ts +1 -1
- package/dist/ui-v3/src/components/DataTable/index.d.ts +2 -2
- package/dist/ui-v3/src/components/DatePicker/DatePicker.css.d.ts +12 -12
- package/dist/ui-v3/src/components/Dropdown/Dropdown.css.d.ts +5 -5
- package/dist/ui-v3/src/components/FileUpload/FileUpload.css.d.ts +1 -1
- package/dist/ui-v3/src/components/Icon/Icon.css.d.ts +12 -0
- package/dist/ui-v3/src/components/Icon/index.d.ts +4 -0
- package/dist/ui-v3/src/components/Icon/registry.d.ts +11 -0
- package/dist/ui-v3/src/components/Icon/types.d.ts +10 -0
- package/dist/ui-v3/src/components/IconButtonGroup/IconButtonGroup.css.d.ts +5 -5
- package/dist/ui-v3/src/components/Input/Input.css.d.ts +9 -9
- package/dist/ui-v3/src/components/ListGroup/ListGroup.css.d.ts +2 -2
- package/dist/ui-v3/src/components/NavigationTab/NavigationTab.css.d.ts +5 -5
- package/dist/ui-v3/src/components/NumberInput/NumberInput.css.d.ts +1 -1
- package/dist/ui-v3/src/components/Pagination/Pagination.css.d.ts +3 -3
- package/dist/ui-v3/src/components/Progress/Progress.css.d.ts +4 -4
- package/dist/ui-v3/src/components/Spinner/Spinner.css.d.ts +2 -2
- package/dist/ui-v3/src/components/Switch/Switch.css.d.ts +1 -1
- package/dist/ui-v3/src/components/Tabs/Tabs.css.d.ts +6 -6
- package/dist/ui-v3/src/components/Toast/Toast.css.d.ts +3 -3
- package/dist/ui-v3/src/components/TreeView/TreeView.css.d.ts +3 -3
- package/dist/ui-v3/src/components/Widget/Widget.css.d.ts +2 -2
- package/dist/ui-v3/src/foundations/field/field.css.d.ts +8 -8
- package/dist/ui-v3/src/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare const defaultThemeValues: {
|
|
|
18
18
|
shadow: {
|
|
19
19
|
readonly focus: "0 0 0 3px rgba(47, 91, 255, 0.14)";
|
|
20
20
|
readonly raised: "0 6px 16px rgba(17, 24, 39, 0.08)";
|
|
21
|
+
readonly modal: "0 4px 15px rgba(44, 63, 88, 0.35)";
|
|
21
22
|
};
|
|
22
23
|
};
|
|
23
24
|
export declare const lightThemeClass: string;
|
|
@@ -42,16 +42,16 @@ export declare const actions: string;
|
|
|
42
42
|
export declare const actionButton: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
43
43
|
intent: {
|
|
44
44
|
primary: {
|
|
45
|
-
backgroundColor: string
|
|
45
|
+
backgroundColor: `var(--${string})`;
|
|
46
46
|
};
|
|
47
47
|
warning: {
|
|
48
|
-
backgroundColor: string
|
|
48
|
+
backgroundColor: `var(--${string})`;
|
|
49
49
|
};
|
|
50
50
|
danger: {
|
|
51
|
-
backgroundColor: string
|
|
51
|
+
backgroundColor: `var(--${string})`;
|
|
52
52
|
};
|
|
53
53
|
secondary: {
|
|
54
|
-
backgroundColor: string
|
|
54
|
+
backgroundColor: `var(--${string})`;
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
}>;
|
|
@@ -20,7 +20,7 @@ export declare const labelCircle: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
20
20
|
color: {
|
|
21
21
|
primary: {
|
|
22
22
|
backgroundColor: "rgba(33, 81, 236, 0.12)";
|
|
23
|
-
color: string
|
|
23
|
+
color: `var(--${string})`;
|
|
24
24
|
};
|
|
25
25
|
success: {
|
|
26
26
|
backgroundColor: "rgba(39, 194, 129, 0.12)";
|
|
@@ -14,22 +14,22 @@ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
14
14
|
export declare const item: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
15
15
|
variant: {
|
|
16
16
|
fill: {
|
|
17
|
-
backgroundColor: string
|
|
18
|
-
color: string
|
|
17
|
+
backgroundColor: `var(--${string})`;
|
|
18
|
+
color: `var(--${string})`;
|
|
19
19
|
borderRight: "1px solid rgba(0, 0, 0, 0.12)";
|
|
20
20
|
selectors: {
|
|
21
21
|
"&:last-child": {
|
|
22
22
|
borderRight: "none";
|
|
23
23
|
};
|
|
24
24
|
"&:hover:not([data-active='true'])": {
|
|
25
|
-
backgroundColor: string
|
|
25
|
+
backgroundColor: `var(--${string})`;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
outline: {
|
|
30
30
|
backgroundColor: "transparent";
|
|
31
|
-
color: string
|
|
32
|
-
border: `1px solid
|
|
31
|
+
color: `var(--${string})`;
|
|
32
|
+
border: `1px solid var(--${string})`;
|
|
33
33
|
marginLeft: number;
|
|
34
34
|
borderRadius: number;
|
|
35
35
|
selectors: {
|
|
@@ -2,11 +2,11 @@ export declare const root: string;
|
|
|
2
2
|
export declare const tab: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
3
3
|
active: {
|
|
4
4
|
true: {
|
|
5
|
-
backgroundColor: string
|
|
6
|
-
color: string
|
|
5
|
+
backgroundColor: `var(--${string})`;
|
|
6
|
+
color: `var(--${string})`;
|
|
7
7
|
selectors: {
|
|
8
8
|
"&:hover:not(:disabled)": {
|
|
9
|
-
backgroundColor: string
|
|
9
|
+
backgroundColor: `var(--${string})`;
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
12
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
2
2
|
variant: {
|
|
3
3
|
default: {
|
|
4
|
-
backgroundColor: string
|
|
4
|
+
backgroundColor: `var(--${string})`;
|
|
5
5
|
border: "1px solid #eeeff2";
|
|
6
6
|
};
|
|
7
7
|
pie: {
|
|
8
|
-
backgroundColor: string
|
|
8
|
+
backgroundColor: `var(--${string})`;
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
11
|
}>;
|
|
@@ -20,7 +20,7 @@ export declare const label: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
20
20
|
color: "#4c5469";
|
|
21
21
|
};
|
|
22
22
|
pie: {
|
|
23
|
-
color: string
|
|
23
|
+
color: `var(--${string})`;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
}>;
|
|
@@ -30,7 +30,7 @@ export declare const value: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
30
30
|
color: "#4c5469";
|
|
31
31
|
};
|
|
32
32
|
pie: {
|
|
33
|
-
color: string
|
|
33
|
+
color: `var(--${string})`;
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
36
|
}>;
|
|
@@ -18,11 +18,11 @@ export declare const box: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
18
18
|
};
|
|
19
19
|
checked: {
|
|
20
20
|
true: {
|
|
21
|
-
backgroundColor: string
|
|
21
|
+
backgroundColor: `var(--${string})`;
|
|
22
22
|
boxShadow: "none";
|
|
23
23
|
};
|
|
24
24
|
false: {
|
|
25
|
-
backgroundColor: string
|
|
25
|
+
backgroundColor: `var(--${string})`;
|
|
26
26
|
boxShadow: "inset 0 0 0 1.5px #9ea7b8";
|
|
27
27
|
};
|
|
28
28
|
};
|
|
@@ -5,7 +5,7 @@ export declare const chip: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
5
5
|
active: {
|
|
6
6
|
true: {
|
|
7
7
|
backgroundColor: "#343434";
|
|
8
|
-
color: string
|
|
8
|
+
color: `var(--${string})`;
|
|
9
9
|
selectors: {
|
|
10
10
|
"&:hover": {
|
|
11
11
|
opacity: number;
|
|
@@ -14,7 +14,7 @@ export declare const chip: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
14
14
|
};
|
|
15
15
|
false: {
|
|
16
16
|
backgroundColor: "#3434341F";
|
|
17
|
-
color: string
|
|
17
|
+
color: `var(--${string})`;
|
|
18
18
|
selectors: {
|
|
19
19
|
"&:hover": {
|
|
20
20
|
backgroundColor: "#34343433";
|
|
@@ -13,7 +13,7 @@ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
13
13
|
export declare const header: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
14
14
|
variant: {
|
|
15
15
|
default: {
|
|
16
|
-
borderBottom: `1px solid
|
|
16
|
+
borderBottom: `1px solid var(--${string})`;
|
|
17
17
|
};
|
|
18
18
|
shadow: {};
|
|
19
19
|
border: {};
|
|
@@ -46,10 +46,10 @@ export declare const contentInner: import('@vanilla-extract/recipes').RuntimeFn<
|
|
|
46
46
|
variant: {
|
|
47
47
|
default: {};
|
|
48
48
|
shadow: {
|
|
49
|
-
borderTop: `1px solid
|
|
49
|
+
borderTop: `1px solid var(--${string})`;
|
|
50
50
|
};
|
|
51
51
|
border: {
|
|
52
|
-
borderTop: `1px solid
|
|
52
|
+
borderTop: `1px solid var(--${string})`;
|
|
53
53
|
};
|
|
54
54
|
margin: {};
|
|
55
55
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
|
-
import { ColumnDef, SortingState, RowSelectionState, OnChangeFn
|
|
3
|
-
export
|
|
2
|
+
import { ColumnDef, SortingState, RowSelectionState, OnChangeFn } from '@tanstack/react-table';
|
|
3
|
+
export * from '@tanstack/react-table';
|
|
4
4
|
export interface DataTableProps<T> extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
|
|
5
5
|
/** 테이블 데이터 */
|
|
6
6
|
data: T[];
|
|
@@ -18,29 +18,29 @@ export declare const dateButton: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
18
18
|
borderColor: "#cfd5e1";
|
|
19
19
|
};
|
|
20
20
|
":focus-visible": {
|
|
21
|
-
borderColor: string
|
|
21
|
+
borderColor: `var(--${string})`;
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
24
|
today: {
|
|
25
|
-
color: string
|
|
25
|
+
color: `var(--${string})`;
|
|
26
26
|
fontWeight: `var(--${string})`;
|
|
27
27
|
":hover": {
|
|
28
28
|
backgroundColor: "rgba(158, 167, 184, 0.12)";
|
|
29
29
|
borderColor: "#cfd5e1";
|
|
30
30
|
};
|
|
31
31
|
":focus-visible": {
|
|
32
|
-
borderColor: string
|
|
32
|
+
borderColor: `var(--${string})`;
|
|
33
33
|
};
|
|
34
34
|
};
|
|
35
35
|
selected: {
|
|
36
|
-
backgroundColor: string
|
|
37
|
-
color: string
|
|
36
|
+
backgroundColor: `var(--${string})`;
|
|
37
|
+
color: `var(--${string})`;
|
|
38
38
|
":hover": {
|
|
39
|
-
backgroundColor: string
|
|
39
|
+
backgroundColor: `var(--${string})`;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
disabled: {
|
|
43
|
-
color: string
|
|
43
|
+
color: `var(--${string})`;
|
|
44
44
|
cursor: "not-allowed";
|
|
45
45
|
};
|
|
46
46
|
outside: {
|
|
@@ -48,15 +48,15 @@ export declare const dateButton: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
48
48
|
cursor: "default";
|
|
49
49
|
};
|
|
50
50
|
rangeStart: {
|
|
51
|
-
backgroundColor: string
|
|
52
|
-
color: string
|
|
51
|
+
backgroundColor: `var(--${string})`;
|
|
52
|
+
color: `var(--${string})`;
|
|
53
53
|
};
|
|
54
54
|
rangeEnd: {
|
|
55
|
-
backgroundColor: string
|
|
56
|
-
color: string
|
|
55
|
+
backgroundColor: `var(--${string})`;
|
|
56
|
+
color: `var(--${string})`;
|
|
57
57
|
};
|
|
58
58
|
inRange: {
|
|
59
|
-
color: string
|
|
59
|
+
color: `var(--${string})`;
|
|
60
60
|
":hover": {
|
|
61
61
|
backgroundColor: "rgba(158, 167, 184, 0.12)";
|
|
62
62
|
borderColor: "#cfd5e1";
|
|
@@ -18,7 +18,7 @@ export declare const trigger: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
18
18
|
};
|
|
19
19
|
open: {
|
|
20
20
|
true: {
|
|
21
|
-
borderColor: string
|
|
21
|
+
borderColor: `var(--${string})`;
|
|
22
22
|
};
|
|
23
23
|
false: {};
|
|
24
24
|
};
|
|
@@ -49,7 +49,7 @@ export declare const panel: string;
|
|
|
49
49
|
export declare const option: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
50
50
|
selected: {
|
|
51
51
|
true: {
|
|
52
|
-
color: string
|
|
52
|
+
color: `var(--${string})`;
|
|
53
53
|
backgroundColor: "rgba(33, 81, 236, 0.12)";
|
|
54
54
|
};
|
|
55
55
|
false: {};
|
|
@@ -68,9 +68,9 @@ export declare const optionDescription: string;
|
|
|
68
68
|
export declare const checkbox: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
69
69
|
checked: {
|
|
70
70
|
true: {
|
|
71
|
-
backgroundColor: string
|
|
72
|
-
borderColor: string
|
|
73
|
-
color: string
|
|
71
|
+
backgroundColor: `var(--${string})`;
|
|
72
|
+
borderColor: `var(--${string})`;
|
|
73
|
+
color: `var(--${string})`;
|
|
74
74
|
};
|
|
75
75
|
false: {};
|
|
76
76
|
};
|
|
@@ -31,7 +31,7 @@ export declare const thumbnailFilename: string;
|
|
|
31
31
|
export declare const fileItem: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
32
32
|
active: {
|
|
33
33
|
true: {
|
|
34
|
-
borderColor: string
|
|
34
|
+
borderColor: `var(--${string})`;
|
|
35
35
|
backgroundColor: "rgba(33, 81, 236, 0.12)";
|
|
36
36
|
};
|
|
37
37
|
false: {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
export type IconComponentProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const iconRegistry: {
|
|
6
|
+
readonly info: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
readonly confirm: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
readonly saveTemporarily: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
readonly secret: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
readonly close: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
import { iconRegistry } from './registry';
|
|
3
|
+
export declare const iconSizes: readonly ["sm", "md"];
|
|
4
|
+
export type IconName = keyof typeof iconRegistry;
|
|
5
|
+
export type IconSize = (typeof iconSizes)[number];
|
|
6
|
+
export type IconProps = SVGProps<SVGSVGElement> & {
|
|
7
|
+
name: IconName;
|
|
8
|
+
size?: IconSize;
|
|
9
|
+
title?: string;
|
|
10
|
+
};
|
|
@@ -10,22 +10,22 @@ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
10
10
|
export declare const item: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
11
11
|
variant: {
|
|
12
12
|
fill: {
|
|
13
|
-
backgroundColor: string
|
|
14
|
-
color: string
|
|
13
|
+
backgroundColor: `var(--${string})`;
|
|
14
|
+
color: `var(--${string})`;
|
|
15
15
|
borderRight: "1px solid rgba(0, 0, 0, 0.12)";
|
|
16
16
|
selectors: {
|
|
17
17
|
"&:last-child": {
|
|
18
18
|
borderRight: "none";
|
|
19
19
|
};
|
|
20
20
|
"&:hover:not([data-active='true'])": {
|
|
21
|
-
backgroundColor: string
|
|
21
|
+
backgroundColor: `var(--${string})`;
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
outline: {
|
|
26
26
|
backgroundColor: "transparent";
|
|
27
|
-
color: string
|
|
28
|
-
border: `1px solid
|
|
27
|
+
color: `var(--${string})`;
|
|
28
|
+
border: `1px solid var(--${string})`;
|
|
29
29
|
marginLeft: number;
|
|
30
30
|
borderRadius: number;
|
|
31
31
|
selectors: {
|
|
@@ -23,23 +23,23 @@ export declare const inputWrapper: import('@vanilla-extract/recipes').RuntimeFn<
|
|
|
23
23
|
default: {
|
|
24
24
|
selectors: {
|
|
25
25
|
"&:focus-within": {
|
|
26
|
-
borderColor: string
|
|
26
|
+
borderColor: `var(--${string})`;
|
|
27
27
|
boxShadow: `var(--${string})`;
|
|
28
28
|
};
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
active: {
|
|
32
|
-
borderColor: string
|
|
32
|
+
borderColor: `var(--${string})`;
|
|
33
33
|
boxShadow: `var(--${string})`;
|
|
34
34
|
};
|
|
35
35
|
success: {
|
|
36
|
-
borderColor:
|
|
36
|
+
borderColor: string;
|
|
37
37
|
};
|
|
38
38
|
warning: {
|
|
39
|
-
borderColor: string
|
|
39
|
+
borderColor: `var(--${string})`;
|
|
40
40
|
};
|
|
41
41
|
disabled: {
|
|
42
|
-
backgroundColor: string
|
|
42
|
+
backgroundColor: `var(--${string})`;
|
|
43
43
|
cursor: "not-allowed";
|
|
44
44
|
pointerEvents: "none";
|
|
45
45
|
};
|
|
@@ -67,10 +67,10 @@ export declare const suffixDivider: string;
|
|
|
67
67
|
export declare const helper: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
68
68
|
state: {
|
|
69
69
|
default: {
|
|
70
|
-
color: string
|
|
70
|
+
color: `var(--${string})`;
|
|
71
71
|
};
|
|
72
72
|
active: {
|
|
73
|
-
color: string
|
|
73
|
+
color: `var(--${string})`;
|
|
74
74
|
};
|
|
75
75
|
success: {
|
|
76
76
|
color: "#1bc47d";
|
|
@@ -79,14 +79,14 @@ export declare const helper: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
79
79
|
color: "#ea5455";
|
|
80
80
|
};
|
|
81
81
|
disabled: {
|
|
82
|
-
color: string
|
|
82
|
+
color: `var(--${string})`;
|
|
83
83
|
};
|
|
84
84
|
};
|
|
85
85
|
}>;
|
|
86
86
|
export declare const multiWrapper: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
87
87
|
disabled: {
|
|
88
88
|
true: {
|
|
89
|
-
backgroundColor: string
|
|
89
|
+
backgroundColor: `var(--${string})`;
|
|
90
90
|
cursor: "not-allowed";
|
|
91
91
|
pointerEvents: "none";
|
|
92
92
|
};
|
|
@@ -7,8 +7,8 @@ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
7
7
|
export declare const item: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
8
8
|
active: {
|
|
9
9
|
true: {
|
|
10
|
-
backgroundColor: string
|
|
11
|
-
color: string
|
|
10
|
+
backgroundColor: `var(--${string})`;
|
|
11
|
+
color: `var(--${string})`;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
danger: {
|
|
@@ -2,13 +2,13 @@ export declare const root: string;
|
|
|
2
2
|
export declare const tab: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
3
3
|
active: {
|
|
4
4
|
true: {
|
|
5
|
-
backgroundColor: string
|
|
6
|
-
border: `1px solid
|
|
7
|
-
color: string
|
|
5
|
+
backgroundColor: `var(--${string})`;
|
|
6
|
+
border: `1px solid var(--${string})`;
|
|
7
|
+
color: `var(--${string})`;
|
|
8
8
|
selectors: {
|
|
9
9
|
"&:hover:not(:disabled)": {
|
|
10
|
-
color: string
|
|
11
|
-
borderColor: string
|
|
10
|
+
color: `var(--${string})`;
|
|
11
|
+
borderColor: `var(--${string})`;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
};
|
|
@@ -4,13 +4,13 @@ export declare const numbersTrack: string;
|
|
|
4
4
|
export declare const pageButton: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
5
5
|
active: {
|
|
6
6
|
true: {
|
|
7
|
-
backgroundColor: string
|
|
8
|
-
color: string
|
|
7
|
+
backgroundColor: `var(--${string})`;
|
|
8
|
+
color: `var(--${string})`;
|
|
9
9
|
fontSize: `var(--${string})`;
|
|
10
10
|
fontWeight: `var(--${string})`;
|
|
11
11
|
selectors: {
|
|
12
12
|
"&:hover": {
|
|
13
|
-
backgroundColor: string
|
|
13
|
+
backgroundColor: `var(--${string})`;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
};
|
|
@@ -2,7 +2,7 @@ export declare const progressTrack: string;
|
|
|
2
2
|
export declare const progressBar: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
3
3
|
color: {
|
|
4
4
|
primary: {
|
|
5
|
-
backgroundColor: string
|
|
5
|
+
backgroundColor: `var(--${string})`;
|
|
6
6
|
};
|
|
7
7
|
success: {
|
|
8
8
|
backgroundColor: "#28c76f";
|
|
@@ -32,11 +32,11 @@ export declare const stepIcon: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
32
32
|
status: {
|
|
33
33
|
completed: {
|
|
34
34
|
backgroundColor: "rgba(33, 81, 236, 0.12)";
|
|
35
|
-
color: string
|
|
35
|
+
color: `var(--${string})`;
|
|
36
36
|
};
|
|
37
37
|
active: {
|
|
38
|
-
backgroundColor: string
|
|
39
|
-
color: string
|
|
38
|
+
backgroundColor: `var(--${string})`;
|
|
39
|
+
color: `var(--${string})`;
|
|
40
40
|
};
|
|
41
41
|
scheduled: {
|
|
42
42
|
backgroundColor: "rgba(158, 167, 184, 0.12)";
|
|
@@ -23,7 +23,7 @@ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
23
23
|
};
|
|
24
24
|
color: {
|
|
25
25
|
primary: {
|
|
26
|
-
borderColor: string
|
|
26
|
+
borderColor: `var(--${string})`;
|
|
27
27
|
borderTopColor: "transparent";
|
|
28
28
|
};
|
|
29
29
|
white: {
|
|
@@ -57,7 +57,7 @@ export declare const track: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
57
57
|
};
|
|
58
58
|
color: {
|
|
59
59
|
primary: {
|
|
60
|
-
borderColor: string
|
|
60
|
+
borderColor: `var(--${string})`;
|
|
61
61
|
};
|
|
62
62
|
white: {
|
|
63
63
|
borderColor: "rgba(255, 255, 255, 0.9)";
|
|
@@ -4,12 +4,12 @@ export declare const tabList: string;
|
|
|
4
4
|
export declare const tabItem: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
5
5
|
active: {
|
|
6
6
|
true: {
|
|
7
|
-
backgroundColor: string
|
|
8
|
-
color: string
|
|
7
|
+
backgroundColor: `var(--${string})`;
|
|
8
|
+
color: `var(--${string})`;
|
|
9
9
|
};
|
|
10
10
|
false: {
|
|
11
11
|
backgroundColor: "#3434341F";
|
|
12
|
-
color: string
|
|
12
|
+
color: `var(--${string})`;
|
|
13
13
|
selectors: {
|
|
14
14
|
"&:hover": {
|
|
15
15
|
backgroundColor: "#34343433";
|
|
@@ -31,12 +31,12 @@ export declare const tabItem: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
31
31
|
export declare const badge: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
32
32
|
active: {
|
|
33
33
|
true: {
|
|
34
|
-
backgroundColor: string
|
|
35
|
-
color: string
|
|
34
|
+
backgroundColor: `var(--${string})`;
|
|
35
|
+
color: `var(--${string})`;
|
|
36
36
|
};
|
|
37
37
|
false: {
|
|
38
38
|
backgroundColor: "rgba(0, 0, 0, 0.12)";
|
|
39
|
-
color: string
|
|
39
|
+
color: `var(--${string})`;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
size: {
|
|
@@ -12,7 +12,7 @@ export declare const top: string;
|
|
|
12
12
|
export declare const icon: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
13
13
|
intent: {
|
|
14
14
|
info: {
|
|
15
|
-
backgroundColor: string
|
|
15
|
+
backgroundColor: `var(--${string})`;
|
|
16
16
|
};
|
|
17
17
|
success: {
|
|
18
18
|
backgroundColor: "#28c76f";
|
|
@@ -34,7 +34,7 @@ export declare const progressTrack: string;
|
|
|
34
34
|
export declare const progressFill: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
35
35
|
intent: {
|
|
36
36
|
info: {
|
|
37
|
-
backgroundColor: string
|
|
37
|
+
backgroundColor: `var(--${string})`;
|
|
38
38
|
};
|
|
39
39
|
success: {
|
|
40
40
|
backgroundColor: "#28c76f";
|
|
@@ -51,7 +51,7 @@ export declare const countdownTrack: string;
|
|
|
51
51
|
export declare const countdownFill: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
52
52
|
intent: {
|
|
53
53
|
info: {
|
|
54
|
-
backgroundColor: string
|
|
54
|
+
backgroundColor: `var(--${string})`;
|
|
55
55
|
};
|
|
56
56
|
success: {
|
|
57
57
|
backgroundColor: "#28c76f";
|
|
@@ -70,7 +70,7 @@ export declare const levelBadge: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
70
70
|
color: {
|
|
71
71
|
primary: {
|
|
72
72
|
backgroundColor: "rgba(33, 81, 236, 0.12)";
|
|
73
|
-
color: string
|
|
73
|
+
color: `var(--${string})`;
|
|
74
74
|
};
|
|
75
75
|
secondary: {
|
|
76
76
|
backgroundColor: "rgba(130, 134, 139, 0.12)";
|
|
@@ -83,11 +83,11 @@ export declare const textZone: string;
|
|
|
83
83
|
export declare const textSegment: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
84
84
|
type: {
|
|
85
85
|
code: {
|
|
86
|
-
color: string
|
|
86
|
+
color: `var(--${string})`;
|
|
87
87
|
fontWeight: `var(--${string})`;
|
|
88
88
|
};
|
|
89
89
|
title: {
|
|
90
|
-
color: string
|
|
90
|
+
color: `var(--${string})`;
|
|
91
91
|
fontWeight: `var(--${string})`;
|
|
92
92
|
flex: number;
|
|
93
93
|
minWidth: number;
|
|
@@ -21,10 +21,10 @@ export declare const statLabel: string;
|
|
|
21
21
|
export declare const statValue: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
22
22
|
color: {
|
|
23
23
|
primary: {
|
|
24
|
-
color: string
|
|
24
|
+
color: `var(--${string})`;
|
|
25
25
|
};
|
|
26
26
|
heading: {
|
|
27
|
-
color: string
|
|
27
|
+
color: `var(--${string})`;
|
|
28
28
|
};
|
|
29
29
|
success: {
|
|
30
30
|
color: "#1bc47d";
|