@mekari/pixel3-theme 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -18,7 +18,15 @@ var theme_exports = {};
18
18
  module.exports = __toCommonJS(theme_exports);
19
19
 
20
20
  // src/index.ts
21
- var import_dev38 = require("@pandacss/dev");
21
+ var import_dev42 = require("@pandacss/dev");
22
+
23
+ // src/breakpoints.ts
24
+ var breakpoints = {
25
+ sm: "22.5em",
26
+ md: "48em",
27
+ lg: "64em",
28
+ xl: "80em"
29
+ };
22
30
 
23
31
  // src/conditions.ts
24
32
  var conditions = {
@@ -67,492 +75,129 @@ var globalCss = (0, import_dev.defineGlobalStyles)({
67
75
  }
68
76
  });
69
77
 
70
- // src/tokens/index.ts
71
- var import_dev12 = require("@pandacss/dev");
72
-
73
- // src/tokens/borders.ts
78
+ // src/keyframes.ts
74
79
  var import_dev2 = require("@pandacss/dev");
75
- var borders = import_dev2.defineTokens.borders({
76
- none: { value: "none" },
77
- sm: { value: "1px" },
78
- md: { value: "1.5px" },
79
- lg: { value: "2px" }
80
+ var keyframes = (0, import_dev2.defineKeyframes)({
81
+ "fade-in": {
82
+ from: { opacity: "0" },
83
+ to: { opacity: "1" }
84
+ },
85
+ "fade-out": {
86
+ from: { opacity: "1" },
87
+ to: { opacity: "0" }
88
+ },
89
+ spin: {
90
+ "100%": { transform: "rotate(1turn)" }
91
+ }
80
92
  });
81
93
 
82
- // src/tokens/colors.ts
94
+ // src/recipes/tag.ts
83
95
  var import_dev3 = require("@pandacss/dev");
84
- var colors = import_dev3.defineTokens.colors({
85
- currentcolor: {
86
- value: "currentcolor",
87
- description: "Need to add this for Icon usage"
88
- },
89
- dark: { value: "#232933", description: "Default or primary text color" },
90
- white: {
91
- value: "#FFFFFF",
92
- description: "Background color in components such as Card, Modal, and Popover"
93
- },
94
- background: { value: "#F1F5F9", description: "For use as background page" },
95
- overlay: {
96
- value: "rgba(22, 26, 32, 0.8)",
97
- description: "For use as overlay"
98
- },
99
- brand: {
100
- capital: { value: "#2F5573", description: "Mekari Capital" },
101
- esign: { value: "#00C853", description: "Mekari e-Sign" },
102
- expense: { value: "#183883", description: "Mekari Expense" },
103
- flex: { value: "#7C4DFF", description: "Mekari Flex" },
104
- jurnal: { value: "#40C3FF", description: "Mekari Jurnal" },
105
- klikpajak: { value: "#FF9100", description: "Mekari Klikpajak" },
106
- mekari: { value: "#651FFF", description: "Mekari" },
107
- qontak: { value: "#2979FF", description: "Mekari Qontak" },
108
- talenta: { value: "#F22929", description: "Mekari Talenta" },
109
- university: { value: "#448AFF", description: "Mekari University" }
96
+ var tagSlotRecipe = (0, import_dev3.defineSlotRecipe)({
97
+ className: "tag",
98
+ jsx: ["MpTag", "mp-tag"],
99
+ slots: ["root", "close"],
100
+ base: {
101
+ root: {
102
+ position: "relative",
103
+ display: "inline-flex",
104
+ alignItems: "center",
105
+ userSelect: "auto",
106
+ outline: "0px solid transparent",
107
+ borderWidth: "1px",
108
+ borderColor: "transparent",
109
+ borderRadius: "sm",
110
+ transition: "all 250ms",
111
+ textAlign: "left",
112
+ fontSize: "md",
113
+ fontWeight: "regular",
114
+ lineHeight: "md",
115
+ letterSpacing: "normal",
116
+ paddingX: "2",
117
+ whiteSpace: "normal",
118
+ overflowWrap: "anywhere",
119
+ cursor: "var(--mp-tag--cursor)"
120
+ },
121
+ close: {
122
+ position: "absolute!",
123
+ color: "gray.600",
124
+ border: "none",
125
+ right: "0",
126
+ width: "5",
127
+ height: "5",
128
+ minWidth: "5",
129
+ paddingTop: "1",
130
+ padding: "0",
131
+ transition: "all 250ms!",
132
+ visibility: "hidden",
133
+ opacity: "0",
134
+ _groupHover: {
135
+ visibility: "visible",
136
+ opacity: "1"
137
+ }
138
+ }
110
139
  },
111
- gray: {
112
- 25: {
113
- value: "#F8F9FB",
114
- description: "Background color in table header component"
140
+ variants: {
141
+ size: {
142
+ sm: {
143
+ root: {
144
+ paddingY: "0"
145
+ }
146
+ },
147
+ md: {
148
+ root: {
149
+ paddingY: "1"
150
+ }
151
+ }
115
152
  },
116
- 50: {
117
- value: "#EDF0F2",
118
- description: "Disabled background color in components such as Input and Select backgrounds"
153
+ variant: {
154
+ gray: {
155
+ root: {
156
+ color: "gray.600",
157
+ background: "gray.50"
158
+ }
159
+ },
160
+ red: {
161
+ root: {
162
+ color: "red.400",
163
+ backgroundColor: "red.50"
164
+ }
165
+ }
166
+ }
167
+ },
168
+ compoundVariants: [
169
+ {
170
+ variant: "gray",
171
+ css: {
172
+ close: {
173
+ background: "linear-gradient(270deg, #EDF0F2 75%, rgba(237, 240, 242, 0) 111.54%)"
174
+ }
175
+ }
119
176
  },
120
- 100: { value: "#D0D6DD", description: "Default stroke color or divider" },
121
- 400: {
122
- value: "#8B95A5",
123
- description: "Disabled and placeholder text color, icon or in components such as hover state Input, Select and stroke in Popover"
177
+ {
178
+ variant: "red",
179
+ css: {
180
+ close: {
181
+ background: "linear-gradient(270deg, #FDECEE 75%, rgba(237, 240, 242, 0) 111.54%)"
182
+ }
183
+ }
124
184
  },
125
- 600: {
126
- value: "#626B79",
127
- description: "Description text color and default color for outline icon"
185
+ {
186
+ size: "sm",
187
+ css: {
188
+ close: { paddingTop: "0" }
189
+ }
128
190
  }
129
- },
130
- blue: {
131
- 50: { value: "#EAECFB" },
132
- 100: { value: "#D5DEFF" },
133
- 400: { value: "#4B61DD" },
134
- 500: { value: "#1C44D5" },
135
- 700: { value: "#0031BE" }
136
- },
137
- red: {
138
- 50: { value: "#FDECEE" },
139
- 400: { value: "#DA473F" },
140
- 500: { value: "#C83E39" },
141
- 700: { value: "#AB3129" }
142
- },
143
- green: {
144
- 50: { value: "#E8F5EB" },
145
- 400: { value: "#68BE79" },
146
- 500: { value: "#4FB262" },
147
- 700: { value: "#3C914D" }
148
- },
149
- orange: {
150
- 50: { value: "#FBF3DD" },
151
- 400: { value: "#E0AB00" },
152
- 500: { value: "#DE9400" },
153
- 700: { value: "#DB8000" }
154
- },
155
- sky: {
156
- 100: { value: "#60A5FA" },
157
- 400: { value: "#3B82F6" }
158
- },
159
- teal: {
160
- 100: { value: "#2DD4BF" },
161
- 400: { value: "#14B8A6" }
162
- },
163
- violet: {
164
- 100: { value: "#A78BFA" },
165
- 400: { value: "#8B5CF6" }
166
- },
167
- amber: {
168
- 100: { value: "#FBBF24" },
169
- 400: { value: "#F59E0B" }
170
- },
171
- rose: {
172
- 100: { value: "#F87171" },
173
- 400: { value: "#EF4444" }
174
- },
175
- stone: {
176
- 100: { value: "#A1A1AA" },
177
- 400: { value: "#71717A" }
178
- },
179
- lime: {
180
- 100: { value: "#A3E635" },
181
- 400: { value: "#84CC16" }
182
- },
183
- pink: {
184
- 100: { value: "#F472B6" },
185
- 400: { value: "#EC4899" }
186
- },
187
- apricot: {
188
- 100: { value: "#FB923C" },
189
- 400: { value: "#F97316" }
190
- },
191
- aqua: {
192
- 100: { value: "#22D3EE" },
193
- 400: { value: "#06B6D4" }
194
- },
195
- leaf: {
196
- 100: { value: "#4ADE80" },
197
- 400: { value: "#22C55E" }
198
- },
199
- fuchsia: {
200
- 100: { value: "#E879F9" },
201
- 400: { value: "#D946EF" }
202
- },
203
- ice: {
204
- 50: { value: "#E0EEFF" },
205
- 100: { value: "#B4D3F2" }
206
- },
207
- ash: {
208
- 100: { value: "#E7EDF5" }
191
+ ],
192
+ defaultVariants: {
193
+ size: "md",
194
+ variant: "gray"
209
195
  }
210
196
  });
211
197
 
212
- // src/tokens/durations.ts
198
+ // src/recipes/avatar.ts
213
199
  var import_dev4 = require("@pandacss/dev");
214
- var durations = import_dev4.defineTokens.durations({
215
- slow: { value: "100ms" },
216
- normal: { value: "250ms" },
217
- fast: { value: "300ms" }
218
- });
219
-
220
- // src/tokens/opacity.ts
221
- var import_dev5 = require("@pandacss/dev");
222
- var opacity = import_dev5.defineTokens.opacity({
223
- 0: { value: 0 },
224
- 40: { value: 0.4 },
225
- 60: { value: 0.6 },
226
- 100: { value: 1 }
227
- });
228
-
229
- // src/tokens/radii.ts
230
- var import_dev6 = require("@pandacss/dev");
231
- var radii = import_dev6.defineTokens.radii({
232
- none: { value: "0" },
233
- xs: { value: "0.125rem", description: "2px" },
234
- sm: { value: "0.25rem", description: "4px" },
235
- md: { value: "0.375rem", description: "6px" },
236
- lg: { value: "0.5rem", description: "8px" },
237
- xl: { value: "0.75rem", description: "12px" },
238
- full: { value: "50%" }
239
- });
240
-
241
- // src/tokens/shadows.ts
242
- var import_dev7 = require("@pandacss/dev");
243
- var shadows = import_dev7.defineTokens.shadows({
244
- xs: {
245
- value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
246
- },
247
- sm: {
248
- value: ["0px 4px 6px -2px rgba(0, 0, 0, 0.05)", "0px 10px 15px -3px rgba(0, 0, 0, 0.10)"]
249
- },
250
- md: {
251
- value: ["0px 10px 10px -5px rgba(0, 0, 0, 0.04)", "0px 20px 25px -5px rgba(0, 0, 0, 0.10)"]
252
- },
253
- lg: {
254
- value: ["0px 6px 16px 0px rgba(0, 0, 0, 0.08)", "0px 9px 28px 8px rgba(0, 0, 0, 0.05)"]
255
- },
256
- focus: {
257
- value: "0 0 0 3px rgba(224, 238, 255, 1)"
258
- },
259
- xl: {
260
- value: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)"
261
- },
262
- "2xl": {
263
- value: "0 25px 50px -12px rgba(0, 0, 0, 0.25)"
264
- },
265
- outline: {
266
- value: "0 0 0 3px #E0EEFF"
267
- },
268
- "outline-tab": {
269
- value: "0 0 0 2px #E0EEFF"
270
- },
271
- outer: {
272
- value: "0 0 0 3px rgba(224, 238, 255, 1)"
273
- },
274
- inner: {
275
- value: "inset 0 2px 4px 0 rgba( 0, 0, 0, 0.06)"
276
- },
277
- none: {
278
- value: "none"
279
- }
280
- });
281
-
282
- // src/tokens/sizes.ts
283
- var import_dev8 = require("@pandacss/dev");
284
- var sizes = import_dev8.defineTokens.sizes({
285
- 0: { value: "0", description: "0px" },
286
- 0.25: { value: "0.0625rem", description: "1px" },
287
- 0.5: { value: "0.125rem", description: "2px" },
288
- 1: { value: "0.25rem", description: "4px" },
289
- 2: { value: "0.5rem", description: "8px" },
290
- 2.5: { value: "0.625rem", description: "10px" },
291
- 3: { value: "0.75rem", description: "12px" },
292
- 4: { value: "1rem", description: "16px" },
293
- 5: { value: "1.25rem", description: "20px" },
294
- 6: { value: "1.5rem", description: "24px" },
295
- 7: { value: "1.75rem", description: "28px" },
296
- 7.5: { value: "1.875rem", description: "30px" },
297
- 8: { value: "2rem", description: "32px" },
298
- 9: { value: "2.25rem", description: "36px" },
299
- 9.5: { value: "2.375rem", description: "38px" },
300
- 10: { value: "2.5rem", description: "40px" },
301
- 11: { value: "2.75rem", description: "44px" },
302
- 12: { value: "3rem", description: "48px" },
303
- 16: { value: "4rem", description: "64px" },
304
- 20: { value: "5rem", description: "80px" },
305
- 22: { value: "5.5rem", description: "96px" },
306
- 56: { value: "14rem", description: "224px" },
307
- 65: { value: "17.5rem", description: "280px" },
308
- full: { value: "100%" }
309
- });
310
-
311
- // src/tokens/spacing.ts
312
- var import_dev9 = require("@pandacss/dev");
313
- var spacing = import_dev9.defineTokens.spacing({
314
- 0: { value: "0", description: "0px" },
315
- 0.5: { value: "0.125rem", description: "2px" },
316
- 1: { value: "0.25rem", description: "4px" },
317
- 1.5: { value: "0.375rem", description: "6px" },
318
- 2: { value: "0.5rem", description: "8px" },
319
- 3: { value: "0.75rem", description: "12px" },
320
- 4: { value: "1rem", description: "16px" },
321
- 5: { value: "1.3rem", description: "20px" },
322
- 6: { value: "1.5rem", description: "24px" },
323
- 8: { value: "2rem", description: "32px" },
324
- 12: { value: "3rem", description: "48px" },
325
- 16: { value: "4rem", description: "64px" },
326
- 20: { value: "5rem", description: "80px" },
327
- 24: { value: "6rem", description: "96px" },
328
- 32: { value: "8rem", description: "128px" },
329
- 40: { value: "10rem", description: "160px" },
330
- 64: { value: "16rem", description: "256px" }
331
- });
332
-
333
- // src/tokens/z-index.ts
334
- var import_dev10 = require("@pandacss/dev");
335
- var zIndex = import_dev10.defineTokens.zIndex({
336
- hide: { value: -1 },
337
- base: { value: 0 },
338
- docked: { value: 10 },
339
- sticky: { value: 1100 },
340
- overlay: { value: 1300 },
341
- modal: { value: 1400 },
342
- popover: { value: 1500 },
343
- tooltip: { value: 1800 }
344
- });
345
-
346
- // src/tokens/typography.ts
347
- var import_dev11 = require("@pandacss/dev");
348
- var fonts = import_dev11.defineTokens.fonts({
349
- body: {
350
- value: '"inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
351
- },
352
- mono: {
353
- value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
354
- }
355
- });
356
- var fontSizes = import_dev11.defineTokens.fontSizes({
357
- xs: { value: "0.625rem", description: "10px" },
358
- sm: { value: "0.75rem", description: "12px" },
359
- md: { value: "0.875rem", description: "14px" },
360
- lg: { value: "1rem", description: "16px" },
361
- xl: { value: "1.25rem", description: "20px" },
362
- "2xl": { value: "1.5rem", description: "24px" }
363
- });
364
- var fontWeights = import_dev11.defineTokens.fontWeights({
365
- regular: { value: "400" },
366
- semiBold: { value: "600" },
367
- bold: { value: "800" }
368
- });
369
- var lineHeights = import_dev11.defineTokens.lineHeights({
370
- xs: { value: 1.2, description: "12px/10px" },
371
- sm: { value: 1.34, description: "16px/12px or 32px/24px" },
372
- md: { value: 1.4, description: "28px/20px" },
373
- lg: { value: 1.429, description: "20px/14px" },
374
- xl: { value: 1.5, description: "24px/16px" },
375
- "2xl": { value: 1.67, description: "20px/12px" },
376
- "3xl": { value: 1.71, description: "24px/14px" }
377
- });
378
- var letterSpacings = import_dev11.defineTokens.letterSpacings({
379
- tighter: { value: "-0.05em" },
380
- tight: { value: "-0.025em" },
381
- normal: { value: "0" },
382
- wide: { value: "0.025em" },
383
- wider: { value: "0.05em" },
384
- widest: { value: "0.1em" }
385
- });
386
-
387
- // src/tokens/index.ts
388
- var tokens = (0, import_dev12.defineTokens)({
389
- borders,
390
- colors,
391
- durations,
392
- fonts,
393
- fontSizes,
394
- fontWeights,
395
- lineHeights,
396
- letterSpacings,
397
- opacity,
398
- radii,
399
- shadows,
400
- sizes,
401
- spacing,
402
- zIndex
403
- });
404
-
405
- // src/text-styles.ts
406
- var import_dev13 = require("@pandacss/dev");
407
- var textStyles = (0, import_dev13.defineTextStyles)({
408
- overline: { value: { fontSize: "xs", lineHeight: "xs" } },
409
- body: {
410
- sm: { value: { fontSize: "sm", lineHeight: "2xl" } },
411
- md: { value: { fontSize: "md", lineHeight: "3xl" } }
412
- },
413
- label: {
414
- sm: { value: { fontSize: "sm", lineHeight: "sm" } },
415
- md: { value: { fontSize: "md", lineHeight: "lg" } }
416
- },
417
- h3: {
418
- value: {
419
- fontSize: "lg",
420
- lineHeight: "xl",
421
- fontWeight: "semiBold !important"
422
- }
423
- },
424
- h2: {
425
- value: {
426
- fontSize: "xl",
427
- lineHeight: "md",
428
- fontWeight: "semiBold !important"
429
- }
430
- },
431
- h1: {
432
- value: {
433
- fontSize: "2xl",
434
- lineHeight: "sm",
435
- fontWeight: "semiBold !important"
436
- }
437
- }
438
- });
439
-
440
- // src/keyframes.ts
441
- var import_dev14 = require("@pandacss/dev");
442
- var keyframes = (0, import_dev14.defineKeyframes)({
443
- "fade-in": {
444
- from: { opacity: "0" },
445
- to: { opacity: "1" }
446
- },
447
- "fade-out": {
448
- from: { opacity: "1" },
449
- to: { opacity: "0" }
450
- },
451
- spin: {
452
- "100%": { transform: "rotate(1turn)" }
453
- }
454
- });
455
-
456
- // src/recipes/tag.ts
457
- var import_dev15 = require("@pandacss/dev");
458
- var tagSlotRecipe = (0, import_dev15.defineSlotRecipe)({
459
- className: "tag",
460
- jsx: ["MpTag", "mp-tag"],
461
- slots: ["root", "close"],
462
- base: {
463
- root: {
464
- position: "relative",
465
- display: "inline-flex",
466
- alignItems: "center",
467
- userSelect: "auto",
468
- outline: "0px solid transparent",
469
- borderWidth: "1px",
470
- borderColor: "transparent",
471
- borderRadius: "sm",
472
- transition: "all 250ms",
473
- textAlign: "left",
474
- fontSize: "md",
475
- fontWeight: "regular",
476
- lineHeight: "md",
477
- letterSpacing: "normal",
478
- paddingX: "2",
479
- whiteSpace: "normal",
480
- overflowWrap: "anywhere",
481
- cursor: "var(--mp-tag--cursor)"
482
- },
483
- close: {
484
- position: "absolute!",
485
- color: "gray.600",
486
- background: "linear-gradient(270deg, #EDF0F2 75%, rgba(237, 240, 242, 0) 111.54%)!",
487
- border: "none",
488
- right: "0",
489
- width: "5",
490
- height: "5",
491
- minWidth: "5",
492
- paddingTop: "1",
493
- padding: "0",
494
- transition: "all 250ms!",
495
- visibility: "hidden",
496
- opacity: "0",
497
- _groupHover: {
498
- visibility: "visible",
499
- opacity: "1"
500
- }
501
- }
502
- },
503
- variants: {
504
- size: {
505
- sm: {
506
- root: {
507
- paddingY: "0"
508
- }
509
- },
510
- md: {
511
- root: {
512
- paddingY: "1"
513
- }
514
- }
515
- },
516
- variant: {
517
- gray: {
518
- root: {
519
- color: "gray.600",
520
- background: "gray.50"
521
- }
522
- },
523
- red: {
524
- root: {
525
- color: "red.400",
526
- backgroundColor: "red.50"
527
- }
528
- }
529
- }
530
- },
531
- compoundVariants: [
532
- {
533
- variant: "red",
534
- css: {
535
- close: {
536
- background: "linear-gradient(270deg, #FDECEE 75%, rgba(237, 240, 242, 0) 111.54%)!"
537
- }
538
- }
539
- },
540
- {
541
- size: "sm",
542
- css: {
543
- close: { paddingTop: "0" }
544
- }
545
- }
546
- ],
547
- defaultVariants: {
548
- size: "md",
549
- variant: "gray"
550
- }
551
- });
552
-
553
- // src/recipes/avatar.ts
554
- var import_dev16 = require("@pandacss/dev");
555
- var avatarSlotRecipe = (0, import_dev16.defineSlotRecipe)({
200
+ var avatarSlotRecipe = (0, import_dev4.defineSlotRecipe)({
556
201
  className: "avatar",
557
202
  jsx: ["MpAvatar", "mp-avatar"],
558
203
  slots: ["root", "fallback", "image", "icon"],
@@ -684,7 +329,7 @@ var avatarSlotRecipe = (0, import_dev16.defineSlotRecipe)({
684
329
  variant: "circle"
685
330
  }
686
331
  });
687
- var avatarGroupSlotRecipe = (0, import_dev16.defineSlotRecipe)({
332
+ var avatarGroupSlotRecipe = (0, import_dev4.defineSlotRecipe)({
688
333
  className: "avatar-group",
689
334
  jsx: ["MpAvatarGroup", "mp-avatar-group"],
690
335
  slots: ["root", "excess"],
@@ -728,8 +373,8 @@ var avatarGroupSlotRecipe = (0, import_dev16.defineSlotRecipe)({
728
373
  });
729
374
 
730
375
  // src/recipes/button.ts
731
- var import_dev17 = require("@pandacss/dev");
732
- var buttonRecipe = (0, import_dev17.defineRecipe)({
376
+ var import_dev5 = require("@pandacss/dev");
377
+ var buttonRecipe = (0, import_dev5.defineRecipe)({
733
378
  className: "button",
734
379
  jsx: ["MpButton", "mp-button"],
735
380
  base: {
@@ -925,7 +570,7 @@ var buttonRecipe = (0, import_dev17.defineRecipe)({
925
570
  size: "md"
926
571
  }
927
572
  });
928
- var buttonGroupRecipe = (0, import_dev17.defineRecipe)({
573
+ var buttonGroupRecipe = (0, import_dev5.defineRecipe)({
929
574
  className: "pixel-button-group",
930
575
  jsx: ["MpButtonGroup"],
931
576
  base: {
@@ -950,8 +595,8 @@ var buttonGroupRecipe = (0, import_dev17.defineRecipe)({
950
595
  });
951
596
 
952
597
  // src/recipes/input.ts
953
- var import_dev18 = require("@pandacss/dev");
954
- var inputSlotRecipe = (0, import_dev18.defineSlotRecipe)({
598
+ var import_dev6 = require("@pandacss/dev");
599
+ var inputSlotRecipe = (0, import_dev6.defineSlotRecipe)({
955
600
  className: "input",
956
601
  jsx: ["MpInput", "mp-input"],
957
602
  slots: ["root", "control", "clear"],
@@ -1070,7 +715,7 @@ var inputSlotRecipe = (0, import_dev18.defineSlotRecipe)({
1070
715
  variant: "outline"
1071
716
  }
1072
717
  });
1073
- var inputGroupSlotRecipe = (0, import_dev18.defineSlotRecipe)({
718
+ var inputGroupSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1074
719
  className: "input-group",
1075
720
  jsx: ["MpInputGroup", "mp-input-group"],
1076
721
  slots: ["root"],
@@ -1086,7 +731,7 @@ var inputGroupSlotRecipe = (0, import_dev18.defineSlotRecipe)({
1086
731
  compoundVariants: [],
1087
732
  defaultVariants: {}
1088
733
  });
1089
- var inputAddonSlotRecipe = (0, import_dev18.defineSlotRecipe)({
734
+ var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1090
735
  className: "input-addon",
1091
736
  jsx: ["MpInputAddon", "mp-input-addon"],
1092
737
  slots: ["root"],
@@ -1151,8 +796,8 @@ var inputAddonSlotRecipe = (0, import_dev18.defineSlotRecipe)({
1151
796
  });
1152
797
 
1153
798
  // src/recipes/select.ts
1154
- var import_dev19 = require("@pandacss/dev");
1155
- var selectSlotRecipe = (0, import_dev19.defineSlotRecipe)({
799
+ var import_dev7 = require("@pandacss/dev");
800
+ var selectSlotRecipe = (0, import_dev7.defineSlotRecipe)({
1156
801
  className: "select",
1157
802
  jsx: ["MpSelect", "mp-select"],
1158
803
  slots: ["root", "control", "clear", "arrow"],
@@ -1264,8 +909,8 @@ var selectSlotRecipe = (0, import_dev19.defineSlotRecipe)({
1264
909
  });
1265
910
 
1266
911
  // src/recipes/text.ts
1267
- var import_dev20 = require("@pandacss/dev");
1268
- var textRecipe = (0, import_dev20.defineRecipe)({
912
+ var import_dev8 = require("@pandacss/dev");
913
+ var textRecipe = (0, import_dev8.defineRecipe)({
1269
914
  className: "text",
1270
915
  jsx: ["MpText", "mp-text"],
1271
916
  base: {
@@ -1321,8 +966,8 @@ var textRecipe = (0, import_dev20.defineRecipe)({
1321
966
  });
1322
967
 
1323
968
  // src/recipes/icon.ts
1324
- var import_dev21 = require("@pandacss/dev");
1325
- var iconRecipe = (0, import_dev21.defineRecipe)({
969
+ var import_dev9 = require("@pandacss/dev");
970
+ var iconRecipe = (0, import_dev9.defineRecipe)({
1326
971
  className: "icon",
1327
972
  jsx: ["MpIcon", "mp-icon"],
1328
973
  base: {
@@ -1353,8 +998,8 @@ var iconRecipe = (0, import_dev21.defineRecipe)({
1353
998
  });
1354
999
 
1355
1000
  // src/recipes/spinner.ts
1356
- var import_dev22 = require("@pandacss/dev");
1357
- var spinnerRecipe = (0, import_dev22.defineRecipe)({
1001
+ var import_dev10 = require("@pandacss/dev");
1002
+ var spinnerRecipe = (0, import_dev10.defineRecipe)({
1358
1003
  className: "spinner",
1359
1004
  jsx: ["MpSpinner", "mp-spinner"],
1360
1005
  base: {
@@ -1379,8 +1024,8 @@ var spinnerRecipe = (0, import_dev22.defineRecipe)({
1379
1024
  });
1380
1025
 
1381
1026
  // src/recipes/accordion.ts
1382
- var import_dev23 = require("@pandacss/dev");
1383
- var accordion = (0, import_dev23.defineSlotRecipe)({
1027
+ var import_dev11 = require("@pandacss/dev");
1028
+ var accordion = (0, import_dev11.defineSlotRecipe)({
1384
1029
  className: "accordion",
1385
1030
  slots: ["root", "item", "trigger", "content"],
1386
1031
  base: {
@@ -1436,8 +1081,8 @@ var accordion = (0, import_dev23.defineSlotRecipe)({
1436
1081
  });
1437
1082
 
1438
1083
  // src/recipes/popover.ts
1439
- var import_dev24 = require("@pandacss/dev");
1440
- var popoverContentRecipe = (0, import_dev24.defineRecipe)({
1084
+ var import_dev12 = require("@pandacss/dev");
1085
+ var popoverContentRecipe = (0, import_dev12.defineRecipe)({
1441
1086
  className: "popover",
1442
1087
  jsx: ["MpPopover", "mp-popover"],
1443
1088
  base: {},
@@ -1467,7 +1112,7 @@ var popoverContentRecipe = (0, import_dev24.defineRecipe)({
1467
1112
  isUnstyled: false
1468
1113
  }
1469
1114
  });
1470
- var popoverListRecipe = (0, import_dev24.defineRecipe)({
1115
+ var popoverListRecipe = (0, import_dev12.defineRecipe)({
1471
1116
  className: "popover-list",
1472
1117
  jsx: ["MpPopoverList", "mp-popover-list"],
1473
1118
  base: {
@@ -1478,7 +1123,7 @@ var popoverListRecipe = (0, import_dev24.defineRecipe)({
1478
1123
  flexDirection: "column"
1479
1124
  }
1480
1125
  });
1481
- var popoverListItemRecipe = (0, import_dev24.defineRecipe)({
1126
+ var popoverListItemRecipe = (0, import_dev12.defineRecipe)({
1482
1127
  className: "popover-list-item",
1483
1128
  jsx: ["MpPopoverListItem", "mp-popover-list-item"],
1484
1129
  base: {
@@ -1515,8 +1160,8 @@ var popoverListItemRecipe = (0, import_dev24.defineRecipe)({
1515
1160
  });
1516
1161
 
1517
1162
  // src/recipes/badge.ts
1518
- var import_dev25 = require("@pandacss/dev");
1519
- var badgeRecipe = (0, import_dev25.defineRecipe)({
1163
+ var import_dev13 = require("@pandacss/dev");
1164
+ var badgeRecipe = (0, import_dev13.defineRecipe)({
1520
1165
  className: "badge",
1521
1166
  jsx: ["MpBadge", "mp-badge"],
1522
1167
  base: {
@@ -1675,8 +1320,8 @@ var badgeRecipe = (0, import_dev25.defineRecipe)({
1675
1320
  });
1676
1321
 
1677
1322
  // src/recipes/textarea.ts
1678
- var import_dev26 = require("@pandacss/dev");
1679
- var textareaRecipe = (0, import_dev26.defineRecipe)({
1323
+ var import_dev14 = require("@pandacss/dev");
1324
+ var textareaRecipe = (0, import_dev14.defineRecipe)({
1680
1325
  className: "textarea",
1681
1326
  jsx: ["MpTextarea", "mp-textarea"],
1682
1327
  base: {
@@ -1734,8 +1379,8 @@ var textareaRecipe = (0, import_dev26.defineRecipe)({
1734
1379
  });
1735
1380
 
1736
1381
  // src/recipes/tooltip.ts
1737
- var import_dev27 = require("@pandacss/dev");
1738
- var tooltipRecipe = (0, import_dev27.defineRecipe)({
1382
+ var import_dev15 = require("@pandacss/dev");
1383
+ var tooltipRecipe = (0, import_dev15.defineRecipe)({
1739
1384
  className: "tooltip",
1740
1385
  jsx: ["MpTooltip", "mp-tooltip"],
1741
1386
  base: {
@@ -1757,8 +1402,8 @@ var tooltipRecipe = (0, import_dev27.defineRecipe)({
1757
1402
  });
1758
1403
 
1759
1404
  // src/recipes/tabs.ts
1760
- var import_dev28 = require("@pandacss/dev");
1761
- var tabListRecipe = (0, import_dev28.defineRecipe)({
1405
+ var import_dev16 = require("@pandacss/dev");
1406
+ var tabListRecipe = (0, import_dev16.defineRecipe)({
1762
1407
  className: "tab-list",
1763
1408
  jsx: ["MpTabList", "mp-tab-list"],
1764
1409
  base: {
@@ -1774,7 +1419,7 @@ var tabListRecipe = (0, import_dev28.defineRecipe)({
1774
1419
  maxWidth: "full"
1775
1420
  }
1776
1421
  });
1777
- var tabRecipe = (0, import_dev28.defineRecipe)({
1422
+ var tabRecipe = (0, import_dev16.defineRecipe)({
1778
1423
  className: "tab",
1779
1424
  jsx: ["MpTab", "mp-tab"],
1780
1425
  base: {
@@ -1870,7 +1515,7 @@ var tabRecipe = (0, import_dev28.defineRecipe)({
1870
1515
  isSelected: false
1871
1516
  }
1872
1517
  });
1873
- var selectedBorderRecipe = (0, import_dev28.defineRecipe)({
1518
+ var selectedBorderRecipe = (0, import_dev16.defineRecipe)({
1874
1519
  className: "selected-border",
1875
1520
  jsx: ["MpSelectedBorder", "mp-selected-border"],
1876
1521
  base: {
@@ -1948,18 +1593,227 @@ var selectedBorderRecipe = (0, import_dev28.defineRecipe)({
1948
1593
  }
1949
1594
  }
1950
1595
  }
1951
- ],
1952
- defaultVariants: {
1953
- variantColor: "blue",
1954
- isSelected: false
1596
+ ],
1597
+ defaultVariants: {
1598
+ variantColor: "blue",
1599
+ isSelected: false
1600
+ }
1601
+ });
1602
+
1603
+ // src/recipes/checkbox.ts
1604
+ var import_dev17 = require("@pandacss/dev");
1605
+ var checkboxSlotRecipe = (0, import_dev17.defineSlotRecipe)({
1606
+ className: "checkbox",
1607
+ jsx: ["MpCheckbox", "mp-checkbox"],
1608
+ slots: ["root", "control", "label"],
1609
+ base: {
1610
+ root: {
1611
+ position: "relative",
1612
+ display: "inline-flex",
1613
+ alignItems: "center",
1614
+ justifyContent: "center",
1615
+ gap: "2",
1616
+ cursor: "pointer",
1617
+ outline: "none",
1618
+ "&[data-has-description=true]": {
1619
+ alignItems: "flex-start",
1620
+ "& .mp-checkbox__control": {
1621
+ marginTop: "1"
1622
+ }
1623
+ },
1624
+ "& .mp-shared__hidden": {
1625
+ "&:focus + .mp-checkbox__control": {
1626
+ borderColor: "blue.400",
1627
+ boxShadow: "focus"
1628
+ }
1629
+ },
1630
+ _hover: {
1631
+ "& .mp-checkbox__control": {
1632
+ borderColor: "gray.400"
1633
+ }
1634
+ },
1635
+ _disabled: {
1636
+ cursor: "not-allowed",
1637
+ "& .mp-checkbox__control": {
1638
+ borderColor: "gray.100 !important",
1639
+ background: "gray.50 !important",
1640
+ boxShadow: "none !important"
1641
+ }
1642
+ },
1643
+ _invalid: {
1644
+ "& .mp-checkbox__control": {
1645
+ borderColor: "red.400",
1646
+ background: "white"
1647
+ }
1648
+ },
1649
+ _checked: {
1650
+ "& .mp-checkbox__control": {
1651
+ borderColor: "blue.400",
1652
+ background: "blue.400"
1653
+ },
1654
+ _hover: {
1655
+ "& .mp-checkbox__control": {
1656
+ borderColor: "blue.400"
1657
+ }
1658
+ }
1659
+ },
1660
+ _indeterminate: {
1661
+ "& .mp-checkbox__control": {
1662
+ borderColor: "blue.400",
1663
+ background: "blue.400"
1664
+ },
1665
+ _hover: {
1666
+ "& .mp-checkbox__control": {
1667
+ borderColor: "blue.400"
1668
+ }
1669
+ }
1670
+ }
1671
+ },
1672
+ control: {
1673
+ flex: "none",
1674
+ transitionDuration: "250ms",
1675
+ transitionProperty: "background, border-color, box-shadow",
1676
+ transitionTimingFunction: "linear",
1677
+ position: "relative",
1678
+ display: "inline-flex",
1679
+ alignItems: "center",
1680
+ justifyContent: "center",
1681
+ width: "18px",
1682
+ height: "18px",
1683
+ borderWidth: "2px",
1684
+ borderColor: "gray.100",
1685
+ borderRadius: "md",
1686
+ background: "white"
1687
+ },
1688
+ label: {
1689
+ background: "transparent"
1690
+ }
1691
+ }
1692
+ });
1693
+
1694
+ // src/recipes/radio.ts
1695
+ var import_dev18 = require("@pandacss/dev");
1696
+ var radioSlotRecipe = (0, import_dev18.defineSlotRecipe)({
1697
+ className: "radio",
1698
+ jsx: ["MpRadio", "mp-radio"],
1699
+ slots: ["root", "control", "label"],
1700
+ base: {
1701
+ root: {
1702
+ position: "relative",
1703
+ display: "inline-flex",
1704
+ alignItems: "center",
1705
+ justifyContent: "center",
1706
+ gap: "2",
1707
+ cursor: "pointer",
1708
+ outline: "none",
1709
+ "&[data-has-description=true]": {
1710
+ alignItems: "flex-start",
1711
+ "& .mp-radio__control": {
1712
+ marginTop: "1"
1713
+ }
1714
+ },
1715
+ "& .mp-shared__hidden": {
1716
+ "&:focus + .mp-radio__control": {
1717
+ borderColor: "blue.400",
1718
+ boxShadow: "focus"
1719
+ }
1720
+ },
1721
+ _hover: {
1722
+ "& .mp-radio__control": {
1723
+ borderColor: "gray.400"
1724
+ }
1725
+ },
1726
+ _disabled: {
1727
+ cursor: "not-allowed",
1728
+ "& .mp-radio__control": {
1729
+ borderColor: "gray.100 !important",
1730
+ background: "gray.50 !important",
1731
+ boxShadow: "none !important",
1732
+ "& div": {
1733
+ background: "gray.400"
1734
+ }
1735
+ }
1736
+ },
1737
+ _invalid: {
1738
+ "& .mp-radio__control": {
1739
+ borderColor: "red.400",
1740
+ background: "white"
1741
+ }
1742
+ },
1743
+ _checked: {
1744
+ "& .mp-radio__control": {
1745
+ borderColor: "blue.400",
1746
+ background: "blue.400"
1747
+ },
1748
+ _hover: {
1749
+ "& .mp-radio__control": {
1750
+ borderColor: "blue.400"
1751
+ }
1752
+ }
1753
+ },
1754
+ _indeterminate: {
1755
+ "& .mp-radio__control": {
1756
+ borderColor: "blue.400",
1757
+ background: "blue.400"
1758
+ },
1759
+ _hover: {
1760
+ "& .mp-radio__control": {
1761
+ borderColor: "blue.400"
1762
+ }
1763
+ }
1764
+ }
1765
+ },
1766
+ control: {
1767
+ flex: "none",
1768
+ transitionDuration: "250ms",
1769
+ transitionProperty: "background, border-color, box-shadow",
1770
+ transitionTimingFunction: "linear",
1771
+ position: "relative",
1772
+ display: "inline-flex",
1773
+ alignItems: "center",
1774
+ justifyContent: "center",
1775
+ width: "18px",
1776
+ height: "18px",
1777
+ borderWidth: "2px",
1778
+ borderColor: "gray.100",
1779
+ borderRadius: "full",
1780
+ background: "white",
1781
+ "& div": {
1782
+ width: "2.5",
1783
+ height: "2.5",
1784
+ background: "white",
1785
+ borderRadius: "full"
1786
+ }
1787
+ },
1788
+ label: {
1789
+ background: "transparent"
1790
+ }
1791
+ }
1792
+ });
1793
+
1794
+ // src/recipes/shared.ts
1795
+ var import_dev19 = require("@pandacss/dev");
1796
+ var sharedSlotRecipe = (0, import_dev19.defineSlotRecipe)({
1797
+ className: "shared",
1798
+ jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
1799
+ slots: ["hidden"],
1800
+ base: {
1801
+ hidden: {
1802
+ clip: "rect(0px, 0px, 0px, 0px)",
1803
+ height: "1px",
1804
+ width: "1px",
1805
+ overflow: "hidden",
1806
+ whiteSpace: "nowrap",
1807
+ position: "absolute"
1808
+ }
1955
1809
  }
1956
1810
  });
1957
1811
 
1958
- // src/recipes/checkbox.ts
1959
- var import_dev29 = require("@pandacss/dev");
1960
- var checkboxSlotRecipe = (0, import_dev29.defineSlotRecipe)({
1961
- className: "checkbox",
1962
- jsx: ["MpCheckbox", "mp-checkbox"],
1812
+ // src/recipes/toggle.ts
1813
+ var import_dev20 = require("@pandacss/dev");
1814
+ var toggleSlotRecipe = (0, import_dev20.defineSlotRecipe)({
1815
+ className: "toggle",
1816
+ jsx: ["MpToggle", "mp-toggle"],
1963
1817
  slots: ["root", "control", "label"],
1964
1818
  base: {
1965
1819
  root: {
@@ -1967,718 +1821,1400 @@ var checkboxSlotRecipe = (0, import_dev29.defineSlotRecipe)({
1967
1821
  display: "inline-flex",
1968
1822
  alignItems: "center",
1969
1823
  justifyContent: "center",
1970
- gap: "2",
1824
+ gap: "3",
1971
1825
  cursor: "pointer",
1972
1826
  outline: "none",
1973
1827
  "&[data-has-description=true]": {
1974
1828
  alignItems: "flex-start",
1975
- "& .mp-checkbox__control": {
1829
+ "& .mp-toggle__control": {
1976
1830
  marginTop: "1"
1977
1831
  }
1978
1832
  },
1979
1833
  "& .mp-shared__hidden": {
1980
- "&:focus + .mp-checkbox__control": {
1834
+ "&:focus + .mp-toggle__control": {
1981
1835
  borderColor: "blue.400",
1982
1836
  boxShadow: "focus"
1983
1837
  }
1984
1838
  },
1985
1839
  _hover: {
1986
- "& .mp-checkbox__control": {
1987
- borderColor: "gray.400"
1840
+ "& .mp-toggle__control": {
1841
+ borderColor: "gray.400",
1842
+ background: "gray.400"
1988
1843
  }
1989
1844
  },
1990
1845
  _disabled: {
1991
1846
  cursor: "not-allowed",
1992
- "& .mp-checkbox__control": {
1847
+ "& .mp-toggle__control": {
1993
1848
  borderColor: "gray.100 !important",
1994
1849
  background: "gray.50 !important",
1995
- boxShadow: "none !important"
1850
+ boxShadow: "none !important",
1851
+ "& div": {
1852
+ background: "gray.100"
1853
+ }
1996
1854
  }
1997
1855
  },
1998
1856
  _invalid: {
1999
- "& .mp-checkbox__control": {
1857
+ "& .mp-toggle__control": {
2000
1858
  borderColor: "red.400",
2001
- background: "white"
1859
+ background: "red.400"
2002
1860
  }
2003
1861
  },
2004
1862
  _checked: {
2005
- "& .mp-checkbox__control": {
1863
+ "& .mp-toggle__control": {
2006
1864
  borderColor: "blue.400",
2007
- background: "blue.400"
1865
+ background: "blue.400",
1866
+ "& div": {
1867
+ transform: "translateX(var(--mp-sizes-3))"
1868
+ }
2008
1869
  },
2009
1870
  _hover: {
2010
- "& .mp-checkbox__control": {
2011
- borderColor: "blue.400"
1871
+ "& .mp-toggle__control": {
1872
+ borderColor: "blue.400",
1873
+ background: "blue.400"
2012
1874
  }
2013
1875
  }
2014
- },
2015
- _indeterminate: {
2016
- "& .mp-checkbox__control": {
2017
- borderColor: "blue.400",
2018
- background: "blue.400"
2019
- },
1876
+ }
1877
+ },
1878
+ control: {
1879
+ flex: "none",
1880
+ position: "relative",
1881
+ display: "inline-flex",
1882
+ alignItems: "center",
1883
+ justifyContent: "flex-start",
1884
+ width: "7",
1885
+ height: "4",
1886
+ borderWidth: "1px",
1887
+ borderColor: "gray.100",
1888
+ borderRadius: "lg",
1889
+ background: "gray.100",
1890
+ "& div": {
1891
+ transitionDuration: "250ms",
1892
+ transitionProperty: "transform",
1893
+ transitionTimingFunction: "linear",
1894
+ transform: "translateX(2px)",
1895
+ width: "3",
1896
+ height: "3",
1897
+ background: "white",
1898
+ borderRadius: "full"
1899
+ }
1900
+ },
1901
+ label: {
1902
+ background: "transparent"
1903
+ }
1904
+ }
1905
+ });
1906
+
1907
+ // src/recipes/table.ts
1908
+ var import_dev21 = require("@pandacss/dev");
1909
+ var tableRecipe = (0, import_dev21.defineRecipe)({
1910
+ className: "table",
1911
+ jsx: ["MpTable", "mp-table"],
1912
+ base: {
1913
+ position: "relative",
1914
+ width: "full",
1915
+ display: "table",
1916
+ borderCollapse: "collapse",
1917
+ borderSpacing: "0px",
1918
+ whiteSpace: "nowrap",
1919
+ "&[data-table-hoverable=true]": {
1920
+ "& tr": {
2020
1921
  _hover: {
2021
- "& .mp-checkbox__control": {
2022
- borderColor: "blue.400"
1922
+ "& > td": {
1923
+ backgroundColor: "gray.50"
2023
1924
  }
2024
1925
  }
2025
1926
  }
2026
1927
  },
2027
- control: {
2028
- flex: "none",
2029
- transitionDuration: "250ms",
2030
- transitionProperty: "background, border-color, box-shadow",
2031
- transitionTimingFunction: "linear",
2032
- position: "relative",
2033
- display: "inline-flex",
2034
- alignItems: "center",
2035
- justifyContent: "center",
2036
- width: "18px",
2037
- height: "18px",
2038
- borderWidth: "2px",
2039
- borderColor: "gray.100",
2040
- borderRadius: "md",
2041
- background: "white"
1928
+ "& > thead": {
1929
+ width: "full",
1930
+ backgroundColor: "gray.25",
1931
+ "&[data-table-head-fixed=true]": {
1932
+ position: "sticky",
1933
+ zIndex: "sticky",
1934
+ top: "0",
1935
+ boxShadow: "0px 2px var(--mp-colors-gray-100)"
1936
+ }
1937
+ },
1938
+ "& > tbody": {
1939
+ width: "full"
1940
+ },
1941
+ "& > tr": {
1942
+ width: "full",
1943
+ boxSizing: "border-box",
1944
+ whiteSpace: "nowrap"
1945
+ },
1946
+ "& th, & td": {
1947
+ cursor: "default",
1948
+ paddingLeft: "2",
1949
+ paddingRight: "4",
1950
+ paddingY: "2",
1951
+ height: "12",
1952
+ textStyle: "label.md",
1953
+ textAlign: "left",
1954
+ borderBottom: "sm",
1955
+ borderStyle: "solid",
1956
+ borderColor: "gray.100",
1957
+ transition: "background linear 120ms"
1958
+ },
1959
+ "& th": {
1960
+ fontWeight: "semiBold",
1961
+ backgroundColor: "gray.25"
1962
+ },
1963
+ "& td": {
1964
+ fontWeight: "regular",
1965
+ backgroundColor: "white"
1966
+ },
1967
+ "& th[data-table-cell-fixed=true], & td[data-table-cell-fixed=true]": {
1968
+ position: "sticky",
1969
+ zIndex: "docked",
1970
+ left: "0",
1971
+ right: "0"
1972
+ }
1973
+ }
1974
+ });
1975
+ var tableContainerRecipe = (0, import_dev21.defineRecipe)({
1976
+ className: "table-container",
1977
+ jsx: ["MpTableContainer", "mp-table-container"],
1978
+ base: {
1979
+ position: "relative",
1980
+ overflow: "auto",
1981
+ "&[data-table-has-left-shadow=true]": {
1982
+ _before: {
1983
+ boxShadow: "inset 10px 0 8px -8px rgba(5, 5, 5, 0.08)"
1984
+ }
1985
+ },
1986
+ "&[data-table-has-right-shadow=true]": {
1987
+ _after: {
1988
+ boxShadow: "inset -10px 0 8px -8px rgba(5, 5, 5, 0.08)"
1989
+ }
1990
+ },
1991
+ _before: {
1992
+ content: '""',
1993
+ position: "absolute",
1994
+ zIndex: "docked",
1995
+ boxShadow: "none",
1996
+ transition: "box-shadow 300ms",
1997
+ insetInlineStart: 0,
1998
+ width: "30px",
1999
+ top: 0,
2000
+ bottom: 0,
2001
+ pointerEvents: "none"
2002
+ },
2003
+ _after: {
2004
+ content: '""',
2005
+ position: "absolute",
2006
+ zIndex: "docked",
2007
+ boxShadow: "none",
2008
+ transition: "box-shadow linear 300ms",
2009
+ insetInlineEnd: 0,
2010
+ width: "30px",
2011
+ top: 0,
2012
+ bottom: 0,
2013
+ pointerEvents: "none"
2014
+ }
2015
+ }
2016
+ });
2017
+
2018
+ // src/recipes/progress.ts
2019
+ var import_dev22 = require("@pandacss/dev");
2020
+ var progressSlotRecipe = (0, import_dev22.defineSlotRecipe)({
2021
+ className: "progress",
2022
+ jsx: ["MpProgress", "mp-progress"],
2023
+ slots: ["root", "linear", "circularBase", "circularTrack"],
2024
+ base: {
2025
+ root: {
2026
+ position: "relative",
2027
+ width: "full",
2028
+ borderRadius: "100px",
2029
+ background: "gray.100",
2030
+ transition: "all 250ms linear"
2031
+ },
2032
+ linear: {
2033
+ transition: "all 250ms linear",
2034
+ height: "full",
2035
+ borderRadius: "100px",
2036
+ background: "var(--mp-progress-color)",
2037
+ width: "var(--mp-progress-width)"
2038
+ },
2039
+ circularBase: {
2040
+ width: "full",
2041
+ height: "full",
2042
+ borderRadius: "full",
2043
+ background: "conic-gradient(var(--mp-progress-color) var(--mp-progress-width), var(--mp-colors-gray-100) 0deg)"
2044
+ },
2045
+ circularTrack: {
2046
+ width: "calc(100% - 6px)",
2047
+ height: "calc(100% - 6px)",
2048
+ position: "absolute",
2049
+ top: "50%",
2050
+ left: "50%",
2051
+ transform: "translate(-50%, -50%)",
2052
+ backgroundColor: "white",
2053
+ borderRadius: "full"
2054
+ }
2055
+ },
2056
+ variants: {
2057
+ size: {
2058
+ md: {
2059
+ linear: {
2060
+ height: "3"
2061
+ }
2062
+ },
2063
+ sm: {
2064
+ linear: {
2065
+ height: "2"
2066
+ }
2067
+ }
2068
+ },
2069
+ variant: {
2070
+ linear: {
2071
+ root: {
2072
+ borderRadius: "100px"
2073
+ }
2074
+ },
2075
+ circular: {
2076
+ root: {
2077
+ borderRadius: "full",
2078
+ width: "22px",
2079
+ height: "22px",
2080
+ background: "transparent",
2081
+ alignSelf: "start"
2082
+ }
2083
+ }
2084
+ }
2085
+ },
2086
+ defaultVariants: {
2087
+ variant: "linear",
2088
+ size: "md"
2089
+ }
2090
+ });
2091
+
2092
+ // src/recipes/form-control.ts
2093
+ var import_dev23 = require("@pandacss/dev");
2094
+ var formControlSlotRecipe = (0, import_dev23.defineSlotRecipe)({
2095
+ className: "form-control",
2096
+ jsx: ["MpFormControl", "mp-form-control"],
2097
+ slots: ["root", "label", "required", "helpText", "errorMessage"],
2098
+ base: {
2099
+ root: {},
2100
+ label: {
2101
+ fontSize: "md",
2102
+ fontWeight: "semiBold",
2103
+ marginBottom: "1",
2104
+ textAlign: "left",
2105
+ verticalAlign: "middle",
2106
+ display: "flex"
2107
+ },
2108
+ required: {
2109
+ color: "red.400",
2110
+ marginLeft: "1"
2042
2111
  },
2043
- label: {
2044
- background: "transparent"
2112
+ helpText: {
2113
+ color: "gray.600",
2114
+ fontSize: "sm",
2115
+ marginTop: "1"
2116
+ },
2117
+ errorMessage: {
2118
+ color: "red.400",
2119
+ fontSize: "sm",
2120
+ marginTop: "1",
2121
+ textAlign: "left",
2122
+ verticalAlign: "middle",
2123
+ display: "flex"
2045
2124
  }
2046
- }
2125
+ },
2126
+ variants: {},
2127
+ compoundVariants: [],
2128
+ defaultVariants: {}
2047
2129
  });
2048
2130
 
2049
- // src/recipes/radio.ts
2050
- var import_dev30 = require("@pandacss/dev");
2051
- var radioSlotRecipe = (0, import_dev30.defineSlotRecipe)({
2052
- className: "radio",
2053
- jsx: ["MpRadio", "mp-radio"],
2054
- slots: ["root", "control", "label"],
2131
+ // src/recipes/input-tag.ts
2132
+ var import_dev24 = require("@pandacss/dev");
2133
+ var inputTagSlotRecipe = (0, import_dev24.defineSlotRecipe)({
2134
+ className: "input-tag",
2135
+ jsx: ["MpInputTag", "mp-input-tag"],
2136
+ slots: [
2137
+ "root",
2138
+ "trigger",
2139
+ "input",
2140
+ "content",
2141
+ "resetButton",
2142
+ "dropdownButton",
2143
+ "addButton",
2144
+ "loading",
2145
+ "empty",
2146
+ "suggestionWrapper",
2147
+ "suggestionLoading"
2148
+ ],
2055
2149
  base: {
2056
2150
  root: {
2057
2151
  position: "relative",
2058
- display: "inline-flex",
2152
+ width: "full"
2153
+ },
2154
+ trigger: {
2155
+ overflowY: "auto",
2156
+ position: "relative",
2157
+ display: "flex",
2059
2158
  alignItems: "center",
2060
- justifyContent: "center",
2159
+ flexWrap: "wrap",
2061
2160
  gap: "2",
2062
- cursor: "pointer",
2063
- outline: "none",
2064
- "&[data-has-description=true]": {
2065
- alignItems: "flex-start",
2066
- "& .mp-radio__control": {
2067
- marginTop: "1"
2068
- }
2069
- },
2070
- "& .mp-shared__hidden": {
2071
- "&:focus + .mp-radio__control": {
2072
- borderColor: "blue.400",
2073
- boxShadow: "focus"
2074
- }
2075
- },
2161
+ borderWidth: "1px",
2162
+ borderColor: "gray.100",
2163
+ borderRadius: "md",
2164
+ paddingTop: "2",
2165
+ paddingBottom: "2",
2166
+ paddingLeft: "3",
2167
+ paddingRight: "8",
2168
+ backgroundColor: "white",
2169
+ transition: "all 250ms",
2076
2170
  _hover: {
2077
- "& .mp-radio__control": {
2078
- borderColor: "gray.400"
2171
+ borderColor: "gray.400"
2172
+ },
2173
+ _focusVisible: {
2174
+ boxShadow: "focus",
2175
+ borderColor: "blue.400",
2176
+ _hover: {
2177
+ borderColor: "blue.400"
2079
2178
  }
2080
2179
  },
2081
2180
  _disabled: {
2082
2181
  cursor: "not-allowed",
2083
- "& .mp-radio__control": {
2084
- borderColor: "gray.100 !important",
2085
- background: "gray.50 !important",
2086
- boxShadow: "none !important",
2087
- "& div": {
2088
- background: "gray.400"
2089
- }
2090
- }
2182
+ background: "gray.50"
2091
2183
  },
2092
2184
  _invalid: {
2093
- "& .mp-radio__control": {
2094
- borderColor: "red.400",
2095
- background: "white"
2096
- }
2097
- },
2098
- _checked: {
2099
- "& .mp-radio__control": {
2100
- borderColor: "blue.400",
2101
- background: "blue.400"
2102
- },
2185
+ borderColor: "red.400",
2103
2186
  _hover: {
2104
- "& .mp-radio__control": {
2105
- borderColor: "blue.400"
2106
- }
2187
+ borderColor: "red.400"
2107
2188
  }
2108
2189
  },
2109
- _indeterminate: {
2110
- "& .mp-radio__control": {
2111
- borderColor: "blue.400",
2112
- background: "blue.400"
2113
- },
2114
- _hover: {
2115
- "& .mp-radio__control": {
2116
- borderColor: "blue.400"
2117
- }
2118
- }
2190
+ _hasIcon: {
2191
+ paddingRight: "52px"
2119
2192
  }
2120
2193
  },
2121
- control: {
2122
- flex: "none",
2123
- transitionDuration: "250ms",
2124
- transitionProperty: "background, border-color, box-shadow",
2125
- transitionTimingFunction: "linear",
2126
- position: "relative",
2127
- display: "inline-flex",
2128
- alignItems: "center",
2129
- justifyContent: "center",
2130
- width: "18px",
2131
- height: "18px",
2132
- borderWidth: "2px",
2133
- borderColor: "gray.100",
2134
- borderRadius: "full",
2135
- background: "white",
2136
- "& div": {
2137
- width: "2.5",
2138
- height: "2.5",
2139
- background: "white",
2140
- borderRadius: "full"
2141
- }
2194
+ input: {
2195
+ padding: "0 !important",
2196
+ margin: "0 !important"
2142
2197
  },
2143
- label: {
2144
- background: "transparent"
2198
+ content: {
2199
+ maxHeight: "300px",
2200
+ overflowY: "auto"
2201
+ },
2202
+ resetButton: {
2203
+ cursor: "pointer",
2204
+ position: "absolute",
2205
+ top: "2"
2206
+ },
2207
+ dropdownButton: {
2208
+ cursor: "pointer",
2209
+ position: "absolute",
2210
+ top: "2",
2211
+ right: "3"
2212
+ },
2213
+ addButton: {
2214
+ cursor: "pointer",
2215
+ width: "full",
2216
+ px: "3",
2217
+ py: "2",
2218
+ wordBreak: "break-all",
2219
+ textAlign: "center"
2220
+ },
2221
+ loading: {
2222
+ position: "absolute",
2223
+ top: "2",
2224
+ right: "3"
2225
+ },
2226
+ empty: {
2227
+ px: "3",
2228
+ py: "2",
2229
+ width: "full",
2230
+ textAlign: "left"
2231
+ },
2232
+ suggestionWrapper: {
2233
+ display: "flex",
2234
+ flexDirection: "column",
2235
+ width: "100%"
2236
+ },
2237
+ suggestionLoading: {
2238
+ display: "flex",
2239
+ justifyContent: "flex-start",
2240
+ gap: "3",
2241
+ width: "full",
2242
+ height: "9",
2243
+ py: "2",
2244
+ px: "3"
2245
+ }
2246
+ }
2247
+ });
2248
+
2249
+ // src/recipes/divider.ts
2250
+ var import_dev25 = require("@pandacss/dev");
2251
+ var dividerRecipe = (0, import_dev25.defineRecipe)({
2252
+ className: "divider",
2253
+ jsx: ["MpDivider", "mp-divider"],
2254
+ base: {
2255
+ border: 0,
2256
+ opacity: 0.6,
2257
+ color: "rgb(208, 214, 221)"
2258
+ },
2259
+ variants: {
2260
+ orientation: {
2261
+ horizontal: {
2262
+ borderBottom: "0.0625rem solid",
2263
+ height: "auto",
2264
+ marginY: 2
2265
+ },
2266
+ vertical: {
2267
+ borderLeft: "0.0625rem solid",
2268
+ height: "auto",
2269
+ marginX: 2
2270
+ }
2145
2271
  }
2272
+ },
2273
+ compoundVariants: [],
2274
+ defaultVariants: {
2275
+ orientation: "horizontal"
2146
2276
  }
2147
2277
  });
2148
2278
 
2149
- // src/recipes/shared.ts
2150
- var import_dev31 = require("@pandacss/dev");
2151
- var sharedSlotRecipe = (0, import_dev31.defineSlotRecipe)({
2152
- className: "shared",
2153
- jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
2154
- slots: ["hidden"],
2279
+ // src/recipes/modal.ts
2280
+ var import_dev26 = require("@pandacss/dev");
2281
+ var modalSlotRecipe = (0, import_dev26.defineSlotRecipe)({
2282
+ className: "modal",
2283
+ description: "The styles for the Modal component",
2284
+ jsx: ["MpModal", "mp-modal"],
2285
+ slots: ["root", "rootChild", "body", "contentRoot", "contentChild", "header", "footer", "body", "overlay", "closeButton"],
2155
2286
  base: {
2156
- hidden: {
2157
- clip: "rect(0px, 0px, 0px, 0px)",
2158
- height: "1px",
2159
- width: "1px",
2160
- overflow: "hidden",
2161
- whiteSpace: "nowrap",
2162
- position: "absolute"
2287
+ root: {
2288
+ position: "relative",
2289
+ zIndex: "modal"
2290
+ },
2291
+ rootChild: {
2292
+ position: "fixed",
2293
+ top: 0,
2294
+ right: 0,
2295
+ bottom: 0,
2296
+ left: 0
2297
+ },
2298
+ body: {
2299
+ p: 4,
2300
+ flex: 1
2301
+ },
2302
+ contentRoot: {
2303
+ pos: "fixed",
2304
+ left: "0",
2305
+ w: "100%",
2306
+ h: "100%",
2307
+ zIndex: "modal"
2308
+ },
2309
+ contentChild: {
2310
+ outline: 0,
2311
+ width: "100%",
2312
+ position: "relative",
2313
+ display: "flex",
2314
+ flexDir: "column",
2315
+ zIndex: "modal",
2316
+ fontFamily: "body",
2317
+ borderColor: "gray.100",
2318
+ bg: "white",
2319
+ marginInline: "auto"
2320
+ },
2321
+ header: {
2322
+ px: 4,
2323
+ py: 3,
2324
+ position: "relative",
2325
+ fontSize: "md",
2326
+ fontWeight: "semiBold",
2327
+ bg: "background",
2328
+ borderTopLeftRadius: "md",
2329
+ borderTopRightRadius: "md",
2330
+ borderBottom: "solid 1px",
2331
+ borderBottomColor: "gray.100"
2332
+ },
2333
+ closeButton: {
2334
+ position: "absolute",
2335
+ top: "10px",
2336
+ right: "12px",
2337
+ bg: "transparent",
2338
+ borderColor: "transparent"
2339
+ },
2340
+ footer: {
2341
+ display: "flex",
2342
+ pt: 2,
2343
+ px: 4,
2344
+ pb: 4,
2345
+ justifyContent: "flex-end"
2346
+ },
2347
+ overlay: {
2348
+ position: "fixed",
2349
+ bg: "overlay",
2350
+ left: "0",
2351
+ top: "0",
2352
+ w: "100vw",
2353
+ h: "100vh",
2354
+ zIndex: "overlay"
2355
+ }
2356
+ },
2357
+ variants: {
2358
+ full: {
2359
+ true: {
2360
+ contentRoot: {
2361
+ top: "0"
2362
+ },
2363
+ contentChild: {
2364
+ height: "100vh",
2365
+ border: "none",
2366
+ borderRadius: "none"
2367
+ }
2368
+ },
2369
+ false: {
2370
+ contentRoot: {
2371
+ top: "3.75rem"
2372
+ },
2373
+ contentChild: {
2374
+ height: "100%",
2375
+ borderWidth: "1px",
2376
+ borderRadius: "md"
2377
+ }
2378
+ }
2163
2379
  }
2380
+ },
2381
+ defaultVariants: {
2382
+ full: false
2164
2383
  }
2165
2384
  });
2166
2385
 
2167
- // src/recipes/toggle.ts
2168
- var import_dev32 = require("@pandacss/dev");
2169
- var toggleSlotRecipe = (0, import_dev32.defineSlotRecipe)({
2170
- className: "toggle",
2171
- jsx: ["MpToggle", "mp-toggle"],
2172
- slots: ["root", "control", "label"],
2386
+ // src/recipes/upload.ts
2387
+ var import_dev27 = require("@pandacss/dev");
2388
+ var uploadSlotRecipe = (0, import_dev27.defineSlotRecipe)({
2389
+ className: "upload",
2390
+ jsx: ["MpUpload", "mp-upload"],
2391
+ slots: ["root", "resetButton"],
2173
2392
  base: {
2174
2393
  root: {
2175
2394
  position: "relative",
2176
- display: "inline-flex",
2395
+ width: "full",
2396
+ display: "flex",
2177
2397
  alignItems: "center",
2178
- justifyContent: "center",
2179
2398
  gap: "3",
2180
- cursor: "pointer",
2399
+ py: "1",
2400
+ pl: "1",
2401
+ pr: "3",
2402
+ borderWidth: "1px",
2403
+ borderColor: "gray.100",
2404
+ borderRadius: "md",
2405
+ backgroundColor: "white",
2181
2406
  outline: "none",
2182
- "&[data-has-description=true]": {
2183
- alignItems: "flex-start",
2184
- "& .mp-toggle__control": {
2185
- marginTop: "1"
2186
- }
2187
- },
2188
- "& .mp-shared__hidden": {
2189
- "&:focus + .mp-toggle__control": {
2190
- borderColor: "blue.400",
2191
- boxShadow: "focus"
2407
+ transition: "all 250ms",
2408
+ _hover: {
2409
+ borderColor: "gray.400",
2410
+ "& .mp-upload__resetButton": {
2411
+ display: "block"
2192
2412
  }
2193
2413
  },
2194
- _hover: {
2195
- "& .mp-toggle__control": {
2196
- borderColor: "gray.400",
2197
- background: "gray.400"
2414
+ _focusVisible: {
2415
+ boxShadow: "focus",
2416
+ borderColor: "blue.400",
2417
+ _hover: {
2418
+ borderColor: "blue.400"
2198
2419
  }
2199
2420
  },
2200
2421
  _disabled: {
2201
2422
  cursor: "not-allowed",
2202
- "& .mp-toggle__control": {
2203
- borderColor: "gray.100 !important",
2204
- background: "gray.50 !important",
2205
- boxShadow: "none !important",
2206
- "& div": {
2207
- background: "gray.100"
2208
- }
2209
- }
2423
+ background: "gray.50"
2210
2424
  },
2211
2425
  _invalid: {
2212
- "& .mp-toggle__control": {
2213
- borderColor: "red.400",
2214
- background: "red.400"
2215
- }
2216
- },
2217
- _checked: {
2218
- "& .mp-toggle__control": {
2219
- borderColor: "blue.400",
2220
- background: "blue.400",
2221
- "& div": {
2222
- transform: "translateX(var(--mp-sizes-3))"
2223
- }
2224
- },
2426
+ borderColor: "red.400",
2225
2427
  _hover: {
2226
- "& .mp-toggle__control": {
2227
- borderColor: "blue.400",
2228
- background: "blue.400"
2229
- }
2428
+ borderColor: "red.400"
2230
2429
  }
2231
2430
  }
2232
2431
  },
2233
- control: {
2234
- flex: "none",
2432
+ resetButton: {
2433
+ display: "none",
2434
+ cursor: "pointer",
2435
+ position: "absolute",
2436
+ top: "2",
2437
+ right: "3"
2438
+ }
2439
+ }
2440
+ });
2441
+ var uploadListSlotRecipe = (0, import_dev27.defineSlotRecipe)({
2442
+ className: "upload-list",
2443
+ jsx: ["MpUploadList", "mp-upload-list"],
2444
+ slots: ["root", "titleWrapper", "actionWrapper"],
2445
+ base: {
2446
+ root: {
2235
2447
  position: "relative",
2236
- display: "inline-flex",
2448
+ width: "full",
2449
+ display: "flex",
2237
2450
  alignItems: "center",
2238
- justifyContent: "flex-start",
2239
- width: "7",
2240
- height: "4",
2241
- borderWidth: "1px",
2242
- borderColor: "gray.100",
2243
- borderRadius: "lg",
2244
- background: "gray.100",
2245
- "& div": {
2246
- transitionDuration: "250ms",
2247
- transitionProperty: "transform",
2248
- transitionTimingFunction: "linear",
2249
- transform: "translateX(2px)",
2250
- width: "3",
2251
- height: "3",
2252
- background: "white",
2253
- borderRadius: "full"
2451
+ justifyContent: "start",
2452
+ gap: "3",
2453
+ py: "2",
2454
+ px: "1",
2455
+ borderRadius: "md",
2456
+ backgroundColor: "white",
2457
+ transition: "all 250ms",
2458
+ _hover: {
2459
+ backgroundColor: "background"
2254
2460
  }
2255
2461
  },
2256
- label: {
2257
- background: "transparent"
2462
+ titleWrapper: {
2463
+ display: "flex",
2464
+ flexDirection: "column",
2465
+ minWidth: "1px"
2466
+ },
2467
+ actionWrapper: {
2468
+ display: "flex",
2469
+ flexDirection: "row",
2470
+ gap: "0.5",
2471
+ ml: "auto",
2472
+ "& > button": {
2473
+ // Remove hover style for Button Icon
2474
+ _hover: {
2475
+ background: "transparent!important",
2476
+ borderColor: "transparent!important"
2477
+ }
2478
+ }
2258
2479
  }
2259
2480
  }
2260
2481
  });
2261
2482
 
2262
- // src/recipes/table.ts
2263
- var import_dev33 = require("@pandacss/dev");
2264
- var tableRecipe = (0, import_dev33.defineRecipe)({
2265
- className: "table",
2266
- jsx: ["MpTable", "mp-table"],
2483
+ // src/recipes/dropzone.ts
2484
+ var import_dev28 = require("@pandacss/dev");
2485
+ var dropzoneSlotRecipe = (0, import_dev28.defineSlotRecipe)({
2486
+ className: "dropzone",
2487
+ jsx: ["MpDropzone", "mp-dropzone"],
2488
+ slots: [
2489
+ "root",
2490
+ "wrapper",
2491
+ "box",
2492
+ "logoBox",
2493
+ "productBox",
2494
+ "avatarBox",
2495
+ "overlayWrapper",
2496
+ "overlay",
2497
+ "preview",
2498
+ "overlayPreview",
2499
+ "clearButton"
2500
+ ],
2267
2501
  base: {
2268
- position: "relative",
2269
- width: "full",
2270
- display: "table",
2271
- borderCollapse: "collapse",
2272
- borderSpacing: "0px",
2273
- whiteSpace: "nowrap",
2274
- "&[data-table-hoverable=true]": {
2275
- "& tr": {
2276
- _hover: {
2277
- "& > td": {
2278
- backgroundColor: "gray.50"
2279
- }
2280
- }
2281
- }
2502
+ root: {
2503
+ position: "relative",
2504
+ width: "full",
2505
+ height: "full"
2282
2506
  },
2283
- thead: {
2507
+ wrapper: {
2508
+ position: "relative",
2509
+ display: "flex",
2510
+ flexDirection: "column",
2511
+ justifyContent: "center",
2512
+ alignItems: "center",
2284
2513
  width: "full",
2285
- backgroundColor: "gray.25",
2286
- "&[data-table-head-fixed=true]": {
2287
- position: "sticky",
2288
- zIndex: "sticky",
2289
- top: "0",
2290
- boxShadow: "0px 2px var(--mp-colors-gray-100)"
2514
+ height: "inherit",
2515
+ minHeight: "inherit",
2516
+ borderWidth: "1px",
2517
+ borderColor: "gray.100",
2518
+ borderRadius: "md",
2519
+ borderStyle: "dashed",
2520
+ background: "white",
2521
+ outline: "none",
2522
+ transition: "all 250ms",
2523
+ _hover: {
2524
+ borderColor: "gray.400",
2525
+ "& [data-overlay-preview=true]": {
2526
+ display: "flex"
2527
+ }
2528
+ },
2529
+ _focusVisible: {
2530
+ boxShadow: "focus",
2531
+ borderColor: "blue.400",
2532
+ _hover: {
2533
+ borderColor: "blue.400"
2534
+ }
2535
+ },
2536
+ _disabled: {
2537
+ cursor: "not-allowed",
2538
+ background: "gray.50!"
2539
+ },
2540
+ _invalid: {
2541
+ borderColor: "red.400",
2542
+ backgroundColor: "red.50!",
2543
+ _hover: {
2544
+ borderColor: "red.400!"
2545
+ }
2291
2546
  }
2292
2547
  },
2293
- tbody: {
2294
- width: "full"
2548
+ box: {
2549
+ display: "flex",
2550
+ flexDirection: "column",
2551
+ alignItems: "center",
2552
+ justifyContent: "center",
2553
+ gap: "2"
2295
2554
  },
2296
- tr: {
2555
+ logoBox: {
2556
+ display: "flex",
2557
+ alignItems: "center",
2558
+ justifyContent: "center",
2559
+ gap: "2",
2297
2560
  width: "full",
2298
- boxSizing: "border-box",
2299
- whiteSpace: "nowrap"
2561
+ height: "full",
2562
+ borderRadius: "inherit",
2563
+ cursor: "pointer"
2300
2564
  },
2301
- "th, td": {
2302
- cursor: "default",
2303
- paddingLeft: "2",
2304
- paddingRight: "4",
2305
- paddingY: "2",
2306
- height: "12",
2307
- textStyle: "label.md",
2308
- textAlign: "left",
2309
- borderBottom: "sm",
2310
- borderStyle: "solid",
2311
- borderColor: "gray.100",
2312
- transition: "background linear 120ms"
2565
+ productBox: {
2566
+ display: "flex",
2567
+ flexDirection: "column",
2568
+ alignItems: "center",
2569
+ justifyContent: "center",
2570
+ gap: "2",
2571
+ width: "full",
2572
+ height: "full",
2573
+ borderRadius: "inherit",
2574
+ cursor: "pointer"
2313
2575
  },
2314
- th: {
2315
- fontWeight: "semiBold",
2316
- backgroundColor: "gray.25"
2576
+ avatarBox: {
2577
+ display: "flex",
2578
+ alignItems: "center",
2579
+ justifyContent: "center",
2580
+ width: "full",
2581
+ height: "full",
2582
+ borderRadius: "inherit",
2583
+ cursor: "pointer"
2317
2584
  },
2318
- td: {
2319
- fontWeight: "regular",
2320
- backgroundColor: "white"
2585
+ overlayWrapper: {
2586
+ width: "full",
2587
+ height: "inherit",
2588
+ minHeight: "inherit",
2589
+ borderRadius: "inherit"
2321
2590
  },
2322
- "th[data-table-cell-fixed=true], td[data-table-cell-fixed=true]": {
2323
- position: "sticky",
2324
- zIndex: "docked",
2325
- left: "0",
2326
- right: "0"
2327
- }
2328
- }
2329
- });
2330
- var tableContainerRecipe = (0, import_dev33.defineRecipe)({
2331
- className: "table-container",
2332
- jsx: ["MpTableContainer", "mp-table-container"],
2333
- base: {
2334
- position: "relative",
2335
- overflow: "auto",
2336
- "&[data-table-has-left-shadow=true]": {
2337
- _before: {
2338
- boxShadow: "inset 10px 0 8px -8px rgba(5, 5, 5, 0.08)"
2339
- }
2591
+ overlay: {
2592
+ position: "absolute",
2593
+ zIndex: "1",
2594
+ display: "flex",
2595
+ flexDirection: "column",
2596
+ alignItems: "center",
2597
+ justifyContent: "center",
2598
+ gap: "2",
2599
+ width: "full",
2600
+ height: "full",
2601
+ top: "0",
2602
+ right: "0",
2603
+ backdropFilter: "blur(12px)",
2604
+ borderRadius: "md",
2605
+ borderWidth: "1px",
2606
+ borderColor: "blue.400",
2607
+ borderStyle: "dashed"
2340
2608
  },
2341
- "&[data-table-has-right-shadow=true]": {
2342
- _after: {
2343
- boxShadow: "inset -10px 0 8px -8px rgba(5, 5, 5, 0.08)"
2344
- }
2609
+ preview: {
2610
+ display: "flex",
2611
+ flexDirection: "column",
2612
+ alignItems: "center",
2613
+ justifyContent: "center",
2614
+ height: "full",
2615
+ borderRadius: "inherit"
2345
2616
  },
2346
- _before: {
2347
- content: '""',
2617
+ overlayPreview: {
2618
+ display: "none",
2619
+ cursor: "pointer",
2348
2620
  position: "absolute",
2349
- zIndex: "docked",
2350
- boxShadow: "none",
2351
- transition: "box-shadow 300ms",
2352
- insetInlineStart: 0,
2353
- width: "30px",
2354
- top: 0,
2355
- bottom: 0,
2356
- pointerEvents: "none"
2621
+ zIndex: "1",
2622
+ width: "full",
2623
+ height: "full",
2624
+ background: "overlay",
2625
+ backdropFilter: "blur(12px)",
2626
+ borderRadius: "inherit",
2627
+ flexDirection: "column",
2628
+ justifyContent: "center",
2629
+ alignItems: "center",
2630
+ gap: "2"
2357
2631
  },
2358
- _after: {
2359
- content: '""',
2632
+ clearButton: {
2633
+ cursor: "pointer",
2360
2634
  position: "absolute",
2361
- zIndex: "docked",
2362
- boxShadow: "none",
2363
- transition: "box-shadow linear 300ms",
2364
- insetInlineEnd: 0,
2365
- width: "30px",
2366
- top: 0,
2367
- bottom: 0,
2368
- pointerEvents: "none"
2635
+ zIndex: "2",
2636
+ background: "white",
2637
+ border: "2px solid white",
2638
+ borderRadius: "full"
2369
2639
  }
2370
2640
  }
2371
2641
  });
2372
2642
 
2373
- // src/recipes/progress.ts
2374
- var import_dev34 = require("@pandacss/dev");
2375
- var progressSlotRecipe = (0, import_dev34.defineSlotRecipe)({
2376
- className: "progress",
2377
- jsx: ["MpProgress", "mp-progress"],
2378
- slots: ["root", "linear", "circularBase", "circularTrack"],
2643
+ // src/recipes/banner.ts
2644
+ var import_dev29 = require("@pandacss/dev");
2645
+ var bannerSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2646
+ className: "banner",
2647
+ jsx: ["MpBanner", "mp-banner"],
2648
+ slots: ["root", "body"],
2379
2649
  base: {
2380
2650
  root: {
2651
+ display: "flex",
2381
2652
  position: "relative",
2382
- width: "full",
2383
- borderRadius: "100px",
2384
- background: "gray.100",
2385
- transition: "all 250ms linear"
2386
- },
2387
- linear: {
2388
- transition: "all 250ms linear",
2389
- height: "full",
2390
- borderRadius: "100px",
2391
- background: "var(--mp-progress-color)",
2392
- width: "var(--mp-progress-width)"
2393
- },
2394
- circularBase: {
2395
- width: "full",
2396
- height: "full",
2397
- borderRadius: "full",
2398
- background: "conic-gradient(var(--mp-progress-color) var(--mp-progress-width), var(--mp-colors-gray-100) 0deg)"
2653
+ alignItems: "var(--mp-banner--align-items)",
2654
+ borderRadius: "md",
2655
+ paddingY: "var(--mp-banner--padding-y)",
2656
+ paddingX: "var(--mp-banner--padding-x)"
2399
2657
  },
2400
- circularTrack: {
2401
- width: "calc(100% - 6px)",
2402
- height: "calc(100% - 6px)",
2403
- position: "absolute",
2404
- top: "50%",
2405
- left: "50%",
2406
- transform: "translate(-50%, -50%)",
2407
- backgroundColor: "white",
2408
- borderRadius: "full"
2658
+ body: {
2659
+ display: "flex",
2660
+ justifyContent: "space-between",
2661
+ alignItems: "center",
2662
+ width: "full"
2409
2663
  }
2410
2664
  },
2411
2665
  variants: {
2412
- size: {
2413
- md: {
2414
- linear: {
2415
- height: "3"
2416
- }
2417
- },
2418
- sm: {
2419
- linear: {
2420
- height: "2"
2421
- }
2422
- }
2423
- },
2424
2666
  variant: {
2425
- linear: {
2426
- root: {
2427
- borderRadius: "100px"
2428
- }
2667
+ info: {
2668
+ root: { backgroundColor: "blue.50" }
2429
2669
  },
2430
- circular: {
2431
- root: {
2432
- borderRadius: "full",
2433
- width: "22px",
2434
- height: "22px",
2435
- background: "transparent",
2436
- alignSelf: "start"
2437
- }
2670
+ success: {
2671
+ root: { backgroundColor: "green.50" }
2672
+ },
2673
+ danger: {
2674
+ root: { backgroundColor: "red.50" }
2675
+ },
2676
+ warning: {
2677
+ root: { backgroundColor: "orange.50" }
2438
2678
  }
2439
2679
  }
2440
2680
  },
2681
+ compoundVariants: [],
2441
2682
  defaultVariants: {
2442
- variant: "linear",
2443
- size: "md"
2683
+ variant: "info"
2444
2684
  }
2445
2685
  });
2446
-
2447
- // src/recipes/form-control.ts
2448
- var import_dev35 = require("@pandacss/dev");
2449
- var formControlSlotRecipe = (0, import_dev35.defineSlotRecipe)({
2450
- className: "form-control",
2451
- jsx: ["MpFormControl", "mp-form-control"],
2452
- slots: ["root", "label", "required", "helpText", "errorMessage"],
2686
+ var bannerTitleRecipe = (0, import_dev29.defineRecipe)({
2687
+ className: "banner-title",
2688
+ jsx: ["MpBannerTitle", "mp-banner-title"],
2453
2689
  base: {
2454
- root: {},
2455
- label: {
2456
- fontSize: "md",
2457
- fontWeight: "semiBold",
2458
- marginBottom: "1",
2459
- textAlign: "left",
2460
- verticalAlign: "middle",
2461
- display: "flex"
2462
- },
2463
- required: {
2464
- color: "red.400",
2465
- marginLeft: "1"
2466
- },
2467
- helpText: {
2468
- color: "gray.600",
2469
- fontSize: "sm",
2470
- marginTop: "1"
2690
+ fontFamily: "body",
2691
+ fontSize: "md",
2692
+ fontWeight: "semiBold",
2693
+ lineHeight: "md",
2694
+ letterSpacing: "normal",
2695
+ color: "dark",
2696
+ marginTop: "0.5",
2697
+ marginBottom: "1.5"
2698
+ },
2699
+ variants: {},
2700
+ compoundVariants: [],
2701
+ defaultVariants: {}
2702
+ });
2703
+ var bannerDescriptionRecipe = (0, import_dev29.defineRecipe)({
2704
+ className: "banner-description",
2705
+ jsx: ["MpBannerDescription", "mp-banner-description"],
2706
+ base: {
2707
+ fontFamily: "body",
2708
+ fontSize: "md",
2709
+ fontWeight: "regular",
2710
+ lineHeight: "md",
2711
+ letterSpacing: "normal",
2712
+ color: "dark"
2713
+ },
2714
+ variants: {},
2715
+ compoundVariants: [],
2716
+ defaultVariants: {}
2717
+ });
2718
+ var bannerIconSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2719
+ className: "banner-icon",
2720
+ jsx: ["MpBannerIcon", "mp-banner-icon"],
2721
+ slots: ["root", "custom"],
2722
+ base: {
2723
+ root: {
2724
+ marginRight: "3"
2471
2725
  },
2472
- errorMessage: {
2473
- color: "red.400",
2474
- fontSize: "sm",
2475
- marginTop: "1",
2476
- textAlign: "left",
2726
+ custom: {
2727
+ flexShrink: "0",
2728
+ backfaceVisibility: "hidden",
2729
+ width: "6",
2730
+ height: "6",
2731
+ display: "inline-block",
2477
2732
  verticalAlign: "middle",
2478
- display: "flex"
2733
+ marginRight: "3",
2734
+ color: "var(--mp-banner-icon--color)"
2735
+ }
2736
+ },
2737
+ variants: {},
2738
+ compoundVariants: [],
2739
+ defaultVariants: {}
2740
+ });
2741
+ var bannerLinkRecipe = (0, import_dev29.defineRecipe)({
2742
+ className: "banner-link",
2743
+ jsx: ["MpBannerLink", "mp-banner-link"],
2744
+ base: {
2745
+ display: "flex",
2746
+ gap: "4",
2747
+ marginBottom: "var(--mp-banner-link--margin-bottom)",
2748
+ marginTop: "var(--mp-banner-link--margin-top)"
2749
+ },
2750
+ variants: {},
2751
+ compoundVariants: [],
2752
+ defaultVariants: {}
2753
+ });
2754
+ var bannerCloseButtonRecipe = (0, import_dev29.defineRecipe)({
2755
+ className: "banner-close-button",
2756
+ jsx: ["MpBannerCloseButton", "mp-banner-close-button"],
2757
+ base: {
2758
+ position: "absolute",
2759
+ top: "var(--mp-banner-close-button--top)",
2760
+ right: "var(--mp-banner-close-button--right)",
2761
+ display: "inline-flex",
2762
+ justifyContent: "center",
2763
+ alignItems: "center",
2764
+ width: "6",
2765
+ height: "6",
2766
+ cursor: "pointer"
2767
+ },
2768
+ variants: {},
2769
+ compoundVariants: [],
2770
+ defaultVariants: {}
2771
+ });
2772
+
2773
+ // src/recipes/index.ts
2774
+ var recipes = {
2775
+ buttonRecipe,
2776
+ buttonGroupRecipe,
2777
+ textRecipe,
2778
+ iconRecipe,
2779
+ spinnerRecipe,
2780
+ popoverContentRecipe,
2781
+ popoverListRecipe,
2782
+ popoverListItemRecipe,
2783
+ badgeRecipe,
2784
+ textareaRecipe,
2785
+ tooltipRecipe,
2786
+ tabListRecipe,
2787
+ tabRecipe,
2788
+ selectedBorderRecipe,
2789
+ tableRecipe,
2790
+ tableContainerRecipe,
2791
+ dividerRecipe,
2792
+ bannerTitleRecipe,
2793
+ bannerDescriptionRecipe,
2794
+ bannerLinkRecipe,
2795
+ bannerCloseButtonRecipe
2796
+ };
2797
+ var slotRecipes = {
2798
+ accordion,
2799
+ checkboxSlotRecipe,
2800
+ radioSlotRecipe,
2801
+ sharedSlotRecipe,
2802
+ progressSlotRecipe,
2803
+ toggleSlotRecipe,
2804
+ tagSlotRecipe,
2805
+ inputSlotRecipe,
2806
+ inputGroupSlotRecipe,
2807
+ inputAddonSlotRecipe,
2808
+ avatarSlotRecipe,
2809
+ avatarGroupSlotRecipe,
2810
+ selectSlotRecipe,
2811
+ formControlSlotRecipe,
2812
+ inputTagSlotRecipe,
2813
+ modalSlotRecipe,
2814
+ uploadSlotRecipe,
2815
+ uploadListSlotRecipe,
2816
+ dropzoneSlotRecipe,
2817
+ bannerSlotRecipe,
2818
+ bannerIconSlotRecipe
2819
+ };
2820
+
2821
+ // src/text-styles.ts
2822
+ var import_dev30 = require("@pandacss/dev");
2823
+ var textStyles = (0, import_dev30.defineTextStyles)({
2824
+ overline: { value: { fontSize: "xs", lineHeight: "xs" } },
2825
+ body: {
2826
+ sm: { value: { fontSize: "sm", lineHeight: "2xl" } },
2827
+ md: { value: { fontSize: "md", lineHeight: "3xl" } }
2828
+ },
2829
+ label: {
2830
+ sm: { value: { fontSize: "sm", lineHeight: "sm" } },
2831
+ md: { value: { fontSize: "md", lineHeight: "lg" } }
2832
+ },
2833
+ h3: {
2834
+ value: {
2835
+ fontSize: "lg",
2836
+ lineHeight: "xl",
2837
+ fontWeight: "semiBold !important"
2479
2838
  }
2480
2839
  },
2481
- variants: {},
2482
- compoundVariants: [],
2483
- defaultVariants: {}
2840
+ h2: {
2841
+ value: {
2842
+ fontSize: "xl",
2843
+ lineHeight: "md",
2844
+ fontWeight: "semiBold !important"
2845
+ }
2846
+ },
2847
+ h1: {
2848
+ value: {
2849
+ fontSize: "2xl",
2850
+ lineHeight: "sm",
2851
+ fontWeight: "semiBold !important"
2852
+ }
2853
+ }
2484
2854
  });
2485
2855
 
2486
- // src/recipes/input-tag.ts
2487
- var import_dev36 = require("@pandacss/dev");
2488
- var inputTagSlotRecipe = (0, import_dev36.defineSlotRecipe)({
2489
- className: "input-tag",
2490
- jsx: ["MpInputTag", "mp-input-tag"],
2491
- slots: [
2492
- "root",
2493
- "trigger",
2494
- "input",
2495
- "content",
2496
- "resetButton",
2497
- "dropdownButton",
2498
- "addButton",
2499
- "loading",
2500
- "empty",
2501
- "suggestionWrapper",
2502
- "suggestionLoading"
2503
- ],
2504
- base: {
2505
- root: {
2506
- position: "relative",
2507
- width: "full"
2508
- },
2509
- trigger: {
2510
- overflowY: "auto",
2511
- position: "relative",
2512
- display: "flex",
2513
- alignItems: "center",
2514
- flexWrap: "wrap",
2515
- gap: "2",
2516
- borderWidth: "1px",
2517
- borderColor: "gray.100",
2518
- borderRadius: "md",
2519
- paddingTop: "2",
2520
- paddingBottom: "2",
2521
- paddingLeft: "3",
2522
- paddingRight: "8",
2523
- backgroundColor: "white",
2524
- transition: "all 250ms",
2525
- _hover: {
2526
- borderColor: "gray.400"
2527
- },
2528
- _focusVisible: {
2529
- boxShadow: "focus",
2530
- borderColor: "blue.400",
2531
- _hover: {
2532
- borderColor: "blue.400"
2533
- }
2534
- },
2535
- _disabled: {
2536
- cursor: "not-allowed",
2537
- background: "gray.50"
2538
- },
2539
- _invalid: {
2540
- borderColor: "red.400",
2541
- _hover: {
2542
- borderColor: "red.400"
2543
- }
2544
- },
2545
- _hasIcon: {
2546
- paddingRight: "52px"
2547
- }
2548
- },
2549
- input: {
2550
- padding: "0 !important",
2551
- margin: "0 !important"
2552
- },
2553
- content: {
2554
- maxHeight: "300px",
2555
- overflowY: "auto"
2556
- },
2557
- resetButton: {
2558
- cursor: "pointer",
2559
- position: "absolute",
2560
- top: "2"
2561
- },
2562
- dropdownButton: {
2563
- cursor: "pointer",
2564
- position: "absolute",
2565
- top: "2",
2566
- right: "3"
2567
- },
2568
- addButton: {
2569
- cursor: "pointer",
2570
- width: "full",
2571
- px: "3",
2572
- py: "2",
2573
- wordBreak: "break-all",
2574
- textAlign: "center"
2575
- },
2576
- loading: {
2577
- position: "absolute",
2578
- top: "2",
2579
- right: "3"
2856
+ // src/tokens/index.ts
2857
+ var import_dev41 = require("@pandacss/dev");
2858
+
2859
+ // src/tokens/borders.ts
2860
+ var import_dev31 = require("@pandacss/dev");
2861
+ var borders = import_dev31.defineTokens.borders({
2862
+ none: { value: "none" },
2863
+ sm: { value: "1px" },
2864
+ md: { value: "1.5px" },
2865
+ lg: { value: "2px" }
2866
+ });
2867
+
2868
+ // src/tokens/colors.ts
2869
+ var import_dev32 = require("@pandacss/dev");
2870
+ var colors = import_dev32.defineTokens.colors({
2871
+ currentcolor: {
2872
+ value: "currentcolor",
2873
+ description: "Need to add this for Icon usage"
2874
+ },
2875
+ dark: { value: "#232933", description: "Default or primary text color" },
2876
+ white: {
2877
+ value: "#FFFFFF",
2878
+ description: "Background color in components such as Card, Modal, and Popover"
2879
+ },
2880
+ background: { value: "#F1F5F9", description: "For use as background page" },
2881
+ overlay: {
2882
+ value: "rgba(22, 26, 32, 0.8)",
2883
+ description: "For use as overlay"
2884
+ },
2885
+ brand: {
2886
+ capital: { value: "#2F5573", description: "Mekari Capital" },
2887
+ esign: { value: "#00C853", description: "Mekari e-Sign" },
2888
+ expense: { value: "#183883", description: "Mekari Expense" },
2889
+ flex: { value: "#7C4DFF", description: "Mekari Flex" },
2890
+ jurnal: { value: "#40C3FF", description: "Mekari Jurnal" },
2891
+ klikpajak: { value: "#FF9100", description: "Mekari Klikpajak" },
2892
+ mekari: { value: "#651FFF", description: "Mekari" },
2893
+ qontak: { value: "#2979FF", description: "Mekari Qontak" },
2894
+ talenta: { value: "#F22929", description: "Mekari Talenta" },
2895
+ university: { value: "#448AFF", description: "Mekari University" }
2896
+ },
2897
+ whiteAlpha: {
2898
+ 50: { value: "rgba(255, 255, 255, 0.04)" },
2899
+ 100: { value: "rgba(255, 255, 255, 0.06)" },
2900
+ 200: { value: "rgba(255, 255, 255, 0.08)" },
2901
+ 300: { value: "rgba(255, 255, 255, 0.16)" },
2902
+ 400: { value: "rgba(255, 255, 255, 0.24)" },
2903
+ 500: { value: "rgba(255, 255, 255, 0.36)" },
2904
+ 600: { value: "rgba(255, 255, 255, 0.48)" },
2905
+ 700: { value: "rgba(255, 255, 255, 0.64)" },
2906
+ 800: { value: "rgba(255, 255, 255, 0.80)" },
2907
+ 900: { value: "rgba(255, 255, 255, 0.92)" }
2908
+ },
2909
+ blackAplpha: {
2910
+ 50: { value: "rgba(0, 0, 0, 0.04)" },
2911
+ 100: { value: "rgba(0, 0, 0, 0.06)" },
2912
+ 200: { value: "rgba(0, 0, 0, 0.08)" },
2913
+ 300: { value: "rgba(0, 0, 0, 0.16)" },
2914
+ 400: { value: "rgba(0, 0, 0, 0.24)" },
2915
+ 500: { value: "rgba(0, 0, 0, 0.36)" },
2916
+ 600: { value: "rgba(0, 0, 0, 0.48)" },
2917
+ 700: { value: "rgba(0, 0, 0, 0.64)" },
2918
+ 800: { value: "rgba(0, 0, 0, 0.80)" },
2919
+ 900: { value: "rgba(0, 0, 0, 0.92)" }
2920
+ },
2921
+ gray: {
2922
+ 25: {
2923
+ value: "#F8F9FB",
2924
+ description: "Background color in table header component"
2580
2925
  },
2581
- empty: {
2582
- px: "3",
2583
- py: "2",
2584
- width: "full",
2585
- textAlign: "left"
2926
+ 50: {
2927
+ value: "#EDF0F2",
2928
+ description: "Disabled background color in components such as Input and Select backgrounds"
2586
2929
  },
2587
- suggestionWrapper: {
2588
- display: "flex",
2589
- flexDirection: "column",
2590
- width: "100%"
2930
+ 100: { value: "#D0D6DD", description: "Default stroke color or divider" },
2931
+ 400: {
2932
+ value: "#8B95A5",
2933
+ description: "Disabled and placeholder text color, icon or in components such as hover state Input, Select and stroke in Popover"
2591
2934
  },
2592
- suggestionLoading: {
2593
- display: "flex",
2594
- justifyContent: "flex-start",
2595
- gap: "3",
2596
- width: "full",
2597
- height: "9",
2598
- py: "2",
2599
- px: "3"
2935
+ 600: {
2936
+ value: "#626B79",
2937
+ description: "Description text color and default color for outline icon"
2600
2938
  }
2939
+ },
2940
+ blue: {
2941
+ 50: { value: "#EAECFB" },
2942
+ 100: { value: "#D5DEFF" },
2943
+ 400: { value: "#4B61DD" },
2944
+ 500: { value: "#1C44D5" },
2945
+ 700: { value: "#0031BE" }
2946
+ },
2947
+ red: {
2948
+ 50: { value: "#FDECEE" },
2949
+ 400: { value: "#DA473F" },
2950
+ 500: { value: "#C83E39" },
2951
+ 700: { value: "#AB3129" }
2952
+ },
2953
+ green: {
2954
+ 50: { value: "#E8F5EB" },
2955
+ 400: { value: "#68BE79" },
2956
+ 500: { value: "#4FB262" },
2957
+ 700: { value: "#3C914D" }
2958
+ },
2959
+ orange: {
2960
+ 50: { value: "#FBF3DD" },
2961
+ 400: { value: "#E0AB00" },
2962
+ 500: { value: "#DE9400" },
2963
+ 700: { value: "#DB8000" }
2964
+ },
2965
+ sky: {
2966
+ 100: { value: "#60A5FA" },
2967
+ 400: { value: "#3B82F6" }
2968
+ },
2969
+ teal: {
2970
+ 100: { value: "#2DD4BF" },
2971
+ 400: { value: "#14B8A6" }
2972
+ },
2973
+ violet: {
2974
+ 100: { value: "#A78BFA" },
2975
+ 400: { value: "#8B5CF6" }
2976
+ },
2977
+ amber: {
2978
+ 100: { value: "#FBBF24" },
2979
+ 400: { value: "#F59E0B" }
2980
+ },
2981
+ rose: {
2982
+ 100: { value: "#F87171" },
2983
+ 400: { value: "#EF4444" }
2984
+ },
2985
+ stone: {
2986
+ 100: { value: "#A1A1AA" },
2987
+ 400: { value: "#71717A" }
2988
+ },
2989
+ lime: {
2990
+ 100: { value: "#A3E635" },
2991
+ 400: { value: "#84CC16" }
2992
+ },
2993
+ pink: {
2994
+ 100: { value: "#F472B6" },
2995
+ 400: { value: "#EC4899" }
2996
+ },
2997
+ apricot: {
2998
+ 100: { value: "#FB923C" },
2999
+ 400: { value: "#F97316" }
3000
+ },
3001
+ aqua: {
3002
+ 100: { value: "#22D3EE" },
3003
+ 400: { value: "#06B6D4" }
3004
+ },
3005
+ leaf: {
3006
+ 100: { value: "#4ADE80" },
3007
+ 400: { value: "#22C55E" }
3008
+ },
3009
+ fuchsia: {
3010
+ 100: { value: "#E879F9" },
3011
+ 400: { value: "#D946EF" }
3012
+ },
3013
+ ice: {
3014
+ 50: { value: "#E0EEFF" },
3015
+ 100: { value: "#B4D3F2" }
3016
+ },
3017
+ ash: {
3018
+ 100: { value: "#E7EDF5" }
2601
3019
  }
2602
3020
  });
2603
3021
 
2604
- // src/recipes/divider.ts
2605
- var import_dev37 = require("@pandacss/dev");
2606
- var dividerRecipe = (0, import_dev37.defineRecipe)({
2607
- className: "divider",
2608
- jsx: ["MpDivider", "mp-divider"],
2609
- base: {
2610
- border: 0,
2611
- opacity: 0.6,
2612
- color: "rgb(208, 214, 221)"
3022
+ // src/tokens/durations.ts
3023
+ var import_dev33 = require("@pandacss/dev");
3024
+ var durations = import_dev33.defineTokens.durations({
3025
+ slow: { value: "100ms" },
3026
+ normal: { value: "250ms" },
3027
+ fast: { value: "300ms" }
3028
+ });
3029
+
3030
+ // src/tokens/opacity.ts
3031
+ var import_dev34 = require("@pandacss/dev");
3032
+ var opacity = import_dev34.defineTokens.opacity({
3033
+ 0: { value: 0 },
3034
+ 40: { value: 0.4 },
3035
+ 60: { value: 0.6 },
3036
+ 100: { value: 1 }
3037
+ });
3038
+
3039
+ // src/tokens/radii.ts
3040
+ var import_dev35 = require("@pandacss/dev");
3041
+ var radii = import_dev35.defineTokens.radii({
3042
+ none: { value: "0" },
3043
+ xs: { value: "0.125rem", description: "2px" },
3044
+ sm: { value: "0.25rem", description: "4px" },
3045
+ md: { value: "0.375rem", description: "6px" },
3046
+ lg: { value: "0.5rem", description: "8px" },
3047
+ xl: { value: "0.75rem", description: "12px" },
3048
+ full: { value: "50%" }
3049
+ });
3050
+
3051
+ // src/tokens/shadows.ts
3052
+ var import_dev36 = require("@pandacss/dev");
3053
+ var shadows = import_dev36.defineTokens.shadows({
3054
+ xs: {
3055
+ value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
2613
3056
  },
2614
- variants: {
2615
- orientation: {
2616
- horizontal: {
2617
- borderBottom: "0.0625rem solid",
2618
- height: "auto",
2619
- marginY: 2
2620
- },
2621
- vertical: {
2622
- borderLeft: "0.0625rem solid",
2623
- height: "auto",
2624
- marginX: 2
2625
- }
2626
- }
3057
+ sm: {
3058
+ value: ["0px 4px 6px -2px rgba(0, 0, 0, 0.05)", "0px 10px 15px -3px rgba(0, 0, 0, 0.10)"]
2627
3059
  },
2628
- compoundVariants: [],
2629
- defaultVariants: {
2630
- orientation: "horizontal"
3060
+ md: {
3061
+ value: ["0px 10px 10px -5px rgba(0, 0, 0, 0.04)", "0px 20px 25px -5px rgba(0, 0, 0, 0.10)"]
3062
+ },
3063
+ lg: {
3064
+ value: ["0px 6px 16px 0px rgba(0, 0, 0, 0.08)", "0px 9px 28px 8px rgba(0, 0, 0, 0.05)"]
3065
+ },
3066
+ focus: {
3067
+ value: "0 0 0 3px rgba(224, 238, 255, 1)"
3068
+ },
3069
+ xl: {
3070
+ value: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)"
3071
+ },
3072
+ "2xl": {
3073
+ value: "0 25px 50px -12px rgba(0, 0, 0, 0.25)"
3074
+ },
3075
+ outline: {
3076
+ value: "0 0 0 3px #E0EEFF"
3077
+ },
3078
+ "outline-tab": {
3079
+ value: "0 0 0 2px #E0EEFF"
3080
+ },
3081
+ outer: {
3082
+ value: "0 0 0 3px rgba(224, 238, 255, 1)"
3083
+ },
3084
+ inner: {
3085
+ value: "inset 0 2px 4px 0 rgba( 0, 0, 0, 0.06)"
3086
+ },
3087
+ none: {
3088
+ value: "none"
2631
3089
  }
2632
3090
  });
2633
3091
 
2634
- // src/recipes/index.ts
2635
- var recipes = {
2636
- buttonRecipe,
2637
- buttonGroupRecipe,
2638
- textRecipe,
2639
- iconRecipe,
2640
- spinnerRecipe,
2641
- popoverContentRecipe,
2642
- popoverListRecipe,
2643
- popoverListItemRecipe,
2644
- badgeRecipe,
2645
- textareaRecipe,
2646
- tooltipRecipe,
2647
- tabListRecipe,
2648
- tabRecipe,
2649
- selectedBorderRecipe,
2650
- tableRecipe,
2651
- tableContainerRecipe,
2652
- dividerRecipe
2653
- };
2654
- var slotRecipes = {
2655
- accordion,
2656
- checkboxSlotRecipe,
2657
- radioSlotRecipe,
2658
- sharedSlotRecipe,
2659
- progressSlotRecipe,
2660
- toggleSlotRecipe,
2661
- tagSlotRecipe,
2662
- inputSlotRecipe,
2663
- inputGroupSlotRecipe,
2664
- inputAddonSlotRecipe,
2665
- avatarSlotRecipe,
2666
- avatarGroupSlotRecipe,
2667
- selectSlotRecipe,
2668
- formControlSlotRecipe,
2669
- inputTagSlotRecipe
2670
- };
3092
+ // src/tokens/sizes.ts
3093
+ var import_dev37 = require("@pandacss/dev");
3094
+ var sizes = import_dev37.defineTokens.sizes({
3095
+ 0: { value: "0", description: "0px" },
3096
+ 0.25: { value: "0.0625rem", description: "1px" },
3097
+ 0.5: { value: "0.125rem", description: "2px" },
3098
+ 1: { value: "0.25rem", description: "4px" },
3099
+ 2: { value: "0.5rem", description: "8px" },
3100
+ 2.5: { value: "0.625rem", description: "10px" },
3101
+ 3: { value: "0.75rem", description: "12px" },
3102
+ 4: { value: "1rem", description: "16px" },
3103
+ 5: { value: "1.25rem", description: "20px" },
3104
+ 6: { value: "1.5rem", description: "24px" },
3105
+ 7: { value: "1.75rem", description: "28px" },
3106
+ 7.5: { value: "1.875rem", description: "30px" },
3107
+ 8: { value: "2rem", description: "32px" },
3108
+ 9: { value: "2.25rem", description: "36px" },
3109
+ 9.5: { value: "2.375rem", description: "38px" },
3110
+ 10: { value: "2.5rem", description: "40px" },
3111
+ 11: { value: "2.75rem", description: "44px" },
3112
+ 12: { value: "3rem", description: "48px" },
3113
+ 16: { value: "4rem", description: "64px" },
3114
+ 20: { value: "5rem", description: "80px" },
3115
+ 22: { value: "5.5rem", description: "96px" },
3116
+ 56: { value: "14rem", description: "224px" },
3117
+ 65: { value: "17.5rem", description: "280px" },
3118
+ full: { value: "100%" },
3119
+ sm: { value: "24rem" }
3120
+ });
2671
3121
 
2672
- // src/breakpoints.ts
2673
- var breakpoints = {
2674
- sm: "22.5em",
2675
- md: "48em",
2676
- lg: "64em",
2677
- xl: "80em"
2678
- };
3122
+ // src/tokens/spacing.ts
3123
+ var import_dev38 = require("@pandacss/dev");
3124
+ var spacing = import_dev38.defineTokens.spacing({
3125
+ 0: { value: "0", description: "0px" },
3126
+ 0.5: { value: "0.125rem", description: "2px" },
3127
+ 1: { value: "0.25rem", description: "4px" },
3128
+ 1.5: { value: "0.375rem", description: "6px" },
3129
+ 2: { value: "0.5rem", description: "8px" },
3130
+ 3: { value: "0.75rem", description: "12px" },
3131
+ 4: { value: "1rem", description: "16px" },
3132
+ 5: { value: "1.3rem", description: "20px" },
3133
+ 6: { value: "1.5rem", description: "24px" },
3134
+ 8: { value: "2rem", description: "32px" },
3135
+ 12: { value: "3rem", description: "48px" },
3136
+ 16: { value: "4rem", description: "64px" },
3137
+ 20: { value: "5rem", description: "80px" },
3138
+ 24: { value: "6rem", description: "96px" },
3139
+ 32: { value: "8rem", description: "128px" },
3140
+ 40: { value: "10rem", description: "160px" },
3141
+ 64: { value: "16rem", description: "256px" }
3142
+ });
3143
+
3144
+ // src/tokens/z-index.ts
3145
+ var import_dev39 = require("@pandacss/dev");
3146
+ var zIndex = import_dev39.defineTokens.zIndex({
3147
+ hide: { value: -1 },
3148
+ base: { value: 0 },
3149
+ docked: { value: 10 },
3150
+ sticky: { value: 1100 },
3151
+ overlay: { value: 1300 },
3152
+ modal: { value: 1400 },
3153
+ popover: { value: 1500 },
3154
+ tooltip: { value: 1800 }
3155
+ });
3156
+
3157
+ // src/tokens/typography.ts
3158
+ var import_dev40 = require("@pandacss/dev");
3159
+ var fonts = import_dev40.defineTokens.fonts({
3160
+ body: {
3161
+ value: '"inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
3162
+ },
3163
+ mono: {
3164
+ value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
3165
+ }
3166
+ });
3167
+ var fontSizes = import_dev40.defineTokens.fontSizes({
3168
+ xs: { value: "0.625rem", description: "10px" },
3169
+ sm: { value: "0.75rem", description: "12px" },
3170
+ md: { value: "0.875rem", description: "14px" },
3171
+ lg: { value: "1rem", description: "16px" },
3172
+ xl: { value: "1.25rem", description: "20px" },
3173
+ "2xl": { value: "1.5rem", description: "24px" }
3174
+ });
3175
+ var fontWeights = import_dev40.defineTokens.fontWeights({
3176
+ regular: { value: "400" },
3177
+ semiBold: { value: "600" },
3178
+ bold: { value: "800" }
3179
+ });
3180
+ var lineHeights = import_dev40.defineTokens.lineHeights({
3181
+ xs: { value: 1.2, description: "12px/10px" },
3182
+ sm: { value: 1.34, description: "16px/12px or 32px/24px" },
3183
+ md: { value: 1.4, description: "28px/20px" },
3184
+ lg: { value: 1.429, description: "20px/14px" },
3185
+ xl: { value: 1.5, description: "24px/16px" },
3186
+ "2xl": { value: 1.67, description: "20px/12px" },
3187
+ "3xl": { value: 1.71, description: "24px/14px" }
3188
+ });
3189
+ var letterSpacings = import_dev40.defineTokens.letterSpacings({
3190
+ tighter: { value: "-0.05em" },
3191
+ tight: { value: "-0.025em" },
3192
+ normal: { value: "0" },
3193
+ wide: { value: "0.025em" },
3194
+ wider: { value: "0.05em" },
3195
+ widest: { value: "0.1em" }
3196
+ });
3197
+
3198
+ // src/tokens/index.ts
3199
+ var tokens = (0, import_dev41.defineTokens)({
3200
+ borders,
3201
+ colors,
3202
+ durations,
3203
+ fonts,
3204
+ fontSizes,
3205
+ fontWeights,
3206
+ lineHeights,
3207
+ letterSpacings,
3208
+ opacity,
3209
+ radii,
3210
+ shadows,
3211
+ sizes,
3212
+ spacing,
3213
+ zIndex
3214
+ });
2679
3215
 
2680
3216
  // src/index.ts
2681
- var preset = (0, import_dev38.definePreset)({
3217
+ var preset = (0, import_dev42.definePreset)({
2682
3218
  theme: {
2683
3219
  extend: {
2684
3220
  breakpoints,