@mekari/pixel3-theme 0.0.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.
Files changed (79) hide show
  1. package/dist/breakpoints.d.mts +8 -0
  2. package/dist/breakpoints.d.ts +8 -0
  3. package/dist/conditions.d.mts +23 -0
  4. package/dist/conditions.d.ts +23 -0
  5. package/dist/global-css.d.mts +5 -0
  6. package/dist/global-css.d.ts +5 -0
  7. package/dist/index.d.mts +5 -0
  8. package/dist/index.d.ts +5 -0
  9. package/dist/index.js +2509 -0
  10. package/dist/index.mjs +2488 -0
  11. package/dist/keyframes.d.mts +5 -0
  12. package/dist/keyframes.d.ts +5 -0
  13. package/dist/recipes/accordion.d.mts +5 -0
  14. package/dist/recipes/accordion.d.ts +5 -0
  15. package/dist/recipes/avatar.d.mts +6 -0
  16. package/dist/recipes/avatar.d.ts +6 -0
  17. package/dist/recipes/badge.d.mts +5 -0
  18. package/dist/recipes/badge.d.ts +5 -0
  19. package/dist/recipes/button.d.mts +6 -0
  20. package/dist/recipes/button.d.ts +6 -0
  21. package/dist/recipes/checkbox.d.mts +5 -0
  22. package/dist/recipes/checkbox.d.ts +5 -0
  23. package/dist/recipes/icon.d.mts +5 -0
  24. package/dist/recipes/icon.d.ts +5 -0
  25. package/dist/recipes/index.d.mts +37 -0
  26. package/dist/recipes/index.d.ts +37 -0
  27. package/dist/recipes/input.d.mts +7 -0
  28. package/dist/recipes/input.d.ts +7 -0
  29. package/dist/recipes/popover.d.mts +7 -0
  30. package/dist/recipes/popover.d.ts +7 -0
  31. package/dist/recipes/progress.d.mts +5 -0
  32. package/dist/recipes/progress.d.ts +5 -0
  33. package/dist/recipes/radio.d.mts +5 -0
  34. package/dist/recipes/radio.d.ts +5 -0
  35. package/dist/recipes/select.d.mts +5 -0
  36. package/dist/recipes/select.d.ts +5 -0
  37. package/dist/recipes/shared.d.mts +5 -0
  38. package/dist/recipes/shared.d.ts +5 -0
  39. package/dist/recipes/spinner.d.mts +5 -0
  40. package/dist/recipes/spinner.d.ts +5 -0
  41. package/dist/recipes/table.d.mts +6 -0
  42. package/dist/recipes/table.d.ts +6 -0
  43. package/dist/recipes/tabs.d.mts +7 -0
  44. package/dist/recipes/tabs.d.ts +7 -0
  45. package/dist/recipes/tag.d.mts +5 -0
  46. package/dist/recipes/tag.d.ts +5 -0
  47. package/dist/recipes/text.d.mts +5 -0
  48. package/dist/recipes/text.d.ts +5 -0
  49. package/dist/recipes/textarea.d.mts +5 -0
  50. package/dist/recipes/textarea.d.ts +5 -0
  51. package/dist/recipes/toggle.d.mts +5 -0
  52. package/dist/recipes/toggle.d.ts +5 -0
  53. package/dist/recipes/tooltip.d.mts +5 -0
  54. package/dist/recipes/tooltip.d.ts +5 -0
  55. package/dist/text-styles.d.mts +5 -0
  56. package/dist/text-styles.d.ts +5 -0
  57. package/dist/tokens/borders.d.mts +16 -0
  58. package/dist/tokens/borders.d.ts +16 -0
  59. package/dist/tokens/colors.d.mts +256 -0
  60. package/dist/tokens/colors.d.ts +256 -0
  61. package/dist/tokens/durations.d.mts +13 -0
  62. package/dist/tokens/durations.d.ts +13 -0
  63. package/dist/tokens/index.d.mts +647 -0
  64. package/dist/tokens/index.d.ts +647 -0
  65. package/dist/tokens/opacity.d.mts +16 -0
  66. package/dist/tokens/opacity.d.ts +16 -0
  67. package/dist/tokens/radii.d.mts +30 -0
  68. package/dist/tokens/radii.d.ts +30 -0
  69. package/dist/tokens/shadows.d.mts +40 -0
  70. package/dist/tokens/shadows.d.ts +40 -0
  71. package/dist/tokens/sizes.d.mts +95 -0
  72. package/dist/tokens/sizes.d.ts +95 -0
  73. package/dist/tokens/spacing.d.mts +72 -0
  74. package/dist/tokens/spacing.d.ts +72 -0
  75. package/dist/tokens/typography.d.mts +97 -0
  76. package/dist/tokens/typography.d.ts +97 -0
  77. package/dist/tokens/z-index.d.mts +28 -0
  78. package/dist/tokens/z-index.d.ts +28 -0
  79. package/package.json +41 -0
