@pandacss/generator 0.15.2 → 0.15.4
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 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +249 -162
- package/dist/index.mjs +249 -162
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -6,6 +6,7 @@ import * as _pandacss_types_dist_pattern from '@pandacss/types/dist/pattern';
|
|
|
6
6
|
|
|
7
7
|
declare const getEngine: (conf: ConfigResultWithHooks) => {
|
|
8
8
|
patterns: {
|
|
9
|
+
keys: string[];
|
|
9
10
|
getConfig: (name: string) => _pandacss_types.PatternConfig<_pandacss_types_dist_pattern.PatternProperties>;
|
|
10
11
|
transform: (name: string, data: _pandacss_types.Dict) => _pandacss_types.SystemStyleObject;
|
|
11
12
|
getNames: (name: string) => {
|
|
@@ -181,6 +182,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
181
182
|
jsx: string[];
|
|
182
183
|
};
|
|
183
184
|
jsx: {
|
|
185
|
+
framework: ("react" | "solid" | "preact" | "vue" | "qwik") | undefined;
|
|
184
186
|
factory: string;
|
|
185
187
|
styleProps: "all" | "minimal" | "none";
|
|
186
188
|
isStyleProp: (key: string) => boolean;
|
|
@@ -211,6 +213,8 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
211
213
|
props: string[];
|
|
212
214
|
})[];
|
|
213
215
|
};
|
|
216
|
+
patternKeys: string[];
|
|
217
|
+
recipeKeys: string[];
|
|
214
218
|
getRecipesByJsxName: (jsxName: string) => {
|
|
215
219
|
baseName: string;
|
|
216
220
|
type: "recipe";
|
|
@@ -242,6 +246,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
242
246
|
tsOptions: _pandacss_types.ConfigTsOptions | undefined;
|
|
243
247
|
};
|
|
244
248
|
patterns: {
|
|
249
|
+
keys: string[];
|
|
245
250
|
getConfig: (name: string) => _pandacss_types.PatternConfig<_pandacss_types_dist_pattern.PatternProperties>;
|
|
246
251
|
transform: (name: string, data: _pandacss_types.Dict) => _pandacss_types.SystemStyleObject;
|
|
247
252
|
getNames: (name: string) => {
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as _pandacss_types_dist_pattern from '@pandacss/types/dist/pattern';
|
|
|
6
6
|
|
|
7
7
|
declare const getEngine: (conf: ConfigResultWithHooks) => {
|
|
8
8
|
patterns: {
|
|
9
|
+
keys: string[];
|
|
9
10
|
getConfig: (name: string) => _pandacss_types.PatternConfig<_pandacss_types_dist_pattern.PatternProperties>;
|
|
10
11
|
transform: (name: string, data: _pandacss_types.Dict) => _pandacss_types.SystemStyleObject;
|
|
11
12
|
getNames: (name: string) => {
|
|
@@ -181,6 +182,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
181
182
|
jsx: string[];
|
|
182
183
|
};
|
|
183
184
|
jsx: {
|
|
185
|
+
framework: ("react" | "solid" | "preact" | "vue" | "qwik") | undefined;
|
|
184
186
|
factory: string;
|
|
185
187
|
styleProps: "all" | "minimal" | "none";
|
|
186
188
|
isStyleProp: (key: string) => boolean;
|
|
@@ -211,6 +213,8 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
211
213
|
props: string[];
|
|
212
214
|
})[];
|
|
213
215
|
};
|
|
216
|
+
patternKeys: string[];
|
|
217
|
+
recipeKeys: string[];
|
|
214
218
|
getRecipesByJsxName: (jsxName: string) => {
|
|
215
219
|
baseName: string;
|
|
216
220
|
type: "recipe";
|
|
@@ -242,6 +246,7 @@ declare const createGenerator: (conf: ConfigResultWithHooks) => {
|
|
|
242
246
|
tsOptions: _pandacss_types.ConfigTsOptions | undefined;
|
|
243
247
|
};
|
|
244
248
|
patterns: {
|
|
249
|
+
keys: string[];
|
|
245
250
|
getConfig: (name: string) => _pandacss_types.PatternConfig<_pandacss_types_dist_pattern.PatternProperties>;
|
|
246
251
|
transform: (name: string, data: _pandacss_types.Dict) => _pandacss_types.SystemStyleObject;
|
|
247
252
|
getNames: (name: string) => {
|