@tonyclaw/llm-inspector 1.10.0 → 1.11.0

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 (74) hide show
  1. package/.output/nitro.json +1 -1
  2. package/.output/public/assets/index-BIZeMR5N.js +105 -0
  3. package/.output/public/assets/index-SmtLx1lM.css +1 -0
  4. package/.output/public/assets/main-QfbQ5oBP.js +17 -0
  5. package/.output/server/_libs/@radix-ui/react-use-controllable-state+[...].mjs +1 -1
  6. package/.output/server/_libs/ajv-formats.mjs +18 -18
  7. package/.output/server/_libs/ajv.mjs +6306 -942
  8. package/.output/server/_libs/cookie-es.mjs +21 -7
  9. package/.output/server/_libs/diff.mjs +320 -0
  10. package/.output/server/_libs/floating-ui__core.mjs +17 -18
  11. package/.output/server/_libs/floating-ui__dom.mjs +20 -24
  12. package/.output/server/_libs/floating-ui__react-dom.mjs +28 -55
  13. package/.output/server/_libs/floating-ui__utils.mjs +36 -36
  14. package/.output/server/_libs/h3-v2.mjs +9 -20
  15. package/.output/server/_libs/isbot.mjs +2 -3
  16. package/.output/server/_libs/json-schema-traverse.mjs +90 -1
  17. package/.output/server/_libs/jszip.mjs +28 -28
  18. package/.output/server/_libs/lucide-react.mjs +103 -80
  19. package/.output/server/_libs/mdast-util-from-markdown.mjs +1 -1
  20. package/.output/server/_libs/pako.mjs +13 -13
  21. package/.output/server/_libs/property-information.mjs +1 -13
  22. package/.output/server/_libs/radix-ui__react-collection.mjs +1 -1
  23. package/.output/server/_libs/radix-ui__react-id.mjs +1 -1
  24. package/.output/server/_libs/react-dom.mjs +10 -10
  25. package/.output/server/_libs/react.mjs +44 -44
  26. package/.output/server/_libs/readable-stream.mjs +15 -15
  27. package/.output/server/_libs/rou3.mjs +7 -1
  28. package/.output/server/_libs/safe-buffer.mjs +3 -3
  29. package/.output/server/_libs/semver.mjs +10 -10
  30. package/.output/server/_libs/seroval-plugins.mjs +5 -5
  31. package/.output/server/_libs/seroval.mjs +596 -606
  32. package/.output/server/_libs/srvx.mjs +245 -10
  33. package/.output/server/_libs/swr.mjs +1 -1
  34. package/.output/server/_libs/tailwind-merge.mjs +41 -286
  35. package/.output/server/_libs/tanstack__history.mjs +44 -31
  36. package/.output/server/_libs/tanstack__react-router.mjs +1089 -780
  37. package/.output/server/_libs/tanstack__react-store.mjs +1 -1
  38. package/.output/server/_libs/tanstack__react-virtual.mjs +7 -82
  39. package/.output/server/_libs/tanstack__router-core.mjs +2331 -2226
  40. package/.output/server/_libs/tanstack__virtual-core.mjs +17 -58
  41. package/.output/server/_libs/tiny-invariant.mjs +12 -0
  42. package/.output/server/_libs/tiny-warning.mjs +5 -0
  43. package/.output/server/_libs/ungap__structured-clone.mjs +2 -14
  44. package/.output/server/_libs/use-sync-external-store.mjs +1 -1
  45. package/.output/server/_libs/zod.mjs +207 -505
  46. package/.output/server/_ssr/{index-XyU4WVWt.mjs → index-I_Nx8QEB.mjs} +532 -79
  47. package/.output/server/_ssr/index.mjs +776 -1098
  48. package/.output/server/_ssr/{router-BR4XO8XJ.mjs → router-BVxfVFsb.mjs} +98 -53
  49. package/.output/server/_tanstack-start-manifest_v-Cm2Owszu.mjs +4 -0
  50. package/.output/server/index.mjs +28 -28
  51. package/README.md +1 -1
  52. package/package.json +2 -1
  53. package/src/components/ProxyViewer.tsx +10 -3
  54. package/src/components/ProxyViewerContainer.tsx +6 -0
  55. package/src/components/proxy-viewer/ConversationGroup.tsx +10 -1
  56. package/src/components/proxy-viewer/LogEntry.tsx +114 -5
  57. package/src/components/proxy-viewer/diff/DiffView.tsx +319 -0
  58. package/src/components/proxy-viewer/diff/computeDiff.ts +178 -0
  59. package/src/components/proxy-viewer/diff/index.ts +3 -0
  60. package/src/components/ui/crab-logo.tsx +45 -0
  61. package/src/proxy/config.ts +3 -17
  62. package/src/proxy/dataDir.ts +56 -0
  63. package/src/proxy/formats/anthropic/stream.ts +5 -2
  64. package/src/proxy/formats/jsonSchema.ts +12 -0
  65. package/src/proxy/formats/openai/stream.ts +21 -16
  66. package/src/proxy/handler.ts +15 -5
  67. package/src/proxy/providers.ts +61 -1
  68. package/src/proxy/schemas.ts +42 -0
  69. package/src/proxy/store.ts +6 -23
  70. package/.output/public/assets/index-BFuUQkWu.js +0 -11
  71. package/.output/public/assets/index-F2ojFPJp.css +0 -1
  72. package/.output/public/assets/index-nKnhyW4Y.js +0 -122
  73. package/.output/server/_ssr/empty-plugin-adapters-BFgPZ6_d.mjs +0 -6
  74. package/.output/server/_tanstack-start-manifest_v-DFoSjBkb.mjs +0 -4
