@unocss/core 0.55.4 → 0.55.5
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 +1 -5
- package/dist/index.mjs +1 -5
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -15,10 +15,6 @@ function escapeSelector(str) {
|
|
|
15
15
|
result += "\uFFFD";
|
|
16
16
|
continue;
|
|
17
17
|
}
|
|
18
|
-
if (codeUnit === 37) {
|
|
19
|
-
result += "\\%";
|
|
20
|
-
continue;
|
|
21
|
-
}
|
|
22
18
|
if (codeUnit === 44) {
|
|
23
19
|
result += "\\,";
|
|
24
20
|
continue;
|
|
@@ -613,7 +609,7 @@ function mergeAutocompleteShorthands(shorthands) {
|
|
|
613
609
|
);
|
|
614
610
|
}
|
|
615
611
|
|
|
616
|
-
const version = "0.55.
|
|
612
|
+
const version = "0.55.3";
|
|
617
613
|
|
|
618
614
|
var __defProp = Object.defineProperty;
|
|
619
615
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
package/dist/index.mjs
CHANGED
|
@@ -13,10 +13,6 @@ function escapeSelector(str) {
|
|
|
13
13
|
result += "\uFFFD";
|
|
14
14
|
continue;
|
|
15
15
|
}
|
|
16
|
-
if (codeUnit === 37) {
|
|
17
|
-
result += "\\%";
|
|
18
|
-
continue;
|
|
19
|
-
}
|
|
20
16
|
if (codeUnit === 44) {
|
|
21
17
|
result += "\\,";
|
|
22
18
|
continue;
|
|
@@ -611,7 +607,7 @@ function mergeAutocompleteShorthands(shorthands) {
|
|
|
611
607
|
);
|
|
612
608
|
}
|
|
613
609
|
|
|
614
|
-
const version = "0.55.
|
|
610
|
+
const version = "0.55.3";
|
|
615
611
|
|
|
616
612
|
var __defProp = Object.defineProperty;
|
|
617
613
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|