package/dist/index.mjs ADDED
@@ -0,0 +1,2488 @@
1
+ // src/index.ts
2
+ import { definePreset } from "@pandacss/dev";
3
+
4
+ // src/conditions.ts
5
+ var conditions = {
6
+ extend: {
7
+ disabled: "&:is(:disabled, [disabled], [aria-disabled=true], [data-disabled])",
8
+ invalid: "&:is(:invalid, [aria-invalid=true], [data-invalid])",
9
+ checked: "&:is(:checked, [data-checked], [aria-checked=true], [data-state=checked])",
10
+ indeterminate: "&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state=indeterminate])",
11
+ closed: "&:is([data-state=closed])",
12
+ open: "&:is([open], [data-state=open])",
13
+ hidden: "&:is([hidden])",
14
+ collapsed: '&:is([aria-collapsed=true], [data-collapsed], [data-state="collapsed"])',
15
+ loading: "& > [data-loading=true], &:is([data-loading], [aria-busy=true])",
16
+ hasIcon: "&[data-button-icon=true]",
17
+ active: "&[data-active=true], [data-active]",
18
+ highlight: "&[data-highlight=true], [data-highlight]",
19
+ hasBorder: "&[data-has-border=true]",
20
+ hasBackground: "&[data-has-background=true]",
21
+ isFullWidth: "&[data-is-full-width=true]",
22
+ placementLeft: "&[data-placement=left]",
23
+ placementRight: "&[data-placement=right]"
24
+ }
25
+ };
26
+
27
+ // src/global-css.ts
28
+ import { defineGlobalStyles } from "@pandacss/dev";
29
+ var globalCss = defineGlobalStyles({
30
+ html: {
31
+ MozOsxFontSmoothing: "grayscale",
32
+ textRendering: "optimizeLegibility",
33
+ WebkitFontSmoothing: "antialiased",
34
+ WebkitTextSizeAdjust: "100%"
35
+ },
36
+ body: {
37
+ background: "var(--mp-colors-white)",
38
+ color: "var(--mp-colors-dark)",
39
+ fontFamily: "var(--mp-fonts-body)",
40
+ fontSize: "14px",
41
+ _dark: {
42
+ colorScheme: "dark"
43
+ }
44
+ },
45
+ "*, *::before, *::after": {
46
+ borderStyle: "solid",
47
+ boxSizing: "border-box"
48
+ }
49
+ });
50
+
51
+ // src/tokens/index.ts
52
+ import { defineTokens as defineTokens11 } from "@pandacss/dev";
53
+
54
+ // src/tokens/borders.ts
55
+ import { defineTokens } from "@pandacss/dev";
56
+ var borders = defineTokens.borders({
57
+ none: { value: "none" },
58
+ sm: { value: "1px" },
59
+ md: { value: "1.5px" },
60
+ lg: { value: "2px" }
61
+ });
62
+
63
+ // src/tokens/colors.ts
64
+ import { defineTokens as defineTokens2 } from "@pandacss/dev";
65
+ var colors = defineTokens2.colors({
66
+ currentcolor: {
67
+ value: "currentcolor",
68
+ description: "Need to add this for Icon usage"
69
+ },
70
+ dark: { value: "#232933", description: "Default or primary text color" },
71
+ white: {
72
+ value: "#FFFFFF",
73
+ description: "Background color in components such as Card, Modal, and Popover"
74
+ },
75
+ background: { value: "#F1F5F9", description: "For use as background page" },
76
+ overlay: {
77
+ value: "rgba(22, 26, 32, 0.8)",
78
+ description: "For use as overlay"
79
+ },
80
+ brand: {
81
+ capital: { value: "#2F5573", description: "Mekari Capital" },
82
+ esign: { value: "#00C853", description: "Mekari e-Sign" },
83
+ expense: { value: "#183883", description: "Mekari Expense" },
84
+ flex: { value: "#7C4DFF", description: "Mekari Flex" },
85
+ jurnal: { value: "#40C3FF", description: "Mekari Jurnal" },
86
+ klikpajak: { value: "#FF9100", description: "Mekari Klikpajak" },
87
+ mekari: { value: "#651FFF", description: "Mekari" },
88
+ qontak: { value: "#2979FF", description: "Mekari Qontak" },
89
+ talenta: { value: "#F22929", description: "Mekari Talenta" },
90
+ university: { value: "#448AFF", description: "Mekari University" }
91
+ },
92
+ gray: {
93
+ 25: {
94
+ value: "#F8F9FB",
95
+ description: "Background color in table header component"
96
+ },
97
+ 50: {
98
+ value: "#EDF0F2",
99
+ description: "Disabled background color in components such as Input and Select backgrounds"
100
+ },
101
+ 100: { value: "#D0D6DD", description: "Default stroke color or divider" },
102
+ 400: {
103
+ value: "#8B95A5",
104
+ description: "Disabled and placeholder text color, icon or in components such as hover state Input, Select and stroke in Popover"
105
+ },
106
+ 600: {
107
+ value: "#626B79",
108
+ description: "Description text color and default color for outline icon"
109
+ }
110
+ },
111
+ blue: {
112
+ 50: { value: "#EAECFB" },
113
+ 100: { value: "#D5DEFF" },
114
+ 400: { value: "#4B61DD" },
115
+ 500: { value: "#1C44D5" },
116
+ 700: { value: "#0031BE" }
117
+ },
118
+ red: {
119
+ 50: { value: "#FDECEE" },
120
+ 400: { value: "#DA473F" },
121
+ 500: { value: "#C83E39" },
122
+ 700: { value: "#AB3129" }
123
+ },
124
+ green: {
125
+ 50: { value: "#E8F5EB" },
126
+ 400: { value: "#68BE79" },
127
+ 500: { value: "#4FB262" },
128
+ 700: { value: "#3C914D" }
129
+ },
130
+ orange: {
131
+ 50: { value: "#FBF3DD" },
132
+ 400: { value: "#E0AB00" },
133
+ 500: { value: "#DE9400" },
134
+ 700: { value: "#DB8000" }
135
+ },
136
+ sky: {
137
+ 100: { value: "#60A5FA" },
138
+ 400: { value: "#3B82F6" }
139
+ },
140
+ teal: {
141
+ 100: { value: "#2DD4BF" },
142
+ 400: { value: "#14B8A6" }
143
+ },
144
+ violet: {
145
+ 100: { value: "#A78BFA" },
146
+ 400: { value: "#8B5CF6" }
147
+ },
148
+ amber: {
149
+ 100: { value: "#FBBF24" },
150
+ 400: { value: "#F59E0B" }
151
+ },
152
+ rose: {
153
+ 100: { value: "#F87171" },
154
+ 400: { value: "#EF4444" }
155
+ },
156
+ stone: {
157
+ 100: { value: "#A1A1AA" },
158
+ 400: { value: "#71717A" }
159
+ },
160
+ lime: {
161
+ 100: { value: "#A3E635" },
162
+ 400: { value: "#84CC16" }
163
+ },
164
+ pink: {
165
+ 100: { value: "#F472B6" },
166
+ 400: { value: "#EC4899" }
167
+ },
168
+ apricot: {
169
+ 100: { value: "#FB923C" },
170
+ 400: { value: "#F97316" }
171
+ },
172
+ aqua: {
173
+ 100: { value: "#22D3EE" },
174
+ 400: { value: "#06B6D4" }
175
+ },
176
+ leaf: {
177
+ 100: { value: "#4ADE80" },
178
+ 400: { value: "#22C55E" }
179
+ },
180
+ fuchsia: {
181
+ 100: { value: "#E879F9" },
182
+ 400: { value: "#D946EF" }
183
+ },
184
+ ice: {
185
+ 50: { value: "#E0EEFF" },
186
+ 100: { value: "#B4D3F2" }
187
+ },
188
+ ash: {
189
+ 100: { value: "#E7EDF5" }
190
+ }
191
+ });
192
+
193
+ // src/tokens/durations.ts
194
+ import { defineTokens as defineTokens3 } from "@pandacss/dev";
195
+ var durations = defineTokens3.durations({
196
+ slow: { value: "100ms" },
197
+ normal: { value: "250ms" },
198
+ fast: { value: "300ms" }
199
+ });
200
+
201
+ // src/tokens/opacity.ts
202
+ import { defineTokens as defineTokens4 } from "@pandacss/dev";
203
+ var opacity = defineTokens4.opacity({
204
+ 0: { value: 0 },
205
+ 40: { value: 0.4 },
206
+ 60: { value: 0.6 },
207
+ 100: { value: 1 }
208
+ });
209
+
210
+ // src/tokens/radii.ts
211
+ import { defineTokens as defineTokens5 } from "@pandacss/dev";
212
+ var radii = defineTokens5.radii({
213
+ none: { value: "0" },
214
+ xs: { value: "0.125rem", description: "2px" },
215
+ sm: { value: "0.25rem", description: "4px" },
216
+ md: { value: "0.375rem", description: "6px" },
217
+ lg: { value: "0.5rem", description: "8px" },
218
+ xl: { value: "0.75rem", description: "12px" },
219
+ full: { value: "50%" }
220
+ });
221
+
222
+ // src/tokens/shadows.ts
223
+ import { defineTokens as defineTokens6 } from "@pandacss/dev";
224
+ var shadows = defineTokens6.shadows({
225
+ xs: {
226
+ value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
227
+ },
228
+ sm: {
229
+ value: ["0px 4px 6px -2px rgba(0, 0, 0, 0.05)", "0px 10px 15px -3px rgba(0, 0, 0, 0.10)"]
230
+ },
231
+ md: {
232
+ value: ["0px 10px 10px -5px rgba(0, 0, 0, 0.04)", "0px 20px 25px -5px rgba(0, 0, 0, 0.10)"]
233
+ },
234
+ lg: {
235
+ value: ["0px 6px 16px 0px rgba(0, 0, 0, 0.08)", "0px 9px 28px 8px rgba(0, 0, 0, 0.05)"]
236
+ },
237
+ focus: {
238
+ value: "0 0 0 3px rgba(224, 238, 255, 1)"
239
+ },
240
+ xl: {
241
+ value: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)"
242
+ },
243
+ "2xl": {
244
+ value: "0 25px 50px -12px rgba(0, 0, 0, 0.25)"
245
+ },
246
+ outline: {
247
+ value: "0 0 0 3px #E0EEFF"
248
+ },
249
+ "outline-tab": {
250
+ value: "0 0 0 2px #E0EEFF"
251
+ },
252
+ outer: {
253
+ value: "0 0 0 3px rgba(224, 238, 255, 1)"
254
+ },
255
+ inner: {
256
+ value: "inset 0 2px 4px 0 rgba( 0, 0, 0, 0.06)"
257
+ },
258
+ none: {
259
+ value: "none"
260
+ }
261
+ });
262
+
263
+ // src/tokens/sizes.ts
264
+ import { defineTokens as defineTokens7 } from "@pandacss/dev";
265
+ var sizes = defineTokens7.sizes({
266
+ 0: { value: "0", description: "0px" },
267
+ 0.25: { value: "0.0625rem", description: "1px" },
268
+ 0.5: { value: "0.125rem", description: "2px" },
269
+ 1: { value: "0.25rem", description: "4px" },
270
+ 2: { value: "0.5rem", description: "8px" },
271
+ 2.5: { value: "0.625rem", description: "10px" },
272
+ 3: { value: "0.75rem", description: "12px" },
273
+ 4: { value: "1rem", description: "16px" },
274
+ 5: { value: "1.25rem", description: "20px" },
275
+ 6: { value: "1.5rem", description: "24px" },
276
+ 7: { value: "1.75rem", description: "28px" },
277
+ 7.5: { value: "1.875rem", description: "30px" },
278
+ 8: { value: "2rem", description: "32px" },
279
+ 9: { value: "2.25rem", description: "36px" },
280
+ 9.5: { value: "2.375rem", description: "38px" },
281
+ 10: { value: "2.5rem", description: "40px" },
282
+ 11: { value: "2.75rem", description: "44px" },
283
+ 12: { value: "3rem", description: "48px" },
284
+ 16: { value: "4rem", description: "64px" },
285
+ 20: { value: "5rem", description: "80px" },
286
+ 22: { value: "5.5rem", description: "96px" },
287
+ 65: { value: "17.5rem", description: "280px" },
288
+ full: { value: "100%" }
289
+ });
290
+
291
+ // src/tokens/spacing.ts
292
+ import { defineTokens as defineTokens8 } from "@pandacss/dev";
293
+ var spacing = defineTokens8.spacing({
294
+ 0: { value: "0", description: "0px" },
295
+ 0.5: { value: "0.125rem", description: "2px" },
296
+ 1: { value: "0.25rem", description: "4px" },
297
+ 1.5: { value: "0.375rem", description: "6px" },
298
+ 2: { value: "0.5rem", description: "8px" },
299
+ 3: { value: "0.75rem", description: "12px" },
300
+ 4: { value: "1rem", description: "16px" },
301
+ 5: { value: "1.3rem", description: "20px" },
302
+ 6: { value: "1.5rem", description: "24px" },
303
+ 8: { value: "2rem", description: "32px" },
304
+ 12: { value: "3rem", description: "48px" },
305
+ 16: { value: "4rem", description: "64px" },
306
+ 20: { value: "5rem", description: "80px" },
307
+ 24: { value: "6rem", description: "96px" },
308
+ 32: { value: "8rem", description: "128px" },
309
+ 40: { value: "10rem", description: "160px" },
310
+ 64: { value: "16rem", description: "256px" }
311
+ });
312
+
313
+ // src/tokens/z-index.ts
314
+ import { defineTokens as defineTokens9 } from "@pandacss/dev";
315
+ var zIndex = defineTokens9.zIndex({
316
+ hide: { value: -1 },
317
+ base: { value: 0 },
318
+ docked: { value: 10 },
319
+ sticky: { value: 1100 },
320
+ overlay: { value: 1300 },
321
+ modal: { value: 1400 },
322
+ popover: { value: 1500 },
323
+ tooltip: { value: 1800 }
324
+ });
325
+
326
+ // src/tokens/typography.ts
327
+ import { defineTokens as defineTokens10 } from "@pandacss/dev";
328
+ var fonts = defineTokens10.fonts({
329
+ body: {
330
+ value: '"inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
331
+ },
332
+ mono: {
333
+ value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
334
+ }
335
+ });
336
+ var fontSizes = defineTokens10.fontSizes({
337
+ xs: { value: "0.625rem", description: "10px" },
338
+ sm: { value: "0.75rem", description: "12px" },
339
+ md: { value: "0.875rem", description: "14px" },
340
+ lg: { value: "1rem", description: "16px" },
341
+ xl: { value: "1.25rem", description: "20px" },
342
+ "2xl": { value: "1.5rem", description: "24px" }
343
+ });
344
+ var fontWeights = defineTokens10.fontWeights({
345
+ regular: { value: "400" },
346
+ semiBold: { value: "600" },
347
+ bold: { value: "800" }
348
+ });
349
+ var lineHeights = defineTokens10.lineHeights({
350
+ xs: { value: 1.2, description: "12px/10px" },
351
+ sm: { value: 1.34, description: "16px/12px or 32px/24px" },
352
+ md: { value: 1.4, description: "28px/20px" },
353
+ lg: { value: 1.429, description: "20px/14px" },
354
+ xl: { value: 1.5, description: "24px/16px" },
355
+ "2xl": { value: 1.67, description: "20px/12px" },
356
+ "3xl": { value: 1.71, description: "24px/14px" }
357
+ });
358
+ var letterSpacings = defineTokens10.letterSpacings({
359
+ tighter: { value: "-0.05em" },
360
+ tight: { value: "-0.025em" },
361
+ normal: { value: "0" },
362
+ wide: { value: "0.025em" },
363
+ wider: { value: "0.05em" },
364
+ widest: { value: "0.1em" }
365
+ });
366
+
367
+ // src/tokens/index.ts
368
+ var tokens = defineTokens11({
369
+ borders,
370
+ colors,
371
+ durations,
372
+ fonts,
373
+ fontSizes,
374
+ fontWeights,
375
+ lineHeights,
376
+ letterSpacings,
377
+ opacity,
378
+ radii,
379
+ shadows,
380
+ sizes,
381
+ spacing,
382
+ zIndex
383
+ });
384
+
385
+ // src/text-styles.ts
386
+ import { defineTextStyles } from "@pandacss/dev";
387
+ var textStyles = defineTextStyles({
388
+ overline: { value: { fontSize: "xs", lineHeight: "xs" } },
389
+ body: {
390
+ sm: { value: { fontSize: "sm", lineHeight: "2xl" } },
391
+ md: { value: { fontSize: "md", lineHeight: "3xl" } }
392
+ },
393
+ label: {
394
+ sm: { value: { fontSize: "sm", lineHeight: "sm" } },
395
+ md: { value: { fontSize: "md", lineHeight: "lg" } }
396
+ },
397
+ h3: {
398
+ value: {
399
+ fontSize: "lg",
400
+ lineHeight: "xl",
401
+ fontWeight: "semiBold !important"
402
+ }
403
+ },
404
+ h2: {
405
+ value: {
406
+ fontSize: "xl",
407
+ lineHeight: "md",
408
+ fontWeight: "semiBold !important"
409
+ }
410
+ },
411
+ h1: {
412
+ value: {
413
+ fontSize: "2xl",
414
+ lineHeight: "sm",
415
+ fontWeight: "semiBold !important"
416
+ }
417
+ }
418
+ });
419
+
420
+ // src/keyframes.ts
421
+ import { defineKeyframes } from "@pandacss/dev";
422
+ var keyframes = defineKeyframes({
423
+ "fade-in": {
424
+ from: { opacity: "0" },
425
+ to: { opacity: "1" }
426
+ },
427
+ "fade-out": {
428
+ from: { opacity: "1" },
429
+ to: { opacity: "0" }
430
+ },
431
+ spin: {
432
+ "100%": { transform: "rotate(1turn)" }
433
+ }
434
+ });
435
+
436
+ // src/recipes/tag.ts
437
+ import { defineSlotRecipe } from "@pandacss/dev";
438
+ var tagSlotRecipe = defineSlotRecipe({
439
+ className: "tag",
440
+ jsx: ["MpTag", "mp-tag"],
441
+ slots: ["root", "close"],
442
+ base: {
443
+ root: {
444
+ position: "relative",
445
+ display: "inline-flex",
446
+ alignItems: "center",
447
+ userSelect: "none",
448
+ outline: "0px solid transparent",
449
+ borderWidth: "1px",
450
+ borderColor: "transparent",
451
+ borderRadius: "sm",
452
+ transition: "all 250ms",
453
+ textAlign: "left",
454
+ fontSize: "md",
455
+ fontWeight: "regular",
456
+ lineHeight: "md",
457
+ letterSpacing: "normal",
458
+ paddingX: "2",
459
+ whiteSpace: "normal",
460
+ overflowWrap: "anywhere",
461
+ cursor: "var(--mp-tag--cursor)"
462
+ },
463
+ close: {
464
+ position: "absolute!",
465
+ color: "gray.600",
466
+ background: "linear-gradient(270deg, #EDF0F2 75%, rgba(237, 240, 242, 0) 111.54%)!",
467
+ border: "none",
468
+ right: "0",
469
+ width: "5",
470
+ height: "5",
471
+ minWidth: "5",
472
+ paddingTop: "1",
473
+ padding: "0",
474
+ transition: "all 250ms!",
475
+ visibility: "hidden",
476
+ opacity: "0",
477
+ _groupHover: {
478
+ visibility: "visible",
479
+ opacity: "1"
480
+ }
481
+ }
482
+ },
483
+ variants: {
484
+ size: {
485
+ sm: {
486
+ root: {
487
+ paddingY: "0"
488
+ }
489
+ },
490
+ md: {
491
+ root: {
492
+ paddingY: "1"
493
+ }
494
+ }
495
+ },
496
+ variant: {
497
+ gray: {
498
+ root: {
499
+ color: "gray.600",
500
+ background: "gray.50"
501
+ }
502
+ },
503
+ red: {
504
+ root: {
505
+ color: "red.400",
506
+ backgroundColor: "red.50"
507
+ }
508
+ }
509
+ }
510
+ },
511
+ compoundVariants: [
512
+ {
513
+ variant: "red",
514
+ css: {
515
+ close: {
516
+ background: "linear-gradient(270deg, #FDECEE 75%, rgba(237, 240, 242, 0) 111.54%)!"
517
+ }
518
+ }
519
+ },
520
+ {
521
+ size: "sm",
522
+ css: {
523
+ close: { paddingTop: "0" }
524
+ }
525
+ }
526
+ ],
527
+ defaultVariants: {
528
+ size: "md",
529
+ variant: "gray"
530
+ }
531
+ });
532
+
533
+ // src/recipes/avatar.ts
534
+ import { defineSlotRecipe as defineSlotRecipe2 } from "@pandacss/dev";
535
+ var avatarSlotRecipe = defineSlotRecipe2({
536
+ className: "avatar",
537
+ jsx: ["MpAvatar", "mp-avatar"],
538
+ slots: ["root", "fallback", "image", "icon"],
539
+ base: {
540
+ root: {
541
+ color: "white",
542
+ position: "relative",
543
+ display: "inline-flex",
544
+ alignItems: "center",
545
+ justifyContent: "center",
546
+ verticalAlign: "top",
547
+ flexShrink: "0",
548
+ fontWeight: "semiBold",
549
+ textTransform: "uppercase",
550
+ userSelect: "none",
551
+ backgroundColor: "var(--mp-avatar--background-color)",
552
+ borderColor: "var(--mp-avatar--border-color)",
553
+ marginLeft: "var(--mp-avatar--margin-left)",
554
+ cursor: "var(--mp-avatar--cursor)",
555
+ _hasBorder: {
556
+ borderWidth: "0.125rem"
557
+ }
558
+ },
559
+ fallback: {
560
+ width: "100%",
561
+ height: "100%",
562
+ visibility: "var(--mp-avatar--visibility)",
563
+ display: "var(--mp-avatar--display)"
564
+ },
565
+ image: {
566
+ width: "100%",
567
+ height: "100%",
568
+ objectFit: "cover"
569
+ }
570
+ },
571
+ variants: {
572
+ variant: {
573
+ square: {
574
+ root: { borderRadius: "md" },
575
+ image: { borderRadius: "md" }
576
+ },
577
+ circle: {
578
+ root: { borderRadius: "full" },
579
+ image: { borderRadius: "full" }
580
+ }
581
+ },
582
+ variantColor: {
583
+ gray: {
584
+ root: { backgroundColor: "gray.50" }
585
+ },
586
+ sky: {
587
+ root: { backgroundColor: "sky.400" }
588
+ },
589
+ teal: {
590
+ root: { backgroundColor: "teal.400" }
591
+ },
592
+ violet: {
593
+ root: { backgroundColor: "violet.400" }
594
+ },
595
+ amber: {
596
+ root: { backgroundColor: "amber.400" }
597
+ },
598
+ rose: {
599
+ root: { backgroundColor: "rose.400" }
600
+ },
601
+ stone: {
602
+ root: { backgroundColor: "stone.400" }
603
+ },
604
+ lime: {
605
+ root: { backgroundColor: "lime.400" }
606
+ },
607
+ pink: {
608
+ root: { backgroundColor: "pink.400" }
609
+ }
610
+ },
611
+ size: {
612
+ sm: {
613
+ root: { width: "6", height: "6", fontSize: "xs" },
614
+ icon: { width: "4!", height: "4!" }
615
+ },
616
+ md: {
617
+ root: { width: "8", height: "8", fontSize: "sm" },
618
+ icon: { width: "5!", height: "5!" }
619
+ },
620
+ lg: {
621
+ root: { width: "12", height: "12", fontSize: "lg" },
622
+ icon: { width: "8!", height: "8!" }
623
+ },
624
+ xl: {
625
+ root: { width: "20", height: "20", fontSize: "2xl" },
626
+ icon: { width: "16!", height: "16!" }
627
+ }
628
+ }
629
+ },
630
+ compoundVariants: [
631
+ {
632
+ size: "sm",
633
+ variant: "square",
634
+ css: {
635
+ root: { borderRadius: "sm" },
636
+ image: { borderRadius: "sm" }
637
+ }
638
+ },
639
+ {
640
+ size: "lg",
641
+ variant: "square",
642
+ css: {
643
+ root: { borderRadius: "lg" },
644
+ image: { borderRadius: "lg" }
645
+ }
646
+ },
647
+ {
648
+ size: "xl",
649
+ variant: "square",
650
+ css: {
651
+ root: { borderRadius: "xl" },
652
+ image: { borderRadius: "xl" }
653
+ }
654
+ },
655
+ {
656
+ variantColor: "gray",
657
+ css: {
658
+ root: { color: "gray.600" }
659
+ }
660
+ }
661
+ ],
662
+ defaultVariants: {
663
+ size: "md",
664
+ variant: "circle"
665
+ }
666
+ });
667
+ var avatarGroupSlotRecipe = defineSlotRecipe2({
668
+ className: "avatar-group",
669
+ jsx: ["MpAvatarGroup", "mp-avatar-group"],
670
+ slots: ["root", "excess"],
671
+ base: {
672
+ root: {
673
+ display: "flex",
674
+ alignItems: "center",
675
+ zIndex: "0"
676
+ },
677
+ excess: {
678
+ marginLeft: "2",
679
+ color: "blue.400",
680
+ backgroundColor: "blue.50",
681
+ fontWeight: "semiBold",
682
+ display: "flex",
683
+ alignItems: "center",
684
+ justifyContent: "center",
685
+ borderRadius: "full",
686
+ userSelect: "none",
687
+ cursor: "var(--mp-avatar-group--cursor)"
688
+ }
689
+ },
690
+ variants: {
691
+ size: {
692
+ sm: {
693
+ excess: { width: "6", height: "6", fontSize: "xs" }
694
+ },
695
+ md: {
696
+ excess: { width: "8", height: "8", fontSize: "sm" }
697
+ },
698
+ lg: {
699
+ excess: { width: "12", height: "12", fontSize: "lg" }
700
+ },
701
+ xl: {
702
+ excess: { width: "20", height: "20", fontSize: "2xl" }
703
+ }
704
+ }
705
+ },
706
+ compoundVariants: [],
707
+ defaultVariants: {}
708
+ });
709
+
710
+ // src/recipes/button.ts
711
+ import { defineRecipe } from "@pandacss/dev";
712
+ var buttonRecipe = defineRecipe({
713
+ className: "button",
714
+ jsx: ["MpButton", "mp-button"],
715
+ base: {
716
+ position: "relative",
717
+ display: "inline-flex",
718
+ justifyContent: "center",
719
+ alignItems: "center",
720
+ alignSelf: "start",
721
+ gap: "2",
722
+ borderWidth: "1px",
723
+ whiteSpace: "nowrap",
724
+ userSelect: "none",
725
+ appearance: "none",
726
+ outline: "none",
727
+ cursor: "pointer",
728
+ transitionDuration: "250ms",
729
+ transitionProperty: "background, border-color, color, box-shadow",
730
+ transitionTimingFunction: "linear",
731
+ _loading: {
732
+ cursor: "wait",
733
+ position: "absolute",
734
+ display: "flex",
735
+ justifyContent: "center",
736
+ alignItems: "center",
737
+ width: "full",
738
+ height: "full"
739
+ }
740
+ },
741
+ variants: {
742
+ variant: {
743
+ primary: {
744
+ color: "white",
745
+ background: "blue.400",
746
+ borderColor: "blue.400",
747
+ _hover: {
748
+ background: "blue.500",
749
+ borderColor: "blue.500"
750
+ },
751
+ _active: {
752
+ background: "blue.700",
753
+ borderColor: "blue.700"
754
+ },
755
+ _loading: {
756
+ background: "blue.400"
757
+ }
758
+ },
759
+ secondary: {
760
+ color: "blue.400",
761
+ background: "white",
762
+ borderColor: "gray.100",
763
+ _hover: {
764
+ background: "gray.50",
765
+ borderColor: "gray.100"
766
+ },
767
+ _active: {
768
+ background: "blue.50",
769
+ borderColor: "blue.50"
770
+ },
771
+ _loading: {
772
+ background: "white"
773
+ }
774
+ },
775
+ ghost: {
776
+ color: "gray.600",
777
+ background: "white",
778
+ borderColor: "white",
779
+ _hover: {
780
+ background: "gray.50",
781
+ borderColor: "gray.50"
782
+ },
783
+ _active: {
784
+ background: "gray.100",
785
+ borderColor: "gray.100"
786
+ },
787
+ _loading: {
788
+ background: "white"
789
+ }
790
+ },
791
+ danger: {
792
+ color: "white",
793
+ background: "red.400",
794
+ borderColor: "red.400",
795
+ _hover: {
796
+ background: "red.500",
797
+ borderColor: "red.500"
798
+ },
799
+ _active: {
800
+ background: "red.700",
801
+ borderColor: "red.700"
802
+ },
803
+ _focusVisible: {
804
+ borderColor: "red.400",
805
+ boxShadow: "0 0 0 3px #FDECEE"
806
+ },
807
+ _loading: {
808
+ background: "red.400"
809
+ }
810
+ },
811
+ textLink: {
812
+ color: "blue.400",
813
+ background: "white",
814
+ borderColor: "white",
815
+ _hover: {
816
+ color: "blue.500"
817
+ },
818
+ _active: {
819
+ color: "blue.700"
820
+ },
821
+ _disabled: {
822
+ cursor: "not-allowed",
823
+ color: "gray.400"
824
+ },
825
+ _loading: {
826
+ background: "white"
827
+ }
828
+ }
829
+ },
830
+ size: {
831
+ sm: {
832
+ paddingX: "2",
833
+ paddingY: "1",
834
+ borderRadius: "sm",
835
+ textStyle: "label.md",
836
+ fontWeight: "regular",
837
+ _loading: {
838
+ borderRadius: "sm"
839
+ },
840
+ _hasIcon: {
841
+ padding: "1 !important"
842
+ }
843
+ },
844
+ md: {
845
+ paddingX: "4",
846
+ paddingY: "2",
847
+ borderRadius: "md",
848
+ textStyle: "label.md",
849
+ fontWeight: "semiBold",
850
+ _loading: {
851
+ borderRadius: "md"
852
+ },
853
+ _hasIcon: {
854
+ padding: "2 !important"
855
+ }
856
+ }
857
+ }
858
+ },
859
+ compoundVariants: [
860
+ {
861
+ variant: ["textLink"],
862
+ css: {
863
+ paddingX: "0",
864
+ paddingY: "0",
865
+ borderRadius: "sm",
866
+ _focusVisible: {
867
+ borderColor: "white",
868
+ boxShadow: "focus"
869
+ }
870
+ }
871
+ },
872
+ {
873
+ variant: ["ghost", "textLink"],
874
+ css: {
875
+ fontWeight: "regular"
876
+ }
877
+ },
878
+ {
879
+ variant: ["primary", "secondary", "ghost"],
880
+ css: {
881
+ _focusVisible: {
882
+ borderColor: "blue.400",
883
+ boxShadow: "focus"
884
+ }
885
+ }
886
+ },
887
+ {
888
+ variant: ["primary", "secondary", "ghost", "danger"],
889
+ css: {
890
+ _disabled: {
891
+ cursor: "not-allowed",
892
+ color: "gray.400",
893
+ background: "gray.50",
894
+ borderColor: "gray.50",
895
+ _hover: {
896
+ background: "gray.50",
897
+ borderColor: "gray.50"
898
+ }
899
+ }
900
+ }
901
+ }
902
+ ],
903
+ defaultVariants: {
904
+ variant: "primary",
905
+ size: "md"
906
+ }
907
+ });
908
+ var buttonGroupRecipe = defineRecipe({
909
+ className: "pixel-button-group",
910
+ jsx: ["MpButtonGroup"],
911
+ base: {
912
+ display: "flex",
913
+ alignItems: "center",
914
+ gap: "var(--mp-button-group-spacing)",
915
+ "&[data-split-button=true]": {
916
+ gap: "0",
917
+ "& > [data-pixel-component=MpButton]": {
918
+ _first: {
919
+ borderTopRightRadius: "none !important",
920
+ borderBottomRightRadius: "none !important",
921
+ borderRight: "0 !important"
922
+ },
923
+ _last: {
924
+ borderTopLeftRadius: "none !important",
925
+ borderBottomLeftRadius: "none !important"
926
+ }
927
+ }
928
+ }
929
+ }
930
+ });
931
+
932
+ // src/recipes/input.ts
933
+ import { defineSlotRecipe as defineSlotRecipe3 } from "@pandacss/dev";
934
+ var inputSlotRecipe = defineSlotRecipe3({
935
+ className: "input",
936
+ jsx: ["MpInput", "mp-input"],
937
+ slots: ["root", "control", "clear"],
938
+ base: {
939
+ root: {
940
+ position: "relative",
941
+ display: "flex",
942
+ alignItems: "center",
943
+ _isFullWidth: {
944
+ width: "full"
945
+ }
946
+ },
947
+ control: {
948
+ minWidth: "22",
949
+ fontWeight: "regular",
950
+ lineHeight: "md",
951
+ color: "dark",
952
+ position: "relative",
953
+ display: "flex",
954
+ alignItems: "center",
955
+ outline: "0",
956
+ borderWidth: "1px",
957
+ borderColor: "inherit",
958
+ borderRadius: "sm",
959
+ paddingRight: "var(--mp-input--padding-right)",
960
+ paddingLeft: "var(--mp-input--padding-left)",
961
+ appearance: "none",
962
+ transition: "all 250ms",
963
+ _isFullWidth: {
964
+ width: "full"
965
+ }
966
+ },
967
+ clear: {
968
+ position: "absolute!",
969
+ color: "gray.600",
970
+ border: "none",
971
+ top: "9px",
972
+ right: "var(--mp-input--right)",
973
+ width: "5",
974
+ height: "5",
975
+ minWidth: "5",
976
+ padding: "0",
977
+ transition: "all 250ms!",
978
+ visibility: "hidden",
979
+ opacity: "0",
980
+ _groupHover: {
981
+ visibility: "var(--mp-input--visibility)",
982
+ opacity: "var(--mp-input--opacity)"
983
+ }
984
+ }
985
+ },
986
+ variants: {
987
+ variant: {
988
+ unstyled: {
989
+ control: {
990
+ backgroundColor: "transparent",
991
+ borderWidth: "0",
992
+ borderRadius: "none"
993
+ }
994
+ },
995
+ outline: {
996
+ control: {
997
+ backgroundColor: "white",
998
+ borderColor: "gray.100",
999
+ _hover: {
1000
+ borderColor: "gray.400"
1001
+ },
1002
+ _focus: {
1003
+ borderColor: "blue.500",
1004
+ boxShadow: "outer",
1005
+ _hover: {
1006
+ borderColor: "blue.500"
1007
+ },
1008
+ _invalid: {
1009
+ borderColor: "red.400"
1010
+ }
1011
+ },
1012
+ _disabled: {
1013
+ color: "gray.400",
1014
+ backgroundColor: "gray.50",
1015
+ borderColor: "gray.100",
1016
+ cursor: "not-allowed"
1017
+ },
1018
+ _invalid: {
1019
+ borderColor: "red.400"
1020
+ },
1021
+ _readOnly: {
1022
+ boxShadow: "none",
1023
+ userSelect: "all"
1024
+ }
1025
+ }
1026
+ }
1027
+ },
1028
+ size: {
1029
+ sm: {
1030
+ control: {
1031
+ height: "7.5",
1032
+ fontSize: "sm",
1033
+ borderRadius: "sm",
1034
+ paddingY: "1"
1035
+ }
1036
+ },
1037
+ md: {
1038
+ control: {
1039
+ height: "9.5",
1040
+ fontSize: "md",
1041
+ borderRadius: "md",
1042
+ paddingY: "2"
1043
+ }
1044
+ }
1045
+ }
1046
+ },
1047
+ compoundVariants: [],
1048
+ defaultVariants: {
1049
+ size: "md",
1050
+ variant: "outline"
1051
+ }
1052
+ });
1053
+ var inputGroupSlotRecipe = defineSlotRecipe3({
1054
+ className: "input-group",
1055
+ jsx: ["MpInputGroup", "mp-input-group"],
1056
+ slots: ["root"],
1057
+ base: {
1058
+ root: {
1059
+ position: "relative",
1060
+ display: "inline-flex",
1061
+ alignItems: "center",
1062
+ width: "full"
1063
+ }
1064
+ },
1065
+ variants: {},
1066
+ compoundVariants: [],
1067
+ defaultVariants: {}
1068
+ });
1069
+ var inputAddonSlotRecipe = defineSlotRecipe3({
1070
+ className: "input-addon",
1071
+ jsx: ["MpInputAddon", "mp-input-addon"],
1072
+ slots: ["root"],
1073
+ base: {
1074
+ root: {
1075
+ position: "absolute",
1076
+ display: "flex",
1077
+ alignItems: "center",
1078
+ paddingX: "0",
1079
+ whiteSpace: "nowrap",
1080
+ zIndex: "2",
1081
+ _hasBackground: {
1082
+ backgroundColor: "gray.50"
1083
+ }
1084
+ }
1085
+ },
1086
+ variants: {
1087
+ placement: {
1088
+ left: {
1089
+ root: {
1090
+ left: "3",
1091
+ borderTopRightRadius: "none!",
1092
+ borderBottomRightRadius: "none!"
1093
+ }
1094
+ },
1095
+ right: {
1096
+ root: {
1097
+ right: "3",
1098
+ borderTopLeftRadius: "none!",
1099
+ borderBottomLeftRadius: "none!"
1100
+ }
1101
+ }
1102
+ },
1103
+ size: {
1104
+ sm: {
1105
+ root: {
1106
+ height: "6.5",
1107
+ borderRadius: "2xs",
1108
+ _hasBackground: {
1109
+ _placementLeft: { left: "0.5" },
1110
+ _placementRight: { right: "0.5" }
1111
+ }
1112
+ }
1113
+ },
1114
+ md: {
1115
+ root: {
1116
+ height: "7.5",
1117
+ borderRadius: "sm",
1118
+ _hasBackground: {
1119
+ _placementLeft: { left: "1" },
1120
+ _placementRight: { right: "1" }
1121
+ }
1122
+ }
1123
+ }
1124
+ }
1125
+ },
1126
+ compoundVariants: [],
1127
+ defaultVariants: {
1128
+ size: "md",
1129
+ placement: "left"
1130
+ }
1131
+ });
1132
+
1133
+ // src/recipes/select.ts
1134
+ import { defineSlotRecipe as defineSlotRecipe4 } from "@pandacss/dev";
1135
+ var selectSlotRecipe = defineSlotRecipe4({
1136
+ className: "select",
1137
+ jsx: ["MpSelect", "mp-select"],
1138
+ slots: ["root", "control", "clear", "arrow"],
1139
+ base: {
1140
+ root: {
1141
+ position: "relative",
1142
+ display: "flex",
1143
+ alignItems: "center",
1144
+ _isFullWidth: {
1145
+ width: "full"
1146
+ }
1147
+ },
1148
+ control: {
1149
+ minWidth: "22",
1150
+ fontWeight: "regular",
1151
+ lineHeight: "md",
1152
+ color: "var(--mp-select--color)",
1153
+ position: "relative",
1154
+ display: "flex",
1155
+ alignItems: "center",
1156
+ outline: "0",
1157
+ borderWidth: "1px",
1158
+ borderRadius: "sm",
1159
+ paddingLeft: "3",
1160
+ paddingRight: "var(--mp-select--padding-right)",
1161
+ appearance: "none",
1162
+ transition: "all 250ms",
1163
+ backgroundColor: "white",
1164
+ borderColor: "gray.100",
1165
+ _hover: {
1166
+ borderColor: "gray.400"
1167
+ },
1168
+ _focus: {
1169
+ borderColor: "blue.500",
1170
+ boxShadow: "outer",
1171
+ _hover: {
1172
+ borderColor: "blue.500"
1173
+ },
1174
+ _invalid: {
1175
+ borderColor: "red.400"
1176
+ }
1177
+ },
1178
+ _disabled: {
1179
+ color: "gray.400",
1180
+ backgroundColor: "gray.50",
1181
+ borderColor: "gray.100",
1182
+ cursor: "not-allowed"
1183
+ },
1184
+ _invalid: {
1185
+ borderColor: "red.400"
1186
+ },
1187
+ _isFullWidth: {
1188
+ width: "full"
1189
+ }
1190
+ },
1191
+ clear: {
1192
+ position: "absolute!",
1193
+ color: "gray.600",
1194
+ border: "none",
1195
+ top: "9px",
1196
+ right: "40px",
1197
+ width: "5",
1198
+ height: "5",
1199
+ minWidth: "5",
1200
+ padding: "0",
1201
+ transition: "all 250ms!",
1202
+ visibility: "hidden",
1203
+ opacity: "0",
1204
+ _groupHover: {
1205
+ visibility: "var(--mp-select--visibility)",
1206
+ opacity: "var(--mp-select--opacity)"
1207
+ }
1208
+ },
1209
+ arrow: {
1210
+ position: "absolute!",
1211
+ display: "inline-flex",
1212
+ alignItems: "center",
1213
+ width: "6",
1214
+ height: "6",
1215
+ right: "2",
1216
+ whiteSpace: "nowrap",
1217
+ pointerEvents: "none"
1218
+ }
1219
+ },
1220
+ variants: {
1221
+ size: {
1222
+ sm: {
1223
+ control: {
1224
+ height: "7.5",
1225
+ fontSize: "sm",
1226
+ borderRadius: "sm",
1227
+ paddingY: "1"
1228
+ }
1229
+ },
1230
+ md: {
1231
+ control: {
1232
+ height: "9.5",
1233
+ fontSize: "md",
1234
+ borderRadius: "md",
1235
+ paddingY: "2"
1236
+ }
1237
+ }
1238
+ }
1239
+ },
1240
+ compoundVariants: [],
1241
+ defaultVariants: {
1242
+ size: "md"
1243
+ }
1244
+ });
1245
+
1246
+ // src/recipes/text.ts
1247
+ import { defineRecipe as defineRecipe2 } from "@pandacss/dev";
1248
+ var textRecipe = defineRecipe2({
1249
+ className: "text",
1250
+ jsx: ["MpText", "mp-text"],
1251
+ base: {
1252
+ color: "var(--mp-text-color)",
1253
+ fontVariantNumeric: "lining-nums tabular-nums",
1254
+ "&[data-text-strike=true]": {
1255
+ textDecoration: "line-through"
1256
+ },
1257
+ "&[data-text-link=true]": {
1258
+ textDecoration: "underline"
1259
+ }
1260
+ },
1261
+ variants: {
1262
+ size: {
1263
+ h1: {
1264
+ textStyle: "h1"
1265
+ },
1266
+ h2: {
1267
+ textStyle: "h2"
1268
+ },
1269
+ h3: {
1270
+ textStyle: "h3"
1271
+ },
1272
+ body: {
1273
+ textStyle: "body.md"
1274
+ },
1275
+ "body-small": {
1276
+ textStyle: "body.sm"
1277
+ },
1278
+ label: {
1279
+ textStyle: "label.md"
1280
+ },
1281
+ "label-small": {
1282
+ textStyle: "label.sm"
1283
+ },
1284
+ overline: {
1285
+ textStyle: "overline"
1286
+ }
1287
+ },
1288
+ weight: {
1289
+ regular: {
1290
+ fontWeight: "regular"
1291
+ },
1292
+ semiBold: {
1293
+ fontWeight: "semiBold"
1294
+ }
1295
+ }
1296
+ },
1297
+ defaultVariants: {
1298
+ size: "label",
1299
+ weight: "regular"
1300
+ }
1301
+ });
1302
+
1303
+ // src/recipes/icon.ts
1304
+ import { defineRecipe as defineRecipe3 } from "@pandacss/dev";
1305
+ var iconRecipe = defineRecipe3({
1306
+ className: "icon",
1307
+ jsx: ["MpIcon", "mp-icon"],
1308
+ base: {
1309
+ color: "var(--mp-icon-color)",
1310
+ display: "inline-block",
1311
+ verticalAlign: "middle",
1312
+ backfaceVisibility: "hidden",
1313
+ flexShrink: 0,
1314
+ "&:not(:root)": {
1315
+ overflow: "hidden"
1316
+ }
1317
+ },
1318
+ variants: {
1319
+ size: {
1320
+ sm: {
1321
+ width: "5",
1322
+ height: "5"
1323
+ },
1324
+ md: {
1325
+ width: "6",
1326
+ height: "6"
1327
+ }
1328
+ }
1329
+ },
1330
+ defaultVariants: {
1331
+ size: "md"
1332
+ }
1333
+ });
1334
+
1335
+ // src/recipes/spinner.ts
1336
+ import { defineRecipe as defineRecipe4 } from "@pandacss/dev";
1337
+ var spinnerRecipe = defineRecipe4({
1338
+ className: "spinner",
1339
+ jsx: ["MpSpinner", "mp-spinner"],
1340
+ base: {
1341
+ display: "inline-flex",
1342
+ animation: "0.45s linear 0s infinite normal none running spin"
1343
+ },
1344
+ variants: {
1345
+ size: {
1346
+ sm: {
1347
+ width: "5",
1348
+ height: "5"
1349
+ },
1350
+ md: {
1351
+ width: "6",
1352
+ height: "6"
1353
+ }
1354
+ }
1355
+ },
1356
+ defaultVariants: {
1357
+ size: "sm"
1358
+ }
1359
+ });
1360
+
1361
+ // src/recipes/accordion.ts
1362
+ import { defineSlotRecipe as defineSlotRecipe5 } from "@pandacss/dev";
1363
+ var accordion = defineSlotRecipe5({
1364
+ className: "accordion",
1365
+ slots: ["root", "item", "trigger", "content"],
1366
+ base: {
1367
+ root: {
1368
+ divideY: "1px",
1369
+ width: "full"
1370
+ },
1371
+ trigger: {
1372
+ alignItems: "center",
1373
+ color: "fg.default",
1374
+ cursor: "pointer",
1375
+ display: "flex",
1376
+ fontWeight: "normal",
1377
+ justifyContent: "space-between",
1378
+ textStyle: "lg",
1379
+ width: "full",
1380
+ fontSize: "lg"
1381
+ },
1382
+ content: {
1383
+ color: "fg.muted",
1384
+ display: "grid",
1385
+ gridTemplateRows: "0fr",
1386
+ transitionProperty: "grid-template-rows, padding-bottom",
1387
+ transitionDuration: "normal",
1388
+ transitionTimingFunction: "default",
1389
+ _open: {
1390
+ gridTemplateRows: "1fr"
1391
+ },
1392
+ "& > div": {
1393
+ overflow: "hidden"
1394
+ }
1395
+ }
1396
+ },
1397
+ defaultVariants: {
1398
+ size: "md"
1399
+ },
1400
+ variants: {
1401
+ size: {
1402
+ md: {
1403
+ trigger: {
1404
+ py: "4"
1405
+ },
1406
+ content: {
1407
+ pb: "6",
1408
+ pr: "8",
1409
+ _closed: {
1410
+ pb: "0"
1411
+ }
1412
+ }
1413
+ }
1414
+ }
1415
+ }
1416
+ });
1417
+
1418
+ // src/recipes/popover.ts
1419
+ import { defineRecipe as defineRecipe5 } from "@pandacss/dev";
1420
+ var popoverContentRecipe = defineRecipe5({
1421
+ className: "popover",
1422
+ jsx: ["MpPopover", "mp-popover"],
1423
+ base: {},
1424
+ variants: {
1425
+ isUnstyled: {
1426
+ true: {},
1427
+ false: {
1428
+ rounded: "md",
1429
+ shadow: "lg",
1430
+ borderWidth: "1px",
1431
+ borderColor: "gray.400",
1432
+ zIndex: "popover"
1433
+ }
1434
+ },
1435
+ isDark: {
1436
+ true: {
1437
+ background: "overlay",
1438
+ color: "white"
1439
+ },
1440
+ false: {
1441
+ background: "white"
1442
+ }
1443
+ }
1444
+ },
1445
+ defaultVariants: {
1446
+ isDark: false,
1447
+ isUnstyled: false
1448
+ }
1449
+ });
1450
+ var popoverListRecipe = defineRecipe5({
1451
+ className: "popover-list",
1452
+ jsx: ["MpPopoverList", "mp-popover-list"],
1453
+ base: {
1454
+ pt: 3,
1455
+ pb: 2,
1456
+ alignItems: "center",
1457
+ display: "flex",
1458
+ flexDirection: "column"
1459
+ }
1460
+ });
1461
+ var popoverListItemRecipe = defineRecipe5({
1462
+ className: "popover-list-item",
1463
+ jsx: ["MpPopoverListItem", "mp-popover-list-item"],
1464
+ base: {
1465
+ px: 3,
1466
+ py: 2,
1467
+ width: "full",
1468
+ textDecoration: "none",
1469
+ alignItems: "center",
1470
+ textAlign: "left",
1471
+ outline: "none",
1472
+ fontSize: "md",
1473
+ flex: " 0 0 auto",
1474
+ userSelect: "none",
1475
+ cursor: "pointer",
1476
+ color: "dark",
1477
+ _disabled: {
1478
+ color: "gray.400",
1479
+ bg: "white",
1480
+ cursor: "not-allowed"
1481
+ },
1482
+ _highlight: {
1483
+ background: "white",
1484
+ bg: "gray.50",
1485
+ color: "dark",
1486
+ outline: 0
1487
+ },
1488
+ _active: {
1489
+ background: "ice.50",
1490
+ bg: "ice.50",
1491
+ color: "dark",
1492
+ outline: 0
1493
+ }
1494
+ }
1495
+ });
1496
+
1497
+ // src/recipes/badge.ts
1498
+ import { defineRecipe as defineRecipe6 } from "@pandacss/dev";
1499
+ var badgeRecipe = defineRecipe6({
1500
+ className: "badge",
1501
+ jsx: ["MpBadge", "mp-badge"],
1502
+ base: {
1503
+ display: "inline-flex",
1504
+ alignItems: "center",
1505
+ borderRadius: "999px"
1506
+ },
1507
+ variants: {
1508
+ variant: {
1509
+ solid: {
1510
+ color: "white"
1511
+ },
1512
+ subtle: {}
1513
+ },
1514
+ variantColor: {
1515
+ blue: {},
1516
+ green: {},
1517
+ orange: {},
1518
+ red: {},
1519
+ gray: {}
1520
+ },
1521
+ size: {
1522
+ sm: {
1523
+ fontSize: "xs",
1524
+ fontWeight: "semibold",
1525
+ lineHeight: "1sm",
1526
+ letterSpacing: "normal",
1527
+ height: "4"
1528
+ },
1529
+ md: {
1530
+ fontSize: "md",
1531
+ fontWeight: "regular",
1532
+ lineHeight: "md",
1533
+ letterSpacing: "normal",
1534
+ height: "5"
1535
+ }
1536
+ }
1537
+ },
1538
+ compoundVariants: [
1539
+ // Size
1540
+ {
1541
+ variant: "solid",
1542
+ size: "md",
1543
+ css: {
1544
+ paddingX: "1.5",
1545
+ paddingY: "0.5"
1546
+ }
1547
+ },
1548
+ {
1549
+ variant: "solid",
1550
+ size: "sm",
1551
+ css: {
1552
+ paddingX: "1",
1553
+ paddingY: "0.5"
1554
+ }
1555
+ },
1556
+ {
1557
+ variant: "subtle",
1558
+ size: "md",
1559
+ css: {
1560
+ paddingX: "2",
1561
+ paddingY: "0"
1562
+ }
1563
+ },
1564
+ {
1565
+ variant: "subtle",
1566
+ size: "sm",
1567
+ css: {
1568
+ paddingX: "1",
1569
+ paddingY: "0"
1570
+ }
1571
+ },
1572
+ // Solid
1573
+ {
1574
+ variant: "solid",
1575
+ variantColor: "blue",
1576
+ css: {
1577
+ backgroundColor: "sky.400"
1578
+ }
1579
+ },
1580
+ {
1581
+ variant: "solid",
1582
+ variantColor: "green",
1583
+ css: {
1584
+ backgroundColor: "teal.400"
1585
+ }
1586
+ },
1587
+ {
1588
+ variant: "solid",
1589
+ variantColor: "orange",
1590
+ css: {
1591
+ backgroundColor: "amber.400"
1592
+ }
1593
+ },
1594
+ {
1595
+ variant: "solid",
1596
+ variantColor: "red",
1597
+ css: {
1598
+ backgroundColor: "rose.400"
1599
+ }
1600
+ },
1601
+ {
1602
+ variant: "solid",
1603
+ variantColor: "gray",
1604
+ css: {
1605
+ backgroundColor: "stone.400"
1606
+ }
1607
+ },
1608
+ // Subtle
1609
+ {
1610
+ variant: ["subtle"],
1611
+ variantColor: "blue",
1612
+ css: {
1613
+ backgroundColor: "blue.50",
1614
+ color: "blue.700"
1615
+ }
1616
+ },
1617
+ {
1618
+ variant: ["subtle"],
1619
+ variantColor: "green",
1620
+ css: {
1621
+ backgroundColor: "green.50",
1622
+ color: "green.700"
1623
+ }
1624
+ },
1625
+ {
1626
+ variant: ["subtle"],
1627
+ variantColor: "orange",
1628
+ css: {
1629
+ backgroundColor: "orange.50",
1630
+ color: "orange.700"
1631
+ }
1632
+ },
1633
+ {
1634
+ variant: ["subtle"],
1635
+ variantColor: "red",
1636
+ css: {
1637
+ backgroundColor: "red.50",
1638
+ color: "red.700"
1639
+ }
1640
+ },
1641
+ {
1642
+ variant: ["subtle"],
1643
+ variantColor: "gray",
1644
+ css: {
1645
+ backgroundColor: "gray.50",
1646
+ color: "black"
1647
+ }
1648
+ }
1649
+ ],
1650
+ defaultVariants: {
1651
+ variant: "solid",
1652
+ size: "md",
1653
+ variantColor: "blue"
1654
+ }
1655
+ });
1656
+
1657
+ // src/recipes/textarea.ts
1658
+ import { defineRecipe as defineRecipe7 } from "@pandacss/dev";
1659
+ var textareaRecipe = defineRecipe7({
1660
+ className: "textarea",
1661
+ jsx: ["MpTextarea", "mp-textarea"],
1662
+ base: {
1663
+ position: "relative",
1664
+ display: "flex",
1665
+ alignItems: "center",
1666
+ outline: "0",
1667
+ borderWidth: "1px",
1668
+ borderColor: "gray.100",
1669
+ borderRadius: "md",
1670
+ color: "dark",
1671
+ backgroundColor: "white",
1672
+ appearance: "none",
1673
+ transition: "all 250ms",
1674
+ minWidth: "65",
1675
+ minHeight: "20",
1676
+ fontSize: "md",
1677
+ fontWeight: "regular",
1678
+ lineHeight: "md",
1679
+ paddingX: "3",
1680
+ paddingTop: "2",
1681
+ paddingBottom: "5",
1682
+ resize: "both",
1683
+ _hover: {
1684
+ borderColor: "gray.400"
1685
+ },
1686
+ _focus: {
1687
+ borderColor: "blue.500",
1688
+ boxShadow: "outer",
1689
+ _hover: {
1690
+ borderColor: "blue.500"
1691
+ }
1692
+ },
1693
+ _disabled: {
1694
+ color: "gray.400",
1695
+ backgroundColor: "gray.50",
1696
+ borderColor: "gray.100",
1697
+ cursor: "not-allowed"
1698
+ },
1699
+ _invalid: {
1700
+ borderColor: "red.400"
1701
+ },
1702
+ _readOnly: {
1703
+ boxShadow: "none",
1704
+ userSelect: "all"
1705
+ }
1706
+ },
1707
+ variants: {
1708
+ isFullWidth: {
1709
+ true: {
1710
+ width: "100%"
1711
+ }
1712
+ }
1713
+ }
1714
+ });
1715
+
1716
+ // src/recipes/tooltip.ts
1717
+ import { defineRecipe as defineRecipe8 } from "@pandacss/dev";
1718
+ var tooltipRecipe = defineRecipe8({
1719
+ className: "tooltip",
1720
+ jsx: ["MpTooltip", "mp-tooltip"],
1721
+ base: {
1722
+ px: "2",
1723
+ py: "1",
1724
+ borderRadius: "sm",
1725
+ fontWeight: "regular",
1726
+ pointerEvents: "none",
1727
+ fontSize: "sm",
1728
+ shadow: "md",
1729
+ maxW: "300px",
1730
+ zIndex: "tooltip",
1731
+ boxShadow: "sm",
1732
+ bg: "overlay",
1733
+ color: "white",
1734
+ whiteSpace: "normal",
1735
+ overflowWrap: "break-word"
1736
+ }
1737
+ });
1738
+
1739
+ // src/recipes/tabs.ts
1740
+ import { defineRecipe as defineRecipe9 } from "@pandacss/dev";
1741
+ var tabListRecipe = defineRecipe9({
1742
+ className: "tab-list",
1743
+ jsx: ["MpTabList", "mp-tab-list"],
1744
+ base: {
1745
+ display: "flex",
1746
+ overflow: "auto",
1747
+ gap: "1.5rem",
1748
+ fontSize: "md",
1749
+ color: "gray.600",
1750
+ marginBottom: 6,
1751
+ padding: 0.5,
1752
+ alignItems: "center",
1753
+ justifyContent: "flex-start",
1754
+ maxWidth: "full"
1755
+ }
1756
+ });
1757
+ var tabRecipe = defineRecipe9({
1758
+ className: "tab",
1759
+ jsx: ["MpTab", "mp-tab"],
1760
+ base: {
1761
+ display: "flex",
1762
+ cursor: "pointer",
1763
+ alignItems: "center",
1764
+ justifyContent: "center",
1765
+ transition: "all 0.2s",
1766
+ position: "relative",
1767
+ mb: "1px",
1768
+ pt: "3",
1769
+ pb: "4",
1770
+ px: "1",
1771
+ color: "gray.600",
1772
+ _hover: {
1773
+ color: "dark"
1774
+ },
1775
+ _disabled: {
1776
+ opacity: 0.4,
1777
+ cursor: "not-allowed"
1778
+ },
1779
+ _focus: {
1780
+ shadow: "0 0 0 2px #E0EEFF",
1781
+ borderRadius: "sm"
1782
+ }
1783
+ },
1784
+ variants: {
1785
+ variantColor: {
1786
+ blue: {},
1787
+ green: {},
1788
+ orange: {},
1789
+ red: {},
1790
+ gray: {}
1791
+ },
1792
+ isSelected: {
1793
+ true: {}
1794
+ }
1795
+ },
1796
+ compoundVariants: [
1797
+ {
1798
+ variantColor: "blue",
1799
+ isSelected: true,
1800
+ css: {
1801
+ color: "blue.400",
1802
+ _hover: {
1803
+ color: "blue.500"
1804
+ }
1805
+ }
1806
+ },
1807
+ {
1808
+ variantColor: "green",
1809
+ isSelected: true,
1810
+ css: {
1811
+ color: "green.400",
1812
+ _hover: {
1813
+ color: "green.500"
1814
+ }
1815
+ }
1816
+ },
1817
+ {
1818
+ variantColor: "orange",
1819
+ isSelected: true,
1820
+ css: {
1821
+ color: "orange.400",
1822
+ _hover: {
1823
+ color: "orange.500"
1824
+ }
1825
+ }
1826
+ },
1827
+ {
1828
+ variantColor: "red",
1829
+ isSelected: true,
1830
+ css: {
1831
+ color: "red.400",
1832
+ _hover: {
1833
+ color: "red.500"
1834
+ }
1835
+ }
1836
+ },
1837
+ {
1838
+ variantColor: "gray",
1839
+ isSelected: true,
1840
+ css: {
1841
+ color: "gray.400",
1842
+ _hover: {
1843
+ color: "gray.500"
1844
+ }
1845
+ }
1846
+ }
1847
+ ],
1848
+ defaultVariants: {
1849
+ variantColor: "blue",
1850
+ isSelected: false
1851
+ }
1852
+ });
1853
+ var selectedBorderRecipe = defineRecipe9({
1854
+ className: "selected-border",
1855
+ jsx: ["MpSelectedBorder", "mp-selected-border"],
1856
+ base: {
1857
+ position: "absolute",
1858
+ bottom: "-2px",
1859
+ width: "calc(100% - 8px)",
1860
+ height: "0.5"
1861
+ },
1862
+ variants: {
1863
+ variantColor: {
1864
+ blue: {},
1865
+ green: {},
1866
+ orange: {},
1867
+ red: {},
1868
+ gray: {}
1869
+ },
1870
+ isSelected: {
1871
+ false: {
1872
+ background: "transparent",
1873
+ _groupHover: {
1874
+ background: "gray.400"
1875
+ }
1876
+ },
1877
+ true: {}
1878
+ }
1879
+ },
1880
+ compoundVariants: [
1881
+ {
1882
+ variantColor: "blue",
1883
+ isSelected: true,
1884
+ css: {
1885
+ background: "blue.400",
1886
+ _groupHover: {
1887
+ background: "blue.500"
1888
+ }
1889
+ }
1890
+ },
1891
+ {
1892
+ variantColor: "green",
1893
+ isSelected: true,
1894
+ css: {
1895
+ background: "green.400",
1896
+ _groupHover: {
1897
+ background: "green.500"
1898
+ }
1899
+ }
1900
+ },
1901
+ {
1902
+ variantColor: "orange",
1903
+ isSelected: true,
1904
+ css: {
1905
+ background: "orange.400",
1906
+ _groupHover: {
1907
+ background: "orange.500"
1908
+ }
1909
+ }
1910
+ },
1911
+ {
1912
+ variantColor: "red",
1913
+ isSelected: true,
1914
+ css: {
1915
+ background: "red.400",
1916
+ _groupHover: {
1917
+ background: "red.500"
1918
+ }
1919
+ }
1920
+ },
1921
+ {
1922
+ variantColor: "gray",
1923
+ isSelected: true,
1924
+ css: {
1925
+ background: "gray.400",
1926
+ _groupHover: {
1927
+ background: "gray.500"
1928
+ }
1929
+ }
1930
+ }
1931
+ ],
1932
+ defaultVariants: {
1933
+ variantColor: "blue",
1934
+ isSelected: false
1935
+ }
1936
+ });
1937
+
1938
+ // src/recipes/checkbox.ts
1939
+ import { defineSlotRecipe as defineSlotRecipe6 } from "@pandacss/dev";
1940
+ var checkboxSlotRecipe = defineSlotRecipe6({
1941
+ className: "checkbox",
1942
+ jsx: ["MpCheckbox", "mp-checkbox"],
1943
+ slots: ["root", "control", "label"],
1944
+ base: {
1945
+ root: {
1946
+ position: "relative",
1947
+ display: "inline-flex",
1948
+ alignItems: "center",
1949
+ justifyContent: "center",
1950
+ gap: "2",
1951
+ cursor: "pointer",
1952
+ outline: "none",
1953
+ "&[data-has-description=true]": {
1954
+ alignItems: "flex-start",
1955
+ "& .mp-checkbox__control": {
1956
+ marginTop: "1"
1957
+ }
1958
+ },
1959
+ "& .mp-shared__hidden": {
1960
+ "&:focus + .mp-checkbox__control": {
1961
+ borderColor: "blue.400",
1962
+ boxShadow: "focus"
1963
+ }
1964
+ },
1965
+ _hover: {
1966
+ "& .mp-checkbox__control": {
1967
+ borderColor: "gray.400"
1968
+ }
1969
+ },
1970
+ _disabled: {
1971
+ cursor: "not-allowed",
1972
+ "& .mp-checkbox__control": {
1973
+ borderColor: "gray.100 !important",
1974
+ background: "gray.50 !important",
1975
+ boxShadow: "none !important"
1976
+ }
1977
+ },
1978
+ _invalid: {
1979
+ "& .mp-checkbox__control": {
1980
+ borderColor: "red.400",
1981
+ background: "white"
1982
+ }
1983
+ },
1984
+ _checked: {
1985
+ "& .mp-checkbox__control": {
1986
+ borderColor: "blue.400",
1987
+ background: "blue.400"
1988
+ },
1989
+ _hover: {
1990
+ "& .mp-checkbox__control": {
1991
+ borderColor: "blue.400"
1992
+ }
1993
+ }
1994
+ },
1995
+ _indeterminate: {
1996
+ "& .mp-checkbox__control": {
1997
+ borderColor: "blue.400",
1998
+ background: "blue.400"
1999
+ },
2000
+ _hover: {
2001
+ "& .mp-checkbox__control": {
2002
+ borderColor: "blue.400"
2003
+ }
2004
+ }
2005
+ }
2006
+ },
2007
+ control: {
2008
+ flex: "none",
2009
+ transitionDuration: "250ms",
2010
+ transitionProperty: "background, border-color, box-shadow",
2011
+ transitionTimingFunction: "linear",
2012
+ position: "relative",
2013
+ display: "inline-flex",
2014
+ alignItems: "center",
2015
+ justifyContent: "center",
2016
+ width: "18px",
2017
+ height: "18px",
2018
+ borderWidth: "2px",
2019
+ borderColor: "gray.100",
2020
+ borderRadius: "md",
2021
+ background: "white"
2022
+ },
2023
+ label: {
2024
+ background: "transparent"
2025
+ }
2026
+ }
2027
+ });
2028
+
2029
+ // src/recipes/radio.ts
2030
+ import { defineSlotRecipe as defineSlotRecipe7 } from "@pandacss/dev";
2031
+ var radioSlotRecipe = defineSlotRecipe7({
2032
+ className: "radio",
2033
+ jsx: ["MpRadio", "mp-radio"],
2034
+ slots: ["root", "control", "label"],
2035
+ base: {
2036
+ root: {
2037
+ position: "relative",
2038
+ display: "inline-flex",
2039
+ alignItems: "center",
2040
+ justifyContent: "center",
2041
+ gap: "2",
2042
+ cursor: "pointer",
2043
+ outline: "none",
2044
+ "&[data-has-description=true]": {
2045
+ alignItems: "flex-start",
2046
+ "& .mp-radio__control": {
2047
+ marginTop: "1"
2048
+ }
2049
+ },
2050
+ "& .mp-shared__hidden": {
2051
+ "&:focus + .mp-radio__control": {
2052
+ borderColor: "blue.400",
2053
+ boxShadow: "focus"
2054
+ }
2055
+ },
2056
+ _hover: {
2057
+ "& .mp-radio__control": {
2058
+ borderColor: "gray.400"
2059
+ }
2060
+ },
2061
+ _disabled: {
2062
+ cursor: "not-allowed",
2063
+ "& .mp-radio__control": {
2064
+ borderColor: "gray.100 !important",
2065
+ background: "gray.50 !important",
2066
+ boxShadow: "none !important",
2067
+ "& div": {
2068
+ background: "gray.400"
2069
+ }
2070
+ }
2071
+ },
2072
+ _invalid: {
2073
+ "& .mp-radio__control": {
2074
+ borderColor: "red.400",
2075
+ background: "white"
2076
+ }
2077
+ },
2078
+ _checked: {
2079
+ "& .mp-radio__control": {
2080
+ borderColor: "blue.400",
2081
+ background: "blue.400"
2082
+ },
2083
+ _hover: {
2084
+ "& .mp-radio__control": {
2085
+ borderColor: "blue.400"
2086
+ }
2087
+ }
2088
+ },
2089
+ _indeterminate: {
2090
+ "& .mp-radio__control": {
2091
+ borderColor: "blue.400",
2092
+ background: "blue.400"
2093
+ },
2094
+ _hover: {
2095
+ "& .mp-radio__control": {
2096
+ borderColor: "blue.400"
2097
+ }
2098
+ }
2099
+ }
2100
+ },
2101
+ control: {
2102
+ flex: "none",
2103
+ transitionDuration: "250ms",
2104
+ transitionProperty: "background, border-color, box-shadow",
2105
+ transitionTimingFunction: "linear",
2106
+ position: "relative",
2107
+ display: "inline-flex",
2108
+ alignItems: "center",
2109
+ justifyContent: "center",
2110
+ width: "18px",
2111
+ height: "18px",
2112
+ borderWidth: "2px",
2113
+ borderColor: "gray.100",
2114
+ borderRadius: "full",
2115
+ background: "white",
2116
+ "& div": {
2117
+ width: "2.5",
2118
+ height: "2.5",
2119
+ background: "white",
2120
+ borderRadius: "full"
2121
+ }
2122
+ },
2123
+ label: {
2124
+ background: "transparent"
2125
+ }
2126
+ }
2127
+ });
2128
+
2129
+ // src/recipes/shared.ts
2130
+ import { defineSlotRecipe as defineSlotRecipe8 } from "@pandacss/dev";
2131
+ var sharedSlotRecipe = defineSlotRecipe8({
2132
+ className: "shared",
2133
+ jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
2134
+ slots: ["hidden"],
2135
+ base: {
2136
+ hidden: {
2137
+ clip: "rect(0px, 0px, 0px, 0px)",
2138
+ height: "1px",
2139
+ width: "1px",
2140
+ overflow: "hidden",
2141
+ whiteSpace: "nowrap",
2142
+ position: "absolute"
2143
+ }
2144
+ }
2145
+ });
2146
+
2147
+ // src/recipes/toggle.ts
2148
+ import { defineSlotRecipe as defineSlotRecipe9 } from "@pandacss/dev";
2149
+ var toggleSlotRecipe = defineSlotRecipe9({
2150
+ className: "toggle",
2151
+ jsx: ["MpToggle", "mp-toggle"],
2152
+ slots: ["root", "control", "label"],
2153
+ base: {
2154
+ root: {
2155
+ position: "relative",
2156
+ display: "inline-flex",
2157
+ alignItems: "center",
2158
+ justifyContent: "center",
2159
+ gap: "3",
2160
+ cursor: "pointer",
2161
+ outline: "none",
2162
+ "&[data-has-description=true]": {
2163
+ alignItems: "flex-start",
2164
+ "& .mp-toggle__control": {
2165
+ marginTop: "1"
2166
+ }
2167
+ },
2168
+ "& .mp-shared__hidden": {
2169
+ "&:focus + .mp-toggle__control": {
2170
+ borderColor: "blue.400",
2171
+ boxShadow: "focus"
2172
+ }
2173
+ },
2174
+ _hover: {
2175
+ "& .mp-toggle__control": {
2176
+ borderColor: "gray.400",
2177
+ background: "gray.400"
2178
+ }
2179
+ },
2180
+ _disabled: {
2181
+ cursor: "not-allowed",
2182
+ "& .mp-toggle__control": {
2183
+ borderColor: "gray.100 !important",
2184
+ background: "gray.50 !important",
2185
+ boxShadow: "none !important",
2186
+ "& div": {
2187
+ background: "gray.100"
2188
+ }
2189
+ }
2190
+ },
2191
+ _invalid: {
2192
+ "& .mp-toggle__control": {
2193
+ borderColor: "red.400",
2194
+ background: "red.400"
2195
+ }
2196
+ },
2197
+ _checked: {
2198
+ "& .mp-toggle__control": {
2199
+ borderColor: "blue.400",
2200
+ background: "blue.400",
2201
+ "& div": {
2202
+ transform: "translateX(var(--mp-sizes-3))"
2203
+ }
2204
+ },
2205
+ _hover: {
2206
+ "& .mp-toggle__control": {
2207
+ borderColor: "blue.400",
2208
+ background: "blue.400"
2209
+ }
2210
+ }
2211
+ }
2212
+ },
2213
+ control: {
2214
+ flex: "none",
2215
+ position: "relative",
2216
+ display: "inline-flex",
2217
+ alignItems: "center",
2218
+ justifyContent: "flex-start",
2219
+ width: "7",
2220
+ height: "4",
2221
+ borderWidth: "1px",
2222
+ borderColor: "gray.100",
2223
+ borderRadius: "lg",
2224
+ background: "gray.100",
2225
+ "& div": {
2226
+ transitionDuration: "250ms",
2227
+ transitionProperty: "transform",
2228
+ transitionTimingFunction: "linear",
2229
+ transform: "translateX(2px)",
2230
+ width: "3",
2231
+ height: "3",
2232
+ background: "white",
2233
+ borderRadius: "full"
2234
+ }
2235
+ },
2236
+ label: {
2237
+ background: "transparent"
2238
+ }
2239
+ }
2240
+ });
2241
+
2242
+ // src/recipes/table.ts
2243
+ import { defineRecipe as defineRecipe10 } from "@pandacss/dev";
2244
+ var tableRecipe = defineRecipe10({
2245
+ className: "table",
2246
+ jsx: ["MpTable", "mp-table"],
2247
+ base: {
2248
+ position: "relative",
2249
+ width: "full",
2250
+ display: "table",
2251
+ borderCollapse: "collapse",
2252
+ borderSpacing: "0px",
2253
+ whiteSpace: "nowrap",
2254
+ "&[data-table-hoverable=true]": {
2255
+ "& tr": {
2256
+ _hover: {
2257
+ "& > td": {
2258
+ backgroundColor: "gray.50"
2259
+ }
2260
+ }
2261
+ }
2262
+ },
2263
+ thead: {
2264
+ width: "full",
2265
+ backgroundColor: "gray.25",
2266
+ "&[data-table-head-fixed=true]": {
2267
+ position: "sticky",
2268
+ zIndex: "sticky",
2269
+ top: "0",
2270
+ boxShadow: "0px 2px var(--mp-colors-gray-100)"
2271
+ }
2272
+ },
2273
+ tbody: {
2274
+ width: "full"
2275
+ },
2276
+ tr: {
2277
+ width: "full",
2278
+ boxSizing: "border-box",
2279
+ whiteSpace: "nowrap"
2280
+ },
2281
+ "th, td": {
2282
+ cursor: "default",
2283
+ paddingLeft: "2",
2284
+ paddingRight: "4",
2285
+ paddingY: "2",
2286
+ height: "12",
2287
+ textStyle: "label.md",
2288
+ textAlign: "left",
2289
+ borderBottom: "sm",
2290
+ borderStyle: "solid",
2291
+ borderColor: "gray.100",
2292
+ transition: "background linear 120ms"
2293
+ },
2294
+ th: {
2295
+ fontWeight: "semiBold",
2296
+ backgroundColor: "gray.25"
2297
+ },
2298
+ td: {
2299
+ fontWeight: "regular",
2300
+ backgroundColor: "white"
2301
+ },
2302
+ "th[data-table-cell-fixed=true], td[data-table-cell-fixed=true]": {
2303
+ position: "sticky",
2304
+ zIndex: "docked",
2305
+ left: "0",
2306
+ right: "0"
2307
+ }
2308
+ }
2309
+ });
2310
+ var tableContainerRecipe = defineRecipe10({
2311
+ className: "table-container",
2312
+ jsx: ["MpTableContainer", "mp-table-container"],
2313
+ base: {
2314
+ position: "relative",
2315
+ overflow: "auto",
2316
+ "&[data-table-has-left-shadow=true]": {
2317
+ _before: {
2318
+ boxShadow: "inset 10px 0 8px -8px rgba(5, 5, 5, 0.08)"
2319
+ }
2320
+ },
2321
+ "&[data-table-has-right-shadow=true]": {
2322
+ _after: {
2323
+ boxShadow: "inset -10px 0 8px -8px rgba(5, 5, 5, 0.08)"
2324
+ }
2325
+ },
2326
+ _before: {
2327
+ content: '""',
2328
+ position: "absolute",
2329
+ zIndex: "docked",
2330
+ boxShadow: "none",
2331
+ transition: "box-shadow 300ms",
2332
+ insetInlineStart: 0,
2333
+ width: "30px",
2334
+ top: 0,
2335
+ bottom: 0,
2336
+ pointerEvents: "none"
2337
+ },
2338
+ _after: {
2339
+ content: '""',
2340
+ position: "absolute",
2341
+ zIndex: "docked",
2342
+ boxShadow: "none",
2343
+ transition: "box-shadow linear 300ms",
2344
+ insetInlineEnd: 0,
2345
+ width: "30px",
2346
+ top: 0,
2347
+ bottom: 0,
2348
+ pointerEvents: "none"
2349
+ }
2350
+ }
2351
+ });
2352
+
2353
+ // src/recipes/progress.ts
2354
+ import { defineSlotRecipe as defineSlotRecipe10 } from "@pandacss/dev";
2355
+ var progressSlotRecipe = defineSlotRecipe10({
2356
+ className: "progress",
2357
+ jsx: ["MpProgress", "mp-progress"],
2358
+ slots: ["root", "linear", "circularBase", "circularTrack"],
2359
+ base: {
2360
+ root: {
2361
+ position: "relative",
2362
+ width: "full",
2363
+ borderRadius: "100px",
2364
+ background: "gray.100",
2365
+ transition: "all 250ms linear"
2366
+ },
2367
+ linear: {
2368
+ transition: "all 250ms linear",
2369
+ height: "full",
2370
+ borderRadius: "100px",
2371
+ background: "var(--mp-progress-color)",
2372
+ width: "var(--mp-progress-width)"
2373
+ },
2374
+ circularBase: {
2375
+ width: "full",
2376
+ height: "full",
2377
+ borderRadius: "full",
2378
+ background: "conic-gradient(var(--mp-progress-color) var(--mp-progress-width), var(--mp-colors-gray-100) 0deg)"
2379
+ },
2380
+ circularTrack: {
2381
+ width: "calc(100% - 6px)",
2382
+ height: "calc(100% - 6px)",
2383
+ position: "absolute",
2384
+ top: "50%",
2385
+ left: "50%",
2386
+ transform: "translate(-50%, -50%)",
2387
+ backgroundColor: "white",
2388
+ borderRadius: "full"
2389
+ }
2390
+ },
2391
+ variants: {
2392
+ size: {
2393
+ md: {
2394
+ linear: {
2395
+ height: "3"
2396
+ }
2397
+ },
2398
+ sm: {
2399
+ linear: {
2400
+ height: "2"
2401
+ }
2402
+ }
2403
+ },
2404
+ variant: {
2405
+ linear: {
2406
+ root: {
2407
+ borderRadius: "100px"
2408
+ }
2409
+ },
2410
+ circular: {
2411
+ root: {
2412
+ borderRadius: "full",
2413
+ width: "22px",
2414
+ height: "22px",
2415
+ background: "transparent",
2416
+ alignSelf: "start"
2417
+ }
2418
+ }
2419
+ }
2420
+ },
2421
+ defaultVariants: {
2422
+ variant: "linear",
2423
+ size: "md"
2424
+ }
2425
+ });
2426
+
2427
+ // src/recipes/index.ts
2428
+ var recipes = {
2429
+ buttonRecipe,
2430
+ buttonGroupRecipe,
2431
+ textRecipe,
2432
+ iconRecipe,
2433
+ spinnerRecipe,
2434
+ popoverContentRecipe,
2435
+ popoverListRecipe,
2436
+ popoverListItemRecipe,
2437
+ badgeRecipe,
2438
+ textareaRecipe,
2439
+ tooltipRecipe,
2440
+ tabListRecipe,
2441
+ tabRecipe,
2442
+ selectedBorderRecipe,
2443
+ tableRecipe,
2444
+ tableContainerRecipe
2445
+ };
2446
+ var slotRecipes = {
2447
+ accordion,
2448
+ checkboxSlotRecipe,
2449
+ radioSlotRecipe,
2450
+ sharedSlotRecipe,
2451
+ progressSlotRecipe,
2452
+ toggleSlotRecipe,
2453
+ tagSlotRecipe,
2454
+ inputSlotRecipe,
2455
+ inputGroupSlotRecipe,
2456
+ inputAddonSlotRecipe,
2457
+ avatarSlotRecipe,
2458
+ avatarGroupSlotRecipe,
2459
+ selectSlotRecipe
2460
+ };
2461
+
2462
+ // src/breakpoints.ts
2463
+ var breakpoints = {
2464
+ sm: "22.5em",
2465
+ md: "48em",
2466
+ lg: "64em",
2467
+ xl: "80em"
2468
+ };
2469
+
2470
+ // src/index.ts
2471
+ var preset = definePreset({
2472
+ theme: {
2473
+ extend: {
2474
+ breakpoints,
2475
+ keyframes,
2476
+ textStyles,
2477
+ tokens,
2478
+ recipes,
2479
+ slotRecipes
2480
+ }
2481
+ },
2482
+ conditions,
2483
+ globalCss
2484
+ });
2485
+ var src_default = preset;
2486
+ export {
2487
+ src_default as default
2488
+ };