@pandacss/node 0.0.0-dev-20230109182737 → 0.0.0-dev-20230110150257
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 -12
- package/dist/index.js +160 -157
- package/dist/index.mjs +139 -136
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -36,8 +36,8 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
|
36
36
|
keyframes?: _pandacss_types.CssKeyframes | undefined;
|
|
37
37
|
tokens?: _pandacss_types.Tokens | undefined;
|
|
38
38
|
semanticTokens?: _pandacss_types.SemanticTokens<string> | undefined;
|
|
39
|
-
textStyles?: _pandacss_types.TextStyles
|
|
40
|
-
layerStyles?: _pandacss_types.LayerStyles
|
|
39
|
+
textStyles?: _pandacss_types.TextStyles | undefined;
|
|
40
|
+
layerStyles?: _pandacss_types.LayerStyles | undefined;
|
|
41
41
|
recipes?: Record<string, RecipeConfig<_pandacss_types_dist_recipe.TVariants>> | undefined;
|
|
42
42
|
};
|
|
43
43
|
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config<_pandacss_types.Conditions, Dict<any>, _pandacss_types.Tokens>, "include" | "outdir" | "cwd">>;
|
|
@@ -103,7 +103,7 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
|
103
103
|
patterns: Record<string, PatternConfig>;
|
|
104
104
|
hasPatterns: boolean;
|
|
105
105
|
getPattern: (name: string) => PatternConfig | undefined;
|
|
106
|
-
execPattern: (name: string, data: Record<string, any>) => _pandacss_types.
|
|
106
|
+
execPattern: (name: string, data: Record<string, any>) => _pandacss_types.SystemStyleObject;
|
|
107
107
|
patternNodes: {
|
|
108
108
|
type: "pattern";
|
|
109
109
|
name: string;
|
|
@@ -118,6 +118,7 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
|
118
118
|
upperName: string;
|
|
119
119
|
styleFn: string;
|
|
120
120
|
jsxName: string;
|
|
121
|
+
blocklistType: string;
|
|
121
122
|
};
|
|
122
123
|
recipes: Record<string, RecipeConfig<_pandacss_types_dist_recipe.TVariants>>;
|
|
123
124
|
getRecipe: (name: string) => RecipeConfig | undefined;
|
|
@@ -157,7 +158,7 @@ declare function createContext(conf: LoadConfigResult, io?: IO): {
|
|
|
157
158
|
cssVarPrefix?: string | undefined;
|
|
158
159
|
watch?: boolean | undefined;
|
|
159
160
|
poll?: boolean | undefined;
|
|
160
|
-
globalCss?: _pandacss_types_dist_system_types.GlobalStyleObject
|
|
161
|
+
globalCss?: _pandacss_types_dist_system_types.GlobalStyleObject | undefined;
|
|
161
162
|
jsxFramework?: "solid" | "react" | "preact" | undefined;
|
|
162
163
|
strictTokens?: boolean | undefined;
|
|
163
164
|
include: string[];
|
|
@@ -187,8 +188,8 @@ declare class Builder {
|
|
|
187
188
|
keyframes?: _pandacss_types.CssKeyframes | undefined;
|
|
188
189
|
tokens?: _pandacss_types.Tokens | undefined;
|
|
189
190
|
semanticTokens?: _pandacss_types.SemanticTokens<string> | undefined;
|
|
190
|
-
textStyles?: _pandacss_types.TextStyles
|
|
191
|
-
layerStyles?: _pandacss_types.LayerStyles
|
|
191
|
+
textStyles?: _pandacss_types.TextStyles | undefined;
|
|
192
|
+
layerStyles?: _pandacss_types.LayerStyles | undefined;
|
|
192
193
|
recipes?: Record<string, _pandacss_types.RecipeConfig<_pandacss_types_dist_recipe.TVariants>> | undefined;
|
|
193
194
|
};
|
|
194
195
|
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config<_pandacss_types.Conditions, _pandacss_types.Dict<any>, _pandacss_types.Tokens>, "include" | "outdir" | "cwd">>;
|
|
@@ -254,7 +255,7 @@ declare class Builder {
|
|
|
254
255
|
patterns: Record<string, _pandacss_types.PatternConfig>;
|
|
255
256
|
hasPatterns: boolean;
|
|
256
257
|
getPattern: (name: string) => _pandacss_types.PatternConfig | undefined;
|
|
257
|
-
execPattern: (name: string, data: Record<string, any>) => _pandacss_types.
|
|
258
|
+
execPattern: (name: string, data: Record<string, any>) => _pandacss_types.SystemStyleObject;
|
|
258
259
|
patternNodes: {
|
|
259
260
|
type: "pattern";
|
|
260
261
|
name: string;
|
|
@@ -269,6 +270,7 @@ declare class Builder {
|
|
|
269
270
|
upperName: string;
|
|
270
271
|
styleFn: string;
|
|
271
272
|
jsxName: string;
|
|
273
|
+
blocklistType: string;
|
|
272
274
|
};
|
|
273
275
|
recipes: Record<string, _pandacss_types.RecipeConfig<_pandacss_types_dist_recipe.TVariants>>;
|
|
274
276
|
getRecipe: (name: string) => _pandacss_types.RecipeConfig<_pandacss_types_dist_recipe.TVariants> | undefined;
|
|
@@ -308,7 +310,7 @@ declare class Builder {
|
|
|
308
310
|
cssVarPrefix?: string | undefined;
|
|
309
311
|
watch?: boolean | undefined;
|
|
310
312
|
poll?: boolean | undefined;
|
|
311
|
-
globalCss?: _pandacss_types_dist_system_types.GlobalStyleObject
|
|
313
|
+
globalCss?: _pandacss_types_dist_system_types.GlobalStyleObject | undefined;
|
|
312
314
|
jsxFramework?: "solid" | "react" | "preact" | undefined;
|
|
313
315
|
strictTokens?: boolean | undefined;
|
|
314
316
|
include: string[];
|
|
@@ -330,8 +332,8 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
330
332
|
keyframes?: _pandacss_types.CssKeyframes | undefined;
|
|
331
333
|
tokens?: _pandacss_types.Tokens | undefined;
|
|
332
334
|
semanticTokens?: _pandacss_types.SemanticTokens<string> | undefined;
|
|
333
|
-
textStyles?: _pandacss_types.TextStyles
|
|
334
|
-
layerStyles?: _pandacss_types.LayerStyles
|
|
335
|
+
textStyles?: _pandacss_types.TextStyles | undefined;
|
|
336
|
+
layerStyles?: _pandacss_types.LayerStyles | undefined;
|
|
335
337
|
recipes?: Record<string, _pandacss_types.RecipeConfig<_pandacss_types_dist_recipe.TVariants>> | undefined;
|
|
336
338
|
};
|
|
337
339
|
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<Config<_pandacss_types.Conditions, _pandacss_types.Dict<any>, _pandacss_types.Tokens>, "include" | "outdir" | "cwd">>;
|
|
@@ -397,7 +399,7 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
397
399
|
patterns: Record<string, _pandacss_types.PatternConfig>;
|
|
398
400
|
hasPatterns: boolean;
|
|
399
401
|
getPattern: (name: string) => _pandacss_types.PatternConfig | undefined;
|
|
400
|
-
execPattern: (name: string, data: Record<string, any>) => _pandacss_types.
|
|
402
|
+
execPattern: (name: string, data: Record<string, any>) => _pandacss_types.SystemStyleObject;
|
|
401
403
|
patternNodes: {
|
|
402
404
|
type: "pattern";
|
|
403
405
|
name: string;
|
|
@@ -412,6 +414,7 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
412
414
|
upperName: string;
|
|
413
415
|
styleFn: string;
|
|
414
416
|
jsxName: string;
|
|
417
|
+
blocklistType: string;
|
|
415
418
|
};
|
|
416
419
|
recipes: Record<string, _pandacss_types.RecipeConfig<_pandacss_types_dist_recipe.TVariants>>;
|
|
417
420
|
getRecipe: (name: string) => _pandacss_types.RecipeConfig<_pandacss_types_dist_recipe.TVariants> | undefined;
|
|
@@ -451,7 +454,7 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
451
454
|
cssVarPrefix?: string | undefined;
|
|
452
455
|
watch?: boolean | undefined;
|
|
453
456
|
poll?: boolean | undefined;
|
|
454
|
-
globalCss?: _pandacss_types_dist_system_types.GlobalStyleObject
|
|
457
|
+
globalCss?: _pandacss_types_dist_system_types.GlobalStyleObject | undefined;
|
|
455
458
|
jsxFramework?: "solid" | "react" | "preact" | undefined;
|
|
456
459
|
strictTokens?: boolean | undefined;
|
|
457
460
|
include: string[];
|