@pandacss/generator 0.9.0 → 0.10.0
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 +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +483 -315
- package/dist/index.mjs +480 -312
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -50,6 +50,7 @@ declare const getEngine: (conf: ConfigResultWithHooks) => {
|
|
|
50
50
|
typeName: string;
|
|
51
51
|
componentName: string;
|
|
52
52
|
framework: ("react" | "solid" | "preact" | "vue" | "qwik") | undefined;
|
|
53
|
+
styleProps: "all" | "minimal" | "none";
|
|
53
54
|
};
|
|
54
55
|
paths: {
|
|
55
56
|
get: (file?: string | undefined) => string[];
|
|
@@ -171,6 +172,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
171
172
|
};
|
|
172
173
|
jsx: {
|
|
173
174
|
factory: string;
|
|
175
|
+
styleProps: "all" | "minimal" | "none";
|
|
174
176
|
isStyleProp: (key: string) => boolean;
|
|
175
177
|
nodes: ({
|
|
176
178
|
props: string[];
|
|
@@ -194,7 +196,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
194
196
|
dashName: string;
|
|
195
197
|
jsxName: string;
|
|
196
198
|
match: RegExp;
|
|
197
|
-
config: _pandacss_types.RecipeConfig;
|
|
199
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
198
200
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
199
201
|
props: string[];
|
|
200
202
|
})[];
|
|
@@ -209,7 +211,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
209
211
|
dashName: string;
|
|
210
212
|
jsxName: string;
|
|
211
213
|
match: RegExp;
|
|
212
|
-
config: _pandacss_types.RecipeConfig;
|
|
214
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
213
215
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
214
216
|
props: string[];
|
|
215
217
|
}[];
|
|
@@ -274,6 +276,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
274
276
|
typeName: string;
|
|
275
277
|
componentName: string;
|
|
276
278
|
framework: ("react" | "solid" | "preact" | "vue" | "qwik") | undefined;
|
|
279
|
+
styleProps: "all" | "minimal" | "none";
|
|
277
280
|
};
|
|
278
281
|
paths: {
|
|
279
282
|
get: (file?: string | undefined) => string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ declare const getEngine: (conf: ConfigResultWithHooks) => {
|
|
|
50
50
|
typeName: string;
|
|
51
51
|
componentName: string;
|
|
52
52
|
framework: ("react" | "solid" | "preact" | "vue" | "qwik") | undefined;
|
|
53
|
+
styleProps: "all" | "minimal" | "none";
|
|
53
54
|
};
|
|
54
55
|
paths: {
|
|
55
56
|
get: (file?: string | undefined) => string[];
|
|
@@ -171,6 +172,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
171
172
|
};
|
|
172
173
|
jsx: {
|
|
173
174
|
factory: string;
|
|
175
|
+
styleProps: "all" | "minimal" | "none";
|
|
174
176
|
isStyleProp: (key: string) => boolean;
|
|
175
177
|
nodes: ({
|
|
176
178
|
props: string[];
|
|
@@ -194,7 +196,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
194
196
|
dashName: string;
|
|
195
197
|
jsxName: string;
|
|
196
198
|
match: RegExp;
|
|
197
|
-
config: _pandacss_types.RecipeConfig;
|
|
199
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
198
200
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
199
201
|
props: string[];
|
|
200
202
|
})[];
|
|
@@ -209,7 +211,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
209
211
|
dashName: string;
|
|
210
212
|
jsxName: string;
|
|
211
213
|
match: RegExp;
|
|
212
|
-
config: _pandacss_types.RecipeConfig;
|
|
214
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
213
215
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
214
216
|
props: string[];
|
|
215
217
|
}[];
|
|
@@ -274,6 +276,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
274
276
|
typeName: string;
|
|
275
277
|
componentName: string;
|
|
276
278
|
framework: ("react" | "solid" | "preact" | "vue" | "qwik") | undefined;
|
|
279
|
+
styleProps: "all" | "minimal" | "none";
|
|
277
280
|
};
|
|
278
281
|
paths: {
|
|
279
282
|
get: (file?: string | undefined) => string[];
|