@unocss/core 0.60.2 → 0.60.3
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.mjs +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -154,7 +154,7 @@ function isStaticShortcut(sc) {
|
|
|
154
154
|
|
|
155
155
|
const attributifyRE = /^\[(.+?)~?="(.*)"\]$/;
|
|
156
156
|
const cssIdRE = /\.(css|postcss|sass|scss|less|stylus|styl)($|\?)/;
|
|
157
|
-
const validateFilterRE = /[\w\u00A0-\uFFFF
|
|
157
|
+
const validateFilterRE = /[\w\u00A0-\uFFFF%-?]/;
|
|
158
158
|
const CONTROL_SHORTCUT_NO_MERGE = "$$shortcut-no-merge";
|
|
159
159
|
function isAttributifySelector(selector) {
|
|
160
160
|
return selector.match(attributifyRE);
|
|
@@ -603,7 +603,7 @@ function definePreset(preset) {
|
|
|
603
603
|
return preset;
|
|
604
604
|
}
|
|
605
605
|
|
|
606
|
-
const version = "0.60.
|
|
606
|
+
const version = "0.60.3";
|
|
607
607
|
|
|
608
608
|
var __defProp = Object.defineProperty;
|
|
609
609
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|