evo-vue-carousel 1.1.4 → 1.1.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.
Files changed (2) hide show
  1. package/dist/evo-vue-carousel.js +285 -213
  2. package/package.json +16 -16
@@ -422,8 +422,8 @@ function cloneDeepWithImpl(e, t, n, r = /* @__PURE__ */ new Map(), a = void 0) {
422
422
  return r.set(e, t), copyProperties(t, e, n, r, a), t;
423
423
  }
424
424
  if (e instanceof Error) {
425
- let t = new e.constructor();
426
- return r.set(e, t), t.message = e.message, t.name = e.name, t.stack = e.stack, t.cause = e.cause, copyProperties(t, e, n, r, a), t;
425
+ let t = structuredClone(e);
426
+ return r.set(e, t), t.message = e.message, t.name = e.name, t.stack = e.stack, t.cause = e.cause, t.constructor = e.constructor, copyProperties(t, e, n, r, a), t;
427
427
  }
428
428
  if (e instanceof Boolean) {
429
429
  let t = new Boolean(e.valueOf());
@@ -502,7 +502,7 @@ function pick(e, t) {
502
502
  function isBoolean(e) {
503
503
  return typeof e == "boolean";
504
504
  }
505
- function eq(e, t) {
505
+ function isEqualsSameValueZero(e, t) {
506
506
  return e === t || Number.isNaN(e) && Number.isNaN(t);
507
507
  }
508
508
  function isLength(e) {
@@ -562,7 +562,7 @@ const useCarouselHost = (e, t, n, r = !1) => {
562
562
  }, { immediate: !0 }), m = computed(() => l.value.autoplay ?? 0), _ = (e) => {
563
563
  u.value = checkPosition(e, t.value, l);
564
564
  }, { pause: b, resume: x, isActive: C } = useIntervalFn(() => {
565
- _(u.value + l.value.slideBy);
565
+ s.value || _(u.value + l.value.slideBy);
566
566
  }, m);
567
567
  return provide(configKey, l), provide(slideCountKey, readonly(t)), provide(currentIndexKey, u), provide(isHoveredKey, d), provide(isNavigatingKey, s), provide(autoplayFnKey, {
568
568
  pauseAutoplay: b,
@@ -945,8 +945,8 @@ function isMatchWithInternal(e, t, n, r) {
945
945
  if (t === e) return !0;
946
946
  switch (typeof t) {
947
947
  case "object": return isObjectMatch(e, t, n, r);
948
- case "function": return Object.keys(t).length > 0 ? isMatchWithInternal(e, { ...t }, n, r) : eq(e, t);
949
- default: return isObject(e) ? typeof t == "string" ? t === "" : !0 : eq(e, t);
948
+ case "function": return Object.keys(t).length > 0 ? isMatchWithInternal(e, { ...t }, n, r) : isEqualsSameValueZero(e, t);
949
+ default: return isObject(e) ? typeof t == "string" ? t === "" : !0 : isEqualsSameValueZero(e, t);
950
950
  }
951
951
  }
952
952
  function isObjectMatch(e, t, n, r) {
@@ -1006,18 +1006,24 @@ function cloneDeepWith(e, t) {
1006
1006
  return cloneDeepWith$1(e, (n, r, a, s) => {
1007
1007
  let c = t?.(n, r, a, s);
1008
1008
  if (c !== void 0) return c;
1009
- if (typeof e == "object") switch (Object.prototype.toString.call(e)) {
1010
- case numberTag:
1011
- case stringTag:
1012
- case booleanTag: {
1013
- let t = new e.constructor(e?.valueOf());
1014
- return copyProperties(t, e), t;
1015
- }
1016
- case argumentsTag: {
1009
+ if (typeof e == "object") {
1010
+ if (getTag(e) === "[object Object]" && typeof e.constructor != "function") {
1017
1011
  let t = {};
1018
- return copyProperties(t, e), t.length = e.length, t[Symbol.iterator] = e[Symbol.iterator], t;
1012
+ return s.set(e, t), copyProperties(t, e, a, s), t;
1013
+ }
1014
+ switch (Object.prototype.toString.call(e)) {
1015
+ case numberTag:
1016
+ case stringTag:
1017
+ case booleanTag: {
1018
+ let t = new e.constructor(e?.valueOf());
1019
+ return copyProperties(t, e), t;
1020
+ }
1021
+ case argumentsTag: {
1022
+ let t = {};
1023
+ return copyProperties(t, e), t.length = e.length, t[Symbol.iterator] = e[Symbol.iterator], t;
1024
+ }
1025
+ default: return;
1019
1026
  }
1020
- default: return;
1021
1027
  }
1022
1028
  });
1023
1029
  }
@@ -1061,7 +1067,7 @@ function matchesProperty(e, t) {
1061
1067
  };
1062
1068
  }
1063
1069
  function isIterateeCall(e, t, n) {
1064
- return isObject(n) && (typeof t == "number" && isArrayLike(n) && isIndex(t) && t < n.length || typeof t == "string" && t in n) ? eq(n[t], e) : !1;
1070
+ return isObject(n) && (typeof t == "number" && isArrayLike(n) && isIndex(t) && t < n.length || typeof t == "string" && t in n) ? isEqualsSameValueZero(n[t], e) : !1;
1065
1071
  }
1066
1072
  function findLastIndex(e, t = identity, n = e ? e.length - 1 : 0) {
1067
1073
  if (!e) return -1;
@@ -1305,13 +1311,13 @@ var concatArrays = (e, t) => {
1305
1311
  }, fallbackThemeArr = [], fromTheme = (e) => {
1306
1312
  let t = (t) => t[e] || fallbackThemeArr;
1307
1313
  return t.isThemeGetter = !0, t;
1308
- }, arbitraryValueRegex = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, arbitraryVariableRegex = /^\((?:(\w[\w-]*):)?(.+)\)$/i, fractionRegex = /^\d+\/\d+$/, tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, lengthUnitRegex = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, shadowRegex = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, isFraction = (e) => fractionRegex.test(e), isNumber = (e) => !!e && !Number.isNaN(Number(e)), isInteger = (e) => !!e && Number.isInteger(Number(e)), isPercent = (e) => e.endsWith("%") && isNumber(e.slice(0, -1)), isTshirtSize = (e) => tshirtUnitRegex.test(e), isAny = () => !0, isLengthOnly = (e) => lengthUnitRegex.test(e) && !colorFunctionRegex.test(e), isNever = () => !1, isShadow = (e) => shadowRegex.test(e), isImage = (e) => imageRegex.test(e), isAnyNonArbitrary = (e) => !isArbitraryValue(e) && !isArbitraryVariable(e), isArbitrarySize = (e) => getIsArbitraryValue(e, isLabelSize, isNever), isArbitraryValue = (e) => arbitraryValueRegex.test(e), isArbitraryLength = (e) => getIsArbitraryValue(e, isLabelLength, isLengthOnly), isArbitraryNumber = (e) => getIsArbitraryValue(e, isLabelNumber, isNumber), isArbitraryPosition = (e) => getIsArbitraryValue(e, isLabelPosition, isNever), isArbitraryImage = (e) => getIsArbitraryValue(e, isLabelImage, isImage), isArbitraryShadow = (e) => getIsArbitraryValue(e, isLabelShadow, isShadow), isArbitraryVariable = (e) => arbitraryVariableRegex.test(e), isArbitraryVariableLength = (e) => getIsArbitraryVariable(e, isLabelLength), isArbitraryVariableFamilyName = (e) => getIsArbitraryVariable(e, isLabelFamilyName), isArbitraryVariablePosition = (e) => getIsArbitraryVariable(e, isLabelPosition), isArbitraryVariableSize = (e) => getIsArbitraryVariable(e, isLabelSize), isArbitraryVariableImage = (e) => getIsArbitraryVariable(e, isLabelImage), isArbitraryVariableShadow = (e) => getIsArbitraryVariable(e, isLabelShadow, !0), getIsArbitraryValue = (e, t, n) => {
1314
+ }, arbitraryValueRegex = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, arbitraryVariableRegex = /^\((?:(\w[\w-]*):)?(.+)\)$/i, fractionRegex = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/, tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, lengthUnitRegex = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, shadowRegex = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, isFraction = (e) => fractionRegex.test(e), isNumber = (e) => !!e && !Number.isNaN(Number(e)), isInteger = (e) => !!e && Number.isInteger(Number(e)), isPercent = (e) => e.endsWith("%") && isNumber(e.slice(0, -1)), isTshirtSize = (e) => tshirtUnitRegex.test(e), isAny = () => !0, isLengthOnly = (e) => lengthUnitRegex.test(e) && !colorFunctionRegex.test(e), isNever = () => !1, isShadow = (e) => shadowRegex.test(e), isImage = (e) => imageRegex.test(e), isAnyNonArbitrary = (e) => !isArbitraryValue(e) && !isArbitraryVariable(e), isArbitrarySize = (e) => getIsArbitraryValue(e, isLabelSize, isNever), isArbitraryValue = (e) => arbitraryValueRegex.test(e), isArbitraryLength = (e) => getIsArbitraryValue(e, isLabelLength, isLengthOnly), isArbitraryNumber = (e) => getIsArbitraryValue(e, isLabelNumber, isNumber), isArbitraryWeight = (e) => getIsArbitraryValue(e, isLabelWeight, isAny), isArbitraryFamilyName = (e) => getIsArbitraryValue(e, isLabelFamilyName, isNever), isArbitraryPosition = (e) => getIsArbitraryValue(e, isLabelPosition, isNever), isArbitraryImage = (e) => getIsArbitraryValue(e, isLabelImage, isImage), isArbitraryShadow = (e) => getIsArbitraryValue(e, isLabelShadow, isShadow), isArbitraryVariable = (e) => arbitraryVariableRegex.test(e), isArbitraryVariableLength = (e) => getIsArbitraryVariable(e, isLabelLength), isArbitraryVariableFamilyName = (e) => getIsArbitraryVariable(e, isLabelFamilyName), isArbitraryVariablePosition = (e) => getIsArbitraryVariable(e, isLabelPosition), isArbitraryVariableSize = (e) => getIsArbitraryVariable(e, isLabelSize), isArbitraryVariableImage = (e) => getIsArbitraryVariable(e, isLabelImage), isArbitraryVariableShadow = (e) => getIsArbitraryVariable(e, isLabelShadow, !0), isArbitraryVariableWeight = (e) => getIsArbitraryVariable(e, isLabelWeight, !0), getIsArbitraryValue = (e, t, n) => {
1309
1315
  let r = arbitraryValueRegex.exec(e);
1310
1316
  return r ? r[1] ? t(r[1]) : n(r[2]) : !1;
1311
1317
  }, getIsArbitraryVariable = (e, t, n = !1) => {
1312
1318
  let r = arbitraryVariableRegex.exec(e);
1313
1319
  return r ? r[1] ? t(r[1]) : n : !1;
1314
- }, isLabelPosition = (e) => e === "position" || e === "percentage", isLabelImage = (e) => e === "image" || e === "url", isLabelSize = (e) => e === "length" || e === "size" || e === "bg-size", isLabelLength = (e) => e === "length", isLabelNumber = (e) => e === "number", isLabelFamilyName = (e) => e === "family-name", isLabelShadow = (e) => e === "shadow", twMerge = /* @__PURE__ */ createTailwindMerge(() => {
1320
+ }, isLabelPosition = (e) => e === "position" || e === "percentage", isLabelImage = (e) => e === "image" || e === "url", isLabelSize = (e) => e === "length" || e === "size" || e === "bg-size", isLabelLength = (e) => e === "length", isLabelNumber = (e) => e === "number", isLabelFamilyName = (e) => e === "family-name", isLabelWeight = (e) => e === "number" || e === "weight", isLabelShadow = (e) => e === "shadow", twMerge = /* @__PURE__ */ createTailwindMerge(() => {
1315
1321
  let e = fromTheme("color"), t = fromTheme("font"), n = fromTheme("text"), r = fromTheme("font-weight"), a = fromTheme("tracking"), s = fromTheme("leading"), c = fromTheme("breakpoint"), l = fromTheme("container"), u = fromTheme("spacing"), d = fromTheme("radius"), p = fromTheme("shadow"), m = fromTheme("inset-shadow"), _ = fromTheme("text-shadow"), b = fromTheme("drop-shadow"), x = fromTheme("blur"), C = fromTheme("perspective"), w = fromTheme("aspect"), T = fromTheme("ease"), E = fromTheme("animate"), D = () => [
1316
1322
  "auto",
1317
1323
  "avoid",
@@ -1364,7 +1370,7 @@ var concatArrays = (e, t) => {
1364
1370
  "subgrid",
1365
1371
  isArbitraryVariable,
1366
1372
  isArbitraryValue
1367
- ], I = () => [
1373
+ ], xi = () => [
1368
1374
  "auto",
1369
1375
  { span: [
1370
1376
  "full",
@@ -1375,19 +1381,19 @@ var concatArrays = (e, t) => {
1375
1381
  isInteger,
1376
1382
  isArbitraryVariable,
1377
1383
  isArbitraryValue
1378
- ], L = () => [
1384
+ ], I = () => [
1379
1385
  isInteger,
1380
1386
  "auto",
1381
1387
  isArbitraryVariable,
1382
1388
  isArbitraryValue
1383
- ], R = () => [
1389
+ ], L = () => [
1384
1390
  "auto",
1385
1391
  "min",
1386
1392
  "max",
1387
1393
  "fr",
1388
1394
  isArbitraryVariable,
1389
1395
  isArbitraryValue
1390
- ], z = () => [
1396
+ ], R = () => [
1391
1397
  "start",
1392
1398
  "end",
1393
1399
  "center",
@@ -1398,14 +1404,14 @@ var concatArrays = (e, t) => {
1398
1404
  "baseline",
1399
1405
  "center-safe",
1400
1406
  "end-safe"
1401
- ], B = () => [
1407
+ ], z = () => [
1402
1408
  "start",
1403
1409
  "end",
1404
1410
  "center",
1405
1411
  "stretch",
1406
1412
  "center-safe",
1407
1413
  "end-safe"
1408
- ], V = () => ["auto", ...N()], H = () => [
1414
+ ], B = () => ["auto", ...N()], V = () => [
1409
1415
  isFraction,
1410
1416
  "auto",
1411
1417
  "full",
@@ -1419,50 +1425,73 @@ var concatArrays = (e, t) => {
1419
1425
  "max",
1420
1426
  "fit",
1421
1427
  ...N()
1428
+ ], H = () => [
1429
+ isFraction,
1430
+ "screen",
1431
+ "full",
1432
+ "dvw",
1433
+ "lvw",
1434
+ "svw",
1435
+ "min",
1436
+ "max",
1437
+ "fit",
1438
+ ...N()
1422
1439
  ], U = () => [
1440
+ isFraction,
1441
+ "screen",
1442
+ "full",
1443
+ "lh",
1444
+ "dvh",
1445
+ "lvh",
1446
+ "svh",
1447
+ "min",
1448
+ "max",
1449
+ "fit",
1450
+ ...N()
1451
+ ], W = () => [
1423
1452
  e,
1424
1453
  isArbitraryVariable,
1425
1454
  isArbitraryValue
1426
- ], W = () => [
1455
+ ], Si = () => [
1427
1456
  ...O(),
1428
1457
  isArbitraryVariablePosition,
1429
1458
  isArbitraryPosition,
1430
1459
  { position: [isArbitraryVariable, isArbitraryValue] }
1431
- ], yi = () => ["no-repeat", { repeat: [
1460
+ ], G = () => ["no-repeat", { repeat: [
1432
1461
  "",
1433
1462
  "x",
1434
1463
  "y",
1435
1464
  "space",
1436
1465
  "round"
1437
- ] }], bi = () => [
1466
+ ] }], Ci = () => [
1438
1467
  "auto",
1439
1468
  "cover",
1440
1469
  "contain",
1441
1470
  isArbitraryVariableSize,
1442
1471
  isArbitrarySize,
1443
1472
  { size: [isArbitraryVariable, isArbitraryValue] }
1444
- ], G = () => [
1473
+ ], K = () => [
1445
1474
  isPercent,
1446
1475
  isArbitraryVariableLength,
1447
1476
  isArbitraryLength
1448
- ], K = () => [
1477
+ ], q = () => [
1449
1478
  "",
1450
1479
  "none",
1451
1480
  "full",
1452
1481
  d,
1453
1482
  isArbitraryVariable,
1454
1483
  isArbitraryValue
1455
- ], q = () => [
1484
+ ], J = () => [
1456
1485
  "",
1457
1486
  isNumber,
1458
1487
  isArbitraryVariableLength,
1459
1488
  isArbitraryLength
1460
- ], J = () => [
1489
+ ], Y = () => [
1461
1490
  "solid",
1462
1491
  "dashed",
1463
1492
  "dotted",
1464
1493
  "double"
1465
- ], xi = () => [
1494
+ ], wi = () => [
1466
1495
  "normal",
1467
1496
  "multiply",
1468
1497
  "screen",
@@ -1479,28 +1508,28 @@ var concatArrays = (e, t) => {
1479
1508
  "saturation",
1480
1509
  "color",
1481
1510
  "luminosity"
1482
- ], Y = () => [
1511
+ ], X = () => [
1483
1512
  isNumber,
1484
1513
  isPercent,
1485
1514
  isArbitraryVariablePosition,
1486
1515
  isArbitraryPosition
1487
- ], Si = () => [
1516
+ ], Ti = () => [
1488
1517
  "",
1489
1518
  "none",
1490
1519
  x,
1491
1520
  isArbitraryVariable,
1492
1521
  isArbitraryValue
1493
- ], X = () => [
1522
+ ], Z = () => [
1494
1523
  "none",
1495
1524
  isNumber,
1496
1525
  isArbitraryVariable,
1497
1526
  isArbitraryValue
1498
- ], Z = () => [
1527
+ ], Q = () => [
1499
1528
  "none",
1500
1529
  isNumber,
1501
1530
  isArbitraryVariable,
1502
1531
  isArbitraryValue
1503
- ], Q = () => [
1532
+ ], Ei = () => [
1504
1533
  isNumber,
1505
1534
  isArbitraryVariable,
1506
1535
  isArbitraryValue
@@ -1662,8 +1691,16 @@ var concatArrays = (e, t) => {
1662
1691
  inset: [{ inset: P() }],
1663
1692
  "inset-x": [{ "inset-x": P() }],
1664
1693
  "inset-y": [{ "inset-y": P() }],
1665
- start: [{ start: P() }],
1666
- end: [{ end: P() }],
1694
+ start: [{
1695
+ "inset-s": P(),
1696
+ start: P()
1697
+ }],
1698
+ end: [{
1699
+ "inset-e": P(),
1700
+ end: P()
1701
+ }],
1702
+ "inset-bs": [{ "inset-bs": P() }],
1703
+ "inset-be": [{ "inset-be": P() }],
1667
1704
  top: [{ top: P() }],
1668
1705
  right: [{ right: P() }],
1669
1706
  bottom: [{ bottom: P() }],
@@ -1726,13 +1763,13 @@ var concatArrays = (e, t) => {
1726
1763
  isArbitraryValue
1727
1764
  ] }],
1728
1765
  "grid-cols": [{ "grid-cols": F() }],
1729
- "col-start-end": [{ col: I() }],
1730
- "col-start": [{ "col-start": L() }],
1731
- "col-end": [{ "col-end": L() }],
1766
+ "col-start-end": [{ col: xi() }],
1767
+ "col-start": [{ "col-start": I() }],
1768
+ "col-end": [{ "col-end": I() }],
1732
1769
  "grid-rows": [{ "grid-rows": F() }],
1733
- "row-start-end": [{ row: I() }],
1734
- "row-start": [{ "row-start": L() }],
1735
- "row-end": [{ "row-end": L() }],
1770
+ "row-start-end": [{ row: xi() }],
1771
+ "row-start": [{ "row-start": I() }],
1772
+ "row-end": [{ "row-end": I() }],
1736
1773
  "grid-flow": [{ "grid-flow": [
1737
1774
  "row",
1738
1775
  "col",
@@ -1740,57 +1777,67 @@ var concatArrays = (e, t) => {
1740
1777
  "row-dense",
1741
1778
  "col-dense"
1742
1779
  ] }],
1743
- "auto-cols": [{ "auto-cols": R() }],
1744
- "auto-rows": [{ "auto-rows": R() }],
1780
+ "auto-cols": [{ "auto-cols": L() }],
1781
+ "auto-rows": [{ "auto-rows": L() }],
1745
1782
  gap: [{ gap: N() }],
1746
1783
  "gap-x": [{ "gap-x": N() }],
1747
1784
  "gap-y": [{ "gap-y": N() }],
1748
- "justify-content": [{ justify: [...z(), "normal"] }],
1749
- "justify-items": [{ "justify-items": [...B(), "normal"] }],
1750
- "justify-self": [{ "justify-self": ["auto", ...B()] }],
1751
- "align-content": [{ content: ["normal", ...z()] }],
1752
- "align-items": [{ items: [...B(), { baseline: ["", "last"] }] }],
1785
+ "justify-content": [{ justify: [...R(), "normal"] }],
1786
+ "justify-items": [{ "justify-items": [...z(), "normal"] }],
1787
+ "justify-self": [{ "justify-self": ["auto", ...z()] }],
1788
+ "align-content": [{ content: ["normal", ...R()] }],
1789
+ "align-items": [{ items: [...z(), { baseline: ["", "last"] }] }],
1753
1790
  "align-self": [{ self: [
1754
1791
  "auto",
1755
- ...B(),
1792
+ ...z(),
1756
1793
  { baseline: ["", "last"] }
1757
1794
  ] }],
1758
- "place-content": [{ "place-content": z() }],
1759
- "place-items": [{ "place-items": [...B(), "baseline"] }],
1760
- "place-self": [{ "place-self": ["auto", ...B()] }],
1795
+ "place-content": [{ "place-content": R() }],
1796
+ "place-items": [{ "place-items": [...z(), "baseline"] }],
1797
+ "place-self": [{ "place-self": ["auto", ...z()] }],
1761
1798
  p: [{ p: N() }],
1762
1799
  px: [{ px: N() }],
1763
1800
  py: [{ py: N() }],
1764
1801
  ps: [{ ps: N() }],
1765
1802
  pe: [{ pe: N() }],
1803
+ pbs: [{ pbs: N() }],
1804
+ pbe: [{ pbe: N() }],
1766
1805
  pt: [{ pt: N() }],
1767
1806
  pr: [{ pr: N() }],
1768
1807
  pb: [{ pb: N() }],
1769
1808
  pl: [{ pl: N() }],
1770
- m: [{ m: V() }],
1771
- mx: [{ mx: V() }],
1772
- my: [{ my: V() }],
1773
- ms: [{ ms: V() }],
1774
- me: [{ me: V() }],
1775
- mt: [{ mt: V() }],
1776
- mr: [{ mr: V() }],
1777
- mb: [{ mb: V() }],
1778
- ml: [{ ml: V() }],
1809
+ m: [{ m: B() }],
1810
+ mx: [{ mx: B() }],
1811
+ my: [{ my: B() }],
1812
+ ms: [{ ms: B() }],
1813
+ me: [{ me: B() }],
1814
+ mbs: [{ mbs: B() }],
1815
+ mbe: [{ mbe: B() }],
1816
+ mt: [{ mt: B() }],
1817
+ mr: [{ mr: B() }],
1818
+ mb: [{ mb: B() }],
1819
+ ml: [{ ml: B() }],
1779
1820
  "space-x": [{ "space-x": N() }],
1780
1821
  "space-x-reverse": ["space-x-reverse"],
1781
1822
  "space-y": [{ "space-y": N() }],
1782
1823
  "space-y-reverse": ["space-y-reverse"],
1783
- size: [{ size: H() }],
1824
+ size: [{ size: V() }],
1825
+ "inline-size": [{ inline: ["auto", ...H()] }],
1826
+ "min-inline-size": [{ "min-inline": ["auto", ...H()] }],
1827
+ "max-inline-size": [{ "max-inline": ["none", ...H()] }],
1828
+ "block-size": [{ block: ["auto", ...U()] }],
1829
+ "min-block-size": [{ "min-block": ["auto", ...U()] }],
1830
+ "max-block-size": [{ "max-block": ["none", ...U()] }],
1784
1831
  w: [{ w: [
1785
1832
  l,
1786
1833
  "screen",
1787
- ...H()
1834
+ ...V()
1788
1835
  ] }],
1789
1836
  "min-w": [{ "min-w": [
1790
1837
  l,
1791
1838
  "screen",
1792
1839
  "none",
1793
- ...H()
1840
+ ...V()
1794
1841
  ] }],
1795
1842
  "max-w": [{ "max-w": [
1796
1843
  l,
@@ -1798,23 +1845,23 @@ var concatArrays = (e, t) => {
1798
1845
  "none",
1799
1846
  "prose",
1800
1847
  { screen: [c] },
1801
- ...H()
1848
+ ...V()
1802
1849
  ] }],
1803
1850
  h: [{ h: [
1804
1851
  "screen",
1805
1852
  "lh",
1806
- ...H()
1853
+ ...V()
1807
1854
  ] }],
1808
1855
  "min-h": [{ "min-h": [
1809
1856
  "screen",
1810
1857
  "lh",
1811
1858
  "none",
1812
- ...H()
1859
+ ...V()
1813
1860
  ] }],
1814
1861
  "max-h": [{ "max-h": [
1815
1862
  "screen",
1816
1863
  "lh",
1817
- ...H()
1864
+ ...V()
1818
1865
  ] }],
1819
1866
  "font-size": [{ text: [
1820
1867
  "base",
@@ -1826,8 +1873,8 @@ var concatArrays = (e, t) => {
1826
1873
  "font-style": ["italic", "not-italic"],
1827
1874
  "font-weight": [{ font: [
1828
1875
  r,
1829
- isArbitraryVariable,
1830
- isArbitraryNumber
1876
+ isArbitraryVariableWeight,
1877
+ isArbitraryWeight
1831
1878
  ] }],
1832
1879
  "font-stretch": [{ "font-stretch": [
1833
1880
  "ultra-condensed",
@@ -1844,9 +1891,10 @@ var concatArrays = (e, t) => {
1844
1891
  ] }],
1845
1892
  "font-family": [{ font: [
1846
1893
  isArbitraryVariableFamilyName,
1847
- isArbitraryValue,
1894
+ isArbitraryFamilyName,
1848
1895
  t
1849
1896
  ] }],
1897
+ "font-features": [{ "font-features": [isArbitraryValue] }],
1850
1898
  "fvn-normal": ["normal-nums"],
1851
1899
  "fvn-ordinal": ["ordinal"],
1852
1900
  "fvn-slashed-zero": ["slashed-zero"],
@@ -1886,15 +1934,15 @@ var concatArrays = (e, t) => {
1886
1934
  "start",
1887
1935
  "end"
1888
1936
  ] }],
1889
- "placeholder-color": [{ placeholder: U() }],
1890
- "text-color": [{ text: U() }],
1937
+ "placeholder-color": [{ placeholder: W() }],
1938
+ "text-color": [{ text: W() }],
1891
1939
  "text-decoration": [
1892
1940
  "underline",
1893
1941
  "overline",
1894
1942
  "line-through",
1895
1943
  "no-underline"
1896
1944
  ],
1897
- "text-decoration-style": [{ decoration: [...J(), "wavy"] }],
1945
+ "text-decoration-style": [{ decoration: [...Y(), "wavy"] }],
1898
1946
  "text-decoration-thickness": [{ decoration: [
1899
1947
  isNumber,
1900
1948
  "from-font",
@@ -1902,7 +1950,7 @@ var concatArrays = (e, t) => {
1902
1950
  isArbitraryVariable,
1903
1951
  isArbitraryLength
1904
1952
  ] }],
1905
- "text-decoration-color": [{ decoration: U() }],
1953
+ "text-decoration-color": [{ decoration: W() }],
1906
1954
  "underline-offset": [{ "underline-offset": [
1907
1955
  isNumber,
1908
1956
  "auto",
@@ -1984,9 +2032,9 @@ var concatArrays = (e, t) => {
1984
2032
  "padding",
1985
2033
  "content"
1986
2034
  ] }],
1987
- "bg-position": [{ bg: W() }],
1988
- "bg-repeat": [{ bg: yi() }],
1989
- "bg-size": [{ bg: bi() }],
2035
+ "bg-position": [{ bg: Si() }],
2036
+ "bg-repeat": [{ bg: G() }],
2037
+ "bg-size": [{ bg: Ci() }],
1990
2038
  "bg-image": [{ bg: [
1991
2039
  "none",
1992
2040
  {
@@ -2019,63 +2067,67 @@ var concatArrays = (e, t) => {
2019
2067
  isArbitraryVariableImage,
2020
2068
  isArbitraryImage
2021
2069
  ] }],
2022
- "bg-color": [{ bg: U() }],
2023
- "gradient-from-pos": [{ from: G() }],
2024
- "gradient-via-pos": [{ via: G() }],
2025
- "gradient-to-pos": [{ to: G() }],
2026
- "gradient-from": [{ from: U() }],
2027
- "gradient-via": [{ via: U() }],
2028
- "gradient-to": [{ to: U() }],
2029
- rounded: [{ rounded: K() }],
2030
- "rounded-s": [{ "rounded-s": K() }],
2031
- "rounded-e": [{ "rounded-e": K() }],
2032
- "rounded-t": [{ "rounded-t": K() }],
2033
- "rounded-r": [{ "rounded-r": K() }],
2034
- "rounded-b": [{ "rounded-b": K() }],
2035
- "rounded-l": [{ "rounded-l": K() }],
2036
- "rounded-ss": [{ "rounded-ss": K() }],
2037
- "rounded-se": [{ "rounded-se": K() }],
2038
- "rounded-ee": [{ "rounded-ee": K() }],
2039
- "rounded-es": [{ "rounded-es": K() }],
2040
- "rounded-tl": [{ "rounded-tl": K() }],
2041
- "rounded-tr": [{ "rounded-tr": K() }],
2042
- "rounded-br": [{ "rounded-br": K() }],
2043
- "rounded-bl": [{ "rounded-bl": K() }],
2044
- "border-w": [{ border: q() }],
2045
- "border-w-x": [{ "border-x": q() }],
2046
- "border-w-y": [{ "border-y": q() }],
2047
- "border-w-s": [{ "border-s": q() }],
2048
- "border-w-e": [{ "border-e": q() }],
2049
- "border-w-t": [{ "border-t": q() }],
2050
- "border-w-r": [{ "border-r": q() }],
2051
- "border-w-b": [{ "border-b": q() }],
2052
- "border-w-l": [{ "border-l": q() }],
2053
- "divide-x": [{ "divide-x": q() }],
2070
+ "bg-color": [{ bg: W() }],
2071
+ "gradient-from-pos": [{ from: K() }],
2072
+ "gradient-via-pos": [{ via: K() }],
2073
+ "gradient-to-pos": [{ to: K() }],
2074
+ "gradient-from": [{ from: W() }],
2075
+ "gradient-via": [{ via: W() }],
2076
+ "gradient-to": [{ to: W() }],
2077
+ rounded: [{ rounded: q() }],
2078
+ "rounded-s": [{ "rounded-s": q() }],
2079
+ "rounded-e": [{ "rounded-e": q() }],
2080
+ "rounded-t": [{ "rounded-t": q() }],
2081
+ "rounded-r": [{ "rounded-r": q() }],
2082
+ "rounded-b": [{ "rounded-b": q() }],
2083
+ "rounded-l": [{ "rounded-l": q() }],
2084
+ "rounded-ss": [{ "rounded-ss": q() }],
2085
+ "rounded-se": [{ "rounded-se": q() }],
2086
+ "rounded-ee": [{ "rounded-ee": q() }],
2087
+ "rounded-es": [{ "rounded-es": q() }],
2088
+ "rounded-tl": [{ "rounded-tl": q() }],
2089
+ "rounded-tr": [{ "rounded-tr": q() }],
2090
+ "rounded-br": [{ "rounded-br": q() }],
2091
+ "rounded-bl": [{ "rounded-bl": q() }],
2092
+ "border-w": [{ border: J() }],
2093
+ "border-w-x": [{ "border-x": J() }],
2094
+ "border-w-y": [{ "border-y": J() }],
2095
+ "border-w-s": [{ "border-s": J() }],
2096
+ "border-w-e": [{ "border-e": J() }],
2097
+ "border-w-bs": [{ "border-bs": J() }],
2098
+ "border-w-be": [{ "border-be": J() }],
2099
+ "border-w-t": [{ "border-t": J() }],
2100
+ "border-w-r": [{ "border-r": J() }],
2101
+ "border-w-b": [{ "border-b": J() }],
2102
+ "border-w-l": [{ "border-l": J() }],
2103
+ "divide-x": [{ "divide-x": J() }],
2054
2104
  "divide-x-reverse": ["divide-x-reverse"],
2055
- "divide-y": [{ "divide-y": q() }],
2105
+ "divide-y": [{ "divide-y": J() }],
2056
2106
  "divide-y-reverse": ["divide-y-reverse"],
2057
2107
  "border-style": [{ border: [
2058
- ...J(),
2108
+ ...Y(),
2059
2109
  "hidden",
2060
2110
  "none"
2061
2111
  ] }],
2062
2112
  "divide-style": [{ divide: [
2063
- ...J(),
2113
+ ...Y(),
2064
2114
  "hidden",
2065
2115
  "none"
2066
2116
  ] }],
2067
- "border-color": [{ border: U() }],
2068
- "border-color-x": [{ "border-x": U() }],
2069
- "border-color-y": [{ "border-y": U() }],
2070
- "border-color-s": [{ "border-s": U() }],
2071
- "border-color-e": [{ "border-e": U() }],
2072
- "border-color-t": [{ "border-t": U() }],
2073
- "border-color-r": [{ "border-r": U() }],
2074
- "border-color-b": [{ "border-b": U() }],
2075
- "border-color-l": [{ "border-l": U() }],
2076
- "divide-color": [{ divide: U() }],
2117
+ "border-color": [{ border: W() }],
2118
+ "border-color-x": [{ "border-x": W() }],
2119
+ "border-color-y": [{ "border-y": W() }],
2120
+ "border-color-s": [{ "border-s": W() }],
2121
+ "border-color-e": [{ "border-e": W() }],
2122
+ "border-color-bs": [{ "border-bs": W() }],
2123
+ "border-color-be": [{ "border-be": W() }],
2124
+ "border-color-t": [{ "border-t": W() }],
2125
+ "border-color-r": [{ "border-r": W() }],
2126
+ "border-color-b": [{ "border-b": W() }],
2127
+ "border-color-l": [{ "border-l": W() }],
2128
+ "divide-color": [{ divide: W() }],
2077
2129
  "outline-style": [{ outline: [
2078
- ...J(),
2130
+ ...Y(),
2079
2131
  "none",
2080
2132
  "hidden"
2081
2133
  ] }],
@@ -2090,7 +2142,7 @@ var concatArrays = (e, t) => {
2090
2142
  isArbitraryVariableLength,
2091
2143
  isArbitraryLength
2092
2144
  ] }],
2093
- "outline-color": [{ outline: U() }],
2145
+ "outline-color": [{ outline: W() }],
2094
2146
  shadow: [{ shadow: [
2095
2147
  "",
2096
2148
  "none",
@@ -2098,39 +2150,39 @@ var concatArrays = (e, t) => {
2098
2150
  isArbitraryVariableShadow,
2099
2151
  isArbitraryShadow
2100
2152
  ] }],
2101
- "shadow-color": [{ shadow: U() }],
2153
+ "shadow-color": [{ shadow: W() }],
2102
2154
  "inset-shadow": [{ "inset-shadow": [
2103
2155
  "none",
2104
2156
  m,
2105
2157
  isArbitraryVariableShadow,
2106
2158
  isArbitraryShadow
2107
2159
  ] }],
2108
- "inset-shadow-color": [{ "inset-shadow": U() }],
2109
- "ring-w": [{ ring: q() }],
2160
+ "inset-shadow-color": [{ "inset-shadow": W() }],
2161
+ "ring-w": [{ ring: J() }],
2110
2162
  "ring-w-inset": ["ring-inset"],
2111
- "ring-color": [{ ring: U() }],
2163
+ "ring-color": [{ ring: W() }],
2112
2164
  "ring-offset-w": [{ "ring-offset": [isNumber, isArbitraryLength] }],
2113
- "ring-offset-color": [{ "ring-offset": U() }],
2114
- "inset-ring-w": [{ "inset-ring": q() }],
2115
- "inset-ring-color": [{ "inset-ring": U() }],
2165
+ "ring-offset-color": [{ "ring-offset": W() }],
2166
+ "inset-ring-w": [{ "inset-ring": J() }],
2167
+ "inset-ring-color": [{ "inset-ring": W() }],
2116
2168
  "text-shadow": [{ "text-shadow": [
2117
2169
  "none",
2118
2170
  _,
2119
2171
  isArbitraryVariableShadow,
2120
2172
  isArbitraryShadow
2121
2173
  ] }],
2122
- "text-shadow-color": [{ "text-shadow": U() }],
2174
+ "text-shadow-color": [{ "text-shadow": W() }],
2123
2175
  opacity: [{ opacity: [
2124
2176
  isNumber,
2125
2177
  isArbitraryVariable,
2126
2178
  isArbitraryValue
2127
2179
  ] }],
2128
2180
  "mix-blend": [{ "mix-blend": [
2129
- ...xi(),
2181
+ ...wi(),
2130
2182
  "plus-darker",
2131
2183
  "plus-lighter"
2132
2184
  ] }],
2133
- "bg-blend": [{ "bg-blend": xi() }],
2185
+ "bg-blend": [{ "bg-blend": wi() }],
2134
2186
  "mask-clip": [{ "mask-clip": [
2135
2187
  "border",
2136
2188
  "padding",
@@ -2146,39 +2198,39 @@ var concatArrays = (e, t) => {
2146
2198
  "exclude"
2147
2199
  ] }],
2148
2200
  "mask-image-linear-pos": [{ "mask-linear": [isNumber] }],
2149
- "mask-image-linear-from-pos": [{ "mask-linear-from": Y() }],
2150
- "mask-image-linear-to-pos": [{ "mask-linear-to": Y() }],
2151
- "mask-image-linear-from-color": [{ "mask-linear-from": U() }],
2152
- "mask-image-linear-to-color": [{ "mask-linear-to": U() }],
2153
- "mask-image-t-from-pos": [{ "mask-t-from": Y() }],
2154
- "mask-image-t-to-pos": [{ "mask-t-to": Y() }],
2155
- "mask-image-t-from-color": [{ "mask-t-from": U() }],
2156
- "mask-image-t-to-color": [{ "mask-t-to": U() }],
2157
- "mask-image-r-from-pos": [{ "mask-r-from": Y() }],
2158
- "mask-image-r-to-pos": [{ "mask-r-to": Y() }],
2159
- "mask-image-r-from-color": [{ "mask-r-from": U() }],
2160
- "mask-image-r-to-color": [{ "mask-r-to": U() }],
2161
- "mask-image-b-from-pos": [{ "mask-b-from": Y() }],
2162
- "mask-image-b-to-pos": [{ "mask-b-to": Y() }],
2163
- "mask-image-b-from-color": [{ "mask-b-from": U() }],
2164
- "mask-image-b-to-color": [{ "mask-b-to": U() }],
2165
- "mask-image-l-from-pos": [{ "mask-l-from": Y() }],
2166
- "mask-image-l-to-pos": [{ "mask-l-to": Y() }],
2167
- "mask-image-l-from-color": [{ "mask-l-from": U() }],
2168
- "mask-image-l-to-color": [{ "mask-l-to": U() }],
2169
- "mask-image-x-from-pos": [{ "mask-x-from": Y() }],
2170
- "mask-image-x-to-pos": [{ "mask-x-to": Y() }],
2171
- "mask-image-x-from-color": [{ "mask-x-from": U() }],
2172
- "mask-image-x-to-color": [{ "mask-x-to": U() }],
2173
- "mask-image-y-from-pos": [{ "mask-y-from": Y() }],
2174
- "mask-image-y-to-pos": [{ "mask-y-to": Y() }],
2175
- "mask-image-y-from-color": [{ "mask-y-from": U() }],
2176
- "mask-image-y-to-color": [{ "mask-y-to": U() }],
2201
+ "mask-image-linear-from-pos": [{ "mask-linear-from": X() }],
2202
+ "mask-image-linear-to-pos": [{ "mask-linear-to": X() }],
2203
+ "mask-image-linear-from-color": [{ "mask-linear-from": W() }],
2204
+ "mask-image-linear-to-color": [{ "mask-linear-to": W() }],
2205
+ "mask-image-t-from-pos": [{ "mask-t-from": X() }],
2206
+ "mask-image-t-to-pos": [{ "mask-t-to": X() }],
2207
+ "mask-image-t-from-color": [{ "mask-t-from": W() }],
2208
+ "mask-image-t-to-color": [{ "mask-t-to": W() }],
2209
+ "mask-image-r-from-pos": [{ "mask-r-from": X() }],
2210
+ "mask-image-r-to-pos": [{ "mask-r-to": X() }],
2211
+ "mask-image-r-from-color": [{ "mask-r-from": W() }],
2212
+ "mask-image-r-to-color": [{ "mask-r-to": W() }],
2213
+ "mask-image-b-from-pos": [{ "mask-b-from": X() }],
2214
+ "mask-image-b-to-pos": [{ "mask-b-to": X() }],
2215
+ "mask-image-b-from-color": [{ "mask-b-from": W() }],
2216
+ "mask-image-b-to-color": [{ "mask-b-to": W() }],
2217
+ "mask-image-l-from-pos": [{ "mask-l-from": X() }],
2218
+ "mask-image-l-to-pos": [{ "mask-l-to": X() }],
2219
+ "mask-image-l-from-color": [{ "mask-l-from": W() }],
2220
+ "mask-image-l-to-color": [{ "mask-l-to": W() }],
2221
+ "mask-image-x-from-pos": [{ "mask-x-from": X() }],
2222
+ "mask-image-x-to-pos": [{ "mask-x-to": X() }],
2223
+ "mask-image-x-from-color": [{ "mask-x-from": W() }],
2224
+ "mask-image-x-to-color": [{ "mask-x-to": W() }],
2225
+ "mask-image-y-from-pos": [{ "mask-y-from": X() }],
2226
+ "mask-image-y-to-pos": [{ "mask-y-to": X() }],
2227
+ "mask-image-y-from-color": [{ "mask-y-from": W() }],
2228
+ "mask-image-y-to-color": [{ "mask-y-to": W() }],
2177
2229
  "mask-image-radial": [{ "mask-radial": [isArbitraryVariable, isArbitraryValue] }],
2178
- "mask-image-radial-from-pos": [{ "mask-radial-from": Y() }],
2179
- "mask-image-radial-to-pos": [{ "mask-radial-to": Y() }],
2180
- "mask-image-radial-from-color": [{ "mask-radial-from": U() }],
2181
- "mask-image-radial-to-color": [{ "mask-radial-to": U() }],
2230
+ "mask-image-radial-from-pos": [{ "mask-radial-from": X() }],
2231
+ "mask-image-radial-to-pos": [{ "mask-radial-to": X() }],
2232
+ "mask-image-radial-from-color": [{ "mask-radial-from": W() }],
2233
+ "mask-image-radial-to-color": [{ "mask-radial-to": W() }],
2182
2234
  "mask-image-radial-shape": [{ "mask-radial": ["circle", "ellipse"] }],
2183
2235
  "mask-image-radial-size": [{ "mask-radial": [{
2184
2236
  closest: ["side", "corner"],
@@ -2186,10 +2238,10 @@ var concatArrays = (e, t) => {
2186
2238
  }] }],
2187
2239
  "mask-image-radial-pos": [{ "mask-radial-at": O() }],
2188
2240
  "mask-image-conic-pos": [{ "mask-conic": [isNumber] }],
2189
- "mask-image-conic-from-pos": [{ "mask-conic-from": Y() }],
2190
- "mask-image-conic-to-pos": [{ "mask-conic-to": Y() }],
2191
- "mask-image-conic-from-color": [{ "mask-conic-from": U() }],
2192
- "mask-image-conic-to-color": [{ "mask-conic-to": U() }],
2241
+ "mask-image-conic-from-pos": [{ "mask-conic-from": X() }],
2242
+ "mask-image-conic-to-pos": [{ "mask-conic-to": X() }],
2243
+ "mask-image-conic-from-color": [{ "mask-conic-from": W() }],
2244
+ "mask-image-conic-to-color": [{ "mask-conic-to": W() }],
2193
2245
  "mask-mode": [{ mask: [
2194
2246
  "alpha",
2195
2247
  "luminance",
@@ -2203,9 +2255,9 @@ var concatArrays = (e, t) => {
2203
2255
  "stroke",
2204
2256
  "view"
2205
2257
  ] }],
2206
- "mask-position": [{ mask: W() }],
2207
- "mask-repeat": [{ mask: yi() }],
2208
- "mask-size": [{ mask: bi() }],
2258
+ "mask-position": [{ mask: Si() }],
2259
+ "mask-repeat": [{ mask: G() }],
2260
+ "mask-size": [{ mask: Ci() }],
2209
2261
  "mask-type": [{ "mask-type": ["alpha", "luminance"] }],
2210
2262
  "mask-image": [{ mask: [
2211
2263
  "none",
@@ -2218,7 +2270,7 @@ var concatArrays = (e, t) => {
2218
2270
  isArbitraryVariable,
2219
2271
  isArbitraryValue
2220
2272
  ] }],
2221
- blur: [{ blur: Si() }],
2273
+ blur: [{ blur: Ti() }],
2222
2274
  brightness: [{ brightness: [
2223
2275
  isNumber,
2224
2276
  isArbitraryVariable,
@@ -2236,7 +2288,7 @@ var concatArrays = (e, t) => {
2236
2288
  isArbitraryVariableShadow,
2237
2289
  isArbitraryShadow
2238
2290
  ] }],
2239
- "drop-shadow-color": [{ "drop-shadow": U() }],
2291
+ "drop-shadow-color": [{ "drop-shadow": W() }],
2240
2292
  grayscale: [{ grayscale: [
2241
2293
  "",
2242
2294
  isNumber,
@@ -2271,7 +2323,7 @@ var concatArrays = (e, t) => {
2271
2323
  isArbitraryVariable,
2272
2324
  isArbitraryValue
2273
2325
  ] }],
2274
- "backdrop-blur": [{ "backdrop-blur": Si() }],
2326
+ "backdrop-blur": [{ "backdrop-blur": Ti() }],
2275
2327
  "backdrop-brightness": [{ "backdrop-brightness": [
2276
2328
  isNumber,
2277
2329
  isArbitraryVariable,
@@ -2364,18 +2416,18 @@ var concatArrays = (e, t) => {
2364
2416
  isArbitraryValue
2365
2417
  ] }],
2366
2418
  "perspective-origin": [{ "perspective-origin": k() }],
2367
- rotate: [{ rotate: X() }],
2368
- "rotate-x": [{ "rotate-x": X() }],
2369
- "rotate-y": [{ "rotate-y": X() }],
2370
- "rotate-z": [{ "rotate-z": X() }],
2371
- scale: [{ scale: Z() }],
2372
- "scale-x": [{ "scale-x": Z() }],
2373
- "scale-y": [{ "scale-y": Z() }],
2374
- "scale-z": [{ "scale-z": Z() }],
2419
+ rotate: [{ rotate: Z() }],
2420
+ "rotate-x": [{ "rotate-x": Z() }],
2421
+ "rotate-y": [{ "rotate-y": Z() }],
2422
+ "rotate-z": [{ "rotate-z": Z() }],
2423
+ scale: [{ scale: Q() }],
2424
+ "scale-x": [{ "scale-x": Q() }],
2425
+ "scale-y": [{ "scale-y": Q() }],
2426
+ "scale-z": [{ "scale-z": Q() }],
2375
2427
  "scale-3d": ["scale-3d"],
2376
- skew: [{ skew: Q() }],
2377
- "skew-x": [{ "skew-x": Q() }],
2378
- "skew-y": [{ "skew-y": Q() }],
2428
+ skew: [{ skew: Ei() }],
2429
+ "skew-x": [{ "skew-x": Ei() }],
2430
+ "skew-y": [{ "skew-y": Ei() }],
2379
2431
  transform: [{ transform: [
2380
2432
  isArbitraryVariable,
2381
2433
  isArbitraryValue,
@@ -2391,9 +2443,9 @@ var concatArrays = (e, t) => {
2391
2443
  "translate-y": [{ "translate-y": $() }],
2392
2444
  "translate-z": [{ "translate-z": $() }],
2393
2445
  "translate-none": ["translate-none"],
2394
- accent: [{ accent: U() }],
2446
+ accent: [{ accent: W() }],
2395
2447
  appearance: [{ appearance: ["none", "auto"] }],
2396
- "caret-color": [{ caret: U() }],
2448
+ "caret-color": [{ caret: W() }],
2397
2449
  "color-scheme": [{ scheme: [
2398
2450
  "normal",
2399
2451
  "dark",
@@ -2456,6 +2508,8 @@ var concatArrays = (e, t) => {
2456
2508
  "scroll-my": [{ "scroll-my": N() }],
2457
2509
  "scroll-ms": [{ "scroll-ms": N() }],
2458
2510
  "scroll-me": [{ "scroll-me": N() }],
2511
+ "scroll-mbs": [{ "scroll-mbs": N() }],
2512
+ "scroll-mbe": [{ "scroll-mbe": N() }],
2459
2513
  "scroll-mt": [{ "scroll-mt": N() }],
2460
2514
  "scroll-mr": [{ "scroll-mr": N() }],
2461
2515
  "scroll-mb": [{ "scroll-mb": N() }],
@@ -2465,6 +2519,8 @@ var concatArrays = (e, t) => {
2465
2519
  "scroll-py": [{ "scroll-py": N() }],
2466
2520
  "scroll-ps": [{ "scroll-ps": N() }],
2467
2521
  "scroll-pe": [{ "scroll-pe": N() }],
2522
+ "scroll-pbs": [{ "scroll-pbs": N() }],
2523
+ "scroll-pbe": [{ "scroll-pbe": N() }],
2468
2524
  "scroll-pt": [{ "scroll-pt": N() }],
2469
2525
  "scroll-pr": [{ "scroll-pr": N() }],
2470
2526
  "scroll-pb": [{ "scroll-pb": N() }],
@@ -2513,14 +2569,14 @@ var concatArrays = (e, t) => {
2513
2569
  isArbitraryVariable,
2514
2570
  isArbitraryValue
2515
2571
  ] }],
2516
- fill: [{ fill: ["none", ...U()] }],
2572
+ fill: [{ fill: ["none", ...W()] }],
2517
2573
  "stroke-w": [{ stroke: [
2518
2574
  isNumber,
2519
2575
  isArbitraryVariableLength,
2520
2576
  isArbitraryLength,
2521
2577
  isArbitraryNumber
2522
2578
  ] }],
2523
- stroke: [{ stroke: ["none", ...U()] }],
2579
+ stroke: [{ stroke: ["none", ...W()] }],
2524
2580
  "forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }]
2525
2581
  },
2526
2582
  conflictingClassGroups: {
@@ -2529,6 +2585,8 @@ var concatArrays = (e, t) => {
2529
2585
  inset: [
2530
2586
  "inset-x",
2531
2587
  "inset-y",
2588
+ "inset-bs",
2589
+ "inset-be",
2532
2590
  "start",
2533
2591
  "end",
2534
2592
  "top",
@@ -2549,6 +2607,8 @@ var concatArrays = (e, t) => {
2549
2607
  "py",
2550
2608
  "ps",
2551
2609
  "pe",
2610
+ "pbs",
2611
+ "pbe",
2552
2612
  "pt",
2553
2613
  "pr",
2554
2614
  "pb",
@@ -2561,6 +2621,8 @@ var concatArrays = (e, t) => {
2561
2621
  "my",
2562
2622
  "ms",
2563
2623
  "me",
2624
+ "mbs",
2625
+ "mbe",
2564
2626
  "mt",
2565
2627
  "mr",
2566
2628
  "mb",
@@ -2611,6 +2673,8 @@ var concatArrays = (e, t) => {
2611
2673
  "border-w-y",
2612
2674
  "border-w-s",
2613
2675
  "border-w-e",
2676
+ "border-w-bs",
2677
+ "border-w-be",
2614
2678
  "border-w-t",
2615
2679
  "border-w-r",
2616
2680
  "border-w-b",
@@ -2623,6 +2687,8 @@ var concatArrays = (e, t) => {
2623
2687
  "border-color-y",
2624
2688
  "border-color-s",
2625
2689
  "border-color-e",
2690
+ "border-color-bs",
2691
+ "border-color-be",
2626
2692
  "border-color-t",
2627
2693
  "border-color-r",
2628
2694
  "border-color-b",
@@ -2646,6 +2712,8 @@ var concatArrays = (e, t) => {
2646
2712
  "scroll-my",
2647
2713
  "scroll-ms",
2648
2714
  "scroll-me",
2715
+ "scroll-mbs",
2716
+ "scroll-mbe",
2649
2717
  "scroll-mt",
2650
2718
  "scroll-mr",
2651
2719
  "scroll-mb",
@@ -2658,6 +2726,8 @@ var concatArrays = (e, t) => {
2658
2726
  "scroll-py",
2659
2727
  "scroll-ps",
2660
2728
  "scroll-pe",
2729
+ "scroll-pbs",
2730
+ "scroll-pbe",
2661
2731
  "scroll-pt",
2662
2732
  "scroll-pr",
2663
2733
  "scroll-pb",
@@ -3162,7 +3232,7 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3162
3232
  }
3163
3233
  },
3164
3234
  setup(e) {
3165
- useCssVars((e) => ({ v0b0e0d5c: B.value }));
3235
+ useCssVars((e) => ({ v0b0e0d5c: z.value }));
3166
3236
  let t = typeof window < "u" && window.matchMedia("(prefers-reduced-motion: reduce)").matches, n = Object.freeze({
3167
3237
  element: !0,
3168
3238
  component: !0,
@@ -3171,24 +3241,24 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3171
3241
  text: !1
3172
3242
  }), r = e, { config: a, currentIndex: s, setCurrentIndex: l, isHovered: u, isNavigating: p, setIsNavigating: m, pauseAutoplay: b, resumeAutoplay: x, autoplayIsActive: C } = useCarouselClient(), T = ref(!0), E = (e, t) => e / t * 100, D = ref(0), O = ref(0), k = ref(0), j = computed(() => range(k.value + 1, k.value + 1 + a.value.perPage)), N = computed(() => ({
3173
3243
  transform: `translate3d(${D.value}px, 0, 0)`,
3174
- transitionDuration: `${E(V.value, a.value.transitionSpeed)}ms`
3244
+ transitionDuration: `${E(B.value, a.value.transitionSpeed)}ms`
3175
3245
  })), P = (e) => {
3176
- let t = parseFloat(B.value);
3246
+ let t = parseFloat(z.value);
3177
3247
  return k.value = a.value.wrap ? r.totalSlides + e : e, (t + a.value.gap) * k.value * -1;
3178
- }, F = ref(null), { width: L, height: R } = useElementSize(F), B = computed(() => {
3248
+ }, F = ref(null), { width: I, height: L } = useElementSize(F), z = computed(() => {
3179
3249
  let e = a.value.gap > 0 ? a.value.gap * (a.value.perPage - 1) : 0;
3180
- return (L.value - e) / a.value.perPage + "px";
3250
+ return (I.value - e) / a.value.perPage + "px";
3181
3251
  });
3182
3252
  watch(() => r.isInit, async (e) => {
3183
3253
  e && (D.value = P(s.value), await nextFrame(2), T.value = !1);
3184
3254
  });
3185
- let V = computed(() => Math.abs(D.value - O.value));
3255
+ let B = computed(() => Math.abs(D.value - O.value));
3186
3256
  watch(s, (e) => {
3187
- p.value === !1 && (O.value = D.value), D.value = P(e), t && U();
3257
+ p.value === !1 && (O.value = D.value), D.value = P(e), t && H();
3188
3258
  });
3189
- let H = () => {
3259
+ let V = () => {
3190
3260
  m(!0);
3191
- }, U = async () => {
3261
+ }, H = async () => {
3192
3262
  T.value = !0, await nextFrame();
3193
3263
  let e = r.totalSlides;
3194
3264
  l(loopedValue(s.value, 0, e)), await nextFrame(), T.value = !1, m(!1);
@@ -3196,7 +3266,7 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3196
3266
  watch(u, (e) => {
3197
3267
  a.value.pauseOnHover === !0 && (e ? b() : x());
3198
3268
  });
3199
- let W = (e, t) => (t === "prefix" ? 0 : t === "suffix" ? r.totalSlides * 2 : r.totalSlides) + e, G = {
3269
+ let U = (e, t) => (t === "prefix" ? 0 : t === "suffix" ? r.totalSlides * 2 : r.totalSlides) + e, G = {
3200
3270
  props: { gap: {
3201
3271
  type: Number,
3202
3272
  default: 0
@@ -3206,7 +3276,7 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3206
3276
  let a = 0, s = t ? `_${t}` : "";
3207
3277
  return replaceChildren(r(), (n) => {
3208
3278
  a++;
3209
- let r = W(a, t);
3279
+ let r = U(a, t);
3210
3280
  return h(Slide_default, {
3211
3281
  class: normalizeClass(["evo-vue-carousel__slide shrink-0 grow-0", {
3212
3282
  "evo-vue-carousel__slide-clone": !!t,
@@ -3236,8 +3306,8 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3236
3306
  ]),
3237
3307
  role: "list",
3238
3308
  style: N.value,
3239
- onTransitionstart: H,
3240
- onTransitionend: U
3309
+ onTransitionstart: V,
3310
+ onTransitionend: H
3241
3311
  }, a.value.wrap ? concat(s("prefix"), s(), s("suffix")) : s());
3242
3312
  }
3243
3313
  };
@@ -3245,8 +3315,8 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3245
3315
  ref_key: "viewportRef",
3246
3316
  ref: F,
3247
3317
  class: "evo-vue-carousel__viewport evo-vue-carousel__viewport--slider relative flex w-full h-full max-h-full overflow-hidden",
3248
- "data-width": unref(L),
3249
- "data-height": unref(R)
3318
+ "data-width": unref(I),
3319
+ "data-height": unref(L)
3250
3320
  }, [createVNode(unref(S), {
3251
3321
  slots: e.$slots,
3252
3322
  only: "default"
@@ -3286,7 +3356,9 @@ var COMPONENTS_AND_ELEMENTS = /* @__PURE__ */ freeze({
3286
3356
  let n = 0, r = replaceChildren(e, (e) => {
3287
3357
  let t = h(Slide_default, {
3288
3358
  class: normalizeClass(["evo-vue-carousel__slide evo-vue-carousel__slide--visible w-full h-full", { hidden: l.value.includes(n) === !1 }]),
3289
- role: "listitem"
3359
+ role: "listitem",
3360
+ isVisible: l.value.includes(n) === !1,
3361
+ isClone: !1
3290
3362
  }, { default: () => [e] });
3291
3363
  return n++, t;
3292
3364
  }, COMPONENTS_AND_ELEMENTS), c = concat(slice(r, s.value), slice(r, 0, s.value));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo-vue-carousel",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "type": "module",
5
5
  "license": "GPL-3.0-only",
6
6
  "files": [
@@ -31,30 +31,30 @@
31
31
  "dependencies": {
32
32
  "@evomark/vue-forward-slots": "^6.2.2",
33
33
  "@skirtle/vue-vnode-utils": "^0.2.0",
34
- "@vueuse/core": "^14.1.0",
35
- "es-toolkit": "^1.43.0",
34
+ "@vueuse/core": "^14.2.1",
35
+ "es-toolkit": "^1.45.1",
36
36
  "vue3-icon": "^3.0.3"
37
37
  },
38
38
  "devDependencies": {
39
- "@eslint/js": "^9.39.2",
39
+ "@eslint/js": "^10.0.1",
40
40
  "@testing-library/vue": "^8.1.0",
41
- "@vitejs/plugin-vue": "^6.0.3",
41
+ "@vitejs/plugin-vue": "^6.0.4",
42
42
  "@vue/test-utils": "^2.4.6",
43
- "eslint": "^9.39.2",
43
+ "eslint": "^10.0.2",
44
44
  "eslint-config-prettier": "^10.1.8",
45
- "eslint-plugin-jsdoc": "^62.0.0",
46
- "eslint-plugin-vue": "^10.6.2",
47
- "globals": "^17.0.0",
48
- "jsdom": "^27.4.0",
49
- "prettier": "^3.7.4",
50
- "tailwind-merge": "^3.4.0",
51
- "tailwindcss": "^4.1.18",
45
+ "eslint-plugin-jsdoc": "^62.7.1",
46
+ "eslint-plugin-vue": "^10.8.0",
47
+ "globals": "^17.4.0",
48
+ "jsdom": "^28.1.0",
49
+ "prettier": "^3.8.1",
50
+ "tailwind-merge": "^3.5.0",
51
+ "tailwindcss": "^4.2.1",
52
52
  "vite": "npm:rolldown-vite@^7.3.1",
53
53
  "vite-plugin-lib-inject-css": "^2.2.2",
54
- "vitest": "^4.0.17",
54
+ "vitest": "^4.0.18",
55
55
  "vitest-axe": "^0.1.0",
56
- "vue": "^3.5.26",
57
- "vue-eslint-parser": "^10.2.0"
56
+ "vue": "^3.5.29",
57
+ "vue-eslint-parser": "^10.4.0"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "tailwind-merge": "^2.5.2 || ^3.0.0",