@okshaun/components 0.5.8 → 1.0.1

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 (129) hide show
  1. package/README.md +22 -26
  2. package/dist/.mcp.json +11 -0
  3. package/dist/index.d.ts +3 -1268
  4. package/dist/index.js +1231 -957
  5. package/dist/index.js.map +1 -1
  6. package/dist/okshaun-logo-white.svg +11 -0
  7. package/dist/okshaun-logo.svg +11 -0
  8. package/dist/preset-BzrKiUEH.js +8452 -0
  9. package/dist/preset-BzrKiUEH.js.map +1 -0
  10. package/dist/preset.js +3 -7234
  11. package/dist/preset.js.map +1 -1
  12. package/dist/specs/animation-styles.json +4 -0
  13. package/dist/specs/color-palette.json +98 -0
  14. package/dist/specs/conditions.json +1901 -0
  15. package/dist/specs/keyframes.json +137 -0
  16. package/dist/specs/layer-styles.json +23 -0
  17. package/dist/specs/patterns.json +475 -0
  18. package/dist/specs/recipes.json +907 -0
  19. package/dist/specs/semantic-tokens.json +2837 -0
  20. package/dist/specs/text-styles.json +149 -0
  21. package/dist/specs/tokens.json +2750 -0
  22. package/dist/sprite.svg +1 -1
  23. package/dist/sprite.symbol.html +14 -14
  24. package/dist/styles/global.css +148 -0
  25. package/dist/styles/recipes/avatar.css +185 -0
  26. package/dist/styles/recipes/badge.css +85 -0
  27. package/dist/styles/recipes/breadcrumbs.css +38 -0
  28. package/dist/styles/recipes/button.css +195 -0
  29. package/dist/styles/recipes/card.css +57 -0
  30. package/dist/styles/recipes/checkbox-input.css +12 -0
  31. package/dist/styles/recipes/checkbox.css +90 -0
  32. package/dist/styles/recipes/chip.css +137 -0
  33. package/dist/styles/recipes/code.css +12 -0
  34. package/dist/styles/recipes/divider.css +43 -0
  35. package/dist/styles/recipes/form-field.css +39 -0
  36. package/dist/styles/recipes/heading.css +40 -0
  37. package/dist/styles/recipes/icon-button.css +181 -0
  38. package/dist/styles/recipes/label.css +14 -0
  39. package/dist/styles/recipes/link.css +49 -0
  40. package/dist/styles/recipes/menu.css +141 -0
  41. package/dist/styles/recipes/modal.css +99 -0
  42. package/dist/styles/recipes/pre.css +16 -0
  43. package/dist/styles/recipes/radio-input.css +7 -0
  44. package/dist/styles/recipes/radio.css +82 -0
  45. package/dist/styles/recipes/select.css +103 -0
  46. package/dist/styles/recipes/spinner.css +36 -0
  47. package/dist/styles/recipes/tag.css +27 -0
  48. package/dist/styles/recipes/text.css +46 -0
  49. package/dist/styles/recipes/textarea.css +91 -0
  50. package/dist/styles/recipes/textinput.css +87 -0
  51. package/dist/styles/recipes/theme-switcher.css +53 -0
  52. package/dist/styles/recipes/toggle-input.css +12 -0
  53. package/dist/styles/recipes/toggle.css +125 -0
  54. package/dist/styles/recipes/tooltip.css +133 -0
  55. package/dist/styles/recipes.css +30 -0
  56. package/dist/styles/reset.css +1 -0
  57. package/dist/styles/tokens.css +1016 -0
  58. package/dist/styles/utilities.css +1694 -0
  59. package/dist/styles.css +7 -0
  60. package/dist/svgs/building.svg +1 -0
  61. package/dist/types/index.d.ts +21626 -0
  62. package/dist/types/preset.d.ts +19 -0
  63. package/package.json +37 -35
  64. package/src/recipes/avatar.ts +205 -0
  65. package/src/recipes/badge.ts +203 -0
  66. package/src/recipes/box.ts +13 -0
  67. package/src/recipes/breadcrumbs.ts +29 -0
  68. package/src/recipes/button.ts +319 -0
  69. package/src/recipes/card.ts +148 -0
  70. package/src/recipes/checkbox.ts +87 -0
  71. package/src/recipes/checkboxinput.ts +15 -0
  72. package/src/recipes/chip.ts +189 -0
  73. package/src/recipes/code.ts +35 -0
  74. package/src/recipes/divider.ts +41 -0
  75. package/src/recipes/formField.ts +60 -0
  76. package/src/recipes/index.ts +28 -0
  77. package/src/recipes/menu.ts +205 -0
  78. package/src/recipes/modal.ts +120 -0
  79. package/src/recipes/radio.ts +71 -0
  80. package/src/recipes/radioinput.ts +12 -0
  81. package/src/recipes/select.ts +142 -0
  82. package/src/recipes/spinner.ts +52 -0
  83. package/src/recipes/tag.ts +262 -0
  84. package/src/recipes/text.ts +193 -0
  85. package/src/recipes/textarea.ts +153 -0
  86. package/src/recipes/textinput.ts +100 -0
  87. package/src/recipes/themeSwitcher.ts +48 -0
  88. package/src/recipes/toggle.ts +116 -0
  89. package/src/recipes/toggleinput.ts +16 -0
  90. package/src/recipes/tooltip.ts +359 -0
  91. package/src/styles/index.css +1 -0
  92. package/src/styles/primitives/animations.ts +16 -0
  93. package/src/styles/primitives/aspectRatios.ts +22 -0
  94. package/src/styles/primitives/blurs.ts +25 -0
  95. package/src/styles/primitives/borderWidths.ts +10 -0
  96. package/src/styles/primitives/borders.ts +36 -0
  97. package/src/styles/primitives/colors.ts +228 -0
  98. package/src/styles/primitives/durations.ts +25 -0
  99. package/src/styles/primitives/easings.ts +19 -0
  100. package/src/styles/primitives/fontSizes.ts +16 -0
  101. package/src/styles/primitives/fontWeights.ts +9 -0
  102. package/src/styles/primitives/fonts.ts +18 -0
  103. package/src/styles/primitives/index.ts +46 -0
  104. package/src/styles/primitives/letterSpacings.ts +22 -0
  105. package/src/styles/primitives/lineHeights.ts +16 -0
  106. package/src/styles/primitives/radii.ts +14 -0
  107. package/src/styles/primitives/shadows.ts +73 -0
  108. package/src/styles/primitives/sizes.ts +86 -0
  109. package/src/styles/primitives/spacings.ts +7 -0
  110. package/src/styles/semantics/colors.ts +774 -0
  111. package/src/styles/semantics/index.ts +2 -0
  112. package/src/styles/semantics/shadows.ts +32 -0
  113. package/src/styles/utilities/breakpoints.ts +8 -0
  114. package/src/styles/utilities/conditions.ts +140 -0
  115. package/src/styles/utilities/containerSizes.ts +17 -0
  116. package/src/styles/utilities/filters.ts +12 -0
  117. package/src/styles/utilities/globalStyle.ts +93 -0
  118. package/src/styles/utilities/index.ts +9 -0
  119. package/src/styles/utilities/keyframes.ts +89 -0
  120. package/src/styles/utilities/layerStyles.ts +18 -0
  121. package/src/styles/utilities/textStyles.ts +135 -0
  122. package/src/styles/utilities/transitions.ts +92 -0
  123. package/src/utils/injectSprite.ts +36 -0
  124. package/src/utils/splitProps.ts +19 -0
  125. package/src/utils/spriteContent.ts +4 -0
  126. package/dist/panda.buildinfo.json +0 -448
  127. package/dist/preset.d.ts +0 -5
  128. package/dist/transitions-DUgH88VW.js +0 -1041
  129. package/dist/transitions-DUgH88VW.js.map +0 -1
