@getcoherent/core 0.6.51 → 0.6.53

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10336,9 +10336,7 @@ function getAllowedColorClasses(cssString) {
10336
10336
  const modifierGroup = `(?:(?:[a-z][a-z0-9-]*:)*)?`;
10337
10337
  const prefixGroup = `(?:${COLOR_PREFIXES.join("|")})`;
10338
10338
  const colorGroup = `(?:${RAW_TAILWIND_COLORS.join("|")})`;
10339
- const disallowedPattern = new RegExp(
10340
- `\\b${modifierGroup}${prefixGroup}-${colorGroup}-\\d+(?:\\/\\d+)?\\b`
10341
- );
10339
+ const disallowedPattern = new RegExp(`\\b${modifierGroup}${prefixGroup}-${colorGroup}-\\d+(?:\\/\\d+)?\\b`);
10342
10340
  return { classes, constraintSnippet, disallowedPattern };
10343
10341
  }
10344
10342
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.6.51",
6
+ "version": "0.6.53",
7
7
  "description": "Core design system engine for Coherent",
8
8
  "type": "module",
9
9
  "main": "./dist/index.js",