@pandacss/generator 0.0.0-dev-20230801082734 → 0.0.0-dev-20230801084843
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +215 -131
- package/dist/index.mjs +210 -126
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -194,7 +194,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
194
194
|
dashName: string;
|
|
195
195
|
jsxName: string;
|
|
196
196
|
match: RegExp;
|
|
197
|
-
config: _pandacss_types.RecipeConfig;
|
|
197
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
198
198
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
199
199
|
props: string[];
|
|
200
200
|
})[];
|
|
@@ -209,7 +209,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
209
209
|
dashName: string;
|
|
210
210
|
jsxName: string;
|
|
211
211
|
match: RegExp;
|
|
212
|
-
config: _pandacss_types.RecipeConfig;
|
|
212
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
213
213
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
214
214
|
props: string[];
|
|
215
215
|
}[];
|
package/dist/index.d.ts
CHANGED
|
@@ -194,7 +194,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
194
194
|
dashName: string;
|
|
195
195
|
jsxName: string;
|
|
196
196
|
match: RegExp;
|
|
197
|
-
config: _pandacss_types.RecipeConfig;
|
|
197
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
198
198
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
199
199
|
props: string[];
|
|
200
200
|
})[];
|
|
@@ -209,7 +209,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
209
209
|
dashName: string;
|
|
210
210
|
jsxName: string;
|
|
211
211
|
match: RegExp;
|
|
212
|
-
config: _pandacss_types.RecipeConfig;
|
|
212
|
+
config: _pandacss_types.RecipeConfig | _pandacss_types.SlotRecipeConfig;
|
|
213
213
|
splitProps: (props: _pandacss_types.Dict) => [_pandacss_types.Dict, _pandacss_types.Dict];
|
|
214
214
|
props: string[];
|
|
215
215
|
}[];
|