@reitwagen/design-components 0.0.6 → 0.0.8
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.map +1 -1
- package/dist/components/Button/Button.js +26 -26
- package/dist/components/Icons/Icon.stories.js +1 -1
- package/dist/index.css +343 -377
- package/dist/stories/Typography/Typography.js +24 -24
- package/dist/stories/Typography/Typography.stories.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACxD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAGlE,QAAA,MAAM,cAAc;;;;;;
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACxD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAGlE,QAAA,MAAM,cAAc;;;;;;8EAuInB,CAAC;AAEF,UAAU,WACR,SAAQ,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,UAAU,GAAG,OAAO,CAAC,EACzE,YAAY,CAAC,OAAO,cAAc,CAAC;IACrC,QAAQ,EAAE,SAAS,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,YAAY,CAAC,EAAE,SAAS,CAAC;CAC1B;AAED,wBAAgB,MAAM,CAAC,EACrB,SAAS,EACT,OAAO,EACP,KAAK,EACL,IAAI,EACJ,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,IAAY,EACZ,GAAG,KAAK,EACT,EAAE,WAAW,2CAqBb;yBAhCe,MAAM"}
|
|
@@ -5,12 +5,12 @@ exports.Button = Button;
|
|
|
5
5
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
6
6
|
const class_variance_authority_1 = require("class-variance-authority");
|
|
7
7
|
const style_1 = require("../../utils/style");
|
|
8
|
-
const buttonVariants = (0, class_variance_authority_1.cva)("flex items-center justify-center gap-1.5 select-none", {
|
|
8
|
+
const buttonVariants = (0, class_variance_authority_1.cva)("ui:flex ui:items-center ui:justify-center ui:gap-1.5 ui:select-none", {
|
|
9
9
|
variants: {
|
|
10
10
|
variant: {
|
|
11
|
-
solid: "transition-colors duration-150",
|
|
12
|
-
outlined: "transition-colors duration-150",
|
|
13
|
-
text: "transition-colors duration-150",
|
|
11
|
+
solid: "ui:transition-colors ui:duration-150",
|
|
12
|
+
outlined: "ui:transition-colors ui:duration-150",
|
|
13
|
+
text: "ui:transition-colors ui:duration-150",
|
|
14
14
|
},
|
|
15
15
|
color: {
|
|
16
16
|
primary: "",
|
|
@@ -19,16 +19,16 @@ const buttonVariants = (0, class_variance_authority_1.cva)("flex items-center ju
|
|
|
19
19
|
sky: "",
|
|
20
20
|
},
|
|
21
21
|
size: {
|
|
22
|
-
large: "text-button1 rounded-[14px] min-h-[52px] px-[24px] py-[14px]",
|
|
23
|
-
medium: "
|
|
24
|
-
small: "text-button3 rounded-[10px] min-h-[34px] px-[14px] py-[8px]",
|
|
22
|
+
large: "ui:text-button1 ui:rounded-[14px] ui:min-h-[52px] ui:px-[24px] ui:py-[14px]",
|
|
23
|
+
medium: "tui:ext-button2 ui:rounded-[12px] ui:min-h-[40px] ui:px-[20px] ui:py-[10px]",
|
|
24
|
+
small: "ui:text-button3 ui:rounded-[10px] ui:min-h-[34px] ui:px-[14px] ui:py-[8px]",
|
|
25
25
|
},
|
|
26
26
|
disabled: {
|
|
27
|
-
false: "cursor-pointer",
|
|
28
|
-
true: "pointer-events-none",
|
|
27
|
+
false: "ui:cursor-pointer",
|
|
28
|
+
true: "ui:pointer-events-none",
|
|
29
29
|
},
|
|
30
30
|
full: {
|
|
31
|
-
true: "flex-1",
|
|
31
|
+
true: "ui:flex-1",
|
|
32
32
|
false: "",
|
|
33
33
|
},
|
|
34
34
|
},
|
|
@@ -36,90 +36,90 @@ const buttonVariants = (0, class_variance_authority_1.cva)("flex items-center ju
|
|
|
36
36
|
{
|
|
37
37
|
variant: "solid",
|
|
38
38
|
color: "primary",
|
|
39
|
-
className: "bg-blue-600 text-white active:bg-blue-800",
|
|
39
|
+
className: "ui:bg-blue-600 ui:text-white ui:active:bg-blue-800",
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
variant: "solid",
|
|
43
43
|
color: "primary",
|
|
44
44
|
disabled: true,
|
|
45
|
-
className: "bg-blue-300",
|
|
45
|
+
className: "ui:bg-blue-300",
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
variant: "solid",
|
|
49
49
|
color: "black",
|
|
50
|
-
className: "bg-gray-800 text-white active:bg-gray-900 active:text-gray-200",
|
|
50
|
+
className: "ui:bg-gray-800 ui:text-white ui:active:bg-gray-900 ui:active:text-gray-200",
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
variant: "solid",
|
|
54
54
|
color: "black",
|
|
55
55
|
disabled: true,
|
|
56
|
-
className: "bg-gray-400",
|
|
56
|
+
className: "ui:bg-gray-400",
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
variant: "solid",
|
|
60
60
|
color: "gray",
|
|
61
|
-
className: "bg-gray-100 text-gray-600 active:bg-gray-200 active:text-gray-800",
|
|
61
|
+
className: "ui:bg-gray-100 ui:text-gray-600 ui:active:bg-gray-200 ui:active:text-gray-800",
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
variant: "solid",
|
|
65
65
|
color: "gray",
|
|
66
66
|
disabled: true,
|
|
67
|
-
className: "text-gray-300",
|
|
67
|
+
className: "ui:text-gray-300",
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
variant: "solid",
|
|
71
71
|
color: "sky",
|
|
72
|
-
className: "bg-blue-50 text-blue-700 active:bg-blue-100 active:text-blue-800",
|
|
72
|
+
className: "ui:bg-blue-50 ui:text-blue-700 ui:active:bg-blue-100 ui:active:text-blue-800",
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
variant: "solid",
|
|
76
76
|
color: "sky",
|
|
77
77
|
disabled: true,
|
|
78
|
-
className: "text-blue-300",
|
|
78
|
+
className: "ui:text-blue-300",
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
variant: "outlined",
|
|
82
82
|
color: "primary",
|
|
83
|
-
className: "border border-blue-700 text-blue-700 active:bg-gray-100 active:text-blue-800",
|
|
83
|
+
className: "ui:border ui:border-blue-700 ui:text-blue-700 ui:active:bg-gray-100 ui:active:text-blue-800",
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
variant: "outlined",
|
|
87
87
|
color: "primary",
|
|
88
88
|
disabled: true,
|
|
89
|
-
className: "border border-blue-300 text-blue-300",
|
|
89
|
+
className: "ui:border ui:border-blue-300 ui:text-blue-300",
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
variant: "outlined",
|
|
93
93
|
color: "black",
|
|
94
|
-
className: "border border-gray-200 text-gray-700 active:bg-gray-100 active:text-gray-500",
|
|
94
|
+
className: "ui:border ui:border-gray-200 ui:text-gray-700 ui:active:bg-gray-100 ui:active:text-gray-500",
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
variant: "outlined",
|
|
98
98
|
color: "black",
|
|
99
99
|
disabled: true,
|
|
100
|
-
className: "border border-gray-100 text-gray-300",
|
|
100
|
+
className: "ui:border ui:border-gray-100 ui:text-gray-300",
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
103
|
variant: "text",
|
|
104
104
|
color: "primary",
|
|
105
|
-
className: "text-blue-700 active:bg-blue-50 active:text-blue-800",
|
|
105
|
+
className: "ui:text-blue-700 ui:active:bg-blue-50 ui:active:text-blue-800",
|
|
106
106
|
},
|
|
107
107
|
{
|
|
108
108
|
variant: "text",
|
|
109
109
|
color: "primary",
|
|
110
110
|
disabled: true,
|
|
111
|
-
className: "text-blue-300",
|
|
111
|
+
className: "ui:text-blue-300",
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
114
|
variant: "text",
|
|
115
115
|
color: "black",
|
|
116
|
-
className: "text-gray-600 active:bg-gray-100 active:text-gray-700",
|
|
116
|
+
className: "ui:text-gray-600 ui:active:bg-gray-100 ui:active:text-gray-700",
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
119
|
variant: "text",
|
|
120
120
|
color: "black",
|
|
121
121
|
disabled: true,
|
|
122
|
-
className: "text-gray-300",
|
|
122
|
+
className: "ui:text-gray-300",
|
|
123
123
|
},
|
|
124
124
|
],
|
|
125
125
|
defaultVariants: {
|
|
@@ -177,7 +177,7 @@ const Icon = ({ width = 24, height = 24, fill = "#04041B", }) => {
|
|
|
177
177
|
height,
|
|
178
178
|
fill,
|
|
179
179
|
};
|
|
180
|
-
return ((0, jsx_runtime_1.jsx)("div", { className: "flex flex-wrap gap-5", children: Object.entries(iconSet).map(([iconName, IconComponent]) => ((0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col items-center min-w-[200px]", children: [(0, jsx_runtime_1.jsx)("div", { children: iconName }), (0, jsx_runtime_1.jsx)(IconComponent, { ...commonProps })] }, iconName))) }));
|
|
180
|
+
return ((0, jsx_runtime_1.jsx)("div", { className: "ui:flex ui:flex-wrap ui:gap-5", children: Object.entries(iconSet).map(([iconName, IconComponent]) => ((0, jsx_runtime_1.jsxs)("div", { className: "ui:flex ui:flex-col ui:items-center ui:min-w-[200px]", children: [(0, jsx_runtime_1.jsx)("div", { children: iconName }), (0, jsx_runtime_1.jsx)(IconComponent, { ...commonProps })] }, iconName))) }));
|
|
181
181
|
};
|
|
182
182
|
exports.Icon = Icon;
|
|
183
183
|
const meta = {
|
package/dist/index.css
CHANGED
|
@@ -3,116 +3,116 @@
|
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
5
5
|
:root, :host {
|
|
6
|
-
--font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
|
|
6
|
+
--ui-font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
|
|
7
7
|
system-ui, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
|
|
8
8
|
"Noto Sans KR", "Malgun Gothic", sans-serif;
|
|
9
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
|
+
--ui-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
10
10
|
"Courier New", monospace;
|
|
11
|
-
--color-blue-50: #eef6ff;
|
|
12
|
-
--color-blue-100: #cfe6ff;
|
|
13
|
-
--color-blue-300: #a0cbff;
|
|
14
|
-
--color-blue-600: #4878ff;
|
|
15
|
-
--color-blue-700: #3052fd;
|
|
16
|
-
--color-blue-800: #0e2dc6;
|
|
17
|
-
--color-gray-100: #ededf0;
|
|
18
|
-
--color-gray-200: #dedee4;
|
|
19
|
-
--color-gray-300: #bcbcc4;
|
|
20
|
-
--color-gray-400: #9d9da8;
|
|
21
|
-
--color-gray-500: #777783;
|
|
22
|
-
--color-gray-600: #575763;
|
|
23
|
-
--color-gray-700: #3c3c4a;
|
|
24
|
-
--color-gray-800: #222233;
|
|
25
|
-
--color-gray-900: #04041b;
|
|
26
|
-
--color-white: #ffffff;
|
|
27
|
-
--spacing: 0.25rem;
|
|
28
|
-
--default-transition-duration: 150ms;
|
|
29
|
-
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
30
|
-
--default-font-family: var(--font-sans);
|
|
31
|
-
--default-mono-font-family: var(--font-mono);
|
|
32
|
-
--text-heading1: 24px;
|
|
33
|
-
--text-heading1--font-weight: 600;
|
|
34
|
-
--text-heading1--line-height: 1.4;
|
|
35
|
-
--text-heading1--letter-spacing: -2%;
|
|
36
|
-
--text-heading2: 22px;
|
|
37
|
-
--text-heading2--font-weight: 700;
|
|
38
|
-
--text-heading2--line-height: 1.4;
|
|
39
|
-
--text-heading2--letter-spacing: -2%;
|
|
40
|
-
--text-heading3: 20px;
|
|
41
|
-
--text-heading3--font-weight: 700;
|
|
42
|
-
--text-heading3--line-height: 1.4;
|
|
43
|
-
--text-heading3--letter-spacing: -2%;
|
|
44
|
-
--text-heading4: 18px;
|
|
45
|
-
--text-heading4--font-weight: 700;
|
|
46
|
-
--text-heading4--line-height: 1.4;
|
|
47
|
-
--text-heading4--letter-spacing: -2%;
|
|
48
|
-
--text-heading5: 16px;
|
|
49
|
-
--text-heading5--font-weight: 700;
|
|
50
|
-
--text-heading5--line-height: 1.4;
|
|
51
|
-
--text-heading5--letter-spacing: -2%;
|
|
52
|
-
--text-subtitle1: 16px;
|
|
53
|
-
--text-subtitle1--font-weight: 600;
|
|
54
|
-
--text-subtitle1--line-height: 1.48;
|
|
55
|
-
--text-subtitle1--letter-spacing: -2%;
|
|
56
|
-
--text-subtitle2: 14px;
|
|
57
|
-
--text-subtitle2--font-weight: 600;
|
|
58
|
-
--text-subtitle2--line-height: 1.48;
|
|
59
|
-
--text-subtitle2--letter-spacing: -2%;
|
|
60
|
-
--text-body1: 18px;
|
|
61
|
-
--text-body1--font-weight: 500;
|
|
62
|
-
--text-body1--line-height: 1.48;
|
|
63
|
-
--text-body1--letter-spacing: -4%;
|
|
64
|
-
--text-body2: 18px;
|
|
65
|
-
--text-body2--font-weight: 400;
|
|
66
|
-
--text-body2--line-height: 1.48;
|
|
67
|
-
--text-body2--letter-spacing: -4%;
|
|
68
|
-
--text-body3: 16px;
|
|
69
|
-
--text-body3--font-weight: 500;
|
|
70
|
-
--text-body3--line-height: 1.48;
|
|
71
|
-
--text-body3--letter-spacing: -4%;
|
|
72
|
-
--text-body4: 16px;
|
|
73
|
-
--text-body4--font-weight: 400;
|
|
74
|
-
--text-body4--line-height: 1.48;
|
|
75
|
-
--text-body4--letter-spacing: -4%;
|
|
76
|
-
--text-body5: 14px;
|
|
77
|
-
--text-body5--font-weight: 500;
|
|
78
|
-
--text-body5--line-height: 1.48;
|
|
79
|
-
--text-body5--letter-spacing: -4%;
|
|
80
|
-
--text-body6: 14px;
|
|
81
|
-
--text-body6--font-weight: 400;
|
|
82
|
-
--text-body6--line-height: 1.48;
|
|
83
|
-
--text-body6--letter-spacing: -4%;
|
|
84
|
-
--text-body7: 12px;
|
|
85
|
-
--text-body7--font-weight: 500;
|
|
86
|
-
--text-body7--line-height: 1.48;
|
|
87
|
-
--text-body7--letter-spacing: -4%;
|
|
88
|
-
--text-body8: 12px;
|
|
89
|
-
--text-body8--font-weight: 400;
|
|
90
|
-
--text-body8--line-height: 1.48;
|
|
91
|
-
--text-body8--letter-spacing: -4%;
|
|
92
|
-
--text-button1: 16px;
|
|
93
|
-
--text-button1--font-weight: 600;
|
|
94
|
-
--text-button1--line-height: 1.4;
|
|
95
|
-
--text-button1--letter-spacing: -2%;
|
|
96
|
-
--text-button2: 14px;
|
|
97
|
-
--text-button2--font-weight: 600;
|
|
98
|
-
--text-button2--line-height: 1.4;
|
|
99
|
-
--text-button2--letter-spacing: -2%;
|
|
100
|
-
--text-button3: 12px;
|
|
101
|
-
--text-button3--font-weight: 600;
|
|
102
|
-
--text-button3--line-height: 1.4;
|
|
103
|
-
--text-button3--letter-spacing: -2%;
|
|
104
|
-
--text-caption1: 12px;
|
|
105
|
-
--text-caption1--font-weight: 400;
|
|
106
|
-
--text-caption1--line-height: 1.45;
|
|
107
|
-
--text-caption1--letter-spacing: -2%;
|
|
108
|
-
--text-caption2: 10px;
|
|
109
|
-
--text-caption2--font-weight: 400;
|
|
110
|
-
--text-caption2--line-height: 1.45;
|
|
111
|
-
--text-caption2--letter-spacing: -2%;
|
|
112
|
-
--text-caption3: 10px;
|
|
113
|
-
--text-caption3--font-weight: 500;
|
|
114
|
-
--text-caption3--line-height: 1.45;
|
|
115
|
-
--text-caption3--letter-spacing: -2%;
|
|
11
|
+
--ui-color-blue-50: #eef6ff;
|
|
12
|
+
--ui-color-blue-100: #cfe6ff;
|
|
13
|
+
--ui-color-blue-300: #a0cbff;
|
|
14
|
+
--ui-color-blue-600: #4878ff;
|
|
15
|
+
--ui-color-blue-700: #3052fd;
|
|
16
|
+
--ui-color-blue-800: #0e2dc6;
|
|
17
|
+
--ui-color-gray-100: #ededf0;
|
|
18
|
+
--ui-color-gray-200: #dedee4;
|
|
19
|
+
--ui-color-gray-300: #bcbcc4;
|
|
20
|
+
--ui-color-gray-400: #9d9da8;
|
|
21
|
+
--ui-color-gray-500: #777783;
|
|
22
|
+
--ui-color-gray-600: #575763;
|
|
23
|
+
--ui-color-gray-700: #3c3c4a;
|
|
24
|
+
--ui-color-gray-800: #222233;
|
|
25
|
+
--ui-color-gray-900: #04041b;
|
|
26
|
+
--ui-color-white: #ffffff;
|
|
27
|
+
--ui-spacing: 0.25rem;
|
|
28
|
+
--ui-default-transition-duration: 150ms;
|
|
29
|
+
--ui-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
30
|
+
--ui-default-font-family: var(--ui-font-sans);
|
|
31
|
+
--ui-default-mono-font-family: var(--ui-font-mono);
|
|
32
|
+
--ui-text-heading1: 24px;
|
|
33
|
+
--ui-text-heading1--font-weight: 600;
|
|
34
|
+
--ui-text-heading1--line-height: 1.4;
|
|
35
|
+
--ui-text-heading1--letter-spacing: -2%;
|
|
36
|
+
--ui-text-heading2: 22px;
|
|
37
|
+
--ui-text-heading2--font-weight: 700;
|
|
38
|
+
--ui-text-heading2--line-height: 1.4;
|
|
39
|
+
--ui-text-heading2--letter-spacing: -2%;
|
|
40
|
+
--ui-text-heading3: 20px;
|
|
41
|
+
--ui-text-heading3--font-weight: 700;
|
|
42
|
+
--ui-text-heading3--line-height: 1.4;
|
|
43
|
+
--ui-text-heading3--letter-spacing: -2%;
|
|
44
|
+
--ui-text-heading4: 18px;
|
|
45
|
+
--ui-text-heading4--font-weight: 700;
|
|
46
|
+
--ui-text-heading4--line-height: 1.4;
|
|
47
|
+
--ui-text-heading4--letter-spacing: -2%;
|
|
48
|
+
--ui-text-heading5: 16px;
|
|
49
|
+
--ui-text-heading5--font-weight: 700;
|
|
50
|
+
--ui-text-heading5--line-height: 1.4;
|
|
51
|
+
--ui-text-heading5--letter-spacing: -2%;
|
|
52
|
+
--ui-text-subtitle1: 16px;
|
|
53
|
+
--ui-text-subtitle1--font-weight: 600;
|
|
54
|
+
--ui-text-subtitle1--line-height: 1.48;
|
|
55
|
+
--ui-text-subtitle1--letter-spacing: -2%;
|
|
56
|
+
--ui-text-subtitle2: 14px;
|
|
57
|
+
--ui-text-subtitle2--font-weight: 600;
|
|
58
|
+
--ui-text-subtitle2--line-height: 1.48;
|
|
59
|
+
--ui-text-subtitle2--letter-spacing: -2%;
|
|
60
|
+
--ui-text-body1: 18px;
|
|
61
|
+
--ui-text-body1--font-weight: 500;
|
|
62
|
+
--ui-text-body1--line-height: 1.48;
|
|
63
|
+
--ui-text-body1--letter-spacing: -4%;
|
|
64
|
+
--ui-text-body2: 18px;
|
|
65
|
+
--ui-text-body2--font-weight: 400;
|
|
66
|
+
--ui-text-body2--line-height: 1.48;
|
|
67
|
+
--ui-text-body2--letter-spacing: -4%;
|
|
68
|
+
--ui-text-body3: 16px;
|
|
69
|
+
--ui-text-body3--font-weight: 500;
|
|
70
|
+
--ui-text-body3--line-height: 1.48;
|
|
71
|
+
--ui-text-body3--letter-spacing: -4%;
|
|
72
|
+
--ui-text-body4: 16px;
|
|
73
|
+
--ui-text-body4--font-weight: 400;
|
|
74
|
+
--ui-text-body4--line-height: 1.48;
|
|
75
|
+
--ui-text-body4--letter-spacing: -4%;
|
|
76
|
+
--ui-text-body5: 14px;
|
|
77
|
+
--ui-text-body5--font-weight: 500;
|
|
78
|
+
--ui-text-body5--line-height: 1.48;
|
|
79
|
+
--ui-text-body5--letter-spacing: -4%;
|
|
80
|
+
--ui-text-body6: 14px;
|
|
81
|
+
--ui-text-body6--font-weight: 400;
|
|
82
|
+
--ui-text-body6--line-height: 1.48;
|
|
83
|
+
--ui-text-body6--letter-spacing: -4%;
|
|
84
|
+
--ui-text-body7: 12px;
|
|
85
|
+
--ui-text-body7--font-weight: 500;
|
|
86
|
+
--ui-text-body7--line-height: 1.48;
|
|
87
|
+
--ui-text-body7--letter-spacing: -4%;
|
|
88
|
+
--ui-text-body8: 12px;
|
|
89
|
+
--ui-text-body8--font-weight: 400;
|
|
90
|
+
--ui-text-body8--line-height: 1.48;
|
|
91
|
+
--ui-text-body8--letter-spacing: -4%;
|
|
92
|
+
--ui-text-button1: 16px;
|
|
93
|
+
--ui-text-button1--font-weight: 600;
|
|
94
|
+
--ui-text-button1--line-height: 1.4;
|
|
95
|
+
--ui-text-button1--letter-spacing: -2%;
|
|
96
|
+
--ui-text-button2: 14px;
|
|
97
|
+
--ui-text-button2--font-weight: 600;
|
|
98
|
+
--ui-text-button2--line-height: 1.4;
|
|
99
|
+
--ui-text-button2--letter-spacing: -2%;
|
|
100
|
+
--ui-text-button3: 12px;
|
|
101
|
+
--ui-text-button3--font-weight: 600;
|
|
102
|
+
--ui-text-button3--line-height: 1.4;
|
|
103
|
+
--ui-text-button3--letter-spacing: -2%;
|
|
104
|
+
--ui-text-caption1: 12px;
|
|
105
|
+
--ui-text-caption1--font-weight: 400;
|
|
106
|
+
--ui-text-caption1--line-height: 1.45;
|
|
107
|
+
--ui-text-caption1--letter-spacing: -2%;
|
|
108
|
+
--ui-text-caption2: 10px;
|
|
109
|
+
--ui-text-caption2--font-weight: 400;
|
|
110
|
+
--ui-text-caption2--line-height: 1.45;
|
|
111
|
+
--ui-text-caption2--letter-spacing: -2%;
|
|
112
|
+
--ui-text-caption3: 10px;
|
|
113
|
+
--ui-text-caption3--font-weight: 500;
|
|
114
|
+
--ui-text-caption3--line-height: 1.45;
|
|
115
|
+
--ui-text-caption3--letter-spacing: -2%;
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
@layer base {
|
|
@@ -126,9 +126,9 @@
|
|
|
126
126
|
line-height: 1.5;
|
|
127
127
|
-webkit-text-size-adjust: 100%;
|
|
128
128
|
tab-size: 4;
|
|
129
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
130
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
131
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
129
|
+
font-family: var(--ui-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
130
|
+
font-feature-settings: var(--ui-default-font-feature-settings, normal);
|
|
131
|
+
font-variation-settings: var(--ui-default-font-variation-settings, normal);
|
|
132
132
|
-webkit-tap-highlight-color: transparent;
|
|
133
133
|
}
|
|
134
134
|
hr {
|
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
font-weight: bolder;
|
|
154
154
|
}
|
|
155
155
|
code, kbd, samp, pre {
|
|
156
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
157
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
158
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
156
|
+
font-family: var(--ui-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
157
|
+
font-feature-settings: var(--ui-default-mono-font-feature-settings, normal);
|
|
158
|
+
font-variation-settings: var(--ui-default-mono-font-variation-settings, normal);
|
|
159
159
|
font-size: 1em;
|
|
160
160
|
}
|
|
161
161
|
small {
|
|
@@ -264,355 +264,346 @@
|
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
@layer utilities {
|
|
267
|
-
.pointer-events-none {
|
|
267
|
+
.ui\:pointer-events-none {
|
|
268
268
|
pointer-events: none;
|
|
269
269
|
}
|
|
270
|
-
.my-3 {
|
|
271
|
-
margin-block: calc(var(--spacing) * 3);
|
|
270
|
+
.ui\:my-3 {
|
|
271
|
+
margin-block: calc(var(--ui-spacing) * 3);
|
|
272
272
|
}
|
|
273
|
-
.flex {
|
|
273
|
+
.ui\:flex {
|
|
274
274
|
display: flex;
|
|
275
275
|
}
|
|
276
|
-
.grid {
|
|
276
|
+
.ui\:grid {
|
|
277
277
|
display: grid;
|
|
278
278
|
}
|
|
279
|
-
.
|
|
280
|
-
display: table;
|
|
281
|
-
}
|
|
282
|
-
.h-px {
|
|
279
|
+
.ui\:h-px {
|
|
283
280
|
height: 1px;
|
|
284
281
|
}
|
|
285
|
-
.min-h-\[34px\] {
|
|
282
|
+
.ui\:min-h-\[34px\] {
|
|
286
283
|
min-height: 34px;
|
|
287
284
|
}
|
|
288
|
-
.min-h-\[40px\] {
|
|
285
|
+
.ui\:min-h-\[40px\] {
|
|
289
286
|
min-height: 40px;
|
|
290
287
|
}
|
|
291
|
-
.min-h-\[52px\] {
|
|
288
|
+
.ui\:min-h-\[52px\] {
|
|
292
289
|
min-height: 52px;
|
|
293
290
|
}
|
|
294
|
-
.w-full {
|
|
291
|
+
.ui\:w-full {
|
|
295
292
|
width: 100%;
|
|
296
293
|
}
|
|
297
|
-
.min-w-\[200px\] {
|
|
294
|
+
.ui\:min-w-\[200px\] {
|
|
298
295
|
min-width: 200px;
|
|
299
296
|
}
|
|
300
|
-
.flex-1 {
|
|
297
|
+
.ui\:flex-1 {
|
|
301
298
|
flex: 1;
|
|
302
299
|
}
|
|
303
|
-
.
|
|
304
|
-
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
305
|
-
}
|
|
306
|
-
.animate-none {
|
|
307
|
-
animation: none;
|
|
308
|
-
}
|
|
309
|
-
.cursor-pointer {
|
|
300
|
+
.ui\:cursor-pointer {
|
|
310
301
|
cursor: pointer;
|
|
311
302
|
}
|
|
312
|
-
.grid-cols-6 {
|
|
303
|
+
.ui\:grid-cols-6 {
|
|
313
304
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
314
305
|
}
|
|
315
|
-
.flex-col {
|
|
306
|
+
.ui\:flex-col {
|
|
316
307
|
flex-direction: column;
|
|
317
308
|
}
|
|
318
|
-
.flex-wrap {
|
|
309
|
+
.ui\:flex-wrap {
|
|
319
310
|
flex-wrap: wrap;
|
|
320
311
|
}
|
|
321
|
-
.items-center {
|
|
312
|
+
.ui\:items-center {
|
|
322
313
|
align-items: center;
|
|
323
314
|
}
|
|
324
|
-
.justify-center {
|
|
315
|
+
.ui\:justify-center {
|
|
325
316
|
justify-content: center;
|
|
326
317
|
}
|
|
327
|
-
.gap-1\.5 {
|
|
328
|
-
gap: calc(var(--spacing) * 1.5);
|
|
318
|
+
.ui\:gap-1\.5 {
|
|
319
|
+
gap: calc(var(--ui-spacing) * 1.5);
|
|
329
320
|
}
|
|
330
|
-
.gap-4 {
|
|
331
|
-
gap: calc(var(--spacing) * 4);
|
|
321
|
+
.ui\:gap-4 {
|
|
322
|
+
gap: calc(var(--ui-spacing) * 4);
|
|
332
323
|
}
|
|
333
|
-
.gap-5 {
|
|
334
|
-
gap: calc(var(--spacing) * 5);
|
|
324
|
+
.ui\:gap-5 {
|
|
325
|
+
gap: calc(var(--ui-spacing) * 5);
|
|
335
326
|
}
|
|
336
|
-
.rounded-\[10px\] {
|
|
327
|
+
.ui\:rounded-\[10px\] {
|
|
337
328
|
border-radius: 10px;
|
|
338
329
|
}
|
|
339
|
-
.rounded-\[12px\] {
|
|
330
|
+
.ui\:rounded-\[12px\] {
|
|
340
331
|
border-radius: 12px;
|
|
341
332
|
}
|
|
342
|
-
.rounded-\[14px\] {
|
|
333
|
+
.ui\:rounded-\[14px\] {
|
|
343
334
|
border-radius: 14px;
|
|
344
335
|
}
|
|
345
|
-
.border {
|
|
336
|
+
.ui\:border {
|
|
346
337
|
border-style: var(--tw-border-style);
|
|
347
338
|
border-width: 1px;
|
|
348
339
|
}
|
|
349
|
-
.border-blue-300 {
|
|
350
|
-
border-color: var(--color-blue-300);
|
|
340
|
+
.ui\:border-blue-300 {
|
|
341
|
+
border-color: var(--ui-color-blue-300);
|
|
351
342
|
}
|
|
352
|
-
.border-blue-700 {
|
|
353
|
-
border-color: var(--color-blue-700);
|
|
343
|
+
.ui\:border-blue-700 {
|
|
344
|
+
border-color: var(--ui-color-blue-700);
|
|
354
345
|
}
|
|
355
|
-
.border-gray-100 {
|
|
356
|
-
border-color: var(--color-gray-100);
|
|
346
|
+
.ui\:border-gray-100 {
|
|
347
|
+
border-color: var(--ui-color-gray-100);
|
|
357
348
|
}
|
|
358
|
-
.border-gray-200 {
|
|
359
|
-
border-color: var(--color-gray-200);
|
|
349
|
+
.ui\:border-gray-200 {
|
|
350
|
+
border-color: var(--ui-color-gray-200);
|
|
360
351
|
}
|
|
361
|
-
.bg-blue-50 {
|
|
362
|
-
background-color: var(--color-blue-50);
|
|
352
|
+
.ui\:bg-blue-50 {
|
|
353
|
+
background-color: var(--ui-color-blue-50);
|
|
363
354
|
}
|
|
364
|
-
.bg-blue-300 {
|
|
365
|
-
background-color: var(--color-blue-300);
|
|
355
|
+
.ui\:bg-blue-300 {
|
|
356
|
+
background-color: var(--ui-color-blue-300);
|
|
366
357
|
}
|
|
367
|
-
.bg-blue-600 {
|
|
368
|
-
background-color: var(--color-blue-600);
|
|
358
|
+
.ui\:bg-blue-600 {
|
|
359
|
+
background-color: var(--ui-color-blue-600);
|
|
369
360
|
}
|
|
370
|
-
.bg-gray-100 {
|
|
371
|
-
background-color: var(--color-gray-100);
|
|
361
|
+
.ui\:bg-gray-100 {
|
|
362
|
+
background-color: var(--ui-color-gray-100);
|
|
372
363
|
}
|
|
373
|
-
.bg-gray-400 {
|
|
374
|
-
background-color: var(--color-gray-400);
|
|
364
|
+
.ui\:bg-gray-400 {
|
|
365
|
+
background-color: var(--ui-color-gray-400);
|
|
375
366
|
}
|
|
376
|
-
.bg-gray-800 {
|
|
377
|
-
background-color: var(--color-gray-800);
|
|
367
|
+
.ui\:bg-gray-800 {
|
|
368
|
+
background-color: var(--ui-color-gray-800);
|
|
378
369
|
}
|
|
379
|
-
.px-\[14px\] {
|
|
370
|
+
.ui\:px-\[14px\] {
|
|
380
371
|
padding-inline: 14px;
|
|
381
372
|
}
|
|
382
|
-
.px-\[20px\] {
|
|
373
|
+
.ui\:px-\[20px\] {
|
|
383
374
|
padding-inline: 20px;
|
|
384
375
|
}
|
|
385
|
-
.px-\[24px\] {
|
|
376
|
+
.ui\:px-\[24px\] {
|
|
386
377
|
padding-inline: 24px;
|
|
387
378
|
}
|
|
388
|
-
.py-1 {
|
|
389
|
-
padding-block: calc(var(--spacing) * 1);
|
|
379
|
+
.ui\:py-1 {
|
|
380
|
+
padding-block: calc(var(--ui-spacing) * 1);
|
|
390
381
|
}
|
|
391
|
-
.py-\[8px\] {
|
|
382
|
+
.ui\:py-\[8px\] {
|
|
392
383
|
padding-block: 8px;
|
|
393
384
|
}
|
|
394
|
-
.py-\[10px\] {
|
|
385
|
+
.ui\:py-\[10px\] {
|
|
395
386
|
padding-block: 10px;
|
|
396
387
|
}
|
|
397
|
-
.py-\[14px\] {
|
|
388
|
+
.ui\:py-\[14px\] {
|
|
398
389
|
padding-block: 14px;
|
|
399
390
|
}
|
|
400
|
-
.text-body1 {
|
|
401
|
-
font-size: var(--text-body1);
|
|
402
|
-
line-height: var(--tw-leading, var(--text-body1--line-height));
|
|
403
|
-
letter-spacing: var(--tw-tracking, var(--text-body1--letter-spacing));
|
|
404
|
-
font-weight: var(--tw-font-weight, var(--text-body1--font-weight));
|
|
405
|
-
}
|
|
406
|
-
.text-body2 {
|
|
407
|
-
font-size: var(--text-body2);
|
|
408
|
-
line-height: var(--tw-leading, var(--text-body2--line-height));
|
|
409
|
-
letter-spacing: var(--tw-tracking, var(--text-body2--letter-spacing));
|
|
410
|
-
font-weight: var(--tw-font-weight, var(--text-body2--font-weight));
|
|
411
|
-
}
|
|
412
|
-
.text-body3 {
|
|
413
|
-
font-size: var(--text-body3);
|
|
414
|
-
line-height: var(--tw-leading, var(--text-body3--line-height));
|
|
415
|
-
letter-spacing: var(--tw-tracking, var(--text-body3--letter-spacing));
|
|
416
|
-
font-weight: var(--tw-font-weight, var(--text-body3--font-weight));
|
|
417
|
-
}
|
|
418
|
-
.text-body4 {
|
|
419
|
-
font-size: var(--text-body4);
|
|
420
|
-
line-height: var(--tw-leading, var(--text-body4--line-height));
|
|
421
|
-
letter-spacing: var(--tw-tracking, var(--text-body4--letter-spacing));
|
|
422
|
-
font-weight: var(--tw-font-weight, var(--text-body4--font-weight));
|
|
423
|
-
}
|
|
424
|
-
.text-body5 {
|
|
425
|
-
font-size: var(--text-body5);
|
|
426
|
-
line-height: var(--tw-leading, var(--text-body5--line-height));
|
|
427
|
-
letter-spacing: var(--tw-tracking, var(--text-body5--letter-spacing));
|
|
428
|
-
font-weight: var(--tw-font-weight, var(--text-body5--font-weight));
|
|
429
|
-
}
|
|
430
|
-
.text-body6 {
|
|
431
|
-
font-size: var(--text-body6);
|
|
432
|
-
line-height: var(--tw-leading, var(--text-body6--line-height));
|
|
433
|
-
letter-spacing: var(--tw-tracking, var(--text-body6--letter-spacing));
|
|
434
|
-
font-weight: var(--tw-font-weight, var(--text-body6--font-weight));
|
|
435
|
-
}
|
|
436
|
-
.text-body7 {
|
|
437
|
-
font-size: var(--text-body7);
|
|
438
|
-
line-height: var(--tw-leading, var(--text-body7--line-height));
|
|
439
|
-
letter-spacing: var(--tw-tracking, var(--text-body7--letter-spacing));
|
|
440
|
-
font-weight: var(--tw-font-weight, var(--text-body7--font-weight));
|
|
441
|
-
}
|
|
442
|
-
.text-body8 {
|
|
443
|
-
font-size: var(--text-body8);
|
|
444
|
-
line-height: var(--tw-leading, var(--text-body8--line-height));
|
|
445
|
-
letter-spacing: var(--tw-tracking, var(--text-body8--letter-spacing));
|
|
446
|
-
font-weight: var(--tw-font-weight, var(--text-body8--font-weight));
|
|
447
|
-
}
|
|
448
|
-
.text-button1 {
|
|
449
|
-
font-size: var(--text-button1);
|
|
450
|
-
line-height: var(--tw-leading, var(--text-button1--line-height));
|
|
451
|
-
letter-spacing: var(--tw-tracking, var(--text-button1--letter-spacing));
|
|
452
|
-
font-weight: var(--tw-font-weight, var(--text-button1--font-weight));
|
|
453
|
-
}
|
|
454
|
-
.text-button2 {
|
|
455
|
-
font-size: var(--text-button2);
|
|
456
|
-
line-height: var(--tw-leading, var(--text-button2--line-height));
|
|
457
|
-
letter-spacing: var(--tw-tracking, var(--text-button2--letter-spacing));
|
|
458
|
-
font-weight: var(--tw-font-weight, var(--text-button2--font-weight));
|
|
459
|
-
}
|
|
460
|
-
.text-button3 {
|
|
461
|
-
font-size: var(--text-button3);
|
|
462
|
-
line-height: var(--tw-leading, var(--text-button3--line-height));
|
|
463
|
-
letter-spacing: var(--tw-tracking, var(--text-button3--letter-spacing));
|
|
464
|
-
font-weight: var(--tw-font-weight, var(--text-button3--font-weight));
|
|
465
|
-
}
|
|
466
|
-
.text-caption1 {
|
|
467
|
-
font-size: var(--text-caption1);
|
|
468
|
-
line-height: var(--tw-leading, var(--text-caption1--line-height));
|
|
469
|
-
letter-spacing: var(--tw-tracking, var(--text-caption1--letter-spacing));
|
|
470
|
-
font-weight: var(--tw-font-weight, var(--text-caption1--font-weight));
|
|
471
|
-
}
|
|
472
|
-
.text-caption2 {
|
|
473
|
-
font-size: var(--text-caption2);
|
|
474
|
-
line-height: var(--tw-leading, var(--text-caption2--line-height));
|
|
475
|
-
letter-spacing: var(--tw-tracking, var(--text-caption2--letter-spacing));
|
|
476
|
-
font-weight: var(--tw-font-weight, var(--text-caption2--font-weight));
|
|
477
|
-
}
|
|
478
|
-
.text-caption3 {
|
|
479
|
-
font-size: var(--text-caption3);
|
|
480
|
-
line-height: var(--tw-leading, var(--text-caption3--line-height));
|
|
481
|
-
letter-spacing: var(--tw-tracking, var(--text-caption3--letter-spacing));
|
|
482
|
-
font-weight: var(--tw-font-weight, var(--text-caption3--font-weight));
|
|
483
|
-
}
|
|
484
|
-
.text-heading1 {
|
|
485
|
-
font-size: var(--text-heading1);
|
|
486
|
-
line-height: var(--tw-leading, var(--text-heading1--line-height));
|
|
487
|
-
letter-spacing: var(--tw-tracking, var(--text-heading1--letter-spacing));
|
|
488
|
-
font-weight: var(--tw-font-weight, var(--text-heading1--font-weight));
|
|
489
|
-
}
|
|
490
|
-
.text-heading2 {
|
|
491
|
-
font-size: var(--text-heading2);
|
|
492
|
-
line-height: var(--tw-leading, var(--text-heading2--line-height));
|
|
493
|
-
letter-spacing: var(--tw-tracking, var(--text-heading2--letter-spacing));
|
|
494
|
-
font-weight: var(--tw-font-weight, var(--text-heading2--font-weight));
|
|
495
|
-
}
|
|
496
|
-
.text-heading3 {
|
|
497
|
-
font-size: var(--text-heading3);
|
|
498
|
-
line-height: var(--tw-leading, var(--text-heading3--line-height));
|
|
499
|
-
letter-spacing: var(--tw-tracking, var(--text-heading3--letter-spacing));
|
|
500
|
-
font-weight: var(--tw-font-weight, var(--text-heading3--font-weight));
|
|
501
|
-
}
|
|
502
|
-
.text-heading4 {
|
|
503
|
-
font-size: var(--text-heading4);
|
|
504
|
-
line-height: var(--tw-leading, var(--text-heading4--line-height));
|
|
505
|
-
letter-spacing: var(--tw-tracking, var(--text-heading4--letter-spacing));
|
|
506
|
-
font-weight: var(--tw-font-weight, var(--text-heading4--font-weight));
|
|
507
|
-
}
|
|
508
|
-
.text-heading5 {
|
|
509
|
-
font-size: var(--text-heading5);
|
|
510
|
-
line-height: var(--tw-leading, var(--text-heading5--line-height));
|
|
511
|
-
letter-spacing: var(--tw-tracking, var(--text-heading5--letter-spacing));
|
|
512
|
-
font-weight: var(--tw-font-weight, var(--text-heading5--font-weight));
|
|
513
|
-
}
|
|
514
|
-
.text-subtitle1 {
|
|
515
|
-
font-size: var(--text-subtitle1);
|
|
516
|
-
line-height: var(--tw-leading, var(--text-subtitle1--line-height));
|
|
517
|
-
letter-spacing: var(--tw-tracking, var(--text-subtitle1--letter-spacing));
|
|
518
|
-
font-weight: var(--tw-font-weight, var(--text-subtitle1--font-weight));
|
|
519
|
-
}
|
|
520
|
-
.text-subtitle2 {
|
|
521
|
-
font-size: var(--text-subtitle2);
|
|
522
|
-
line-height: var(--tw-leading, var(--text-subtitle2--line-height));
|
|
523
|
-
letter-spacing: var(--tw-tracking, var(--text-subtitle2--letter-spacing));
|
|
524
|
-
font-weight: var(--tw-font-weight, var(--text-subtitle2--font-weight));
|
|
525
|
-
}
|
|
526
|
-
.text-\[15px\] {
|
|
391
|
+
.ui\:text-body1 {
|
|
392
|
+
font-size: var(--ui-text-body1);
|
|
393
|
+
line-height: var(--tw-leading, var(--ui-text-body1--line-height));
|
|
394
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body1--letter-spacing));
|
|
395
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body1--font-weight));
|
|
396
|
+
}
|
|
397
|
+
.ui\:text-body2 {
|
|
398
|
+
font-size: var(--ui-text-body2);
|
|
399
|
+
line-height: var(--tw-leading, var(--ui-text-body2--line-height));
|
|
400
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body2--letter-spacing));
|
|
401
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body2--font-weight));
|
|
402
|
+
}
|
|
403
|
+
.ui\:text-body3 {
|
|
404
|
+
font-size: var(--ui-text-body3);
|
|
405
|
+
line-height: var(--tw-leading, var(--ui-text-body3--line-height));
|
|
406
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body3--letter-spacing));
|
|
407
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body3--font-weight));
|
|
408
|
+
}
|
|
409
|
+
.ui\:text-body4 {
|
|
410
|
+
font-size: var(--ui-text-body4);
|
|
411
|
+
line-height: var(--tw-leading, var(--ui-text-body4--line-height));
|
|
412
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body4--letter-spacing));
|
|
413
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body4--font-weight));
|
|
414
|
+
}
|
|
415
|
+
.ui\:text-body5 {
|
|
416
|
+
font-size: var(--ui-text-body5);
|
|
417
|
+
line-height: var(--tw-leading, var(--ui-text-body5--line-height));
|
|
418
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body5--letter-spacing));
|
|
419
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body5--font-weight));
|
|
420
|
+
}
|
|
421
|
+
.ui\:text-body6 {
|
|
422
|
+
font-size: var(--ui-text-body6);
|
|
423
|
+
line-height: var(--tw-leading, var(--ui-text-body6--line-height));
|
|
424
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body6--letter-spacing));
|
|
425
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body6--font-weight));
|
|
426
|
+
}
|
|
427
|
+
.ui\:text-body7 {
|
|
428
|
+
font-size: var(--ui-text-body7);
|
|
429
|
+
line-height: var(--tw-leading, var(--ui-text-body7--line-height));
|
|
430
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body7--letter-spacing));
|
|
431
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body7--font-weight));
|
|
432
|
+
}
|
|
433
|
+
.ui\:text-body8 {
|
|
434
|
+
font-size: var(--ui-text-body8);
|
|
435
|
+
line-height: var(--tw-leading, var(--ui-text-body8--line-height));
|
|
436
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-body8--letter-spacing));
|
|
437
|
+
font-weight: var(--tw-font-weight, var(--ui-text-body8--font-weight));
|
|
438
|
+
}
|
|
439
|
+
.ui\:text-button1 {
|
|
440
|
+
font-size: var(--ui-text-button1);
|
|
441
|
+
line-height: var(--tw-leading, var(--ui-text-button1--line-height));
|
|
442
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-button1--letter-spacing));
|
|
443
|
+
font-weight: var(--tw-font-weight, var(--ui-text-button1--font-weight));
|
|
444
|
+
}
|
|
445
|
+
.ui\:text-button2 {
|
|
446
|
+
font-size: var(--ui-text-button2);
|
|
447
|
+
line-height: var(--tw-leading, var(--ui-text-button2--line-height));
|
|
448
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-button2--letter-spacing));
|
|
449
|
+
font-weight: var(--tw-font-weight, var(--ui-text-button2--font-weight));
|
|
450
|
+
}
|
|
451
|
+
.ui\:text-button3 {
|
|
452
|
+
font-size: var(--ui-text-button3);
|
|
453
|
+
line-height: var(--tw-leading, var(--ui-text-button3--line-height));
|
|
454
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-button3--letter-spacing));
|
|
455
|
+
font-weight: var(--tw-font-weight, var(--ui-text-button3--font-weight));
|
|
456
|
+
}
|
|
457
|
+
.ui\:text-caption1 {
|
|
458
|
+
font-size: var(--ui-text-caption1);
|
|
459
|
+
line-height: var(--tw-leading, var(--ui-text-caption1--line-height));
|
|
460
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-caption1--letter-spacing));
|
|
461
|
+
font-weight: var(--tw-font-weight, var(--ui-text-caption1--font-weight));
|
|
462
|
+
}
|
|
463
|
+
.ui\:text-caption2 {
|
|
464
|
+
font-size: var(--ui-text-caption2);
|
|
465
|
+
line-height: var(--tw-leading, var(--ui-text-caption2--line-height));
|
|
466
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-caption2--letter-spacing));
|
|
467
|
+
font-weight: var(--tw-font-weight, var(--ui-text-caption2--font-weight));
|
|
468
|
+
}
|
|
469
|
+
.ui\:text-caption3 {
|
|
470
|
+
font-size: var(--ui-text-caption3);
|
|
471
|
+
line-height: var(--tw-leading, var(--ui-text-caption3--line-height));
|
|
472
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-caption3--letter-spacing));
|
|
473
|
+
font-weight: var(--tw-font-weight, var(--ui-text-caption3--font-weight));
|
|
474
|
+
}
|
|
475
|
+
.ui\:text-heading1 {
|
|
476
|
+
font-size: var(--ui-text-heading1);
|
|
477
|
+
line-height: var(--tw-leading, var(--ui-text-heading1--line-height));
|
|
478
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-heading1--letter-spacing));
|
|
479
|
+
font-weight: var(--tw-font-weight, var(--ui-text-heading1--font-weight));
|
|
480
|
+
}
|
|
481
|
+
.ui\:text-heading2 {
|
|
482
|
+
font-size: var(--ui-text-heading2);
|
|
483
|
+
line-height: var(--tw-leading, var(--ui-text-heading2--line-height));
|
|
484
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-heading2--letter-spacing));
|
|
485
|
+
font-weight: var(--tw-font-weight, var(--ui-text-heading2--font-weight));
|
|
486
|
+
}
|
|
487
|
+
.ui\:text-heading3 {
|
|
488
|
+
font-size: var(--ui-text-heading3);
|
|
489
|
+
line-height: var(--tw-leading, var(--ui-text-heading3--line-height));
|
|
490
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-heading3--letter-spacing));
|
|
491
|
+
font-weight: var(--tw-font-weight, var(--ui-text-heading3--font-weight));
|
|
492
|
+
}
|
|
493
|
+
.ui\:text-heading4 {
|
|
494
|
+
font-size: var(--ui-text-heading4);
|
|
495
|
+
line-height: var(--tw-leading, var(--ui-text-heading4--line-height));
|
|
496
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-heading4--letter-spacing));
|
|
497
|
+
font-weight: var(--tw-font-weight, var(--ui-text-heading4--font-weight));
|
|
498
|
+
}
|
|
499
|
+
.ui\:text-heading5 {
|
|
500
|
+
font-size: var(--ui-text-heading5);
|
|
501
|
+
line-height: var(--tw-leading, var(--ui-text-heading5--line-height));
|
|
502
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-heading5--letter-spacing));
|
|
503
|
+
font-weight: var(--tw-font-weight, var(--ui-text-heading5--font-weight));
|
|
504
|
+
}
|
|
505
|
+
.ui\:text-subtitle1 {
|
|
506
|
+
font-size: var(--ui-text-subtitle1);
|
|
507
|
+
line-height: var(--tw-leading, var(--ui-text-subtitle1--line-height));
|
|
508
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-subtitle1--letter-spacing));
|
|
509
|
+
font-weight: var(--tw-font-weight, var(--ui-text-subtitle1--font-weight));
|
|
510
|
+
}
|
|
511
|
+
.ui\:text-subtitle2 {
|
|
512
|
+
font-size: var(--ui-text-subtitle2);
|
|
513
|
+
line-height: var(--tw-leading, var(--ui-text-subtitle2--line-height));
|
|
514
|
+
letter-spacing: var(--tw-tracking, var(--ui-text-subtitle2--letter-spacing));
|
|
515
|
+
font-weight: var(--tw-font-weight, var(--ui-text-subtitle2--font-weight));
|
|
516
|
+
}
|
|
517
|
+
.ui\:text-\[15px\] {
|
|
527
518
|
font-size: 15px;
|
|
528
519
|
}
|
|
529
|
-
.text-blue-300 {
|
|
530
|
-
color: var(--color-blue-300);
|
|
520
|
+
.ui\:text-blue-300 {
|
|
521
|
+
color: var(--ui-color-blue-300);
|
|
531
522
|
}
|
|
532
|
-
.text-blue-700 {
|
|
533
|
-
color: var(--color-blue-700);
|
|
523
|
+
.ui\:text-blue-700 {
|
|
524
|
+
color: var(--ui-color-blue-700);
|
|
534
525
|
}
|
|
535
|
-
.text-gray-300 {
|
|
536
|
-
color: var(--color-gray-300);
|
|
526
|
+
.ui\:text-gray-300 {
|
|
527
|
+
color: var(--ui-color-gray-300);
|
|
537
528
|
}
|
|
538
|
-
.text-gray-500 {
|
|
539
|
-
color: var(--color-gray-500);
|
|
529
|
+
.ui\:text-gray-500 {
|
|
530
|
+
color: var(--ui-color-gray-500);
|
|
540
531
|
}
|
|
541
|
-
.text-gray-600 {
|
|
542
|
-
color: var(--color-gray-600);
|
|
532
|
+
.ui\:text-gray-600 {
|
|
533
|
+
color: var(--ui-color-gray-600);
|
|
543
534
|
}
|
|
544
|
-
.text-gray-700 {
|
|
545
|
-
color: var(--color-gray-700);
|
|
535
|
+
.ui\:text-gray-700 {
|
|
536
|
+
color: var(--ui-color-gray-700);
|
|
546
537
|
}
|
|
547
|
-
.text-white {
|
|
548
|
-
color: var(--color-white);
|
|
538
|
+
.ui\:text-white {
|
|
539
|
+
color: var(--ui-color-white);
|
|
549
540
|
}
|
|
550
|
-
.transition-colors {
|
|
541
|
+
.ui\:transition-colors {
|
|
551
542
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
552
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
553
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
543
|
+
transition-timing-function: var(--tw-ease, var(--ui-default-transition-timing-function));
|
|
544
|
+
transition-duration: var(--tw-duration, var(--ui-default-transition-duration));
|
|
554
545
|
}
|
|
555
|
-
.duration-150 {
|
|
546
|
+
.ui\:duration-150 {
|
|
556
547
|
--tw-duration: 150ms;
|
|
557
548
|
transition-duration: 150ms;
|
|
558
549
|
}
|
|
559
|
-
.select-none {
|
|
550
|
+
.ui\:select-none {
|
|
560
551
|
-webkit-user-select: none;
|
|
561
552
|
user-select: none;
|
|
562
553
|
}
|
|
563
|
-
.active\:bg-blue-50 {
|
|
554
|
+
.ui\:active\:bg-blue-50 {
|
|
564
555
|
&:active {
|
|
565
|
-
background-color: var(--color-blue-50);
|
|
556
|
+
background-color: var(--ui-color-blue-50);
|
|
566
557
|
}
|
|
567
558
|
}
|
|
568
|
-
.active\:bg-blue-100 {
|
|
559
|
+
.ui\:active\:bg-blue-100 {
|
|
569
560
|
&:active {
|
|
570
|
-
background-color: var(--color-blue-100);
|
|
561
|
+
background-color: var(--ui-color-blue-100);
|
|
571
562
|
}
|
|
572
563
|
}
|
|
573
|
-
.active\:bg-blue-800 {
|
|
564
|
+
.ui\:active\:bg-blue-800 {
|
|
574
565
|
&:active {
|
|
575
|
-
background-color: var(--color-blue-800);
|
|
566
|
+
background-color: var(--ui-color-blue-800);
|
|
576
567
|
}
|
|
577
568
|
}
|
|
578
|
-
.active\:bg-gray-100 {
|
|
569
|
+
.ui\:active\:bg-gray-100 {
|
|
579
570
|
&:active {
|
|
580
|
-
background-color: var(--color-gray-100);
|
|
571
|
+
background-color: var(--ui-color-gray-100);
|
|
581
572
|
}
|
|
582
573
|
}
|
|
583
|
-
.active\:bg-gray-200 {
|
|
574
|
+
.ui\:active\:bg-gray-200 {
|
|
584
575
|
&:active {
|
|
585
|
-
background-color: var(--color-gray-200);
|
|
576
|
+
background-color: var(--ui-color-gray-200);
|
|
586
577
|
}
|
|
587
578
|
}
|
|
588
|
-
.active\:bg-gray-900 {
|
|
579
|
+
.ui\:active\:bg-gray-900 {
|
|
589
580
|
&:active {
|
|
590
|
-
background-color: var(--color-gray-900);
|
|
581
|
+
background-color: var(--ui-color-gray-900);
|
|
591
582
|
}
|
|
592
583
|
}
|
|
593
|
-
.active\:text-blue-800 {
|
|
584
|
+
.ui\:active\:text-blue-800 {
|
|
594
585
|
&:active {
|
|
595
|
-
color: var(--color-blue-800);
|
|
586
|
+
color: var(--ui-color-blue-800);
|
|
596
587
|
}
|
|
597
588
|
}
|
|
598
|
-
.active\:text-gray-200 {
|
|
589
|
+
.ui\:active\:text-gray-200 {
|
|
599
590
|
&:active {
|
|
600
|
-
color: var(--color-gray-200);
|
|
591
|
+
color: var(--ui-color-gray-200);
|
|
601
592
|
}
|
|
602
593
|
}
|
|
603
|
-
.active\:text-gray-500 {
|
|
594
|
+
.ui\:active\:text-gray-500 {
|
|
604
595
|
&:active {
|
|
605
|
-
color: var(--color-gray-500);
|
|
596
|
+
color: var(--ui-color-gray-500);
|
|
606
597
|
}
|
|
607
598
|
}
|
|
608
|
-
.active\:text-gray-700 {
|
|
599
|
+
.ui\:active\:text-gray-700 {
|
|
609
600
|
&:active {
|
|
610
|
-
color: var(--color-gray-700);
|
|
601
|
+
color: var(--ui-color-gray-700);
|
|
611
602
|
}
|
|
612
603
|
}
|
|
613
|
-
.active\:text-gray-800 {
|
|
604
|
+
.ui\:active\:text-gray-800 {
|
|
614
605
|
&:active {
|
|
615
|
-
color: var(--color-gray-800);
|
|
606
|
+
color: var(--ui-color-gray-800);
|
|
616
607
|
}
|
|
617
608
|
}
|
|
618
609
|
}
|
|
@@ -629,9 +620,9 @@
|
|
|
629
620
|
line-height: 1.5;
|
|
630
621
|
-webkit-text-size-adjust: 100%;
|
|
631
622
|
tab-size: 4;
|
|
632
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
633
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
634
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
623
|
+
font-family: var(--ui-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
624
|
+
font-feature-settings: var(--ui-default-font-feature-settings, normal);
|
|
625
|
+
font-variation-settings: var(--ui-default-font-variation-settings, normal);
|
|
635
626
|
-webkit-tap-highlight-color: transparent;
|
|
636
627
|
}
|
|
637
628
|
hr {
|
|
@@ -656,9 +647,9 @@
|
|
|
656
647
|
font-weight: bolder;
|
|
657
648
|
}
|
|
658
649
|
code, kbd, samp, pre {
|
|
659
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
660
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
661
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
650
|
+
font-family: var(--ui-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
651
|
+
font-feature-settings: var(--ui-default-mono-font-feature-settings, normal);
|
|
652
|
+
font-variation-settings: var(--ui-default-mono-font-variation-settings, normal);
|
|
662
653
|
font-size: 1em;
|
|
663
654
|
}
|
|
664
655
|
small {
|
|
@@ -767,26 +758,6 @@
|
|
|
767
758
|
}
|
|
768
759
|
}
|
|
769
760
|
@layer utilities;
|
|
770
|
-
@property --tw-rotate-x {
|
|
771
|
-
syntax: "*";
|
|
772
|
-
inherits: false;
|
|
773
|
-
}
|
|
774
|
-
@property --tw-rotate-y {
|
|
775
|
-
syntax: "*";
|
|
776
|
-
inherits: false;
|
|
777
|
-
}
|
|
778
|
-
@property --tw-rotate-z {
|
|
779
|
-
syntax: "*";
|
|
780
|
-
inherits: false;
|
|
781
|
-
}
|
|
782
|
-
@property --tw-skew-x {
|
|
783
|
-
syntax: "*";
|
|
784
|
-
inherits: false;
|
|
785
|
-
}
|
|
786
|
-
@property --tw-skew-y {
|
|
787
|
-
syntax: "*";
|
|
788
|
-
inherits: false;
|
|
789
|
-
}
|
|
790
761
|
@property --tw-border-style {
|
|
791
762
|
syntax: "*";
|
|
792
763
|
inherits: false;
|
|
@@ -799,11 +770,6 @@
|
|
|
799
770
|
@layer properties {
|
|
800
771
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
801
772
|
*, ::before, ::after, ::backdrop {
|
|
802
|
-
--tw-rotate-x: initial;
|
|
803
|
-
--tw-rotate-y: initial;
|
|
804
|
-
--tw-rotate-z: initial;
|
|
805
|
-
--tw-skew-x: initial;
|
|
806
|
-
--tw-skew-y: initial;
|
|
807
773
|
--tw-border-style: solid;
|
|
808
774
|
--tw-duration: initial;
|
|
809
775
|
}
|
|
@@ -4,42 +4,42 @@ exports.Typography = Typography;
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const style_1 = require("../../utils/style");
|
|
6
6
|
const headings = {
|
|
7
|
-
"text-heading1": ["Heading1", 24, 1.4, "-2%", 600, "text-heading1"],
|
|
8
|
-
"text-heading2": ["Heading2", 22, 1.4, "-2%", 700, "text-heading2"],
|
|
9
|
-
"text-heading3": ["Heading3", 20, 1.4, "-2%", 700, "text-heading3"],
|
|
10
|
-
"text-heading4": ["Heading4", 18, 1.4, "-2%", 700, "text-heading4"],
|
|
11
|
-
"text-heading5": ["Heading5", 16, 1.4, "-2%", 700, "text-heading5"],
|
|
7
|
+
"ui:text-heading1": ["Heading1", 24, 1.4, "-2%", 600, "text-heading1"],
|
|
8
|
+
"ui:text-heading2": ["Heading2", 22, 1.4, "-2%", 700, "text-heading2"],
|
|
9
|
+
"ui:text-heading3": ["Heading3", 20, 1.4, "-2%", 700, "text-heading3"],
|
|
10
|
+
"ui:text-heading4": ["Heading4", 18, 1.4, "-2%", 700, "text-heading4"],
|
|
11
|
+
"ui:text-heading5": ["Heading5", 16, 1.4, "-2%", 700, "text-heading5"],
|
|
12
12
|
};
|
|
13
13
|
const subTitles = {
|
|
14
|
-
"text-subtitle1": ["Subtitle1", 16, 1.48, "-2%", 600, "text-subtitle1"],
|
|
15
|
-
"text-subtitle2": ["Subtitle2", 14, 1.48, "-2%", 600, "text-subtitle2"],
|
|
14
|
+
"ui:text-subtitle1": ["Subtitle1", 16, 1.48, "-2%", 600, "text-subtitle1"],
|
|
15
|
+
"ui:text-subtitle2": ["Subtitle2", 14, 1.48, "-2%", 600, "text-subtitle2"],
|
|
16
16
|
};
|
|
17
17
|
const bodys = {
|
|
18
|
-
"text-body1": ["Body1", 18, 1.48, "-4%", 500, "text-body1"],
|
|
19
|
-
"text-body2": ["Body2", 18, 1.48, "-4%", 400, "text-body2"],
|
|
20
|
-
"text-body3": ["Body3", 16, 1.48, "-4%", 500, "text-body3"],
|
|
21
|
-
"text-body4": ["Body4", 16, 1.48, "-4%", 400, "text-body4"],
|
|
22
|
-
"text-body5": ["Body5", 14, 1.48, "-4%", 500, "text-body5"],
|
|
23
|
-
"text-body6": ["Body6", 14, 1.48, "-4%", 400, "text-body6"],
|
|
24
|
-
"text-body7": ["Body7", 12, 1.48, "-4%", 500, "text-body7"],
|
|
25
|
-
"text-body8": ["Body8", 12, 1.48, "-4%", 400, "text-body8"],
|
|
18
|
+
"ui:text-body1": ["Body1", 18, 1.48, "-4%", 500, "text-body1"],
|
|
19
|
+
"ui:text-body2": ["Body2", 18, 1.48, "-4%", 400, "text-body2"],
|
|
20
|
+
"ui:text-body3": ["Body3", 16, 1.48, "-4%", 500, "text-body3"],
|
|
21
|
+
"ui:text-body4": ["Body4", 16, 1.48, "-4%", 400, "text-body4"],
|
|
22
|
+
"ui:text-body5": ["Body5", 14, 1.48, "-4%", 500, "text-body5"],
|
|
23
|
+
"ui:text-body6": ["Body6", 14, 1.48, "-4%", 400, "text-body6"],
|
|
24
|
+
"ui:text-body7": ["Body7", 12, 1.48, "-4%", 500, "text-body7"],
|
|
25
|
+
"ui:text-body8": ["Body8", 12, 1.48, "-4%", 400, "text-body8"],
|
|
26
26
|
};
|
|
27
27
|
const buttons = {
|
|
28
|
-
"text-button1": ["Button1", 16, 1.4, "-2%", 600, "text-button1"],
|
|
29
|
-
"text-button2": ["Button2", 14, 1.4, "-2%", 600, "text-button2"],
|
|
30
|
-
"text-button3": ["Button3", 12, 1.4, "-2%", 600, "text-button3"],
|
|
28
|
+
"ui:text-button1": ["Button1", 16, 1.4, "-2%", 600, "text-button1"],
|
|
29
|
+
"ui:text-button2": ["Button2", 14, 1.4, "-2%", 600, "text-button2"],
|
|
30
|
+
"ui:text-button3": ["Button3", 12, 1.4, "-2%", 600, "text-button3"],
|
|
31
31
|
};
|
|
32
32
|
const captions = {
|
|
33
|
-
"text-caption1": ["Caption1", 12, 1.45, "-2%", 400, "text-caption1"],
|
|
34
|
-
"text-caption2": ["Caption2", 10, 1.45, "-2%", 400, "text-caption2"],
|
|
35
|
-
"text-caption3": ["Caption3", 10, 1.45, "-2%", 500, "text-caption3"],
|
|
33
|
+
"ui:text-caption1": ["Caption1", 12, 1.45, "-2%", 400, "text-caption1"],
|
|
34
|
+
"ui:text-caption2": ["Caption2", 10, 1.45, "-2%", 400, "text-caption2"],
|
|
35
|
+
"ui:text-caption3": ["Caption3", 10, 1.45, "-2%", 500, "text-caption3"],
|
|
36
36
|
};
|
|
37
37
|
function Rows({ data }) {
|
|
38
|
-
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: Object.entries(data).map(([className, values]) => ((0, jsx_runtime_1.jsx)("div", { className: "grid grid-cols-6", children: values.map((value) => ((0, jsx_runtime_1.jsx)("span", { className: (0, style_1.cn)(className, "py-1"), children: value }, value))) }, className))) }));
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: Object.entries(data).map(([className, values]) => ((0, jsx_runtime_1.jsx)("div", { className: "ui:grid ui:grid-cols-6", children: values.map((value) => ((0, jsx_runtime_1.jsx)("span", { className: (0, style_1.cn)(className, "ui:py-1"), children: value }, value))) }, className))) }));
|
|
39
39
|
}
|
|
40
40
|
function Divider() {
|
|
41
|
-
return (0, jsx_runtime_1.jsx)("div", { className: "h-px w-full bg-gray-100 my-3" });
|
|
41
|
+
return (0, jsx_runtime_1.jsx)("div", { className: "ui:h-px ui:w-full ui:bg-gray-100 ui:my-3" });
|
|
42
42
|
}
|
|
43
43
|
function Typography() {
|
|
44
|
-
return ((0, jsx_runtime_1.jsxs)("section", { className: "flex flex-col gap-4", children: [(0, jsx_runtime_1.jsxs)("div", { className: "grid grid-cols-6 text-gray-500 text-[15px]", children: [(0, jsx_runtime_1.jsx)("span", { children: "Token" }), (0, jsx_runtime_1.jsx)("span", { children: "Font Size" }), (0, jsx_runtime_1.jsx)("span", { children: "Line Height" }), (0, jsx_runtime_1.jsx)("span", { children: "Letter Spacing" }), (0, jsx_runtime_1.jsx)("span", { children: "Font Weight" }), (0, jsx_runtime_1.jsx)("span", { children: "ClassName" })] }), (0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col", children: [(0, jsx_runtime_1.jsx)(Rows, { data: headings }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: subTitles }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: bodys }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: buttons }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: captions })] })] }));
|
|
44
|
+
return ((0, jsx_runtime_1.jsxs)("section", { className: "ui:flex ui:flex-col ui:gap-4", children: [(0, jsx_runtime_1.jsxs)("div", { className: "ui:grid ui:grid-cols-6 ui:text-gray-500 ui:text-[15px]", children: [(0, jsx_runtime_1.jsx)("span", { children: "Token" }), (0, jsx_runtime_1.jsx)("span", { children: "Font Size" }), (0, jsx_runtime_1.jsx)("span", { children: "Line Height" }), (0, jsx_runtime_1.jsx)("span", { children: "Letter Spacing" }), (0, jsx_runtime_1.jsx)("span", { children: "Font Weight" }), (0, jsx_runtime_1.jsx)("span", { children: "ClassName" })] }), (0, jsx_runtime_1.jsxs)("div", { className: "ui:flex ui:flex-col", children: [(0, jsx_runtime_1.jsx)(Rows, { data: headings }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: subTitles }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: bodys }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: buttons }), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsx)(Rows, { data: captions })] })] }));
|
|
45
45
|
}
|
|
@@ -21,7 +21,7 @@ Reitwagen uses highly readable fonts to enhance users' accessibility, making it
|
|
|
21
21
|
|
|
22
22
|
Reitwagen uses Pretendard as the primary typeface, supporting both Korean and English.
|
|
23
23
|
|
|
24
|
-
## <b>Style
|
|
24
|
+
## <b>Style</b>
|
|
25
25
|
|
|
26
26
|
라이트바겐 타이포그래피는 5단계 위계에서 총 21개 하위 위계를 가지고 있습니다.
|
|
27
27
|
|