@@ -1,448 +0,0 @@
1
- {
2
- "schemaVersion": "1.4.3",
3
- "styles": {
4
- "atomic": [
5
- "display]___[value:grid",
6
- "gridTemplateColumns]___[value:repeat(auto-fill, minmax(200px, 1fr))",
7
- "gap]___[value:16",
8
- "width]___[value:full",
9
- "gridTemplateColumns]___[value:1fr 3fr",
10
- "gap]___[value:40",
11
- "borderTopWidth]___[value:1",
12
- "borderTopStyle]___[value:solid",
13
- "borderColor]___[value:border",
14
- "paddingBlock]___[value:24",
15
- "paddingBottom]___[value:96",
16
- "gridTemplateColumns]___[value:minmax(auto, 1fr) 1fr",
17
- "gap]___[value:24",
18
- "alignItems]___[value:center",
19
- "gridTemplateColumns]___[value:repeat(13, auto)",
20
- "gap]___[value:8",
21
- "gridTemplateColumns]___[value:repeat(3, 1fr)",
22
- "gridTemplateColumns]___[value:1fr 1fr",
23
- "minWidth]___[value:lg",
24
- "gridTemplateColumns]___[value:repeat(4, auto)",
25
- "alignItems]___[value:flex-start",
26
- "display]___[value:flex",
27
- "gap]___[value:8px",
28
- "flexDirection]___[value:row",
29
- "color]___[value:blue.60",
30
- "color]___[value:blue.40]___[cond:_dark",
31
- "justifyContent]___[value:space-between",
32
- "borderBottomWidth]___[value:1",
33
- "borderStyle]___[value:solid",
34
- "paddingBlock]___[value:4",
35
- "alignItems]___[value:flex-end",
36
- "height]___[value:80",
37
- "fontSize]___[value:14",
38
- "fontSize]___[value:16",
39
- "letterSpacing]___[value:widest",
40
- "textTransform]___[value:uppercase",
41
- "fontWeight]___[value:bold",
42
- "color]___[value:text.bold",
43
- "textStyle]___[value:mono.sm",
44
- "textStyle]___[value:heading.xs",
45
- "marginLeft]___[value:8",
46
- "paddingInlineStart]___[value:3",
47
- "paddingInlineEnd]___[value:3",
48
- "paddingInlineStart]___[value:2",
49
- "paddingInlineEnd]___[value:2",
50
- "paddingInlineStart]___[value:5",
51
- "paddingInlineEnd]___[value:5",
52
- "paddingInlineStart]___[value:7",
53
- "paddingInlineEnd]___[value:7",
54
- "flexDirection]___[value:column",
55
- "gap]___[value:4",
56
- "maxWidth]___[value:xs",
57
- "background]___[value:surface",
58
- "marginBottom]___[value:56",
59
- "position]___[value:sticky",
60
- "top]___[value:0",
61
- "zIndex]___[value:100",
62
- "padding]___[value:16",
63
- "position]___[value:relative",
64
- "width]___[value:100%",
65
- "maxWidth]___[value:5xl",
66
- "marginInline]___[value:auto",
67
- "paddingInline]___[value:24",
68
- "paddingInline]___[value:32]___[cond:md",
69
- "paddingInline]___[value:48]___[cond:lg",
70
- "color]___[value:gold.40",
71
- "gridColumn]___[value:1 / -1",
72
- "marginTop]___[value:32",
73
- "minWidth]___[value:16",
74
- "height]___[value:fit",
75
- "minWidth]___[value:20",
76
- "minWidth]___[value:24",
77
- "color]___[value:text.subtle",
78
- "background]___[value:bg.neutral",
79
- "color]___[value:text.inverse",
80
- "background]___[value:bg.neutral.boldest",
81
- "color]___[value:red.70",
82
- "color]___[value:red.20]___[cond:_dark",
83
- "background]___[value:red.20",
84
- "background]___[value:red.100]___[cond:_dark",
85
- "color]___[value:red.10",
86
- "color]___[value:red.100]___[cond:_dark",
87
- "background]___[value:red.60",
88
- "background]___[value:red.40]___[cond:_dark",
89
- "color]___[value:orange.70",
90
- "color]___[value:orange.20]___[cond:_dark",
91
- "background]___[value:orange.20",
92
- "background]___[value:orange.100]___[cond:_dark",
93
- "color]___[value:orange.10",
94
- "color]___[value:orange.100]___[cond:_dark",
95
- "background]___[value:orange.60",
96
- "background]___[value:orange.50]___[cond:_dark",
97
- "color]___[value:yellow.80",
98
- "color]___[value:yellow.50]___[cond:_dark",
99
- "background]___[value:yellow.20",
100
- "background]___[value:yellow.90]___[cond:_dark",
101
- "color]___[value:yellow.100",
102
- "color]___[value:yellow.100]___[cond:_dark",
103
- "background]___[value:yellow.40",
104
- "background]___[value:yellow.60]___[cond:_dark",
105
- "color]___[value:lime.70",
106
- "color]___[value:lime.20]___[cond:_dark",
107
- "background]___[value:lime.20",
108
- "background]___[value:lime.90]___[cond:_dark",
109
- "color]___[value:lime.10",
110
- "color]___[value:lime.100]___[cond:_dark",
111
- "background]___[value:lime.60",
112
- "background]___[value:lime.40]___[cond:_dark",
113
- "color]___[value:green.70",
114
- "color]___[value:green.20]___[cond:_dark",
115
- "background]___[value:green.20",
116
- "background]___[value:green.90]___[cond:_dark",
117
- "color]___[value:gray.10",
118
- "color]___[value:green.100]___[cond:_dark",
119
- "background]___[value:green.70",
120
- "background]___[value:green.40]___[cond:_dark",
121
- "color]___[value:teal.80",
122
- "color]___[value:teal.20]___[cond:_dark",
123
- "background]___[value:teal.20",
124
- "background]___[value:teal.90]___[cond:_dark",
125
- "color]___[value:teal.10",
126
- "color]___[value:teal.100]___[cond:_dark",
127
- "background]___[value:teal.60",
128
- "background]___[value:teal.50]___[cond:_dark",
129
- "color]___[value:blue.70",
130
- "color]___[value:blue.20]___[cond:_dark",
131
- "background]___[value:blue.20",
132
- "background]___[value:blue.90]___[cond:_dark",
133
- "color]___[value:blue.10",
134
- "color]___[value:blue.10]___[cond:_dark",
135
- "background]___[value:blue.50",
136
- "background]___[value:blue.70]___[cond:_dark",
137
- "color]___[value:indigo.70",
138
- "color]___[value:indigo.20]___[cond:_dark",
139
- "background]___[value:indigo.20",
140
- "background]___[value:indigo.90]___[cond:_dark",
141
- "color]___[value:indigo.10",
142
- "color]___[value:indigo.10]___[cond:_dark",
143
- "background]___[value:indigo.60",
144
- "background]___[value:indigo.70]___[cond:_dark",
145
- "color]___[value:purple.70",
146
- "color]___[value:purple.20]___[cond:_dark",
147
- "background]___[value:purple.20",
148
- "background]___[value:purple.90]___[cond:_dark",
149
- "color]___[value:purple.10",
150
- "color]___[value:purple.10]___[cond:_dark",
151
- "background]___[value:purple.60",
152
- "background]___[value:purple.80]___[cond:_dark",
153
- "color]___[value:magenta.80",
154
- "color]___[value:magenta.20]___[cond:_dark",
155
- "background]___[value:magenta.20",
156
- "background]___[value:magenta.90]___[cond:_dark",
157
- "color]___[value:magenta.10",
158
- "color]___[value:magenta.10]___[cond:_dark",
159
- "background]___[value:magenta.70",
160
- "background]___[value:magenta.70]___[cond:_dark",
161
- "color]___[value:tan.70",
162
- "color]___[value:tan.20]___[cond:_dark",
163
- "background]___[value:tan.20",
164
- "background]___[value:tan.80]___[cond:_dark",
165
- "color]___[value:tan.90]___[cond:_dark",
166
- "background]___[value:tan.60",
167
- "background]___[value:tan.40]___[cond:_dark",
168
- "cursor]___[value:pointer",
169
- "transition]___[value:all",
170
- "background]___[value:surface]___[cond:_hover",
171
- "boxShadow]___[value:elevated]___[cond:_hover",
172
- "background]___[value:surface]___[cond:_focusVisible",
173
- "boxShadow]___[value:elevated]___[cond:_focusVisible",
174
- "borderWidth]___[value:1]___[cond:_focusVisible",
175
- "outlineColor]___[value:border.focused]___[cond:_focusVisible",
176
- "borderColor]___[value:border.focused]___[cond:_focusVisible",
177
- "boxShadow]___[value:raised]___[cond:_disabled<___>_hover",
178
- "boxShadow]___[value:none]___[cond:_disabled<___>_hover",
179
- "color]___[value:yellow.60",
180
- "marginBottom]___[value:12",
181
- "marginBottom]___[value:8",
182
- "marginTop]___[value:12",
183
- "marginTop]___[value:8",
184
- "marginRight]___[value:12",
185
- "marginRight]___[value:8",
186
- "marginLeft]___[value:12",
187
- "width]___[value:280",
188
- "width]___[value:320",
189
- "padding]___[value:12",
190
- "background]___[value:surface.sunken",
191
- "borderRadius]___[value:8",
192
- "color]___[value:text.subtlest",
193
- "color]___[value:text.brand",
194
- "fontWeight]___[value:medium",
195
- "gap]___[value:6",
196
- "gap]___[value:2",
197
- "gap]___[value:3",
198
- "zIndex]___[value:0",
199
- "borderColor]___[value:var(--colors-bg)",
200
- "width]___[value:80",
201
- "fontWeight]___[value:500",
202
- "fontWeight]___[value:600",
203
- "fontSize]___[value:12",
204
- "background]___[value:bg.success.bold",
205
- "background]___[value:bg.danger.bold",
206
- "background]___[value:bg.neutral.bold",
207
- "background]___[value:bg.brand.bold",
208
- "color]___[value:icon.inverse",
209
- "width]___[value:12",
210
- "height]___[value:12",
211
- "gap]___[value:12",
212
- "marginInline]___[value:16",
213
- "width]___[value:24",
214
- "height]___[value:24",
215
- "width]___[value:20",
216
- "height]___[value:20",
217
- "width]___[value:32",
218
- "height]___[value:32",
219
- "width]___[value:fit",
220
- "flexWrap]___[value:wrap",
221
- "gap]___[value:1",
222
- "color]___[value:text.muted",
223
- "textStyle]___[value:mono.xs",
224
- "gridTemplateColumns]___[value:auto auto auto",
225
- "animationName]___[value:badgePop",
226
- "animationDuration]___[value:normal",
227
- "animationTimingFunction]___[value:default",
228
- "animationName]___[value:badgePopStandalone",
229
- "justifyContent]___[value:flex-end",
230
- "width]___[value:300px",
231
- "marginBottom]___[value:2",
232
- "fontSize]___[value:sm",
233
- "fontWeight]___[value:semibold",
234
- "textTransform]___[value:capitalize",
235
- "opacity]___[value:0",
236
- "opacity]___[value:1",
237
- "position]___[value:absolute",
238
- "left]___[value:0",
239
- "right]___[value:0",
240
- "bottom]___[value:0",
241
- "placeItems]___[value:center",
242
- "gap]___[value:0",
243
- "justifyContent]___[value:center",
244
- "padding]___[value:40",
245
- "overflow]___[value:hidden",
246
- "width]___[value:4xl",
247
- "fontSize]___[value:xs",
248
- "color]___[value:blue.50",
249
- "aspectRatio]___[value:wide",
250
- "background]___[value:blue.60",
251
- "width]___[value:64",
252
- "height]___[value:64",
253
- "borderRadius]___[value:full",
254
- "flexShrink]___[value:0",
255
- "marginTop]___[value:16",
256
- "fill]___[value:icon.inverse",
257
- "marginLeft]___[value:24",
258
- "paddingInlineStart]___[value:4",
259
- "paddingInlineEnd]___[value:4",
260
- "width]___[value:100",
261
- "maxWidth]___[value:lg",
262
- "background]___[value:transparent",
263
- "padding]___[value:80",
264
- "transitionProperty]___[value:transform",
265
- "transitionDuration]___[value:normal",
266
- "transitionTimingFunction]___[value:default",
267
- "transform]___[value:rotate(180deg)]___[cond:&[data-open=\"true\"]",
268
- "offset]___[value:4",
269
- "fill]___[value:current",
270
- "marginTop]___[value:4",
271
- "color]___[value:text.error",
272
- "width]___[value:300",
273
- "font]___[value:mono",
274
- "color]___[value:gray.90",
275
- "color]___[value:gold.50",
276
- "color]___[value:gray.10]___[cond:_dark",
277
- "textStyle]___[value:body-md",
278
- "color]___[value:gray.90]___[cond:_dark",
279
- "textStyle]___[value:body-sm"
280
- ],
281
- "recipes": {
282
- "text": [
283
- "family]___[value:mono]___[recipe:text",
284
- "family]___[value:inherit]___[recipe:text",
285
- "italic]___[value:true]___[recipe:text",
286
- "bold]___[value:true]___[recipe:text",
287
- "underline]___[value:true]___[recipe:text"
288
- ],
289
- "menu": [
290
- "size]___[value:default]___[recipe:menu",
291
- "indicatorPosition]___[value:left]___[recipe:menu",
292
- "size]___[value:compact]___[recipe:menu",
293
- "size]___[value:comfortable]___[recipe:menu",
294
- "indicatorPosition]___[value:right]___[recipe:menu"
295
- ],
296
- "button": [
297
- "appearance]___[value:default]___[recipe:button",
298
- "size]___[value:default]___[recipe:button",
299
- "appearance]___[value:primary]___[recipe:button",
300
- "appearance]___[value:subtle]___[recipe:button",
301
- "appearance]___[value:hollow]___[recipe:button",
302
- "iconBefore]___[value:user]___[recipe:button",
303
- "iconAfter]___[value:caret-down]___[recipe:button",
304
- "iconAfter]___[value:plus]___[recipe:button",
305
- "iconBefore]___[value:aa-placeholder]___[recipe:button",
306
- "size]___[value:small]___[recipe:button",
307
- "size]___[value:large]___[recipe:button",
308
- "size]___[value:xlarge]___[recipe:button",
309
- "iconBefore]___[value:plus]___[recipe:button",
310
- "iconBefore]___[value:check]___[recipe:button",
311
- "iconBefore]___[value:edit]___[recipe:button",
312
- "iconAfter]___[value:arrow-square-out]___[recipe:button",
313
- "iconAfter]___[value:arrow-right]___[recipe:button",
314
- "iconBefore]___[value:arrow-left]___[recipe:button",
315
- "iconBefore]___[value:trash]___[recipe:button"
316
- ],
317
- "themeSwitcher": [],
318
- "heading": [
319
- "level]___[value:h2]___[recipe:heading",
320
- "level]___[value:h3]___[recipe:heading",
321
- "level]___[value:h1]___[recipe:heading",
322
- "level]___[value:h4]___[recipe:heading"
323
- ],
324
- "select": [
325
- "size]___[value:default]___[recipe:select"
326
- ],
327
- "iconButton": [
328
- "appearance]___[value:subtle]___[recipe:iconButton",
329
- "size]___[value:default]___[recipe:iconButton",
330
- "appearance]___[value:default]___[recipe:iconButton",
331
- "appearance]___[value:primary]___[recipe:iconButton",
332
- "size]___[value:large]___[recipe:iconButton",
333
- "appearance]___[value:hollow]___[recipe:iconButton",
334
- "size]___[value:small]___[recipe:iconButton"
335
- ],
336
- "box": [],
337
- "pre": [],
338
- "link": [
339
- "family]___[value:inherit]___[recipe:link",
340
- "family]___[value:mono]___[recipe:link"
341
- ],
342
- "spinner": [
343
- "size]___[value:small]___[recipe:spinner",
344
- "size]___[value:standard]___[recipe:spinner",
345
- "size]___[value:large]___[recipe:spinner",
346
- "inverse]___[value:true]___[recipe:spinner"
347
- ],
348
- "badge": [
349
- "size]___[value:sm]___[recipe:badge",
350
- "appearance]___[value:danger]___[recipe:badge",
351
- "size]___[value:md]___[recipe:badge",
352
- "size]___[value:lg]___[recipe:badge",
353
- "appearance]___[value:success]___[recipe:badge",
354
- "appearance]___[value:warning]___[recipe:badge",
355
- "appearance]___[value:info]___[recipe:badge",
356
- "appearance]___[value:neutral]___[recipe:badge",
357
- "appearance]___[value:subtle]___[recipe:badge",
358
- "appearance]___[value:inverted]___[recipe:badge",
359
- "appearance]___[value:subtle-inverted]___[recipe:badge"
360
- ],
361
- "tag": [
362
- "appearance]___[value:default]___[recipe:tag",
363
- "hue]___[value:gray]___[recipe:tag",
364
- "iconPosition]___[value:left]___[recipe:tag",
365
- "hasIcon]___[value:false]___[recipe:tag",
366
- "hue]___[value:red]___[recipe:tag",
367
- "hue]___[value:orange]___[recipe:tag",
368
- "hue]___[value:yellow]___[recipe:tag",
369
- "hue]___[value:lime]___[recipe:tag",
370
- "hue]___[value:green]___[recipe:tag",
371
- "hue]___[value:teal]___[recipe:tag",
372
- "hue]___[value:blue]___[recipe:tag",
373
- "hue]___[value:indigo]___[recipe:tag",
374
- "hue]___[value:purple]___[recipe:tag",
375
- "hue]___[value:magenta]___[recipe:tag",
376
- "hue]___[value:tan]___[recipe:tag",
377
- "appearance]___[value:bold]___[recipe:tag"
378
- ],
379
- "breadcrumbs": [],
380
- "card": [
381
- "appearance]___[value:default]___[recipe:card",
382
- "interactive]___[value:false]___[recipe:card",
383
- "interactive]___[value:true]___[recipe:card",
384
- "appearance]___[value:flat]___[recipe:card",
385
- "appearance]___[value:sunken]___[recipe:card",
386
- "appearance]___[value:ghost]___[recipe:card",
387
- "appearance]___[value:overlay]___[recipe:card"
388
- ],
389
- "divider": [
390
- "direction]___[value:horizontal]___[recipe:divider",
391
- "weight]___[value:thin]___[recipe:divider",
392
- "weight]___[value:medium]___[recipe:divider",
393
- "weight]___[value:thick]___[recipe:divider",
394
- "weight]___[value:thicker]___[recipe:divider",
395
- "direction]___[value:vertical]___[recipe:divider"
396
- ],
397
- "label": [
398
- "family]___[value:sans]___[recipe:label"
399
- ],
400
- "textinput": [
401
- "size]___[value:medium]___[recipe:textinput",
402
- "size]___[value:small]___[recipe:textinput",
403
- "size]___[value:large]___[recipe:textinput"
404
- ],
405
- "textarea": [
406
- "size]___[value:medium]___[recipe:textarea",
407
- "size]___[value:small]___[recipe:textarea",
408
- "size]___[value:large]___[recipe:textarea"
409
- ],
410
- "checkbox": [],
411
- "checkboxInput": [],
412
- "radio": [],
413
- "tooltip": [
414
- "position]___[value:top]___[recipe:tooltip",
415
- "position]___[value:bottom]___[recipe:tooltip",
416
- "position]___[value:left]___[recipe:tooltip",
417
- "position]___[value:right]___[recipe:tooltip",
418
- "caret]___[value:true]___[recipe:tooltip"
419
- ],
420
- "avatar": [
421
- "size]___[value:xs]___[recipe:avatar",
422
- "shape]___[value:circle]___[recipe:avatar",
423
- "size]___[value:sm]___[recipe:avatar",
424
- "size]___[value:md]___[recipe:avatar",
425
- "size]___[value:lg]___[recipe:avatar",
426
- "size]___[value:xl]___[recipe:avatar",
427
- "size]___[value:2xl]___[recipe:avatar",
428
- "shape]___[value:square]___[recipe:avatar",
429
- "shape]___[value:hexagon]___[recipe:avatar"
430
- ],
431
- "chip": [
432
- "size]___[value:small]___[recipe:chip",
433
- "size]___[value:default]___[recipe:chip",
434
- "size]___[value:large]___[recipe:chip",
435
- "before]___[value:multi]___[recipe:chip"
436
- ],
437
- "code": [],
438
- "modal": [
439
- "size]___[value:md]___[recipe:modal",
440
- "size]___[value:sm]___[recipe:modal",
441
- "size]___[value:lg]___[recipe:modal"
442
- ],
443
- "radioInput": [],
444
- "toggle": [],
445
- "toggleInput": []
446
- }
447
- }
448
- }
package/dist/preset.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import { Preset } from '@pandacss/types';
2
-
3
- export declare const okshaunPreset: Preset;
4
-
5
- export { }