@mekari/pixel3-theme 0.2.1 → 0.2.2-dev.0
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/conditions.d.mts +4 -1
- package/dist/conditions.d.ts +4 -1
- package/dist/index.js +2889 -409
- package/dist/index.mjs +2888 -408
- package/dist/semanticTokens/colors.d.mts +892 -0
- package/dist/semanticTokens/colors.d.ts +892 -0
- package/dist/semanticTokens/index.d.mts +951 -0
- package/dist/semanticTokens/index.d.ts +951 -0
- package/dist/semanticTokens/spacing.d.mts +59 -0
- package/dist/semanticTokens/spacing.d.ts +59 -0
- package/dist/tokens/borders.d.mts +2 -2
- package/dist/tokens/borders.d.ts +2 -2
- package/dist/tokens/colors.d.mts +37 -34
- package/dist/tokens/colors.d.ts +37 -34
- package/dist/tokens/index.d.mts +59 -35
- package/dist/tokens/index.d.ts +59 -35
- package/dist/tokens/radii.d.mts +5 -0
- package/dist/tokens/radii.d.ts +5 -0
- package/dist/tokens/spacing.d.mts +16 -0
- package/dist/tokens/spacing.d.ts +16 -0
- package/dist/tokens-next/borders.d.mts +22 -0
- package/dist/tokens-next/borders.d.ts +22 -0
- package/dist/tokens-next/colors.d.mts +441 -0
- package/dist/tokens-next/colors.d.ts +441 -0
- package/dist/tokens-next/index.d.mts +772 -0
- package/dist/tokens-next/index.d.ts +772 -0
- package/dist/tokens-next/radii.d.mts +26 -0
- package/dist/tokens-next/radii.d.ts +26 -0
- package/dist/tokens-next/shadows.d.mts +28 -0
- package/dist/tokens-next/shadows.d.ts +28 -0
- package/dist/tokens-next/spacing.d.mts +51 -0
- package/dist/tokens-next/spacing.d.ts +51 -0
- package/package.json +1 -1
- package/src/conditions.ts +6 -4
- package/src/global-css.ts +4 -0
- package/src/index.ts +15 -2
- package/src/recipes/accordion.ts +12 -2
- package/src/recipes/autocomplete.ts +6 -1
- package/src/recipes/avatar.ts +68 -11
- package/src/recipes/badge.ts +174 -50
- package/src/recipes/banner.ts +36 -11
- package/src/recipes/broadcast.ts +78 -12
- package/src/recipes/button.ts +132 -9
- package/src/recipes/carousel.ts +5 -0
- package/src/recipes/chart.ts +10 -5
- package/src/recipes/checkbox.ts +68 -13
- package/src/recipes/color-picker.ts +74 -23
- package/src/recipes/date-picker.ts +165 -31
- package/src/recipes/divider.ts +5 -1
- package/src/recipes/dropzone.ts +80 -8
- package/src/recipes/form-control.ts +12 -3
- package/src/recipes/input-tag.ts +48 -8
- package/src/recipes/input.ts +75 -8
- package/src/recipes/modal.ts +30 -9
- package/src/recipes/popover.ts +28 -9
- package/src/recipes/progress.ts +9 -2
- package/src/recipes/radio.ts +52 -21
- package/src/recipes/rich-text-editor.ts +32 -6
- package/src/recipes/segmented-control.ts +47 -7
- package/src/recipes/select.ts +42 -0
- package/src/recipes/slider.ts +46 -6
- package/src/recipes/table.ts +26 -11
- package/src/recipes/tabs.ts +35 -3
- package/src/recipes/tag.ts +43 -13
- package/src/recipes/textarea.ts +0 -46
- package/src/recipes/timeline.ts +36 -8
- package/src/recipes/toast.ts +21 -4
- package/src/recipes/toggle.ts +59 -11
- package/src/recipes/tooltip.ts +5 -1
- package/src/recipes/upload.ts +51 -16
- package/src/semanticTokens/colors.ts +893 -0
- package/src/semanticTokens/index.ts +8 -0
- package/src/semanticTokens/spacing.ts +59 -0
- package/src/tokens/borders.ts +1 -1
- package/src/tokens/colors.ts +18 -23
- package/src/tokens/index.ts +2 -2
- package/src/tokens/radii.ts +5 -5
- package/src/tokens/spacing.ts +17 -17
- package/src/tokens-next/borders.ts +10 -0
- package/src/tokens-next/colors.ts +171 -0
- package/src/tokens-next/index.ts +32 -0
- package/src/tokens-next/radii.ts +10 -0
- package/src/tokens-next/shadows.ts +28 -0
- package/src/tokens-next/spacing.ts +16 -0
package/dist/index.mjs
CHANGED
|
@@ -14,6 +14,7 @@ var conditions = {
|
|
|
14
14
|
extend: {
|
|
15
15
|
disabled: "&:is(:disabled, [disabled], [aria-disabled=true], [data-disabled])",
|
|
16
16
|
invalid: "&:is([aria-invalid=true], [data-invalid])",
|
|
17
|
+
active: "&:is(:active, [data-active], [data-active=true])",
|
|
17
18
|
checked: "&:is(:checked, [data-checked], [aria-checked=true], [data-state=checked])",
|
|
18
19
|
indeterminate: "&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state=indeterminate])",
|
|
19
20
|
closed: "&:is([data-state=closed])",
|
|
@@ -23,13 +24,15 @@ var conditions = {
|
|
|
23
24
|
loading: "& > [data-loading=true], &:is([data-loading], [aria-busy=true])",
|
|
24
25
|
hasIcon: "&[data-has-icon=true]",
|
|
25
26
|
hasLabel: "&[data-has-label=true]",
|
|
26
|
-
active: "&[data-active=true], [data-active]",
|
|
27
27
|
highlight: "&[data-highlight=true], [data-highlight]",
|
|
28
28
|
hasBorder: "&[data-has-border=true]",
|
|
29
29
|
hasBackground: "&[data-has-background=true]",
|
|
30
30
|
isFullWidth: "&[data-is-full-width=true]",
|
|
31
31
|
placementLeft: "&[data-placement=left]",
|
|
32
|
-
placementRight: "&[data-placement=right]"
|
|
32
|
+
placementRight: "&[data-placement=right]",
|
|
33
|
+
nextTheme: "[data-panda-theme=next] &",
|
|
34
|
+
light: ".light &",
|
|
35
|
+
dark: ".dark &"
|
|
33
36
|
}
|
|
34
37
|
};
|
|
35
38
|
|
|
@@ -51,6 +54,10 @@ var globalCss = defineGlobalStyles({
|
|
|
51
54
|
lineHeight: "var(--mp-line-heights-lg)",
|
|
52
55
|
_dark: {
|
|
53
56
|
colorScheme: "dark"
|
|
57
|
+
},
|
|
58
|
+
_nextTheme: {
|
|
59
|
+
background: "var(--mp-colors-background-neutral)",
|
|
60
|
+
color: "var(--mp-colors-text-default)"
|
|
54
61
|
}
|
|
55
62
|
},
|
|
56
63
|
"*, *::before, *::after": {
|
|
@@ -88,8 +95,7 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
88
95
|
alignItems: "center",
|
|
89
96
|
userSelect: "auto",
|
|
90
97
|
outline: "0px solid transparent",
|
|
91
|
-
borderWidth: "
|
|
92
|
-
borderColor: "transparent",
|
|
98
|
+
borderWidth: "0",
|
|
93
99
|
borderRadius: "sm",
|
|
94
100
|
transition: "all 250ms",
|
|
95
101
|
textAlign: "left",
|
|
@@ -101,16 +107,15 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
101
107
|
whiteSpace: "normal",
|
|
102
108
|
overflowWrap: "anywhere",
|
|
103
109
|
cursor: "var(--mp-tag--cursor)",
|
|
104
|
-
height: "fit-content"
|
|
110
|
+
height: "fit-content",
|
|
111
|
+
_nextTheme: {
|
|
112
|
+
paddingX: "1.5"
|
|
113
|
+
}
|
|
105
114
|
},
|
|
106
115
|
close: {
|
|
107
116
|
position: "absolute!",
|
|
108
|
-
color: "gray.600",
|
|
109
117
|
border: "none",
|
|
110
118
|
right: "0",
|
|
111
|
-
width: "5",
|
|
112
|
-
height: "5",
|
|
113
|
-
minWidth: "5",
|
|
114
119
|
paddingTop: "1",
|
|
115
120
|
padding: "0",
|
|
116
121
|
transition: "all 250ms!",
|
|
@@ -126,12 +131,20 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
126
131
|
size: {
|
|
127
132
|
sm: {
|
|
128
133
|
root: {
|
|
129
|
-
|
|
134
|
+
height: "5"
|
|
135
|
+
},
|
|
136
|
+
close: {
|
|
137
|
+
width: "5",
|
|
138
|
+
height: "5"
|
|
130
139
|
}
|
|
131
140
|
},
|
|
132
141
|
md: {
|
|
133
142
|
root: {
|
|
134
|
-
|
|
143
|
+
height: "7"
|
|
144
|
+
},
|
|
145
|
+
close: {
|
|
146
|
+
width: "7",
|
|
147
|
+
height: "7"
|
|
135
148
|
}
|
|
136
149
|
}
|
|
137
150
|
},
|
|
@@ -139,13 +152,21 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
139
152
|
gray: {
|
|
140
153
|
root: {
|
|
141
154
|
color: "gray.600",
|
|
142
|
-
background: "gray.50"
|
|
155
|
+
background: "gray.50",
|
|
156
|
+
_nextTheme: {
|
|
157
|
+
color: "text.secondary",
|
|
158
|
+
background: "background.neutral.subtle"
|
|
159
|
+
}
|
|
143
160
|
}
|
|
144
161
|
},
|
|
145
162
|
red: {
|
|
146
163
|
root: {
|
|
147
164
|
color: "red.400",
|
|
148
|
-
backgroundColor: "red.50"
|
|
165
|
+
backgroundColor: "red.50",
|
|
166
|
+
_nextTheme: {
|
|
167
|
+
color: "text.danger",
|
|
168
|
+
background: "background.danger"
|
|
169
|
+
}
|
|
149
170
|
}
|
|
150
171
|
}
|
|
151
172
|
}
|
|
@@ -155,7 +176,15 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
155
176
|
variant: "gray",
|
|
156
177
|
css: {
|
|
157
178
|
close: {
|
|
158
|
-
background: "linear-gradient(270deg, #EDF0F2 75%, rgba(237, 240, 242, 0) 111.54%)"
|
|
179
|
+
background: "linear-gradient(270deg, #EDF0F2 75%, rgba(237, 240, 242, 0) 111.54%)",
|
|
180
|
+
borderTopLeftRadius: "0",
|
|
181
|
+
borderBottomLeftRadius: "0",
|
|
182
|
+
color: "gray.600",
|
|
183
|
+
_nextTheme: {
|
|
184
|
+
background: "background.danger",
|
|
185
|
+
boxShadow: "-7px 0px 15px -3px #0000001A",
|
|
186
|
+
color: "icon.danger"
|
|
187
|
+
}
|
|
159
188
|
}
|
|
160
189
|
}
|
|
161
190
|
},
|
|
@@ -163,7 +192,15 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
163
192
|
variant: "red",
|
|
164
193
|
css: {
|
|
165
194
|
close: {
|
|
166
|
-
background: "linear-gradient(270deg, #FDECEE 75%, rgba(237, 240, 242, 0) 111.54%)"
|
|
195
|
+
background: "linear-gradient(270deg, #FDECEE 75%, rgba(237, 240, 242, 0) 111.54%)",
|
|
196
|
+
borderTopLeftRadius: "0",
|
|
197
|
+
borderBottomLeftRadius: "0",
|
|
198
|
+
color: "red.400",
|
|
199
|
+
_nextTheme: {
|
|
200
|
+
background: "background.danger",
|
|
201
|
+
boxShadow: "-7px 0px 15px -3px #0000001A",
|
|
202
|
+
color: "icon.danger"
|
|
203
|
+
}
|
|
167
204
|
}
|
|
168
205
|
}
|
|
169
206
|
},
|
|
@@ -184,31 +221,76 @@ var tagSlotRecipe = defineSlotRecipe({
|
|
|
184
221
|
import { defineSlotRecipe as defineSlotRecipe2 } from "@pandacss/dev";
|
|
185
222
|
var variantColor = {
|
|
186
223
|
gray: {
|
|
187
|
-
root: {
|
|
224
|
+
root: {
|
|
225
|
+
backgroundColor: "gray.50",
|
|
226
|
+
_nextTheme: {
|
|
227
|
+
backgroundColor: "background.neutral.subtle"
|
|
228
|
+
}
|
|
229
|
+
}
|
|
188
230
|
},
|
|
189
231
|
sky: {
|
|
190
|
-
root: {
|
|
232
|
+
root: {
|
|
233
|
+
backgroundColor: "sky.400",
|
|
234
|
+
_nextTheme: {
|
|
235
|
+
backgroundColor: "chart.cat01"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
191
238
|
},
|
|
192
239
|
teal: {
|
|
193
|
-
root: {
|
|
240
|
+
root: {
|
|
241
|
+
backgroundColor: "teal.400",
|
|
242
|
+
_nextTheme: {
|
|
243
|
+
backgroundColor: "chart.cat02"
|
|
244
|
+
}
|
|
245
|
+
}
|
|
194
246
|
},
|
|
195
247
|
violet: {
|
|
196
|
-
root: {
|
|
248
|
+
root: {
|
|
249
|
+
backgroundColor: "violet.400",
|
|
250
|
+
_nextTheme: {
|
|
251
|
+
backgroundColor: "chart.cat03"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
197
254
|
},
|
|
198
255
|
amber: {
|
|
199
|
-
root: {
|
|
256
|
+
root: {
|
|
257
|
+
backgroundColor: "amber.400",
|
|
258
|
+
_nextTheme: {
|
|
259
|
+
backgroundColor: "chart.cat04"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
200
262
|
},
|
|
201
263
|
rose: {
|
|
202
|
-
root: {
|
|
264
|
+
root: {
|
|
265
|
+
backgroundColor: "rose.400",
|
|
266
|
+
_nextTheme: {
|
|
267
|
+
backgroundColor: "chart.cat06"
|
|
268
|
+
}
|
|
269
|
+
}
|
|
203
270
|
},
|
|
204
271
|
stone: {
|
|
205
|
-
root: {
|
|
272
|
+
root: {
|
|
273
|
+
backgroundColor: "stone.400",
|
|
274
|
+
_nextTheme: {
|
|
275
|
+
backgroundColor: "chart.cat05"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
206
278
|
},
|
|
207
279
|
lime: {
|
|
208
|
-
root: {
|
|
280
|
+
root: {
|
|
281
|
+
backgroundColor: "lime.400",
|
|
282
|
+
_nextTheme: {
|
|
283
|
+
backgroundColor: "chart.cat07"
|
|
284
|
+
}
|
|
285
|
+
}
|
|
209
286
|
},
|
|
210
287
|
pink: {
|
|
211
|
-
root: {
|
|
288
|
+
root: {
|
|
289
|
+
backgroundColor: "pink.400",
|
|
290
|
+
_nextTheme: {
|
|
291
|
+
backgroundColor: "chart.cat08"
|
|
292
|
+
}
|
|
293
|
+
}
|
|
212
294
|
}
|
|
213
295
|
};
|
|
214
296
|
var avatarSlotRecipe = defineSlotRecipe2({
|
|
@@ -233,6 +315,9 @@ var avatarSlotRecipe = defineSlotRecipe2({
|
|
|
233
315
|
cursor: "var(--mp-avatar--cursor)",
|
|
234
316
|
_hasBorder: {
|
|
235
317
|
borderWidth: "0.125rem"
|
|
318
|
+
},
|
|
319
|
+
_nextTheme: {
|
|
320
|
+
color: "text.inverse"
|
|
236
321
|
}
|
|
237
322
|
},
|
|
238
323
|
fallback: {
|
|
@@ -307,7 +392,12 @@ var avatarSlotRecipe = defineSlotRecipe2({
|
|
|
307
392
|
{
|
|
308
393
|
variantColor: "gray",
|
|
309
394
|
css: {
|
|
310
|
-
root: {
|
|
395
|
+
root: {
|
|
396
|
+
color: "gray.600",
|
|
397
|
+
_nextTheme: {
|
|
398
|
+
color: "text.secondary"
|
|
399
|
+
}
|
|
400
|
+
}
|
|
311
401
|
}
|
|
312
402
|
}
|
|
313
403
|
],
|
|
@@ -336,7 +426,11 @@ var avatarGroupSlotRecipe = defineSlotRecipe2({
|
|
|
336
426
|
justifyContent: "center",
|
|
337
427
|
borderRadius: "full",
|
|
338
428
|
userSelect: "none",
|
|
339
|
-
cursor: "var(--mp-avatar-group--cursor)"
|
|
429
|
+
cursor: "var(--mp-avatar-group--cursor)",
|
|
430
|
+
_nextTheme: {
|
|
431
|
+
color: "text.inverse",
|
|
432
|
+
backgroundColor: "background.brand.bold"
|
|
433
|
+
}
|
|
340
434
|
}
|
|
341
435
|
},
|
|
342
436
|
variants: {
|
|
@@ -372,7 +466,7 @@ var buttonRecipe = defineRecipe({
|
|
|
372
466
|
gap: "2",
|
|
373
467
|
height: "fit-content",
|
|
374
468
|
width: "fit-content",
|
|
375
|
-
borderWidth: "
|
|
469
|
+
borderWidth: "sm",
|
|
376
470
|
whiteSpace: "nowrap",
|
|
377
471
|
userSelect: "none",
|
|
378
472
|
appearance: "none",
|
|
@@ -407,6 +501,22 @@ var buttonRecipe = defineRecipe({
|
|
|
407
501
|
},
|
|
408
502
|
_loading: {
|
|
409
503
|
background: "blue.400"
|
|
504
|
+
},
|
|
505
|
+
_nextTheme: {
|
|
506
|
+
color: "text.inverse",
|
|
507
|
+
background: "background.brand.bold",
|
|
508
|
+
borderColor: "background.brand.bold",
|
|
509
|
+
_hover: {
|
|
510
|
+
background: "background.brand.bold.hovered",
|
|
511
|
+
borderColor: "background.brand.bold.hovered"
|
|
512
|
+
},
|
|
513
|
+
_active: {
|
|
514
|
+
background: "background.brand.bold.pressed",
|
|
515
|
+
borderColor: "background.brand.bold.pressed"
|
|
516
|
+
},
|
|
517
|
+
_loading: {
|
|
518
|
+
background: "background.brand.bold"
|
|
519
|
+
}
|
|
410
520
|
}
|
|
411
521
|
},
|
|
412
522
|
secondary: {
|
|
@@ -423,6 +533,22 @@ var buttonRecipe = defineRecipe({
|
|
|
423
533
|
},
|
|
424
534
|
_loading: {
|
|
425
535
|
background: "white"
|
|
536
|
+
},
|
|
537
|
+
_nextTheme: {
|
|
538
|
+
color: "text.link",
|
|
539
|
+
background: "background.neutral",
|
|
540
|
+
borderColor: "border.default",
|
|
541
|
+
_hover: {
|
|
542
|
+
background: "background.neutral.hovered",
|
|
543
|
+
borderColor: "border.default"
|
|
544
|
+
},
|
|
545
|
+
_active: {
|
|
546
|
+
background: "background.neutral.pressed",
|
|
547
|
+
borderColor: "border.default"
|
|
548
|
+
},
|
|
549
|
+
_loading: {
|
|
550
|
+
background: "background.neutral"
|
|
551
|
+
}
|
|
426
552
|
}
|
|
427
553
|
},
|
|
428
554
|
ghost: {
|
|
@@ -439,6 +565,22 @@ var buttonRecipe = defineRecipe({
|
|
|
439
565
|
},
|
|
440
566
|
_loading: {
|
|
441
567
|
background: "transparent"
|
|
568
|
+
},
|
|
569
|
+
_nextTheme: {
|
|
570
|
+
color: "text.secondary",
|
|
571
|
+
background: "transparent",
|
|
572
|
+
borderColor: "transparent",
|
|
573
|
+
_hover: {
|
|
574
|
+
background: "background.neutral.hovered",
|
|
575
|
+
borderColor: "background.neutral.hovered"
|
|
576
|
+
},
|
|
577
|
+
_active: {
|
|
578
|
+
background: "background.neutral.pressed",
|
|
579
|
+
borderColor: "background.neutral.pressed"
|
|
580
|
+
},
|
|
581
|
+
_loading: {
|
|
582
|
+
background: "transparent"
|
|
583
|
+
}
|
|
442
584
|
}
|
|
443
585
|
},
|
|
444
586
|
danger: {
|
|
@@ -453,12 +595,32 @@ var buttonRecipe = defineRecipe({
|
|
|
453
595
|
background: "red.700",
|
|
454
596
|
borderColor: "red.700"
|
|
455
597
|
},
|
|
456
|
-
|
|
598
|
+
_focus: {
|
|
457
599
|
borderColor: "red.400",
|
|
458
600
|
boxShadow: "0 0 0 3px #FDECEE"
|
|
459
601
|
},
|
|
460
602
|
_loading: {
|
|
461
603
|
background: "red.400"
|
|
604
|
+
},
|
|
605
|
+
_nextTheme: {
|
|
606
|
+
color: "text.inverse",
|
|
607
|
+
background: "background.danger.bold",
|
|
608
|
+
borderColor: "background.danger.bold",
|
|
609
|
+
_hover: {
|
|
610
|
+
background: "background.danger.bold.hovered",
|
|
611
|
+
borderColor: "background.danger.bold.hovered"
|
|
612
|
+
},
|
|
613
|
+
_active: {
|
|
614
|
+
background: "background.danger.bold.pressed",
|
|
615
|
+
borderColor: "background.danger.bold.pressed"
|
|
616
|
+
},
|
|
617
|
+
_focus: {
|
|
618
|
+
borderColor: "border.focused",
|
|
619
|
+
boxShadow: "focus"
|
|
620
|
+
},
|
|
621
|
+
_loading: {
|
|
622
|
+
background: "background.danger.bold"
|
|
623
|
+
}
|
|
462
624
|
}
|
|
463
625
|
},
|
|
464
626
|
textLink: {
|
|
@@ -482,6 +644,27 @@ var buttonRecipe = defineRecipe({
|
|
|
482
644
|
},
|
|
483
645
|
_loading: {
|
|
484
646
|
background: "white"
|
|
647
|
+
},
|
|
648
|
+
_nextTheme: {
|
|
649
|
+
color: "text.link",
|
|
650
|
+
background: "transparent",
|
|
651
|
+
borderColor: "transparent",
|
|
652
|
+
_hover: {
|
|
653
|
+
color: "text.link",
|
|
654
|
+
textDecoration: "underline"
|
|
655
|
+
},
|
|
656
|
+
_active: {
|
|
657
|
+
color: "text.link.pressed"
|
|
658
|
+
},
|
|
659
|
+
_disabled: {
|
|
660
|
+
color: "text.disabled",
|
|
661
|
+
_hover: {
|
|
662
|
+
color: "text.disabled"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
_loading: {
|
|
666
|
+
background: "text.inverse"
|
|
667
|
+
}
|
|
485
668
|
}
|
|
486
669
|
}
|
|
487
670
|
},
|
|
@@ -495,11 +678,19 @@ var buttonRecipe = defineRecipe({
|
|
|
495
678
|
},
|
|
496
679
|
_hasIcon: {
|
|
497
680
|
paddingX: "1",
|
|
498
|
-
paddingY: "1 !important"
|
|
681
|
+
paddingY: "1 !important",
|
|
682
|
+
_nextTheme: {
|
|
683
|
+
paddingX: "3xs !",
|
|
684
|
+
paddingY: "3xs !important"
|
|
685
|
+
}
|
|
499
686
|
},
|
|
500
687
|
_hasLabel: {
|
|
501
688
|
paddingX: "2 !important",
|
|
502
|
-
paddingY: "1"
|
|
689
|
+
paddingY: "1",
|
|
690
|
+
_nextTheme: {
|
|
691
|
+
paddingX: "xs !important",
|
|
692
|
+
paddingY: "3xs"
|
|
693
|
+
}
|
|
503
694
|
}
|
|
504
695
|
},
|
|
505
696
|
md: {
|
|
@@ -511,11 +702,19 @@ var buttonRecipe = defineRecipe({
|
|
|
511
702
|
},
|
|
512
703
|
_hasIcon: {
|
|
513
704
|
paddingX: "1.5",
|
|
514
|
-
paddingY: "1.5 !important"
|
|
705
|
+
paddingY: "1.5 !important",
|
|
706
|
+
_nextTheme: {
|
|
707
|
+
paddingX: "2xs",
|
|
708
|
+
paddingY: "2xs !important"
|
|
709
|
+
}
|
|
515
710
|
},
|
|
516
711
|
_hasLabel: {
|
|
517
712
|
paddingX: "4 !important",
|
|
518
|
-
paddingY: "2"
|
|
713
|
+
paddingY: "2",
|
|
714
|
+
_nextTheme: {
|
|
715
|
+
paddingX: "md !important",
|
|
716
|
+
paddingY: "xs"
|
|
717
|
+
}
|
|
519
718
|
}
|
|
520
719
|
}
|
|
521
720
|
}
|
|
@@ -525,9 +724,13 @@ var buttonRecipe = defineRecipe({
|
|
|
525
724
|
variant: ["textLink"],
|
|
526
725
|
css: {
|
|
527
726
|
borderRadius: "sm",
|
|
528
|
-
|
|
727
|
+
_focus: {
|
|
529
728
|
borderColor: "white",
|
|
530
|
-
boxShadow: "focus"
|
|
729
|
+
boxShadow: "focus",
|
|
730
|
+
_nextTheme: {
|
|
731
|
+
borderColor: "border.focused",
|
|
732
|
+
boxShadow: "focus"
|
|
733
|
+
}
|
|
531
734
|
}
|
|
532
735
|
}
|
|
533
736
|
},
|
|
@@ -540,9 +743,13 @@ var buttonRecipe = defineRecipe({
|
|
|
540
743
|
{
|
|
541
744
|
variant: ["primary", "secondary", "ghost"],
|
|
542
745
|
css: {
|
|
543
|
-
|
|
746
|
+
_focus: {
|
|
544
747
|
borderColor: "blue.400",
|
|
545
|
-
boxShadow: "focus"
|
|
748
|
+
boxShadow: "focus",
|
|
749
|
+
_nextTheme: {
|
|
750
|
+
borderColor: "border.focused",
|
|
751
|
+
boxShadow: "focus"
|
|
752
|
+
}
|
|
546
753
|
}
|
|
547
754
|
}
|
|
548
755
|
},
|
|
@@ -557,6 +764,15 @@ var buttonRecipe = defineRecipe({
|
|
|
557
764
|
_hover: {
|
|
558
765
|
background: "gray.50",
|
|
559
766
|
borderColor: "gray.50"
|
|
767
|
+
},
|
|
768
|
+
_nextTheme: {
|
|
769
|
+
color: "text.disabled",
|
|
770
|
+
background: "background.disabled",
|
|
771
|
+
borderColor: "background.disabled",
|
|
772
|
+
_hover: {
|
|
773
|
+
background: "background.disabled",
|
|
774
|
+
borderColor: "background.disabled"
|
|
775
|
+
}
|
|
560
776
|
}
|
|
561
777
|
}
|
|
562
778
|
}
|
|
@@ -628,11 +844,22 @@ var inputSlotRecipe = defineSlotRecipe3({
|
|
|
628
844
|
borderWidth: "1px",
|
|
629
845
|
borderColor: "inherit",
|
|
630
846
|
borderRadius: "sm",
|
|
631
|
-
paddingInline: "
|
|
847
|
+
paddingInline: "3",
|
|
632
848
|
appearance: "none",
|
|
849
|
+
caretColor: "blue.500",
|
|
633
850
|
transition: "all 250ms",
|
|
634
851
|
_isFullWidth: {
|
|
635
852
|
width: "full"
|
|
853
|
+
},
|
|
854
|
+
_placeholder: {
|
|
855
|
+
color: "gray.400"
|
|
856
|
+
},
|
|
857
|
+
_nextTheme: {
|
|
858
|
+
color: "text.default",
|
|
859
|
+
caretColor: "border.selected",
|
|
860
|
+
_placeholder: {
|
|
861
|
+
borderColor: "text.placeholder"
|
|
862
|
+
}
|
|
636
863
|
}
|
|
637
864
|
},
|
|
638
865
|
clear: {
|
|
@@ -651,6 +878,9 @@ var inputSlotRecipe = defineSlotRecipe3({
|
|
|
651
878
|
_groupHover: {
|
|
652
879
|
visibility: "var(--mp-input--visibility)",
|
|
653
880
|
opacity: "var(--mp-input--opacity)"
|
|
881
|
+
},
|
|
882
|
+
_nextTheme: {
|
|
883
|
+
color: "icon.default"
|
|
654
884
|
}
|
|
655
885
|
}
|
|
656
886
|
},
|
|
@@ -695,6 +925,42 @@ var inputSlotRecipe = defineSlotRecipe3({
|
|
|
695
925
|
_readOnly: {
|
|
696
926
|
boxShadow: "none",
|
|
697
927
|
userSelect: "all"
|
|
928
|
+
},
|
|
929
|
+
_nextTheme: {
|
|
930
|
+
backgroundColor: "background.neutral",
|
|
931
|
+
borderColor: "border.form",
|
|
932
|
+
_hover: {
|
|
933
|
+
borderColor: "border.form",
|
|
934
|
+
backgroundColor: "background.neutral.hovered",
|
|
935
|
+
_invalid: {
|
|
936
|
+
borderColor: "border.danger"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
_focus: {
|
|
940
|
+
borderColor: "border.focused",
|
|
941
|
+
boxShadow: "focus",
|
|
942
|
+
_hover: {
|
|
943
|
+
borderColor: "border.focused"
|
|
944
|
+
},
|
|
945
|
+
_invalid: {
|
|
946
|
+
borderColor: "border.focused",
|
|
947
|
+
_hover: {
|
|
948
|
+
borderColor: "border.focused"
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
_disabled: {
|
|
953
|
+
color: "text.disabled",
|
|
954
|
+
backgroundColor: "background.disabled",
|
|
955
|
+
borderColor: "border.disabled",
|
|
956
|
+
_hover: {
|
|
957
|
+
borderColor: "border.disabled",
|
|
958
|
+
backgroundColor: "background.disabled"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
_invalid: {
|
|
962
|
+
borderColor: "border.danger"
|
|
963
|
+
}
|
|
698
964
|
}
|
|
699
965
|
}
|
|
700
966
|
}
|
|
@@ -751,7 +1017,7 @@ var inputGroupSlotRecipe = defineSlotRecipe3({
|
|
|
751
1017
|
},
|
|
752
1018
|
"&[data-with-left-bg-addon=true]": {
|
|
753
1019
|
"& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
|
|
754
|
-
paddingLeft: "calc(var(--mp-input-offset--left) +
|
|
1020
|
+
paddingLeft: "calc(var(--mp-input-offset--left) + 14px)"
|
|
755
1021
|
}
|
|
756
1022
|
},
|
|
757
1023
|
"&[data-with-right-addon=true]": {
|
|
@@ -769,7 +1035,7 @@ var inputGroupSlotRecipe = defineSlotRecipe3({
|
|
|
769
1035
|
},
|
|
770
1036
|
"&[data-with-right-bg-addon=true]": {
|
|
771
1037
|
"& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
|
|
772
|
-
paddingRight: "calc(var(--mp-input-offset--right) +
|
|
1038
|
+
paddingRight: "calc(var(--mp-input-offset--right) + 14px)"
|
|
773
1039
|
},
|
|
774
1040
|
"&[data-with-clearable=true]": {
|
|
775
1041
|
"& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
|
|
@@ -779,6 +1045,17 @@ var inputGroupSlotRecipe = defineSlotRecipe3({
|
|
|
779
1045
|
"--mp-input--right": "calc(var(--mp-input-offset--right) + 16px)"
|
|
780
1046
|
}
|
|
781
1047
|
}
|
|
1048
|
+
},
|
|
1049
|
+
_nextTheme: {
|
|
1050
|
+
"&:has(input:hover) [data-pixel-component=MpInputAddon][data-has-background=true]": {
|
|
1051
|
+
backgroundColor: "background.neutral.subtle.hovered"
|
|
1052
|
+
},
|
|
1053
|
+
"&:has(input:focus) [data-pixel-component=MpInputAddon][data-has-background=true]": {
|
|
1054
|
+
backgroundColor: "background.neutral.subtle.pressed"
|
|
1055
|
+
},
|
|
1056
|
+
"&:has(input:disabled) [data-pixel-component=MpInputAddon][data-has-background=true]": {
|
|
1057
|
+
backgroundColor: "background.neutral.subtle.pressed"
|
|
1058
|
+
}
|
|
782
1059
|
}
|
|
783
1060
|
}
|
|
784
1061
|
},
|
|
@@ -798,8 +1075,14 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
|
|
|
798
1075
|
paddingX: "0",
|
|
799
1076
|
whiteSpace: "nowrap",
|
|
800
1077
|
zIndex: "2",
|
|
1078
|
+
transition: "all 250ms",
|
|
801
1079
|
_hasBackground: {
|
|
802
1080
|
backgroundColor: "gray.50"
|
|
1081
|
+
},
|
|
1082
|
+
_nextTheme: {
|
|
1083
|
+
_hasBackground: {
|
|
1084
|
+
backgroundColor: "background.neutral.subtle"
|
|
1085
|
+
}
|
|
803
1086
|
}
|
|
804
1087
|
}
|
|
805
1088
|
},
|
|
@@ -833,11 +1116,11 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
|
|
|
833
1116
|
},
|
|
834
1117
|
md: {
|
|
835
1118
|
root: {
|
|
836
|
-
height: "
|
|
1119
|
+
height: "32px",
|
|
837
1120
|
borderRadius: "sm",
|
|
838
1121
|
_hasBackground: {
|
|
839
|
-
_placementLeft: { left: "
|
|
840
|
-
_placementRight: { right: "
|
|
1122
|
+
_placementLeft: { left: "3px" },
|
|
1123
|
+
_placementRight: { right: "3px" }
|
|
841
1124
|
}
|
|
842
1125
|
}
|
|
843
1126
|
}
|
|
@@ -908,6 +1191,48 @@ var selectSlotRecipe = defineSlotRecipe4({
|
|
|
908
1191
|
},
|
|
909
1192
|
_isFullWidth: {
|
|
910
1193
|
width: "full"
|
|
1194
|
+
},
|
|
1195
|
+
_placeholder: {
|
|
1196
|
+
color: "gray.400"
|
|
1197
|
+
},
|
|
1198
|
+
_nextTheme: {
|
|
1199
|
+
backgroundColor: "background.neutral",
|
|
1200
|
+
borderColor: "border.form",
|
|
1201
|
+
_hover: {
|
|
1202
|
+
borderColor: "border.form",
|
|
1203
|
+
backgroundColor: "background.neutral.hovered",
|
|
1204
|
+
_invalid: {
|
|
1205
|
+
borderColor: "border.danger"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
_focus: {
|
|
1209
|
+
borderColor: "transparent",
|
|
1210
|
+
boxShadow: "focus",
|
|
1211
|
+
_hover: {
|
|
1212
|
+
borderColor: "transparent"
|
|
1213
|
+
},
|
|
1214
|
+
_invalid: {
|
|
1215
|
+
borderColor: "transparent",
|
|
1216
|
+
_hover: {
|
|
1217
|
+
borderColor: "transparent"
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
_disabled: {
|
|
1222
|
+
color: "text.disabled",
|
|
1223
|
+
backgroundColor: "background.disabled",
|
|
1224
|
+
borderColor: "border.disabled",
|
|
1225
|
+
_hover: {
|
|
1226
|
+
borderColor: "border.disabled",
|
|
1227
|
+
backgroundColor: "background.disabled"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
_invalid: {
|
|
1231
|
+
borderColor: "border.danger"
|
|
1232
|
+
},
|
|
1233
|
+
_placeholder: {
|
|
1234
|
+
borderColor: "text.placeholder"
|
|
1235
|
+
}
|
|
911
1236
|
}
|
|
912
1237
|
},
|
|
913
1238
|
clear: {
|
|
@@ -1108,12 +1433,22 @@ var accordionSlotRecipe = defineSlotRecipe5({
|
|
|
1108
1433
|
fontWeight: "semiBold",
|
|
1109
1434
|
fontSize: "md",
|
|
1110
1435
|
color: "dark",
|
|
1111
|
-
_disabled: { opacity: "0.4", cursor: "not-allowed" }
|
|
1436
|
+
_disabled: { opacity: "0.4", cursor: "not-allowed" },
|
|
1437
|
+
_nextTheme: {
|
|
1438
|
+
color: "text.default"
|
|
1439
|
+
}
|
|
1112
1440
|
},
|
|
1113
1441
|
item: {
|
|
1114
1442
|
borderBottomWidth: "1px",
|
|
1115
1443
|
borderColor: "gray.100",
|
|
1116
|
-
_last: {
|
|
1444
|
+
_last: {
|
|
1445
|
+
borderBottomWidth: "1px",
|
|
1446
|
+
borderColor: "gray.100",
|
|
1447
|
+
_nextTheme: { borderColor: "border.default" }
|
|
1448
|
+
},
|
|
1449
|
+
_nextTheme: {
|
|
1450
|
+
borderColor: "border.default"
|
|
1451
|
+
}
|
|
1117
1452
|
},
|
|
1118
1453
|
panel: {
|
|
1119
1454
|
py: 3
|
|
@@ -1152,7 +1487,10 @@ var popoverContentRecipe = defineRecipe5({
|
|
|
1152
1487
|
shadow: "lg",
|
|
1153
1488
|
borderWidth: "1px",
|
|
1154
1489
|
borderColor: "gray.400",
|
|
1155
|
-
zIndex: "popover"
|
|
1490
|
+
zIndex: "popover",
|
|
1491
|
+
_nextTheme: {
|
|
1492
|
+
borderColor: "border.bold"
|
|
1493
|
+
}
|
|
1156
1494
|
}
|
|
1157
1495
|
},
|
|
1158
1496
|
isDark: {
|
|
@@ -1161,7 +1499,10 @@ var popoverContentRecipe = defineRecipe5({
|
|
|
1161
1499
|
color: "white"
|
|
1162
1500
|
},
|
|
1163
1501
|
false: {
|
|
1164
|
-
background: "white"
|
|
1502
|
+
background: "white",
|
|
1503
|
+
_nextTheme: {
|
|
1504
|
+
background: "background.stage"
|
|
1505
|
+
}
|
|
1165
1506
|
}
|
|
1166
1507
|
}
|
|
1167
1508
|
},
|
|
@@ -1200,19 +1541,32 @@ var popoverListItemRecipe = defineRecipe5({
|
|
|
1200
1541
|
_disabled: {
|
|
1201
1542
|
color: "gray.400",
|
|
1202
1543
|
bg: "white",
|
|
1203
|
-
cursor: "not-allowed"
|
|
1544
|
+
cursor: "not-allowed",
|
|
1545
|
+
_nextTheme: {
|
|
1546
|
+
background: "background.disabled",
|
|
1547
|
+
color: "text.disabled"
|
|
1548
|
+
}
|
|
1204
1549
|
},
|
|
1205
1550
|
_highlight: {
|
|
1206
|
-
background: "
|
|
1207
|
-
bg: "gray.50",
|
|
1551
|
+
background: "gray.50",
|
|
1208
1552
|
color: "dark",
|
|
1209
|
-
outline: 0
|
|
1553
|
+
outline: 0,
|
|
1554
|
+
_nextTheme: {
|
|
1555
|
+
background: "background.neutral.hovered",
|
|
1556
|
+
color: "text.default"
|
|
1557
|
+
}
|
|
1210
1558
|
},
|
|
1211
1559
|
_active: {
|
|
1212
1560
|
background: "ice.50",
|
|
1213
|
-
bg: "ice.50",
|
|
1214
1561
|
color: "dark",
|
|
1215
|
-
outline: 0
|
|
1562
|
+
outline: 0,
|
|
1563
|
+
_nextTheme: {
|
|
1564
|
+
background: "background.brand.selected",
|
|
1565
|
+
color: "text.default"
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
_nextTheme: {
|
|
1569
|
+
color: "text.default"
|
|
1216
1570
|
}
|
|
1217
1571
|
}
|
|
1218
1572
|
});
|
|
@@ -1233,150 +1587,271 @@ var badgeRecipe = defineRecipe6({
|
|
|
1233
1587
|
solid: {
|
|
1234
1588
|
color: "white"
|
|
1235
1589
|
},
|
|
1236
|
-
subtle: {}
|
|
1590
|
+
subtle: {},
|
|
1591
|
+
"additionalInformation": {},
|
|
1592
|
+
"tableStatus": {},
|
|
1593
|
+
indicator: {}
|
|
1237
1594
|
},
|
|
1238
1595
|
variantColor: {
|
|
1239
1596
|
blue: {},
|
|
1240
1597
|
green: {},
|
|
1241
1598
|
orange: {},
|
|
1242
1599
|
red: {},
|
|
1243
|
-
gray: {}
|
|
1600
|
+
gray: {},
|
|
1601
|
+
announcement: {},
|
|
1602
|
+
information: {},
|
|
1603
|
+
warning: {},
|
|
1604
|
+
completed: {},
|
|
1605
|
+
critical: {}
|
|
1244
1606
|
},
|
|
1245
1607
|
size: {
|
|
1246
1608
|
sm: {
|
|
1247
1609
|
fontSize: "xs",
|
|
1248
1610
|
fontWeight: "semiBold",
|
|
1249
1611
|
lineHeight: "0",
|
|
1250
|
-
letterSpacing: "normal"
|
|
1251
|
-
minWidth: "4",
|
|
1252
|
-
height: "4"
|
|
1612
|
+
letterSpacing: "normal"
|
|
1253
1613
|
},
|
|
1254
1614
|
md: {
|
|
1255
1615
|
fontSize: "md",
|
|
1256
1616
|
fontWeight: "regular",
|
|
1257
1617
|
lineHeight: "0",
|
|
1258
|
-
letterSpacing: "normal"
|
|
1259
|
-
minWidth: "5",
|
|
1260
|
-
height: "5"
|
|
1618
|
+
letterSpacing: "normal"
|
|
1261
1619
|
}
|
|
1262
1620
|
}
|
|
1263
1621
|
},
|
|
1264
1622
|
compoundVariants: [
|
|
1265
1623
|
// Size
|
|
1266
1624
|
{
|
|
1267
|
-
variant: "solid",
|
|
1625
|
+
variant: ["solid", "additionalInformation", "tableStatus"],
|
|
1268
1626
|
size: "md",
|
|
1269
1627
|
css: {
|
|
1270
1628
|
paddingX: "1.5",
|
|
1271
|
-
paddingY: "0.5"
|
|
1629
|
+
paddingY: "0.5",
|
|
1630
|
+
minWidth: "5",
|
|
1631
|
+
height: "5"
|
|
1272
1632
|
}
|
|
1273
1633
|
},
|
|
1274
1634
|
{
|
|
1275
|
-
variant: "solid",
|
|
1635
|
+
variant: ["solid", "additionalInformation", "tableStatus"],
|
|
1276
1636
|
size: "sm",
|
|
1277
1637
|
css: {
|
|
1278
1638
|
paddingX: "1",
|
|
1279
|
-
paddingY: "0.5"
|
|
1639
|
+
paddingY: "0.5",
|
|
1640
|
+
minWidth: "4",
|
|
1641
|
+
height: "4"
|
|
1280
1642
|
}
|
|
1281
1643
|
},
|
|
1282
1644
|
{
|
|
1283
|
-
variant: "subtle",
|
|
1645
|
+
variant: ["subtle", "additionalInformation", "tableStatus"],
|
|
1284
1646
|
size: "md",
|
|
1285
1647
|
css: {
|
|
1286
1648
|
paddingX: "2",
|
|
1287
|
-
paddingY: "0"
|
|
1649
|
+
paddingY: "0",
|
|
1650
|
+
minWidth: "5",
|
|
1651
|
+
height: "5"
|
|
1288
1652
|
}
|
|
1289
1653
|
},
|
|
1290
1654
|
{
|
|
1291
|
-
variant: "subtle",
|
|
1655
|
+
variant: ["subtle", "additionalInformation", "tableStatus"],
|
|
1292
1656
|
size: "sm",
|
|
1293
1657
|
css: {
|
|
1294
1658
|
paddingX: "1",
|
|
1295
|
-
paddingY: "0"
|
|
1659
|
+
paddingY: "0",
|
|
1660
|
+
minWidth: "4",
|
|
1661
|
+
height: "4"
|
|
1296
1662
|
}
|
|
1297
1663
|
},
|
|
1298
|
-
// Solid
|
|
1299
1664
|
{
|
|
1300
|
-
variant: "
|
|
1301
|
-
|
|
1665
|
+
variant: "indicator",
|
|
1666
|
+
size: ["sm", "md"],
|
|
1302
1667
|
css: {
|
|
1303
|
-
|
|
1668
|
+
width: "3",
|
|
1669
|
+
height: "3"
|
|
1304
1670
|
}
|
|
1305
1671
|
},
|
|
1672
|
+
// Solid / Additional Information
|
|
1306
1673
|
{
|
|
1307
|
-
variant: "solid",
|
|
1308
|
-
variantColor: "
|
|
1674
|
+
variant: ["solid", "additionalInformation"],
|
|
1675
|
+
variantColor: ["blue", "information"],
|
|
1309
1676
|
css: {
|
|
1310
|
-
backgroundColor: "
|
|
1677
|
+
backgroundColor: "sky.400",
|
|
1678
|
+
color: "white",
|
|
1679
|
+
_nextTheme: {
|
|
1680
|
+
backgroundColor: "background.brand.bold",
|
|
1681
|
+
color: "text.inverse"
|
|
1682
|
+
}
|
|
1311
1683
|
}
|
|
1312
1684
|
},
|
|
1313
1685
|
{
|
|
1314
|
-
variant: "solid",
|
|
1315
|
-
variantColor: "
|
|
1686
|
+
variant: ["solid", "additionalInformation"],
|
|
1687
|
+
variantColor: ["green", "completed"],
|
|
1316
1688
|
css: {
|
|
1317
|
-
backgroundColor: "
|
|
1689
|
+
backgroundColor: "teal.400",
|
|
1690
|
+
color: "white",
|
|
1691
|
+
_nextTheme: {
|
|
1692
|
+
backgroundColor: "background.success.bold",
|
|
1693
|
+
color: "text.inverse"
|
|
1694
|
+
}
|
|
1318
1695
|
}
|
|
1319
1696
|
},
|
|
1320
1697
|
{
|
|
1321
|
-
variant: "solid",
|
|
1322
|
-
variantColor: "
|
|
1698
|
+
variant: ["solid", "additionalInformation"],
|
|
1699
|
+
variantColor: ["orange", "warning"],
|
|
1700
|
+
css: {
|
|
1701
|
+
backgroundColor: "amber.400",
|
|
1702
|
+
color: "white",
|
|
1703
|
+
_nextTheme: {
|
|
1704
|
+
backgroundColor: "background.warning.bold",
|
|
1705
|
+
color: "text.warning.inverse"
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
variant: ["solid", "additionalInformation"],
|
|
1711
|
+
variantColor: ["red", "critical"],
|
|
1323
1712
|
css: {
|
|
1324
|
-
backgroundColor: "rose.400"
|
|
1713
|
+
backgroundColor: "rose.400",
|
|
1714
|
+
color: "white",
|
|
1715
|
+
_nextTheme: {
|
|
1716
|
+
backgroundColor: "background.danger.bold",
|
|
1717
|
+
color: "text.inverse"
|
|
1718
|
+
}
|
|
1325
1719
|
}
|
|
1326
1720
|
},
|
|
1327
1721
|
{
|
|
1328
|
-
variant: "solid",
|
|
1329
|
-
variantColor: "gray",
|
|
1722
|
+
variant: ["solid", "additionalInformation"],
|
|
1723
|
+
variantColor: ["gray", "announcement"],
|
|
1330
1724
|
css: {
|
|
1331
|
-
backgroundColor: "stone.400"
|
|
1725
|
+
backgroundColor: "stone.400",
|
|
1726
|
+
color: "white",
|
|
1727
|
+
_nextTheme: {
|
|
1728
|
+
backgroundColor: "background.neutral.bold",
|
|
1729
|
+
color: "text.inverse"
|
|
1730
|
+
}
|
|
1332
1731
|
}
|
|
1333
1732
|
},
|
|
1334
|
-
// Subtle
|
|
1733
|
+
// Subtle / Table Status
|
|
1335
1734
|
{
|
|
1336
|
-
variant: ["subtle"],
|
|
1337
|
-
variantColor: "blue",
|
|
1735
|
+
variant: ["subtle", "tableStatus"],
|
|
1736
|
+
variantColor: ["blue", "information"],
|
|
1338
1737
|
css: {
|
|
1339
1738
|
backgroundColor: "blue.50",
|
|
1340
|
-
color: "blue.700"
|
|
1739
|
+
color: "blue.700",
|
|
1740
|
+
_nextTheme: {
|
|
1741
|
+
backgroundColor: "background.brand",
|
|
1742
|
+
color: "text.information"
|
|
1743
|
+
}
|
|
1341
1744
|
}
|
|
1342
1745
|
},
|
|
1343
1746
|
{
|
|
1344
|
-
variant: ["subtle"],
|
|
1345
|
-
variantColor: "green",
|
|
1747
|
+
variant: ["subtle", "tableStatus"],
|
|
1748
|
+
variantColor: ["green", "completed"],
|
|
1346
1749
|
css: {
|
|
1347
1750
|
backgroundColor: "green.50",
|
|
1348
|
-
color: "green.700"
|
|
1751
|
+
color: "green.700",
|
|
1752
|
+
_nextTheme: {
|
|
1753
|
+
backgroundColor: "background.success",
|
|
1754
|
+
color: "text.success"
|
|
1755
|
+
}
|
|
1349
1756
|
}
|
|
1350
1757
|
},
|
|
1351
1758
|
{
|
|
1352
|
-
variant: ["subtle"],
|
|
1353
|
-
variantColor: "orange",
|
|
1759
|
+
variant: ["subtle", "tableStatus"],
|
|
1760
|
+
variantColor: ["orange", "warning"],
|
|
1354
1761
|
css: {
|
|
1355
1762
|
backgroundColor: "orange.50",
|
|
1356
|
-
color: "orange.700"
|
|
1763
|
+
color: "orange.700",
|
|
1764
|
+
_nextTheme: {
|
|
1765
|
+
backgroundColor: "background.warning",
|
|
1766
|
+
color: "text.warning"
|
|
1767
|
+
}
|
|
1357
1768
|
}
|
|
1358
1769
|
},
|
|
1359
1770
|
{
|
|
1360
|
-
variant: ["subtle"],
|
|
1361
|
-
variantColor: "red",
|
|
1771
|
+
variant: ["subtle", "tableStatus"],
|
|
1772
|
+
variantColor: ["red", "critical"],
|
|
1362
1773
|
css: {
|
|
1363
1774
|
backgroundColor: "red.50",
|
|
1364
|
-
color: "red.700"
|
|
1775
|
+
color: "red.700",
|
|
1776
|
+
_nextTheme: {
|
|
1777
|
+
backgroundColor: "background.danger",
|
|
1778
|
+
color: "text.danger"
|
|
1779
|
+
}
|
|
1365
1780
|
}
|
|
1366
1781
|
},
|
|
1367
1782
|
{
|
|
1368
|
-
variant: ["subtle"],
|
|
1369
|
-
variantColor: "gray",
|
|
1783
|
+
variant: ["subtle", "tableStatus"],
|
|
1784
|
+
variantColor: ["gray", "announcement"],
|
|
1370
1785
|
css: {
|
|
1371
1786
|
backgroundColor: "gray.50",
|
|
1372
|
-
color: "black"
|
|
1787
|
+
color: "black",
|
|
1788
|
+
_nextTheme: {
|
|
1789
|
+
color: "text.default",
|
|
1790
|
+
backgroundColor: "background.neutral.subtle"
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
},
|
|
1794
|
+
// Indicator
|
|
1795
|
+
{
|
|
1796
|
+
variant: "indicator",
|
|
1797
|
+
variantColor: ["blue", "information"],
|
|
1798
|
+
css: {
|
|
1799
|
+
backgroundColor: "sky.400",
|
|
1800
|
+
_nextTheme: {
|
|
1801
|
+
backgroundColor: "icon.brand",
|
|
1802
|
+
color: "text.inverse"
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
variant: "indicator",
|
|
1808
|
+
variantColor: ["green", "completed"],
|
|
1809
|
+
css: {
|
|
1810
|
+
backgroundColor: "teal.400",
|
|
1811
|
+
_nextTheme: {
|
|
1812
|
+
backgroundColor: "icon.success",
|
|
1813
|
+
color: "text.inverse"
|
|
1814
|
+
}
|
|
1815
|
+
}
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
variant: "indicator",
|
|
1819
|
+
variantColor: ["orange", "warning"],
|
|
1820
|
+
css: {
|
|
1821
|
+
backgroundColor: "amber.400",
|
|
1822
|
+
_nextTheme: {
|
|
1823
|
+
backgroundColor: "icon.warning",
|
|
1824
|
+
color: "text.warning.inverse"
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
variant: "indicator",
|
|
1830
|
+
variantColor: ["red", "critical"],
|
|
1831
|
+
css: {
|
|
1832
|
+
backgroundColor: "rose.400",
|
|
1833
|
+
_nextTheme: {
|
|
1834
|
+
backgroundColor: "icon.danger",
|
|
1835
|
+
color: "text.inverse"
|
|
1836
|
+
}
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
variant: "indicator",
|
|
1841
|
+
variantColor: ["gray", "announcement"],
|
|
1842
|
+
css: {
|
|
1843
|
+
backgroundColor: "stone.400",
|
|
1844
|
+
_nextTheme: {
|
|
1845
|
+
color: "text.inverse",
|
|
1846
|
+
backgroundColor: "icon.default"
|
|
1847
|
+
}
|
|
1373
1848
|
}
|
|
1374
1849
|
}
|
|
1375
1850
|
],
|
|
1376
1851
|
defaultVariants: {
|
|
1377
|
-
variant: "
|
|
1852
|
+
variant: "additionalInformation",
|
|
1378
1853
|
size: "md",
|
|
1379
|
-
variantColor: "
|
|
1854
|
+
variantColor: "information"
|
|
1380
1855
|
}
|
|
1381
1856
|
});
|
|
1382
1857
|
|
|
@@ -1386,54 +1861,8 @@ var textareaRecipe = defineRecipe7({
|
|
|
1386
1861
|
className: "textarea",
|
|
1387
1862
|
jsx: ["MpTextarea", "mp-textarea"],
|
|
1388
1863
|
base: {
|
|
1389
|
-
position: "relative",
|
|
1390
|
-
display: "flex",
|
|
1391
|
-
alignItems: "center",
|
|
1392
|
-
outline: "0",
|
|
1393
|
-
borderWidth: "1px",
|
|
1394
|
-
borderColor: "gray.100",
|
|
1395
|
-
borderRadius: "md",
|
|
1396
|
-
color: "dark",
|
|
1397
|
-
backgroundColor: "white",
|
|
1398
|
-
appearance: "none",
|
|
1399
|
-
transition: "all 250ms",
|
|
1400
1864
|
minHeight: "20",
|
|
1401
|
-
|
|
1402
|
-
fontWeight: "regular",
|
|
1403
|
-
lineHeight: "md",
|
|
1404
|
-
paddingX: "3",
|
|
1405
|
-
paddingTop: "2",
|
|
1406
|
-
paddingBottom: "5",
|
|
1407
|
-
resize: "both",
|
|
1408
|
-
_isFullWidth: {
|
|
1409
|
-
width: "full"
|
|
1410
|
-
},
|
|
1411
|
-
_hover: {
|
|
1412
|
-
borderColor: "gray.400"
|
|
1413
|
-
},
|
|
1414
|
-
_focus: {
|
|
1415
|
-
borderColor: "blue.500",
|
|
1416
|
-
boxShadow: "outer",
|
|
1417
|
-
_hover: {
|
|
1418
|
-
borderColor: "blue.500"
|
|
1419
|
-
},
|
|
1420
|
-
_invalid: {
|
|
1421
|
-
borderColor: "red.400"
|
|
1422
|
-
}
|
|
1423
|
-
},
|
|
1424
|
-
_disabled: {
|
|
1425
|
-
color: "gray.400",
|
|
1426
|
-
backgroundColor: "gray.50",
|
|
1427
|
-
borderColor: "gray.100",
|
|
1428
|
-
cursor: "not-allowed"
|
|
1429
|
-
},
|
|
1430
|
-
_invalid: {
|
|
1431
|
-
borderColor: "red.400"
|
|
1432
|
-
},
|
|
1433
|
-
_readOnly: {
|
|
1434
|
-
boxShadow: "none",
|
|
1435
|
-
userSelect: "all"
|
|
1436
|
-
}
|
|
1865
|
+
resize: "both"
|
|
1437
1866
|
}
|
|
1438
1867
|
});
|
|
1439
1868
|
|
|
@@ -1456,7 +1885,11 @@ var tooltipRecipe = defineRecipe8({
|
|
|
1456
1885
|
bg: "overlay",
|
|
1457
1886
|
color: "white",
|
|
1458
1887
|
whiteSpace: "normal",
|
|
1459
|
-
overflowWrap: "break-word"
|
|
1888
|
+
overflowWrap: "break-word",
|
|
1889
|
+
_nextTheme: {
|
|
1890
|
+
background: "background.overlay",
|
|
1891
|
+
color: "text.inverse.static"
|
|
1892
|
+
}
|
|
1460
1893
|
}
|
|
1461
1894
|
});
|
|
1462
1895
|
|
|
@@ -1477,7 +1910,10 @@ var tabListSlotRecipe = defineSlotRecipe6({
|
|
|
1477
1910
|
position: "absolute",
|
|
1478
1911
|
right: 0,
|
|
1479
1912
|
left: 0,
|
|
1480
|
-
bottom: "1px"
|
|
1913
|
+
bottom: "1px",
|
|
1914
|
+
_nextTheme: {
|
|
1915
|
+
background: "border.default"
|
|
1916
|
+
}
|
|
1481
1917
|
}
|
|
1482
1918
|
}
|
|
1483
1919
|
},
|
|
@@ -1491,7 +1927,10 @@ var tabListSlotRecipe = defineSlotRecipe6({
|
|
|
1491
1927
|
padding: 0.5,
|
|
1492
1928
|
alignItems: "center",
|
|
1493
1929
|
justifyContent: "flex-start",
|
|
1494
|
-
maxWidth: "full"
|
|
1930
|
+
maxWidth: "full",
|
|
1931
|
+
_nextTheme: {
|
|
1932
|
+
color: "text.secondary"
|
|
1933
|
+
}
|
|
1495
1934
|
}
|
|
1496
1935
|
}
|
|
1497
1936
|
});
|
|
@@ -1520,6 +1959,15 @@ var tabRecipe = defineRecipe9({
|
|
|
1520
1959
|
_focus: {
|
|
1521
1960
|
shadow: "0 0 0 2px #E0EEFF",
|
|
1522
1961
|
borderRadius: "sm"
|
|
1962
|
+
},
|
|
1963
|
+
_nextTheme: {
|
|
1964
|
+
color: "text.secondary",
|
|
1965
|
+
_hover: {
|
|
1966
|
+
color: "text.default"
|
|
1967
|
+
},
|
|
1968
|
+
_focus: {
|
|
1969
|
+
shadow: "0 0 0 2px var(--mp-colors-border-focused)"
|
|
1970
|
+
}
|
|
1523
1971
|
}
|
|
1524
1972
|
},
|
|
1525
1973
|
variants: {
|
|
@@ -1542,6 +1990,12 @@ var tabRecipe = defineRecipe9({
|
|
|
1542
1990
|
color: "blue.400",
|
|
1543
1991
|
_hover: {
|
|
1544
1992
|
color: "blue.500"
|
|
1993
|
+
},
|
|
1994
|
+
_nextTheme: {
|
|
1995
|
+
color: "text.selected",
|
|
1996
|
+
_hover: {
|
|
1997
|
+
color: "text.selected"
|
|
1998
|
+
}
|
|
1545
1999
|
}
|
|
1546
2000
|
}
|
|
1547
2001
|
},
|
|
@@ -1613,6 +2067,11 @@ var tabSelectedBorderRecipe = defineRecipe9({
|
|
|
1613
2067
|
background: "transparent",
|
|
1614
2068
|
_groupHover: {
|
|
1615
2069
|
background: "gray.400"
|
|
2070
|
+
},
|
|
2071
|
+
_nextTheme: {
|
|
2072
|
+
_groupHover: {
|
|
2073
|
+
background: "border.bold"
|
|
2074
|
+
}
|
|
1616
2075
|
}
|
|
1617
2076
|
},
|
|
1618
2077
|
true: {}
|
|
@@ -1625,7 +2084,13 @@ var tabSelectedBorderRecipe = defineRecipe9({
|
|
|
1625
2084
|
css: {
|
|
1626
2085
|
background: "blue.400",
|
|
1627
2086
|
_groupHover: {
|
|
1628
|
-
background: "
|
|
2087
|
+
background: "border.selected"
|
|
2088
|
+
},
|
|
2089
|
+
_nextTheme: {
|
|
2090
|
+
background: "border.selected",
|
|
2091
|
+
_groupHover: {
|
|
2092
|
+
background: "border.selected"
|
|
2093
|
+
}
|
|
1629
2094
|
}
|
|
1630
2095
|
}
|
|
1631
2096
|
},
|
|
@@ -1685,27 +2150,36 @@ var checkboxSlotRecipe = defineSlotRecipe7({
|
|
|
1685
2150
|
base: {
|
|
1686
2151
|
root: {
|
|
1687
2152
|
position: "relative",
|
|
1688
|
-
|
|
2153
|
+
width: "fit-content",
|
|
2154
|
+
display: "flex",
|
|
1689
2155
|
alignItems: "center",
|
|
1690
|
-
justifyContent: "
|
|
1691
|
-
gap: "
|
|
2156
|
+
justifyContent: "flex-start",
|
|
2157
|
+
gap: "3",
|
|
1692
2158
|
cursor: "pointer",
|
|
1693
2159
|
outline: "none",
|
|
1694
2160
|
"&[data-has-description=true]": {
|
|
1695
2161
|
alignItems: "flex-start",
|
|
1696
2162
|
"& .mp-checkbox__control": {
|
|
1697
|
-
marginTop: "
|
|
2163
|
+
marginTop: "2px"
|
|
1698
2164
|
}
|
|
1699
2165
|
},
|
|
1700
2166
|
"& .mp-shared__hidden": {
|
|
1701
2167
|
"&:focus + .mp-checkbox__control": {
|
|
1702
2168
|
borderColor: "blue.400",
|
|
1703
|
-
boxShadow: "focus"
|
|
2169
|
+
boxShadow: "focus",
|
|
2170
|
+
_nextTheme: {
|
|
2171
|
+
borderColor: "border.focused",
|
|
2172
|
+
boxShadow: "0 0 0 1px {colors.border.focused}"
|
|
2173
|
+
}
|
|
1704
2174
|
}
|
|
1705
2175
|
},
|
|
1706
2176
|
_hover: {
|
|
1707
2177
|
"& .mp-checkbox__control": {
|
|
1708
|
-
borderColor: "gray.400"
|
|
2178
|
+
borderColor: "gray.400",
|
|
2179
|
+
_nextTheme: {
|
|
2180
|
+
borderColor: "border.form",
|
|
2181
|
+
background: "background.neutral.hovered"
|
|
2182
|
+
}
|
|
1709
2183
|
}
|
|
1710
2184
|
},
|
|
1711
2185
|
_disabled: {
|
|
@@ -1713,34 +2187,72 @@ var checkboxSlotRecipe = defineSlotRecipe7({
|
|
|
1713
2187
|
"& .mp-checkbox__control": {
|
|
1714
2188
|
borderColor: "gray.100 !important",
|
|
1715
2189
|
background: "gray.50 !important",
|
|
1716
|
-
boxShadow: "none !important"
|
|
2190
|
+
boxShadow: "none !important",
|
|
2191
|
+
color: "gray.100",
|
|
2192
|
+
_nextTheme: {
|
|
2193
|
+
borderColor: "border.disabled !important",
|
|
2194
|
+
background: "background.disabled !important",
|
|
2195
|
+
color: "icon.disabled"
|
|
2196
|
+
}
|
|
1717
2197
|
}
|
|
1718
2198
|
},
|
|
1719
2199
|
_invalid: {
|
|
1720
2200
|
"& .mp-checkbox__control": {
|
|
1721
2201
|
borderColor: "red.400",
|
|
1722
|
-
background: "white"
|
|
2202
|
+
background: "white",
|
|
2203
|
+
_nextTheme: {
|
|
2204
|
+
borderColor: "border.danger !important",
|
|
2205
|
+
background: "background.neutral"
|
|
2206
|
+
}
|
|
1723
2207
|
}
|
|
1724
2208
|
},
|
|
1725
2209
|
_checked: {
|
|
1726
2210
|
"& .mp-checkbox__control": {
|
|
1727
2211
|
borderColor: "blue.400",
|
|
1728
|
-
background: "blue.400"
|
|
2212
|
+
background: "blue.400",
|
|
2213
|
+
color: "white",
|
|
2214
|
+
_nextTheme: {
|
|
2215
|
+
borderColor: "border.selected",
|
|
2216
|
+
background: "background.brand.bold.selected",
|
|
2217
|
+
color: "icon.inverse"
|
|
2218
|
+
}
|
|
1729
2219
|
},
|
|
1730
2220
|
_hover: {
|
|
1731
2221
|
"& .mp-checkbox__control": {
|
|
1732
|
-
borderColor: "blue.400"
|
|
2222
|
+
borderColor: "blue.400",
|
|
2223
|
+
_nextTheme: {
|
|
2224
|
+
borderColor: "border.selected.hovered",
|
|
2225
|
+
background: "background.brand.bold.hovered"
|
|
2226
|
+
}
|
|
1733
2227
|
}
|
|
1734
2228
|
}
|
|
1735
2229
|
},
|
|
1736
2230
|
_indeterminate: {
|
|
1737
2231
|
"& .mp-checkbox__control": {
|
|
1738
2232
|
borderColor: "blue.400",
|
|
1739
|
-
background: "blue.400"
|
|
2233
|
+
background: "blue.400",
|
|
2234
|
+
color: "white",
|
|
2235
|
+
_nextTheme: {
|
|
2236
|
+
borderColor: "border.selected",
|
|
2237
|
+
background: "background.brand.bold.selected",
|
|
2238
|
+
color: "icon.inverse"
|
|
2239
|
+
}
|
|
1740
2240
|
},
|
|
1741
2241
|
_hover: {
|
|
1742
2242
|
"& .mp-checkbox__control": {
|
|
1743
|
-
borderColor: "blue.400"
|
|
2243
|
+
borderColor: "blue.400",
|
|
2244
|
+
_nextTheme: {
|
|
2245
|
+
borderColor: "border.selected.hovered",
|
|
2246
|
+
background: "background.brand.bold.hovered"
|
|
2247
|
+
}
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
_disabled: {
|
|
2251
|
+
"& .mp-checkbox__control": {
|
|
2252
|
+
color: "gray.600",
|
|
2253
|
+
_nextTheme: {
|
|
2254
|
+
color: "icon.disabled"
|
|
2255
|
+
}
|
|
1744
2256
|
}
|
|
1745
2257
|
}
|
|
1746
2258
|
}
|
|
@@ -1759,7 +2271,15 @@ var checkboxSlotRecipe = defineSlotRecipe7({
|
|
|
1759
2271
|
borderWidth: "2px",
|
|
1760
2272
|
borderColor: "gray.100",
|
|
1761
2273
|
borderRadius: "md",
|
|
1762
|
-
background: "white"
|
|
2274
|
+
background: "white",
|
|
2275
|
+
_nextTheme: {
|
|
2276
|
+
width: "4",
|
|
2277
|
+
height: "4",
|
|
2278
|
+
borderWidth: "sm",
|
|
2279
|
+
borderColor: "border.form",
|
|
2280
|
+
borderRadius: "sm",
|
|
2281
|
+
background: "background.neutral"
|
|
2282
|
+
}
|
|
1763
2283
|
},
|
|
1764
2284
|
label: {
|
|
1765
2285
|
background: "transparent"
|
|
@@ -1776,27 +2296,36 @@ var radioSlotRecipe = defineSlotRecipe8({
|
|
|
1776
2296
|
base: {
|
|
1777
2297
|
root: {
|
|
1778
2298
|
position: "relative",
|
|
1779
|
-
|
|
2299
|
+
width: "fit-content",
|
|
2300
|
+
display: "flex",
|
|
1780
2301
|
alignItems: "center",
|
|
1781
|
-
justifyContent: "
|
|
1782
|
-
gap: "
|
|
2302
|
+
justifyContent: "flex-start",
|
|
2303
|
+
gap: "3",
|
|
1783
2304
|
cursor: "pointer",
|
|
1784
2305
|
outline: "none",
|
|
1785
2306
|
"&[data-has-description=true]": {
|
|
1786
2307
|
alignItems: "flex-start",
|
|
1787
2308
|
"& .mp-radio__control": {
|
|
1788
|
-
marginTop: "
|
|
2309
|
+
marginTop: "2px"
|
|
1789
2310
|
}
|
|
1790
2311
|
},
|
|
1791
2312
|
"& .mp-shared__hidden": {
|
|
1792
2313
|
"&:focus + .mp-radio__control": {
|
|
1793
2314
|
borderColor: "blue.400",
|
|
1794
|
-
boxShadow: "focus"
|
|
2315
|
+
boxShadow: "focus",
|
|
2316
|
+
_nextTheme: {
|
|
2317
|
+
borderColor: "border.focused",
|
|
2318
|
+
boxShadow: "0 0 0 1px {colors.border.focused}"
|
|
2319
|
+
}
|
|
1795
2320
|
}
|
|
1796
2321
|
},
|
|
1797
2322
|
_hover: {
|
|
1798
2323
|
"& .mp-radio__control": {
|
|
1799
|
-
borderColor: "gray.400"
|
|
2324
|
+
borderColor: "gray.400",
|
|
2325
|
+
_nextTheme: {
|
|
2326
|
+
borderColor: "border.form",
|
|
2327
|
+
background: "background.neutral.hovered"
|
|
2328
|
+
}
|
|
1800
2329
|
}
|
|
1801
2330
|
},
|
|
1802
2331
|
_disabled: {
|
|
@@ -1805,36 +2334,44 @@ var radioSlotRecipe = defineSlotRecipe8({
|
|
|
1805
2334
|
borderColor: "gray.100 !important",
|
|
1806
2335
|
background: "gray.50 !important",
|
|
1807
2336
|
boxShadow: "none !important",
|
|
2337
|
+
_nextTheme: {
|
|
2338
|
+
borderColor: "border.disabled !important",
|
|
2339
|
+
background: "background.disabled !important"
|
|
2340
|
+
},
|
|
1808
2341
|
"& div": {
|
|
1809
|
-
background: "gray.400"
|
|
2342
|
+
background: "gray.400",
|
|
2343
|
+
_nextTheme: {
|
|
2344
|
+
color: "icon.disabled"
|
|
2345
|
+
}
|
|
1810
2346
|
}
|
|
1811
2347
|
}
|
|
1812
2348
|
},
|
|
1813
2349
|
_invalid: {
|
|
1814
2350
|
"& .mp-radio__control": {
|
|
1815
2351
|
borderColor: "red.400",
|
|
1816
|
-
background: "white"
|
|
2352
|
+
background: "white",
|
|
2353
|
+
_nextTheme: {
|
|
2354
|
+
borderColor: "border.danger !important",
|
|
2355
|
+
background: "background.neutral"
|
|
2356
|
+
}
|
|
1817
2357
|
}
|
|
1818
2358
|
},
|
|
1819
2359
|
_checked: {
|
|
1820
2360
|
"& .mp-radio__control": {
|
|
1821
2361
|
borderColor: "blue.400",
|
|
1822
|
-
background: "blue.400"
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
borderColor: "blue.400"
|
|
2362
|
+
background: "blue.400",
|
|
2363
|
+
_nextTheme: {
|
|
2364
|
+
borderColor: "border.selected",
|
|
2365
|
+
background: "background.brand.bold.selected"
|
|
1827
2366
|
}
|
|
1828
|
-
}
|
|
1829
|
-
},
|
|
1830
|
-
_indeterminate: {
|
|
1831
|
-
"& .mp-radio__control": {
|
|
1832
|
-
borderColor: "blue.400",
|
|
1833
|
-
background: "blue.400"
|
|
1834
2367
|
},
|
|
1835
2368
|
_hover: {
|
|
1836
2369
|
"& .mp-radio__control": {
|
|
1837
|
-
borderColor: "blue.400"
|
|
2370
|
+
borderColor: "blue.400",
|
|
2371
|
+
_nextTheme: {
|
|
2372
|
+
borderColor: "border.selected.hovered",
|
|
2373
|
+
background: "background.brand.bold.hovered"
|
|
2374
|
+
}
|
|
1838
2375
|
}
|
|
1839
2376
|
}
|
|
1840
2377
|
}
|
|
@@ -1854,11 +2391,25 @@ var radioSlotRecipe = defineSlotRecipe8({
|
|
|
1854
2391
|
borderColor: "gray.100",
|
|
1855
2392
|
borderRadius: "full",
|
|
1856
2393
|
background: "white",
|
|
2394
|
+
_nextTheme: {
|
|
2395
|
+
width: "4",
|
|
2396
|
+
height: "4",
|
|
2397
|
+
borderWidth: "sm",
|
|
2398
|
+
borderColor: "border.form",
|
|
2399
|
+
borderRadius: "full",
|
|
2400
|
+
background: "background.neutral"
|
|
2401
|
+
},
|
|
1857
2402
|
"& div": {
|
|
1858
2403
|
width: "2.5",
|
|
1859
2404
|
height: "2.5",
|
|
1860
2405
|
background: "white",
|
|
1861
|
-
borderRadius: "full"
|
|
2406
|
+
borderRadius: "full",
|
|
2407
|
+
_nextTheme: {
|
|
2408
|
+
width: "2",
|
|
2409
|
+
height: "2",
|
|
2410
|
+
background: "icon.inverse",
|
|
2411
|
+
borderRadius: "full"
|
|
2412
|
+
}
|
|
1862
2413
|
}
|
|
1863
2414
|
},
|
|
1864
2415
|
label: {
|
|
@@ -1894,28 +2445,37 @@ var toggleSlotRecipe = defineSlotRecipe10({
|
|
|
1894
2445
|
base: {
|
|
1895
2446
|
root: {
|
|
1896
2447
|
position: "relative",
|
|
1897
|
-
|
|
2448
|
+
width: "fit-content",
|
|
2449
|
+
display: "flex",
|
|
1898
2450
|
alignItems: "center",
|
|
1899
|
-
justifyContent: "
|
|
2451
|
+
justifyContent: "flex-start",
|
|
1900
2452
|
gap: "3",
|
|
1901
2453
|
cursor: "pointer",
|
|
1902
2454
|
outline: "none",
|
|
1903
2455
|
"&[data-has-description=true]": {
|
|
1904
2456
|
alignItems: "flex-start",
|
|
1905
2457
|
"& .mp-toggle__control": {
|
|
1906
|
-
marginTop: "
|
|
2458
|
+
marginTop: "2px"
|
|
1907
2459
|
}
|
|
1908
2460
|
},
|
|
1909
2461
|
"& .mp-shared__hidden": {
|
|
1910
2462
|
"&:focus + .mp-toggle__control": {
|
|
1911
2463
|
borderColor: "blue.400",
|
|
1912
|
-
boxShadow: "focus"
|
|
2464
|
+
boxShadow: "focus",
|
|
2465
|
+
_nextTheme: {
|
|
2466
|
+
borderColor: "border.focused",
|
|
2467
|
+
boxShadow: "0 0 0 1px {colors.border.focused}"
|
|
2468
|
+
}
|
|
1913
2469
|
}
|
|
1914
2470
|
},
|
|
1915
2471
|
_hover: {
|
|
1916
2472
|
"& .mp-toggle__control": {
|
|
1917
2473
|
borderColor: "gray.400",
|
|
1918
|
-
background: "gray.400"
|
|
2474
|
+
background: "gray.400",
|
|
2475
|
+
_nextTheme: {
|
|
2476
|
+
borderColor: "border.form",
|
|
2477
|
+
background: "background.neutral.hovered"
|
|
2478
|
+
}
|
|
1919
2479
|
}
|
|
1920
2480
|
},
|
|
1921
2481
|
_disabled: {
|
|
@@ -1924,35 +2484,61 @@ var toggleSlotRecipe = defineSlotRecipe10({
|
|
|
1924
2484
|
borderColor: "gray.100 !important",
|
|
1925
2485
|
background: "gray.50 !important",
|
|
1926
2486
|
boxShadow: "none !important",
|
|
2487
|
+
_nextTheme: {
|
|
2488
|
+
borderColor: "border.disabled !important",
|
|
2489
|
+
background: "background.disabled !important"
|
|
2490
|
+
},
|
|
1927
2491
|
"& div": {
|
|
1928
|
-
background: "gray.100"
|
|
2492
|
+
background: "gray.100",
|
|
2493
|
+
_nextTheme: {
|
|
2494
|
+
color: "icon.disabled"
|
|
2495
|
+
}
|
|
1929
2496
|
}
|
|
1930
2497
|
}
|
|
1931
2498
|
},
|
|
1932
2499
|
_invalid: {
|
|
1933
2500
|
"& .mp-toggle__control": {
|
|
1934
2501
|
borderColor: "red.400",
|
|
1935
|
-
background: "red.400"
|
|
2502
|
+
background: "red.400",
|
|
2503
|
+
_nextTheme: {
|
|
2504
|
+
borderColor: "border.danger !important",
|
|
2505
|
+
background: "background.neutral"
|
|
2506
|
+
}
|
|
1936
2507
|
}
|
|
1937
2508
|
},
|
|
1938
2509
|
_checked: {
|
|
1939
2510
|
"& .mp-toggle__control": {
|
|
1940
2511
|
borderColor: "blue.400",
|
|
1941
2512
|
background: "blue.400",
|
|
2513
|
+
_nextTheme: {
|
|
2514
|
+
borderColor: "border.selected",
|
|
2515
|
+
background: "background.brand.bold.selected"
|
|
2516
|
+
},
|
|
1942
2517
|
"& div": {
|
|
1943
|
-
transform: "translateX(
|
|
2518
|
+
transform: "translateX(13px)",
|
|
2519
|
+
_nextTheme: {
|
|
2520
|
+
transform: "translateX(14px)",
|
|
2521
|
+
background: "icon.inverse"
|
|
2522
|
+
}
|
|
1944
2523
|
}
|
|
1945
2524
|
},
|
|
1946
2525
|
_hover: {
|
|
1947
2526
|
"& .mp-toggle__control": {
|
|
1948
2527
|
borderColor: "blue.400",
|
|
1949
|
-
background: "blue.400"
|
|
2528
|
+
background: "blue.400",
|
|
2529
|
+
_nextTheme: {
|
|
2530
|
+
borderColor: "border.selected.hovered",
|
|
2531
|
+
background: "background.brand.bold.hovered"
|
|
2532
|
+
}
|
|
1950
2533
|
}
|
|
1951
2534
|
}
|
|
1952
2535
|
}
|
|
1953
2536
|
},
|
|
1954
2537
|
control: {
|
|
1955
2538
|
flex: "none",
|
|
2539
|
+
transitionDuration: "250ms",
|
|
2540
|
+
transitionProperty: "background, border-color, box-shadow",
|
|
2541
|
+
transitionTimingFunction: "linear",
|
|
1956
2542
|
position: "relative",
|
|
1957
2543
|
display: "inline-flex",
|
|
1958
2544
|
alignItems: "center",
|
|
@@ -1963,15 +2549,28 @@ var toggleSlotRecipe = defineSlotRecipe10({
|
|
|
1963
2549
|
borderColor: "gray.100",
|
|
1964
2550
|
borderRadius: "lg",
|
|
1965
2551
|
background: "gray.100",
|
|
2552
|
+
_nextTheme: {
|
|
2553
|
+
width: "30px",
|
|
2554
|
+
height: "18px",
|
|
2555
|
+
borderWidth: "sm",
|
|
2556
|
+
borderColor: "border.form",
|
|
2557
|
+
borderRadius: "full",
|
|
2558
|
+
background: "background.neutral"
|
|
2559
|
+
},
|
|
1966
2560
|
"& div": {
|
|
1967
2561
|
transitionDuration: "250ms",
|
|
1968
2562
|
transitionProperty: "transform",
|
|
1969
2563
|
transitionTimingFunction: "linear",
|
|
1970
|
-
transform: "translateX(
|
|
2564
|
+
transform: "translateX(1px)",
|
|
1971
2565
|
width: "3",
|
|
1972
2566
|
height: "3",
|
|
1973
2567
|
background: "white",
|
|
1974
|
-
borderRadius: "full"
|
|
2568
|
+
borderRadius: "full",
|
|
2569
|
+
_nextTheme: {
|
|
2570
|
+
transform: "translateX(2px)",
|
|
2571
|
+
background: "icon.subtle",
|
|
2572
|
+
borderRadius: "full"
|
|
2573
|
+
}
|
|
1975
2574
|
}
|
|
1976
2575
|
},
|
|
1977
2576
|
label: {
|
|
@@ -1996,19 +2595,24 @@ var tableRecipe = defineRecipe10({
|
|
|
1996
2595
|
"& tr": {
|
|
1997
2596
|
_hover: {
|
|
1998
2597
|
"& > td": {
|
|
1999
|
-
backgroundColor: "gray.50"
|
|
2598
|
+
backgroundColor: "gray.50",
|
|
2599
|
+
_nextTheme: {
|
|
2600
|
+
background: "background.neutral.hovered"
|
|
2601
|
+
}
|
|
2000
2602
|
}
|
|
2001
2603
|
}
|
|
2002
2604
|
}
|
|
2003
2605
|
},
|
|
2004
2606
|
"& > thead": {
|
|
2005
2607
|
width: "full",
|
|
2006
|
-
backgroundColor: "gray.25",
|
|
2007
2608
|
"&[data-table-head-fixed=true]": {
|
|
2008
2609
|
position: "sticky",
|
|
2009
2610
|
zIndex: "sticky",
|
|
2010
2611
|
top: "0",
|
|
2011
|
-
boxShadow: "0px 2px var(--mp-colors-gray-100)"
|
|
2612
|
+
boxShadow: "0px 2px var(--mp-colors-gray-100)",
|
|
2613
|
+
_nextTheme: {
|
|
2614
|
+
boxShadow: "0px 2px var(--mp-colors-border-default)"
|
|
2615
|
+
}
|
|
2012
2616
|
}
|
|
2013
2617
|
},
|
|
2014
2618
|
"& > tbody": {
|
|
@@ -2023,22 +2627,32 @@ var tableRecipe = defineRecipe10({
|
|
|
2023
2627
|
cursor: "default",
|
|
2024
2628
|
paddingLeft: "2",
|
|
2025
2629
|
paddingRight: "4",
|
|
2026
|
-
|
|
2027
|
-
height: "12",
|
|
2630
|
+
height: "52px",
|
|
2028
2631
|
textStyle: "label.md",
|
|
2029
2632
|
textAlign: "left",
|
|
2030
|
-
|
|
2031
|
-
|
|
2633
|
+
color: "dark",
|
|
2634
|
+
borderBottomWidth: "sm",
|
|
2032
2635
|
borderColor: "gray.100",
|
|
2033
|
-
transition: "background linear 120ms"
|
|
2636
|
+
transition: "background linear 120ms",
|
|
2637
|
+
_nextTheme: {
|
|
2638
|
+
color: "text.default",
|
|
2639
|
+
borderBottomWidth: "sm",
|
|
2640
|
+
borderColor: "border.default"
|
|
2641
|
+
}
|
|
2034
2642
|
},
|
|
2035
2643
|
"& th": {
|
|
2036
2644
|
fontWeight: "semiBold",
|
|
2037
|
-
|
|
2645
|
+
background: "gray.25",
|
|
2646
|
+
_nextTheme: {
|
|
2647
|
+
background: "background.surface"
|
|
2648
|
+
}
|
|
2038
2649
|
},
|
|
2039
2650
|
"& td": {
|
|
2040
2651
|
fontWeight: "regular",
|
|
2041
|
-
backgroundColor: "white"
|
|
2652
|
+
backgroundColor: "white",
|
|
2653
|
+
_nextTheme: {
|
|
2654
|
+
background: "background.neutral"
|
|
2655
|
+
}
|
|
2042
2656
|
},
|
|
2043
2657
|
"& th[data-table-cell-fixed=true], & td[data-table-cell-fixed=true]": {
|
|
2044
2658
|
position: "sticky",
|
|
@@ -2103,7 +2717,10 @@ var progressSlotRecipe = defineSlotRecipe11({
|
|
|
2103
2717
|
width: "full",
|
|
2104
2718
|
borderRadius: "100px",
|
|
2105
2719
|
background: "gray.100",
|
|
2106
|
-
transition: "all 250ms linear"
|
|
2720
|
+
transition: "all 250ms linear",
|
|
2721
|
+
_nextTheme: {
|
|
2722
|
+
background: "background.subtle"
|
|
2723
|
+
}
|
|
2107
2724
|
},
|
|
2108
2725
|
linear: {
|
|
2109
2726
|
transition: "all 250ms linear",
|
|
@@ -2116,7 +2733,10 @@ var progressSlotRecipe = defineSlotRecipe11({
|
|
|
2116
2733
|
width: "full",
|
|
2117
2734
|
height: "full",
|
|
2118
2735
|
borderRadius: "full",
|
|
2119
|
-
background: "conic-gradient(var(--mp-progress-color) var(--mp-progress-width), var(--mp-colors-gray-100) 0deg)"
|
|
2736
|
+
background: "conic-gradient(var(--mp-progress-color) var(--mp-progress-width), var(--mp-colors-gray-100) 0deg)",
|
|
2737
|
+
_nextTheme: {
|
|
2738
|
+
background: "conic-gradient(var(--mp-progress-color) var(--mp-progress-width), var(--mp-colors-background-neutral-subtle) 0deg)"
|
|
2739
|
+
}
|
|
2120
2740
|
},
|
|
2121
2741
|
circularTrack: {
|
|
2122
2742
|
width: "calc(100% - 6px)",
|
|
@@ -2183,12 +2803,18 @@ var formControlSlotRecipe = defineSlotRecipe12({
|
|
|
2183
2803
|
},
|
|
2184
2804
|
required: {
|
|
2185
2805
|
color: "red.400",
|
|
2186
|
-
marginLeft: "1"
|
|
2806
|
+
marginLeft: "1",
|
|
2807
|
+
_nextTheme: {
|
|
2808
|
+
color: "text.danger"
|
|
2809
|
+
}
|
|
2187
2810
|
},
|
|
2188
2811
|
helpText: {
|
|
2189
2812
|
color: "gray.600",
|
|
2190
2813
|
fontSize: "sm",
|
|
2191
|
-
marginTop: "1"
|
|
2814
|
+
marginTop: "1",
|
|
2815
|
+
_nextTheme: {
|
|
2816
|
+
color: "text.secondary"
|
|
2817
|
+
}
|
|
2192
2818
|
},
|
|
2193
2819
|
errorMessage: {
|
|
2194
2820
|
color: "red.400",
|
|
@@ -2196,7 +2822,10 @@ var formControlSlotRecipe = defineSlotRecipe12({
|
|
|
2196
2822
|
marginTop: "1",
|
|
2197
2823
|
textAlign: "left",
|
|
2198
2824
|
verticalAlign: "middle",
|
|
2199
|
-
display: "flex"
|
|
2825
|
+
display: "flex",
|
|
2826
|
+
_nextTheme: {
|
|
2827
|
+
color: "text.danger"
|
|
2828
|
+
}
|
|
2200
2829
|
}
|
|
2201
2830
|
},
|
|
2202
2831
|
variants: {},
|
|
@@ -2237,30 +2866,62 @@ var inputTagSlotRecipe = defineSlotRecipe13({
|
|
|
2237
2866
|
borderWidth: "1px",
|
|
2238
2867
|
borderColor: "gray.100",
|
|
2239
2868
|
borderRadius: "md",
|
|
2869
|
+
backgroundColor: "white",
|
|
2240
2870
|
paddingTop: "2",
|
|
2241
2871
|
paddingBottom: "2",
|
|
2242
2872
|
paddingLeft: "3",
|
|
2243
2873
|
paddingRight: "8",
|
|
2244
|
-
backgroundColor: "white",
|
|
2245
2874
|
transition: "all 250ms",
|
|
2875
|
+
_nextTheme: {
|
|
2876
|
+
borderRadius: "md",
|
|
2877
|
+
borderColor: "border.form",
|
|
2878
|
+
background: "background.neutral"
|
|
2879
|
+
},
|
|
2246
2880
|
_hover: {
|
|
2247
|
-
borderColor: "gray.400"
|
|
2881
|
+
borderColor: "gray.400",
|
|
2882
|
+
_nextTheme: {
|
|
2883
|
+
borderColor: "border.form",
|
|
2884
|
+
background: "background.neutral.hovered"
|
|
2885
|
+
}
|
|
2248
2886
|
},
|
|
2249
|
-
|
|
2887
|
+
_focus: {
|
|
2250
2888
|
boxShadow: "focus",
|
|
2251
2889
|
borderColor: "blue.400",
|
|
2890
|
+
_nextTheme: {
|
|
2891
|
+
boxShadow: "focus",
|
|
2892
|
+
borderColor: "border.focused"
|
|
2893
|
+
},
|
|
2252
2894
|
_hover: {
|
|
2253
|
-
borderColor: "blue.400"
|
|
2895
|
+
borderColor: "blue.400",
|
|
2896
|
+
_nextTheme: {
|
|
2897
|
+
borderColor: "border.focused"
|
|
2898
|
+
}
|
|
2254
2899
|
}
|
|
2255
2900
|
},
|
|
2256
2901
|
_disabled: {
|
|
2257
2902
|
cursor: "not-allowed",
|
|
2258
|
-
background: "gray.50"
|
|
2903
|
+
background: "gray.50",
|
|
2904
|
+
_nextTheme: {
|
|
2905
|
+
background: "background.disabled",
|
|
2906
|
+
borderColor: "border.disabled"
|
|
2907
|
+
},
|
|
2908
|
+
_hover: {
|
|
2909
|
+
_nextTheme: {
|
|
2910
|
+
background: "background.disabled",
|
|
2911
|
+
borderColor: "border.disabled"
|
|
2912
|
+
}
|
|
2913
|
+
}
|
|
2259
2914
|
},
|
|
2260
2915
|
_invalid: {
|
|
2261
2916
|
borderColor: "red.400",
|
|
2917
|
+
_nextTheme: {
|
|
2918
|
+
borderColor: "border.danger"
|
|
2919
|
+
},
|
|
2262
2920
|
_hover: {
|
|
2263
|
-
borderColor: "red.400"
|
|
2921
|
+
borderColor: "red.400",
|
|
2922
|
+
_nextTheme: {
|
|
2923
|
+
borderColor: "border.danger"
|
|
2924
|
+
}
|
|
2264
2925
|
}
|
|
2265
2926
|
},
|
|
2266
2927
|
_hasIcon: {
|
|
@@ -2270,7 +2931,13 @@ var inputTagSlotRecipe = defineSlotRecipe13({
|
|
|
2270
2931
|
input: {
|
|
2271
2932
|
padding: "0 !important",
|
|
2272
2933
|
margin: "0 !important",
|
|
2273
|
-
borderWidth: "0 !important"
|
|
2934
|
+
borderWidth: "0 !important",
|
|
2935
|
+
_placeholder: {
|
|
2936
|
+
color: "gray.400",
|
|
2937
|
+
_nextTheme: {
|
|
2938
|
+
borderColor: "text.placeholder"
|
|
2939
|
+
}
|
|
2940
|
+
}
|
|
2274
2941
|
},
|
|
2275
2942
|
content: {
|
|
2276
2943
|
maxHeight: "300px",
|
|
@@ -2331,7 +2998,11 @@ var dividerRecipe = defineRecipe11({
|
|
|
2331
2998
|
base: {
|
|
2332
2999
|
border: 0,
|
|
2333
3000
|
opacity: 0.6,
|
|
2334
|
-
color: "rgb(208, 214, 221)"
|
|
3001
|
+
color: "rgb(208, 214, 221)",
|
|
3002
|
+
_nextTheme: {
|
|
3003
|
+
color: "border.default",
|
|
3004
|
+
opacity: 1
|
|
3005
|
+
}
|
|
2335
3006
|
},
|
|
2336
3007
|
variants: {
|
|
2337
3008
|
variant: {
|
|
@@ -2367,7 +3038,18 @@ var modalSlotRecipe = defineSlotRecipe14({
|
|
|
2367
3038
|
className: "modal",
|
|
2368
3039
|
description: "The styles for the Modal component",
|
|
2369
3040
|
jsx: ["MpModal", "mp-modal"],
|
|
2370
|
-
slots: [
|
|
3041
|
+
slots: [
|
|
3042
|
+
"root",
|
|
3043
|
+
"rootChild",
|
|
3044
|
+
"body",
|
|
3045
|
+
"contentRoot",
|
|
3046
|
+
"contentChild",
|
|
3047
|
+
"header",
|
|
3048
|
+
"footer",
|
|
3049
|
+
"body",
|
|
3050
|
+
"overlay",
|
|
3051
|
+
"closeButton"
|
|
3052
|
+
],
|
|
2371
3053
|
base: {
|
|
2372
3054
|
root: {
|
|
2373
3055
|
position: "relative",
|
|
@@ -2401,7 +3083,12 @@ var modalSlotRecipe = defineSlotRecipe14({
|
|
|
2401
3083
|
fontFamily: "body",
|
|
2402
3084
|
borderColor: "gray.100",
|
|
2403
3085
|
bg: "white",
|
|
2404
|
-
marginInline: "auto"
|
|
3086
|
+
marginInline: "auto",
|
|
3087
|
+
_nextTheme: {
|
|
3088
|
+
background: "background.stage",
|
|
3089
|
+
borderColor: "border.bold",
|
|
3090
|
+
color: "text.default"
|
|
3091
|
+
}
|
|
2405
3092
|
},
|
|
2406
3093
|
header: {
|
|
2407
3094
|
px: 4,
|
|
@@ -2413,7 +3100,12 @@ var modalSlotRecipe = defineSlotRecipe14({
|
|
|
2413
3100
|
borderTopLeftRadius: "md",
|
|
2414
3101
|
borderTopRightRadius: "md",
|
|
2415
3102
|
borderBottom: "solid 1px",
|
|
2416
|
-
borderBottomColor: "gray.100"
|
|
3103
|
+
borderBottomColor: "gray.100",
|
|
3104
|
+
_nextTheme: {
|
|
3105
|
+
color: "text.default",
|
|
3106
|
+
background: "background.neutral.subtle",
|
|
3107
|
+
borderBottomColor: "border.default"
|
|
3108
|
+
}
|
|
2417
3109
|
},
|
|
2418
3110
|
closeButton: {
|
|
2419
3111
|
position: "absolute",
|
|
@@ -2487,30 +3179,62 @@ var uploadSlotRecipe = defineSlotRecipe15({
|
|
|
2487
3179
|
borderWidth: "1px",
|
|
2488
3180
|
borderColor: "gray.100",
|
|
2489
3181
|
borderRadius: "md",
|
|
2490
|
-
|
|
3182
|
+
background: "white",
|
|
2491
3183
|
outline: "none",
|
|
2492
3184
|
transition: "all 250ms",
|
|
3185
|
+
_nextTheme: {
|
|
3186
|
+
borderRadius: "md",
|
|
3187
|
+
borderColor: "border.default",
|
|
3188
|
+
background: "background.neutral"
|
|
3189
|
+
},
|
|
2493
3190
|
_hover: {
|
|
2494
3191
|
borderColor: "gray.400",
|
|
2495
3192
|
"& .mp-upload__resetButton": {
|
|
2496
3193
|
display: "block"
|
|
3194
|
+
},
|
|
3195
|
+
_nextTheme: {
|
|
3196
|
+
borderColor: "border.form",
|
|
3197
|
+
background: "background.neutral.hovered"
|
|
2497
3198
|
}
|
|
2498
3199
|
},
|
|
2499
|
-
|
|
3200
|
+
_focus: {
|
|
2500
3201
|
boxShadow: "focus",
|
|
2501
3202
|
borderColor: "blue.400",
|
|
3203
|
+
_nextTheme: {
|
|
3204
|
+
boxShadow: "focus",
|
|
3205
|
+
borderColor: "border.focused"
|
|
3206
|
+
},
|
|
2502
3207
|
_hover: {
|
|
2503
|
-
borderColor: "blue.400"
|
|
3208
|
+
borderColor: "blue.400",
|
|
3209
|
+
_nextTheme: {
|
|
3210
|
+
borderColor: "border.focused"
|
|
3211
|
+
}
|
|
2504
3212
|
}
|
|
2505
3213
|
},
|
|
2506
3214
|
_disabled: {
|
|
2507
3215
|
cursor: "not-allowed",
|
|
2508
|
-
background: "gray.50"
|
|
3216
|
+
background: "gray.50",
|
|
3217
|
+
_nextTheme: {
|
|
3218
|
+
background: "background.disabled",
|
|
3219
|
+
borderColor: "border.disabled"
|
|
3220
|
+
},
|
|
3221
|
+
_hover: {
|
|
3222
|
+
_nextTheme: {
|
|
3223
|
+
background: "background.disabled",
|
|
3224
|
+
borderColor: "border.disabled"
|
|
3225
|
+
}
|
|
3226
|
+
}
|
|
2509
3227
|
},
|
|
2510
3228
|
_invalid: {
|
|
2511
3229
|
borderColor: "red.400",
|
|
3230
|
+
_nextTheme: {
|
|
3231
|
+
borderColor: "border.danger"
|
|
3232
|
+
},
|
|
2512
3233
|
_hover: {
|
|
2513
|
-
borderColor: "red.400"
|
|
3234
|
+
borderColor: "red.400",
|
|
3235
|
+
_nextTheme: {
|
|
3236
|
+
borderColor: "border.danger"
|
|
3237
|
+
}
|
|
2514
3238
|
}
|
|
2515
3239
|
}
|
|
2516
3240
|
},
|
|
@@ -2538,10 +3262,17 @@ var uploadListSlotRecipe = defineSlotRecipe15({
|
|
|
2538
3262
|
py: "2",
|
|
2539
3263
|
px: "1",
|
|
2540
3264
|
borderRadius: "md",
|
|
2541
|
-
|
|
3265
|
+
background: "white",
|
|
2542
3266
|
transition: "all 250ms",
|
|
3267
|
+
_nextTheme: {
|
|
3268
|
+
borderRadius: "md",
|
|
3269
|
+
background: "background.neutral"
|
|
3270
|
+
},
|
|
2543
3271
|
_hover: {
|
|
2544
|
-
|
|
3272
|
+
background: "background",
|
|
3273
|
+
_nextTheme: {
|
|
3274
|
+
background: "background.neutral.hovered"
|
|
3275
|
+
}
|
|
2545
3276
|
}
|
|
2546
3277
|
},
|
|
2547
3278
|
titleWrapper: {
|
|
@@ -2553,14 +3284,7 @@ var uploadListSlotRecipe = defineSlotRecipe15({
|
|
|
2553
3284
|
display: "flex",
|
|
2554
3285
|
flexDirection: "row",
|
|
2555
3286
|
gap: "0.5",
|
|
2556
|
-
ml: "auto"
|
|
2557
|
-
"& > button": {
|
|
2558
|
-
// Remove hover style for Button Icon
|
|
2559
|
-
_hover: {
|
|
2560
|
-
background: "transparent!important",
|
|
2561
|
-
borderColor: "transparent!important"
|
|
2562
|
-
}
|
|
2563
|
-
}
|
|
3287
|
+
ml: "auto"
|
|
2564
3288
|
}
|
|
2565
3289
|
}
|
|
2566
3290
|
});
|
|
@@ -2602,31 +3326,77 @@ var dropzoneSlotRecipe = defineSlotRecipe16({
|
|
|
2602
3326
|
borderColor: "gray.100",
|
|
2603
3327
|
borderRadius: "md",
|
|
2604
3328
|
borderStyle: "dashed",
|
|
2605
|
-
background: "
|
|
3329
|
+
background: "background",
|
|
2606
3330
|
outline: "none",
|
|
2607
3331
|
transition: "all 250ms",
|
|
3332
|
+
"&[data-variant=avatar]": {
|
|
3333
|
+
borderRadius: "full"
|
|
3334
|
+
},
|
|
3335
|
+
"&[data-variant=default]": {
|
|
3336
|
+
background: "white"
|
|
3337
|
+
},
|
|
3338
|
+
_nextTheme: {
|
|
3339
|
+
borderRadius: "md",
|
|
3340
|
+
borderColor: "border.default",
|
|
3341
|
+
background: "background.neutral.subtle",
|
|
3342
|
+
"&[data-variant=avatar]": {
|
|
3343
|
+
borderRadius: "full"
|
|
3344
|
+
},
|
|
3345
|
+
"&[data-variant=default]": {
|
|
3346
|
+
background: "background.neutral"
|
|
3347
|
+
}
|
|
3348
|
+
},
|
|
2608
3349
|
_hover: {
|
|
2609
3350
|
borderColor: "gray.400",
|
|
2610
3351
|
"& [data-overlay-preview=true]": {
|
|
2611
3352
|
display: "flex"
|
|
3353
|
+
},
|
|
3354
|
+
_nextTheme: {
|
|
3355
|
+
borderColor: "border.default",
|
|
3356
|
+
background: "background.neutral.hovered"
|
|
2612
3357
|
}
|
|
2613
3358
|
},
|
|
2614
|
-
|
|
3359
|
+
_focus: {
|
|
2615
3360
|
boxShadow: "focus",
|
|
2616
3361
|
borderColor: "blue.400",
|
|
3362
|
+
_nextTheme: {
|
|
3363
|
+
boxShadow: "focus",
|
|
3364
|
+
borderColor: "border.focused"
|
|
3365
|
+
},
|
|
2617
3366
|
_hover: {
|
|
2618
|
-
borderColor: "blue.400"
|
|
3367
|
+
borderColor: "blue.400",
|
|
3368
|
+
_nextTheme: {
|
|
3369
|
+
borderColor: "border.focused"
|
|
3370
|
+
}
|
|
2619
3371
|
}
|
|
2620
3372
|
},
|
|
2621
3373
|
_disabled: {
|
|
2622
3374
|
cursor: "not-allowed",
|
|
2623
|
-
background: "gray.50!"
|
|
3375
|
+
background: "gray.50!",
|
|
3376
|
+
_nextTheme: {
|
|
3377
|
+
background: "background.disabled!",
|
|
3378
|
+
borderColor: "border.disabled"
|
|
3379
|
+
},
|
|
3380
|
+
_hover: {
|
|
3381
|
+
_nextTheme: {
|
|
3382
|
+
background: "background.disabled!",
|
|
3383
|
+
borderColor: "border.disabled"
|
|
3384
|
+
}
|
|
3385
|
+
}
|
|
2624
3386
|
},
|
|
2625
3387
|
_invalid: {
|
|
2626
3388
|
borderColor: "red.400",
|
|
2627
|
-
|
|
3389
|
+
background: "red.50!",
|
|
3390
|
+
_nextTheme: {
|
|
3391
|
+
borderColor: "border.danger",
|
|
3392
|
+
background: "background.danger"
|
|
3393
|
+
},
|
|
2628
3394
|
_hover: {
|
|
2629
|
-
borderColor: "red.400!"
|
|
3395
|
+
borderColor: "red.400!",
|
|
3396
|
+
_nextTheme: {
|
|
3397
|
+
borderColor: "border.danger",
|
|
3398
|
+
background: "background.danger"
|
|
3399
|
+
}
|
|
2630
3400
|
}
|
|
2631
3401
|
}
|
|
2632
3402
|
},
|
|
@@ -2689,7 +3459,20 @@ var dropzoneSlotRecipe = defineSlotRecipe16({
|
|
|
2689
3459
|
borderRadius: "md",
|
|
2690
3460
|
borderWidth: "1px",
|
|
2691
3461
|
borderColor: "blue.400",
|
|
2692
|
-
borderStyle: "dashed"
|
|
3462
|
+
borderStyle: "dashed",
|
|
3463
|
+
background: "overlay",
|
|
3464
|
+
"&[data-overlay=white]": {
|
|
3465
|
+
background: "whiteAlpha.300"
|
|
3466
|
+
},
|
|
3467
|
+
_nextTheme: {
|
|
3468
|
+
borderColor: "border.brand",
|
|
3469
|
+
background: "background.overlay.dark",
|
|
3470
|
+
// force overlay dark since this variant is black
|
|
3471
|
+
"&[data-overlay=white]": {
|
|
3472
|
+
background: "background.overlay.light"
|
|
3473
|
+
// force overlay light since this variant is white
|
|
3474
|
+
}
|
|
3475
|
+
}
|
|
2693
3476
|
},
|
|
2694
3477
|
preview: {
|
|
2695
3478
|
display: "flex",
|
|
@@ -2719,8 +3502,19 @@ var dropzoneSlotRecipe = defineSlotRecipe16({
|
|
|
2719
3502
|
position: "absolute",
|
|
2720
3503
|
zIndex: "2",
|
|
2721
3504
|
background: "white",
|
|
2722
|
-
|
|
2723
|
-
|
|
3505
|
+
borderWidth: "2px",
|
|
3506
|
+
borderColor: "white",
|
|
3507
|
+
borderRadius: "full",
|
|
3508
|
+
top: "-10px",
|
|
3509
|
+
right: "-10px",
|
|
3510
|
+
"&[data-variant=avatar]": {
|
|
3511
|
+
top: "-4px",
|
|
3512
|
+
right: "-4px"
|
|
3513
|
+
},
|
|
3514
|
+
_nextTheme: {
|
|
3515
|
+
background: "background.neutral",
|
|
3516
|
+
borderColor: "background.neutral"
|
|
3517
|
+
}
|
|
2724
3518
|
}
|
|
2725
3519
|
}
|
|
2726
3520
|
});
|
|
@@ -2745,7 +3539,10 @@ var segmentedControlSlotRecipe = defineSlotRecipe17({
|
|
|
2745
3539
|
borderColor: "gray.100",
|
|
2746
3540
|
borderRadius: "md",
|
|
2747
3541
|
outline: "0px solid transparent",
|
|
2748
|
-
padding: "1"
|
|
3542
|
+
padding: "1",
|
|
3543
|
+
_nextTheme: {
|
|
3544
|
+
borderColor: "border.form"
|
|
3545
|
+
}
|
|
2749
3546
|
},
|
|
2750
3547
|
item: {
|
|
2751
3548
|
flex: "var(--mp-segmented-control--flex)",
|
|
@@ -2772,29 +3569,66 @@ var segmentedControlSlotRecipe = defineSlotRecipe17({
|
|
|
2772
3569
|
borderRadius: "sm",
|
|
2773
3570
|
transition: "all 250ms",
|
|
2774
3571
|
color: "gray.600",
|
|
2775
|
-
backgroundColor: "
|
|
3572
|
+
backgroundColor: "transparent",
|
|
2776
3573
|
gap: "var(--mp-segmented-control--gap)",
|
|
2777
3574
|
paddingX: "var(--mp-segmented-control--padding-x)",
|
|
2778
3575
|
"input[type=radio]:hover:not(:disabled):not(:checked) + &": {
|
|
2779
|
-
color: "blue.700"
|
|
3576
|
+
color: "blue.700",
|
|
3577
|
+
_nextTheme: {
|
|
3578
|
+
color: "text.secondary",
|
|
3579
|
+
backgroundColor: "background.neutral.hovered",
|
|
3580
|
+
"& > svg": {
|
|
3581
|
+
color: "icon.default"
|
|
3582
|
+
}
|
|
3583
|
+
}
|
|
2780
3584
|
},
|
|
2781
3585
|
"input[type=radio]:checked + &, input[type=radio][aria-checked=mixed] + &": {
|
|
2782
3586
|
color: "blue.400",
|
|
2783
|
-
backgroundColor: "blue.50"
|
|
3587
|
+
backgroundColor: "blue.50",
|
|
3588
|
+
_nextTheme: {
|
|
3589
|
+
color: "text.selected",
|
|
3590
|
+
backgroundColor: "background.brand.selected",
|
|
3591
|
+
"& > svg": {
|
|
3592
|
+
color: "icon.selected"
|
|
3593
|
+
}
|
|
3594
|
+
}
|
|
2784
3595
|
},
|
|
2785
3596
|
"input[type=radio]:disabled + &": {
|
|
2786
|
-
color: "gray.400"
|
|
3597
|
+
color: "gray.400",
|
|
3598
|
+
cursor: "not-allowed",
|
|
3599
|
+
_nextTheme: {
|
|
3600
|
+
color: "text.disabled",
|
|
3601
|
+
backgroundColor: "background.disabled",
|
|
3602
|
+
"& > svg": {
|
|
3603
|
+
color: "icon.disabled"
|
|
3604
|
+
}
|
|
3605
|
+
}
|
|
2787
3606
|
},
|
|
2788
3607
|
"input[type=radio]:checked:hover:not(:disabled) + &, input[type=radio][aria-checked=mixed]:hover:not(:disabled) + &": {
|
|
2789
3608
|
color: "blue.700"
|
|
2790
3609
|
},
|
|
2791
3610
|
"input[type=radio]:checked:focus + &, input[type=radio][aria-checked=mixed]:focus + &": {
|
|
2792
3611
|
color: "blue.700",
|
|
2793
|
-
boxShadow: "outer"
|
|
3612
|
+
boxShadow: "outer",
|
|
3613
|
+
_nextTheme: {
|
|
3614
|
+
color: "text.selected",
|
|
3615
|
+
boxShadow: "0 0 0 2px {colors.border.focused}"
|
|
3616
|
+
}
|
|
2794
3617
|
},
|
|
2795
3618
|
"input[type=radio]:checked:disabled + &, input[type=radio][aria-checked=mixed]:disabled + &": {
|
|
2796
3619
|
color: "gray.400",
|
|
2797
|
-
backgroundColor: "gray.50"
|
|
3620
|
+
backgroundColor: "gray.50",
|
|
3621
|
+
cursor: "not-allowed",
|
|
3622
|
+
_nextTheme: {
|
|
3623
|
+
color: "text.disabled",
|
|
3624
|
+
backgroundColor: "background.disabled"
|
|
3625
|
+
}
|
|
3626
|
+
},
|
|
3627
|
+
_nextTheme: {
|
|
3628
|
+
color: "text.secondary",
|
|
3629
|
+
"& > svg": {
|
|
3630
|
+
color: "icon.default"
|
|
3631
|
+
}
|
|
2798
3632
|
}
|
|
2799
3633
|
},
|
|
2800
3634
|
label: {
|
|
@@ -2830,10 +3664,17 @@ var toastSlotRecipe = defineSlotRecipe18({
|
|
|
2830
3664
|
backgroundColor: "white",
|
|
2831
3665
|
padding: "3",
|
|
2832
3666
|
boxShadow: "lg",
|
|
2833
|
-
zIndex: "9999"
|
|
3667
|
+
zIndex: "9999",
|
|
3668
|
+
_nextTheme: {
|
|
3669
|
+
backgroundColor: "background.neutral"
|
|
3670
|
+
}
|
|
2834
3671
|
},
|
|
2835
3672
|
label: {
|
|
2836
|
-
|
|
3673
|
+
color: "dark",
|
|
3674
|
+
fontSize: "md",
|
|
3675
|
+
_nextTheme: {
|
|
3676
|
+
color: "text.default"
|
|
3677
|
+
}
|
|
2837
3678
|
}
|
|
2838
3679
|
},
|
|
2839
3680
|
variants: {
|
|
@@ -2846,13 +3687,23 @@ var toastSlotRecipe = defineSlotRecipe18({
|
|
|
2846
3687
|
{
|
|
2847
3688
|
variant: "success",
|
|
2848
3689
|
css: {
|
|
2849
|
-
root: {
|
|
3690
|
+
root: {
|
|
3691
|
+
borderColor: "green.700",
|
|
3692
|
+
_nextTheme: {
|
|
3693
|
+
borderColor: "border.success"
|
|
3694
|
+
}
|
|
3695
|
+
}
|
|
2850
3696
|
}
|
|
2851
3697
|
},
|
|
2852
3698
|
{
|
|
2853
3699
|
variant: "error",
|
|
2854
3700
|
css: {
|
|
2855
|
-
root: {
|
|
3701
|
+
root: {
|
|
3702
|
+
borderColor: "red.700",
|
|
3703
|
+
_nextTheme: {
|
|
3704
|
+
borderColor: "border.danger"
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
2856
3707
|
}
|
|
2857
3708
|
}
|
|
2858
3709
|
],
|
|
@@ -2901,28 +3752,94 @@ var broadcastSlotRecipe = defineSlotRecipe19({
|
|
|
2901
3752
|
marginLeft: "3",
|
|
2902
3753
|
_hover: {
|
|
2903
3754
|
color: "white!"
|
|
3755
|
+
},
|
|
3756
|
+
_nextTheme: {
|
|
3757
|
+
color: "icon.inverse!",
|
|
3758
|
+
_hover: {
|
|
3759
|
+
color: "icon.inverse!"
|
|
3760
|
+
}
|
|
2904
3761
|
}
|
|
2905
3762
|
}
|
|
2906
3763
|
},
|
|
2907
3764
|
variants: {
|
|
2908
3765
|
variant: {
|
|
2909
3766
|
announcement: {
|
|
2910
|
-
container: {
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
3767
|
+
container: {
|
|
3768
|
+
backgroundColor: "stone.400",
|
|
3769
|
+
_nextTheme: {
|
|
3770
|
+
backgroundColor: "background.neutral.bold"
|
|
3771
|
+
}
|
|
3772
|
+
},
|
|
3773
|
+
icon: {
|
|
3774
|
+
color: "white",
|
|
3775
|
+
_nextTheme: {
|
|
3776
|
+
color: "icon.inverse"
|
|
3777
|
+
}
|
|
3778
|
+
},
|
|
3779
|
+
label: {
|
|
3780
|
+
color: "white",
|
|
3781
|
+
_nextTheme: {
|
|
3782
|
+
color: "text.inverse"
|
|
3783
|
+
}
|
|
3784
|
+
},
|
|
3785
|
+
textLink: {
|
|
3786
|
+
color: "white",
|
|
3787
|
+
_nextTheme: {
|
|
3788
|
+
color: "text.inverse"
|
|
3789
|
+
}
|
|
3790
|
+
}
|
|
3791
|
+
},
|
|
3792
|
+
information: {
|
|
3793
|
+
container: {
|
|
3794
|
+
backgroundColor: "violet.400",
|
|
3795
|
+
_nextTheme: {
|
|
3796
|
+
backgroundColor: "background.highlight.bold"
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3799
|
+
icon: {
|
|
3800
|
+
color: "white",
|
|
3801
|
+
_nextTheme: {
|
|
3802
|
+
color: "icon.inverse.static"
|
|
3803
|
+
}
|
|
3804
|
+
},
|
|
3805
|
+
label: {
|
|
3806
|
+
color: "white",
|
|
3807
|
+
_nextTheme: {
|
|
3808
|
+
color: "text.inverse"
|
|
3809
|
+
}
|
|
3810
|
+
},
|
|
3811
|
+
textLink: {
|
|
3812
|
+
color: "white",
|
|
3813
|
+
_nextTheme: {
|
|
3814
|
+
color: "text.inverse"
|
|
3815
|
+
}
|
|
3816
|
+
}
|
|
3817
|
+
},
|
|
3818
|
+
important: {
|
|
3819
|
+
container: {
|
|
3820
|
+
backgroundColor: "amber.100",
|
|
3821
|
+
_nextTheme: {
|
|
3822
|
+
backgroundColor: "background.warning.bold"
|
|
3823
|
+
}
|
|
3824
|
+
},
|
|
3825
|
+
icon: {
|
|
3826
|
+
color: "dark",
|
|
3827
|
+
_nextTheme: {
|
|
3828
|
+
color: "icon.warning.inverse"
|
|
3829
|
+
}
|
|
3830
|
+
},
|
|
3831
|
+
label: {
|
|
3832
|
+
color: "dark",
|
|
3833
|
+
_nextTheme: {
|
|
3834
|
+
color: "text.warning.inverse"
|
|
3835
|
+
}
|
|
3836
|
+
},
|
|
3837
|
+
textLink: {
|
|
3838
|
+
color: "dark",
|
|
3839
|
+
_nextTheme: {
|
|
3840
|
+
color: "text.warning.inverse"
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
2926
3843
|
}
|
|
2927
3844
|
}
|
|
2928
3845
|
},
|
|
@@ -2964,6 +3881,10 @@ var richTextEditorSlotRecipe = defineSlotRecipe20({
|
|
|
2964
3881
|
paddingY: "1",
|
|
2965
3882
|
paddingX: "3",
|
|
2966
3883
|
marginBottom: "1",
|
|
3884
|
+
_nextTheme: {
|
|
3885
|
+
backgroundColor: "background.neutral.subtle",
|
|
3886
|
+
border: "0px solid"
|
|
3887
|
+
},
|
|
2967
3888
|
"& button": {
|
|
2968
3889
|
display: "flex",
|
|
2969
3890
|
justifyContent: "center",
|
|
@@ -2976,10 +3897,19 @@ var richTextEditorSlotRecipe = defineSlotRecipe20({
|
|
|
2976
3897
|
borderRadius: "md",
|
|
2977
3898
|
color: "blue.400",
|
|
2978
3899
|
backgroundColor: "blue.50",
|
|
2979
|
-
|
|
3900
|
+
_nextTheme: {
|
|
3901
|
+
color: "icon.brand",
|
|
3902
|
+
backgroundColor: "background.brand.hovered"
|
|
3903
|
+
}
|
|
2980
3904
|
},
|
|
2981
3905
|
"&.is-active": {
|
|
2982
|
-
color: "blue.400"
|
|
3906
|
+
color: "blue.400",
|
|
3907
|
+
_nextTheme: {
|
|
3908
|
+
color: "icon.brand"
|
|
3909
|
+
}
|
|
3910
|
+
},
|
|
3911
|
+
_nextTheme: {
|
|
3912
|
+
color: "icon.default"
|
|
2983
3913
|
}
|
|
2984
3914
|
},
|
|
2985
3915
|
"& button.mp-popover-list-item": {
|
|
@@ -2987,7 +3917,10 @@ var richTextEditorSlotRecipe = defineSlotRecipe20({
|
|
|
2987
3917
|
"&:hover": {
|
|
2988
3918
|
borderRadius: "0",
|
|
2989
3919
|
color: "blue.400",
|
|
2990
|
-
backgroundColor: "transparent"
|
|
3920
|
+
backgroundColor: "transparent",
|
|
3921
|
+
_nextTheme: {
|
|
3922
|
+
color: "icon.brand"
|
|
3923
|
+
}
|
|
2991
3924
|
},
|
|
2992
3925
|
"& div": {
|
|
2993
3926
|
justifyContent: "center!",
|
|
@@ -3012,7 +3945,10 @@ var richTextEditorSlotRecipe = defineSlotRecipe20({
|
|
|
3012
3945
|
content: "attr(data-placeholder)",
|
|
3013
3946
|
float: "left",
|
|
3014
3947
|
height: "0",
|
|
3015
|
-
pointerEvents: "none"
|
|
3948
|
+
pointerEvents: "none",
|
|
3949
|
+
_nextTheme: {
|
|
3950
|
+
color: "text.placeholder"
|
|
3951
|
+
}
|
|
3016
3952
|
}
|
|
3017
3953
|
}
|
|
3018
3954
|
},
|
|
@@ -3024,6 +3960,7 @@ var RTEStyleProviderRecipe = defineRecipe12({
|
|
|
3024
3960
|
className: "typography-style-provider",
|
|
3025
3961
|
jsx: ["MpTypographyStyleProvider", "mp-typography-style-provider"],
|
|
3026
3962
|
base: {
|
|
3963
|
+
color: "dark",
|
|
3027
3964
|
"& h1": {
|
|
3028
3965
|
textStyle: "h1"
|
|
3029
3966
|
},
|
|
@@ -3061,7 +3998,13 @@ var RTEStyleProviderRecipe = defineRecipe12({
|
|
|
3061
3998
|
"& blockquote": {
|
|
3062
3999
|
borderLeft: "4px solid",
|
|
3063
4000
|
borderColor: "dark",
|
|
3064
|
-
padding: "2"
|
|
4001
|
+
padding: "2",
|
|
4002
|
+
_nextTheme: {
|
|
4003
|
+
borderColor: "text.default"
|
|
4004
|
+
}
|
|
4005
|
+
},
|
|
4006
|
+
_nextTheme: {
|
|
4007
|
+
color: "text.default"
|
|
3065
4008
|
}
|
|
3066
4009
|
},
|
|
3067
4010
|
variants: {},
|
|
@@ -3138,7 +4081,11 @@ var tableDateSlotRecipe = defineSlotRecipe21({
|
|
|
3138
4081
|
],
|
|
3139
4082
|
base: {
|
|
3140
4083
|
headerRoot: { display: "flex", justifyContent: "space-between", alignItems: "center" },
|
|
3141
|
-
headerLabel: {
|
|
4084
|
+
headerLabel: {
|
|
4085
|
+
cursor: "pointer",
|
|
4086
|
+
fontWeight: "semiBold",
|
|
4087
|
+
_nextTheme: { color: "text.default" }
|
|
4088
|
+
},
|
|
3142
4089
|
dayWrapper: { display: "flex", marginTop: 3 },
|
|
3143
4090
|
dateItemRoot: { display: "flex", flexDirection: "column", gap: 1, marginTop: "1.5" },
|
|
3144
4091
|
dateItemWrapper: { display: "flex" },
|
|
@@ -3156,7 +4103,11 @@ var tableMonthSlotRecipe = defineSlotRecipe21({
|
|
|
3156
4103
|
slots: ["headerRoot", "headerLabel", "monthItemRoot", "monthItemWrapper", "shortcutLabelWrapper"],
|
|
3157
4104
|
base: {
|
|
3158
4105
|
headerRoot: { display: "flex", justifyContent: "space-between", alignItems: "center" },
|
|
3159
|
-
headerLabel: {
|
|
4106
|
+
headerLabel: {
|
|
4107
|
+
cursor: "pointer",
|
|
4108
|
+
fontWeight: "semiBold",
|
|
4109
|
+
_nextTheme: { color: "text.default" }
|
|
4110
|
+
},
|
|
3160
4111
|
monthItemRoot: { display: "flex", flexDirection: "column", gap: 1, marginTop: "3" },
|
|
3161
4112
|
monthItemWrapper: { display: "grid", gridTemplateColumns: "3" },
|
|
3162
4113
|
shortcutLabelWrapper: {
|
|
@@ -3173,7 +4124,10 @@ var tableYearSlotRecipe = defineSlotRecipe21({
|
|
|
3173
4124
|
slots: ["headerRoot", "headerLabel", "yearItemRoot", "yearItemWrapper", "shortcutLabelWrapper"],
|
|
3174
4125
|
base: {
|
|
3175
4126
|
headerRoot: { display: "flex", justifyContent: "space-between", alignItems: "center" },
|
|
3176
|
-
headerLabel: {
|
|
4127
|
+
headerLabel: {
|
|
4128
|
+
fontWeight: "semiBold",
|
|
4129
|
+
_nextTheme: { color: "text.default" }
|
|
4130
|
+
},
|
|
3177
4131
|
yearItemRoot: { display: "flex", flexDirection: "column", gap: 1, marginTop: "3" },
|
|
3178
4132
|
yearItemWrapper: { display: "grid", gridTemplateColumns: "4" },
|
|
3179
4133
|
shortcutLabelWrapper: {
|
|
@@ -3200,7 +4154,10 @@ var dayItemRecipe = defineRecipe13({
|
|
|
3200
4154
|
cursor: "pointer",
|
|
3201
4155
|
color: "gray.600",
|
|
3202
4156
|
fontSize: "sm",
|
|
3203
|
-
textAlign: "center"
|
|
4157
|
+
textAlign: "center",
|
|
4158
|
+
_nextTheme: {
|
|
4159
|
+
color: "text.default"
|
|
4160
|
+
}
|
|
3204
4161
|
}
|
|
3205
4162
|
});
|
|
3206
4163
|
var dateItemRecipe = defineRecipe13({
|
|
@@ -3224,7 +4181,13 @@ var dateItemRecipe = defineRecipe13({
|
|
|
3224
4181
|
color: "gray.400",
|
|
3225
4182
|
cursor: "not-allowed",
|
|
3226
4183
|
borderColor: "transparent",
|
|
3227
|
-
backgroundColor: "transparent"
|
|
4184
|
+
backgroundColor: "transparent",
|
|
4185
|
+
_nextTheme: {
|
|
4186
|
+
color: "text.disabled"
|
|
4187
|
+
}
|
|
4188
|
+
},
|
|
4189
|
+
_nextTheme: {
|
|
4190
|
+
color: "text.default"
|
|
3228
4191
|
}
|
|
3229
4192
|
},
|
|
3230
4193
|
variants: {
|
|
@@ -3233,64 +4196,115 @@ var dateItemRecipe = defineRecipe13({
|
|
|
3233
4196
|
rounded: "sm",
|
|
3234
4197
|
_hover: {
|
|
3235
4198
|
borderColor: "gray.50",
|
|
3236
|
-
background: "gray.50"
|
|
4199
|
+
background: "gray.50",
|
|
4200
|
+
_nextTheme: {
|
|
4201
|
+
borderColor: "background.neutral.hovered",
|
|
4202
|
+
background: "background.neutral.hovered"
|
|
4203
|
+
}
|
|
3237
4204
|
},
|
|
3238
4205
|
_focus: {
|
|
3239
4206
|
borderColor: "blue.400",
|
|
3240
4207
|
background: "transparent",
|
|
3241
|
-
shadow: "outer"
|
|
4208
|
+
shadow: "outer",
|
|
4209
|
+
_nextTheme: {
|
|
4210
|
+
borderColor: "border.focused"
|
|
4211
|
+
}
|
|
3242
4212
|
}
|
|
3243
4213
|
},
|
|
3244
4214
|
selected: {
|
|
3245
4215
|
rounded: "sm",
|
|
3246
4216
|
borderColor: "blue.400",
|
|
3247
4217
|
backgroundColor: "blue.400",
|
|
3248
|
-
color: "white"
|
|
4218
|
+
color: "white",
|
|
4219
|
+
_nextTheme: {
|
|
4220
|
+
borderColor: "background.brand.bold.selected",
|
|
4221
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4222
|
+
color: "text.inverse"
|
|
4223
|
+
}
|
|
3249
4224
|
},
|
|
3250
4225
|
range: {
|
|
3251
4226
|
borderColor: "ice.50",
|
|
3252
|
-
backgroundColor: "ice.50"
|
|
4227
|
+
backgroundColor: "ice.50",
|
|
4228
|
+
_nextTheme: {
|
|
4229
|
+
borderColor: "background.brand.selected",
|
|
4230
|
+
backgroundColor: "background.brand.selected"
|
|
4231
|
+
}
|
|
3253
4232
|
},
|
|
3254
4233
|
today: {
|
|
3255
4234
|
rounded: "sm",
|
|
3256
4235
|
borderColor: "orange.50",
|
|
3257
|
-
backgroundColor: "orange.50"
|
|
4236
|
+
backgroundColor: "orange.50",
|
|
4237
|
+
_nextTheme: {
|
|
4238
|
+
borderColor: "background.warning.bold",
|
|
4239
|
+
backgroundColor: "background.warning.bold",
|
|
4240
|
+
color: "text.warning.inverse"
|
|
4241
|
+
}
|
|
3258
4242
|
},
|
|
3259
4243
|
notThisMonth: {
|
|
3260
|
-
color: "gray.600"
|
|
4244
|
+
color: "gray.600",
|
|
4245
|
+
_nextTheme: {
|
|
4246
|
+
color: "text.disabled"
|
|
4247
|
+
}
|
|
3261
4248
|
},
|
|
3262
4249
|
disabled: {},
|
|
3263
4250
|
// Week
|
|
3264
4251
|
weekHoveredStart: {
|
|
3265
4252
|
roundedLeft: "sm",
|
|
3266
4253
|
borderColor: "gray.50",
|
|
3267
|
-
background: "gray.50"
|
|
4254
|
+
background: "gray.50",
|
|
4255
|
+
_nextTheme: {
|
|
4256
|
+
borderColor: "background.neutral.hovered",
|
|
4257
|
+
background: "background.neutral.hovered"
|
|
4258
|
+
}
|
|
3268
4259
|
},
|
|
3269
4260
|
weekHoveredMiddle: {
|
|
3270
4261
|
borderColor: "gray.50",
|
|
3271
|
-
background: "gray.50"
|
|
4262
|
+
background: "gray.50",
|
|
4263
|
+
_nextTheme: {
|
|
4264
|
+
borderColor: "background.neutral.hovered",
|
|
4265
|
+
background: "background.neutral.hovered"
|
|
4266
|
+
}
|
|
3272
4267
|
},
|
|
3273
4268
|
weekHoveredEnd: {
|
|
3274
4269
|
roundedRight: "sm",
|
|
3275
4270
|
borderColor: "gray.50",
|
|
3276
|
-
background: "gray.50"
|
|
4271
|
+
background: "gray.50",
|
|
4272
|
+
_nextTheme: {
|
|
4273
|
+
borderColor: "background.neutral.hovered",
|
|
4274
|
+
background: "background.neutral.hovered"
|
|
4275
|
+
}
|
|
3277
4276
|
},
|
|
3278
4277
|
weekSelectedStart: {
|
|
3279
4278
|
roundedLeft: "sm",
|
|
3280
4279
|
borderColor: "blue.400",
|
|
3281
4280
|
background: "blue.400",
|
|
3282
|
-
color: "white"
|
|
4281
|
+
color: "white",
|
|
4282
|
+
_nextTheme: {
|
|
4283
|
+
borderColor: "background.brand.bold.selected",
|
|
4284
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4285
|
+
color: "text.inverse"
|
|
4286
|
+
}
|
|
3283
4287
|
},
|
|
3284
4288
|
weekSelectedMiddle: {
|
|
3285
4289
|
borderColor: "blue.400",
|
|
3286
4290
|
background: "blue.400",
|
|
3287
|
-
color: "white"
|
|
4291
|
+
color: "white",
|
|
4292
|
+
_nextTheme: {
|
|
4293
|
+
borderColor: "background.brand.bold.selected",
|
|
4294
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4295
|
+
color: "text.inverse"
|
|
4296
|
+
}
|
|
3288
4297
|
},
|
|
3289
4298
|
weekSelectedEnd: {
|
|
3290
4299
|
roundedRight: "sm",
|
|
3291
4300
|
borderColor: "blue.400",
|
|
3292
4301
|
background: "blue.400",
|
|
3293
|
-
color: "white"
|
|
4302
|
+
color: "white",
|
|
4303
|
+
_nextTheme: {
|
|
4304
|
+
borderColor: "background.brand.bold.selected",
|
|
4305
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4306
|
+
color: "text.inverse"
|
|
4307
|
+
}
|
|
3294
4308
|
}
|
|
3295
4309
|
}
|
|
3296
4310
|
},
|
|
@@ -3334,6 +4348,9 @@ var monthItemRecipe = defineRecipe13({
|
|
|
3334
4348
|
cursor: "not-allowed",
|
|
3335
4349
|
borderColor: "transparent",
|
|
3336
4350
|
backgroundColor: "transparent"
|
|
4351
|
+
},
|
|
4352
|
+
_nextTheme: {
|
|
4353
|
+
color: "text.default"
|
|
3337
4354
|
}
|
|
3338
4355
|
},
|
|
3339
4356
|
variants: {
|
|
@@ -3343,28 +4360,49 @@ var monthItemRecipe = defineRecipe13({
|
|
|
3343
4360
|
rounded: "sm",
|
|
3344
4361
|
_hover: {
|
|
3345
4362
|
borderColor: "gray.50",
|
|
3346
|
-
background: "gray.50"
|
|
4363
|
+
background: "gray.50",
|
|
4364
|
+
_nextTheme: {
|
|
4365
|
+
borderColor: "background.neutral.hovered",
|
|
4366
|
+
background: "background.neutral.hovered"
|
|
4367
|
+
}
|
|
3347
4368
|
},
|
|
3348
4369
|
_focus: {
|
|
3349
4370
|
borderColor: "blue.400",
|
|
3350
4371
|
background: "transparent",
|
|
3351
|
-
shadow: "outer"
|
|
4372
|
+
shadow: "outer",
|
|
4373
|
+
_nextTheme: {
|
|
4374
|
+
borderColor: "border.focused"
|
|
4375
|
+
}
|
|
3352
4376
|
}
|
|
3353
4377
|
},
|
|
3354
4378
|
selected: {
|
|
3355
4379
|
rounded: "sm",
|
|
3356
4380
|
borderColor: "blue.400",
|
|
3357
4381
|
backgroundColor: "blue.400",
|
|
3358
|
-
color: "white"
|
|
4382
|
+
color: "white",
|
|
4383
|
+
_nextTheme: {
|
|
4384
|
+
borderColor: "background.brand.bold.selected",
|
|
4385
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4386
|
+
color: "text.inverse"
|
|
4387
|
+
}
|
|
3359
4388
|
},
|
|
3360
4389
|
range: {
|
|
3361
4390
|
borderColor: "ice.50",
|
|
3362
|
-
backgroundColor: "ice.50"
|
|
4391
|
+
backgroundColor: "ice.50",
|
|
4392
|
+
_nextTheme: {
|
|
4393
|
+
borderColor: "background.brand.selected",
|
|
4394
|
+
backgroundColor: "background.brand.selected"
|
|
4395
|
+
}
|
|
3363
4396
|
},
|
|
3364
4397
|
today: {
|
|
3365
4398
|
rounded: "sm",
|
|
3366
4399
|
borderColor: "orange.50",
|
|
3367
|
-
backgroundColor: "orange.50"
|
|
4400
|
+
backgroundColor: "orange.50",
|
|
4401
|
+
_nextTheme: {
|
|
4402
|
+
borderColor: "background.warning.bold",
|
|
4403
|
+
backgroundColor: "background.warning.bold",
|
|
4404
|
+
color: "text.warning.inverse"
|
|
4405
|
+
}
|
|
3368
4406
|
}
|
|
3369
4407
|
}
|
|
3370
4408
|
},
|
|
@@ -3389,6 +4427,9 @@ var yearItemRecipe = defineRecipe13({
|
|
|
3389
4427
|
cursor: "not-allowed",
|
|
3390
4428
|
borderColor: "transparent",
|
|
3391
4429
|
backgroundColor: "transparent"
|
|
4430
|
+
},
|
|
4431
|
+
_nextTheme: {
|
|
4432
|
+
color: "text.default"
|
|
3392
4433
|
}
|
|
3393
4434
|
},
|
|
3394
4435
|
variants: {
|
|
@@ -3398,28 +4439,49 @@ var yearItemRecipe = defineRecipe13({
|
|
|
3398
4439
|
rounded: "sm",
|
|
3399
4440
|
_hover: {
|
|
3400
4441
|
borderColor: "gray.50",
|
|
3401
|
-
background: "gray.50"
|
|
4442
|
+
background: "gray.50",
|
|
4443
|
+
_nextTheme: {
|
|
4444
|
+
borderColor: "background.neutral.hovered",
|
|
4445
|
+
background: "background.neutral.hovered"
|
|
4446
|
+
}
|
|
3402
4447
|
},
|
|
3403
4448
|
_focus: {
|
|
3404
4449
|
borderColor: "blue.400",
|
|
3405
4450
|
background: "transparent",
|
|
3406
|
-
shadow: "outer"
|
|
4451
|
+
shadow: "outer",
|
|
4452
|
+
_nextTheme: {
|
|
4453
|
+
borderColor: "border.focused"
|
|
4454
|
+
}
|
|
3407
4455
|
}
|
|
3408
4456
|
},
|
|
3409
4457
|
selected: {
|
|
3410
4458
|
rounded: "sm",
|
|
3411
4459
|
borderColor: "blue.400",
|
|
3412
4460
|
backgroundColor: "blue.400",
|
|
3413
|
-
color: "white"
|
|
4461
|
+
color: "white",
|
|
4462
|
+
_nextTheme: {
|
|
4463
|
+
borderColor: "background.brand.bold.selected",
|
|
4464
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4465
|
+
color: "text.inverse"
|
|
4466
|
+
}
|
|
3414
4467
|
},
|
|
3415
4468
|
range: {
|
|
3416
4469
|
borderColor: "ice.50",
|
|
3417
|
-
backgroundColor: "ice.50"
|
|
4470
|
+
backgroundColor: "ice.50",
|
|
4471
|
+
_nextTheme: {
|
|
4472
|
+
borderColor: "background.brand.selected",
|
|
4473
|
+
backgroundColor: "background.brand.selected"
|
|
4474
|
+
}
|
|
3418
4475
|
},
|
|
3419
4476
|
today: {
|
|
3420
4477
|
rounded: "sm",
|
|
3421
4478
|
borderColor: "orange.50",
|
|
3422
|
-
backgroundColor: "orange.50"
|
|
4479
|
+
backgroundColor: "orange.50",
|
|
4480
|
+
_nextTheme: {
|
|
4481
|
+
borderColor: "background.warning.bold",
|
|
4482
|
+
backgroundColor: "background.warning.bold",
|
|
4483
|
+
color: "text.warning.inverse"
|
|
4484
|
+
}
|
|
3423
4485
|
}
|
|
3424
4486
|
}
|
|
3425
4487
|
},
|
|
@@ -3444,6 +4506,9 @@ var timeItemRecipe = defineRecipe13({
|
|
|
3444
4506
|
cursor: "not-allowed",
|
|
3445
4507
|
borderColor: "transparent",
|
|
3446
4508
|
backgroundColor: "transparent"
|
|
4509
|
+
},
|
|
4510
|
+
_nextTheme: {
|
|
4511
|
+
color: "text.default"
|
|
3447
4512
|
}
|
|
3448
4513
|
},
|
|
3449
4514
|
variants: {
|
|
@@ -3453,19 +4518,31 @@ var timeItemRecipe = defineRecipe13({
|
|
|
3453
4518
|
rounded: "sm",
|
|
3454
4519
|
_hover: {
|
|
3455
4520
|
borderColor: "gray.50",
|
|
3456
|
-
background: "gray.50"
|
|
4521
|
+
background: "gray.50",
|
|
4522
|
+
_nextTheme: {
|
|
4523
|
+
borderColor: "background.neutral.hovered",
|
|
4524
|
+
background: "background.neutral.hovered"
|
|
4525
|
+
}
|
|
3457
4526
|
},
|
|
3458
4527
|
_focus: {
|
|
3459
4528
|
borderColor: "blue.400",
|
|
3460
4529
|
background: "transparent",
|
|
3461
|
-
shadow: "outer"
|
|
4530
|
+
shadow: "outer",
|
|
4531
|
+
_nextTheme: {
|
|
4532
|
+
borderColor: "border.focused"
|
|
4533
|
+
}
|
|
3462
4534
|
}
|
|
3463
4535
|
},
|
|
3464
4536
|
selected: {
|
|
3465
4537
|
rounded: "sm",
|
|
3466
4538
|
borderColor: "blue.400",
|
|
3467
4539
|
backgroundColor: "blue.400",
|
|
3468
|
-
color: "white"
|
|
4540
|
+
color: "white",
|
|
4541
|
+
_nextTheme: {
|
|
4542
|
+
borderColor: "background.brand.bold.selected",
|
|
4543
|
+
backgroundColor: "background.brand.bold.selected",
|
|
4544
|
+
color: "text.inverse"
|
|
4545
|
+
}
|
|
3469
4546
|
}
|
|
3470
4547
|
}
|
|
3471
4548
|
},
|
|
@@ -3492,7 +4569,12 @@ var carouselSlotRecipe = defineSlotRecipe22({
|
|
|
3492
4569
|
borderWidth: "1px",
|
|
3493
4570
|
borderColor: "gray.100",
|
|
3494
4571
|
overflow: "hidden",
|
|
3495
|
-
boxSizing: "border-box"
|
|
4572
|
+
boxSizing: "border-box",
|
|
4573
|
+
_nextTheme: {
|
|
4574
|
+
background: "background.neutral.subtle",
|
|
4575
|
+
borderRadius: "md",
|
|
4576
|
+
borderColor: "border.default"
|
|
4577
|
+
}
|
|
3496
4578
|
},
|
|
3497
4579
|
buttonRight: {
|
|
3498
4580
|
display: "flex",
|
|
@@ -3569,7 +4651,6 @@ var chartSlotRecipe = defineSlotRecipe23({
|
|
|
3569
4651
|
flexDirection: "row",
|
|
3570
4652
|
flexWrap: "wrap",
|
|
3571
4653
|
alignItems: "center",
|
|
3572
|
-
wrap: "wrap",
|
|
3573
4654
|
width: "full",
|
|
3574
4655
|
gap: "4",
|
|
3575
4656
|
py: "2",
|
|
@@ -3587,14 +4668,20 @@ var chartSlotRecipe = defineSlotRecipe23({
|
|
|
3587
4668
|
},
|
|
3588
4669
|
chartTooltip: {
|
|
3589
4670
|
position: "absolute",
|
|
3590
|
-
backgroundColor: "white",
|
|
3591
|
-
border: "1px solid",
|
|
3592
|
-
borderColor: "gray.400",
|
|
3593
4671
|
borderRadius: "md",
|
|
4672
|
+
borderWidth: "1px",
|
|
4673
|
+
borderColor: "gray.400",
|
|
4674
|
+
background: "white",
|
|
3594
4675
|
boxShadow: "sm",
|
|
3595
4676
|
zIndex: "popover",
|
|
3596
4677
|
pointerEvents: "none",
|
|
3597
|
-
transition: "all 0.1s ease 0s"
|
|
4678
|
+
transition: "all 0.1s ease 0s",
|
|
4679
|
+
_nextTheme: {
|
|
4680
|
+
borderRadius: "xl",
|
|
4681
|
+
borderColor: "border.default",
|
|
4682
|
+
background: "background.stage",
|
|
4683
|
+
boxShadow: "sm"
|
|
4684
|
+
}
|
|
3598
4685
|
},
|
|
3599
4686
|
tooltipWrapper: {
|
|
3600
4687
|
display: "flex",
|
|
@@ -3653,7 +4740,12 @@ var autocompleteSlotRecipe = defineSlotRecipe24({
|
|
|
3653
4740
|
zIndex: "999",
|
|
3654
4741
|
py: 2,
|
|
3655
4742
|
height: "9.5",
|
|
3656
|
-
_hover: { color: "blue.500" }
|
|
4743
|
+
_hover: { color: "blue.500", _nextTheme: { color: "text.link" } },
|
|
4744
|
+
_nextTheme: {
|
|
4745
|
+
background: "background.stage",
|
|
4746
|
+
borderColor: "border.default",
|
|
4747
|
+
color: "text.link"
|
|
4748
|
+
}
|
|
3657
4749
|
},
|
|
3658
4750
|
emptyText: {
|
|
3659
4751
|
px: 3,
|
|
@@ -3703,7 +4795,10 @@ var timelineSlotRecipe = defineSlotRecipe25({
|
|
|
3703
4795
|
fontSize: "sm",
|
|
3704
4796
|
color: "gray.400",
|
|
3705
4797
|
lineHeight: "sm",
|
|
3706
|
-
marginTop: "0.5"
|
|
4798
|
+
marginTop: "0.5",
|
|
4799
|
+
_nextTheme: {
|
|
4800
|
+
color: "text.secondary"
|
|
4801
|
+
}
|
|
3707
4802
|
},
|
|
3708
4803
|
content: {
|
|
3709
4804
|
paddingTop: 3
|
|
@@ -3727,7 +4822,10 @@ var timelineDocumentSlotRecipe = defineSlotRecipe25({
|
|
|
3727
4822
|
borderWidth: "1px",
|
|
3728
4823
|
borderColor: "gray.100",
|
|
3729
4824
|
width: "full",
|
|
3730
|
-
gap: "3"
|
|
4825
|
+
gap: "3",
|
|
4826
|
+
_nextTheme: {
|
|
4827
|
+
borderColor: "border.default"
|
|
4828
|
+
}
|
|
3731
4829
|
},
|
|
3732
4830
|
content: {
|
|
3733
4831
|
display: "flex",
|
|
@@ -3738,7 +4836,10 @@ var timelineDocumentSlotRecipe = defineSlotRecipe25({
|
|
|
3738
4836
|
lineHeight: "md",
|
|
3739
4837
|
fontWeight: "regular",
|
|
3740
4838
|
letterSpacing: "normal",
|
|
3741
|
-
color: "dark"
|
|
4839
|
+
color: "dark",
|
|
4840
|
+
_nextTheme: {
|
|
4841
|
+
color: "text.default"
|
|
4842
|
+
}
|
|
3742
4843
|
},
|
|
3743
4844
|
description: {
|
|
3744
4845
|
display: "flex",
|
|
@@ -3749,7 +4850,10 @@ var timelineDocumentSlotRecipe = defineSlotRecipe25({
|
|
|
3749
4850
|
lineHeight: "md",
|
|
3750
4851
|
fontWeight: "regular",
|
|
3751
4852
|
letterSpacing: "normal",
|
|
3752
|
-
color: "gray.400"
|
|
4853
|
+
color: "gray.400",
|
|
4854
|
+
_nextTheme: {
|
|
4855
|
+
color: "text.secondary"
|
|
4856
|
+
}
|
|
3753
4857
|
}
|
|
3754
4858
|
},
|
|
3755
4859
|
variants: {
|
|
@@ -3807,9 +4911,13 @@ var timelineSeparatorSlotRecipe = defineSlotRecipe25({
|
|
|
3807
4911
|
topConnector: {
|
|
3808
4912
|
height: "6px",
|
|
3809
4913
|
width: "2px",
|
|
4914
|
+
roundedBottom: "2px",
|
|
3810
4915
|
backgroundColor: "gray.100",
|
|
3811
4916
|
"&[data-position=first]": {
|
|
3812
4917
|
backgroundColor: "transparent"
|
|
4918
|
+
},
|
|
4919
|
+
_nextTheme: {
|
|
4920
|
+
backgroundColor: "border.default"
|
|
3813
4921
|
}
|
|
3814
4922
|
},
|
|
3815
4923
|
bottomConnector: {
|
|
@@ -3820,6 +4928,9 @@ var timelineSeparatorSlotRecipe = defineSlotRecipe25({
|
|
|
3820
4928
|
backgroundColor: "gray.100",
|
|
3821
4929
|
"&[data-position=last]": {
|
|
3822
4930
|
backgroundColor: "transparent"
|
|
4931
|
+
},
|
|
4932
|
+
_nextTheme: {
|
|
4933
|
+
backgroundColor: "border.default"
|
|
3823
4934
|
}
|
|
3824
4935
|
}
|
|
3825
4936
|
}
|
|
@@ -3848,7 +4959,10 @@ var timelineAccordionSlotRecipe = defineSlotRecipe25({
|
|
|
3848
4959
|
"&[data-position=first]": {
|
|
3849
4960
|
backgroundColor: "transparent"
|
|
3850
4961
|
},
|
|
3851
|
-
roundedBottom: "full"
|
|
4962
|
+
roundedBottom: "full",
|
|
4963
|
+
_nextTheme: {
|
|
4964
|
+
backgroundColor: "border.default"
|
|
4965
|
+
}
|
|
3852
4966
|
},
|
|
3853
4967
|
bottomConnector: {
|
|
3854
4968
|
flexGrow: 1,
|
|
@@ -3857,7 +4971,10 @@ var timelineAccordionSlotRecipe = defineSlotRecipe25({
|
|
|
3857
4971
|
"&[data-position=last]": {
|
|
3858
4972
|
backgroundColor: "transparent"
|
|
3859
4973
|
},
|
|
3860
|
-
roundedTop: "full"
|
|
4974
|
+
roundedTop: "full",
|
|
4975
|
+
_nextTheme: {
|
|
4976
|
+
backgroundColor: "border.default"
|
|
4977
|
+
}
|
|
3861
4978
|
},
|
|
3862
4979
|
title: {
|
|
3863
4980
|
paddingTop: 1
|
|
@@ -3867,7 +4984,10 @@ var timelineAccordionSlotRecipe = defineSlotRecipe25({
|
|
|
3867
4984
|
lineHeight: "md",
|
|
3868
4985
|
color: "dark",
|
|
3869
4986
|
fontWeight: "semibold",
|
|
3870
|
-
letterSpacing: "normal"
|
|
4987
|
+
letterSpacing: "normal",
|
|
4988
|
+
_nextTheme: {
|
|
4989
|
+
color: "text.default"
|
|
4990
|
+
}
|
|
3871
4991
|
}
|
|
3872
4992
|
}
|
|
3873
4993
|
});
|
|
@@ -3884,8 +5004,8 @@ var bannerSlotRecipe = defineSlotRecipe26({
|
|
|
3884
5004
|
position: "relative",
|
|
3885
5005
|
alignItems: "var(--mp-banner--align-items)",
|
|
3886
5006
|
borderRadius: "md",
|
|
3887
|
-
paddingY: "
|
|
3888
|
-
paddingX: "
|
|
5007
|
+
paddingY: "3",
|
|
5008
|
+
paddingX: "4"
|
|
3889
5009
|
},
|
|
3890
5010
|
body: {
|
|
3891
5011
|
display: "flex",
|
|
@@ -3897,16 +5017,36 @@ var bannerSlotRecipe = defineSlotRecipe26({
|
|
|
3897
5017
|
variants: {
|
|
3898
5018
|
variant: {
|
|
3899
5019
|
info: {
|
|
3900
|
-
root: {
|
|
5020
|
+
root: {
|
|
5021
|
+
backgroundColor: "blue.50",
|
|
5022
|
+
_nextTheme: {
|
|
5023
|
+
backgroundColor: "background.brand"
|
|
5024
|
+
}
|
|
5025
|
+
}
|
|
3901
5026
|
},
|
|
3902
5027
|
success: {
|
|
3903
|
-
root: {
|
|
5028
|
+
root: {
|
|
5029
|
+
backgroundColor: "green.50",
|
|
5030
|
+
_nextTheme: {
|
|
5031
|
+
backgroundColor: "background.success"
|
|
5032
|
+
}
|
|
5033
|
+
}
|
|
3904
5034
|
},
|
|
3905
5035
|
danger: {
|
|
3906
|
-
root: {
|
|
5036
|
+
root: {
|
|
5037
|
+
backgroundColor: "red.50",
|
|
5038
|
+
_nextTheme: {
|
|
5039
|
+
backgroundColor: "background.danger"
|
|
5040
|
+
}
|
|
5041
|
+
}
|
|
3907
5042
|
},
|
|
3908
5043
|
warning: {
|
|
3909
|
-
root: {
|
|
5044
|
+
root: {
|
|
5045
|
+
backgroundColor: "orange.50",
|
|
5046
|
+
_nextTheme: {
|
|
5047
|
+
backgroundColor: "background.warning"
|
|
5048
|
+
}
|
|
5049
|
+
}
|
|
3910
5050
|
}
|
|
3911
5051
|
}
|
|
3912
5052
|
},
|
|
@@ -3926,7 +5066,10 @@ var bannerTitleRecipe = defineRecipe14({
|
|
|
3926
5066
|
letterSpacing: "normal",
|
|
3927
5067
|
color: "dark",
|
|
3928
5068
|
marginTop: "0.5",
|
|
3929
|
-
marginBottom: "1
|
|
5069
|
+
marginBottom: "1",
|
|
5070
|
+
_nextTheme: {
|
|
5071
|
+
color: "text.default"
|
|
5072
|
+
}
|
|
3930
5073
|
},
|
|
3931
5074
|
variants: {},
|
|
3932
5075
|
compoundVariants: [],
|
|
@@ -3941,7 +5084,10 @@ var bannerDescriptionRecipe = defineRecipe14({
|
|
|
3941
5084
|
fontWeight: "regular",
|
|
3942
5085
|
lineHeight: "md",
|
|
3943
5086
|
letterSpacing: "normal",
|
|
3944
|
-
color: "dark"
|
|
5087
|
+
color: "dark",
|
|
5088
|
+
_nextTheme: {
|
|
5089
|
+
color: "text.default"
|
|
5090
|
+
}
|
|
3945
5091
|
},
|
|
3946
5092
|
variants: {},
|
|
3947
5093
|
compoundVariants: [],
|
|
@@ -3976,7 +5122,6 @@ var bannerLinkRecipe = defineRecipe14({
|
|
|
3976
5122
|
base: {
|
|
3977
5123
|
display: "flex",
|
|
3978
5124
|
gap: "4",
|
|
3979
|
-
marginBottom: "var(--mp-banner-link--margin-bottom)",
|
|
3980
5125
|
marginTop: "var(--mp-banner-link--margin-top)"
|
|
3981
5126
|
},
|
|
3982
5127
|
variants: {},
|
|
@@ -3988,8 +5133,8 @@ var bannerCloseButtonRecipe = defineRecipe14({
|
|
|
3988
5133
|
jsx: ["MpBannerCloseButton", "mp-banner-close-button"],
|
|
3989
5134
|
base: {
|
|
3990
5135
|
position: "absolute",
|
|
3991
|
-
top: "
|
|
3992
|
-
right: "
|
|
5136
|
+
top: "3",
|
|
5137
|
+
right: "4",
|
|
3993
5138
|
display: "inline-flex",
|
|
3994
5139
|
justifyContent: "center",
|
|
3995
5140
|
alignItems: "center",
|
|
@@ -4032,29 +5177,84 @@ var colorPickerSlotRecipe = defineSlotRecipe27({
|
|
|
4032
5177
|
gap: "2"
|
|
4033
5178
|
},
|
|
4034
5179
|
popoverTrigger: {
|
|
4035
|
-
display: "flex",
|
|
4036
|
-
alignItems: "center",
|
|
4037
5180
|
cursor: "pointer",
|
|
4038
5181
|
position: "relative",
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
5182
|
+
display: "flex",
|
|
5183
|
+
alignItems: "center",
|
|
5184
|
+
borderWidth: "1px",
|
|
5185
|
+
borderColor: "gray.100",
|
|
4042
5186
|
borderRadius: "md",
|
|
4043
|
-
|
|
5187
|
+
backgroundColor: "white",
|
|
5188
|
+
paddingTop: "1.5",
|
|
5189
|
+
paddingBottom: "1.5",
|
|
5190
|
+
paddingLeft: "3",
|
|
5191
|
+
paddingRight: "4",
|
|
5192
|
+
transition: "all 250ms",
|
|
5193
|
+
outline: "none",
|
|
5194
|
+
_nextTheme: {
|
|
5195
|
+
borderRadius: "md",
|
|
5196
|
+
borderColor: "border.form",
|
|
5197
|
+
background: "background.neutral"
|
|
5198
|
+
},
|
|
5199
|
+
_hover: {
|
|
5200
|
+
borderColor: "gray.400",
|
|
5201
|
+
_nextTheme: {
|
|
5202
|
+
borderColor: "border.form",
|
|
5203
|
+
background: "background.neutral.hovered"
|
|
5204
|
+
}
|
|
5205
|
+
},
|
|
4044
5206
|
_focus: {
|
|
4045
|
-
boxShadow: "
|
|
4046
|
-
borderColor: "blue.400
|
|
4047
|
-
|
|
5207
|
+
boxShadow: "focus",
|
|
5208
|
+
borderColor: "blue.400",
|
|
5209
|
+
_nextTheme: {
|
|
5210
|
+
boxShadow: "focus",
|
|
5211
|
+
borderColor: "border.focused"
|
|
5212
|
+
},
|
|
5213
|
+
_hover: {
|
|
5214
|
+
borderColor: "blue.400",
|
|
5215
|
+
_nextTheme: {
|
|
5216
|
+
borderColor: "border.focused"
|
|
5217
|
+
}
|
|
5218
|
+
}
|
|
5219
|
+
},
|
|
5220
|
+
_disabled: {
|
|
5221
|
+
cursor: "not-allowed",
|
|
5222
|
+
background: "gray.50",
|
|
5223
|
+
_nextTheme: {
|
|
5224
|
+
background: "background.disabled",
|
|
5225
|
+
borderColor: "border.disabled"
|
|
5226
|
+
},
|
|
5227
|
+
_hover: {
|
|
5228
|
+
_nextTheme: {
|
|
5229
|
+
background: "background.disabled",
|
|
5230
|
+
borderColor: "border.disabled"
|
|
5231
|
+
}
|
|
5232
|
+
}
|
|
5233
|
+
},
|
|
5234
|
+
_invalid: {
|
|
5235
|
+
borderColor: "red.400",
|
|
5236
|
+
_nextTheme: {
|
|
5237
|
+
borderColor: "border.danger"
|
|
5238
|
+
},
|
|
5239
|
+
_hover: {
|
|
5240
|
+
borderColor: "red.400",
|
|
5241
|
+
_nextTheme: {
|
|
5242
|
+
borderColor: "border.danger"
|
|
5243
|
+
}
|
|
5244
|
+
}
|
|
4048
5245
|
}
|
|
4049
5246
|
},
|
|
4050
5247
|
boxColor: {
|
|
4051
5248
|
flex: "none",
|
|
4052
5249
|
width: "6",
|
|
4053
5250
|
height: "6",
|
|
5251
|
+
mr: "2",
|
|
4054
5252
|
borderWidth: "1px",
|
|
4055
5253
|
borderColor: "gray.50",
|
|
4056
5254
|
borderRadius: "sm",
|
|
4057
|
-
|
|
5255
|
+
_nextTheme: {
|
|
5256
|
+
borderColor: "border.default"
|
|
5257
|
+
}
|
|
4058
5258
|
},
|
|
4059
5259
|
inputTrigger: {
|
|
4060
5260
|
margin: "-12px",
|
|
@@ -4068,26 +5268,20 @@ var colorPickerSlotRecipe = defineSlotRecipe27({
|
|
|
4068
5268
|
outline: "none"
|
|
4069
5269
|
}
|
|
4070
5270
|
},
|
|
4071
|
-
popoverContent: {
|
|
4072
|
-
bg: "white",
|
|
4073
|
-
rounded: "md",
|
|
4074
|
-
shadow: "lg",
|
|
4075
|
-
borderWidth: "1px",
|
|
4076
|
-
borderColor: "gray.400"
|
|
4077
|
-
},
|
|
5271
|
+
popoverContent: {},
|
|
4078
5272
|
wrapperAdvance: {
|
|
4079
|
-
display: "flex",
|
|
4080
|
-
flexDirection: "column",
|
|
4081
5273
|
position: "relative",
|
|
4082
5274
|
width: "280px",
|
|
5275
|
+
display: "flex",
|
|
5276
|
+
flexDirection: "column",
|
|
4083
5277
|
padding: "3",
|
|
4084
5278
|
gap: "3"
|
|
4085
5279
|
},
|
|
4086
5280
|
wrapperBasic: {
|
|
4087
|
-
display: "flex",
|
|
4088
|
-
flexDirection: "column",
|
|
4089
5281
|
position: "relative",
|
|
4090
5282
|
width: "188px",
|
|
5283
|
+
display: "flex",
|
|
5284
|
+
flexDirection: "column",
|
|
4091
5285
|
padding: "3",
|
|
4092
5286
|
gap: "3"
|
|
4093
5287
|
},
|
|
@@ -4107,10 +5301,10 @@ var colorPickerSlotRecipe = defineSlotRecipe27({
|
|
|
4107
5301
|
gap: "2"
|
|
4108
5302
|
},
|
|
4109
5303
|
boxPreset: {
|
|
5304
|
+
position: "relative",
|
|
4110
5305
|
display: "flex",
|
|
4111
5306
|
flexDirection: "column",
|
|
4112
|
-
gap: "2"
|
|
4113
|
-
position: "relative"
|
|
5307
|
+
gap: "2"
|
|
4114
5308
|
},
|
|
4115
5309
|
wrapperPreset: {
|
|
4116
5310
|
position: "relative",
|
|
@@ -4122,7 +5316,7 @@ var colorPickerSlotRecipe = defineSlotRecipe27({
|
|
|
4122
5316
|
position: "relative",
|
|
4123
5317
|
display: "flex",
|
|
4124
5318
|
flexWrap: "wrap",
|
|
4125
|
-
gap: "
|
|
5319
|
+
gap: "1"
|
|
4126
5320
|
}
|
|
4127
5321
|
}
|
|
4128
5322
|
});
|
|
@@ -4181,24 +5375,57 @@ var sliderSlotRecipe = defineSlotRecipe28({
|
|
|
4181
5375
|
top: "-8px",
|
|
4182
5376
|
background: "none",
|
|
4183
5377
|
outline: "none",
|
|
4184
|
-
|
|
5378
|
+
_focus: {
|
|
4185
5379
|
borderRadius: "100px",
|
|
4186
5380
|
borderWidth: "1px",
|
|
4187
5381
|
borderStyle: "solid",
|
|
4188
5382
|
borderColor: "blue.400",
|
|
4189
|
-
boxShadow: "focus"
|
|
5383
|
+
boxShadow: "focus",
|
|
5384
|
+
_nextTheme: {
|
|
5385
|
+
borderColor: "border.focused",
|
|
5386
|
+
boxShadow: "focus"
|
|
5387
|
+
}
|
|
5388
|
+
},
|
|
5389
|
+
_disabled: {
|
|
5390
|
+
"&::-webkit-slider-thumb": {
|
|
5391
|
+
cursor: "not-allowed",
|
|
5392
|
+
background: "radial-gradient(circle, var(--mp-colors-gray-100) 40%, var(--mp-colors-white) 50%)",
|
|
5393
|
+
_nextTheme: {
|
|
5394
|
+
background: "radial-gradient(circle, var(--mp-colors-icon-disabled) 40%, var(--mp-colors-background-neutral) 50%)"
|
|
5395
|
+
}
|
|
5396
|
+
}
|
|
5397
|
+
},
|
|
5398
|
+
"&[minpressed=true], &[maxpressed=true]": {
|
|
5399
|
+
"&::-webkit-slider-thumb": {
|
|
5400
|
+
borderColor: "blue.400",
|
|
5401
|
+
_nextTheme: {
|
|
5402
|
+
borderColor: "border.brand"
|
|
5403
|
+
}
|
|
5404
|
+
}
|
|
4190
5405
|
},
|
|
4191
5406
|
"&::-webkit-slider-thumb": {
|
|
5407
|
+
cursor: "pointer",
|
|
4192
5408
|
appearance: "none",
|
|
5409
|
+
pointerEvents: "auto",
|
|
4193
5410
|
width: "5",
|
|
4194
5411
|
height: "5",
|
|
4195
5412
|
borderRadius: "full",
|
|
4196
5413
|
borderStyle: "solid",
|
|
4197
5414
|
borderColor: "gray.100",
|
|
5415
|
+
background: "radial-gradient(circle, var(--mp-colors-blue-400) 40%, var(--mp-colors-white) 50%)",
|
|
4198
5416
|
boxShadow: "sm",
|
|
4199
5417
|
filter: "drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.05)) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.10))",
|
|
4200
5418
|
transition: "border-color 250ms",
|
|
4201
|
-
|
|
5419
|
+
_hover: {
|
|
5420
|
+
borderColor: "gray.600",
|
|
5421
|
+
_nextTheme: {
|
|
5422
|
+
borderColor: "border.bold"
|
|
5423
|
+
}
|
|
5424
|
+
},
|
|
5425
|
+
_nextTheme: {
|
|
5426
|
+
borderColor: "border.default",
|
|
5427
|
+
background: "radial-gradient(circle, var(--mp-colors-border-brand) 40%, var(--mp-colors-background-neutral) 50%)"
|
|
5428
|
+
}
|
|
4202
5429
|
}
|
|
4203
5430
|
}
|
|
4204
5431
|
}
|
|
@@ -4357,7 +5584,7 @@ import { defineTokens as defineTokens11 } from "@pandacss/dev";
|
|
|
4357
5584
|
|
|
4358
5585
|
// src/tokens/borders.ts
|
|
4359
5586
|
import { defineTokens } from "@pandacss/dev";
|
|
4360
|
-
var
|
|
5587
|
+
var borderWidths = defineTokens.borderWidths({
|
|
4361
5588
|
none: { value: "none" },
|
|
4362
5589
|
sm: { value: "1px" },
|
|
4363
5590
|
md: { value: "1.5px" },
|
|
@@ -4367,29 +5594,12 @@ var borders = defineTokens.borders({
|
|
|
4367
5594
|
// src/tokens/colors.ts
|
|
4368
5595
|
import { defineTokens as defineTokens2 } from "@pandacss/dev";
|
|
4369
5596
|
var colors = defineTokens2.colors({
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
},
|
|
5597
|
+
debug: { value: "blue" },
|
|
5598
|
+
currentcolor: { value: "currentcolor" },
|
|
4373
5599
|
dark: { value: "#232933" },
|
|
4374
|
-
white: {
|
|
4375
|
-
value: "#FFFFFF"
|
|
4376
|
-
},
|
|
4377
5600
|
background: { value: "#F1F5F9" },
|
|
4378
|
-
overlay: {
|
|
4379
|
-
|
|
4380
|
-
},
|
|
4381
|
-
brand: {
|
|
4382
|
-
capital: { value: "#2F5573" },
|
|
4383
|
-
esign: { value: "#00C853" },
|
|
4384
|
-
expense: { value: "#183883" },
|
|
4385
|
-
flex: { value: "#7C4DFF" },
|
|
4386
|
-
jurnal: { value: "#40C3FF" },
|
|
4387
|
-
klikpajak: { value: "#FF9100" },
|
|
4388
|
-
mekari: { value: "#651FFF" },
|
|
4389
|
-
qontak: { value: "#2979FF" },
|
|
4390
|
-
talenta: { value: "#F22929" },
|
|
4391
|
-
university: { value: "#448AFF" }
|
|
4392
|
-
},
|
|
5601
|
+
overlay: { value: "rgba(22, 26, 32, 0.8)" },
|
|
5602
|
+
white: { value: "#FFFFFF" },
|
|
4393
5603
|
whiteAlpha: {
|
|
4394
5604
|
50: { value: "rgba(255, 255, 255, 0.04)" },
|
|
4395
5605
|
100: { value: "rgba(255, 255, 255, 0.06)" },
|
|
@@ -4508,6 +5718,18 @@ var colors = defineTokens2.colors({
|
|
|
4508
5718
|
},
|
|
4509
5719
|
ash: {
|
|
4510
5720
|
100: { value: "#E7EDF5" }
|
|
5721
|
+
},
|
|
5722
|
+
brand: {
|
|
5723
|
+
capital: { value: "#2F5573" },
|
|
5724
|
+
esign: { value: "#00C853" },
|
|
5725
|
+
expense: { value: "#183883" },
|
|
5726
|
+
flex: { value: "#7C4DFF" },
|
|
5727
|
+
jurnal: { value: "#40C3FF" },
|
|
5728
|
+
klikpajak: { value: "#FF9100" },
|
|
5729
|
+
mekari: { value: "#651FFF" },
|
|
5730
|
+
qontak: { value: "#2979FF" },
|
|
5731
|
+
talenta: { value: "#F22929" },
|
|
5732
|
+
university: { value: "#448AFF" }
|
|
4511
5733
|
}
|
|
4512
5734
|
});
|
|
4513
5735
|
|
|
@@ -4532,11 +5754,11 @@ var opacity = defineTokens4.opacity({
|
|
|
4532
5754
|
import { defineTokens as defineTokens5 } from "@pandacss/dev";
|
|
4533
5755
|
var radii = defineTokens5.radii({
|
|
4534
5756
|
none: { value: "0" },
|
|
4535
|
-
xs: { value: "0.125rem" },
|
|
4536
|
-
sm: { value: "0.25rem" },
|
|
4537
|
-
md: { value: "0.375rem" },
|
|
4538
|
-
lg: { value: "0.5rem" },
|
|
4539
|
-
xl: { value: "0.75rem" },
|
|
5757
|
+
xs: { value: "0.125rem", description: "2px" },
|
|
5758
|
+
sm: { value: "0.25rem", description: "4px" },
|
|
5759
|
+
md: { value: "0.375rem", description: "6px" },
|
|
5760
|
+
lg: { value: "0.5rem", description: "8px" },
|
|
5761
|
+
xl: { value: "0.75rem", description: "12px" },
|
|
4540
5762
|
full: { value: "50%" }
|
|
4541
5763
|
});
|
|
4542
5764
|
|
|
@@ -4615,22 +5837,22 @@ var sizes = defineTokens7.sizes({
|
|
|
4615
5837
|
import { defineTokens as defineTokens8 } from "@pandacss/dev";
|
|
4616
5838
|
var spacing = defineTokens8.spacing({
|
|
4617
5839
|
0: { value: "0" },
|
|
4618
|
-
0.5: { value: "0.125rem" },
|
|
4619
|
-
1: { value: "0.25rem" },
|
|
4620
|
-
1.5: { value: "0.375rem" },
|
|
4621
|
-
2: { value: "0.5rem" },
|
|
4622
|
-
3: { value: "0.75rem" },
|
|
4623
|
-
4: { value: "1rem" },
|
|
4624
|
-
5: { value: "1.3rem" },
|
|
4625
|
-
6: { value: "1.5rem" },
|
|
4626
|
-
8: { value: "2rem" },
|
|
4627
|
-
12: { value: "3rem" },
|
|
4628
|
-
16: { value: "4rem" },
|
|
4629
|
-
20: { value: "5rem" },
|
|
4630
|
-
24: { value: "6rem" },
|
|
4631
|
-
32: { value: "8rem" },
|
|
4632
|
-
40: { value: "10rem" },
|
|
4633
|
-
64: { value: "16rem" }
|
|
5840
|
+
0.5: { value: "0.125rem", description: "2px" },
|
|
5841
|
+
1: { value: "0.25rem", description: "4px" },
|
|
5842
|
+
1.5: { value: "0.375rem", description: "6px" },
|
|
5843
|
+
2: { value: "0.5rem", description: "8px" },
|
|
5844
|
+
3: { value: "0.75rem", description: "12px" },
|
|
5845
|
+
4: { value: "1rem", description: "16px" },
|
|
5846
|
+
5: { value: "1.3rem", description: "20px" },
|
|
5847
|
+
6: { value: "1.5rem", description: "24px" },
|
|
5848
|
+
8: { value: "2rem", description: "32px" },
|
|
5849
|
+
12: { value: "3rem", description: "48px" },
|
|
5850
|
+
16: { value: "4rem", description: "64px" },
|
|
5851
|
+
20: { value: "5rem", description: "80px" },
|
|
5852
|
+
24: { value: "6rem", description: "96px" },
|
|
5853
|
+
32: { value: "8rem", description: "112px" },
|
|
5854
|
+
40: { value: "10rem", description: "160px" },
|
|
5855
|
+
64: { value: "16rem", description: "256px" }
|
|
4634
5856
|
});
|
|
4635
5857
|
|
|
4636
5858
|
// src/tokens/z-index.ts
|
|
@@ -4689,7 +5911,7 @@ var letterSpacings = defineTokens10.letterSpacings({
|
|
|
4689
5911
|
|
|
4690
5912
|
// src/tokens/index.ts
|
|
4691
5913
|
var tokens = defineTokens11({
|
|
4692
|
-
|
|
5914
|
+
borderWidths,
|
|
4693
5915
|
colors,
|
|
4694
5916
|
durations,
|
|
4695
5917
|
fonts,
|
|
@@ -4705,6 +5927,1253 @@ var tokens = defineTokens11({
|
|
|
4705
5927
|
zIndex
|
|
4706
5928
|
});
|
|
4707
5929
|
|
|
5930
|
+
// src/tokens-next/index.ts
|
|
5931
|
+
import { defineTokens as defineTokens17 } from "@pandacss/dev";
|
|
5932
|
+
|
|
5933
|
+
// src/tokens-next/borders.ts
|
|
5934
|
+
import { defineTokens as defineTokens12 } from "@pandacss/dev";
|
|
5935
|
+
var borderWidths2 = defineTokens12.borderWidths({
|
|
5936
|
+
none: { value: "none" },
|
|
5937
|
+
sm: { value: "1px" },
|
|
5938
|
+
md: { value: "1.5px" },
|
|
5939
|
+
lg: { value: "2px" },
|
|
5940
|
+
xl: { value: "3px" },
|
|
5941
|
+
"2xl": { value: "4px" }
|
|
5942
|
+
});
|
|
5943
|
+
|
|
5944
|
+
// src/tokens-next/colors.ts
|
|
5945
|
+
import { defineTokens as defineTokens13 } from "@pandacss/dev";
|
|
5946
|
+
var colors2 = defineTokens13.colors({
|
|
5947
|
+
debug: { value: "red" },
|
|
5948
|
+
currentcolor: { value: "currentcolor" },
|
|
5949
|
+
white: { value: "#FFFFFF" },
|
|
5950
|
+
dark: {
|
|
5951
|
+
"-100": {
|
|
5952
|
+
value: "#101214"
|
|
5953
|
+
},
|
|
5954
|
+
DEFAULT: {
|
|
5955
|
+
value: "#161A1D"
|
|
5956
|
+
},
|
|
5957
|
+
100: { value: "#1D2125" },
|
|
5958
|
+
200: { value: "#22272B" },
|
|
5959
|
+
250: { value: "#282E33" },
|
|
5960
|
+
300: { value: "#2C333A" },
|
|
5961
|
+
350: { value: "#38414A" },
|
|
5962
|
+
400: { value: "#454F59" },
|
|
5963
|
+
500: { value: "#596773" },
|
|
5964
|
+
600: { value: "#738496" },
|
|
5965
|
+
700: { value: "#8C9BAB" },
|
|
5966
|
+
800: { value: "#9FADBC" },
|
|
5967
|
+
900: { value: "#B6C2CF" },
|
|
5968
|
+
1e3: { value: "#C7D1DB" }
|
|
5969
|
+
},
|
|
5970
|
+
neutral: {
|
|
5971
|
+
100: { value: "#F7F8F9" },
|
|
5972
|
+
200: { value: "#F0F1F3" },
|
|
5973
|
+
300: { value: "#DCDFE4" },
|
|
5974
|
+
400: { value: "#B2B9C4" },
|
|
5975
|
+
500: { value: "#8690A2" },
|
|
5976
|
+
600: { value: "#758195" },
|
|
5977
|
+
700: { value: "#656F80" },
|
|
5978
|
+
800: { value: "#4C5460" },
|
|
5979
|
+
900: { value: "#383E48" },
|
|
5980
|
+
1e3: { value: "#272B32" }
|
|
5981
|
+
},
|
|
5982
|
+
blue: {
|
|
5983
|
+
100: { value: "#ECF3FE" },
|
|
5984
|
+
200: { value: "#CEE0FD" },
|
|
5985
|
+
300: { value: "#8EB7FA" },
|
|
5986
|
+
400: { value: "#649CF8" },
|
|
5987
|
+
500: { value: "#488BF7" },
|
|
5988
|
+
600: { value: "#387CEB" },
|
|
5989
|
+
700: { value: "#306AC8" },
|
|
5990
|
+
800: { value: "#295AAA" },
|
|
5991
|
+
900: { value: "#173361" },
|
|
5992
|
+
1e3: { value: "#132A4F" }
|
|
5993
|
+
},
|
|
5994
|
+
indigo: {
|
|
5995
|
+
100: { value: "#EEF0FC" },
|
|
5996
|
+
200: { value: "#D6DBF7" },
|
|
5997
|
+
300: { value: "#A8B2EF" },
|
|
5998
|
+
400: { value: "#8997E9" },
|
|
5999
|
+
500: { value: "#7586E5" },
|
|
6000
|
+
600: { value: "#6577E2" },
|
|
6001
|
+
700: { value: "#4B61DC" },
|
|
6002
|
+
800: { value: "#4053BC" },
|
|
6003
|
+
900: { value: "#242F6A" },
|
|
6004
|
+
1e3: { value: "#1D2656" }
|
|
6005
|
+
},
|
|
6006
|
+
violet: {
|
|
6007
|
+
100: { value: "#F3F1FC" },
|
|
6008
|
+
200: { value: "#DEDAF6" },
|
|
6009
|
+
300: { value: "#B8AEEB" },
|
|
6010
|
+
400: { value: "#9F91E3" },
|
|
6011
|
+
500: { value: "#8F7FDF" },
|
|
6012
|
+
600: { value: "#8270DB" },
|
|
6013
|
+
700: { value: "#6F5FBA" },
|
|
6014
|
+
800: { value: "#5F519F" },
|
|
6015
|
+
900: { value: "#352E5A" },
|
|
6016
|
+
1e3: { value: "#2B2549" }
|
|
6017
|
+
},
|
|
6018
|
+
fuchsia: {
|
|
6019
|
+
100: { value: "#FBEEFE" },
|
|
6020
|
+
200: { value: "#F6D1FB" },
|
|
6021
|
+
300: { value: "#EA98F6" },
|
|
6022
|
+
400: { value: "#E16CF2" },
|
|
6023
|
+
500: { value: "#DA4DF0" },
|
|
6024
|
+
600: { value: "#C841DC" },
|
|
6025
|
+
700: { value: "#AC37BD" },
|
|
6026
|
+
800: { value: "#932FA2" },
|
|
6027
|
+
900: { value: "#531B5C" },
|
|
6028
|
+
1e3: { value: "#45164C" }
|
|
6029
|
+
},
|
|
6030
|
+
red: {
|
|
6031
|
+
100: { value: "#FCEEED" },
|
|
6032
|
+
200: { value: "#F9D7D5" },
|
|
6033
|
+
300: { value: "#F09E99" },
|
|
6034
|
+
400: { value: "#EA7A72" },
|
|
6035
|
+
500: { value: "#E6645B" },
|
|
6036
|
+
600: { value: "#E2483D" },
|
|
6037
|
+
700: { value: "#C33E35" },
|
|
6038
|
+
800: { value: "#A8352D" },
|
|
6039
|
+
900: { value: "#5E1E19" },
|
|
6040
|
+
1e3: { value: "#4E1915" }
|
|
6041
|
+
},
|
|
6042
|
+
orange: {
|
|
6043
|
+
100: { value: "#FDF3EC" },
|
|
6044
|
+
200: { value: "#F9DECB" },
|
|
6045
|
+
300: { value: "#F5C39F" },
|
|
6046
|
+
400: { value: "#F0A875" },
|
|
6047
|
+
500: { value: "#EB8E4B" },
|
|
6048
|
+
600: { value: "#E46910" },
|
|
6049
|
+
700: { value: "#BC560D" },
|
|
6050
|
+
800: { value: "#A14A0B" },
|
|
6051
|
+
900: { value: "#6B3108" },
|
|
6052
|
+
1e3: { value: "#492105" }
|
|
6053
|
+
},
|
|
6054
|
+
yellow: {
|
|
6055
|
+
100: { value: "#FDF6DD" },
|
|
6056
|
+
200: { value: "#F9E399" },
|
|
6057
|
+
300: { value: "#F5CD47" },
|
|
6058
|
+
400: { value: "#D8B53F" },
|
|
6059
|
+
500: { value: "#C2A338" },
|
|
6060
|
+
600: { value: "#A68A30" },
|
|
6061
|
+
700: { value: "#897228" },
|
|
6062
|
+
800: { value: "#766222" },
|
|
6063
|
+
900: { value: "#4D4016" },
|
|
6064
|
+
1e3: { value: "#362D10" }
|
|
6065
|
+
},
|
|
6066
|
+
lime: {
|
|
6067
|
+
100: { value: "#F4FAEA" },
|
|
6068
|
+
200: { value: "#D8EFB5" },
|
|
6069
|
+
300: { value: "#B1DF6B" },
|
|
6070
|
+
400: { value: "#83CA16" },
|
|
6071
|
+
500: { value: "#77B814" },
|
|
6072
|
+
600: { value: "#649B11" },
|
|
6073
|
+
700: { value: "#53800E" },
|
|
6074
|
+
800: { value: "#466C0C" },
|
|
6075
|
+
900: { value: "#304A08" },
|
|
6076
|
+
1e3: { value: "#213306" }
|
|
6077
|
+
},
|
|
6078
|
+
green: {
|
|
6079
|
+
100: { value: "#F2F9F6" },
|
|
6080
|
+
200: { value: "#D2EBE1" },
|
|
6081
|
+
300: { value: "#A7D9C4" },
|
|
6082
|
+
400: { value: "#7DC7A8" },
|
|
6083
|
+
500: { value: "#56B78E" },
|
|
6084
|
+
600: { value: "#23A06B" },
|
|
6085
|
+
700: { value: "#1C8459" },
|
|
6086
|
+
800: { value: "#186F4A" },
|
|
6087
|
+
900: { value: "#104B32" },
|
|
6088
|
+
1e3: { value: "#0B3524" }
|
|
6089
|
+
},
|
|
6090
|
+
teal: {
|
|
6091
|
+
100: { value: "#F2F9F6" },
|
|
6092
|
+
200: { value: "#C4EDE9" },
|
|
6093
|
+
300: { value: "#92DED6" },
|
|
6094
|
+
400: { value: "#4FCABC" },
|
|
6095
|
+
500: { value: "#19B9A8" },
|
|
6096
|
+
600: { value: "#119E8F" },
|
|
6097
|
+
700: { value: "#0E8275" },
|
|
6098
|
+
800: { value: "#0C6E63" },
|
|
6099
|
+
900: { value: "#084841" },
|
|
6100
|
+
1e3: { value: "#06342F" }
|
|
6101
|
+
},
|
|
6102
|
+
brand: {
|
|
6103
|
+
capital: { value: "#2F5573" },
|
|
6104
|
+
esign: { value: "#00C853" },
|
|
6105
|
+
expense: { value: "#183883" },
|
|
6106
|
+
flex: { value: "#7C4DFF" },
|
|
6107
|
+
jurnal: { value: "#40C3FF" },
|
|
6108
|
+
klikpajak: { value: "#FF9100" },
|
|
6109
|
+
mekari: { value: "#651FFF" },
|
|
6110
|
+
qontak: { value: "#2979FF" },
|
|
6111
|
+
talenta: { value: "#F22929" },
|
|
6112
|
+
university: { value: "#448AFF" }
|
|
6113
|
+
}
|
|
6114
|
+
});
|
|
6115
|
+
|
|
6116
|
+
// src/tokens-next/radii.ts
|
|
6117
|
+
import { defineTokens as defineTokens14 } from "@pandacss/dev";
|
|
6118
|
+
var radii2 = defineTokens14.radii({
|
|
6119
|
+
none: { value: "0" },
|
|
6120
|
+
sm: { value: "0.25rem", description: "4px" },
|
|
6121
|
+
md: { value: "0.375rem", description: "6px" },
|
|
6122
|
+
lg: { value: "0.5rem", description: "8px" },
|
|
6123
|
+
xl: { value: "0.75rem", description: "12px" },
|
|
6124
|
+
full: { value: "999px" }
|
|
6125
|
+
});
|
|
6126
|
+
|
|
6127
|
+
// src/tokens-next/spacing.ts
|
|
6128
|
+
import { defineTokens as defineTokens15 } from "@pandacss/dev";
|
|
6129
|
+
var spacing2 = defineTokens15.spacing({
|
|
6130
|
+
0: { value: "0" },
|
|
6131
|
+
0.5: { value: "0.125rem", description: "2px" },
|
|
6132
|
+
1: { value: "0.25rem", description: "4px" },
|
|
6133
|
+
1.5: { value: "0.375rem", description: "6px" },
|
|
6134
|
+
2: { value: "0.5rem", description: "8px" },
|
|
6135
|
+
3: { value: "0.75rem", description: "12px" },
|
|
6136
|
+
4: { value: "1rem", description: "16px" },
|
|
6137
|
+
5: { value: "1.3rem", description: "20px" },
|
|
6138
|
+
6: { value: "1.5rem", description: "24px" },
|
|
6139
|
+
8: { value: "2rem", description: "32px" },
|
|
6140
|
+
10: { value: "2.5rem", description: "40px" },
|
|
6141
|
+
20: { value: "5rem", description: "80px" }
|
|
6142
|
+
});
|
|
6143
|
+
|
|
6144
|
+
// src/tokens-next/shadows.ts
|
|
6145
|
+
import { defineTokens as defineTokens16 } from "@pandacss/dev";
|
|
6146
|
+
var shadows2 = defineTokens16.shadows({
|
|
6147
|
+
xs: {
|
|
6148
|
+
value: ["0px 2px 4px 0px {colors.background.shadow}", "0px 0px 2px 0px {colors.background.shadow}"]
|
|
6149
|
+
},
|
|
6150
|
+
sm: {
|
|
6151
|
+
value: ["0px 10px 15px -3px {colors.background.shadow}", "0px 4px 6px -2px {colors.background.shadow}"]
|
|
6152
|
+
},
|
|
6153
|
+
md: {
|
|
6154
|
+
value: ["0px 20px 25px -5px {colors.background.shadow}", "0px 10px 10px -5px {colors.background.shadow}"]
|
|
6155
|
+
},
|
|
6156
|
+
lg: {
|
|
6157
|
+
value: ["0px 25px 30px -10px {colors.background.shadow}", "0px 15px 15px -10px {colors.background.shadow}"]
|
|
6158
|
+
},
|
|
6159
|
+
focus: {
|
|
6160
|
+
value: "0 0 0 1px {colors.border.focused}"
|
|
6161
|
+
},
|
|
6162
|
+
outline: {
|
|
6163
|
+
value: "0 0 0 3px #E0EEFF"
|
|
6164
|
+
},
|
|
6165
|
+
outer: {
|
|
6166
|
+
value: "0 0 0 3px rgba(224, 238, 255, 1)"
|
|
6167
|
+
},
|
|
6168
|
+
none: {
|
|
6169
|
+
value: "none"
|
|
6170
|
+
}
|
|
6171
|
+
});
|
|
6172
|
+
|
|
6173
|
+
// src/tokens-next/index.ts
|
|
6174
|
+
var tokensNext = defineTokens17({
|
|
6175
|
+
borderWidths: borderWidths2,
|
|
6176
|
+
colors: colors2,
|
|
6177
|
+
durations,
|
|
6178
|
+
fonts,
|
|
6179
|
+
fontSizes,
|
|
6180
|
+
fontWeights,
|
|
6181
|
+
lineHeights,
|
|
6182
|
+
letterSpacings,
|
|
6183
|
+
opacity,
|
|
6184
|
+
radii: radii2,
|
|
6185
|
+
shadows: shadows2,
|
|
6186
|
+
sizes,
|
|
6187
|
+
spacing: spacing2,
|
|
6188
|
+
zIndex
|
|
6189
|
+
});
|
|
6190
|
+
|
|
6191
|
+
// src/semanticTokens/index.ts
|
|
6192
|
+
import { defineSemanticTokens as defineSemanticTokens3 } from "@pandacss/dev";
|
|
6193
|
+
|
|
6194
|
+
// src/semanticTokens/colors.ts
|
|
6195
|
+
import { defineSemanticTokens } from "@pandacss/dev";
|
|
6196
|
+
var colors3 = defineSemanticTokens.colors({
|
|
6197
|
+
background: {
|
|
6198
|
+
surface: {
|
|
6199
|
+
value: {
|
|
6200
|
+
base: "#F1F5F9",
|
|
6201
|
+
// Doens't have raw token
|
|
6202
|
+
_light: "#F1F5F9",
|
|
6203
|
+
// Doesn't have raw token
|
|
6204
|
+
_dark: "{colors.dark}"
|
|
6205
|
+
}
|
|
6206
|
+
},
|
|
6207
|
+
stage: {
|
|
6208
|
+
value: {
|
|
6209
|
+
base: "{colors.white}",
|
|
6210
|
+
_light: "{colors.white}",
|
|
6211
|
+
_dark: "{colors.dark.100}"
|
|
6212
|
+
}
|
|
6213
|
+
},
|
|
6214
|
+
overlay: {
|
|
6215
|
+
value: {
|
|
6216
|
+
base: "rgba(35, 41, 51, 0.80)",
|
|
6217
|
+
// Doens't have raw token
|
|
6218
|
+
_light: "rgba(35, 41, 51, 0.80)",
|
|
6219
|
+
// Doesn't have raw token
|
|
6220
|
+
_dark: "rgba(101, 127, 153, 0.8)"
|
|
6221
|
+
// Doesn't have raw token
|
|
6222
|
+
}
|
|
6223
|
+
},
|
|
6224
|
+
disabled: {
|
|
6225
|
+
value: {
|
|
6226
|
+
base: "rgba(29, 31, 36, 0.04)",
|
|
6227
|
+
// Doesn't have raw token
|
|
6228
|
+
_light: "rgba(29, 31, 36, 0.04)",
|
|
6229
|
+
// Doesn't have raw token
|
|
6230
|
+
_dark: "rgba(188, 214, 240, 0.04)"
|
|
6231
|
+
// Doesn't have raw token
|
|
6232
|
+
}
|
|
6233
|
+
},
|
|
6234
|
+
inverse: {
|
|
6235
|
+
value: {
|
|
6236
|
+
base: "{colors.dark.100}",
|
|
6237
|
+
_light: "{colors.dark.100}",
|
|
6238
|
+
_dark: "{colors.white}"
|
|
6239
|
+
}
|
|
6240
|
+
},
|
|
6241
|
+
shadow: {
|
|
6242
|
+
value: {
|
|
6243
|
+
base: "rgba(29, 31, 36, 0.16)",
|
|
6244
|
+
// Doesn't have raw token
|
|
6245
|
+
_light: "rgba(29, 31, 36, 0.16)",
|
|
6246
|
+
// Doesn't have raw token
|
|
6247
|
+
_dark: "rgba(22, 26, 29, 1)"
|
|
6248
|
+
// Doesn't have raw token
|
|
6249
|
+
}
|
|
6250
|
+
},
|
|
6251
|
+
neutral: {
|
|
6252
|
+
DEFAULT: {
|
|
6253
|
+
value: {
|
|
6254
|
+
base: "{colors.white}",
|
|
6255
|
+
_light: "{colors.white}",
|
|
6256
|
+
_dark: "{colors.dark.200}"
|
|
6257
|
+
}
|
|
6258
|
+
},
|
|
6259
|
+
hovered: {
|
|
6260
|
+
value: {
|
|
6261
|
+
base: "{colors.neutral.100}",
|
|
6262
|
+
_light: "{colors.neutral.100}",
|
|
6263
|
+
_dark: "{colors.dark.250}"
|
|
6264
|
+
}
|
|
6265
|
+
},
|
|
6266
|
+
pressed: {
|
|
6267
|
+
value: {
|
|
6268
|
+
base: "{colors.neutral.200}",
|
|
6269
|
+
_light: "{colors.neutral.200}",
|
|
6270
|
+
_dark: "{colors.dark.300}"
|
|
6271
|
+
}
|
|
6272
|
+
},
|
|
6273
|
+
subtle: {
|
|
6274
|
+
DEFAULT: {
|
|
6275
|
+
value: {
|
|
6276
|
+
base: "{colors.neutral.200}",
|
|
6277
|
+
_light: "{colors.neutral.200}",
|
|
6278
|
+
_dark: "{colors.dark.300}"
|
|
6279
|
+
}
|
|
6280
|
+
},
|
|
6281
|
+
hovered: {
|
|
6282
|
+
value: {
|
|
6283
|
+
base: "{colors.neutral.300}",
|
|
6284
|
+
_light: "{colors.neutral.300}",
|
|
6285
|
+
_dark: "{colors.dark.350}"
|
|
6286
|
+
}
|
|
6287
|
+
},
|
|
6288
|
+
pressed: {
|
|
6289
|
+
value: {
|
|
6290
|
+
base: "{colors.neutral.400}",
|
|
6291
|
+
_light: "{colors.neutral.400}",
|
|
6292
|
+
_dark: "{colors.dark.400}"
|
|
6293
|
+
}
|
|
6294
|
+
}
|
|
6295
|
+
},
|
|
6296
|
+
bold: {
|
|
6297
|
+
DEFAULT: {
|
|
6298
|
+
value: {
|
|
6299
|
+
base: "{colors.neutral.800}",
|
|
6300
|
+
_light: "{colors.neutral.800}",
|
|
6301
|
+
_dark: "{colors.dark.800}"
|
|
6302
|
+
}
|
|
6303
|
+
},
|
|
6304
|
+
hovered: {
|
|
6305
|
+
value: {
|
|
6306
|
+
base: "{colors.neutral.900}",
|
|
6307
|
+
_light: "{colors.neutral.900}",
|
|
6308
|
+
_dark: "{colors.dark.900}"
|
|
6309
|
+
}
|
|
6310
|
+
},
|
|
6311
|
+
pressed: {
|
|
6312
|
+
value: {
|
|
6313
|
+
base: "{colors.neutral.1000}",
|
|
6314
|
+
_light: "{colors.neutral.1000}",
|
|
6315
|
+
_dark: "{colors.dark.1000}"
|
|
6316
|
+
}
|
|
6317
|
+
}
|
|
6318
|
+
}
|
|
6319
|
+
},
|
|
6320
|
+
brand: {
|
|
6321
|
+
DEFAULT: {
|
|
6322
|
+
value: {
|
|
6323
|
+
base: "{colors.indigo.100}",
|
|
6324
|
+
_light: "{colors.indigo.100}",
|
|
6325
|
+
_dark: "{colors.indigo.1000}"
|
|
6326
|
+
}
|
|
6327
|
+
},
|
|
6328
|
+
hovered: {
|
|
6329
|
+
value: {
|
|
6330
|
+
base: "{colors.indigo.200}",
|
|
6331
|
+
_light: "{colors.indigo.200}",
|
|
6332
|
+
_dark: "{colors.indigo.900}"
|
|
6333
|
+
}
|
|
6334
|
+
},
|
|
6335
|
+
pressed: {
|
|
6336
|
+
value: {
|
|
6337
|
+
base: "{colors.indigo.300}",
|
|
6338
|
+
_light: "{colors.indigo.300}",
|
|
6339
|
+
_dark: "{colors.indigo.800}"
|
|
6340
|
+
}
|
|
6341
|
+
},
|
|
6342
|
+
selected: {
|
|
6343
|
+
value: {
|
|
6344
|
+
base: "{colors.indigo.200}",
|
|
6345
|
+
_light: "{colors.indigo.200}",
|
|
6346
|
+
_dark: "{colors.indigo.900}"
|
|
6347
|
+
}
|
|
6348
|
+
},
|
|
6349
|
+
bold: {
|
|
6350
|
+
DEFAULT: {
|
|
6351
|
+
value: {
|
|
6352
|
+
base: "{colors.indigo.700}",
|
|
6353
|
+
_light: "{colors.indigo.700}",
|
|
6354
|
+
_dark: "{colors.indigo.400}"
|
|
6355
|
+
}
|
|
6356
|
+
},
|
|
6357
|
+
hovered: {
|
|
6358
|
+
value: {
|
|
6359
|
+
base: "{colors.indigo.800}",
|
|
6360
|
+
_light: "{colors.indigo.800}",
|
|
6361
|
+
_dark: "{colors.indigo.300}"
|
|
6362
|
+
}
|
|
6363
|
+
},
|
|
6364
|
+
pressed: {
|
|
6365
|
+
value: {
|
|
6366
|
+
base: "{colors.indigo.900}",
|
|
6367
|
+
_liht: "{colors.indigo.900}",
|
|
6368
|
+
_dark: "{colors.indigo.200}"
|
|
6369
|
+
}
|
|
6370
|
+
},
|
|
6371
|
+
selected: {
|
|
6372
|
+
value: {
|
|
6373
|
+
base: "{colors.indigo.700}",
|
|
6374
|
+
_liht: "{colors.indigo.700}",
|
|
6375
|
+
_dark: "{colors.indigo.400}"
|
|
6376
|
+
}
|
|
6377
|
+
}
|
|
6378
|
+
}
|
|
6379
|
+
},
|
|
6380
|
+
tertiary: {
|
|
6381
|
+
DEFAULT: {
|
|
6382
|
+
value: {
|
|
6383
|
+
base: "{colors.dark.200}",
|
|
6384
|
+
_light: "{colors.dark.200}",
|
|
6385
|
+
_dark: "{colors.dark.200}"
|
|
6386
|
+
}
|
|
6387
|
+
},
|
|
6388
|
+
hovered: {
|
|
6389
|
+
value: {
|
|
6390
|
+
base: "{colors.dark.300}",
|
|
6391
|
+
_light: "{colors.dark.300}",
|
|
6392
|
+
_dark: "{colors.dark.300}"
|
|
6393
|
+
}
|
|
6394
|
+
},
|
|
6395
|
+
pressed: {
|
|
6396
|
+
value: {
|
|
6397
|
+
base: "{colors.dark.400}",
|
|
6398
|
+
_light: "{colors.dark.400}",
|
|
6399
|
+
_dark: "{colors.dark.400}"
|
|
6400
|
+
}
|
|
6401
|
+
}
|
|
6402
|
+
},
|
|
6403
|
+
danger: {
|
|
6404
|
+
DEFAULT: {
|
|
6405
|
+
value: {
|
|
6406
|
+
base: "{colors.red.100}",
|
|
6407
|
+
_light: "{colors.red.100}",
|
|
6408
|
+
_dark: "{colors.red.1000}"
|
|
6409
|
+
}
|
|
6410
|
+
},
|
|
6411
|
+
hovered: {
|
|
6412
|
+
value: {
|
|
6413
|
+
base: "{colors.red.200}",
|
|
6414
|
+
_light: "{colors.red.200}",
|
|
6415
|
+
_dark: "{colors.red.900}"
|
|
6416
|
+
}
|
|
6417
|
+
},
|
|
6418
|
+
pressed: {
|
|
6419
|
+
value: {
|
|
6420
|
+
base: "{colors.red.300}",
|
|
6421
|
+
_light: "{colors.red.300}",
|
|
6422
|
+
_dark: "{colors.red.800}"
|
|
6423
|
+
}
|
|
6424
|
+
},
|
|
6425
|
+
bold: {
|
|
6426
|
+
DEFAULT: {
|
|
6427
|
+
value: {
|
|
6428
|
+
base: "{colors.red.700}",
|
|
6429
|
+
_light: "{colors.red.700}",
|
|
6430
|
+
_dark: "{colors.red.400}"
|
|
6431
|
+
}
|
|
6432
|
+
},
|
|
6433
|
+
hovered: {
|
|
6434
|
+
value: {
|
|
6435
|
+
base: "{colors.red.800}",
|
|
6436
|
+
_light: "{colors.red.800}",
|
|
6437
|
+
_dark: "{colors.red.300}"
|
|
6438
|
+
}
|
|
6439
|
+
},
|
|
6440
|
+
pressed: {
|
|
6441
|
+
value: {
|
|
6442
|
+
base: "{colors.red.900}",
|
|
6443
|
+
_liht: "{colors.red.900}",
|
|
6444
|
+
_dark: "{colors.red.200}"
|
|
6445
|
+
}
|
|
6446
|
+
}
|
|
6447
|
+
}
|
|
6448
|
+
},
|
|
6449
|
+
warning: {
|
|
6450
|
+
DEFAULT: {
|
|
6451
|
+
value: {
|
|
6452
|
+
base: "{colors.yellow.100}",
|
|
6453
|
+
_light: "{colors.yellow.100}",
|
|
6454
|
+
_dark: "{colors.yellow.1000}"
|
|
6455
|
+
}
|
|
6456
|
+
},
|
|
6457
|
+
hovered: {
|
|
6458
|
+
value: {
|
|
6459
|
+
base: "{colors.yellow.200}",
|
|
6460
|
+
_light: "{colors.yellow.200}",
|
|
6461
|
+
_dark: "{colors.yellow.900}"
|
|
6462
|
+
}
|
|
6463
|
+
},
|
|
6464
|
+
pressed: {
|
|
6465
|
+
value: {
|
|
6466
|
+
base: "{colors.yellow.300}",
|
|
6467
|
+
_light: "{colors.yellow.300}",
|
|
6468
|
+
_dark: "{colors.yellow.800}"
|
|
6469
|
+
}
|
|
6470
|
+
},
|
|
6471
|
+
bold: {
|
|
6472
|
+
DEFAULT: {
|
|
6473
|
+
value: {
|
|
6474
|
+
base: "{colors.yellow.300}",
|
|
6475
|
+
_light: "{colors.yellow.300}",
|
|
6476
|
+
_dark: "{colors.yellow.300}"
|
|
6477
|
+
}
|
|
6478
|
+
},
|
|
6479
|
+
hovered: {
|
|
6480
|
+
value: {
|
|
6481
|
+
base: "{colors.yellow.400}",
|
|
6482
|
+
_light: "{colors.yellow.400}",
|
|
6483
|
+
_dark: "{colors.yellow.400}"
|
|
6484
|
+
}
|
|
6485
|
+
},
|
|
6486
|
+
pressed: {
|
|
6487
|
+
value: {
|
|
6488
|
+
base: "{colors.yellow.500}",
|
|
6489
|
+
_liht: "{colors.yellow.500}",
|
|
6490
|
+
_dark: "{colors.yellow.500}"
|
|
6491
|
+
}
|
|
6492
|
+
}
|
|
6493
|
+
}
|
|
6494
|
+
},
|
|
6495
|
+
success: {
|
|
6496
|
+
DEFAULT: {
|
|
6497
|
+
value: {
|
|
6498
|
+
base: "{colors.green.100}",
|
|
6499
|
+
_light: "{colors.green.100}",
|
|
6500
|
+
_dark: "{colors.green.1000}"
|
|
6501
|
+
}
|
|
6502
|
+
},
|
|
6503
|
+
hovered: {
|
|
6504
|
+
value: {
|
|
6505
|
+
base: "{colors.green.200}",
|
|
6506
|
+
_light: "{colors.green.200}",
|
|
6507
|
+
_dark: "{colors.green.900}"
|
|
6508
|
+
}
|
|
6509
|
+
},
|
|
6510
|
+
pressed: {
|
|
6511
|
+
value: {
|
|
6512
|
+
base: "{colors.green.300}",
|
|
6513
|
+
_light: "{colors.green.300}",
|
|
6514
|
+
_dark: "{colors.green.800}"
|
|
6515
|
+
}
|
|
6516
|
+
},
|
|
6517
|
+
bold: {
|
|
6518
|
+
DEFAULT: {
|
|
6519
|
+
value: {
|
|
6520
|
+
base: "{colors.green.700}",
|
|
6521
|
+
_light: "{colors.green.700}",
|
|
6522
|
+
_dark: "{colors.green.400}"
|
|
6523
|
+
}
|
|
6524
|
+
},
|
|
6525
|
+
hovered: {
|
|
6526
|
+
value: {
|
|
6527
|
+
base: "{colors.green.800}",
|
|
6528
|
+
_light: "{colors.green.800}",
|
|
6529
|
+
_dark: "{colors.green.300}"
|
|
6530
|
+
}
|
|
6531
|
+
},
|
|
6532
|
+
pressed: {
|
|
6533
|
+
value: {
|
|
6534
|
+
base: "{colors.green.900}",
|
|
6535
|
+
_liht: "{colors.green.900}",
|
|
6536
|
+
_dark: "{colors.green.200}"
|
|
6537
|
+
}
|
|
6538
|
+
}
|
|
6539
|
+
}
|
|
6540
|
+
},
|
|
6541
|
+
highlight: {
|
|
6542
|
+
DEFAULT: {
|
|
6543
|
+
value: {
|
|
6544
|
+
base: "{colors.violet.100}",
|
|
6545
|
+
_light: "{colors.violet.100}",
|
|
6546
|
+
_dark: "{colors.violet.1000}"
|
|
6547
|
+
}
|
|
6548
|
+
},
|
|
6549
|
+
hovered: {
|
|
6550
|
+
value: {
|
|
6551
|
+
base: "{colors.violet.200}",
|
|
6552
|
+
_light: "{colors.violet.200}",
|
|
6553
|
+
_dark: "{colors.violet.900}"
|
|
6554
|
+
}
|
|
6555
|
+
},
|
|
6556
|
+
pressed: {
|
|
6557
|
+
value: {
|
|
6558
|
+
base: "{colors.violet.300}",
|
|
6559
|
+
_light: "{colors.violet.300}",
|
|
6560
|
+
_dark: "{colors.violet.800}"
|
|
6561
|
+
}
|
|
6562
|
+
},
|
|
6563
|
+
bold: {
|
|
6564
|
+
DEFAULT: {
|
|
6565
|
+
value: {
|
|
6566
|
+
base: "{colors.violet.700}",
|
|
6567
|
+
_light: "{colors.violet.700}",
|
|
6568
|
+
_dark: "{colors.violet.400}"
|
|
6569
|
+
}
|
|
6570
|
+
},
|
|
6571
|
+
hovered: {
|
|
6572
|
+
value: {
|
|
6573
|
+
base: "{colors.violet.800}",
|
|
6574
|
+
_light: "{colors.violet.800}",
|
|
6575
|
+
_dark: "{colors.violet.300}"
|
|
6576
|
+
}
|
|
6577
|
+
},
|
|
6578
|
+
pressed: {
|
|
6579
|
+
value: {
|
|
6580
|
+
base: "{colors.violet.900}",
|
|
6581
|
+
_liht: "{colors.violet.900}",
|
|
6582
|
+
_dark: "{colors.violet.200}"
|
|
6583
|
+
}
|
|
6584
|
+
}
|
|
6585
|
+
}
|
|
6586
|
+
}
|
|
6587
|
+
},
|
|
6588
|
+
nav: {
|
|
6589
|
+
parent: {
|
|
6590
|
+
value: {
|
|
6591
|
+
base: "#E7EDF5",
|
|
6592
|
+
// Doesn't have raw token
|
|
6593
|
+
_light: "#E7EDF5",
|
|
6594
|
+
// Doesn't have raw token
|
|
6595
|
+
_dark: "{colors.dark.100}"
|
|
6596
|
+
}
|
|
6597
|
+
},
|
|
6598
|
+
stack: {
|
|
6599
|
+
DEFAULT: {
|
|
6600
|
+
value: {
|
|
6601
|
+
base: "{colors.neutral.100}",
|
|
6602
|
+
_light: "{colors.neutral.100}",
|
|
6603
|
+
_dark: "{colors.dark}"
|
|
6604
|
+
}
|
|
6605
|
+
},
|
|
6606
|
+
hovered: {
|
|
6607
|
+
value: {
|
|
6608
|
+
base: "#E7EDF5",
|
|
6609
|
+
// Doesn't have raw token
|
|
6610
|
+
_light: "#E7EDF5",
|
|
6611
|
+
// Doesn't have raw token
|
|
6612
|
+
_dark: "{colors.dark.100}"
|
|
6613
|
+
}
|
|
6614
|
+
}
|
|
6615
|
+
}
|
|
6616
|
+
},
|
|
6617
|
+
text: {
|
|
6618
|
+
default: {
|
|
6619
|
+
DEFAULT: {
|
|
6620
|
+
value: {
|
|
6621
|
+
base: "{colors.neutral.1000}",
|
|
6622
|
+
_light: "{colors.neutral.1000}",
|
|
6623
|
+
_dark: "{colors.dark.900}"
|
|
6624
|
+
}
|
|
6625
|
+
},
|
|
6626
|
+
static: {
|
|
6627
|
+
value: {
|
|
6628
|
+
base: "{colors.neutral.1000}",
|
|
6629
|
+
_light: "{colors.neutral.1000}",
|
|
6630
|
+
_dark: "{colors.neutral.1000}"
|
|
6631
|
+
}
|
|
6632
|
+
}
|
|
6633
|
+
},
|
|
6634
|
+
secondary: {
|
|
6635
|
+
DEFAULT: {
|
|
6636
|
+
value: {
|
|
6637
|
+
base: "{colors.neutral.700}",
|
|
6638
|
+
_light: "{colors.neutral.700}",
|
|
6639
|
+
_dark: "{colors.dark.700}"
|
|
6640
|
+
}
|
|
6641
|
+
},
|
|
6642
|
+
pressed: {
|
|
6643
|
+
value: {
|
|
6644
|
+
base: "{colors.neutral.800}",
|
|
6645
|
+
_light: "{colors.neutral.800}",
|
|
6646
|
+
_dark: "{colors.dark.800}"
|
|
6647
|
+
}
|
|
6648
|
+
}
|
|
6649
|
+
},
|
|
6650
|
+
placeholder: {
|
|
6651
|
+
value: {
|
|
6652
|
+
base: "{colors.neutral.600}",
|
|
6653
|
+
_light: "{colors.neutral.600}",
|
|
6654
|
+
_dark: "{colors.dark.600}"
|
|
6655
|
+
}
|
|
6656
|
+
},
|
|
6657
|
+
disabled: {
|
|
6658
|
+
value: {
|
|
6659
|
+
base: "rgba(29, 31, 36, 0.32)",
|
|
6660
|
+
// Doesn't have raw token
|
|
6661
|
+
_light: "rgba(29, 31, 36, 0.32)",
|
|
6662
|
+
// Doesn't have raw token
|
|
6663
|
+
_dark: "rgba(191, 219, 248, 0.28)"
|
|
6664
|
+
// Doesn't have raw token
|
|
6665
|
+
}
|
|
6666
|
+
},
|
|
6667
|
+
inverse: {
|
|
6668
|
+
DEFAULT: {
|
|
6669
|
+
value: {
|
|
6670
|
+
base: "{colors.white}",
|
|
6671
|
+
_light: "{colors.white}",
|
|
6672
|
+
_dark: "{colors.dark.100}"
|
|
6673
|
+
}
|
|
6674
|
+
},
|
|
6675
|
+
static: {
|
|
6676
|
+
value: {
|
|
6677
|
+
base: "{colors.white}",
|
|
6678
|
+
_light: "{colors.white}",
|
|
6679
|
+
_dark: "{colors.white}"
|
|
6680
|
+
}
|
|
6681
|
+
}
|
|
6682
|
+
},
|
|
6683
|
+
selected: {
|
|
6684
|
+
value: {
|
|
6685
|
+
base: "{colors.indigo.700}",
|
|
6686
|
+
_light: "{colors.indigo.700}",
|
|
6687
|
+
_dark: "{colors.indigo.400}"
|
|
6688
|
+
}
|
|
6689
|
+
},
|
|
6690
|
+
danger: {
|
|
6691
|
+
DEFAULT: {
|
|
6692
|
+
value: {
|
|
6693
|
+
base: "{colors.red.800}",
|
|
6694
|
+
_light: "{colors.red.800}",
|
|
6695
|
+
_dark: "{colors.red.300}"
|
|
6696
|
+
}
|
|
6697
|
+
},
|
|
6698
|
+
pressed: {
|
|
6699
|
+
value: {
|
|
6700
|
+
base: "{colors.red.900}",
|
|
6701
|
+
_light: "{colors.red.900}",
|
|
6702
|
+
_dark: "{colors.red.200}"
|
|
6703
|
+
}
|
|
6704
|
+
}
|
|
6705
|
+
},
|
|
6706
|
+
warning: {
|
|
6707
|
+
DEFAULT: {
|
|
6708
|
+
value: {
|
|
6709
|
+
base: "{colors.orange.800}",
|
|
6710
|
+
_light: "{colors.orange.800}",
|
|
6711
|
+
_dark: "{colors.yellow.300}"
|
|
6712
|
+
}
|
|
6713
|
+
},
|
|
6714
|
+
inverse: {
|
|
6715
|
+
value: {
|
|
6716
|
+
base: "{colors.neutral.1000}",
|
|
6717
|
+
_light: "{colors.neutral.1000}",
|
|
6718
|
+
_dark: "{colors.neutral.1000}"
|
|
6719
|
+
}
|
|
6720
|
+
}
|
|
6721
|
+
},
|
|
6722
|
+
success: {
|
|
6723
|
+
value: {
|
|
6724
|
+
base: "{colors.green.800}",
|
|
6725
|
+
_light: "{colors.green.800}",
|
|
6726
|
+
_dark: "{colors.green.300}"
|
|
6727
|
+
}
|
|
6728
|
+
},
|
|
6729
|
+
highlight: {
|
|
6730
|
+
value: {
|
|
6731
|
+
base: "{colors.violet.800}",
|
|
6732
|
+
_light: "{colors.violet.800}",
|
|
6733
|
+
_dark: "{colors.violet.300}"
|
|
6734
|
+
}
|
|
6735
|
+
},
|
|
6736
|
+
information: {
|
|
6737
|
+
value: {
|
|
6738
|
+
base: "{colors.indigo.800}",
|
|
6739
|
+
_light: "{colors.indigo.800}",
|
|
6740
|
+
_dark: "{colors.indigo.300}"
|
|
6741
|
+
}
|
|
6742
|
+
},
|
|
6743
|
+
link: {
|
|
6744
|
+
DEFAULT: {
|
|
6745
|
+
value: {
|
|
6746
|
+
base: "{colors.indigo.700}",
|
|
6747
|
+
_light: "{colors.indigo.700}",
|
|
6748
|
+
_dark: "{colors.indigo.400}"
|
|
6749
|
+
}
|
|
6750
|
+
},
|
|
6751
|
+
pressed: {
|
|
6752
|
+
value: {
|
|
6753
|
+
base: "{colors.indigo.800}",
|
|
6754
|
+
_light: "{colors.indigo.800}",
|
|
6755
|
+
_dark: "{colors.indigo.300}"
|
|
6756
|
+
}
|
|
6757
|
+
}
|
|
6758
|
+
}
|
|
6759
|
+
},
|
|
6760
|
+
icon: {
|
|
6761
|
+
default: {
|
|
6762
|
+
value: {
|
|
6763
|
+
base: "{colors.neutral.600}",
|
|
6764
|
+
_light: "{colors.neutral.600}",
|
|
6765
|
+
_dark: "{colors.dark.600}"
|
|
6766
|
+
}
|
|
6767
|
+
},
|
|
6768
|
+
disabled: {
|
|
6769
|
+
value: {
|
|
6770
|
+
base: "{colors.neutral.400}",
|
|
6771
|
+
_light: "{colors.neutral.400}",
|
|
6772
|
+
_dark: "{colors.dark.400}"
|
|
6773
|
+
}
|
|
6774
|
+
},
|
|
6775
|
+
inverse: {
|
|
6776
|
+
DEFAULT: {
|
|
6777
|
+
value: {
|
|
6778
|
+
base: "{colors.white}",
|
|
6779
|
+
_light: "{colors.white}",
|
|
6780
|
+
_dark: "{colors.dark.100}"
|
|
6781
|
+
}
|
|
6782
|
+
},
|
|
6783
|
+
static: {
|
|
6784
|
+
value: {
|
|
6785
|
+
base: "{colors.white}",
|
|
6786
|
+
_light: "{colors.white}",
|
|
6787
|
+
_dark: "{colors.white}"
|
|
6788
|
+
}
|
|
6789
|
+
}
|
|
6790
|
+
},
|
|
6791
|
+
selected: {
|
|
6792
|
+
value: {
|
|
6793
|
+
base: "{colors.indigo.700}",
|
|
6794
|
+
_light: "{colors.indigo.700}",
|
|
6795
|
+
_dark: "{colors.indigo.400}"
|
|
6796
|
+
}
|
|
6797
|
+
},
|
|
6798
|
+
brand: {
|
|
6799
|
+
value: {
|
|
6800
|
+
base: "{colors.indigo.700}",
|
|
6801
|
+
_light: "{colors.indigo.700}",
|
|
6802
|
+
_dark: "{colors.indigo.400}"
|
|
6803
|
+
}
|
|
6804
|
+
},
|
|
6805
|
+
danger: {
|
|
6806
|
+
value: {
|
|
6807
|
+
base: "{colors.red.700}",
|
|
6808
|
+
_light: "{colors.red.700}",
|
|
6809
|
+
_dark: "{colors.red.400}"
|
|
6810
|
+
}
|
|
6811
|
+
},
|
|
6812
|
+
warning: {
|
|
6813
|
+
DEFAULT: {
|
|
6814
|
+
value: {
|
|
6815
|
+
base: "{colors.orange.700}",
|
|
6816
|
+
_light: "{colors.orange.700}",
|
|
6817
|
+
_dark: "{colors.yellow.300}"
|
|
6818
|
+
}
|
|
6819
|
+
},
|
|
6820
|
+
inverse: {
|
|
6821
|
+
value: {
|
|
6822
|
+
base: "{colors.neutral.1000}",
|
|
6823
|
+
_light: "{colors.neutral.1000}",
|
|
6824
|
+
_dark: "{colors.dark.100}"
|
|
6825
|
+
}
|
|
6826
|
+
}
|
|
6827
|
+
},
|
|
6828
|
+
success: {
|
|
6829
|
+
value: {
|
|
6830
|
+
base: "{colors.green.700}",
|
|
6831
|
+
_light: "{colors.green.700}",
|
|
6832
|
+
_dark: "{colors.green.400}"
|
|
6833
|
+
}
|
|
6834
|
+
},
|
|
6835
|
+
highlight: {
|
|
6836
|
+
value: {
|
|
6837
|
+
base: "{colors.violet.700}",
|
|
6838
|
+
_light: "{colors.violet.700}",
|
|
6839
|
+
_dark: "{colors.violet.400}"
|
|
6840
|
+
}
|
|
6841
|
+
},
|
|
6842
|
+
information: {
|
|
6843
|
+
value: {
|
|
6844
|
+
base: "{colors.indigo.700}",
|
|
6845
|
+
_light: "{colors.indigo.700}",
|
|
6846
|
+
_dark: "{colors.indigo.400}"
|
|
6847
|
+
}
|
|
6848
|
+
},
|
|
6849
|
+
subtle: {
|
|
6850
|
+
value: {
|
|
6851
|
+
base: "{colors.neutral.300}",
|
|
6852
|
+
_light: "{colors.neutral.300}",
|
|
6853
|
+
_dark: "{colors.dark.300}"
|
|
6854
|
+
}
|
|
6855
|
+
},
|
|
6856
|
+
logo: {
|
|
6857
|
+
value: {
|
|
6858
|
+
base: "{colors.neutral.1000}",
|
|
6859
|
+
_light: "{colors.neutral.1000}",
|
|
6860
|
+
_dark: "{colors.neutral.100}"
|
|
6861
|
+
}
|
|
6862
|
+
}
|
|
6863
|
+
},
|
|
6864
|
+
border: {
|
|
6865
|
+
default: {
|
|
6866
|
+
value: {
|
|
6867
|
+
base: "{colors.neutral.300}",
|
|
6868
|
+
_light: "{colors.neutral.300}",
|
|
6869
|
+
_dark: "{colors.dark.300}"
|
|
6870
|
+
}
|
|
6871
|
+
},
|
|
6872
|
+
bold: {
|
|
6873
|
+
value: {
|
|
6874
|
+
base: "{colors.neutral.600}",
|
|
6875
|
+
_light: "{colors.neutral.600}",
|
|
6876
|
+
_dark: "{colors.dark.600}"
|
|
6877
|
+
}
|
|
6878
|
+
},
|
|
6879
|
+
disabled: {
|
|
6880
|
+
value: {
|
|
6881
|
+
base: "rgba(29, 31, 36, 0.08)",
|
|
6882
|
+
// Doens't have raw token
|
|
6883
|
+
_light: "rgba(29, 31, 36, 0.08)",
|
|
6884
|
+
// Doens't have raw token
|
|
6885
|
+
_dark: "rgba(161, 189, 217, 0.08)"
|
|
6886
|
+
// Doens't have raw token
|
|
6887
|
+
}
|
|
6888
|
+
},
|
|
6889
|
+
form: {
|
|
6890
|
+
value: {
|
|
6891
|
+
base: "rgba(29, 31, 36, 0.16)",
|
|
6892
|
+
// Doens't have raw token
|
|
6893
|
+
_light: "rgba(29, 31, 36, 0.16)",
|
|
6894
|
+
// Doens't have raw token
|
|
6895
|
+
_dark: "rgba(166, 197, 226, 0.16)"
|
|
6896
|
+
// Doens't have raw token
|
|
6897
|
+
}
|
|
6898
|
+
},
|
|
6899
|
+
focused: {
|
|
6900
|
+
value: {
|
|
6901
|
+
base: "{colors.indigo.500}",
|
|
6902
|
+
_light: "{colors.indigo.500}",
|
|
6903
|
+
_dark: "{colors.indigo.300}"
|
|
6904
|
+
}
|
|
6905
|
+
},
|
|
6906
|
+
inverse: {
|
|
6907
|
+
value: {
|
|
6908
|
+
base: "{colors.white}",
|
|
6909
|
+
_light: "{colors.white}",
|
|
6910
|
+
_dark: "{colors.dark.100}"
|
|
6911
|
+
}
|
|
6912
|
+
},
|
|
6913
|
+
selected: {
|
|
6914
|
+
DEFAULT: {
|
|
6915
|
+
value: {
|
|
6916
|
+
base: "{colors.indigo.700}",
|
|
6917
|
+
_light: "{colors.indigo.700}",
|
|
6918
|
+
_dark: "{colors.indigo.400}"
|
|
6919
|
+
}
|
|
6920
|
+
},
|
|
6921
|
+
hovered: {
|
|
6922
|
+
value: {
|
|
6923
|
+
base: "{colors.indigo.800}",
|
|
6924
|
+
_light: "{colors.indigo.800}",
|
|
6925
|
+
_dark: "{colors.indigo.300}"
|
|
6926
|
+
}
|
|
6927
|
+
},
|
|
6928
|
+
disabled: {
|
|
6929
|
+
value: {
|
|
6930
|
+
base: "{colors.indigo.200}",
|
|
6931
|
+
_light: "{colors.indigo.200}",
|
|
6932
|
+
_dark: "{colors.indigo.900}"
|
|
6933
|
+
}
|
|
6934
|
+
}
|
|
6935
|
+
},
|
|
6936
|
+
brand: {
|
|
6937
|
+
value: {
|
|
6938
|
+
base: "{colors.indigo.700}",
|
|
6939
|
+
_light: "{colors.indigo.700}",
|
|
6940
|
+
_dark: "{colors.indigo.400}"
|
|
6941
|
+
}
|
|
6942
|
+
},
|
|
6943
|
+
danger: {
|
|
6944
|
+
value: {
|
|
6945
|
+
base: "{colors.red.700}",
|
|
6946
|
+
_light: "{colors.red.700}",
|
|
6947
|
+
_dark: "{colors.red.400}"
|
|
6948
|
+
}
|
|
6949
|
+
},
|
|
6950
|
+
warning: {
|
|
6951
|
+
value: {
|
|
6952
|
+
base: "{colors.yellow.300}",
|
|
6953
|
+
_light: "{colors.yellow.300}",
|
|
6954
|
+
_dark: "{colors.yellow.300}"
|
|
6955
|
+
}
|
|
6956
|
+
},
|
|
6957
|
+
success: {
|
|
6958
|
+
value: {
|
|
6959
|
+
base: "{colors.green.700}",
|
|
6960
|
+
_light: "{colors.green.700}",
|
|
6961
|
+
_dark: "{colors.green.400}"
|
|
6962
|
+
}
|
|
6963
|
+
},
|
|
6964
|
+
highlight: {
|
|
6965
|
+
value: {
|
|
6966
|
+
base: "{colors.violet.700}",
|
|
6967
|
+
_light: "{colors.violet.700}",
|
|
6968
|
+
_dark: "{colors.violet.400}"
|
|
6969
|
+
}
|
|
6970
|
+
},
|
|
6971
|
+
information: {
|
|
6972
|
+
value: {
|
|
6973
|
+
base: "{colors.indigo.700}",
|
|
6974
|
+
_light: "{colors.indigo.700}",
|
|
6975
|
+
_dark: "{colors.indigo.400}"
|
|
6976
|
+
}
|
|
6977
|
+
}
|
|
6978
|
+
},
|
|
6979
|
+
chart: {
|
|
6980
|
+
cat01: {
|
|
6981
|
+
DEFAULT: {
|
|
6982
|
+
value: {
|
|
6983
|
+
base: "{colors.blue.400}",
|
|
6984
|
+
_light: "{colors.blue.400}",
|
|
6985
|
+
_dark: "{colors.blue.300}"
|
|
6986
|
+
}
|
|
6987
|
+
},
|
|
6988
|
+
bold: {
|
|
6989
|
+
value: {
|
|
6990
|
+
base: "{colors.blue.600}",
|
|
6991
|
+
_light: "{colors.blue.600}",
|
|
6992
|
+
_dark: "{colors.blue.500}"
|
|
6993
|
+
}
|
|
6994
|
+
}
|
|
6995
|
+
},
|
|
6996
|
+
cat02: {
|
|
6997
|
+
DEFAULT: {
|
|
6998
|
+
value: {
|
|
6999
|
+
base: "{colors.teal.400}",
|
|
7000
|
+
_light: "{colors.teal.400}",
|
|
7001
|
+
_dark: "{colors.teal.300}"
|
|
7002
|
+
}
|
|
7003
|
+
},
|
|
7004
|
+
bold: {
|
|
7005
|
+
value: {
|
|
7006
|
+
base: "{colors.teal.600}",
|
|
7007
|
+
_light: "{colors.teal.600}",
|
|
7008
|
+
_dark: "{colors.teal.500}"
|
|
7009
|
+
}
|
|
7010
|
+
}
|
|
7011
|
+
},
|
|
7012
|
+
cat03: {
|
|
7013
|
+
DEFAULT: {
|
|
7014
|
+
value: {
|
|
7015
|
+
base: "{colors.violet.400}",
|
|
7016
|
+
_light: "{colors.violet.400}",
|
|
7017
|
+
_dark: "{colors.violet.300}"
|
|
7018
|
+
}
|
|
7019
|
+
},
|
|
7020
|
+
bold: {
|
|
7021
|
+
value: {
|
|
7022
|
+
base: "{colors.violet.600}",
|
|
7023
|
+
_light: "{colors.violet.600}",
|
|
7024
|
+
_dark: "{colors.violet.500}"
|
|
7025
|
+
}
|
|
7026
|
+
}
|
|
7027
|
+
},
|
|
7028
|
+
cat04: {
|
|
7029
|
+
DEFAULT: {
|
|
7030
|
+
value: {
|
|
7031
|
+
base: "{colors.orange.400}",
|
|
7032
|
+
_light: "{colors.orange.400}",
|
|
7033
|
+
_dark: "{colors.orange.300}"
|
|
7034
|
+
}
|
|
7035
|
+
},
|
|
7036
|
+
bold: {
|
|
7037
|
+
value: {
|
|
7038
|
+
base: "{colors.orange.600}",
|
|
7039
|
+
_light: "{colors.orange.600}",
|
|
7040
|
+
_dark: "{colors.orange.500}"
|
|
7041
|
+
}
|
|
7042
|
+
}
|
|
7043
|
+
},
|
|
7044
|
+
cat05: {
|
|
7045
|
+
DEFAULT: {
|
|
7046
|
+
value: {
|
|
7047
|
+
base: "{colors.neutral.400}",
|
|
7048
|
+
_light: "{colors.neutral.400}",
|
|
7049
|
+
_dark: "{colors.neutral.300}"
|
|
7050
|
+
}
|
|
7051
|
+
},
|
|
7052
|
+
bold: {
|
|
7053
|
+
value: {
|
|
7054
|
+
base: "{colors.neutral.600}",
|
|
7055
|
+
_light: "{colors.neutral.600}",
|
|
7056
|
+
_dark: "{colors.neutral.500}"
|
|
7057
|
+
}
|
|
7058
|
+
}
|
|
7059
|
+
},
|
|
7060
|
+
cat06: {
|
|
7061
|
+
DEFAULT: {
|
|
7062
|
+
value: {
|
|
7063
|
+
base: "{colors.red.400}",
|
|
7064
|
+
_light: "{colors.red.400}",
|
|
7065
|
+
_dark: "{colors.red.300}"
|
|
7066
|
+
}
|
|
7067
|
+
},
|
|
7068
|
+
bold: {
|
|
7069
|
+
value: {
|
|
7070
|
+
base: "{colors.red.600}",
|
|
7071
|
+
_light: "{colors.red.600}",
|
|
7072
|
+
_dark: "{colors.red.500}"
|
|
7073
|
+
}
|
|
7074
|
+
}
|
|
7075
|
+
},
|
|
7076
|
+
cat07: {
|
|
7077
|
+
DEFAULT: {
|
|
7078
|
+
value: {
|
|
7079
|
+
base: "{colors.lime.400}",
|
|
7080
|
+
_light: "{colors.lime.400}",
|
|
7081
|
+
_dark: "{colors.lime.300}"
|
|
7082
|
+
}
|
|
7083
|
+
},
|
|
7084
|
+
bold: {
|
|
7085
|
+
value: {
|
|
7086
|
+
base: "{colors.lime.600}",
|
|
7087
|
+
_light: "{colors.lime.600}",
|
|
7088
|
+
_dark: "{colors.lime.500}"
|
|
7089
|
+
}
|
|
7090
|
+
}
|
|
7091
|
+
},
|
|
7092
|
+
cat08: {
|
|
7093
|
+
DEFAULT: {
|
|
7094
|
+
value: {
|
|
7095
|
+
base: "{colors.fuchsia.400}",
|
|
7096
|
+
_light: "{colors.fuchsia.400}",
|
|
7097
|
+
_dark: "{colors.fuchsia.300}"
|
|
7098
|
+
}
|
|
7099
|
+
},
|
|
7100
|
+
bold: {
|
|
7101
|
+
value: {
|
|
7102
|
+
base: "{colors.fuchsia.600}",
|
|
7103
|
+
_light: "{colors.fuchsia.600}",
|
|
7104
|
+
_dark: "{colors.fuchsia.500}"
|
|
7105
|
+
}
|
|
7106
|
+
}
|
|
7107
|
+
}
|
|
7108
|
+
}
|
|
7109
|
+
});
|
|
7110
|
+
|
|
7111
|
+
// src/semanticTokens/spacing.ts
|
|
7112
|
+
import { defineSemanticTokens as defineSemanticTokens2 } from "@pandacss/dev";
|
|
7113
|
+
var spacing3 = defineSemanticTokens2.spacing({
|
|
7114
|
+
"4xs": {
|
|
7115
|
+
value: {
|
|
7116
|
+
base: "0.125rem"
|
|
7117
|
+
}
|
|
7118
|
+
},
|
|
7119
|
+
"3xs": {
|
|
7120
|
+
value: {
|
|
7121
|
+
base: "{spacing.1}"
|
|
7122
|
+
}
|
|
7123
|
+
},
|
|
7124
|
+
"2xs": {
|
|
7125
|
+
value: {
|
|
7126
|
+
base: "0.375rem"
|
|
7127
|
+
}
|
|
7128
|
+
},
|
|
7129
|
+
xs: {
|
|
7130
|
+
value: {
|
|
7131
|
+
base: "{spacing.2}"
|
|
7132
|
+
}
|
|
7133
|
+
},
|
|
7134
|
+
sm: {
|
|
7135
|
+
value: {
|
|
7136
|
+
base: "{spacing.3}"
|
|
7137
|
+
}
|
|
7138
|
+
},
|
|
7139
|
+
md: {
|
|
7140
|
+
value: {
|
|
7141
|
+
base: "{spacing.4}"
|
|
7142
|
+
}
|
|
7143
|
+
},
|
|
7144
|
+
lg: {
|
|
7145
|
+
value: {
|
|
7146
|
+
base: "{spacing.5}"
|
|
7147
|
+
}
|
|
7148
|
+
},
|
|
7149
|
+
xl: {
|
|
7150
|
+
value: {
|
|
7151
|
+
base: "{spacing.6}"
|
|
7152
|
+
}
|
|
7153
|
+
},
|
|
7154
|
+
"2xl": {
|
|
7155
|
+
value: {
|
|
7156
|
+
base: "{spacing.8}"
|
|
7157
|
+
}
|
|
7158
|
+
},
|
|
7159
|
+
"3xl": {
|
|
7160
|
+
value: {
|
|
7161
|
+
base: "{spacing.10}"
|
|
7162
|
+
}
|
|
7163
|
+
},
|
|
7164
|
+
"4xl": {
|
|
7165
|
+
value: {
|
|
7166
|
+
base: "{spacing.20}"
|
|
7167
|
+
}
|
|
7168
|
+
}
|
|
7169
|
+
});
|
|
7170
|
+
|
|
7171
|
+
// src/semanticTokens/index.ts
|
|
7172
|
+
var semanticTokens = defineSemanticTokens3({
|
|
7173
|
+
colors: colors3,
|
|
7174
|
+
spacing: spacing3
|
|
7175
|
+
});
|
|
7176
|
+
|
|
4708
7177
|
// src/fonts.ts
|
|
4709
7178
|
var globalFontface = {
|
|
4710
7179
|
Inter: [
|
|
@@ -4741,19 +7210,30 @@ var globalFontface = {
|
|
|
4741
7210
|
// src/index.ts
|
|
4742
7211
|
var preset = definePreset({
|
|
4743
7212
|
name: "@mekari/pixel3-theme",
|
|
7213
|
+
// Main Theme
|
|
4744
7214
|
theme: {
|
|
4745
7215
|
extend: {
|
|
7216
|
+
tokens,
|
|
4746
7217
|
breakpoints,
|
|
4747
7218
|
keyframes,
|
|
4748
7219
|
textStyles,
|
|
4749
|
-
tokens,
|
|
4750
7220
|
recipes,
|
|
4751
7221
|
slotRecipes
|
|
4752
7222
|
}
|
|
4753
7223
|
},
|
|
7224
|
+
// Alternate Theme
|
|
7225
|
+
themes: {
|
|
7226
|
+
next: {
|
|
7227
|
+
tokens: tokensNext,
|
|
7228
|
+
semanticTokens
|
|
7229
|
+
}
|
|
7230
|
+
},
|
|
4754
7231
|
conditions,
|
|
4755
|
-
globalFontface,
|
|
4756
7232
|
globalCss,
|
|
7233
|
+
staticCss: {
|
|
7234
|
+
themes: ["next"]
|
|
7235
|
+
},
|
|
7236
|
+
globalFontface,
|
|
4757
7237
|
globalVars: {
|
|
4758
7238
|
"--font-inter": "Inter, sans-serif"
|
|
4759
7239
|
}
|