@pandacss/preset-panda 0.42.0 → 0.44.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 CHANGED
@@ -1,6 +1,7 @@
1
1
  import * as _pandacss_types from '@pandacss/types';
2
2
 
3
3
  declare const preset: {
4
+ name: string;
4
5
  theme: {
5
6
  keyframes: {
6
7
  spin: {
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import * as _pandacss_types from '@pandacss/types';
2
2
 
3
3
  declare const preset: {
4
+ name: string;
4
5
  theme: {
5
6
  keyframes: {
6
7
  spin: {
package/dist/index.js CHANGED
@@ -685,6 +685,7 @@ var tokens = defineTokens({
685
685
  // src/index.ts
686
686
  var definePreset = (config) => config;
687
687
  var preset = definePreset({
688
+ name: "@pandacss/preset-panda",
688
689
  theme: {
689
690
  keyframes,
690
691
  breakpoints,
package/dist/index.mjs CHANGED
@@ -658,6 +658,7 @@ var tokens = defineTokens({
658
658
  // src/index.ts
659
659
  var definePreset = (config) => config;
660
660
  var preset = definePreset({
661
+ name: "@pandacss/preset-panda",
661
662
  theme: {
662
663
  keyframes,
663
664
  breakpoints,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/preset-panda",
3
- "version": "0.42.0",
3
+ "version": "0.44.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.42.0"
35
+ "@pandacss/types": "0.44.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup src/index.ts --format=esm,cjs --dts",