@pandacss/node 0.0.0-dev-20221121175259 → 0.0.0-dev-20221122153914
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 +15 -3
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -120,7 +120,11 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
|
120
120
|
keyframes?: _pandacss_types.Keyframes | undefined;
|
|
121
121
|
minify?: boolean | undefined;
|
|
122
122
|
utilities?: _pandacss_types.UtilityConfig | undefined;
|
|
123
|
-
globalCss?:
|
|
123
|
+
globalCss?: _pandacss_types.GlobalCss<{
|
|
124
|
+
[x: string]: string;
|
|
125
|
+
}, {
|
|
126
|
+
__type?: "never" | undefined;
|
|
127
|
+
}, false> | undefined;
|
|
124
128
|
logLevel?: "debug" | "info" | "warn" | "error" | "silent" | undefined;
|
|
125
129
|
presets?: string[] | undefined;
|
|
126
130
|
preflight?: boolean | undefined;
|
|
@@ -240,7 +244,11 @@ declare class Builder {
|
|
|
240
244
|
keyframes?: _pandacss_types.Keyframes | undefined;
|
|
241
245
|
minify?: boolean | undefined;
|
|
242
246
|
utilities?: _pandacss_types.UtilityConfig | undefined;
|
|
243
|
-
globalCss?:
|
|
247
|
+
globalCss?: _pandacss_types.GlobalCss<{
|
|
248
|
+
[x: string]: string;
|
|
249
|
+
}, {
|
|
250
|
+
__type?: "never" | undefined;
|
|
251
|
+
}, false> | undefined;
|
|
244
252
|
logLevel?: "debug" | "info" | "warn" | "error" | "silent" | undefined;
|
|
245
253
|
presets?: string[] | undefined;
|
|
246
254
|
preflight?: boolean | undefined;
|
|
@@ -358,7 +366,11 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
358
366
|
keyframes?: _pandacss_types.Keyframes | undefined;
|
|
359
367
|
minify?: boolean | undefined;
|
|
360
368
|
utilities?: _pandacss_types.UtilityConfig | undefined;
|
|
361
|
-
globalCss?:
|
|
369
|
+
globalCss?: _pandacss_types.GlobalCss<{
|
|
370
|
+
[x: string]: string;
|
|
371
|
+
}, {
|
|
372
|
+
__type?: "never" | undefined;
|
|
373
|
+
}, false> | undefined;
|
|
362
374
|
logLevel?: "debug" | "info" | "warn" | "error" | "silent" | undefined;
|
|
363
375
|
presets?: string[] | undefined;
|
|
364
376
|
preflight?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/node",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20221122153914",
|
|
4
4
|
"description": "The core css panda library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
"pluralize": "8.0.0",
|
|
30
30
|
"telejson": "6.0.8",
|
|
31
31
|
"ts-pattern": "4.0.6",
|
|
32
|
-
"ts-morph": "17.0.
|
|
33
|
-
"@pandacss/types": "0.0.0-dev-
|
|
34
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
35
|
-
"@pandacss/error": "0.0.0-dev-
|
|
36
|
-
"@pandacss/parser": "0.0.0-dev-
|
|
37
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
38
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
39
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
40
|
-
"@pandacss/core": "0.0.0-dev-
|
|
41
|
-
"@pandacss/config": "0.0.0-dev-
|
|
32
|
+
"ts-morph": "17.0.1",
|
|
33
|
+
"@pandacss/types": "0.0.0-dev-20221122153914",
|
|
34
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20221122153914",
|
|
35
|
+
"@pandacss/error": "0.0.0-dev-20221122153914",
|
|
36
|
+
"@pandacss/parser": "0.0.0-dev-20221122153914",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20221122153914",
|
|
38
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20221122153914",
|
|
39
|
+
"@pandacss/logger": "0.0.0-dev-20221122153914",
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20221122153914",
|
|
41
|
+
"@pandacss/config": "0.0.0-dev-20221122153914"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"boxen": "^7.0.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@types/glob-parent": "^5.1.1",
|
|
48
48
|
"@types/pluralize": "0.0.29",
|
|
49
49
|
"@types/lodash.merge": "4.6.7",
|
|
50
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
50
|
+
"@pandacss/fixture": "0.0.0-dev-20221122153914"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|