@pandacss/node 0.0.0-dev-20230126071434 → 0.0.0-dev-20230126175306
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 +7 -7
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as _pandacss_types_dist_config from '@pandacss/types/dist/config';
|
|
|
5
5
|
import * as ts_morph from 'ts-morph';
|
|
6
6
|
import * as _pandacss_types_dist_shared from '@pandacss/types/dist/shared';
|
|
7
7
|
import * as _pandacss_types from '@pandacss/types';
|
|
8
|
-
import {
|
|
8
|
+
import { RecipeConfig, PatternConfig, Config } from '@pandacss/types';
|
|
9
9
|
import * as _pandacss_config from '@pandacss/config';
|
|
10
10
|
import { LoadConfigResult } from '@pandacss/config';
|
|
11
11
|
import * as _pandacss_parser from '@pandacss/parser';
|
|
@@ -31,7 +31,7 @@ type Output = Nullable<{
|
|
|
31
31
|
}>;
|
|
32
32
|
declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
33
33
|
theme: {
|
|
34
|
-
breakpoints?:
|
|
34
|
+
breakpoints?: Record<string, string> | undefined;
|
|
35
35
|
keyframes?: _pandacss_types.CssKeyframes | undefined;
|
|
36
36
|
tokens?: _pandacss_types.Tokens | undefined;
|
|
37
37
|
semanticTokens?: _pandacss_types.SemanticTokens<string> | undefined;
|
|
@@ -39,7 +39,7 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
|
39
39
|
layerStyles?: _pandacss_types.LayerStyles | undefined;
|
|
40
40
|
recipes?: Record<string, RecipeConfig<_pandacss_types.RecipeVariantRecord>> | undefined;
|
|
41
41
|
};
|
|
42
|
-
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config
|
|
42
|
+
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config, "include" | "outdir" | "cwd">>;
|
|
43
43
|
configPath: string;
|
|
44
44
|
cwd: string;
|
|
45
45
|
conf: LoadConfigResult;
|
|
@@ -190,7 +190,7 @@ declare class Builder {
|
|
|
190
190
|
setup(): Promise<void>;
|
|
191
191
|
ensure(): {
|
|
192
192
|
theme: {
|
|
193
|
-
breakpoints?:
|
|
193
|
+
breakpoints?: Record<string, string> | undefined;
|
|
194
194
|
keyframes?: _pandacss_types.CssKeyframes | undefined;
|
|
195
195
|
tokens?: _pandacss_types.Tokens | undefined;
|
|
196
196
|
semanticTokens?: _pandacss_types.SemanticTokens<string> | undefined;
|
|
@@ -198,7 +198,7 @@ declare class Builder {
|
|
|
198
198
|
layerStyles?: _pandacss_types.LayerStyles | undefined;
|
|
199
199
|
recipes?: Record<string, _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>> | undefined;
|
|
200
200
|
};
|
|
201
|
-
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config
|
|
201
|
+
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config, "include" | "outdir" | "cwd">>;
|
|
202
202
|
configPath: string;
|
|
203
203
|
cwd: string;
|
|
204
204
|
conf: _pandacss_config.LoadConfigResult;
|
|
@@ -341,7 +341,7 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
341
341
|
configPath?: string;
|
|
342
342
|
}): Promise<{
|
|
343
343
|
theme: {
|
|
344
|
-
breakpoints?:
|
|
344
|
+
breakpoints?: Record<string, string> | undefined;
|
|
345
345
|
keyframes?: _pandacss_types.CssKeyframes | undefined;
|
|
346
346
|
tokens?: _pandacss_types.Tokens | undefined;
|
|
347
347
|
semanticTokens?: _pandacss_types.SemanticTokens<string> | undefined;
|
|
@@ -349,7 +349,7 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
349
349
|
layerStyles?: _pandacss_types.LayerStyles | undefined;
|
|
350
350
|
recipes?: Record<string, _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>> | undefined;
|
|
351
351
|
};
|
|
352
|
-
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<Config
|
|
352
|
+
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<Config, "include" | "outdir" | "cwd">>;
|
|
353
353
|
configPath: string;
|
|
354
354
|
cwd: string;
|
|
355
355
|
conf: _pandacss_config.LoadConfigResult;
|
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-20230126175306",
|
|
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
|
"javascript-stringify": "2.1.0",
|
|
31
31
|
"ts-pattern": "4.1.3",
|
|
32
32
|
"ts-morph": "17.0.1",
|
|
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-
|
|
33
|
+
"@pandacss/types": "0.0.0-dev-20230126175306",
|
|
34
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230126175306",
|
|
35
|
+
"@pandacss/error": "0.0.0-dev-20230126175306",
|
|
36
|
+
"@pandacss/parser": "0.0.0-dev-20230126175306",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20230126175306",
|
|
38
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230126175306",
|
|
39
|
+
"@pandacss/logger": "0.0.0-dev-20230126175306",
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20230126175306",
|
|
41
|
+
"@pandacss/config": "0.0.0-dev-20230126175306"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/fs-extra": "11.0.1",
|
|
@@ -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-
|
|
49
|
+
"@pandacss/fixture": "0.0.0-dev-20230126175306"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|