@pandacss/studio 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/src/components/analyzer/data-combobox.tsx +47 -41
- package/src/components/analyzer/data-table.tsx +5 -9
- package/src/components/input.tsx +3 -3
- package/src/layouts/Sidebar.astro +2 -2
- package/styled-system/chunks/..__core____tests____atomic-rule.test.css +363 -0
- package/styled-system/chunks/src__components__analyzer__data-combobox.css +48 -40
- package/styled-system/chunks/src__components__analyzer__data-table.css +8 -0
- package/styled-system/chunks/src__layouts__Sidebar.css +4 -4
- package/styled-system/css/css.d.ts +1 -0
- package/styled-system/css/css.mjs +8 -0
- package/styled-system/css/cva.d.ts +1 -0
- package/styled-system/css/cx.d.ts +1 -0
- package/styled-system/css/index.d.ts +1 -0
- package/styled-system/global.css +1 -1
- package/styled-system/jsx/aspect-ratio.d.ts +1 -0
- package/styled-system/jsx/box.d.ts +1 -0
- package/styled-system/jsx/center.d.ts +1 -0
- package/styled-system/jsx/circle.d.ts +1 -0
- package/styled-system/jsx/container.d.ts +1 -0
- package/styled-system/jsx/divider.d.ts +1 -0
- package/styled-system/jsx/factory.d.ts +1 -0
- package/styled-system/jsx/flex.d.ts +1 -0
- package/styled-system/jsx/float.d.ts +1 -0
- package/styled-system/jsx/grid-item.d.ts +1 -0
- package/styled-system/jsx/grid.d.ts +1 -0
- package/styled-system/jsx/hstack.d.ts +1 -0
- package/styled-system/jsx/index.d.ts +1 -0
- package/styled-system/jsx/is-valid-prop.mjs +18 -2
- package/styled-system/jsx/link-box.d.ts +1 -0
- package/styled-system/jsx/link-overlay.d.ts +1 -0
- package/styled-system/jsx/spacer.d.ts +1 -0
- package/styled-system/jsx/square.d.ts +1 -0
- package/styled-system/jsx/stack.d.ts +1 -0
- package/styled-system/jsx/styled-link.d.ts +1 -0
- package/styled-system/jsx/vstack.d.ts +1 -0
- package/styled-system/jsx/wrap.d.ts +1 -0
- package/styled-system/patterns/aspect-ratio.d.ts +1 -0
- package/styled-system/patterns/aspect-ratio.mjs +18 -8
- package/styled-system/patterns/box.d.ts +1 -0
- package/styled-system/patterns/center.d.ts +1 -0
- package/styled-system/patterns/circle.d.ts +1 -0
- package/styled-system/patterns/container.d.ts +1 -0
- package/styled-system/patterns/divider.d.ts +1 -0
- package/styled-system/patterns/divider.mjs +1 -1
- package/styled-system/patterns/flex.d.ts +1 -0
- package/styled-system/patterns/float.d.ts +1 -0
- package/styled-system/patterns/grid-item.d.ts +1 -0
- package/styled-system/patterns/grid.d.ts +1 -0
- package/styled-system/patterns/hstack.d.ts +1 -0
- package/styled-system/patterns/index.d.ts +1 -0
- package/styled-system/patterns/link-box.d.ts +1 -0
- package/styled-system/patterns/link-overlay.d.ts +1 -0
- package/styled-system/patterns/spacer.d.ts +1 -0
- package/styled-system/patterns/square.d.ts +1 -0
- package/styled-system/patterns/stack.d.ts +1 -0
- package/styled-system/patterns/styled-link.d.ts +1 -0
- package/styled-system/patterns/vstack.d.ts +1 -0
- package/styled-system/patterns/wrap.d.ts +1 -0
- package/styled-system/styles.css +295 -16
- package/styled-system/tokens/index.css +3 -0
- package/styled-system/tokens/index.d.ts +1 -0
- package/styled-system/tokens/index.mjs +12 -0
- package/styled-system/tokens/tokens.d.ts +7 -3
- package/styled-system/types/composition.d.ts +1 -0
- package/styled-system/types/conditions.d.ts +1 -0
- package/styled-system/types/csstype.d.ts +1 -0
- package/styled-system/types/global.d.ts +6 -5
- package/styled-system/types/helpers.d.ts +1 -0
- package/styled-system/types/index.d.ts +3 -2
- package/styled-system/types/jsx.d.ts +1 -0
- package/styled-system/types/parts.d.ts +1 -0
- package/styled-system/types/pattern.d.ts +1 -0
- package/styled-system/types/prop-type.d.ts +26 -25
- package/styled-system/types/recipe.d.ts +1 -0
- package/styled-system/types/selectors.d.ts +4 -1
- package/styled-system/types/style-props.d.ts +12 -4
- package/styled-system/types/system-types.d.ts +1 -0
package/styled-system/styles.css
CHANGED
|
@@ -11,6 +11,118 @@
|
|
|
11
11
|
@import './tokens/keyframes.css';
|
|
12
12
|
|
|
13
13
|
@layer utilities {
|
|
14
|
+
.styles\:text_red\! {
|
|
15
|
+
color: red !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.styles\:fs_30px\! {
|
|
19
|
+
font-size: 30px !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.styles\:bg_red\.300 {
|
|
23
|
+
background: var(--colors-red-300);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.styles\:w_20px {
|
|
27
|
+
width: 20px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.styles\:w_70px {
|
|
31
|
+
width: 70px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.styles\:w_50px {
|
|
35
|
+
width: 50px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
[dir='rtl'] .styles\:rtl\:ml_-4 {
|
|
39
|
+
margin-left: calc(var(--spacing-4) * -1);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.styles\:light\:text_red.light,
|
|
43
|
+
.light .styles\:light\:text_red {
|
|
44
|
+
color: red;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.styles\:dark\:text_green.dark,
|
|
48
|
+
.dark .styles\:dark\:text_green {
|
|
49
|
+
color: green;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.styles\:dark\:opacity_slate400.dark,
|
|
53
|
+
.dark .styles\:dark\:opacity_slate400 {
|
|
54
|
+
opacity: slate400;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.styles\:left_20px,
|
|
58
|
+
.styles\:\[\&_\>_p\]\:left_20px > p {
|
|
59
|
+
left: 20px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.styles\:\[\&_\>_p\]\:light\:bg_red400 > p.light,
|
|
63
|
+
.light .styles\:\[\&_\>_p\]\:light\:bg_red400 > p {
|
|
64
|
+
background: red400;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.styles\:\[\&_\>_p\]\:dark\:bg_green500 > p.dark,
|
|
68
|
+
.dark .styles\:\[\&_\>_p\]\:dark\:bg_green500 > p {
|
|
69
|
+
background: green500;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
[dir='rtl'] .styles\:\[\&_\>_p\]\:rtl\:font_sans > p {
|
|
73
|
+
font: sans;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.styles\:\[\&\:\:placeholder\]\:left_40px::placeholder {
|
|
77
|
+
left: 40px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.styles\:\[\&\:\:placeholder\]\:bg_red400::placeholder {
|
|
81
|
+
background: red400;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.styles\:all_unset {
|
|
85
|
+
all: unset;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.styles\:bg_red {
|
|
89
|
+
background-color: red;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.styles\:border_none {
|
|
93
|
+
border: var(--borders-none);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.styles\:p_\$3_\$3 {
|
|
97
|
+
padding: $3 $3;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.styles\:rounded_\$button {
|
|
101
|
+
border-radius: $button;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.styles\:fs_\$xsmall {
|
|
105
|
+
font-size: $xsmall;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.styles\:cursor_pointer {
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.styles\:\[\&_\+_span\]\:ml_\$2 + span {
|
|
113
|
+
margin-left: $2;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.test .styles\:\[\.test_\&\]\:bg_blue {
|
|
117
|
+
background-color: blue;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.styles\:\[\&_\.my-class\]\:text_red .my-class,
|
|
121
|
+
.styles\:\[\&_span\]\:text_red span,
|
|
122
|
+
.styles\:\[\&_kbd\]\:text_red kbd {
|
|
123
|
+
color: red;
|
|
124
|
+
}
|
|
125
|
+
|
|
14
126
|
.w_26px {
|
|
15
127
|
width: 26px;
|
|
16
128
|
}
|
|
@@ -39,14 +151,46 @@
|
|
|
39
151
|
background: var(--colors-border);
|
|
40
152
|
}
|
|
41
153
|
|
|
42
|
-
.
|
|
43
|
-
|
|
154
|
+
.isolation_isolate {
|
|
155
|
+
isolation: isolate;
|
|
44
156
|
}
|
|
45
157
|
|
|
46
158
|
.border-l_solid_1px {
|
|
47
159
|
border-left: solid 1px;
|
|
48
160
|
}
|
|
49
161
|
|
|
162
|
+
.expanded\:transform_rotate\(180deg\):where([aria-expanded='true'], [data-expanded]) {
|
|
163
|
+
transform: rotate(180deg);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.transition_all_\.2s_ease {
|
|
167
|
+
transition: all 0.2s ease;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.top_0px {
|
|
171
|
+
top: 0px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.right_0px {
|
|
175
|
+
right: 0px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.pos_absolute {
|
|
179
|
+
position: absolute;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.z_2 {
|
|
183
|
+
z-index: 2;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.break_break-word {
|
|
187
|
+
word-break: break-word;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.grid-cols_80px_repeat\(auto-fit\,_minmax\(30px\,_1fr\)\) {
|
|
191
|
+
grid-template-columns: 80px repeat(auto-fit, minmax(30px, 1fr));
|
|
192
|
+
}
|
|
193
|
+
|
|
50
194
|
.max-w_14px {
|
|
51
195
|
max-width: 14px;
|
|
52
196
|
}
|
|
@@ -880,10 +1024,6 @@
|
|
|
880
1024
|
min-width: var(--sizes-60);
|
|
881
1025
|
}
|
|
882
1026
|
|
|
883
|
-
.overflow_auto {
|
|
884
|
-
overflow: auto;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
1027
|
.px_12 {
|
|
888
1028
|
padding-inline: var(--spacing-12);
|
|
889
1029
|
}
|
|
@@ -912,13 +1052,8 @@
|
|
|
912
1052
|
width: var(--sizes-full);
|
|
913
1053
|
}
|
|
914
1054
|
|
|
915
|
-
.
|
|
916
|
-
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
.focusWithin\:dark\:border_yellow\.300:focus-within.dark,
|
|
920
|
-
.dark .focusWithin\:dark\:border_yellow\.300:focus-within {
|
|
921
|
-
border-color: var(--colors-yellow-300);
|
|
1055
|
+
.overflow_auto {
|
|
1056
|
+
overflow: auto;
|
|
922
1057
|
}
|
|
923
1058
|
|
|
924
1059
|
.focusWithin\:outline-style_solid:focus-within {
|
|
@@ -937,9 +1072,13 @@
|
|
|
937
1072
|
outline-color: var(--colors-neutral-400);
|
|
938
1073
|
}
|
|
939
1074
|
|
|
940
|
-
.focus\:
|
|
941
|
-
|
|
942
|
-
|
|
1075
|
+
.styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none:focus,
|
|
1076
|
+
.styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none:hover {
|
|
1077
|
+
box-shadow: none;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
:focus > .styles\:\[\:focus_\>_\&\]\:text_white {
|
|
1081
|
+
color: var(--colors-white);
|
|
943
1082
|
}
|
|
944
1083
|
|
|
945
1084
|
.hover\:bg_gray\.100:where(:hover, [data-hover]) {
|
|
@@ -978,6 +1117,18 @@
|
|
|
978
1117
|
border-bottom-color: var(--colors-black);
|
|
979
1118
|
}
|
|
980
1119
|
|
|
1120
|
+
input:hover .styles\:\[input\:hover_\&\]\:bg_red400 {
|
|
1121
|
+
background: red400;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.styles\:hover\:bg_pink\.400:where(:hover, [data-hover]) {
|
|
1125
|
+
background: var(--colors-pink-400);
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.styles\:hover\:text_pink\.400:where(:hover, [data-hover]) {
|
|
1129
|
+
color: var(--colors-pink-400);
|
|
1130
|
+
}
|
|
1131
|
+
|
|
981
1132
|
.\[\&\:hover\]\:bg_\#4049f0:hover {
|
|
982
1133
|
background: #4049f0;
|
|
983
1134
|
}
|
|
@@ -990,15 +1141,143 @@
|
|
|
990
1141
|
opacity: 0.8;
|
|
991
1142
|
}
|
|
992
1143
|
|
|
1144
|
+
@media screen and (min-width: 640px) {
|
|
1145
|
+
[dir='ltr'] .styles\:ltr\:sm\:ml_4 {
|
|
1146
|
+
margin-left: var(--spacing-4);
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
@media screen and (min-width: 640px) {
|
|
1151
|
+
[dir='rtl'] .styles\:sm\:rtl\:top_20px {
|
|
1152
|
+
top: 20px;
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
@media screen and (min-width: 640px) {
|
|
1157
|
+
.styles\:\[\&\:\:placeholder\]\:sm\:text_left::placeholder {
|
|
1158
|
+
text-align: left;
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
@media screen and (min-width: 640px) {
|
|
1163
|
+
.styles\:sm\:hover\:top_50px:where(:hover, [data-hover]) {
|
|
1164
|
+
top: 50px;
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
@media screen and (min-width: 640px) {
|
|
1169
|
+
[dir='ltr'] .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif > p:where(:hover, [data-hover]).dark,
|
|
1170
|
+
.dark [dir='ltr'] .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif > p:where(:hover, [data-hover]) {
|
|
1171
|
+
font: serif;
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
@media screen and (min-width: 640px) {
|
|
1176
|
+
input:hover .styles\:\[input\:hover_\&\]\:sm\:fs_14px {
|
|
1177
|
+
font-size: 14px;
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
@media screen and (min-width: 640px) {
|
|
1182
|
+
.styles\:hover\:sm\:dark\:bg_red\.300:where(:hover, [data-hover]).dark,
|
|
1183
|
+
.dark .styles\:hover\:sm\:dark\:bg_red\.300:where(:hover, [data-hover]) {
|
|
1184
|
+
background: var(--colors-red-300);
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
@media screen and (min-width: 640px) {
|
|
1189
|
+
.styles\:hover\:disabled\:sm\:bg_red\.300:where(:hover, [data-hover]):where(
|
|
1190
|
+
:disabled,
|
|
1191
|
+
[disabled],
|
|
1192
|
+
[data-disabled]
|
|
1193
|
+
) {
|
|
1194
|
+
background: var(--colors-red-300);
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
@media screen and (min-width: 640px) {
|
|
1199
|
+
.styles\:sm\:w_60px {
|
|
1200
|
+
width: 60px;
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
@media (min-width: 768px) {
|
|
1205
|
+
.styles\:\[\@media_\(min-width\:_768px\)\]\:\[\&\:hover\]\:bg_yellow:hover {
|
|
1206
|
+
background-color: yellow;
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
@media (min-width: 768px) {
|
|
1211
|
+
.styles\:\[\@media_\(min-width\:_768px\)\]\:bg_green {
|
|
1212
|
+
background-color: green;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.styles\:\[\@media_\(min-width\:_768px\)\]\:fs_\$small {
|
|
1216
|
+
font-size: $small;
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
@media screen and (min-width: 768px) {
|
|
1221
|
+
.styles\:\[\&_\>_p\]\:md\:left_40px > p {
|
|
1222
|
+
left: 40px;
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
@media screen and (min-width: 768px) {
|
|
1227
|
+
.styles\:md\:left_40px {
|
|
1228
|
+
left: 40px;
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
|
|
993
1232
|
@media screen and (min-width: 768px) {
|
|
994
1233
|
.md\:px_6 {
|
|
995
1234
|
padding-inline: var(--spacing-6);
|
|
996
1235
|
}
|
|
997
1236
|
}
|
|
998
1237
|
|
|
1238
|
+
@media screen and (min-width: 1024px) {
|
|
1239
|
+
input:hover .styles\:\[input\:hover_\&\]\:lg\:fs_18px {
|
|
1240
|
+
font-size: 18px;
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
@media screen and (min-width: 1024px) {
|
|
1245
|
+
.styles\:lg\:top_120px {
|
|
1246
|
+
top: 120px;
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
|
|
999
1250
|
@media screen and (min-width: 1024px) {
|
|
1000
1251
|
.lg\:px_8 {
|
|
1001
1252
|
padding-inline: var(--spacing-8);
|
|
1002
1253
|
}
|
|
1003
1254
|
}
|
|
1255
|
+
|
|
1256
|
+
@media base {
|
|
1257
|
+
.styles\:\[\@media_base\]\:\[\&\:hover\]\:left_40px:hover {
|
|
1258
|
+
left: 40px;
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
@media base {
|
|
1263
|
+
@media screen and (min-width: 640px) {
|
|
1264
|
+
.styles\:\[\@media_base\]\:\[\&\:hover\]\:sm\:text_left:hover {
|
|
1265
|
+
text-align: left;
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
@media base {
|
|
1271
|
+
.styles\:\[\@media_base\]\:left_40px {
|
|
1272
|
+
left: 40px;
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
@media base {
|
|
1277
|
+
@media screen and (min-width: 640px) {
|
|
1278
|
+
.styles\:\[\@media_base\]\:sm\:text_left {
|
|
1279
|
+
text-align: left;
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1004
1283
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@layer tokens {
|
|
2
2
|
:where(:root, :host) {
|
|
3
|
+
--borders-none: none;
|
|
3
4
|
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
4
5
|
--easings-linear: linear;
|
|
5
6
|
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
@@ -73,6 +74,7 @@
|
|
|
73
74
|
--blurs-xl: 24px;
|
|
74
75
|
--blurs-2xl: 40px;
|
|
75
76
|
--blurs-3xl: 64px;
|
|
77
|
+
--spacing-0: 0rem;
|
|
76
78
|
--spacing-1: 0.25rem;
|
|
77
79
|
--spacing-2: 0.5rem;
|
|
78
80
|
--spacing-3: 0.75rem;
|
|
@@ -106,6 +108,7 @@
|
|
|
106
108
|
--spacing-1\.5: 0.375rem;
|
|
107
109
|
--spacing-2\.5: 0.625rem;
|
|
108
110
|
--spacing-3\.5: 0.875rem;
|
|
111
|
+
--sizes-0: 0rem;
|
|
109
112
|
--sizes-1: 0.25rem;
|
|
110
113
|
--sizes-2: 0.5rem;
|
|
111
114
|
--sizes-3: 0.75rem;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
const tokens = {
|
|
2
|
+
'borders.none': {
|
|
3
|
+
value: 'none',
|
|
4
|
+
variable: 'var(--borders-none)',
|
|
5
|
+
},
|
|
2
6
|
'easings.default': {
|
|
3
7
|
value: 'cubic-bezier(0.4, 0, 0.2, 1)',
|
|
4
8
|
variable: 'var(--easings-default)',
|
|
@@ -288,6 +292,10 @@ const tokens = {
|
|
|
288
292
|
value: '64px',
|
|
289
293
|
variable: 'var(--blurs-3xl)',
|
|
290
294
|
},
|
|
295
|
+
'spacing.0': {
|
|
296
|
+
value: '0rem',
|
|
297
|
+
variable: 'var(--spacing-0)',
|
|
298
|
+
},
|
|
291
299
|
'spacing.1': {
|
|
292
300
|
value: '0.25rem',
|
|
293
301
|
variable: 'var(--spacing-1)',
|
|
@@ -420,6 +428,10 @@ const tokens = {
|
|
|
420
428
|
value: '0.875rem',
|
|
421
429
|
variable: 'var(--spacing-3\\.5)',
|
|
422
430
|
},
|
|
431
|
+
'sizes.0': {
|
|
432
|
+
value: '0rem',
|
|
433
|
+
variable: 'var(--sizes-0)',
|
|
434
|
+
},
|
|
423
435
|
'sizes.1': {
|
|
424
436
|
value: '0.25rem',
|
|
425
437
|
variable: 'var(--sizes-1)',
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
export type Token = "borders.none" | "easings.default" | "easings.linear" | "easings.in" | "easings.out" | "easings.in-out" | "durations.fastest" | "durations.faster" | "durations.fast" | "durations.normal" | "durations.slow" | "durations.slower" | "durations.slowest" | "radii.xs" | "radii.sm" | "radii.md" | "radii.lg" | "radii.xl" | "radii.2xl" | "radii.3xl" | "radii.full" | "fontWeights.thin" | "fontWeights.extralight" | "fontWeights.light" | "fontWeights.normal" | "fontWeights.medium" | "fontWeights.semibold" | "fontWeights.bold" | "fontWeights.extrabold" | "fontWeights.black" | "lineHeights.none" | "lineHeights.tight" | "lineHeights.snug" | "lineHeights.normal" | "lineHeights.relaxed" | "lineHeights.loose" | "fonts.sans" | "fonts.serif" | "fonts.mono" | "letterSpacings.tighter" | "letterSpacings.tight" | "letterSpacings.normal" | "letterSpacings.wide" | "letterSpacings.wider" | "letterSpacings.widest" | "fontSizes.2xs" | "fontSizes.xs" | "fontSizes.sm" | "fontSizes.md" | "fontSizes.lg" | "fontSizes.xl" | "fontSizes.2xl" | "fontSizes.3xl" | "fontSizes.4xl" | "fontSizes.5xl" | "fontSizes.6xl" | "fontSizes.7xl" | "fontSizes.8xl" | "fontSizes.9xl" | "shadows.xs" | "shadows.sm" | "shadows.md" | "shadows.lg" | "shadows.xl" | "shadows.2xl" | "shadows.inner" | "blurs.sm" | "blurs.base" | "blurs.md" | "blurs.lg" | "blurs.xl" | "blurs.2xl" | "blurs.3xl" | "spacing.0" | "spacing.1" | "spacing.2" | "spacing.3" | "spacing.4" | "spacing.5" | "spacing.6" | "spacing.7" | "spacing.8" | "spacing.9" | "spacing.10" | "spacing.11" | "spacing.12" | "spacing.14" | "spacing.16" | "spacing.20" | "spacing.24" | "spacing.28" | "spacing.32" | "spacing.36" | "spacing.40" | "spacing.44" | "spacing.48" | "spacing.52" | "spacing.56" | "spacing.60" | "spacing.64" | "spacing.72" | "spacing.80" | "spacing.96" | "spacing.0.5" | "spacing.1.5" | "spacing.2.5" | "spacing.3.5" | "sizes.0" | "sizes.1" | "sizes.2" | "sizes.3" | "sizes.4" | "sizes.5" | "sizes.6" | "sizes.7" | "sizes.8" | "sizes.9" | "sizes.10" | "sizes.11" | "sizes.12" | "sizes.14" | "sizes.16" | "sizes.20" | "sizes.24" | "sizes.28" | "sizes.32" | "sizes.36" | "sizes.40" | "sizes.44" | "sizes.48" | "sizes.52" | "sizes.56" | "sizes.60" | "sizes.64" | "sizes.72" | "sizes.80" | "sizes.96" | "sizes.0.5" | "sizes.1.5" | "sizes.2.5" | "sizes.3.5" | "sizes.xs" | "sizes.sm" | "sizes.md" | "sizes.lg" | "sizes.xl" | "sizes.2xl" | "sizes.3xl" | "sizes.4xl" | "sizes.5xl" | "sizes.6xl" | "sizes.7xl" | "sizes.8xl" | "sizes.prose" | "sizes.full" | "sizes.min" | "sizes.max" | "sizes.fit" | "sizes.breakpoint-sm" | "sizes.breakpoint-md" | "sizes.breakpoint-lg" | "sizes.breakpoint-xl" | "sizes.breakpoint-2xl" | "animations.spin" | "animations.ping" | "animations.pulse" | "animations.bounce" | "colors.current" | "colors.black" | "colors.white" | "colors.transparent" | "colors.rose.50" | "colors.rose.100" | "colors.rose.200" | "colors.rose.300" | "colors.rose.400" | "colors.rose.500" | "colors.rose.600" | "colors.rose.700" | "colors.rose.800" | "colors.rose.900" | "colors.pink.50" | "colors.pink.100" | "colors.pink.200" | "colors.pink.300" | "colors.pink.400" | "colors.pink.500" | "colors.pink.600" | "colors.pink.700" | "colors.pink.800" | "colors.pink.900" | "colors.fuchsia.50" | "colors.fuchsia.100" | "colors.fuchsia.200" | "colors.fuchsia.300" | "colors.fuchsia.400" | "colors.fuchsia.500" | "colors.fuchsia.600" | "colors.fuchsia.700" | "colors.fuchsia.800" | "colors.fuchsia.900" | "colors.purple.50" | "colors.purple.100" | "colors.purple.200" | "colors.purple.300" | "colors.purple.400" | "colors.purple.500" | "colors.purple.600" | "colors.purple.700" | "colors.purple.800" | "colors.purple.900" | "colors.indigo.50" | "colors.indigo.100" | "colors.indigo.200" | "colors.indigo.300" | "colors.indigo.400" | "colors.indigo.500" | "colors.indigo.600" | "colors.indigo.700" | "colors.indigo.800" | "colors.indigo.900" | "colors.blue.50" | "colors.blue.100" | "colors.blue.200" | "colors.blue.300" | "colors.blue.400" | "colors.blue.500" | "colors.blue.600" | "colors.blue.700" | "colors.blue.800" | "colors.blue.900" | "colors.sky.50" | "colors.sky.100" | "colors.sky.200" | "colors.sky.300" | "colors.sky.400" | "colors.sky.500" | "colors.sky.600" | "colors.sky.700" | "colors.sky.800" | "colors.sky.900" | "colors.cyan.50" | "colors.cyan.100" | "colors.cyan.200" | "colors.cyan.300" | "colors.cyan.400" | "colors.cyan.500" | "colors.cyan.600" | "colors.cyan.700" | "colors.cyan.800" | "colors.cyan.900" | "colors.teal.50" | "colors.teal.100" | "colors.teal.200" | "colors.teal.300" | "colors.teal.400" | "colors.teal.500" | "colors.teal.600" | "colors.teal.700" | "colors.teal.800" | "colors.teal.900" | "colors.green.50" | "colors.green.100" | "colors.green.200" | "colors.green.300" | "colors.green.400" | "colors.green.500" | "colors.green.600" | "colors.green.700" | "colors.green.800" | "colors.green.900" | "colors.lime.50" | "colors.lime.100" | "colors.lime.200" | "colors.lime.300" | "colors.lime.400" | "colors.lime.500" | "colors.lime.600" | "colors.lime.700" | "colors.lime.800" | "colors.lime.900" | "colors.yellow.50" | "colors.yellow.100" | "colors.yellow.200" | "colors.yellow.300" | "colors.yellow.400" | "colors.yellow.500" | "colors.yellow.600" | "colors.yellow.700" | "colors.yellow.800" | "colors.yellow.900" | "colors.orange.50" | "colors.orange.100" | "colors.orange.200" | "colors.orange.300" | "colors.orange.400" | "colors.orange.500" | "colors.orange.600" | "colors.orange.700" | "colors.orange.800" | "colors.orange.900" | "colors.red.50" | "colors.red.100" | "colors.red.200" | "colors.red.300" | "colors.red.400" | "colors.red.500" | "colors.red.600" | "colors.red.700" | "colors.red.800" | "colors.red.900" | "colors.gray.50" | "colors.gray.100" | "colors.gray.200" | "colors.gray.300" | "colors.gray.400" | "colors.gray.500" | "colors.gray.600" | "colors.gray.700" | "colors.gray.800" | "colors.gray.900" | "colors.slate.50" | "colors.slate.100" | "colors.slate.200" | "colors.slate.300" | "colors.slate.400" | "colors.slate.500" | "colors.slate.600" | "colors.slate.700" | "colors.slate.800" | "colors.slate.900" | "colors.neutral.50" | "colors.neutral.100" | "colors.neutral.200" | "colors.neutral.300" | "colors.neutral.400" | "colors.neutral.500" | "colors.neutral.600" | "colors.neutral.700" | "colors.neutral.800" | "colors.neutral.900" | "colors.neutral.950" | "assets.check" | "breakpoints.sm" | "breakpoints.md" | "breakpoints.lg" | "breakpoints.xl" | "breakpoints.2xl" | "shadows.inset" | "colors.text" | "colors.bg" | "colors.card" | "colors.border" | "spacing.-1" | "spacing.-2" | "spacing.-3" | "spacing.-4" | "spacing.-5" | "spacing.-6" | "spacing.-7" | "spacing.-8" | "spacing.-9" | "spacing.-10" | "spacing.-11" | "spacing.-12" | "spacing.-14" | "spacing.-16" | "spacing.-20" | "spacing.-24" | "spacing.-28" | "spacing.-32" | "spacing.-36" | "spacing.-40" | "spacing.-44" | "spacing.-48" | "spacing.-52" | "spacing.-56" | "spacing.-60" | "spacing.-64" | "spacing.-72" | "spacing.-80" | "spacing.-96" | "spacing.-0.5" | "spacing.-1.5" | "spacing.-2.5" | "spacing.-3.5" | "colors.colorPalette.50" | "colors.colorPalette.100" | "colors.colorPalette.200" | "colors.colorPalette.300" | "colors.colorPalette.400" | "colors.colorPalette.500" | "colors.colorPalette.600" | "colors.colorPalette.700" | "colors.colorPalette.800" | "colors.colorPalette.900" | "colors.colorPalette.950"
|
|
2
3
|
|
|
3
4
|
export type ColorPalette = "rose" | "pink" | "fuchsia" | "purple" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "green" | "lime" | "yellow" | "orange" | "red" | "gray" | "slate" | "neutral"
|
|
4
5
|
|
|
6
|
+
export type BorderToken = "none"
|
|
7
|
+
|
|
5
8
|
export type EasingToken = "default" | "linear" | "in" | "out" | "in-out"
|
|
6
9
|
|
|
7
10
|
export type DurationToken = "fastest" | "faster" | "fast" | "normal" | "slow" | "slower" | "slowest"
|
|
@@ -22,9 +25,9 @@ export type ShadowToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "inner" | "
|
|
|
22
25
|
|
|
23
26
|
export type BlurToken = "sm" | "base" | "md" | "lg" | "xl" | "2xl" | "3xl"
|
|
24
27
|
|
|
25
|
-
export type SpacingToken = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "-0.5" | "-1.5" | "-2.5" | "-3.5"
|
|
28
|
+
export type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "-0.5" | "-1.5" | "-2.5" | "-3.5"
|
|
26
29
|
|
|
27
|
-
export type SizeToken = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "prose" | "full" | "min" | "max" | "fit" | "breakpoint-sm" | "breakpoint-md" | "breakpoint-lg" | "breakpoint-xl" | "breakpoint-2xl"
|
|
30
|
+
export type SizeToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "prose" | "full" | "min" | "max" | "fit" | "breakpoint-sm" | "breakpoint-md" | "breakpoint-lg" | "breakpoint-xl" | "breakpoint-2xl"
|
|
28
31
|
|
|
29
32
|
export type AnimationToken = "spin" | "ping" | "pulse" | "bounce"
|
|
30
33
|
|
|
@@ -35,6 +38,7 @@ export type AssetToken = "check"
|
|
|
35
38
|
export type BreakpointToken = "sm" | "md" | "lg" | "xl" | "2xl"
|
|
36
39
|
|
|
37
40
|
export type Tokens = {
|
|
41
|
+
borders: BorderToken
|
|
38
42
|
easings: EasingToken
|
|
39
43
|
durations: DurationToken
|
|
40
44
|
radii: RadiusToken
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import type { RecipeVariantRecord, RecipeConfig } from './recipe'
|
|
3
|
+
import type { Parts } from './parts'
|
|
4
|
+
import type { PatternConfig } from './pattern'
|
|
5
|
+
import type { GlobalStyleObject, SystemStyleObject } from './system-types'
|
|
6
|
+
import type { CompositionStyles } from './composition'
|
|
6
7
|
|
|
7
8
|
declare module '@pandacss/dev' {
|
|
8
9
|
export function defineRecipe<V extends RecipeVariantRecord>(config: RecipeConfig<V>): RecipeConfig
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
1
2
|
import './global'
|
|
2
|
-
export { ConditionalValue } from './conditions'
|
|
3
|
-
export { GlobalStyleObject, JsxStyleProps, SystemStyleObject } from './system-types'
|
|
3
|
+
export type { ConditionalValue } from './conditions'
|
|
4
|
+
export type { GlobalStyleObject, JsxStyleProps, SystemStyleObject } from './system-types'
|