@pandacss/generator 0.17.4 → 0.17.5

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 CHANGED
@@ -815,9 +815,9 @@ function generateCvaFn(ctx) {
815
815
  return mergeCss(variantCss, compoundVariantCss)
816
816
  }
817
817
 
818
- function merge(cvaConfig) {
819
- const override = defaults(cvaConfig)
820
- const variantKeys = uniq(override.variantKeys, Object.keys(variants))
818
+ function merge(__cva) {
819
+ const override = defaults(__cva.config)
820
+ const variantKeys = uniq(__cva.variantKeys, Object.keys(variants))
821
821
  return cva({
822
822
  base: mergeCss(base, override.base),
823
823
  variants: Object.fromEntries(
@@ -1015,7 +1015,7 @@ function generatedJsxHelpers(ctx) {
1015
1015
  export const composeCvaFn = (cvaA, cvaB) => {
1016
1016
  if (cvaA && !cvaB) return cvaA
1017
1017
  if (!cvaA && cvaB) return cvaB
1018
- if ((cvaA.__cva__ && cvaB.__cva__) || (cvaA.__recipe__ && cvaB.__recipe__)) return cvaA.merge(cvaB.config)
1018
+ if ((cvaA.__cva__ && cvaB.__cva__) || (cvaA.__recipe__ && cvaB.__recipe__)) return cvaA.merge(cvaB)
1019
1019
  const error = new TypeError('Cannot merge cva with recipe. Please use either cva or recipe.')
1020
1020
  TypeError.captureStackTrace?.(error)
1021
1021
  throw error
@@ -2330,7 +2330,7 @@ function generateSolidJsxFactory(ctx) {
2330
2330
  "defaultShouldForwardProp, composeShouldForwardProps, composeCvaFn, getDisplayName",
2331
2331
  "./factory-helper"
2332
2332
  )}
2333
- ${ctx.file.import("isCssProperty, allCssProperties", "./is-valid-prop")}
2333
+ ${ctx.file.import("isCssProperty", "./is-valid-prop")}
2334
2334
  ${ctx.file.import("css, cx, cva", "../css/index")}
2335
2335
  ${ctx.file.import("normalizeHTMLProps", "../helpers")}
2336
2336
 
@@ -2355,13 +2355,19 @@ function generateSolidJsxFactory(ctx) {
2355
2355
  Object.keys(props).filter((prop) => !normalizeHTMLProps.keys.includes(prop) && shouldForwardProp(prop)),
2356
2356
  )
2357
2357
 
2358
- const [localProps, htmlProps, forwardedProps, variantProps, styleProps, elementProps] = splitProps(
2358
+ const [localProps, htmlProps, forwardedProps, restProps] = splitProps(
2359
2359
  mergedProps,
2360
2360
  ['as', 'class', 'className'],
2361
2361
  normalizeHTMLProps.keys,
2362
- forwardedKeys(),
2362
+ forwardedKeys()
2363
+ )
2364
+
2365
+ const cssPropertyKeys = createMemo(() => Object.keys(restProps).filter((prop) => isCssProperty(prop)))
2366
+
2367
+ const [variantProps, styleProps, elementProps] = splitProps(
2368
+ restProps,
2363
2369
  __cvaFn__.variantKeys,
2364
- allCssProperties,
2370
+ cssPropertyKeys(),
2365
2371
  )
2366
2372
 
2367
2373
  function recipeClass() {
package/dist/index.mjs CHANGED
@@ -784,9 +784,9 @@ function generateCvaFn(ctx) {
784
784
  return mergeCss(variantCss, compoundVariantCss)
785
785
  }
786
786
 
787
- function merge(cvaConfig) {
788
- const override = defaults(cvaConfig)
789
- const variantKeys = uniq(override.variantKeys, Object.keys(variants))
787
+ function merge(__cva) {
788
+ const override = defaults(__cva.config)
789
+ const variantKeys = uniq(__cva.variantKeys, Object.keys(variants))
790
790
  return cva({
791
791
  base: mergeCss(base, override.base),
792
792
  variants: Object.fromEntries(
@@ -984,7 +984,7 @@ function generatedJsxHelpers(ctx) {
984
984
  export const composeCvaFn = (cvaA, cvaB) => {
985
985
  if (cvaA && !cvaB) return cvaA
986
986
  if (!cvaA && cvaB) return cvaB
987
- if ((cvaA.__cva__ && cvaB.__cva__) || (cvaA.__recipe__ && cvaB.__recipe__)) return cvaA.merge(cvaB.config)
987
+ if ((cvaA.__cva__ && cvaB.__cva__) || (cvaA.__recipe__ && cvaB.__recipe__)) return cvaA.merge(cvaB)
988
988
  const error = new TypeError('Cannot merge cva with recipe. Please use either cva or recipe.')
989
989
  TypeError.captureStackTrace?.(error)
990
990
  throw error
@@ -2299,7 +2299,7 @@ function generateSolidJsxFactory(ctx) {
2299
2299
  "defaultShouldForwardProp, composeShouldForwardProps, composeCvaFn, getDisplayName",
2300
2300
  "./factory-helper"
2301
2301
  )}
2302
- ${ctx.file.import("isCssProperty, allCssProperties", "./is-valid-prop")}
2302
+ ${ctx.file.import("isCssProperty", "./is-valid-prop")}
2303
2303
  ${ctx.file.import("css, cx, cva", "../css/index")}
2304
2304
  ${ctx.file.import("normalizeHTMLProps", "../helpers")}
2305
2305
 
@@ -2324,13 +2324,19 @@ function generateSolidJsxFactory(ctx) {
2324
2324
  Object.keys(props).filter((prop) => !normalizeHTMLProps.keys.includes(prop) && shouldForwardProp(prop)),
2325
2325
  )
2326
2326
 
2327
- const [localProps, htmlProps, forwardedProps, variantProps, styleProps, elementProps] = splitProps(
2327
+ const [localProps, htmlProps, forwardedProps, restProps] = splitProps(
2328
2328
  mergedProps,
2329
2329
  ['as', 'class', 'className'],
2330
2330
  normalizeHTMLProps.keys,
2331
- forwardedKeys(),
2331
+ forwardedKeys()
2332
+ )
2333
+
2334
+ const cssPropertyKeys = createMemo(() => Object.keys(restProps).filter((prop) => isCssProperty(prop)))
2335
+
2336
+ const [variantProps, styleProps, elementProps] = splitProps(
2337
+ restProps,
2332
2338
  __cvaFn__.variantKeys,
2333
- allCssProperties,
2339
+ cssPropertyKeys(),
2334
2340
  )
2335
2341
 
2336
2342
  function recipeClass() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/generator",
3
- "version": "0.17.4",
3
+ "version": "0.17.5",
4
4
  "description": "The css generator for css panda",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -32,20 +32,21 @@
32
32
  "pluralize": "8.0.0",
33
33
  "postcss": "^8.4.31",
34
34
  "ts-pattern": "5.0.5",
35
- "@pandacss/core": "0.17.4",
36
- "@pandacss/is-valid-prop": "0.17.4",
37
- "@pandacss/logger": "0.17.4",
38
- "@pandacss/shared": "0.17.4",
39
- "@pandacss/token-dictionary": "0.17.4",
40
- "@pandacss/types": "0.17.4"
35
+ "@pandacss/core": "0.17.5",
36
+ "@pandacss/is-valid-prop": "0.17.5",
37
+ "@pandacss/logger": "0.17.5",
38
+ "@pandacss/shared": "0.17.5",
39
+ "@pandacss/token-dictionary": "0.17.5",
40
+ "@pandacss/types": "0.17.5"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/pluralize": "0.0.30",
44
44
  "hookable": "5.5.3",
45
- "@pandacss/fixture": "0.17.4"
45
+ "@pandacss/fixture": "0.17.5"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsup src/index.ts --format=esm,cjs --dts",
49
- "build-fast": "tsup src/index.ts --format=esm,cjs --no-dts"
49
+ "build-fast": "tsup src/index.ts --format=esm,cjs --no-dts",
50
+ "dev": "pnpm build-fast --watch"
50
51
  }
51
52
  }