@pandacss/shared 0.22.0 → 0.23.0

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
@@ -171,7 +171,7 @@ function filterBaseConditions(c) {
171
171
  }
172
172
 
173
173
  // src/css-important.ts
174
- var importantRegex = /!(important)?$/;
174
+ var importantRegex = /!(important)?/;
175
175
  function isImportant(value) {
176
176
  return typeof value === "string" ? importantRegex.test(value) : false;
177
177
  }
package/dist/index.mjs CHANGED
@@ -100,7 +100,7 @@ function filterBaseConditions(c) {
100
100
  }
101
101
 
102
102
  // src/css-important.ts
103
- var importantRegex = /!(important)?$/;
103
+ var importantRegex = /!(important)?/;
104
104
  function isImportant(value) {
105
105
  return typeof value === "string" ? importantRegex.test(value) : false;
106
106
  }
package/dist/shared.js CHANGED
@@ -57,7 +57,7 @@ function filterBaseConditions(c) {
57
57
  }
58
58
 
59
59
  // src/css-important.ts
60
- var importantRegex = /!(important)?$/;
60
+ var importantRegex = /!(important)?/;
61
61
  function isImportant(value) {
62
62
  return typeof value === "string" ? importantRegex.test(value) : false;
63
63
  }
package/dist/shared.mjs CHANGED
@@ -15,7 +15,7 @@ function filterBaseConditions(c) {
15
15
  }
16
16
 
17
17
  // src/css-important.ts
18
- var importantRegex = /!(important)?$/;
18
+ var importantRegex = /!(important)?/;
19
19
  function isImportant(value) {
20
20
  return typeof value === "string" ? importantRegex.test(value) : false;
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/shared",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "Shared utilities for css panda",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",