wini-web-components 2.8.2 → 2.8.5
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.js.js +10 -10
- package/dist/index.js.mjs +198 -185
- package/package.json +6 -2
- package/src/component/button/button.module.css +210 -0
- package/src/component/button/button.tsx +57 -0
- package/src/component/calendar/calendar.module.css +153 -0
- package/src/component/calendar/calendar.tsx +389 -0
- package/src/component/carousel/carousel.css +622 -0
- package/src/component/carousel/carousel.tsx +91 -0
- package/src/component/checkbox/checkbox.module.css +48 -0
- package/src/component/checkbox/checkbox.tsx +80 -0
- package/src/component/ck-editor/ck-editor.css +206 -0
- package/src/component/ck-editor/ckeditor.tsx +522 -0
- package/src/component/component-status.tsx +53 -0
- package/src/component/date-time-picker/date-time-picker.module.css +94 -0
- package/src/component/date-time-picker/date-time-picker.tsx +663 -0
- package/src/component/dialog/dialog.module.css +111 -0
- package/src/component/dialog/dialog.tsx +109 -0
- package/src/component/import-file/import-file.module.css +83 -0
- package/src/component/import-file/import-file.tsx +174 -0
- package/src/component/infinite-scroll/infinite-scroll.module.css +34 -0
- package/src/component/infinite-scroll/infinite-scroll.tsx +35 -0
- package/src/component/input-multi-select/input-multi-select.module.css +121 -0
- package/src/component/input-multi-select/input-multi-select.tsx +263 -0
- package/src/component/input-otp/input-otp.module.css +41 -0
- package/src/component/input-otp/input-otp.tsx +110 -0
- package/src/component/number-picker/number-picker.module.css +137 -0
- package/src/component/number-picker/number-picker.tsx +107 -0
- package/src/component/pagination/pagination.module.css +48 -0
- package/src/component/pagination/pagination.tsx +88 -0
- package/src/component/popup/popup.css +136 -0
- package/src/component/popup/popup.tsx +125 -0
- package/src/component/progress-bar/progress-bar.module.css +42 -0
- package/src/component/progress-bar/progress-bar.tsx +33 -0
- package/src/component/progress-circle/progress-circle.css +0 -0
- package/src/component/progress-circle/progress-circle.tsx +25 -0
- package/src/component/radio-button/radio-button.module.css +51 -0
- package/src/component/radio-button/radio-button.tsx +60 -0
- package/src/component/rating/rating.module.css +11 -0
- package/src/component/rating/rating.tsx +65 -0
- package/src/component/select1/select1.module.css +108 -0
- package/src/component/select1/select1.tsx +271 -0
- package/src/component/switch/switch.module.css +53 -0
- package/src/component/switch/switch.tsx +68 -0
- package/src/component/table/table.css +74 -0
- package/src/component/table/table.tsx +108 -0
- package/src/component/tag/tag.module.css +108 -0
- package/src/component/tag/tag.tsx +31 -0
- package/src/component/text/text.css +27 -0
- package/src/component/text/text.tsx +24 -0
- package/src/component/text-area/text-area.module.css +57 -0
- package/src/component/text-area/text-area.tsx +65 -0
- package/src/component/text-field/text-field.module.css +71 -0
- package/src/component/text-field/text-field.tsx +102 -0
- package/src/component/toast-noti/toast-noti.css +866 -0
- package/src/component/toast-noti/toast-noti.tsx +22 -0
- package/src/component/wini-icon/winicon.module.css +110 -0
- package/src/component/wini-icon/winicon.tsx +9424 -0
- package/src/form/login/view.module.css +80 -0
- package/src/form/login/view.tsx +138 -0
- package/src/index.tsx +66 -0
- package/src/language/i18n.tsx +143 -0
- package/src/skin/layout.css +649 -0
- package/src/skin/root.css +294 -0
- package/src/skin/typography.css +314 -0
- package/src/vite-env.d.ts +1 -0
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
html {
|
|
2
|
+
/* primary */
|
|
3
|
+
--primary-bolder-color: #0F62D7;
|
|
4
|
+
--primary-main-color: #287CF0;
|
|
5
|
+
--primary-lighter-color: #5899F3;
|
|
6
|
+
--primary-tag-color: #B7D3FA;
|
|
7
|
+
--primary-border-color: #B7D3FA;
|
|
8
|
+
--primary-background: #ECF3FE;
|
|
9
|
+
/* secondary 1 */
|
|
10
|
+
--secondary1-bolder-color: #22C3AE;
|
|
11
|
+
--secondary1-main-color: #3CDDC7;
|
|
12
|
+
--secondary1-lighter-color: #67E4D4;
|
|
13
|
+
--secondary1-tag-color: #BEF4EC;
|
|
14
|
+
--secondary1-border-color: #BEF4EC;
|
|
15
|
+
--secondary1-background: #EEFCFA;
|
|
16
|
+
/* secondary 2 */
|
|
17
|
+
--secondary2-bolder-color: #2D8655;
|
|
18
|
+
--secondary2-main-color: #3AAC6D;
|
|
19
|
+
--secondary2-lighter-color: #53C586;
|
|
20
|
+
--secondary2-tag-color: #C6ECD7;
|
|
21
|
+
--secondary2-border-color: #C6ECD7;
|
|
22
|
+
--secondary2-background: #E8F7EF;
|
|
23
|
+
/* secondary 3 */
|
|
24
|
+
--secondary3-bolder-color: #E19405;
|
|
25
|
+
--secondary3-main-color: #FAAD1E;
|
|
26
|
+
--secondary3-lighter-color: #FBBF50;
|
|
27
|
+
--secondary3-tag-color: #FDE4B4;
|
|
28
|
+
--secondary3-border-color: #FDE4B4;
|
|
29
|
+
--secondary3-background: #FFF8EB;
|
|
30
|
+
/* secondary 4 */
|
|
31
|
+
--secondary4-bolder-color: #E36003;
|
|
32
|
+
--secondary4-main-color: #FC7A1C;
|
|
33
|
+
--secondary4-lighter-color: #FD974F;
|
|
34
|
+
--secondary4-tag-color: #FED3B3;
|
|
35
|
+
--secondary4-border-color: #FED3B3;
|
|
36
|
+
--secondary4-background: #FFF3EB;
|
|
37
|
+
/* secondary 5 */
|
|
38
|
+
--secondary5-bolder-color: #7B22C3;
|
|
39
|
+
--secondary5-main-color: #943CDD;
|
|
40
|
+
--secondary5-lighter-color: #AC67E4;
|
|
41
|
+
--secondary5-tag-color: #DBBEF4;
|
|
42
|
+
--secondary5-border-color: #DBBEF4;
|
|
43
|
+
--secondary5-background: #F6EEFC;
|
|
44
|
+
/* secondary 6 */
|
|
45
|
+
--secondary6-bolder-color: #C8291E;
|
|
46
|
+
--secondary6-main-color: #E14337;
|
|
47
|
+
--secondary6-lighter-color: #E86D64;
|
|
48
|
+
--secondary6-tag-color: #F5C0BC;
|
|
49
|
+
--secondary6-border-color: #F5C0BC;
|
|
50
|
+
--secondary6-background: #FCEEED;
|
|
51
|
+
/* success */
|
|
52
|
+
--success-bolder-color: #2D8655;
|
|
53
|
+
--success-main-color: #3AAC6D;
|
|
54
|
+
--success-lighter-color: #53C586;
|
|
55
|
+
--success-tag-color: #C6ECD7;
|
|
56
|
+
--success-border-color: #C6ECD7;
|
|
57
|
+
--success-background: #E8F7EF;
|
|
58
|
+
/* info */
|
|
59
|
+
--infor-bolder-color: #0F62D7;
|
|
60
|
+
--infor-main-color: #287CF0;
|
|
61
|
+
--infor-lighter-color: #5899F3;
|
|
62
|
+
--infor-tag-color: #B7D3FA;
|
|
63
|
+
--infor-border-color: #B7D3FA;
|
|
64
|
+
--infor-background: #ECF3FE;
|
|
65
|
+
/* warning */
|
|
66
|
+
--warning-bolder-color: #E36003;
|
|
67
|
+
--warning-main-color: #FC7A1C;
|
|
68
|
+
--warning-lighter-color: #FD974F;
|
|
69
|
+
--warning-tag-color: #FED3B3;
|
|
70
|
+
--warning-border-color: #FED3B3;
|
|
71
|
+
--warning-background: #FFF3EB;
|
|
72
|
+
/* error */
|
|
73
|
+
--error-bolder-color: #C8291E;
|
|
74
|
+
--error-main-color: #E14337;
|
|
75
|
+
--error-lighter-color: #E86D64;
|
|
76
|
+
--error-tag-color: #F5C0BC;
|
|
77
|
+
--error-border-color: #F5C0BC;
|
|
78
|
+
--error-background: #FCEEED;
|
|
79
|
+
/* neutral-background */
|
|
80
|
+
--neutral-bolder-background-color: #EAEAEC;
|
|
81
|
+
--neutral-absolute-background-color: #FFFFFF;
|
|
82
|
+
--neutral-main-background-color: #EFEFF0;
|
|
83
|
+
--neutral-lighter-background-color: #F4F4F5;
|
|
84
|
+
--neutral-overlay-background-color: #000000B3;
|
|
85
|
+
--neutral-disable-background-color: #F4F4F5;
|
|
86
|
+
--neutral-selected-background-color: #18181B14;
|
|
87
|
+
--neutral-hover-background-color: #18181B0A;
|
|
88
|
+
/* reverse */
|
|
89
|
+
--neutral-absolute-reverse-background-color: #000000;
|
|
90
|
+
--neutral-bolder-reverse-background-color: #18181B;
|
|
91
|
+
--neutral-main-reverse-background-color: #242428;
|
|
92
|
+
--neutral-lighter-reverse-background-color: #313135;
|
|
93
|
+
--neutral-disable-reverse-background-color: #313135;
|
|
94
|
+
/* neutral-text */
|
|
95
|
+
--neutral-text-title-color: #18181B;
|
|
96
|
+
--neutral-text-subtitle-color: #61616B;
|
|
97
|
+
--neutral-text-body-color: #313135;
|
|
98
|
+
--neutral-text-label-color: #313135;
|
|
99
|
+
--neutral-text-placeholder-color: #878792;
|
|
100
|
+
--neutral-text-disabled-color: #A2A2AA;
|
|
101
|
+
--neutral-text-stable-color: #FFFFFF;
|
|
102
|
+
/* reverse */
|
|
103
|
+
--neutral-text-title-reverse-color: #F4F4F5;
|
|
104
|
+
--neutral-text-subtitle-reverse-color: #A2A2AA;
|
|
105
|
+
--neutral-text-body-reverse-color: #EAEAEC;
|
|
106
|
+
--neutral-text-label-reverse-color: #EAEAEC;
|
|
107
|
+
--neutral-text-placeholder-reverse-color: #A2A2AA;
|
|
108
|
+
--neutral-text-disabled-reverse-color: #878792;
|
|
109
|
+
--neutral-text-stable-reverse-color: #000000;
|
|
110
|
+
/* neutral-border-color */
|
|
111
|
+
--neutral-bolder-border-color: #D7D7DB;
|
|
112
|
+
--neutral-main-border-color: #EAEAEC;
|
|
113
|
+
--neutral-lighter-border-color: #F4F4F5;
|
|
114
|
+
/* neutral-border */
|
|
115
|
+
--neutral-bolder-border: 1px solid #D7D7DB;
|
|
116
|
+
--neutral-main-border: 1px solid #EAEAEC;
|
|
117
|
+
--neutral-lighter-border: 1px solid #F4F4F5;
|
|
118
|
+
/* neutral-border-color reverse */
|
|
119
|
+
--neutral-bolder-reverse-border-color: #242428;
|
|
120
|
+
--neutral-main-reverse-border-color: #313135;
|
|
121
|
+
--neutral-lighter-reverse-border-color: #494950;
|
|
122
|
+
/* neutral-border reverse */
|
|
123
|
+
--neutral-bolder-reverse-border: 1px solid #242428;
|
|
124
|
+
--neutral-main-reverse-border: 1px solid #313135;
|
|
125
|
+
--neutral-lighter-reverse-border: 1px solid #494950;
|
|
126
|
+
|
|
127
|
+
--shadow-top: 0px -1px 6px 0px #2D32390F;
|
|
128
|
+
--shadow-bottom: 0px 1px 6px 0px #2D32390F;
|
|
129
|
+
--shadow-right: 1px 0px 6px 0px #2D32390F;
|
|
130
|
+
--shadow-left: -1px 0px 6px 0px #2D32390F;
|
|
131
|
+
--shadow-dropdown: 2px 0px 16px 0px #0000000A;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
html.dark {
|
|
135
|
+
/* primary */
|
|
136
|
+
--primary-bolder-color: #5899F3;
|
|
137
|
+
--primary-main-color: #287CF0;
|
|
138
|
+
--primary-lighter-color: #0F62D7;
|
|
139
|
+
--primary-tag-color: #5899F3;
|
|
140
|
+
--primary-border-color: #072C5F;
|
|
141
|
+
--primary-background: #031630;
|
|
142
|
+
/* secondary 1 */
|
|
143
|
+
--secondary1-bolder-color: #67E4D4;
|
|
144
|
+
--secondary1-main-color: #3CDDC7;
|
|
145
|
+
--secondary1-lighter-color: #22C3AE;
|
|
146
|
+
--secondary1-tag-color: #67E4D4;
|
|
147
|
+
--secondary1-border-color: #0F574D;
|
|
148
|
+
--secondary1-background: #082B27;
|
|
149
|
+
/* secondary 2 */
|
|
150
|
+
--secondary2-bolder-color: #53C586;
|
|
151
|
+
--secondary2-main-color: #3AAC6D;
|
|
152
|
+
--secondary2-lighter-color: #2D8655;
|
|
153
|
+
--secondary2-tag-color: #53C586;
|
|
154
|
+
--secondary2-border-color: #1A4C30;
|
|
155
|
+
--secondary2-background: #0D2618;
|
|
156
|
+
/* secondary 3 */
|
|
157
|
+
--secondary3-bolder-color: #FBBF50;
|
|
158
|
+
--secondary3-main-color: #FAAD1E;
|
|
159
|
+
--secondary3-lighter-color: #E19405;
|
|
160
|
+
--secondary3-tag-color: #FD974F;
|
|
161
|
+
--secondary3-border-color: #652B01;
|
|
162
|
+
--secondary3-background: #321501;
|
|
163
|
+
/* secondary 4 */
|
|
164
|
+
--secondary4-bolder-color: #FD974F;
|
|
165
|
+
--secondary4-main-color: #FC7A1C;
|
|
166
|
+
--secondary4-lighter-color: #E36003;
|
|
167
|
+
--secondary4-tag-color: #FD974F;
|
|
168
|
+
--secondary4-border-color: #652B01;
|
|
169
|
+
--secondary4-background: #321501;
|
|
170
|
+
/* secondary 5 */
|
|
171
|
+
--secondary5-bolder-color: #AC67E4;
|
|
172
|
+
--secondary5-main-color: #943CDD;
|
|
173
|
+
--secondary5-lighter-color: #7B22C3;
|
|
174
|
+
--secondary5-tag-color: #AC67E4;
|
|
175
|
+
--secondary5-border-color: #1F085E;
|
|
176
|
+
--secondary5-background: #0F042F;
|
|
177
|
+
/* secondary 6 */
|
|
178
|
+
--secondary6-bolder-color: #E86D64;
|
|
179
|
+
--secondary6-main-color: #E14337;
|
|
180
|
+
--secondary6-lighter-color: #C8291E;
|
|
181
|
+
--secondary6-tag-color: #E86D64;
|
|
182
|
+
--secondary6-border-color: #59120D;
|
|
183
|
+
--secondary6-background: #2C0907;
|
|
184
|
+
/* success */
|
|
185
|
+
--success-bolder-color: #53C586;
|
|
186
|
+
--success-main-color: #3AAC6D;
|
|
187
|
+
--success-lighter-color: #3AAC6D;
|
|
188
|
+
--success-tag-color: #53C586;
|
|
189
|
+
--success-border-color: #1A4C30;
|
|
190
|
+
--success-background: #0D2618;
|
|
191
|
+
/* info */
|
|
192
|
+
--infor-bolder-color: #5899F3;
|
|
193
|
+
--infor-main-color: #287CF0;
|
|
194
|
+
--infor-lighter-color: #0F62D7;
|
|
195
|
+
--infor-tag-color: #5899F3;
|
|
196
|
+
--infor-border-color: #072C5F;
|
|
197
|
+
--infor-background: #031630;
|
|
198
|
+
/* warning */
|
|
199
|
+
--warning-bolder-color: #FD974F;
|
|
200
|
+
--warning-main-color: #FC7A1C;
|
|
201
|
+
--warning-lighter-color: #E36003;
|
|
202
|
+
--warning-tag-color: #FD974F;
|
|
203
|
+
--warning-border-color: #652B01;
|
|
204
|
+
--warning-background: #321501;
|
|
205
|
+
/* error */
|
|
206
|
+
--error-bolder-color: #E86D64;
|
|
207
|
+
--error-main-color: #E14337;
|
|
208
|
+
--error-lighter-color: #C8291E;
|
|
209
|
+
--error-tag-color: #E86D64;
|
|
210
|
+
--error-border-color: #59120D;
|
|
211
|
+
--error-background: #2C0907;
|
|
212
|
+
/* neutral-background */
|
|
213
|
+
--neutral-bolder-background-color: #242428;
|
|
214
|
+
--neutral-absolute-background-color: #14181b;
|
|
215
|
+
--neutral-main-background-color: #313135;
|
|
216
|
+
--neutral-lighter-background-color: #494950;
|
|
217
|
+
--neutral-overlay-background-color: #FFFFFFB3;
|
|
218
|
+
--neutral-disable-background-color: #494950;
|
|
219
|
+
--neutral-selected-background-color: #FFFFFF14;
|
|
220
|
+
--neutral-hover-background-color: #FFFFFF0A;
|
|
221
|
+
/* reverse */
|
|
222
|
+
--neutral-absolute-reverse-background-color: #000000;
|
|
223
|
+
--neutral-bolder-reverse-background-color: #18181B;
|
|
224
|
+
--neutral-main-reverse-background-color: #242428;
|
|
225
|
+
--neutral-lighter-reverse-background-color: #313135;
|
|
226
|
+
--neutral-disable-reverse-background-color: #313135;
|
|
227
|
+
/* neutral-text */
|
|
228
|
+
--neutral-text-title-color: #F4F4F5;
|
|
229
|
+
--neutral-text-subtitle-color: #D7D7DB;
|
|
230
|
+
--neutral-text-body-color: #EAEAEC;
|
|
231
|
+
--neutral-text-label-color: #D7D7DB;
|
|
232
|
+
--neutral-text-placeholder-color: #A2A2AA;
|
|
233
|
+
--neutral-text-disabled-color: #878792;
|
|
234
|
+
--neutral-text-stable-color: #FFFFFF;
|
|
235
|
+
/* reverse */
|
|
236
|
+
--neutral-text-title-reverse-color: #F4F4F5;
|
|
237
|
+
--neutral-text-subtitle-reverse-color: #A2A2AA;
|
|
238
|
+
--neutral-text-body-reverse-color: #EAEAEC;
|
|
239
|
+
--neutral-text-label-reverse-color: #EAEAEC;
|
|
240
|
+
--neutral-text-placeholder-reverse-color: #A2A2AA;
|
|
241
|
+
--neutral-text-disabled-reverse-color: #878792;
|
|
242
|
+
--neutral-text-stable-reverse-color: #000000;
|
|
243
|
+
/* neutral-border-color */
|
|
244
|
+
--neutral-bolder-border-color: #494950;
|
|
245
|
+
--neutral-main-border-color: #313135;
|
|
246
|
+
--neutral-lighter-border-color: #242428;
|
|
247
|
+
/* neutral-border */
|
|
248
|
+
--neutral-bolder-border: 1px solid #494950;
|
|
249
|
+
--neutral-main-border: 1px solid #313135;
|
|
250
|
+
--neutral-lighter-border: 1px solid #242428;
|
|
251
|
+
/* neutral-border-color reverse */
|
|
252
|
+
--neutral-bolder-reverse-border-color: #242428;
|
|
253
|
+
--neutral-main-reverse-border-color: #313135;
|
|
254
|
+
--neutral-lighter-reverse-border-color: #494950;
|
|
255
|
+
/* neutral-border reverse */
|
|
256
|
+
--neutral-bolder-reverse-border: 1px solid #242428;
|
|
257
|
+
--neutral-main-reverse-border: 1px solid #313135;
|
|
258
|
+
--neutral-lighter-reverse-border: 1px solid #494950;
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
--shadow-top: 0px -1px 6px 0px #2D32390F;
|
|
262
|
+
--shadow-bottom: 0px 1px 6px 0px #2D32390F;
|
|
263
|
+
--shadow-right: 1px 0px 6px 0px #2D32390F;
|
|
264
|
+
--shadow-left: -1px 0px 6px 0px #2D32390F;
|
|
265
|
+
--shadow-dropdown: 2px 0px 16px 0px #0000000A;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@keyframes skeleton-animation {
|
|
269
|
+
0% {
|
|
270
|
+
background-position: -1000px 0
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
100% {
|
|
274
|
+
background-position: 1000px 0
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.skeleton-loading {
|
|
279
|
+
pointer-events: none;
|
|
280
|
+
animation: skeleton-animation 8s linear infinite forwards;
|
|
281
|
+
background: linear-gradient(to right, #D7D7DB 8%, #F4F4F5 18%, #D7D7DB 33%);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
input::placeholder, textarea::placeholder {
|
|
285
|
+
color: var(--neutral-text-placeholder-color);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.default-hover:hover {
|
|
289
|
+
background-color: var(--neutral-hover-background-color);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.opacity-hover:hover {
|
|
293
|
+
opacity: 0.86;
|
|
294
|
+
}
|
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
.regular0,
|
|
2
|
+
.subtitle-5 {
|
|
3
|
+
line-height: 1.4rem;
|
|
4
|
+
font-size: 1rem;
|
|
5
|
+
color: var(--neutral-text-title-color);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.regular1,
|
|
9
|
+
.subtitle-4,
|
|
10
|
+
.button-text-6,
|
|
11
|
+
.label-5 {
|
|
12
|
+
line-height: 1.6rem;
|
|
13
|
+
font-size: 1.2rem;
|
|
14
|
+
color: var(--neutral-text-title-color);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.regular2,
|
|
18
|
+
.subtitle-3,
|
|
19
|
+
.body-3,
|
|
20
|
+
.button-text-4,
|
|
21
|
+
.label-4,
|
|
22
|
+
.placeholder-2 {
|
|
23
|
+
line-height: 2.2rem;
|
|
24
|
+
font-size: 1.4rem;
|
|
25
|
+
color: var(--neutral-text-title-color);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.regular3,
|
|
29
|
+
.subtitle-2,
|
|
30
|
+
.body-2,
|
|
31
|
+
.label-2,
|
|
32
|
+
.placeholder-1 {
|
|
33
|
+
line-height: 2.4rem;
|
|
34
|
+
font-size: 1.6rem;
|
|
35
|
+
color: var(--neutral-text-title-color);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.regular4,
|
|
39
|
+
.subtitle-1,
|
|
40
|
+
.body-1 {
|
|
41
|
+
line-height: 2.8rem;
|
|
42
|
+
font-size: 2rem;
|
|
43
|
+
color: var(--neutral-text-title-color);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.regular5 {
|
|
47
|
+
line-height: 3.2rem;
|
|
48
|
+
font-size: 2.4rem;
|
|
49
|
+
color: var(--neutral-text-title-color);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.regular6 {
|
|
53
|
+
line-height: 3.8rem;
|
|
54
|
+
font-size: 3rem;
|
|
55
|
+
color: var(--neutral-text-title-color);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.regular7 {
|
|
59
|
+
line-height: 4.6rem;
|
|
60
|
+
font-size: 3.8rem;
|
|
61
|
+
color: var(--neutral-text-title-color);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.regular8 {
|
|
65
|
+
line-height: 5.6rem;
|
|
66
|
+
font-size: 4.6rem;
|
|
67
|
+
color: var(--neutral-text-title-color);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.regular9 {
|
|
71
|
+
line-height: 6.8rem;
|
|
72
|
+
font-size: 5.6rem;
|
|
73
|
+
color: var(--neutral-text-title-color);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.medium1,
|
|
77
|
+
.heading-9,
|
|
78
|
+
.button-text-5 {
|
|
79
|
+
line-height: 1.6rem;
|
|
80
|
+
font-size: 1.2rem;
|
|
81
|
+
font-weight: 500;
|
|
82
|
+
color: var(--neutral-text-title-color);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.medium2,
|
|
86
|
+
.heading-8,
|
|
87
|
+
.button-text-3,
|
|
88
|
+
.label-3 {
|
|
89
|
+
line-height: 2.2rem;
|
|
90
|
+
font-size: 1.4rem;
|
|
91
|
+
font-weight: 500;
|
|
92
|
+
color: var(--neutral-text-title-color);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.medium3,
|
|
96
|
+
.heading-7,
|
|
97
|
+
.button-text-2,
|
|
98
|
+
.label-1 {
|
|
99
|
+
line-height: 2.4rem;
|
|
100
|
+
font-size: 1.6rem;
|
|
101
|
+
font-weight: 500;
|
|
102
|
+
color: var(--neutral-text-title-color);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.medium4,
|
|
106
|
+
.heading-6,
|
|
107
|
+
.highlight-6 {
|
|
108
|
+
line-height: 2.8rem;
|
|
109
|
+
font-size: 2rem;
|
|
110
|
+
font-weight: 500;
|
|
111
|
+
color: var(--neutral-text-title-color);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.medium5,
|
|
115
|
+
.heading-5,
|
|
116
|
+
.highlight-5 {
|
|
117
|
+
line-height: 3.2rem;
|
|
118
|
+
font-size: 2.4rem;
|
|
119
|
+
font-weight: 500;
|
|
120
|
+
color: var(--neutral-text-title-color);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.medium6,
|
|
124
|
+
.heading-4,
|
|
125
|
+
.highlight-4 {
|
|
126
|
+
line-height: 3.8rem;
|
|
127
|
+
font-size: 3rem;
|
|
128
|
+
font-weight: 500;
|
|
129
|
+
color: var(--neutral-text-title-color);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.medium7,
|
|
133
|
+
.heading-3,
|
|
134
|
+
.highlight-3 {
|
|
135
|
+
line-height: 4.6rem;
|
|
136
|
+
font-size: 3.8rem;
|
|
137
|
+
font-weight: 500;
|
|
138
|
+
color: var(--neutral-text-title-color);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.medium8,
|
|
142
|
+
.heading-2,
|
|
143
|
+
.highlight-2 {
|
|
144
|
+
line-height: 5.6rem;
|
|
145
|
+
font-size: 4.6rem;
|
|
146
|
+
font-weight: 500;
|
|
147
|
+
color: var(--neutral-text-title-color);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.medium9,
|
|
151
|
+
.highlight-1 {
|
|
152
|
+
line-height: 6.8rem;
|
|
153
|
+
font-size: 5.6rem;
|
|
154
|
+
font-weight: 500;
|
|
155
|
+
color: var(--neutral-text-title-color);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.semibold1 {
|
|
159
|
+
line-height: 2rem;
|
|
160
|
+
font-size: 1.2rem;
|
|
161
|
+
font-weight: 600;
|
|
162
|
+
color: var(--neutral-text-title-color);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.semibold2 {
|
|
166
|
+
line-height: 2.2rem;
|
|
167
|
+
font-size: 1.4rem;
|
|
168
|
+
font-weight: 600;
|
|
169
|
+
color: var(--neutral-text-title-color);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.semibold3,
|
|
173
|
+
.button-text-1 {
|
|
174
|
+
line-height: 2.4rem;
|
|
175
|
+
font-size: 1.6rem;
|
|
176
|
+
font-weight: 600;
|
|
177
|
+
color: var(--neutral-text-title-color);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.semibold4 {
|
|
181
|
+
line-height: 2.8rem;
|
|
182
|
+
font-size: 2rem;
|
|
183
|
+
font-weight: 600;
|
|
184
|
+
color: var(--neutral-text-title-color);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.semibold5 {
|
|
188
|
+
line-height: 3.2rem;
|
|
189
|
+
font-size: 2.4rem;
|
|
190
|
+
font-weight: 600;
|
|
191
|
+
color: var(--neutral-text-title-color);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.semibold6 {
|
|
195
|
+
line-height: 3.8rem;
|
|
196
|
+
font-size: 3rem;
|
|
197
|
+
font-weight: 600;
|
|
198
|
+
color: var(--neutral-text-title-color);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.semibold7 {
|
|
202
|
+
line-height: 4.6rem;
|
|
203
|
+
font-size: 3.8rem;
|
|
204
|
+
font-weight: 600;
|
|
205
|
+
color: var(--neutral-text-title-color);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.semibold8 {
|
|
209
|
+
line-height: 5.6rem;
|
|
210
|
+
font-size: 4.6rem;
|
|
211
|
+
font-weight: 600;
|
|
212
|
+
color: var(--neutral-text-title-color);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.semibold9,
|
|
216
|
+
.heading-1 {
|
|
217
|
+
line-height: 6.8rem;
|
|
218
|
+
font-size: 5.6rem;
|
|
219
|
+
font-weight: 600;
|
|
220
|
+
color: var(--neutral-text-title-color);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.highlight-1,
|
|
224
|
+
.highlight-2,
|
|
225
|
+
.highlight-3,
|
|
226
|
+
.highlight-4,
|
|
227
|
+
.highlight-5,
|
|
228
|
+
.highlight-6 {
|
|
229
|
+
font-weight: 700;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.subtitle-1 {
|
|
233
|
+
color: var(--neutral-text-subtitle-color);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.subtitle-2 {
|
|
237
|
+
color: var(--neutral-text-subtitle-color);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.subtitle-3 {
|
|
241
|
+
color: var(--neutral-text-subtitle-color);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.subtitle-4 {
|
|
245
|
+
color: var(--neutral-text-subtitle-color);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.subtitle-5 {
|
|
249
|
+
color: var(--neutral-text-subtitle-color);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.body-1 {
|
|
253
|
+
color: var(--neutral-text-body-color);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.body-2 {
|
|
257
|
+
color: var(--neutral-text-body-color);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.body-3 {
|
|
261
|
+
color: var(--neutral-text-body-color);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.button-text-1 {
|
|
265
|
+
color: var(--primary-main-color);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.button-text-2 {
|
|
269
|
+
color: var(--primary-main-color);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.button-text-3 {
|
|
273
|
+
color: var(--primary-main-color);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.button-text-4 {
|
|
277
|
+
color: var(--primary-main-color);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.button-text-5 {
|
|
281
|
+
color: var(--primary-main-color);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.button-text-6 {
|
|
285
|
+
color: var(--primary-main-color);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.label-1 {
|
|
289
|
+
color: var(--neutral-text-label-color);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.label-2 {
|
|
293
|
+
color: var(--neutral-text-label-color);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.label-3 {
|
|
297
|
+
color: var(--neutral-text-label-color);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.label-4 {
|
|
301
|
+
color: var(--neutral-text-label-color);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.label-5 {
|
|
305
|
+
color: var(--neutral-text-label-color);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.placeholder-1 {
|
|
309
|
+
color: var(--neutral-text-placeholder-color);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.placeholder-2 {
|
|
313
|
+
color: var(--neutral-text-placeholder-color);
|
|
314
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|