@pandacss/generator 0.0.0-dev-20240308225535 → 0.0.0-dev-20240309183251
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 -1
- package/dist/index.mjs +2 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -2999,7 +2999,8 @@ function generatePropTypes(ctx) {
|
|
|
2999
2999
|
| 'wordBreak'
|
|
3000
3000
|
| 'writingMode'
|
|
3001
3001
|
|
|
3002
|
-
type
|
|
3002
|
+
type WithColorOpacityModifier<T> = T extends string ? \`$\{T}/\${string}\` : T
|
|
3003
|
+
type WithEscapeHatch<T> = T | \`[\${string}]\` | \`\${T}/{string}\` | WithColorOpacityModifier<T>
|
|
3003
3004
|
|
|
3004
3005
|
type FilterVagueString<Key, Value> = Value extends boolean
|
|
3005
3006
|
? Value
|
package/dist/index.mjs
CHANGED
|
@@ -2963,7 +2963,8 @@ function generatePropTypes(ctx) {
|
|
|
2963
2963
|
| 'wordBreak'
|
|
2964
2964
|
| 'writingMode'
|
|
2965
2965
|
|
|
2966
|
-
type
|
|
2966
|
+
type WithColorOpacityModifier<T> = T extends string ? \`$\{T}/\${string}\` : T
|
|
2967
|
+
type WithEscapeHatch<T> = T | \`[\${string}]\` | \`\${T}/{string}\` | WithColorOpacityModifier<T>
|
|
2967
2968
|
|
|
2968
2969
|
type FilterVagueString<Key, Value> = Value extends boolean
|
|
2969
2970
|
? Value
|
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-20240309183251",
|
|
4
4
|
"description": "The css generator for css panda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"pluralize": "8.0.0",
|
|
38
38
|
"postcss": "8.4.35",
|
|
39
39
|
"ts-pattern": "5.0.8",
|
|
40
|
-
"@pandacss/core": "0.0.0-dev-
|
|
41
|
-
"@pandacss/is-valid-prop": "^0.0.0-dev-
|
|
42
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
43
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
44
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
45
|
-
"@pandacss/types": "0.0.0-dev-
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20240309183251",
|
|
41
|
+
"@pandacss/is-valid-prop": "^0.0.0-dev-20240309183251",
|
|
42
|
+
"@pandacss/logger": "0.0.0-dev-20240309183251",
|
|
43
|
+
"@pandacss/shared": "0.0.0-dev-20240309183251",
|
|
44
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20240309183251",
|
|
45
|
+
"@pandacss/types": "0.0.0-dev-20240309183251"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/pluralize": "0.0.33"
|