@pequity/squirrel 11.0.6 → 11.0.8

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 (47) hide show
  1. package/dist/cjs/chunks/index.js +204 -39
  2. package/dist/es/chunks/index.js +206 -41
  3. package/dist/es/chunks/p-action-bar.js +1 -1
  4. package/dist/es/chunks/p-alert.js +1 -1
  5. package/dist/es/chunks/p-avatar.js +1 -1
  6. package/dist/es/chunks/p-btn.js +1 -1
  7. package/dist/es/chunks/p-card.js +1 -1
  8. package/dist/es/chunks/p-dropdown-select.js +1 -1
  9. package/dist/es/chunks/p-icon.js +1 -1
  10. package/dist/es/chunks/p-info-icon.js +1 -1
  11. package/dist/es/chunks/p-inline-date-picker.js +1 -1
  12. package/dist/es/chunks/p-input-number.js +1 -1
  13. package/dist/es/chunks/p-input-percent.js +1 -1
  14. package/dist/es/chunks/p-input.js +1 -1
  15. package/dist/es/chunks/p-link.js +1 -1
  16. package/dist/es/chunks/p-pagination-info.js +1 -1
  17. package/dist/es/chunks/p-pagination.js +1 -1
  18. package/dist/es/chunks/p-progress-bar.js +1 -1
  19. package/dist/es/chunks/p-ring-loader.js +1 -1
  20. package/dist/es/chunks/p-select-btn.js +1 -1
  21. package/dist/es/chunks/p-select.js +1 -1
  22. package/dist/es/chunks/p-steps.js +1 -1
  23. package/dist/es/chunks/p-table-header-cell.js +1 -1
  24. package/dist/es/chunks/p-table-loader.js +1 -1
  25. package/dist/es/chunks/p-tabs-pills.js +1 -1
  26. package/dist/es/chunks/p-tabs.js +1 -1
  27. package/dist/es/chunks/p-textarea.js +1 -1
  28. package/dist/es/index.js +4 -4
  29. package/dist/es/p-checkbox.js +1 -1
  30. package/dist/es/p-chips.js +1 -1
  31. package/dist/es/p-close-btn.js +1 -1
  32. package/dist/es/p-date-picker.js +1 -1
  33. package/dist/es/p-drawer.js +1 -1
  34. package/dist/es/p-dropdown.js +1 -1
  35. package/dist/es/p-input-search.js +1 -1
  36. package/dist/es/p-loading.js +1 -1
  37. package/dist/es/p-modal.js +1 -1
  38. package/dist/es/p-select-pill.js +1 -1
  39. package/dist/es/p-skeleton-loader.js +1 -1
  40. package/dist/es/p-table-td.js +1 -1
  41. package/dist/es/p-toggle.js +1 -1
  42. package/dist/squirrel/components/p-date-picker/p-date-picker.vue.d.ts +1 -1
  43. package/dist/squirrel/components/p-inline-date-picker/p-inline-date-picker.vue.d.ts +1 -1
  44. package/dist/squirrel.css +1 -1
  45. package/package.json +40 -40
  46. package/squirrel/index.spec.js +1 -1
  47. package/squirrel/locales/nl-NL.json +47 -0
@@ -786,7 +786,7 @@ const fromTheme = (key) => {
786
786
  };
787
787
  const arbitraryValueRegex = /^\[(?:(\w[\w-]*):)?(.+)\]$/i;
788
788
  const arbitraryVariableRegex = /^\((?:(\w[\w-]*):)?(.+)\)$/i;
789
- const fractionRegex = /^\d+\/\d+$/;
789
+ const fractionRegex = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/;
790
790
  const tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/;
791
791
  const 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$/;
792
792
  const colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/;
