@pandacss/preset-panda 0.3.2 → 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/dist/index.d.ts CHANGED
@@ -39,6 +39,11 @@ declare const preset: {
39
39
  '2xl': string;
40
40
  };
41
41
  tokens: {
42
+ borders: {
43
+ none: {
44
+ value: string;
45
+ };
46
+ };
42
47
  easings: {
43
48
  default: {
44
49
  value: string;
@@ -683,6 +688,9 @@ declare const preset: {
683
688
  };
684
689
  };
685
690
  spacing: {
691
+ 0: {
692
+ value: string;
693
+ };
686
694
  0.5: {
687
695
  value: string;
688
696
  };
@@ -835,6 +843,9 @@ declare const preset: {
835
843
  prose: {
836
844
  value: string;
837
845
  };
846
+ 0: {
847
+ value: string;
848
+ };
838
849
  0.5: {
839
850
  value: string;
840
851
  };
package/dist/index.js CHANGED
@@ -270,6 +270,11 @@ var colors = {
270
270
  }
271
271
  };
272
272
 
273
+ // src/borders.ts
274
+ var borders = {
275
+ none: { value: "none" }
276
+ };
277
+
273
278
  // src/shadows.ts
274
279
  var shadows = {
275
280
  xs: { value: "0 1px 2px 0 rgb(0 0 0 / 0.05)" },
@@ -283,6 +288,7 @@ var shadows = {
283
288
 
284
289
  // src/spacing.ts
285
290
  var spacing = {
291
+ 0: { value: "0rem" },
286
292
  0.5: { value: "0.125rem" },
287
293
  1: { value: "0.25rem" },
288
294
  1.5: { value: "0.375rem" },
@@ -506,6 +512,7 @@ var textStyles = {
506
512
  // src/tokens.ts
507
513
  var defineTokens = (v) => v;
508
514
  var tokens = defineTokens({
515
+ borders,
509
516
  easings: {
510
517
  default: { value: "cubic-bezier(0.4, 0, 0.2, 1)" },
511
518
  linear: { value: "linear" },
package/dist/index.mjs CHANGED
@@ -243,6 +243,11 @@ var colors = {
243
243
  }
244
244
  };
245
245
 
246
+ // src/borders.ts
247
+ var borders = {
248
+ none: { value: "none" }
249
+ };
250
+
246
251
  // src/shadows.ts
247
252
  var shadows = {
248
253
  xs: { value: "0 1px 2px 0 rgb(0 0 0 / 0.05)" },
@@ -256,6 +261,7 @@ var shadows = {
256
261
 
257
262
  // src/spacing.ts
258
263
  var spacing = {
264
+ 0: { value: "0rem" },
259
265
  0.5: { value: "0.125rem" },
260
266
  1: { value: "0.25rem" },
261
267
  1.5: { value: "0.375rem" },
@@ -479,6 +485,7 @@ var textStyles = {
479
485
  // src/tokens.ts
480
486
  var defineTokens = (v) => v;
481
487
  var tokens = defineTokens({
488
+ borders,
482
489
  easings: {
483
490
  default: { value: "cubic-bezier(0.4, 0, 0.2, 1)" },
484
491
  linear: { value: "linear" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/preset-panda",
3
- "version": "0.3.2",
3
+ "version": "0.4.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",
@@ -14,7 +14,7 @@
14
14
  "dist"
15
15
  ],
16
16
  "dependencies": {
17
- "@pandacss/types": "0.3.2"
17
+ "@pandacss/types": "0.4.0"
18
18
  },
19
19
  "scripts": {
20
20
  "build": "tsup src/index.ts --format=esm,cjs --dts",