@@ -302,27 +302,15 @@ const createConfigUtils = (config) => ({
302
302
  cache: createLruCache(config.cacheSize),
303
303
  parseClassName: createParseClassName(config),
304
304
  sortModifiers: createSortModifiers(config),
305
- postfixLookupClassGroupIds: createPostfixLookupClassGroupIds(config),
306
305
  ...createClassGroupUtils(config)
307
306
  });
308
- const createPostfixLookupClassGroupIds = (config) => {
309
- const lookup = /* @__PURE__ */ Object.create(null);
310
- const classGroupIds = config.postfixLookupClassGroups;
311
- if (classGroupIds) {
312
- for (let i = 0; i < classGroupIds.length; i++) {
313
- lookup[classGroupIds[i]] = true;
314
- }
315
- }
316
- return lookup;
317
- };
318
307
  const SPLIT_CLASSES_REGEX = /\s+/;
319
308
  const mergeClassList = (classList, configUtils) => {
320
309
  const {
321
310
  parseClassName,
322
311
  getClassGroupId,
323
312
  getConflictingClassGroupIds,
324
- sortModifiers,
325
- postfixLookupClassGroupIds
313
+ sortModifiers
326
314
  } = configUtils;
327
315
  const classGroupsInConflict = [];
328
316
  const classNames = classList.trim().split(SPLIT_CLASSES_REGEX);
@@ -341,18 +329,7 @@ const mergeClassList = (classList, configUtils) => {
341
329
  continue;
342
330
  }
343
331
  let hasPostfixModifier = !!maybePostfixModifierPosition;
344
- let classGroupId;
345
- if (hasPostfixModifier) {
346
- const baseClassNameWithoutPostfix = baseClassName.substring(0, maybePostfixModifierPosition);
347
- classGroupId = getClassGroupId(baseClassNameWithoutPostfix);
348
- const classGroupIdWithPostfix = classGroupId && postfixLookupClassGroupIds[classGroupId] ? getClassGroupId(baseClassName) : void 0;
349
- if (classGroupIdWithPostfix && classGroupIdWithPostfix !== classGroupId) {
350
- classGroupId = classGroupIdWithPostfix;
351
- hasPostfixModifier = false;
352
- }
353
- } else {
354
- classGroupId = getClassGroupId(baseClassName);
355
- }
332
+ let classGroupId = getClassGroupId(hasPostfixModifier ? baseClassName.substring(0, maybePostfixModifierPosition) : baseClassName);
356
333
  if (!classGroupId) {
357
334
  if (!hasPostfixModifier) {
358
335
  result = originalClassName + (result.length > 0 ? " " + result : result);
@@ -445,7 +422,7 @@ const fromTheme = (key) => {
445
422
  };
446
423
  const arbitraryValueRegex = /^\[(?:(\w[\w-]*):)?(.+)\]$/i;
447
424
  const arbitraryVariableRegex = /^\((?:(\w[\w-]*):)?(.+)\)$/i;
448
- const fractionRegex = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/;
425
+ const fractionRegex = /^\d+\/\d+$/;
449
426
  const tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/;
450
427
  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$/;
451
428
  const colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/;
@@ -467,13 +444,10 @@ const isNever = () => false;
467
444
  const isShadow = (value) => shadowRegex.test(value);
468
445
  const isImage = (value) => imageRegex.test(value);
469
446
  const isAnyNonArbitrary = (value) => !isArbitraryValue(value) && !isArbitraryVariable(value);
470
- const isNamedContainerQuery = (value) => value.startsWith("@container") && (value[10] === "/" && value[11] !== void 0 || value[11] === "s" && value[16] !== void 0 && value.startsWith("-size/", 10) || value[11] === "n" && value[18] !== void 0 && value.startsWith("-normal/", 10));
471
447
  const isArbitrarySize = (value) => getIsArbitraryValue(value, isLabelSize, isNever);
472
448
  const isArbitraryValue = (value) => arbitraryValueRegex.test(value);
473
449
  const isArbitraryLength = (value) => getIsArbitraryValue(value, isLabelLength, isLengthOnly);
474
450
  const isArbitraryNumber = (value) => getIsArbitraryValue(value, isLabelNumber, isNumber);
475
- const isArbitraryWeight = (value) => getIsArbitraryValue(value, isLabelWeight, isAny);
476
- const isArbitraryFamilyName = (value) => getIsArbitraryValue(value, isLabelFamilyName, isNever);
477
451
  const isArbitraryPosition = (value) => getIsArbitraryValue(value, isLabelPosition, isNever);
478
452
  const isArbitraryImage = (value) => getIsArbitraryValue(value, isLabelImage, isImage);
479
453
  const isArbitraryShadow = (value) => getIsArbitraryValue(value, isLabelShadow, isShadow);
@@ -484,7 +458,6 @@ const isArbitraryVariablePosition = (value) => getIsArbitraryVariable(value, isL
484
458
  const isArbitraryVariableSize = (value) => getIsArbitraryVariable(value, isLabelSize);
485
459
  const isArbitraryVariableImage = (value) => getIsArbitraryVariable(value, isLabelImage);
486
460
  const isArbitraryVariableShadow = (value) => getIsArbitraryVariable(value, isLabelShadow, true);
487
- const isArbitraryVariableWeight = (value) => getIsArbitraryVariable(value, isLabelWeight, true);
488
461
  const getIsArbitraryValue = (value, testLabel, testValue) => {
489
462
  const result = arbitraryValueRegex.exec(value);
490
463
  if (result) {
@@ -511,7 +484,6 @@ const isLabelSize = (label) => label === "length" || label === "size" || label =
511
484
  const isLabelLength = (label) => label === "length";
512
485
  const isLabelNumber = (label) => label === "number";
513
486
  const isLabelFamilyName = (label) => label === "family-name";
514
- const isLabelWeight = (label) => label === "number" || label === "weight";
515
487
  const isLabelShadow = (label) => label === "shadow";
516
488
  const getDefaultConfig = () => {
517
489
  const themeColor = fromTheme("color");
@@ -568,8 +540,6 @@ const getDefaultConfig = () => {
568
540
  const scaleAlignSecondaryAxis = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"];
569
541
  const scaleMargin = () => ["auto", ...scaleUnambiguousSpacing()];
570
542
  const scaleSizing = () => [isFraction, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...scaleUnambiguousSpacing()];
571
- const scaleSizingInline = () => [isFraction, "screen", "full", "dvw", "lvw", "svw", "min", "max", "fit", ...scaleUnambiguousSpacing()];
572
- const scaleSizingBlock = () => [isFraction, "screen", "full", "lh", "dvh", "lvh", "svh", "min", "max", "fit", ...scaleUnambiguousSpacing()];
573
543
  const scaleColor = () => [themeColor, isArbitraryVariable, isArbitraryValue];
574
544
  const scaleBgPosition = () => [...scalePosition(), isArbitraryVariablePosition, isArbitraryPosition, {
575
545
  position: [isArbitraryVariable, isArbitraryValue]
@@ -646,18 +616,6 @@ const getDefaultConfig = () => {
646
616
  * @deprecated since Tailwind CSS v4.0.0
647
617
  */
648
618
  container: ["container"],
649
- /**
650
- * Container Type
651
- * @see https://tailwindcss.com/docs/responsive-design#container-queries
652
- */
653
- "container-type": [{
654
- "@container": ["", "normal", "size", isArbitraryVariable, isArbitraryValue]
655
- }],
656
- /**
657
- * Container Name
658
- * @see https://tailwindcss.com/docs/responsive-design#named-containers
659
- */
660
- "container-named": [isNamedContainerQuery],
661
619
  /**
662
620
  * Columns
663
621
  * @see https://tailwindcss.com/docs/columns
@@ -791,66 +749,40 @@ const getDefaultConfig = () => {
791
749
  */
792
750
  position: ["static", "fixed", "absolute", "relative", "sticky"],
793
751
  /**
794
- * Inset
752
+ * Top / Right / Bottom / Left
795
753
  * @see https://tailwindcss.com/docs/top-right-bottom-left
796
754
  */
797
755
  inset: [{
798
756
  inset: scaleInset()
799
757
  }],
800
758
  /**
801
- * Inset Inline
759
+ * Right / Left
802
760
  * @see https://tailwindcss.com/docs/top-right-bottom-left
803
761
  */
804
762
  "inset-x": [{
805
763
  "inset-x": scaleInset()
806
764
  }],
807
765
  /**
808
- * Inset Block
766
+ * Top / Bottom
809
767
  * @see https://tailwindcss.com/docs/top-right-bottom-left
810
768
  */
811
769
  "inset-y": [{
812
770
  "inset-y": scaleInset()
813
771
  }],
814
772
  /**
815
- * Inset Inline Start
773
+ * Start
816
774
  * @see https://tailwindcss.com/docs/top-right-bottom-left
817
- * @todo class group will be renamed to `inset-s` in next major release
818
775
  */
819
776
  start: [{
820
- "inset-s": scaleInset(),
821
- /**
822
- * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.
823
- * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
824
- */
825
777
  start: scaleInset()
826
778
  }],
827
779
  /**
828
- * Inset Inline End
780
+ * End
829
781
  * @see https://tailwindcss.com/docs/top-right-bottom-left
830
- * @todo class group will be renamed to `inset-e` in next major release
831
782
  */
832
783
  end: [{
833
- "inset-e": scaleInset(),
834
- /**
835
- * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.
836
- * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
837
- */
838
784
  end: scaleInset()
839
785
  }],
840
- /**
841
- * Inset Block Start
842
- * @see https://tailwindcss.com/docs/top-right-bottom-left
843
- */
844
- "inset-bs": [{
845
- "inset-bs": scaleInset()
846
- }],
847
- /**
848
- * Inset Block End
849
- * @see https://tailwindcss.com/docs/top-right-bottom-left
850
- */
851
- "inset-be": [{
852
- "inset-be": scaleInset()
853
- }],
854
786
  /**
855
787
  * Top
856
788
  * @see https://tailwindcss.com/docs/top-right-bottom-left
@@ -1117,47 +1049,33 @@ const getDefaultConfig = () => {
1117
1049
  p: scaleUnambiguousSpacing()
1118
1050
  }],
1119
1051
  /**
1120
- * Padding Inline
1052
+ * Padding X
1121
1053
  * @see https://tailwindcss.com/docs/padding
1122
1054
  */
1123
1055
  px: [{
1124
1056
  px: scaleUnambiguousSpacing()
1125
1057
  }],
1126
1058
  /**
1127
- * Padding Block
1059
+ * Padding Y
1128
1060
  * @see https://tailwindcss.com/docs/padding
1129
1061
  */
1130
1062
  py: [{
1131
1063
  py: scaleUnambiguousSpacing()
1132
1064
  }],
1133
1065
  /**
1134
- * Padding Inline Start
1066
+ * Padding Start
1135
1067
  * @see https://tailwindcss.com/docs/padding
1136
1068
  */
1137
1069
  ps: [{
1138
1070
  ps: scaleUnambiguousSpacing()
1139
1071
  }],
1140
1072
  /**
1141
- * Padding Inline End
1073
+ * Padding End
1142
1074
  * @see https://tailwindcss.com/docs/padding
1143
1075
  */
1144
1076
  pe: [{
1145
1077
  pe: scaleUnambiguousSpacing()
1146
1078
  }],
1147
- /**
1148
- * Padding Block Start
1149
- * @see https://tailwindcss.com/docs/padding
1150
- */
1151
- pbs: [{
1152
- pbs: scaleUnambiguousSpacing()
1153
- }],
1154
- /**
1155
- * Padding Block End
1156
- * @see https://tailwindcss.com/docs/padding
1157
- */
1158
- pbe: [{
1159
- pbe: scaleUnambiguousSpacing()
1160
- }],
1161
1079
  /**
1162
1080
  * Padding Top
1163
1081
  * @see https://tailwindcss.com/docs/padding
@@ -1194,47 +1112,33 @@ const getDefaultConfig = () => {
1194
1112
  m: scaleMargin()
1195
1113
  }],
1196
1114
  /**
1197
- * Margin Inline
1115
+ * Margin X
1198
1116
  * @see https://tailwindcss.com/docs/margin
1199
1117
  */
1200
1118
  mx: [{
1201
1119
  mx: scaleMargin()
1202
1120
  }],
1203
1121
  /**
1204
- * Margin Block
1122
+ * Margin Y
1205
1123
  * @see https://tailwindcss.com/docs/margin
1206
1124
  */
1207
1125
  my: [{
1208
1126
  my: scaleMargin()
1209
1127
  }],
1210
1128
  /**
1211
- * Margin Inline Start
1129
+ * Margin Start
1212
1130
  * @see https://tailwindcss.com/docs/margin
1213
1131
  */
1214
1132
  ms: [{
1215
1133
  ms: scaleMargin()
1216
1134
  }],
1217
1135
  /**
1218
- * Margin Inline End
1136
+ * Margin End
1219
1137
  * @see https://tailwindcss.com/docs/margin
1220
1138
  */
1221
1139
  me: [{
1222
1140
  me: scaleMargin()
1223
1141
  }],
1224
- /**
1225
- * Margin Block Start
1226
- * @see https://tailwindcss.com/docs/margin
1227
- */
1228
- mbs: [{
1229
- mbs: scaleMargin()
1230
- }],
1231
- /**
1232
- * Margin Block End
1233
- * @see https://tailwindcss.com/docs/margin
1234
- */
1235
- mbe: [{
1236
- mbe: scaleMargin()
1237
- }],
1238
1142
  /**
1239
1143
  * Margin Top
1240
1144
  * @see https://tailwindcss.com/docs/margin
@@ -1297,48 +1201,6 @@ const getDefaultConfig = () => {
1297
1201
  size: [{
1298
1202
  size: scaleSizing()
1299
1203
  }],
1300
- /**
1301
- * Inline Size
1302
- * @see https://tailwindcss.com/docs/width
1303
- */
1304
- "inline-size": [{
1305
- inline: ["auto", ...scaleSizingInline()]
1306
- }],
1307
- /**
1308
- * Min-Inline Size
1309
- * @see https://tailwindcss.com/docs/min-width
1310
- */
1311
- "min-inline-size": [{
1312
- "min-inline": ["auto", ...scaleSizingInline()]
1313
- }],
1314
- /**
1315
- * Max-Inline Size
1316
- * @see https://tailwindcss.com/docs/max-width
1317
- */
1318
- "max-inline-size": [{
1319
- "max-inline": ["none", ...scaleSizingInline()]
1320
- }],
1321
- /**
1322
- * Block Size
1323
- * @see https://tailwindcss.com/docs/height
1324
- */
1325
- "block-size": [{
1326
- block: ["auto", ...scaleSizingBlock()]
1327
- }],
1328
- /**
1329
- * Min-Block Size
1330
- * @see https://tailwindcss.com/docs/min-height
1331
- */
1332
- "min-block-size": [{
1333
- "min-block": ["auto", ...scaleSizingBlock()]
1334
- }],
1335
- /**
1336
- * Max-Block Size
1337
- * @see https://tailwindcss.com/docs/max-height
1338
- */
1339
- "max-block-size": [{
1340
- "max-block": ["none", ...scaleSizingBlock()]
1341
- }],
1342
1204
  /**
1343
1205
  * Width
1344
1206
  * @see https://tailwindcss.com/docs/width
@@ -1423,7 +1285,7 @@ const getDefaultConfig = () => {
1423
1285
  * @see https://tailwindcss.com/docs/font-weight
1424
1286
  */
1425
1287
  "font-weight": [{
1426
- font: [themeFontWeight, isArbitraryVariableWeight, isArbitraryWeight]
1288
+ font: [themeFontWeight, isArbitraryVariable, isArbitraryNumber]
1427
1289
  }],
1428
1290
  /**
1429
1291
  * Font Stretch
@@ -1437,14 +1299,7 @@ const getDefaultConfig = () => {
1437
1299
  * @see https://tailwindcss.com/docs/font-family
1438
1300
  */
1439
1301
  "font-family": [{
1440
- font: [isArbitraryVariableFamilyName, isArbitraryFamilyName, themeFont]
1441
- }],
1442
- /**
1443
- * Font Feature Settings
1444
- * @see https://tailwindcss.com/docs/font-feature-settings
1445
- */
1446
- "font-features": [{
1447
- "font-features": [isArbitraryValue]
1302
+ font: [isArbitraryVariableFamilyName, isArbitraryValue, themeFont]
1448
1303
  }],
1449
1304
  /**
1450
1305
  * Font Variant Numeric
@@ -1601,13 +1456,6 @@ const getDefaultConfig = () => {
1601
1456
  indent: [{
1602
1457
  indent: scaleUnambiguousSpacing()
1603
1458
  }],
1604
- /**
1605
- * Tab Size
1606
- * @see https://tailwindcss.com/docs/tab-size
1607
- */
1608
- "tab-size": [{
1609
- tab: [isInteger, isArbitraryVariable, isArbitraryValue]
1610
- }],
1611
1459
  /**
1612
1460
  * Vertical Alignment
1613
1461
  * @see https://tailwindcss.com/docs/vertical-align
@@ -1873,47 +1721,33 @@ const getDefaultConfig = () => {
1873
1721
  border: scaleBorderWidth()
1874
1722
  }],
1875
1723
  /**
1876
- * Border Width Inline
1724
+ * Border Width X
1877
1725
  * @see https://tailwindcss.com/docs/border-width
1878
1726
  */
1879
1727
  "border-w-x": [{
1880
1728
  "border-x": scaleBorderWidth()
1881
1729
  }],
1882
1730
  /**
1883
- * Border Width Block
1731
+ * Border Width Y
1884
1732
  * @see https://tailwindcss.com/docs/border-width
1885
1733
  */
1886
1734
  "border-w-y": [{
1887
1735
  "border-y": scaleBorderWidth()
1888
1736
  }],
1889
1737
  /**
1890
- * Border Width Inline Start
1738
+ * Border Width Start
1891
1739
  * @see https://tailwindcss.com/docs/border-width
1892
1740
  */
1893
1741
  "border-w-s": [{
1894
1742
  "border-s": scaleBorderWidth()
1895
1743
  }],
1896
1744
  /**
1897
- * Border Width Inline End
1745
+ * Border Width End
1898
1746
  * @see https://tailwindcss.com/docs/border-width
1899
1747
  */
1900
1748
  "border-w-e": [{
1901
1749
  "border-e": scaleBorderWidth()
1902
1750
  }],
1903
- /**
1904
- * Border Width Block Start
1905
- * @see https://tailwindcss.com/docs/border-width
1906
- */
1907
- "border-w-bs": [{
1908
- "border-bs": scaleBorderWidth()
1909
- }],
1910
- /**
1911
- * Border Width Block End
1912
- * @see https://tailwindcss.com/docs/border-width
1913
- */
1914
- "border-w-be": [{
1915
- "border-be": scaleBorderWidth()
1916
- }],
1917
1751
  /**
1918
1752
  * Border Width Top
1919
1753
  * @see https://tailwindcss.com/docs/border-width
@@ -1988,47 +1822,33 @@ const getDefaultConfig = () => {
1988
1822
  border: scaleColor()
1989
1823
  }],
1990
1824
  /**
1991
- * Border Color Inline
1825
+ * Border Color X
1992
1826
  * @see https://tailwindcss.com/docs/border-color
1993
1827
  */
1994
1828
  "border-color-x": [{
1995
1829
  "border-x": scaleColor()
1996
1830
  }],
1997
1831
  /**
1998
- * Border Color Block
1832
+ * Border Color Y
1999
1833
  * @see https://tailwindcss.com/docs/border-color
2000
1834
  */
2001
1835
  "border-color-y": [{
2002
1836
  "border-y": scaleColor()
2003
1837
  }],
2004
1838
  /**
2005
- * Border Color Inline Start
1839
+ * Border Color S
2006
1840
  * @see https://tailwindcss.com/docs/border-color
2007
1841
  */
2008
1842
  "border-color-s": [{
2009
1843
  "border-s": scaleColor()
2010
1844
  }],
2011
1845
  /**
2012
- * Border Color Inline End
1846
+ * Border Color E
2013
1847
  * @see https://tailwindcss.com/docs/border-color
2014
1848
  */
2015
1849
  "border-color-e": [{
2016
1850
  "border-e": scaleColor()
2017
1851
  }],
2018
- /**
2019
- * Border Color Block Start
2020
- * @see https://tailwindcss.com/docs/border-color
2021
- */
2022
- "border-color-bs": [{
2023
- "border-bs": scaleColor()
2024
- }],
2025
- /**
2026
- * Border Color Block End
2027
- * @see https://tailwindcss.com/docs/border-color
2028
- */
2029
- "border-color-be": [{
2030
- "border-be": scaleColor()
2031
- }],
2032
1852
  /**
2033
1853
  * Border Color Top
2034
1854
  * @see https://tailwindcss.com/docs/border-color
@@ -2833,13 +2653,6 @@ const getDefaultConfig = () => {
2833
2653
  * @see https://tailwindcss.com/docs/translate
2834
2654
  */
2835
2655
  "translate-none": ["translate-none"],
2836
- /**
2837
- * Zoom
2838
- * @see https://tailwindcss.com/docs/zoom
2839
- */
2840
- zoom: [{
2841
- zoom: [isInteger, isArbitraryVariable, isArbitraryValue]
2842
- }],
2843
2656
  // ---------------------
2844
2657
  // --- Interactivity ---
2845
2658
  // ---------------------
@@ -2906,34 +2719,6 @@ const getDefaultConfig = () => {
2906
2719
  "scroll-behavior": [{
2907
2720
  scroll: ["auto", "smooth"]
2908
2721
  }],
2909
- /**
2910
- * Scrollbar Thumb Color
2911
- * @see https://tailwindcss.com/docs/scrollbar-color
2912
- */
2913
- "scrollbar-thumb-color": [{
2914
- "scrollbar-thumb": scaleColor()
2915
- }],
2916
- /**
2917
- * Scrollbar Track Color
2918
- * @see https://tailwindcss.com/docs/scrollbar-color
2919
- */
2920
- "scrollbar-track-color": [{
2921
- "scrollbar-track": scaleColor()
2922
- }],
2923
- /**
2924
- * Scrollbar Gutter
2925
- * @see https://tailwindcss.com/docs/scrollbar-gutter
2926
- */
2927
- "scrollbar-gutter": [{
2928
- "scrollbar-gutter": ["auto", "stable", "both"]
2929
- }],
2930
- /**
2931
- * Scrollbar Width
2932
- * @see https://tailwindcss.com/docs/scrollbar-width
2933
- */
2934
- "scrollbar-w": [{
2935
- scrollbar: ["auto", "thin", "none"]
2936
- }],
2937
2722
  /**
2938
2723
  * Scroll Margin
2939
2724
  * @see https://tailwindcss.com/docs/scroll-margin
@@ -2942,47 +2727,33 @@ const getDefaultConfig = () => {
2942
2727
  "scroll-m": scaleUnambiguousSpacing()
2943
2728
  }],
2944
2729
  /**
2945
- * Scroll Margin Inline
2730
+ * Scroll Margin X
2946
2731
  * @see https://tailwindcss.com/docs/scroll-margin
2947
2732
  */
2948
2733
  "scroll-mx": [{
2949
2734
  "scroll-mx": scaleUnambiguousSpacing()
2950
2735
  }],
2951
2736
  /**
2952
- * Scroll Margin Block
2737
+ * Scroll Margin Y
2953
2738
  * @see https://tailwindcss.com/docs/scroll-margin
2954
2739
  */
2955
2740
  "scroll-my": [{
2956
2741
  "scroll-my": scaleUnambiguousSpacing()
2957
2742
  }],
2958
2743
  /**
2959
- * Scroll Margin Inline Start
2744
+ * Scroll Margin Start
2960
2745
  * @see https://tailwindcss.com/docs/scroll-margin
2961
2746
  */
2962
2747
  "scroll-ms": [{
2963
2748
  "scroll-ms": scaleUnambiguousSpacing()
2964
2749
  }],
2965
2750
  /**
2966
- * Scroll Margin Inline End
2751
+ * Scroll Margin End
2967
2752
  * @see https://tailwindcss.com/docs/scroll-margin
2968
2753
  */
2969
2754
  "scroll-me": [{
2970
2755
  "scroll-me": scaleUnambiguousSpacing()
2971
2756
  }],
2972
- /**
2973
- * Scroll Margin Block Start
2974
- * @see https://tailwindcss.com/docs/scroll-margin
2975
- */
2976
- "scroll-mbs": [{
2977
- "scroll-mbs": scaleUnambiguousSpacing()
2978
- }],
2979
- /**
2980
- * Scroll Margin Block End
2981
- * @see https://tailwindcss.com/docs/scroll-margin
2982
- */
2983
- "scroll-mbe": [{
2984
- "scroll-mbe": scaleUnambiguousSpacing()
2985
- }],
2986
2757
  /**
2987
2758
  * Scroll Margin Top
2988
2759
  * @see https://tailwindcss.com/docs/scroll-margin
@@ -3019,47 +2790,33 @@ const getDefaultConfig = () => {
3019
2790
  "scroll-p": scaleUnambiguousSpacing()
3020
2791
  }],
3021
2792
  /**
3022
- * Scroll Padding Inline
2793
+ * Scroll Padding X
3023
2794
  * @see https://tailwindcss.com/docs/scroll-padding
3024
2795
  */
3025
2796
  "scroll-px": [{
3026
2797
  "scroll-px": scaleUnambiguousSpacing()
3027
2798
  }],
3028
2799
  /**
3029
- * Scroll Padding Block
2800
+ * Scroll Padding Y
3030
2801
  * @see https://tailwindcss.com/docs/scroll-padding
3031
2802
  */
3032
2803
  "scroll-py": [{
3033
2804
  "scroll-py": scaleUnambiguousSpacing()
3034
2805
  }],
3035
2806
  /**
3036
- * Scroll Padding Inline Start
2807
+ * Scroll Padding Start
3037
2808
  * @see https://tailwindcss.com/docs/scroll-padding
3038
2809
  */
3039
2810
  "scroll-ps": [{
3040
2811
  "scroll-ps": scaleUnambiguousSpacing()
3041
2812
  }],
3042
2813
  /**
3043
- * Scroll Padding Inline End
2814
+ * Scroll Padding End
3044
2815
  * @see https://tailwindcss.com/docs/scroll-padding
3045
2816
  */
3046
2817
  "scroll-pe": [{
3047
2818
  "scroll-pe": scaleUnambiguousSpacing()
3048
2819
  }],
3049
- /**
3050
- * Scroll Padding Block Start
3051
- * @see https://tailwindcss.com/docs/scroll-padding
3052
- */
3053
- "scroll-pbs": [{
3054
- "scroll-pbs": scaleUnambiguousSpacing()
3055
- }],
3056
- /**
3057
- * Scroll Padding Block End
3058
- * @see https://tailwindcss.com/docs/scroll-padding
3059
- */
3060
- "scroll-pbe": [{
3061
- "scroll-pbe": scaleUnambiguousSpacing()
3062
- }],
3063
2820
  /**
3064
2821
  * Scroll Padding Top
3065
2822
  * @see https://tailwindcss.com/docs/scroll-padding
@@ -3192,18 +2949,17 @@ const getDefaultConfig = () => {
3192
2949
  }]
3193
2950
  },
3194
2951
  conflictingClassGroups: {
3195
- "container-named": ["container-type"],
3196
2952
  overflow: ["overflow-x", "overflow-y"],
3197
2953
  overscroll: ["overscroll-x", "overscroll-y"],
3198
- inset: ["inset-x", "inset-y", "inset-bs", "inset-be", "start", "end", "top", "right", "bottom", "left"],
2954
+ inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
3199
2955
  "inset-x": ["right", "left"],
3200
2956
  "inset-y": ["top", "bottom"],
3201
2957
  flex: ["basis", "grow", "shrink"],
3202
2958
  gap: ["gap-x", "gap-y"],
3203
- p: ["px", "py", "ps", "pe", "pbs", "pbe", "pt", "pr", "pb", "pl"],
2959
+ p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
3204
2960
  px: ["pr", "pl"],
3205
2961
  py: ["pt", "pb"],
3206
- m: ["mx", "my", "ms", "me", "mbs", "mbe", "mt", "mr", "mb", "ml"],
2962
+ m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
3207
2963
  mx: ["mr", "ml"],
3208
2964
  my: ["mt", "mb"],
3209
2965
  size: ["w", "h"],
@@ -3223,18 +2979,18 @@ const getDefaultConfig = () => {
3223
2979
  "rounded-b": ["rounded-br", "rounded-bl"],
3224
2980
  "rounded-l": ["rounded-tl", "rounded-bl"],
3225
2981
  "border-spacing": ["border-spacing-x", "border-spacing-y"],
3226
- "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"],
2982
+ "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"],
3227
2983
  "border-w-x": ["border-w-r", "border-w-l"],
3228
2984
  "border-w-y": ["border-w-t", "border-w-b"],
3229
- "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"],
2985
+ "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"],
3230
2986
  "border-color-x": ["border-color-r", "border-color-l"],
3231
2987
  "border-color-y": ["border-color-t", "border-color-b"],
3232
2988
  translate: ["translate-x", "translate-y", "translate-none"],
3233
2989
  "translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
3234
- "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mbs", "scroll-mbe", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2990
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
3235
2991
  "scroll-mx": ["scroll-mr", "scroll-ml"],
3236
2992
  "scroll-my": ["scroll-mt", "scroll-mb"],
3237
- "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pbs", "scroll-pbe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2993
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
3238
2994
  "scroll-px": ["scroll-pr", "scroll-pl"],
3239
2995
  "scroll-py": ["scroll-pt", "scroll-pb"],
3240
2996
  touch: ["touch-x", "touch-y", "touch-pz"],
@@ -3245,7 +3001,6 @@ const getDefaultConfig = () => {
3245
3001
  conflictingClassGroupModifiers: {
3246
3002
  "font-size": ["leading"]
3247
3003
  },
3248
- postfixLookupClassGroups: ["container-type"],
3249
3004
  orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
3250
3005
  };
3251
3006
  };