@@ -812,6 +812,8 @@ const isArbitrarySize = (value) => getIsArbitraryValue(value, isLabelSize, isNev
812
812
  const isArbitraryValue = (value) => arbitraryValueRegex.test(value);
813
813
  const isArbitraryLength = (value) => getIsArbitraryValue(value, isLabelLength, isLengthOnly);
814
814
  const isArbitraryNumber = (value) => getIsArbitraryValue(value, isLabelNumber, isNumber);
815
+ const isArbitraryWeight = (value) => getIsArbitraryValue(value, isLabelWeight, isAny);
816
+ const isArbitraryFamilyName = (value) => getIsArbitraryValue(value, isLabelFamilyName, isNever);
815
817
  const isArbitraryPosition = (value) => getIsArbitraryValue(value, isLabelPosition, isNever);
816
818
  const isArbitraryImage = (value) => getIsArbitraryValue(value, isLabelImage, isImage);
817
819
  const isArbitraryShadow = (value) => getIsArbitraryValue(value, isLabelShadow, isShadow);
@@ -822,6 +824,7 @@ const isArbitraryVariablePosition = (value) => getIsArbitraryVariable(value, isL
822
824
  const isArbitraryVariableSize = (value) => getIsArbitraryVariable(value, isLabelSize);
823
825
  const isArbitraryVariableImage = (value) => getIsArbitraryVariable(value, isLabelImage);
824
826
  const isArbitraryVariableShadow = (value) => getIsArbitraryVariable(value, isLabelShadow, true);
827
+ const isArbitraryVariableWeight = (value) => getIsArbitraryVariable(value, isLabelWeight, true);
825
828
  const getIsArbitraryValue = (value, testLabel, testValue) => {
826
829
  const result = arbitraryValueRegex.exec(value);
827
830
  if (result) {
@@ -848,6 +851,7 @@ const isLabelSize = (label) => label === "length" || label === "size" || label =
848
851
  const isLabelLength = (label) => label === "length";
849
852
  const isLabelNumber = (label) => label === "number";
850
853
  const isLabelFamilyName = (label) => label === "family-name";
854
+ const isLabelWeight = (label) => label === "number" || label === "weight";
851
855
  const isLabelShadow = (label) => label === "shadow";
852
856
  const getDefaultConfig = () => {
853
857
  const themeColor = fromTheme("color");
@@ -904,6 +908,8 @@ const getDefaultConfig = () => {
904
908
  const scaleAlignSecondaryAxis = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"];
905
909
  const scaleMargin = () => ["auto", ...scaleUnambiguousSpacing()];
906
910
  const scaleSizing = () => [isFraction, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...scaleUnambiguousSpacing()];
911
+ const scaleSizingInline = () => [isFraction, "screen", "full", "dvw", "lvw", "svw", "min", "max", "fit", ...scaleUnambiguousSpacing()];
912
+ const scaleSizingBlock = () => [isFraction, "screen", "full", "lh", "dvh", "lvh", "svh", "min", "max", "fit", ...scaleUnambiguousSpacing()];
907
913
  const scaleColor = () => [themeColor, isArbitraryVariable, isArbitraryValue];
908
914
  const scaleBgPosition = () => [...scalePosition(), isArbitraryVariablePosition, isArbitraryPosition, {
909
915
  position: [isArbitraryVariable, isArbitraryValue]
@@ -1113,40 +1119,66 @@ const getDefaultConfig = () => {
1113
1119
  */
1114
1120
  position: ["static", "fixed", "absolute", "relative", "sticky"],
1115
1121
  /**
1116
- * Top / Right / Bottom / Left
1122
+ * Inset
1117
1123
  * @see https://tailwindcss.com/docs/top-right-bottom-left
1118
1124
  */
1119
1125
  inset: [{
1120
1126
  inset: scaleInset()
1121
1127
  }],
1122
1128
  /**
1123
- * Right / Left
1129
+ * Inset Inline
1124
1130
  * @see https://tailwindcss.com/docs/top-right-bottom-left
1125
1131
  */
1126
1132
  "inset-x": [{
1127
1133
  "inset-x": scaleInset()
1128
1134
  }],
1129
1135
  /**
1130
- * Top / Bottom
1136
+ * Inset Block
1131
1137
  * @see https://tailwindcss.com/docs/top-right-bottom-left
1132
1138
  */
1133
1139
  "inset-y": [{
1134
1140
  "inset-y": scaleInset()
1135
1141
  }],
1136
1142
  /**
1137
- * Start
1143
+ * Inset Inline Start
1138
1144
  * @see https://tailwindcss.com/docs/top-right-bottom-left
1145
+ * @todo class group will be renamed to `inset-s` in next major release
1139
1146
  */
1140
1147
  start: [{
1148
+ "inset-s": scaleInset(),
1149
+ /**
1150
+ * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.
1151
+ * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
1152
+ */
1141
1153
  start: scaleInset()
1142
1154
  }],
1143
1155
  /**
1144
- * End
1156
+ * Inset Inline End
1145
1157
  * @see https://tailwindcss.com/docs/top-right-bottom-left
1158
+ * @todo class group will be renamed to `inset-e` in next major release
1146
1159
  */
1147
1160
  end: [{
1161
+ "inset-e": scaleInset(),
1162
+ /**
1163
+ * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.
1164
+ * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
1165
+ */
1148
1166
  end: scaleInset()
1149
1167
  }],
1168
+ /**
1169
+ * Inset Block Start
1170
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1171
+ */
1172
+ "inset-bs": [{
1173
+ "inset-bs": scaleInset()
1174
+ }],
1175
+ /**
1176
+ * Inset Block End
1177
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1178
+ */
1179
+ "inset-be": [{
1180
+ "inset-be": scaleInset()
1181
+ }],
1150
1182
  /**
1151
1183
  * Top
1152
1184
  * @see https://tailwindcss.com/docs/top-right-bottom-left
@@ -1413,33 +1445,47 @@ const getDefaultConfig = () => {
1413
1445
  p: scaleUnambiguousSpacing()
1414
1446
  }],
1415
1447
  /**
1416
- * Padding X
1448
+ * Padding Inline
1417
1449
  * @see https://tailwindcss.com/docs/padding
1418
1450
  */
1419
1451
  px: [{
1420
1452
  px: scaleUnambiguousSpacing()
1421
1453
  }],
1422
1454
  /**
1423
- * Padding Y
1455
+ * Padding Block
1424
1456
  * @see https://tailwindcss.com/docs/padding
1425
1457
  */
1426
1458
  py: [{
1427
1459
  py: scaleUnambiguousSpacing()
1428
1460
  }],
1429
1461
  /**
1430
- * Padding Start
1462
+ * Padding Inline Start
1431
1463
  * @see https://tailwindcss.com/docs/padding
1432
1464
  */
1433
1465
  ps: [{
1434
1466
  ps: scaleUnambiguousSpacing()
1435
1467
  }],
1436
1468
  /**
1437
- * Padding End
1469
+ * Padding Inline End
1438
1470
  * @see https://tailwindcss.com/docs/padding
1439
1471
  */
1440
1472
  pe: [{
1441
1473
  pe: scaleUnambiguousSpacing()
1442
1474
  }],
1475
+ /**
1476
+ * Padding Block Start
1477
+ * @see https://tailwindcss.com/docs/padding
1478
+ */
1479
+ pbs: [{
1480
+ pbs: scaleUnambiguousSpacing()
1481
+ }],
1482
+ /**
1483
+ * Padding Block End
1484
+ * @see https://tailwindcss.com/docs/padding
1485
+ */
1486
+ pbe: [{
1487
+ pbe: scaleUnambiguousSpacing()
1488
+ }],
1443
1489
  /**
1444
1490
  * Padding Top
1445
1491
  * @see https://tailwindcss.com/docs/padding
@@ -1476,33 +1522,47 @@ const getDefaultConfig = () => {
1476
1522
  m: scaleMargin()
1477
1523
  }],
1478
1524
  /**
1479
- * Margin X
1525
+ * Margin Inline
1480
1526
  * @see https://tailwindcss.com/docs/margin
1481
1527
  */
1482
1528
  mx: [{
1483
1529
  mx: scaleMargin()
1484
1530
  }],
1485
1531
  /**
1486
- * Margin Y
1532
+ * Margin Block
1487
1533
  * @see https://tailwindcss.com/docs/margin
1488
1534
  */
1489
1535
  my: [{
1490
1536
  my: scaleMargin()
1491
1537
  }],
1492
1538
  /**
1493
- * Margin Start
1539
+ * Margin Inline Start
1494
1540
  * @see https://tailwindcss.com/docs/margin
1495
1541
  */
1496
1542
  ms: [{
1497
1543
  ms: scaleMargin()
1498
1544
  }],
1499
1545
  /**
1500
- * Margin End
1546
+ * Margin Inline End
1501
1547
  * @see https://tailwindcss.com/docs/margin
1502
1548
  */
1503
1549
  me: [{
1504
1550
  me: scaleMargin()
1505
1551
  }],
1552
+ /**
1553
+ * Margin Block Start
1554
+ * @see https://tailwindcss.com/docs/margin
1555
+ */
1556
+ mbs: [{
1557
+ mbs: scaleMargin()
1558
+ }],
1559
+ /**
1560
+ * Margin Block End
1561
+ * @see https://tailwindcss.com/docs/margin
1562
+ */
1563
+ mbe: [{
1564
+ mbe: scaleMargin()
1565
+ }],
1506
1566
  /**
1507
1567
  * Margin Top
1508
1568
  * @see https://tailwindcss.com/docs/margin
@@ -1565,6 +1625,48 @@ const getDefaultConfig = () => {
1565
1625
  size: [{
1566
1626
  size: scaleSizing()
1567
1627
  }],
1628
+ /**
1629
+ * Inline Size
1630
+ * @see https://tailwindcss.com/docs/width
1631
+ */
1632
+ "inline-size": [{
1633
+ inline: ["auto", ...scaleSizingInline()]
1634
+ }],
1635
+ /**
1636
+ * Min-Inline Size
1637
+ * @see https://tailwindcss.com/docs/min-width
1638
+ */
1639
+ "min-inline-size": [{
1640
+ "min-inline": ["auto", ...scaleSizingInline()]
1641
+ }],
1642
+ /**
1643
+ * Max-Inline Size
1644
+ * @see https://tailwindcss.com/docs/max-width
1645
+ */
1646
+ "max-inline-size": [{
1647
+ "max-inline": ["none", ...scaleSizingInline()]
1648
+ }],
1649
+ /**
1650
+ * Block Size
1651
+ * @see https://tailwindcss.com/docs/height
1652
+ */
1653
+ "block-size": [{
1654
+ block: ["auto", ...scaleSizingBlock()]
1655
+ }],
1656
+ /**
1657
+ * Min-Block Size
1658
+ * @see https://tailwindcss.com/docs/min-height
1659
+ */
1660
+ "min-block-size": [{
1661
+ "min-block": ["auto", ...scaleSizingBlock()]
1662
+ }],
1663
+ /**
1664
+ * Max-Block Size
1665
+ * @see https://tailwindcss.com/docs/max-height
1666
+ */
1667
+ "max-block-size": [{
1668
+ "max-block": ["none", ...scaleSizingBlock()]
1669
+ }],
1568
1670
  /**
1569
1671
  * Width
1570
1672
  * @see https://tailwindcss.com/docs/width
@@ -1649,7 +1751,7 @@ const getDefaultConfig = () => {
1649
1751
  * @see https://tailwindcss.com/docs/font-weight
1650
1752
  */
1651
1753
  "font-weight": [{
1652
- font: [themeFontWeight, isArbitraryVariable, isArbitraryNumber]
1754
+ font: [themeFontWeight, isArbitraryVariableWeight, isArbitraryWeight]
1653
1755
  }],
1654
1756
  /**
1655
1757
  * Font Stretch
@@ -1663,7 +1765,14 @@ const getDefaultConfig = () => {
1663
1765
  * @see https://tailwindcss.com/docs/font-family
1664
1766
  */
1665
1767
  "font-family": [{
1666
- font: [isArbitraryVariableFamilyName, isArbitraryValue, themeFont]
1768
+ font: [isArbitraryVariableFamilyName, isArbitraryFamilyName, themeFont]
1769
+ }],
1770
+ /**
1771
+ * Font Feature Settings
1772
+ * @see https://tailwindcss.com/docs/font-feature-settings
1773
+ */
1774
+ "font-features": [{
1775
+ "font-features": [isArbitraryValue]
1667
1776
  }],
1668
1777
  /**
1669
1778
  * Font Variant Numeric
@@ -2085,33 +2194,47 @@ const getDefaultConfig = () => {
2085
2194
  border: scaleBorderWidth()
2086
2195
  }],
2087
2196
  /**
2088
- * Border Width X
2197
+ * Border Width Inline
2089
2198
  * @see https://tailwindcss.com/docs/border-width
2090
2199
  */
2091
2200
  "border-w-x": [{
2092
2201
  "border-x": scaleBorderWidth()
2093
2202
  }],
2094
2203
  /**
2095
- * Border Width Y
2204
+ * Border Width Block
2096
2205
  * @see https://tailwindcss.com/docs/border-width
2097
2206
  */
2098
2207
  "border-w-y": [{
2099
2208
  "border-y": scaleBorderWidth()
2100
2209
  }],
2101
2210
  /**
2102
- * Border Width Start
2211
+ * Border Width Inline Start
2103
2212
  * @see https://tailwindcss.com/docs/border-width
2104
2213
  */
2105
2214
  "border-w-s": [{
2106
2215
  "border-s": scaleBorderWidth()
2107
2216
  }],
2108
2217
  /**
2109
- * Border Width End
2218
+ * Border Width Inline End
2110
2219
  * @see https://tailwindcss.com/docs/border-width
2111
2220
  */
2112
2221
  "border-w-e": [{
2113
2222
  "border-e": scaleBorderWidth()
2114
2223
  }],
2224
+ /**
2225
+ * Border Width Block Start
2226
+ * @see https://tailwindcss.com/docs/border-width
2227
+ */
2228
+ "border-w-bs": [{
2229
+ "border-bs": scaleBorderWidth()
2230
+ }],
2231
+ /**
2232
+ * Border Width Block End
2233
+ * @see https://tailwindcss.com/docs/border-width
2234
+ */
2235
+ "border-w-be": [{
2236
+ "border-be": scaleBorderWidth()
2237
+ }],
2115
2238
  /**
2116
2239
  * Border Width Top
2117
2240
  * @see https://tailwindcss.com/docs/border-width
@@ -2186,33 +2309,47 @@ const getDefaultConfig = () => {
2186
2309
  border: scaleColor()
2187
2310
  }],
2188
2311
  /**
2189
- * Border Color X
2312
+ * Border Color Inline
2190
2313
  * @see https://tailwindcss.com/docs/border-color
2191
2314
  */
2192
2315
  "border-color-x": [{
2193
2316
  "border-x": scaleColor()
2194
2317
  }],
2195
2318
  /**
2196
- * Border Color Y
2319
+ * Border Color Block
2197
2320
  * @see https://tailwindcss.com/docs/border-color
2198
2321
  */
2199
2322
  "border-color-y": [{
2200
2323
  "border-y": scaleColor()
2201
2324
  }],
2202
2325
  /**
2203
- * Border Color S
2326
+ * Border Color Inline Start
2204
2327
  * @see https://tailwindcss.com/docs/border-color
2205
2328
  */
2206
2329
  "border-color-s": [{
2207
2330
  "border-s": scaleColor()
2208
2331
  }],
2209
2332
  /**
2210
- * Border Color E
2333
+ * Border Color Inline End
2211
2334
  * @see https://tailwindcss.com/docs/border-color
2212
2335
  */
2213
2336
  "border-color-e": [{
2214
2337
  "border-e": scaleColor()
2215
2338
  }],
2339
+ /**
2340
+ * Border Color Block Start
2341
+ * @see https://tailwindcss.com/docs/border-color
2342
+ */
2343
+ "border-color-bs": [{
2344
+ "border-bs": scaleColor()
2345
+ }],
2346
+ /**
2347
+ * Border Color Block End
2348
+ * @see https://tailwindcss.com/docs/border-color
2349
+ */
2350
+ "border-color-be": [{
2351
+ "border-be": scaleColor()
2352
+ }],
2216
2353
  /**
2217
2354
  * Border Color Top
2218
2355
  * @see https://tailwindcss.com/docs/border-color
@@ -3091,33 +3228,47 @@ const getDefaultConfig = () => {
3091
3228
  "scroll-m": scaleUnambiguousSpacing()
3092
3229
  }],
3093
3230
  /**
3094
- * Scroll Margin X
3231
+ * Scroll Margin Inline
3095
3232
  * @see https://tailwindcss.com/docs/scroll-margin
3096
3233
  */
3097
3234
  "scroll-mx": [{
3098
3235
  "scroll-mx": scaleUnambiguousSpacing()
3099
3236
  }],
3100
3237
  /**
3101
- * Scroll Margin Y
3238
+ * Scroll Margin Block
3102
3239
  * @see https://tailwindcss.com/docs/scroll-margin
3103
3240
  */
3104
3241
  "scroll-my": [{
3105
3242
  "scroll-my": scaleUnambiguousSpacing()
3106
3243
  }],
3107
3244
  /**
3108
- * Scroll Margin Start
3245
+ * Scroll Margin Inline Start
3109
3246
  * @see https://tailwindcss.com/docs/scroll-margin
3110
3247
  */
3111
3248
  "scroll-ms": [{
3112
3249
  "scroll-ms": scaleUnambiguousSpacing()
3113
3250
  }],
3114
3251
  /**
3115
- * Scroll Margin End
3252
+ * Scroll Margin Inline End
3116
3253
  * @see https://tailwindcss.com/docs/scroll-margin
3117
3254
  */
3118
3255
  "scroll-me": [{
3119
3256
  "scroll-me": scaleUnambiguousSpacing()
3120
3257
  }],
3258
+ /**
3259
+ * Scroll Margin Block Start
3260
+ * @see https://tailwindcss.com/docs/scroll-margin
3261
+ */
3262
+ "scroll-mbs": [{
3263
+ "scroll-mbs": scaleUnambiguousSpacing()
3264
+ }],
3265
+ /**
3266
+ * Scroll Margin Block End
3267
+ * @see https://tailwindcss.com/docs/scroll-margin
3268
+ */
3269
+ "scroll-mbe": [{
3270
+ "scroll-mbe": scaleUnambiguousSpacing()
3271
+ }],
3121
3272
  /**
3122
3273
  * Scroll Margin Top
3123
3274
  * @see https://tailwindcss.com/docs/scroll-margin
@@ -3154,33 +3305,47 @@ const getDefaultConfig = () => {
3154
3305
  "scroll-p": scaleUnambiguousSpacing()
3155
3306
  }],
3156
3307
  /**
3157
- * Scroll Padding X
3308
+ * Scroll Padding Inline
3158
3309
  * @see https://tailwindcss.com/docs/scroll-padding
3159
3310
  */
3160
3311
  "scroll-px": [{
3161
3312
  "scroll-px": scaleUnambiguousSpacing()
3162
3313
  }],
3163
3314
  /**
3164
- * Scroll Padding Y
3315
+ * Scroll Padding Block
3165
3316
  * @see https://tailwindcss.com/docs/scroll-padding
3166
3317
  */
3167
3318
  "scroll-py": [{
3168
3319
  "scroll-py": scaleUnambiguousSpacing()
3169
3320
  }],
3170
3321
  /**
3171
- * Scroll Padding Start
3322
+ * Scroll Padding Inline Start
3172
3323
  * @see https://tailwindcss.com/docs/scroll-padding
3173
3324
  */
3174
3325
  "scroll-ps": [{
3175
3326
  "scroll-ps": scaleUnambiguousSpacing()
3176
3327
  }],
3177
3328
  /**
3178
- * Scroll Padding End
3329
+ * Scroll Padding Inline End
3179
3330
  * @see https://tailwindcss.com/docs/scroll-padding
3180
3331
  */
3181
3332
  "scroll-pe": [{
3182
3333
  "scroll-pe": scaleUnambiguousSpacing()
3183
3334
  }],
3335
+ /**
3336
+ * Scroll Padding Block Start
3337
+ * @see https://tailwindcss.com/docs/scroll-padding
3338
+ */
3339
+ "scroll-pbs": [{
3340
+ "scroll-pbs": scaleUnambiguousSpacing()
3341
+ }],
3342
+ /**
3343
+ * Scroll Padding Block End
3344
+ * @see https://tailwindcss.com/docs/scroll-padding
3345
+ */
3346
+ "scroll-pbe": [{
3347
+ "scroll-pbe": scaleUnambiguousSpacing()
3348
+ }],
3184
3349
  /**
3185
3350
  * Scroll Padding Top
3186
3351
  * @see https://tailwindcss.com/docs/scroll-padding
@@ -3315,15 +3480,15 @@ const getDefaultConfig = () => {
3315
3480
  conflictingClassGroups: {
3316
3481
  overflow: ["overflow-x", "overflow-y"],
3317
3482
  overscroll: ["overscroll-x", "overscroll-y"],
3318
- inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
3483
+ inset: ["inset-x", "inset-y", "inset-bs", "inset-be", "start", "end", "top", "right", "bottom", "left"],
3319
3484
  "inset-x": ["right", "left"],
3320
3485
  "inset-y": ["top", "bottom"],
3321
3486
  flex: ["basis", "grow", "shrink"],
3322
3487
  gap: ["gap-x", "gap-y"],
3323
- p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
3488
+ p: ["px", "py", "ps", "pe", "pbs", "pbe", "pt", "pr", "pb", "pl"],
3324
3489
  px: ["pr", "pl"],
3325
3490
  py: ["pt", "pb"],
3326
- m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
3491
+ m: ["mx", "my", "ms", "me", "mbs", "mbe", "mt", "mr", "mb", "ml"],
3327
3492
  mx: ["mr", "ml"],
3328
3493
  my: ["mt", "mb"],
3329
3494
  size: ["w", "h"],
@@ -3343,18 +3508,18 @@ const getDefaultConfig = () => {
3343
3508
  "rounded-b": ["rounded-br", "rounded-bl"],
3344
3509
  "rounded-l": ["rounded-tl", "rounded-bl"],
3345
3510
  "border-spacing": ["border-spacing-x", "border-spacing-y"],
3346
- "border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
3511
+ "border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-bs", "border-w-be", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
3347
3512
  "border-w-x": ["border-w-r", "border-w-l"],
3348
3513
  "border-w-y": ["border-w-t", "border-w-b"],
3349
- "border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
3514
+ "border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-bs", "border-color-be", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
3350
3515
  "border-color-x": ["border-color-r", "border-color-l"],
3351
3516
  "border-color-y": ["border-color-t", "border-color-b"],
3352
3517
  translate: ["translate-x", "translate-y", "translate-none"],
3353
3518
  "translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
3354
- "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
3519
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mbs", "scroll-mbe", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
3355
3520
  "scroll-mx": ["scroll-mr", "scroll-ml"],
3356
3521
  "scroll-my": ["scroll-mt", "scroll-mb"],
3357
- "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
3522
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pbs", "scroll-pbe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
3358
3523
  "scroll-px": ["scroll-pr", "scroll-pl"],
3359
3524
  "scroll-py": ["scroll-pt", "scroll-pb"],
3360
3525
  touch: ["touch-x", "touch-y", "touch-pz"],