@pandacss/preset-panda 0.27.3 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +18 -1
- package/dist/index.mjs +18 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1239,6 +1239,20 @@ declare const preset: {
|
|
|
1239
1239
|
};
|
|
1240
1240
|
};
|
|
1241
1241
|
textStyles: _pandacss_types.TextStyles;
|
|
1242
|
+
containerSizes: {
|
|
1243
|
+
xs: string;
|
|
1244
|
+
sm: string;
|
|
1245
|
+
md: string;
|
|
1246
|
+
lg: string;
|
|
1247
|
+
xl: string;
|
|
1248
|
+
'2xl': string;
|
|
1249
|
+
'3xl': string;
|
|
1250
|
+
'4xl': string;
|
|
1251
|
+
'5xl': string;
|
|
1252
|
+
'6xl': string;
|
|
1253
|
+
'7xl': string;
|
|
1254
|
+
'8xl': string;
|
|
1255
|
+
};
|
|
1242
1256
|
};
|
|
1243
1257
|
};
|
|
1244
1258
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1239,6 +1239,20 @@ declare const preset: {
|
|
|
1239
1239
|
};
|
|
1240
1240
|
};
|
|
1241
1241
|
textStyles: _pandacss_types.TextStyles;
|
|
1242
|
+
containerSizes: {
|
|
1243
|
+
xs: string;
|
|
1244
|
+
sm: string;
|
|
1245
|
+
md: string;
|
|
1246
|
+
lg: string;
|
|
1247
|
+
xl: string;
|
|
1248
|
+
'2xl': string;
|
|
1249
|
+
'3xl': string;
|
|
1250
|
+
'4xl': string;
|
|
1251
|
+
'5xl': string;
|
|
1252
|
+
'6xl': string;
|
|
1253
|
+
'7xl': string;
|
|
1254
|
+
'8xl': string;
|
|
1255
|
+
};
|
|
1242
1256
|
};
|
|
1243
1257
|
};
|
|
1244
1258
|
|
package/dist/index.js
CHANGED
|
@@ -34,6 +34,22 @@ var breakpoints = {
|
|
|
34
34
|
"2xl": "1536px"
|
|
35
35
|
};
|
|
36
36
|
|
|
37
|
+
// src/containers.ts
|
|
38
|
+
var containerSizes = {
|
|
39
|
+
xs: "320px",
|
|
40
|
+
sm: "384px",
|
|
41
|
+
md: "448px",
|
|
42
|
+
lg: "512px",
|
|
43
|
+
xl: "576px",
|
|
44
|
+
"2xl": "672px",
|
|
45
|
+
"3xl": "768px",
|
|
46
|
+
"4xl": "896px",
|
|
47
|
+
"5xl": "1024px",
|
|
48
|
+
"6xl": "1152px",
|
|
49
|
+
"7xl": "1280px",
|
|
50
|
+
"8xl": "1440px"
|
|
51
|
+
};
|
|
52
|
+
|
|
37
53
|
// src/keyframes.ts
|
|
38
54
|
var keyframes = {
|
|
39
55
|
spin: {
|
|
@@ -672,7 +688,8 @@ var preset = definePreset({
|
|
|
672
688
|
keyframes,
|
|
673
689
|
breakpoints,
|
|
674
690
|
tokens,
|
|
675
|
-
textStyles
|
|
691
|
+
textStyles,
|
|
692
|
+
containerSizes
|
|
676
693
|
}
|
|
677
694
|
});
|
|
678
695
|
var src_default = preset;
|
package/dist/index.mjs
CHANGED
|
@@ -7,6 +7,22 @@ var breakpoints = {
|
|
|
7
7
|
"2xl": "1536px"
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
+
// src/containers.ts
|
|
11
|
+
var containerSizes = {
|
|
12
|
+
xs: "320px",
|
|
13
|
+
sm: "384px",
|
|
14
|
+
md: "448px",
|
|
15
|
+
lg: "512px",
|
|
16
|
+
xl: "576px",
|
|
17
|
+
"2xl": "672px",
|
|
18
|
+
"3xl": "768px",
|
|
19
|
+
"4xl": "896px",
|
|
20
|
+
"5xl": "1024px",
|
|
21
|
+
"6xl": "1152px",
|
|
22
|
+
"7xl": "1280px",
|
|
23
|
+
"8xl": "1440px"
|
|
24
|
+
};
|
|
25
|
+
|
|
10
26
|
// src/keyframes.ts
|
|
11
27
|
var keyframes = {
|
|
12
28
|
spin: {
|
|
@@ -645,7 +661,8 @@ var preset = definePreset({
|
|
|
645
661
|
keyframes,
|
|
646
662
|
breakpoints,
|
|
647
663
|
tokens,
|
|
648
|
-
textStyles
|
|
664
|
+
textStyles,
|
|
665
|
+
containerSizes
|
|
649
666
|
}
|
|
650
667
|
});
|
|
651
668
|
var src_default = preset;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/preset-panda",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "The preset for PandaCSS that contains the default theme",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dist"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@pandacss/types": "0.
|
|
35
|
+
"@pandacss/types": "0.29.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsup src/index.ts --format=esm,cjs --dts",
|