@pandacss/node 0.0.0-dev-20230103100753 → 0.0.0-dev-20230103100906

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +11 -11
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import * as _pandacss_core from '@pandacss/core';
2
2
  import { StylesheetContext, Conditions, Utility } from '@pandacss/core';
3
3
  export { discardDuplicate } from '@pandacss/core';
4
4
  import * as _pandacss_types_dist_system_types from '@pandacss/types/dist/system-types';
5
+ import * as _pandacss_types_dist_config from '@pandacss/types/dist/config';
5
6
  import * as ts_morph from 'ts-morph';
6
7
  import * as _pandacss_types_dist_shared from '@pandacss/types/dist/shared';
7
8
  import * as _pandacss_types_dist_recipe from '@pandacss/types/dist/recipe';
@@ -134,6 +135,7 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
134
135
  minify?: boolean | undefined;
135
136
  utilities?: _pandacss_types.UtilityConfig | undefined;
136
137
  gitignore?: boolean | undefined;
138
+ docs?: Partial<_pandacss_types_dist_config.Docs> | undefined;
137
139
  logLevel?: "debug" | "info" | "warn" | "error" | "silent" | undefined;
138
140
  presets?: string[] | undefined;
139
141
  preflight?: boolean | undefined;
@@ -269,6 +271,7 @@ declare class Builder {
269
271
  minify?: boolean | undefined;
270
272
  utilities?: _pandacss_types.UtilityConfig | undefined;
271
273
  gitignore?: boolean | undefined;
274
+ docs?: Partial<_pandacss_types_dist_config.Docs> | undefined;
272
275
  logLevel?: "debug" | "info" | "warn" | "error" | "silent" | undefined;
273
276
  presets?: string[] | undefined;
274
277
  preflight?: boolean | undefined;
@@ -396,6 +399,7 @@ declare function loadConfigAndCreateContext(options?: {
396
399
  minify?: boolean | undefined;
397
400
  utilities?: _pandacss_types.UtilityConfig | undefined;
398
401
  gitignore?: boolean | undefined;
402
+ docs?: Partial<_pandacss_types_dist_config.Docs> | undefined;
399
403
  logLevel?: "debug" | "info" | "warn" | "error" | "silent" | undefined;
400
404
  presets?: string[] | undefined;
401
405
  preflight?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20230103100753",
3
+ "version": "0.0.0-dev-20230103100906",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -30,15 +30,15 @@
30
30
  "telejson": "7.0.4",
31
31
  "ts-pattern": "4.0.6",
32
32
  "ts-morph": "17.0.1",
33
- "@pandacss/types": "0.0.0-dev-20230103100753",
34
- "@pandacss/is-valid-prop": "0.0.0-dev-20230103100753",
35
- "@pandacss/error": "0.0.0-dev-20230103100753",
36
- "@pandacss/parser": "0.0.0-dev-20230103100753",
37
- "@pandacss/shared": "0.0.0-dev-20230103100753",
38
- "@pandacss/token-dictionary": "0.0.0-dev-20230103100753",
39
- "@pandacss/logger": "0.0.0-dev-20230103100753",
40
- "@pandacss/core": "0.0.0-dev-20230103100753",
41
- "@pandacss/config": "0.0.0-dev-20230103100753"
33
+ "@pandacss/types": "0.0.0-dev-20230103100906",
34
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230103100906",
35
+ "@pandacss/error": "0.0.0-dev-20230103100906",
36
+ "@pandacss/parser": "0.0.0-dev-20230103100906",
37
+ "@pandacss/shared": "0.0.0-dev-20230103100906",
38
+ "@pandacss/token-dictionary": "0.0.0-dev-20230103100906",
39
+ "@pandacss/logger": "0.0.0-dev-20230103100906",
40
+ "@pandacss/core": "0.0.0-dev-20230103100906",
41
+ "@pandacss/config": "0.0.0-dev-20230103100906"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/fs-extra": "9.0.13",
@@ -46,7 +46,7 @@
46
46
  "@types/glob-parent": "^5.1.1",
47
47
  "@types/pluralize": "0.0.29",
48
48
  "@types/lodash.merge": "4.6.7",
49
- "@pandacss/fixture": "0.0.0-dev-20230103100753"
49
+ "@pandacss/fixture": "0.0.0-dev-20230103100906"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",