@pandacss/generator 0.0.0-dev-20231203180122 → 0.0.0-dev-20231203213411
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.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -2719,14 +2719,14 @@ function generateVueJsxFactory(ctx) {
|
|
|
2719
2719
|
const [_htmlProps, _forwardedProps, variantProps, styleProps, _elementProps] = splittedProps.value
|
|
2720
2720
|
const { css: cssStyles, ...propStyles } = styleProps
|
|
2721
2721
|
const compoundVariantStyles = __cvaFn__.__getCompoundVariantCss__?.(variantProps);
|
|
2722
|
-
return cx(__cvaFn__(variantProps, false), css(compoundVariantStyles, propStyles, cssStyles), combinedProps.value.className)
|
|
2722
|
+
return cx(__cvaFn__(variantProps, false), css(compoundVariantStyles, propStyles, cssStyles), combinedProps.value.className, combinedProps.value.class)
|
|
2723
2723
|
})
|
|
2724
2724
|
|
|
2725
2725
|
const cvaClass = computed(() => {
|
|
2726
2726
|
const [_htmlProps, _forwardedProps, variantProps, styleProps, _elementProps] = splittedProps.value
|
|
2727
2727
|
const { css: cssStyles, ...propStyles } = styleProps
|
|
2728
2728
|
const cvaStyles = __cvaFn__.raw(variantProps)
|
|
2729
|
-
return cx(css(cvaStyles, propStyles, cssStyles), combinedProps.value.className)
|
|
2729
|
+
return cx(css(cvaStyles, propStyles, cssStyles), combinedProps.value.className, combinedProps.value.class)
|
|
2730
2730
|
})
|
|
2731
2731
|
|
|
2732
2732
|
const classes = configOrCva.__recipe__ ? recipeClass : cvaClass
|
package/dist/index.mjs
CHANGED
|
@@ -2688,14 +2688,14 @@ function generateVueJsxFactory(ctx) {
|
|
|
2688
2688
|
const [_htmlProps, _forwardedProps, variantProps, styleProps, _elementProps] = splittedProps.value
|
|
2689
2689
|
const { css: cssStyles, ...propStyles } = styleProps
|
|
2690
2690
|
const compoundVariantStyles = __cvaFn__.__getCompoundVariantCss__?.(variantProps);
|
|
2691
|
-
return cx(__cvaFn__(variantProps, false), css(compoundVariantStyles, propStyles, cssStyles), combinedProps.value.className)
|
|
2691
|
+
return cx(__cvaFn__(variantProps, false), css(compoundVariantStyles, propStyles, cssStyles), combinedProps.value.className, combinedProps.value.class)
|
|
2692
2692
|
})
|
|
2693
2693
|
|
|
2694
2694
|
const cvaClass = computed(() => {
|
|
2695
2695
|
const [_htmlProps, _forwardedProps, variantProps, styleProps, _elementProps] = splittedProps.value
|
|
2696
2696
|
const { css: cssStyles, ...propStyles } = styleProps
|
|
2697
2697
|
const cvaStyles = __cvaFn__.raw(variantProps)
|
|
2698
|
-
return cx(css(cvaStyles, propStyles, cssStyles), combinedProps.value.className)
|
|
2698
|
+
return cx(css(cvaStyles, propStyles, cssStyles), combinedProps.value.className, combinedProps.value.class)
|
|
2699
2699
|
})
|
|
2700
2700
|
|
|
2701
2701
|
const classes = configOrCva.__recipe__ ? recipeClass : cvaClass
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/generator",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20231203213411",
|
|
4
4
|
"description": "The css generator for css panda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"pluralize": "8.0.0",
|
|
33
33
|
"postcss": "^8.4.31",
|
|
34
34
|
"ts-pattern": "5.0.5",
|
|
35
|
-
"@pandacss/core": "0.0.0-dev-
|
|
36
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
37
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
38
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
39
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
40
|
-
"@pandacss/types": "0.0.0-dev-
|
|
35
|
+
"@pandacss/core": "0.0.0-dev-20231203213411",
|
|
36
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20231203213411",
|
|
37
|
+
"@pandacss/logger": "0.0.0-dev-20231203213411",
|
|
38
|
+
"@pandacss/shared": "0.0.0-dev-20231203213411",
|
|
39
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20231203213411",
|
|
40
|
+
"@pandacss/types": "0.0.0-dev-20231203213411"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/pluralize": "0.0.33",
|
|
44
44
|
"hookable": "5.5.3",
|
|
45
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
45
|
+
"@pandacss/fixture": "0.0.0-dev-20231203213411"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup src/index.ts --format=esm,cjs --dts",
|