@csszyx/runtime 0.10.6 → 0.10.7

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.cjs CHANGED
@@ -1377,6 +1377,9 @@ function mergeClassify(token) {
1377
1377
  if (!norm) {
1378
1378
  return null;
1379
1379
  }
1380
+ if (base.indexOf("--") > 0) {
1381
+ return null;
1382
+ }
1380
1383
  if (BOX_ROLE_TOKENS.has(norm)) {
1381
1384
  return null;
1382
1385
  }
package/dist/index.mjs CHANGED
@@ -1375,6 +1375,9 @@ function mergeClassify(token) {
1375
1375
  if (!norm) {
1376
1376
  return null;
1377
1377
  }
1378
+ if (base.indexOf("--") > 0) {
1379
+ return null;
1380
+ }
1378
1381
  if (BOX_ROLE_TOKENS.has(norm)) {
1379
1382
  return null;
1380
1383
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@csszyx/runtime",
3
- "version": "0.10.6",
3
+ "version": "0.10.7",
4
4
  "description": "Runtime helpers and hydration guards for csszyx",
5
5
  "keywords": [
6
6
  "csszyx",
@@ -49,8 +49,8 @@
49
49
  "dist"
50
50
  ],
51
51
  "dependencies": {
52
- "@csszyx/core": "0.10.6",
53
- "@csszyx/compiler": "0.10.6"
52
+ "@csszyx/compiler": "0.10.7",
53
+ "@csszyx/core": "0.10.7"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/node": "^20.11.0",