@pandacss/preset-panda 0.17.0 → 0.17.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.
package/dist/index.d.mts CHANGED
@@ -1,4 +1,3 @@
1
- import * as _pandacss_types_dist_shared from '@pandacss/types/dist/shared';
2
1
  import * as _pandacss_types from '@pandacss/types';
3
2
 
4
3
  declare const preset: {
@@ -110,11 +109,11 @@ declare const preset: {
110
109
  value: string;
111
110
  };
112
111
  };
113
- fontWeights: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string | number>> | undefined;
114
- lineHeights: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string | number>> | undefined;
115
- fonts: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string | string[]>> | undefined;
116
- letterSpacings: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string>> | undefined;
117
- fontSizes: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string>> | undefined;
112
+ fontWeights: _pandacss_types.Recursive<_pandacss_types.Token<string | number>> | undefined;
113
+ lineHeights: _pandacss_types.Recursive<_pandacss_types.Token<string | number>> | undefined;
114
+ fonts: _pandacss_types.Recursive<_pandacss_types.Token<string | string[]>> | undefined;
115
+ letterSpacings: _pandacss_types.Recursive<_pandacss_types.Token<string>> | undefined;
116
+ fontSizes: _pandacss_types.Recursive<_pandacss_types.Token<string>> | undefined;
118
117
  shadows: {
119
118
  xs: {
120
119
  value: string;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import * as _pandacss_types_dist_shared from '@pandacss/types/dist/shared';
2
1
  import * as _pandacss_types from '@pandacss/types';
3
2
 
4
3
  declare const preset: {
@@ -110,11 +109,11 @@ declare const preset: {
110
109
  value: string;
111
110
  };
112
111
  };
113
- fontWeights: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string | number>> | undefined;
114
- lineHeights: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string | number>> | undefined;
115
- fonts: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string | string[]>> | undefined;
116
- letterSpacings: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string>> | undefined;
117
- fontSizes: _pandacss_types_dist_shared.Recursive<_pandacss_types.Token<string>> | undefined;
112
+ fontWeights: _pandacss_types.Recursive<_pandacss_types.Token<string | number>> | undefined;
113
+ lineHeights: _pandacss_types.Recursive<_pandacss_types.Token<string | number>> | undefined;
114
+ fonts: _pandacss_types.Recursive<_pandacss_types.Token<string | string[]>> | undefined;
115
+ letterSpacings: _pandacss_types.Recursive<_pandacss_types.Token<string>> | undefined;
116
+ fontSizes: _pandacss_types.Recursive<_pandacss_types.Token<string>> | undefined;
118
117
  shadows: {
119
118
  xs: {
120
119
  value: string;
package/dist/index.js CHANGED
@@ -655,8 +655,8 @@ var tokens = defineTokens({
655
655
  });
656
656
 
657
657
  // src/index.ts
658
- var defineConfig = (config) => config;
659
- var preset = defineConfig({
658
+ var definePreset = (config) => config;
659
+ var preset = definePreset({
660
660
  theme: {
661
661
  keyframes,
662
662
  breakpoints,
package/dist/index.mjs CHANGED
@@ -628,8 +628,8 @@ var tokens = defineTokens({
628
628
  });
629
629
 
630
630
  // src/index.ts
631
- var defineConfig = (config) => config;
632
- var preset = defineConfig({
631
+ var definePreset = (config) => config;
632
+ var preset = definePreset({
633
633
  theme: {
634
634
  keyframes,
635
635
  breakpoints,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/preset-panda",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "description": "The preset for PandaCSS that contains the default theme",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -10,11 +10,23 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
+ "exports": {
14
+ ".": {
15
+ "source": "./src/index.ts",
16
+ "types": "./dist/index.d.ts",
17
+ "require": "./dist/index.js",
18
+ "import": {
19
+ "types": "./dist/index.d.mts",
20
+ "default": "./dist/index.mjs"
21
+ }
22
+ },
23
+ "./package.json": "./package.json"
24
+ },
13
25
  "files": [
14
26
  "dist"
15
27
  ],
16
28
  "dependencies": {
17
- "@pandacss/types": "0.17.0"
29
+ "@pandacss/types": "0.17.1"
18
30
  },
19
31
  "scripts": {
20
32
  "build": "tsup src/index.ts --format=esm,cjs --dts",