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