@unocss/preset-uno 0.12.18 → 0.14.1
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/{chunk-GBKIE2NK.js → chunk-2BHDQQCR.js} +68 -36
- package/dist/{chunk-IFOGL3S7.mjs → chunk-MBU6ORW7.mjs} +4 -2
- package/dist/{chunk-RDUXYWRV.mjs → chunk-OWR5JIMD.mjs} +67 -35
- package/dist/{chunk-64RIF3V4.js → chunk-ZSX2GKSH.js} +4 -2
- package/dist/index.js +6 -6
- package/dist/index.mjs +2 -2
- package/dist/rules.d.ts +2 -1
- package/dist/rules.js +4 -2
- package/dist/rules.mjs +3 -1
- package/dist/variants.js +2 -2
- package/dist/variants.mjs +1 -1
- package/package.json +2 -2
|
@@ -707,17 +707,8 @@ var transitions = [
|
|
|
707
707
|
// src/rules/filters.ts
|
|
708
708
|
|
|
709
709
|
var varEmpty = "var(--un-empty,/*!*/ /*!*/)";
|
|
710
|
-
var percentWithDefault = (defaultValue = "1") => (str) => {
|
|
711
|
-
const v = str ? _chunkLPZDYB4Jjs.handler.bracket.percent(str) : defaultValue;
|
|
712
|
-
return v && parseFloat(v) <= 1 ? v : void 0;
|
|
713
|
-
};
|
|
714
|
-
var toFilter = (varName, resolver) => ([, b, s], { theme }) => {
|
|
715
|
-
const value = resolver(s, theme);
|
|
716
|
-
if (value)
|
|
717
|
-
return { [`--un-${b || ""}${varName}`]: `${varName}(${value})` };
|
|
718
|
-
};
|
|
719
710
|
var filterContnet = "var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia) var(--un-drop-shadow)";
|
|
720
|
-
var
|
|
711
|
+
var filterBase = {
|
|
721
712
|
"--un-blur": varEmpty,
|
|
722
713
|
"--un-brightness": varEmpty,
|
|
723
714
|
"--un-contrast": varEmpty,
|
|
@@ -730,7 +721,7 @@ var filter = {
|
|
|
730
721
|
"filter": filterContnet
|
|
731
722
|
};
|
|
732
723
|
var backdropFilterContent = "var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-saturate) var(--un-backdrop-sepia)";
|
|
733
|
-
var
|
|
724
|
+
var backdropFilterBase = {
|
|
734
725
|
"--un-backdrop-blur": varEmpty,
|
|
735
726
|
"--un-backdrop-brightness": varEmpty,
|
|
736
727
|
"--un-backdrop-contrast": varEmpty,
|
|
@@ -742,10 +733,23 @@ var backdropFilter = {
|
|
|
742
733
|
"-webkit-backdrop-filter": backdropFilterContent,
|
|
743
734
|
"backdrop-filter": backdropFilterContent
|
|
744
735
|
};
|
|
736
|
+
var percentWithDefault = (defaultValue = "1") => (str) => {
|
|
737
|
+
const v = str ? _chunkLPZDYB4Jjs.handler.bracket.percent(str) : defaultValue;
|
|
738
|
+
return v && parseFloat(v) <= 1 ? v : void 0;
|
|
739
|
+
};
|
|
740
|
+
var toFilter = (varName, resolver) => ([, b, s], { theme }) => {
|
|
741
|
+
const value = resolver(s, theme);
|
|
742
|
+
if (value) {
|
|
743
|
+
return [
|
|
744
|
+
b ? backdropFilterBase : filterBase,
|
|
745
|
+
{ [`--un-${b || ""}${varName}`]: `${varName}(${value})` }
|
|
746
|
+
];
|
|
747
|
+
}
|
|
748
|
+
};
|
|
745
749
|
var filters = [
|
|
746
|
-
["filter",
|
|
750
|
+
["filter", filterBase],
|
|
747
751
|
["filter-none", { filter: "none" }],
|
|
748
|
-
["backdrop-filter",
|
|
752
|
+
["backdrop-filter", backdropFilterBase],
|
|
749
753
|
["backdrop-filter-none", {
|
|
750
754
|
"-webkit-backdrop-filter": "none",
|
|
751
755
|
"backdrop-filter": "none"
|
|
@@ -1262,6 +1266,7 @@ var margins = [
|
|
|
1262
1266
|
];
|
|
1263
1267
|
|
|
1264
1268
|
// src/rules/static.ts
|
|
1269
|
+
var varEmpty2 = "var(--un-empty,/*!*/ /*!*/)";
|
|
1265
1270
|
var displays = [
|
|
1266
1271
|
["inline", { display: "inline" }],
|
|
1267
1272
|
["block", { display: "block" }],
|
|
@@ -1334,6 +1339,25 @@ var fontStyles = [
|
|
|
1334
1339
|
["italic", { "font-style": "italic" }],
|
|
1335
1340
|
["not-italic", { "font-style": "normal" }]
|
|
1336
1341
|
];
|
|
1342
|
+
var fontVariantNumericBase = {
|
|
1343
|
+
"--un-ordinal": varEmpty2,
|
|
1344
|
+
"--un-slashed-zero": varEmpty2,
|
|
1345
|
+
"--un-numeric-figure": varEmpty2,
|
|
1346
|
+
"--un-numeric-spacing": varEmpty2,
|
|
1347
|
+
"--un-numeric-fraction": varEmpty2,
|
|
1348
|
+
"font-variant-numeric": "var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)"
|
|
1349
|
+
};
|
|
1350
|
+
var fontVariantNumeric = [
|
|
1351
|
+
[/^ordinal$/, () => [fontVariantNumericBase, { "--un-ordinal": "ordinal" }]],
|
|
1352
|
+
[/^slashed-zero$/, () => [fontVariantNumericBase, { "--un-slashed-zero": "slashed-zero" }]],
|
|
1353
|
+
[/^lining-nums$/, () => [fontVariantNumericBase, { "--un-numeric-figure": "lining-nums" }]],
|
|
1354
|
+
[/^oldstyle-nums$/, () => [fontVariantNumericBase, { "--un-numeric-figure": "oldstyle-nums" }]],
|
|
1355
|
+
[/^proportional-nums$/, () => [fontVariantNumericBase, { "--un-numeric-spacing": "proportional-nums" }]],
|
|
1356
|
+
[/^tabular-nums$/, () => [fontVariantNumericBase, { "--un-numeric-spacing": "tabular-nums" }]],
|
|
1357
|
+
[/^diagonal-fractions$/, () => [fontVariantNumericBase, { "--un-numeric-fraction": "diagonal-fractions" }]],
|
|
1358
|
+
[/^stacked-fractions$/, () => [fontVariantNumericBase, { "--un-numeric-fraction": "stacked-fractions" }]],
|
|
1359
|
+
["normal-nums", { "font-variant-numeric": "normal" }]
|
|
1360
|
+
];
|
|
1337
1361
|
var fontSmoothings = [
|
|
1338
1362
|
["antialiased", {
|
|
1339
1363
|
"-webkit-font-smoothing": "antialiased",
|
|
@@ -1430,25 +1454,21 @@ var tables = [
|
|
|
1430
1454
|
];
|
|
1431
1455
|
|
|
1432
1456
|
// src/rules/transform.ts
|
|
1457
|
+
var transformBase = {
|
|
1458
|
+
"--un-rotate": 0,
|
|
1459
|
+
"--un-scale-x": 1,
|
|
1460
|
+
"--un-scale-y": 1,
|
|
1461
|
+
"--un-scale-z": 1,
|
|
1462
|
+
"--un-skew-x": 0,
|
|
1463
|
+
"--un-skew-y": 0,
|
|
1464
|
+
"--un-translate-x": 0,
|
|
1465
|
+
"--un-translate-y": 0,
|
|
1466
|
+
"--un-translate-z": 0,
|
|
1467
|
+
"transform": "rotate(var(--un-rotate)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))"
|
|
1468
|
+
};
|
|
1433
1469
|
var transforms = [
|
|
1434
|
-
[
|
|
1435
|
-
|
|
1436
|
-
{
|
|
1437
|
-
"--un-rotate": 0,
|
|
1438
|
-
"--un-scale-x": 1,
|
|
1439
|
-
"--un-scale-y": 1,
|
|
1440
|
-
"--un-scale-z": 1,
|
|
1441
|
-
"--un-skew-x": 0,
|
|
1442
|
-
"--un-skew-y": 0,
|
|
1443
|
-
"--un-translate-x": 0,
|
|
1444
|
-
"--un-translate-y": 0,
|
|
1445
|
-
"--un-translate-z": 0,
|
|
1446
|
-
"transform": "rotate(var(--un-rotate)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))"
|
|
1447
|
-
}
|
|
1448
|
-
],
|
|
1449
|
-
[/^preserve-(3d|flat)$/, ([, value]) => ({
|
|
1450
|
-
"transform-style": value === "3d" ? `preserve-${value}` : value
|
|
1451
|
-
})],
|
|
1470
|
+
["transform", transformBase],
|
|
1471
|
+
[/^preserve-(3d|flat)$/, ([, value]) => ({ "transform-style": value === "3d" ? `preserve-${value}` : value })],
|
|
1452
1472
|
[/^translate()-([^-]+)$/, handleTranslate],
|
|
1453
1473
|
[/^translate-([xyz])-([^-]+)$/, handleTranslate],
|
|
1454
1474
|
[/^scale()-([^-]+)$/, handleScale],
|
|
@@ -1468,7 +1488,10 @@ function handleTranslate([, d, b]) {
|
|
|
1468
1488
|
const v = _chunkLPZDYB4Jjs.handler.bracket.fraction.rem(b);
|
|
1469
1489
|
if (v != null) {
|
|
1470
1490
|
return [
|
|
1471
|
-
|
|
1491
|
+
transformBase,
|
|
1492
|
+
[
|
|
1493
|
+
..._chunkLPZDYB4Jjs.xyzMap[d].map((i) => [`--un-translate${i}`, v])
|
|
1494
|
+
]
|
|
1472
1495
|
];
|
|
1473
1496
|
}
|
|
1474
1497
|
}
|
|
@@ -1476,14 +1499,21 @@ function handleScale([, d, b]) {
|
|
|
1476
1499
|
const v = _chunkLPZDYB4Jjs.handler.bracket.fraction.percent(b);
|
|
1477
1500
|
if (v != null) {
|
|
1478
1501
|
return [
|
|
1479
|
-
|
|
1502
|
+
transformBase,
|
|
1503
|
+
[
|
|
1504
|
+
..._chunkLPZDYB4Jjs.xyzMap[d].map((i) => [`--un-scale${i}`, v])
|
|
1505
|
+
]
|
|
1480
1506
|
];
|
|
1481
1507
|
}
|
|
1482
1508
|
}
|
|
1483
1509
|
function handleRotate([, b]) {
|
|
1484
1510
|
const v = _chunkLPZDYB4Jjs.handler.bracket.number(b);
|
|
1485
|
-
if (v != null)
|
|
1486
|
-
return
|
|
1511
|
+
if (v != null) {
|
|
1512
|
+
return [
|
|
1513
|
+
transformBase,
|
|
1514
|
+
{ "--un-rotate": `${v}deg` }
|
|
1515
|
+
];
|
|
1516
|
+
}
|
|
1487
1517
|
}
|
|
1488
1518
|
|
|
1489
1519
|
// src/rules/variables.ts
|
|
@@ -1633,6 +1663,7 @@ var rules = [
|
|
|
1633
1663
|
textAligns,
|
|
1634
1664
|
textColors,
|
|
1635
1665
|
fontStyles,
|
|
1666
|
+
fontVariantNumeric,
|
|
1636
1667
|
fontSmoothings,
|
|
1637
1668
|
hyphens,
|
|
1638
1669
|
writingModes,
|
|
@@ -1802,4 +1833,5 @@ var rules = [
|
|
|
1802
1833
|
|
|
1803
1834
|
|
|
1804
1835
|
|
|
1805
|
-
|
|
1836
|
+
|
|
1837
|
+
exports.verticalAligns = verticalAligns; exports.textAligns = textAligns; exports.animations = animations; exports.parseColorUtil = parseColorUtil; exports.colorResolver = colorResolver; exports.opacity = opacity; exports.textColors = textColors; exports.textDecorationColors = textDecorationColors; exports.textStrokeColors = textStrokeColors; exports.bgColors = bgColors; exports.borderColors = borderColors; exports.ringColors = ringColors; exports.ringOffsetColors = ringOffsetColors; exports.divideColors = divideColors; exports.fillColors = fillColors; exports.bgAttachments = bgAttachments; exports.bgBlendModes = bgBlendModes; exports.bgClips = bgClips; exports.bgGradients = bgGradients; exports.bgImages = bgImages; exports.bgOrigins = bgOrigins; exports.bgPositions = bgPositions; exports.bgRepeats = bgRepeats; exports.bgSizes = bgSizes; exports.outline = outline; exports.listStyle = listStyle; exports.boxDecorationBreaks = boxDecorationBreaks; exports.caretOpacity = caretOpacity; exports.caretColors = caretColors; exports.imageRenderings = imageRenderings; exports.appearance = appearance; exports.placeholder = placeholder; exports.overscrolls = overscrolls; exports.borderSizes = borderSizes; exports.borderRadius = borderRadius; exports.borderStyles = borderStyles; exports.borders = borders; exports.container = container; exports.containerShortcuts = containerShortcuts; exports.transitions = transitions; exports.filters = filters; exports.flex = flex; exports.fontsFamilies = fontsFamilies; exports.fontSizes = fontSizes; exports.fontWeights = fontWeights; exports.leadings = leadings; exports.trackings = trackings; exports.wordSpacings = wordSpacings; exports.tabSizes = tabSizes; exports.textDecorationLengths = textDecorationLengths; exports.textDecorationOffsets = textDecorationOffsets; exports.textIndents = textIndents; exports.textStrokeWidths = textStrokeWidths; exports.textShadows = textShadows; exports.fonts = fonts; exports.gaps = gaps; exports.grids = grids; exports.overflows = overflows; exports.positions = positions; exports.justifies = justifies; exports.orders = orders; exports.justifyItems = justifyItems; exports.justifySelfs = justifySelfs; exports.alignContents = alignContents; exports.alignItems = alignItems; exports.alignSelfs = alignSelfs; exports.placeContents = placeContents; exports.placeItems = placeItems; exports.placeSelfs = placeSelfs; exports.insets = insets; exports.floats = floats; exports.zIndexes = zIndexes; exports.objectPositions = objectPositions; exports.boxSizing = boxSizing; exports.rings = rings; exports.mixBlendModes = mixBlendModes; exports.boxShadows = boxShadows; exports.sizes = sizes; exports.aspectRatio = aspectRatio; exports.paddings = paddings; exports.margins = margins; exports.displays = displays; exports.appearances = appearances; exports.cursors = cursors; exports.pointerEvents = pointerEvents; exports.resizes = resizes; exports.userSelects = userSelects; exports.whitespaces = whitespaces; exports.contents = contents; exports.breaks = breaks; exports.textOverflows = textOverflows; exports.textTransforms = textTransforms; exports.textDecorations = textDecorations; exports.textDecorationStyles = textDecorationStyles; exports.fontStyles = fontStyles; exports.fontVariantNumeric = fontVariantNumeric; exports.fontSmoothings = fontSmoothings; exports.hyphens = hyphens; exports.writingModes = writingModes; exports.writingOrientations = writingOrientations; exports.screenReadersAccess = screenReadersAccess; exports.isolations = isolations; exports.tables = tables; exports.transforms = transforms; exports.cssVariables = cssVariables; exports.questionMark = questionMark; exports.divideSizes = divideSizes; exports.divideStyles = divideStyles; exports.divides = divides; exports.lineClamps = lineClamps; exports.rules = rules;
|
|
@@ -90,8 +90,10 @@ var variantNegative = {
|
|
|
90
90
|
matcher: matcher.slice(1),
|
|
91
91
|
body: (body) => {
|
|
92
92
|
body.forEach((v) => {
|
|
93
|
-
var _a;
|
|
94
|
-
v[
|
|
93
|
+
var _a, _b;
|
|
94
|
+
if (v[0].startsWith("--un-scale") || ((_a = v[1]) == null ? void 0 : _a.toString()) === "0")
|
|
95
|
+
return;
|
|
96
|
+
v[1] = (_b = v[1]) == null ? void 0 : _b.toString().replace(/[0-9.]+(?:[a-z]+|%)?/, (i) => `-${i}`);
|
|
95
97
|
});
|
|
96
98
|
return body;
|
|
97
99
|
}
|
|
@@ -707,17 +707,8 @@ var transitions = [
|
|
|
707
707
|
// src/rules/filters.ts
|
|
708
708
|
import { toArray as toArray2 } from "@unocss/core";
|
|
709
709
|
var varEmpty = "var(--un-empty,/*!*/ /*!*/)";
|
|
710
|
-
var percentWithDefault = (defaultValue = "1") => (str) => {
|
|
711
|
-
const v = str ? handler.bracket.percent(str) : defaultValue;
|
|
712
|
-
return v && parseFloat(v) <= 1 ? v : void 0;
|
|
713
|
-
};
|
|
714
|
-
var toFilter = (varName, resolver) => ([, b, s], { theme }) => {
|
|
715
|
-
const value = resolver(s, theme);
|
|
716
|
-
if (value)
|
|
717
|
-
return { [`--un-${b || ""}${varName}`]: `${varName}(${value})` };
|
|
718
|
-
};
|
|
719
710
|
var filterContnet = "var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia) var(--un-drop-shadow)";
|
|
720
|
-
var
|
|
711
|
+
var filterBase = {
|
|
721
712
|
"--un-blur": varEmpty,
|
|
722
713
|
"--un-brightness": varEmpty,
|
|
723
714
|
"--un-contrast": varEmpty,
|
|
@@ -730,7 +721,7 @@ var filter = {
|
|
|
730
721
|
"filter": filterContnet
|
|
731
722
|
};
|
|
732
723
|
var backdropFilterContent = "var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-saturate) var(--un-backdrop-sepia)";
|
|
733
|
-
var
|
|
724
|
+
var backdropFilterBase = {
|
|
734
725
|
"--un-backdrop-blur": varEmpty,
|
|
735
726
|
"--un-backdrop-brightness": varEmpty,
|
|
736
727
|
"--un-backdrop-contrast": varEmpty,
|
|
@@ -742,10 +733,23 @@ var backdropFilter = {
|
|
|
742
733
|
"-webkit-backdrop-filter": backdropFilterContent,
|
|
743
734
|
"backdrop-filter": backdropFilterContent
|
|
744
735
|
};
|
|
736
|
+
var percentWithDefault = (defaultValue = "1") => (str) => {
|
|
737
|
+
const v = str ? handler.bracket.percent(str) : defaultValue;
|
|
738
|
+
return v && parseFloat(v) <= 1 ? v : void 0;
|
|
739
|
+
};
|
|
740
|
+
var toFilter = (varName, resolver) => ([, b, s], { theme }) => {
|
|
741
|
+
const value = resolver(s, theme);
|
|
742
|
+
if (value) {
|
|
743
|
+
return [
|
|
744
|
+
b ? backdropFilterBase : filterBase,
|
|
745
|
+
{ [`--un-${b || ""}${varName}`]: `${varName}(${value})` }
|
|
746
|
+
];
|
|
747
|
+
}
|
|
748
|
+
};
|
|
745
749
|
var filters = [
|
|
746
|
-
["filter",
|
|
750
|
+
["filter", filterBase],
|
|
747
751
|
["filter-none", { filter: "none" }],
|
|
748
|
-
["backdrop-filter",
|
|
752
|
+
["backdrop-filter", backdropFilterBase],
|
|
749
753
|
["backdrop-filter-none", {
|
|
750
754
|
"-webkit-backdrop-filter": "none",
|
|
751
755
|
"backdrop-filter": "none"
|
|
@@ -1262,6 +1266,7 @@ var margins = [
|
|
|
1262
1266
|
];
|
|
1263
1267
|
|
|
1264
1268
|
// src/rules/static.ts
|
|
1269
|
+
var varEmpty2 = "var(--un-empty,/*!*/ /*!*/)";
|
|
1265
1270
|
var displays = [
|
|
1266
1271
|
["inline", { display: "inline" }],
|
|
1267
1272
|
["block", { display: "block" }],
|
|
@@ -1334,6 +1339,25 @@ var fontStyles = [
|
|
|
1334
1339
|
["italic", { "font-style": "italic" }],
|
|
1335
1340
|
["not-italic", { "font-style": "normal" }]
|
|
1336
1341
|
];
|
|
1342
|
+
var fontVariantNumericBase = {
|
|
1343
|
+
"--un-ordinal": varEmpty2,
|
|
1344
|
+
"--un-slashed-zero": varEmpty2,
|
|
1345
|
+
"--un-numeric-figure": varEmpty2,
|
|
1346
|
+
"--un-numeric-spacing": varEmpty2,
|
|
1347
|
+
"--un-numeric-fraction": varEmpty2,
|
|
1348
|
+
"font-variant-numeric": "var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)"
|
|
1349
|
+
};
|
|
1350
|
+
var fontVariantNumeric = [
|
|
1351
|
+
[/^ordinal$/, () => [fontVariantNumericBase, { "--un-ordinal": "ordinal" }]],
|
|
1352
|
+
[/^slashed-zero$/, () => [fontVariantNumericBase, { "--un-slashed-zero": "slashed-zero" }]],
|
|
1353
|
+
[/^lining-nums$/, () => [fontVariantNumericBase, { "--un-numeric-figure": "lining-nums" }]],
|
|
1354
|
+
[/^oldstyle-nums$/, () => [fontVariantNumericBase, { "--un-numeric-figure": "oldstyle-nums" }]],
|
|
1355
|
+
[/^proportional-nums$/, () => [fontVariantNumericBase, { "--un-numeric-spacing": "proportional-nums" }]],
|
|
1356
|
+
[/^tabular-nums$/, () => [fontVariantNumericBase, { "--un-numeric-spacing": "tabular-nums" }]],
|
|
1357
|
+
[/^diagonal-fractions$/, () => [fontVariantNumericBase, { "--un-numeric-fraction": "diagonal-fractions" }]],
|
|
1358
|
+
[/^stacked-fractions$/, () => [fontVariantNumericBase, { "--un-numeric-fraction": "stacked-fractions" }]],
|
|
1359
|
+
["normal-nums", { "font-variant-numeric": "normal" }]
|
|
1360
|
+
];
|
|
1337
1361
|
var fontSmoothings = [
|
|
1338
1362
|
["antialiased", {
|
|
1339
1363
|
"-webkit-font-smoothing": "antialiased",
|
|
@@ -1430,25 +1454,21 @@ var tables = [
|
|
|
1430
1454
|
];
|
|
1431
1455
|
|
|
1432
1456
|
// src/rules/transform.ts
|
|
1457
|
+
var transformBase = {
|
|
1458
|
+
"--un-rotate": 0,
|
|
1459
|
+
"--un-scale-x": 1,
|
|
1460
|
+
"--un-scale-y": 1,
|
|
1461
|
+
"--un-scale-z": 1,
|
|
1462
|
+
"--un-skew-x": 0,
|
|
1463
|
+
"--un-skew-y": 0,
|
|
1464
|
+
"--un-translate-x": 0,
|
|
1465
|
+
"--un-translate-y": 0,
|
|
1466
|
+
"--un-translate-z": 0,
|
|
1467
|
+
"transform": "rotate(var(--un-rotate)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))"
|
|
1468
|
+
};
|
|
1433
1469
|
var transforms = [
|
|
1434
|
-
[
|
|
1435
|
-
|
|
1436
|
-
{
|
|
1437
|
-
"--un-rotate": 0,
|
|
1438
|
-
"--un-scale-x": 1,
|
|
1439
|
-
"--un-scale-y": 1,
|
|
1440
|
-
"--un-scale-z": 1,
|
|
1441
|
-
"--un-skew-x": 0,
|
|
1442
|
-
"--un-skew-y": 0,
|
|
1443
|
-
"--un-translate-x": 0,
|
|
1444
|
-
"--un-translate-y": 0,
|
|
1445
|
-
"--un-translate-z": 0,
|
|
1446
|
-
"transform": "rotate(var(--un-rotate)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))"
|
|
1447
|
-
}
|
|
1448
|
-
],
|
|
1449
|
-
[/^preserve-(3d|flat)$/, ([, value]) => ({
|
|
1450
|
-
"transform-style": value === "3d" ? `preserve-${value}` : value
|
|
1451
|
-
})],
|
|
1470
|
+
["transform", transformBase],
|
|
1471
|
+
[/^preserve-(3d|flat)$/, ([, value]) => ({ "transform-style": value === "3d" ? `preserve-${value}` : value })],
|
|
1452
1472
|
[/^translate()-([^-]+)$/, handleTranslate],
|
|
1453
1473
|
[/^translate-([xyz])-([^-]+)$/, handleTranslate],
|
|
1454
1474
|
[/^scale()-([^-]+)$/, handleScale],
|
|
@@ -1468,7 +1488,10 @@ function handleTranslate([, d, b]) {
|
|
|
1468
1488
|
const v = handler.bracket.fraction.rem(b);
|
|
1469
1489
|
if (v != null) {
|
|
1470
1490
|
return [
|
|
1471
|
-
|
|
1491
|
+
transformBase,
|
|
1492
|
+
[
|
|
1493
|
+
...xyzMap[d].map((i) => [`--un-translate${i}`, v])
|
|
1494
|
+
]
|
|
1472
1495
|
];
|
|
1473
1496
|
}
|
|
1474
1497
|
}
|
|
@@ -1476,14 +1499,21 @@ function handleScale([, d, b]) {
|
|
|
1476
1499
|
const v = handler.bracket.fraction.percent(b);
|
|
1477
1500
|
if (v != null) {
|
|
1478
1501
|
return [
|
|
1479
|
-
|
|
1502
|
+
transformBase,
|
|
1503
|
+
[
|
|
1504
|
+
...xyzMap[d].map((i) => [`--un-scale${i}`, v])
|
|
1505
|
+
]
|
|
1480
1506
|
];
|
|
1481
1507
|
}
|
|
1482
1508
|
}
|
|
1483
1509
|
function handleRotate([, b]) {
|
|
1484
1510
|
const v = handler.bracket.number(b);
|
|
1485
|
-
if (v != null)
|
|
1486
|
-
return
|
|
1511
|
+
if (v != null) {
|
|
1512
|
+
return [
|
|
1513
|
+
transformBase,
|
|
1514
|
+
{ "--un-rotate": `${v}deg` }
|
|
1515
|
+
];
|
|
1516
|
+
}
|
|
1487
1517
|
}
|
|
1488
1518
|
|
|
1489
1519
|
// src/rules/variables.ts
|
|
@@ -1633,6 +1663,7 @@ var rules = [
|
|
|
1633
1663
|
textAligns,
|
|
1634
1664
|
textColors,
|
|
1635
1665
|
fontStyles,
|
|
1666
|
+
fontVariantNumeric,
|
|
1636
1667
|
fontSmoothings,
|
|
1637
1668
|
hyphens,
|
|
1638
1669
|
writingModes,
|
|
@@ -1787,6 +1818,7 @@ export {
|
|
|
1787
1818
|
textDecorations,
|
|
1788
1819
|
textDecorationStyles,
|
|
1789
1820
|
fontStyles,
|
|
1821
|
+
fontVariantNumeric,
|
|
1790
1822
|
fontSmoothings,
|
|
1791
1823
|
hyphens,
|
|
1792
1824
|
writingModes,
|
|
@@ -90,8 +90,10 @@ var variantNegative = {
|
|
|
90
90
|
matcher: matcher.slice(1),
|
|
91
91
|
body: (body) => {
|
|
92
92
|
body.forEach((v) => {
|
|
93
|
-
var _a;
|
|
94
|
-
v[
|
|
93
|
+
var _a, _b;
|
|
94
|
+
if (v[0].startsWith("--un-scale") || ((_a = v[1]) == null ? void 0 : _a.toString()) === "0")
|
|
95
|
+
return;
|
|
96
|
+
v[1] = (_b = v[1]) == null ? void 0 : _b.toString().replace(/[0-9.]+(?:[a-z]+|%)?/, (i) => `-${i}`);
|
|
95
97
|
});
|
|
96
98
|
return body;
|
|
97
99
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk2BHDQQCRjs = require('./chunk-2BHDQQCR.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkBOWXQI3Bjs = require('./chunk-BOWXQI3B.js');
|
|
@@ -12,7 +12,7 @@ var _chunk7O4GGKN3js = require('./chunk-7O4GGKN3.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkZSX2GKSHjs = require('./chunk-ZSX2GKSH.js');
|
|
16
16
|
require('./chunk-LPZDYB4J.js');
|
|
17
17
|
require('./chunk-Y6EUTGDC.js');
|
|
18
18
|
|
|
@@ -20,13 +20,13 @@ require('./chunk-Y6EUTGDC.js');
|
|
|
20
20
|
var preset = (options = {}) => ({
|
|
21
21
|
name: "@unocss/preset-uno",
|
|
22
22
|
theme: _chunkBOWXQI3Bjs.theme,
|
|
23
|
-
rules:
|
|
23
|
+
rules: _chunk2BHDQQCRjs.rules,
|
|
24
24
|
variants: [
|
|
25
|
-
...
|
|
26
|
-
...options.dark === "media" ?
|
|
25
|
+
..._chunkZSX2GKSHjs.variants,
|
|
26
|
+
...options.dark === "media" ? _chunkZSX2GKSHjs.variantColorsMedia : _chunkZSX2GKSHjs.variantColorsClass
|
|
27
27
|
],
|
|
28
28
|
shortcuts: [
|
|
29
|
-
...
|
|
29
|
+
..._chunk2BHDQQCRjs.containerShortcuts
|
|
30
30
|
],
|
|
31
31
|
options
|
|
32
32
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
containerShortcuts,
|
|
3
3
|
rules
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-OWR5JIMD.mjs";
|
|
5
5
|
import {
|
|
6
6
|
theme
|
|
7
7
|
} from "./chunk-BLAKJWHG.mjs";
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
variantColorsClass,
|
|
13
13
|
variantColorsMedia,
|
|
14
14
|
variants
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-MBU6ORW7.mjs";
|
|
16
16
|
import "./chunk-O7YRGPXQ.mjs";
|
|
17
17
|
import "./chunk-5SH5BFJ4.mjs";
|
|
18
18
|
|
package/dist/rules.d.ts
CHANGED
|
@@ -128,6 +128,7 @@ declare const textTransforms: Rule[];
|
|
|
128
128
|
declare const textDecorations: Rule[];
|
|
129
129
|
declare const textDecorationStyles: Rule[];
|
|
130
130
|
declare const fontStyles: Rule[];
|
|
131
|
+
declare const fontVariantNumeric: Rule[];
|
|
131
132
|
declare const fontSmoothings: Rule[];
|
|
132
133
|
declare const hyphens: Rule[];
|
|
133
134
|
declare const writingModes: Rule[];
|
|
@@ -157,4 +158,4 @@ declare const fonts: Rule<Theme>[];
|
|
|
157
158
|
|
|
158
159
|
declare const cssVariables: Rule[];
|
|
159
160
|
|
|
160
|
-
export { alignContents, alignItems, alignSelfs, animations, appearance, appearances, aspectRatio, bgAttachments, bgBlendModes, bgClips, bgColors, bgGradients, bgImages, bgOrigins, bgPositions, bgRepeats, bgSizes, borderColors, borderRadius, borderSizes, borderStyles, borders, boxDecorationBreaks, boxShadows, boxSizing, breaks, caretColors, caretOpacity, colorResolver, container, containerShortcuts, contents, cssVariables, cursors, displays, divideColors, divideSizes, divideStyles, divides, fillColors, filters, flex, floats, fontSizes, fontSmoothings, fontStyles, fontWeights, fonts, fontsFamilies, gaps, grids, hyphens, imageRenderings, insets, isolations, justifies, justifyItems, justifySelfs, leadings, lineClamps, listStyle, margins, mixBlendModes, objectPositions, opacity, orders, outline, overflows, overscrolls, paddings, parseColorUtil, placeContents, placeItems, placeSelfs, placeholder, pointerEvents, positions, questionMark, resizes, ringColors, ringOffsetColors, rings, rules, screenReadersAccess, sizes, tabSizes, tables, textAligns, textColors, textDecorationColors, textDecorationLengths, textDecorationOffsets, textDecorationStyles, textDecorations, textIndents, textOverflows, textShadows, textStrokeColors, textStrokeWidths, textTransforms, trackings, transforms, transitions, userSelects, verticalAligns, whitespaces, wordSpacings, writingModes, writingOrientations, zIndexes };
|
|
161
|
+
export { alignContents, alignItems, alignSelfs, animations, appearance, appearances, aspectRatio, bgAttachments, bgBlendModes, bgClips, bgColors, bgGradients, bgImages, bgOrigins, bgPositions, bgRepeats, bgSizes, borderColors, borderRadius, borderSizes, borderStyles, borders, boxDecorationBreaks, boxShadows, boxSizing, breaks, caretColors, caretOpacity, colorResolver, container, containerShortcuts, contents, cssVariables, cursors, displays, divideColors, divideSizes, divideStyles, divides, fillColors, filters, flex, floats, fontSizes, fontSmoothings, fontStyles, fontVariantNumeric, fontWeights, fonts, fontsFamilies, gaps, grids, hyphens, imageRenderings, insets, isolations, justifies, justifyItems, justifySelfs, leadings, lineClamps, listStyle, margins, mixBlendModes, objectPositions, opacity, orders, outline, overflows, overscrolls, paddings, parseColorUtil, placeContents, placeItems, placeSelfs, placeholder, pointerEvents, positions, questionMark, resizes, ringColors, ringOffsetColors, rings, rules, screenReadersAccess, sizes, tabSizes, tables, textAligns, textColors, textDecorationColors, textDecorationLengths, textDecorationOffsets, textDecorationStyles, textDecorations, textIndents, textOverflows, textShadows, textStrokeColors, textStrokeWidths, textTransforms, trackings, transforms, transitions, userSelects, verticalAligns, whitespaces, wordSpacings, writingModes, writingOrientations, zIndexes };
|
package/dist/rules.js
CHANGED
|
@@ -109,7 +109,8 @@
|
|
|
109
109
|
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
|
|
113
|
+
var _chunk2BHDQQCRjs = require('./chunk-2BHDQQCR.js');
|
|
113
114
|
require('./chunk-LPZDYB4J.js');
|
|
114
115
|
require('./chunk-Y6EUTGDC.js');
|
|
115
116
|
|
|
@@ -223,4 +224,5 @@ require('./chunk-Y6EUTGDC.js');
|
|
|
223
224
|
|
|
224
225
|
|
|
225
226
|
|
|
226
|
-
|
|
227
|
+
|
|
228
|
+
exports.alignContents = _chunk2BHDQQCRjs.alignContents; exports.alignItems = _chunk2BHDQQCRjs.alignItems; exports.alignSelfs = _chunk2BHDQQCRjs.alignSelfs; exports.animations = _chunk2BHDQQCRjs.animations; exports.appearance = _chunk2BHDQQCRjs.appearance; exports.appearances = _chunk2BHDQQCRjs.appearances; exports.aspectRatio = _chunk2BHDQQCRjs.aspectRatio; exports.bgAttachments = _chunk2BHDQQCRjs.bgAttachments; exports.bgBlendModes = _chunk2BHDQQCRjs.bgBlendModes; exports.bgClips = _chunk2BHDQQCRjs.bgClips; exports.bgColors = _chunk2BHDQQCRjs.bgColors; exports.bgGradients = _chunk2BHDQQCRjs.bgGradients; exports.bgImages = _chunk2BHDQQCRjs.bgImages; exports.bgOrigins = _chunk2BHDQQCRjs.bgOrigins; exports.bgPositions = _chunk2BHDQQCRjs.bgPositions; exports.bgRepeats = _chunk2BHDQQCRjs.bgRepeats; exports.bgSizes = _chunk2BHDQQCRjs.bgSizes; exports.borderColors = _chunk2BHDQQCRjs.borderColors; exports.borderRadius = _chunk2BHDQQCRjs.borderRadius; exports.borderSizes = _chunk2BHDQQCRjs.borderSizes; exports.borderStyles = _chunk2BHDQQCRjs.borderStyles; exports.borders = _chunk2BHDQQCRjs.borders; exports.boxDecorationBreaks = _chunk2BHDQQCRjs.boxDecorationBreaks; exports.boxShadows = _chunk2BHDQQCRjs.boxShadows; exports.boxSizing = _chunk2BHDQQCRjs.boxSizing; exports.breaks = _chunk2BHDQQCRjs.breaks; exports.caretColors = _chunk2BHDQQCRjs.caretColors; exports.caretOpacity = _chunk2BHDQQCRjs.caretOpacity; exports.colorResolver = _chunk2BHDQQCRjs.colorResolver; exports.container = _chunk2BHDQQCRjs.container; exports.containerShortcuts = _chunk2BHDQQCRjs.containerShortcuts; exports.contents = _chunk2BHDQQCRjs.contents; exports.cssVariables = _chunk2BHDQQCRjs.cssVariables; exports.cursors = _chunk2BHDQQCRjs.cursors; exports.displays = _chunk2BHDQQCRjs.displays; exports.divideColors = _chunk2BHDQQCRjs.divideColors; exports.divideSizes = _chunk2BHDQQCRjs.divideSizes; exports.divideStyles = _chunk2BHDQQCRjs.divideStyles; exports.divides = _chunk2BHDQQCRjs.divides; exports.fillColors = _chunk2BHDQQCRjs.fillColors; exports.filters = _chunk2BHDQQCRjs.filters; exports.flex = _chunk2BHDQQCRjs.flex; exports.floats = _chunk2BHDQQCRjs.floats; exports.fontSizes = _chunk2BHDQQCRjs.fontSizes; exports.fontSmoothings = _chunk2BHDQQCRjs.fontSmoothings; exports.fontStyles = _chunk2BHDQQCRjs.fontStyles; exports.fontVariantNumeric = _chunk2BHDQQCRjs.fontVariantNumeric; exports.fontWeights = _chunk2BHDQQCRjs.fontWeights; exports.fonts = _chunk2BHDQQCRjs.fonts; exports.fontsFamilies = _chunk2BHDQQCRjs.fontsFamilies; exports.gaps = _chunk2BHDQQCRjs.gaps; exports.grids = _chunk2BHDQQCRjs.grids; exports.hyphens = _chunk2BHDQQCRjs.hyphens; exports.imageRenderings = _chunk2BHDQQCRjs.imageRenderings; exports.insets = _chunk2BHDQQCRjs.insets; exports.isolations = _chunk2BHDQQCRjs.isolations; exports.justifies = _chunk2BHDQQCRjs.justifies; exports.justifyItems = _chunk2BHDQQCRjs.justifyItems; exports.justifySelfs = _chunk2BHDQQCRjs.justifySelfs; exports.leadings = _chunk2BHDQQCRjs.leadings; exports.lineClamps = _chunk2BHDQQCRjs.lineClamps; exports.listStyle = _chunk2BHDQQCRjs.listStyle; exports.margins = _chunk2BHDQQCRjs.margins; exports.mixBlendModes = _chunk2BHDQQCRjs.mixBlendModes; exports.objectPositions = _chunk2BHDQQCRjs.objectPositions; exports.opacity = _chunk2BHDQQCRjs.opacity; exports.orders = _chunk2BHDQQCRjs.orders; exports.outline = _chunk2BHDQQCRjs.outline; exports.overflows = _chunk2BHDQQCRjs.overflows; exports.overscrolls = _chunk2BHDQQCRjs.overscrolls; exports.paddings = _chunk2BHDQQCRjs.paddings; exports.parseColorUtil = _chunk2BHDQQCRjs.parseColorUtil; exports.placeContents = _chunk2BHDQQCRjs.placeContents; exports.placeItems = _chunk2BHDQQCRjs.placeItems; exports.placeSelfs = _chunk2BHDQQCRjs.placeSelfs; exports.placeholder = _chunk2BHDQQCRjs.placeholder; exports.pointerEvents = _chunk2BHDQQCRjs.pointerEvents; exports.positions = _chunk2BHDQQCRjs.positions; exports.questionMark = _chunk2BHDQQCRjs.questionMark; exports.resizes = _chunk2BHDQQCRjs.resizes; exports.ringColors = _chunk2BHDQQCRjs.ringColors; exports.ringOffsetColors = _chunk2BHDQQCRjs.ringOffsetColors; exports.rings = _chunk2BHDQQCRjs.rings; exports.rules = _chunk2BHDQQCRjs.rules; exports.screenReadersAccess = _chunk2BHDQQCRjs.screenReadersAccess; exports.sizes = _chunk2BHDQQCRjs.sizes; exports.tabSizes = _chunk2BHDQQCRjs.tabSizes; exports.tables = _chunk2BHDQQCRjs.tables; exports.textAligns = _chunk2BHDQQCRjs.textAligns; exports.textColors = _chunk2BHDQQCRjs.textColors; exports.textDecorationColors = _chunk2BHDQQCRjs.textDecorationColors; exports.textDecorationLengths = _chunk2BHDQQCRjs.textDecorationLengths; exports.textDecorationOffsets = _chunk2BHDQQCRjs.textDecorationOffsets; exports.textDecorationStyles = _chunk2BHDQQCRjs.textDecorationStyles; exports.textDecorations = _chunk2BHDQQCRjs.textDecorations; exports.textIndents = _chunk2BHDQQCRjs.textIndents; exports.textOverflows = _chunk2BHDQQCRjs.textOverflows; exports.textShadows = _chunk2BHDQQCRjs.textShadows; exports.textStrokeColors = _chunk2BHDQQCRjs.textStrokeColors; exports.textStrokeWidths = _chunk2BHDQQCRjs.textStrokeWidths; exports.textTransforms = _chunk2BHDQQCRjs.textTransforms; exports.trackings = _chunk2BHDQQCRjs.trackings; exports.transforms = _chunk2BHDQQCRjs.transforms; exports.transitions = _chunk2BHDQQCRjs.transitions; exports.userSelects = _chunk2BHDQQCRjs.userSelects; exports.verticalAligns = _chunk2BHDQQCRjs.verticalAligns; exports.whitespaces = _chunk2BHDQQCRjs.whitespaces; exports.wordSpacings = _chunk2BHDQQCRjs.wordSpacings; exports.writingModes = _chunk2BHDQQCRjs.writingModes; exports.writingOrientations = _chunk2BHDQQCRjs.writingOrientations; exports.zIndexes = _chunk2BHDQQCRjs.zIndexes;
|
package/dist/rules.mjs
CHANGED
|
@@ -45,6 +45,7 @@ import {
|
|
|
45
45
|
fontSizes,
|
|
46
46
|
fontSmoothings,
|
|
47
47
|
fontStyles,
|
|
48
|
+
fontVariantNumeric,
|
|
48
49
|
fontWeights,
|
|
49
50
|
fonts,
|
|
50
51
|
fontsFamilies,
|
|
@@ -109,7 +110,7 @@ import {
|
|
|
109
110
|
writingModes,
|
|
110
111
|
writingOrientations,
|
|
111
112
|
zIndexes
|
|
112
|
-
} from "./chunk-
|
|
113
|
+
} from "./chunk-OWR5JIMD.mjs";
|
|
113
114
|
import "./chunk-O7YRGPXQ.mjs";
|
|
114
115
|
import "./chunk-5SH5BFJ4.mjs";
|
|
115
116
|
export {
|
|
@@ -159,6 +160,7 @@ export {
|
|
|
159
160
|
fontSizes,
|
|
160
161
|
fontSmoothings,
|
|
161
162
|
fontStyles,
|
|
163
|
+
fontVariantNumeric,
|
|
162
164
|
fontWeights,
|
|
163
165
|
fonts,
|
|
164
166
|
fontsFamilies,
|
package/dist/variants.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkZSX2GKSHjs = require('./chunk-ZSX2GKSH.js');
|
|
14
14
|
require('./chunk-LPZDYB4J.js');
|
|
15
15
|
require('./chunk-Y6EUTGDC.js');
|
|
16
16
|
|
|
@@ -25,4 +25,4 @@ require('./chunk-Y6EUTGDC.js');
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
exports.PseudoClasses =
|
|
28
|
+
exports.PseudoClasses = _chunkZSX2GKSHjs.PseudoClasses; exports.variantBreakpoints = _chunkZSX2GKSHjs.variantBreakpoints; exports.variantChildren = _chunkZSX2GKSHjs.variantChildren; exports.variantColorsClass = _chunkZSX2GKSHjs.variantColorsClass; exports.variantColorsMedia = _chunkZSX2GKSHjs.variantColorsMedia; exports.variantImportant = _chunkZSX2GKSHjs.variantImportant; exports.variantNegative = _chunkZSX2GKSHjs.variantNegative; exports.variantPseudoClasses = _chunkZSX2GKSHjs.variantPseudoClasses; exports.variantPseudoElements = _chunkZSX2GKSHjs.variantPseudoElements; exports.variantSpace = _chunkZSX2GKSHjs.variantSpace; exports.variants = _chunkZSX2GKSHjs.variants;
|
package/dist/variants.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/preset-uno",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "The default preset for UnoCSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unocss",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"*.css"
|
|
61
61
|
],
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@unocss/core": "0.
|
|
63
|
+
"@unocss/core": "0.14.1"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build": "tsup",
|