tailwindcss 3.1.4 → 3.1.7

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 (90) hide show
  1. package/CHANGELOG.md +37 -2
  2. package/defaultTheme.d.ts +2 -1
  3. package/lib/cli-peer-dependencies.js +12 -4
  4. package/lib/cli.js +78 -75
  5. package/lib/constants.js +19 -12
  6. package/lib/corePluginList.js +5 -3
  7. package/lib/corePlugins.js +197 -187
  8. package/lib/featureFlags.js +14 -7
  9. package/lib/index.js +9 -6
  10. package/lib/lib/cacheInvalidation.js +18 -15
  11. package/lib/lib/collapseAdjacentRules.js +14 -11
  12. package/lib/lib/collapseDuplicateDeclarations.js +11 -8
  13. package/lib/lib/defaultExtractor.js +41 -33
  14. package/lib/lib/detectNesting.js +4 -1
  15. package/lib/lib/evaluateTailwindFunctions.js +75 -44
  16. package/lib/lib/expandApplyAtRules.js +45 -42
  17. package/lib/lib/expandTailwindAtRules.js +153 -150
  18. package/lib/lib/generateRules.js +84 -70
  19. package/lib/lib/getModuleDependencies.js +21 -18
  20. package/lib/lib/normalizeTailwindDirectives.js +10 -7
  21. package/lib/lib/partitionApplyAtRules.js +14 -11
  22. package/lib/lib/regex.js +15 -7
  23. package/lib/lib/resolveDefaultsAtRules.js +92 -85
  24. package/lib/lib/setupContextUtils.js +115 -97
  25. package/lib/lib/setupTrackingContext.js +82 -75
  26. package/lib/lib/sharedState.js +15 -8
  27. package/lib/lib/substituteScreenAtRules.js +8 -5
  28. package/lib/postcss-plugins/nesting/index.js +7 -5
  29. package/lib/postcss-plugins/nesting/plugin.js +7 -4
  30. package/lib/processTailwindFeatures.js +34 -31
  31. package/lib/public/colors.js +6 -4
  32. package/lib/public/create-plugin.js +6 -4
  33. package/lib/public/default-config.js +7 -5
  34. package/lib/public/default-theme.js +7 -5
  35. package/lib/public/resolve-config.js +13 -10
  36. package/lib/util/bigSign.js +4 -1
  37. package/lib/util/buildMediaQuery.js +5 -2
  38. package/lib/util/cloneDeep.js +4 -1
  39. package/lib/util/cloneNodes.js +9 -2
  40. package/lib/util/color.js +11 -3
  41. package/lib/util/configurePlugins.js +4 -1
  42. package/lib/util/createPlugin.js +5 -3
  43. package/lib/util/createUtilityPlugin.js +13 -10
  44. package/lib/util/dataTypes.js +27 -19
  45. package/lib/util/defaults.js +4 -1
  46. package/lib/util/escapeClassName.js +12 -9
  47. package/lib/util/escapeCommas.js +4 -1
  48. package/lib/util/flattenColorPalette.js +5 -3
  49. package/lib/util/formatVariantSelector.js +23 -15
  50. package/lib/util/getAllConfigs.js +12 -9
  51. package/lib/util/hashConfig.js +10 -7
  52. package/lib/util/isKeyframeRule.js +4 -1
  53. package/lib/util/isPlainObject.js +4 -1
  54. package/lib/util/isValidArbitraryValue.js +33 -24
  55. package/lib/util/log.js +12 -5
  56. package/lib/util/nameClass.js +16 -8
  57. package/lib/util/negateValue.js +4 -1
  58. package/lib/util/normalizeConfig.js +26 -23
  59. package/lib/util/normalizeScreens.js +17 -2
  60. package/lib/util/parseAnimationValue.js +42 -39
  61. package/lib/util/parseBoxShadowValue.js +12 -4
  62. package/lib/util/parseDependency.js +35 -32
  63. package/lib/util/parseObjectStyles.js +14 -11
  64. package/lib/util/pluginUtils.js +28 -20
  65. package/lib/util/prefixSelector.js +6 -3
  66. package/lib/util/removeAlphaVariables.js +13 -2
  67. package/lib/util/resolveConfig.js +55 -52
  68. package/lib/util/resolveConfigPath.js +20 -17
  69. package/lib/util/responsive.js +12 -9
  70. package/lib/util/splitAtTopLevelOnly.js +16 -13
  71. package/lib/util/tap.js +4 -1
  72. package/lib/util/toColorValue.js +4 -1
  73. package/lib/util/toPath.js +18 -2
  74. package/lib/util/transformThemeValue.js +10 -7
  75. package/lib/util/validateConfig.js +5 -2
  76. package/lib/util/withAlphaVariable.js +30 -22
  77. package/package.json +12 -12
  78. package/peers/index.js +24 -10
  79. package/resolveConfig.d.ts +3 -0
  80. package/scripts/generate-types.js +53 -0
  81. package/scripts/type-utils.js +27 -0
  82. package/src/corePlugins.js +2 -1
  83. package/src/lib/defaultExtractor.js +7 -1
  84. package/src/lib/evaluateTailwindFunctions.js +41 -15
  85. package/src/lib/generateRules.js +10 -1
  86. package/src/lib/setupContextUtils.js +15 -2
  87. package/src/util/cloneNodes.js +5 -1
  88. package/src/util/formatVariantSelector.js +3 -1
  89. package/types/config.d.ts +7 -5
  90. package/types/generated/default-theme.d.ts +331 -0
@@ -2,40 +2,49 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.corePlugins = exports.variantPlugins = void 0;
6
- var _fs = _interopRequireDefault(require("fs"));
7
- var path = _interopRequireWildcard(require("path"));
8
- var _postcss = _interopRequireDefault(require("postcss"));
9
- var _createUtilityPlugin = _interopRequireDefault(require("./util/createUtilityPlugin"));
10
- var _buildMediaQuery = _interopRequireDefault(require("./util/buildMediaQuery"));
11
- var _escapeClassName = _interopRequireDefault(require("./util/escapeClassName"));
12
- var _parseAnimationValue = _interopRequireDefault(require("./util/parseAnimationValue"));
13
- var _flattenColorPalette = _interopRequireDefault(require("./util/flattenColorPalette"));
14
- var _withAlphaVariable = _interopRequireWildcard(require("./util/withAlphaVariable"));
15
- var _toColorValue = _interopRequireDefault(require("./util/toColorValue"));
16
- var _isPlainObject = _interopRequireDefault(require("./util/isPlainObject"));
17
- var _transformThemeValue = _interopRequireDefault(require("./util/transformThemeValue"));
18
- var _packageJson = require("../package.json");
19
- var _log = _interopRequireDefault(require("./util/log"));
20
- var _normalizeScreens = require("./util/normalizeScreens");
21
- var _parseBoxShadowValue = require("./util/parseBoxShadowValue");
22
- var _removeAlphaVariables = require("./util/removeAlphaVariables");
23
- var _featureFlags = require("./featureFlags");
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ variantPlugins: ()=>variantPlugins,
13
+ corePlugins: ()=>corePlugins
14
+ });
15
+ const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
16
+ const _path = /*#__PURE__*/ _interopRequireWildcard(require("path"));
17
+ const _postcss = /*#__PURE__*/ _interopRequireDefault(require("postcss"));
18
+ const _createUtilityPlugin = /*#__PURE__*/ _interopRequireDefault(require("./util/createUtilityPlugin"));
19
+ const _buildMediaQuery = /*#__PURE__*/ _interopRequireDefault(require("./util/buildMediaQuery"));
20
+ const _escapeClassName = /*#__PURE__*/ _interopRequireDefault(require("./util/escapeClassName"));
21
+ const _parseAnimationValue = /*#__PURE__*/ _interopRequireDefault(require("./util/parseAnimationValue"));
22
+ const _flattenColorPalette = /*#__PURE__*/ _interopRequireDefault(require("./util/flattenColorPalette"));
23
+ const _withAlphaVariable = /*#__PURE__*/ _interopRequireWildcard(require("./util/withAlphaVariable"));
24
+ const _toColorValue = /*#__PURE__*/ _interopRequireDefault(require("./util/toColorValue"));
25
+ const _isPlainObject = /*#__PURE__*/ _interopRequireDefault(require("./util/isPlainObject"));
26
+ const _transformThemeValue = /*#__PURE__*/ _interopRequireDefault(require("./util/transformThemeValue"));
27
+ const _packageJson = require("../package.json");
28
+ const _log = /*#__PURE__*/ _interopRequireDefault(require("./util/log"));
29
+ const _normalizeScreens = require("./util/normalizeScreens");
30
+ const _parseBoxShadowValue = require("./util/parseBoxShadowValue");
31
+ const _removeAlphaVariables = require("./util/removeAlphaVariables");
32
+ const _featureFlags = require("./featureFlags");
24
33
  function _interopRequireDefault(obj) {
25
34
  return obj && obj.__esModule ? obj : {
26
35
  default: obj
27
36
  };
28
37
  }
29
- function _getRequireWildcardCache() {
38
+ function _getRequireWildcardCache(nodeInterop) {
30
39
  if (typeof WeakMap !== "function") return null;
31
- var cache = new WeakMap();
32
- _getRequireWildcardCache = function() {
33
- return cache;
34
- };
35
- return cache;
40
+ var cacheBabelInterop = new WeakMap();
41
+ var cacheNodeInterop = new WeakMap();
42
+ return (_getRequireWildcardCache = function(nodeInterop) {
43
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
44
+ })(nodeInterop);
36
45
  }
37
- function _interopRequireWildcard(obj) {
38
- if (obj && obj.__esModule) {
46
+ function _interopRequireWildcard(obj, nodeInterop) {
47
+ if (!nodeInterop && obj && obj.__esModule) {
39
48
  return obj;
40
49
  }
41
50
  if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
@@ -43,14 +52,14 @@ function _interopRequireWildcard(obj) {
43
52
  default: obj
44
53
  };
45
54
  }
46
- var cache = _getRequireWildcardCache();
55
+ var cache = _getRequireWildcardCache(nodeInterop);
47
56
  if (cache && cache.has(obj)) {
48
57
  return cache.get(obj);
49
58
  }
50
59
  var newObj = {};
51
60
  var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
52
61
  for(var key in obj){
53
- if (Object.prototype.hasOwnProperty.call(obj, key)) {
62
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
54
63
  var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
55
64
  if (desc && (desc.get || desc.set)) {
56
65
  Object.defineProperty(newObj, key, desc);
@@ -71,13 +80,13 @@ let variantPlugins = {
71
80
  addVariant("first-line", "&::first-line");
72
81
  addVariant("marker", [
73
82
  ({ container })=>{
74
- (0, _removeAlphaVariables).removeAlphaVariables(container, [
83
+ (0, _removeAlphaVariables.removeAlphaVariables)(container, [
75
84
  "--tw-text-opacity"
76
85
  ]);
77
86
  return "& *::marker";
78
87
  },
79
88
  ({ container })=>{
80
- (0, _removeAlphaVariables).removeAlphaVariables(container, [
89
+ (0, _removeAlphaVariables.removeAlphaVariables)(container, [
81
90
  "--tw-text-opacity"
82
91
  ]);
83
92
  return "&::marker";
@@ -151,7 +160,7 @@ let variantPlugins = {
151
160
  [
152
161
  "visited",
153
162
  ({ container })=>{
154
- (0, _removeAlphaVariables).removeAlphaVariables(container, [
163
+ (0, _removeAlphaVariables.removeAlphaVariables)(container, [
155
164
  "--tw-text-opacity",
156
165
  "--tw-border-opacity",
157
166
  "--tw-bg-opacity",
@@ -183,7 +192,7 @@ let variantPlugins = {
183
192
  "focus-within",
184
193
  [
185
194
  "hover",
186
- !(0, _featureFlags).flagEnabled(config(), "hoverOnlyWhenSupported") ? "&:hover" : "@media (hover: hover) and (pointer: fine) { &:hover }",
195
+ !(0, _featureFlags.flagEnabled)(config(), "hoverOnlyWhenSupported") ? "&:hover" : "@media (hover: hover) and (pointer: fine) { &:hover }",
187
196
  ],
188
197
  "focus",
189
198
  "focus-visible",
@@ -253,8 +262,8 @@ let variantPlugins = {
253
262
  addVariant("print", "@media print");
254
263
  },
255
264
  screenVariants: ({ theme , addVariant })=>{
256
- for (let screen of (0, _normalizeScreens).normalizeScreens(theme("screens"))){
257
- let query = (0, _buildMediaQuery).default(screen);
265
+ for (let screen of (0, _normalizeScreens.normalizeScreens)(theme("screens"))){
266
+ let query = (0, _buildMediaQuery.default)(screen);
258
267
  addVariant(screen.name, `@media ${query}`);
259
268
  }
260
269
  },
@@ -267,7 +276,6 @@ let variantPlugins = {
267
276
  addVariant("contrast-less", "@media (prefers-contrast: less)");
268
277
  }
269
278
  };
270
- exports.variantPlugins = variantPlugins;
271
279
  let cssTransformValue = [
272
280
  "translate(var(--tw-translate-x), var(--tw-translate-y))",
273
281
  "rotate(var(--tw-rotate))",
@@ -300,7 +308,7 @@ let cssBackdropFilterValue = [
300
308
  ].join(" ");
301
309
  let corePlugins = {
302
310
  preflight: ({ addBase })=>{
303
- let preflightStyles = _postcss.default.parse(_fs.default.readFileSync(path.join(__dirname, "./css/preflight.css"), "utf8"));
311
+ let preflightStyles = _postcss.default.parse(_fs.default.readFileSync(_path.join(__dirname, "./css/preflight.css"), "utf8"));
304
312
  addBase([
305
313
  _postcss.default.comment({
306
314
  text: `! tailwindcss v${_packageJson.version} | MIT License | https://tailwindcss.com`
@@ -310,7 +318,7 @@ let corePlugins = {
310
318
  },
311
319
  container: (()=>{
312
320
  function extractMinWidths(breakpoints = []) {
313
- return breakpoints.flatMap((breakpoint1)=>breakpoint1.values.map((breakpoint)=>breakpoint.min)).filter((v)=>v !== undefined);
321
+ return breakpoints.flatMap((breakpoint)=>breakpoint.values.map((breakpoint)=>breakpoint.min)).filter((v)=>v !== undefined);
314
322
  }
315
323
  function mapMinWidthsToPadding(minWidths, screens, paddings) {
316
324
  if (typeof paddings === "undefined") {
@@ -348,7 +356,7 @@ let corePlugins = {
348
356
  return mapping;
349
357
  }
350
358
  return function({ addComponents , theme }) {
351
- let screens = (0, _normalizeScreens).normalizeScreens(theme("container.screens", theme("screens")));
359
+ let screens = (0, _normalizeScreens.normalizeScreens)(theme("container.screens", theme("screens")));
352
360
  let minWidths = extractMinWidths(screens);
353
361
  let paddings = mapMinWidthsToPadding(minWidths, screens, theme("container.padding"));
354
362
  let generatePaddingFor = (minWidth)=>{
@@ -446,7 +454,7 @@ let corePlugins = {
446
454
  }
447
455
  });
448
456
  },
449
- inset: (0, _createUtilityPlugin).default("inset", [
457
+ inset: (0, _createUtilityPlugin.default)("inset", [
450
458
  [
451
459
  "inset",
452
460
  [
@@ -511,7 +519,7 @@ let corePlugins = {
511
519
  }
512
520
  });
513
521
  },
514
- zIndex: (0, _createUtilityPlugin).default("zIndex", [
522
+ zIndex: (0, _createUtilityPlugin.default)("zIndex", [
515
523
  [
516
524
  "z",
517
525
  [
@@ -521,10 +529,10 @@ let corePlugins = {
521
529
  ], {
522
530
  supportsNegativeValues: true
523
531
  }),
524
- order: (0, _createUtilityPlugin).default("order", undefined, {
532
+ order: (0, _createUtilityPlugin.default)("order", undefined, {
525
533
  supportsNegativeValues: true
526
534
  }),
527
- gridColumn: (0, _createUtilityPlugin).default("gridColumn", [
535
+ gridColumn: (0, _createUtilityPlugin.default)("gridColumn", [
528
536
  [
529
537
  "col",
530
538
  [
@@ -532,7 +540,7 @@ let corePlugins = {
532
540
  ]
533
541
  ]
534
542
  ]),
535
- gridColumnStart: (0, _createUtilityPlugin).default("gridColumnStart", [
543
+ gridColumnStart: (0, _createUtilityPlugin.default)("gridColumnStart", [
536
544
  [
537
545
  "col-start",
538
546
  [
@@ -540,7 +548,7 @@ let corePlugins = {
540
548
  ]
541
549
  ]
542
550
  ]),
543
- gridColumnEnd: (0, _createUtilityPlugin).default("gridColumnEnd", [
551
+ gridColumnEnd: (0, _createUtilityPlugin.default)("gridColumnEnd", [
544
552
  [
545
553
  "col-end",
546
554
  [
@@ -548,7 +556,7 @@ let corePlugins = {
548
556
  ]
549
557
  ]
550
558
  ]),
551
- gridRow: (0, _createUtilityPlugin).default("gridRow", [
559
+ gridRow: (0, _createUtilityPlugin.default)("gridRow", [
552
560
  [
553
561
  "row",
554
562
  [
@@ -556,7 +564,7 @@ let corePlugins = {
556
564
  ]
557
565
  ]
558
566
  ]),
559
- gridRowStart: (0, _createUtilityPlugin).default("gridRowStart", [
567
+ gridRowStart: (0, _createUtilityPlugin.default)("gridRowStart", [
560
568
  [
561
569
  "row-start",
562
570
  [
@@ -564,7 +572,7 @@ let corePlugins = {
564
572
  ]
565
573
  ]
566
574
  ]),
567
- gridRowEnd: (0, _createUtilityPlugin).default("gridRowEnd", [
575
+ gridRowEnd: (0, _createUtilityPlugin.default)("gridRowEnd", [
568
576
  [
569
577
  "row-end",
570
578
  [
@@ -601,7 +609,7 @@ let corePlugins = {
601
609
  }
602
610
  });
603
611
  },
604
- margin: (0, _createUtilityPlugin).default("margin", [
612
+ margin: (0, _createUtilityPlugin.default)("margin", [
605
613
  [
606
614
  "m",
607
615
  [
@@ -730,7 +738,7 @@ let corePlugins = {
730
738
  }
731
739
  });
732
740
  },
733
- aspectRatio: (0, _createUtilityPlugin).default("aspectRatio", [
741
+ aspectRatio: (0, _createUtilityPlugin.default)("aspectRatio", [
734
742
  [
735
743
  "aspect",
736
744
  [
@@ -738,7 +746,7 @@ let corePlugins = {
738
746
  ]
739
747
  ]
740
748
  ]),
741
- height: (0, _createUtilityPlugin).default("height", [
749
+ height: (0, _createUtilityPlugin.default)("height", [
742
750
  [
743
751
  "h",
744
752
  [
@@ -746,7 +754,7 @@ let corePlugins = {
746
754
  ]
747
755
  ]
748
756
  ]),
749
- maxHeight: (0, _createUtilityPlugin).default("maxHeight", [
757
+ maxHeight: (0, _createUtilityPlugin.default)("maxHeight", [
750
758
  [
751
759
  "max-h",
752
760
  [
@@ -754,7 +762,7 @@ let corePlugins = {
754
762
  ]
755
763
  ]
756
764
  ]),
757
- minHeight: (0, _createUtilityPlugin).default("minHeight", [
765
+ minHeight: (0, _createUtilityPlugin.default)("minHeight", [
758
766
  [
759
767
  "min-h",
760
768
  [
@@ -762,7 +770,7 @@ let corePlugins = {
762
770
  ]
763
771
  ]
764
772
  ]),
765
- width: (0, _createUtilityPlugin).default("width", [
773
+ width: (0, _createUtilityPlugin.default)("width", [
766
774
  [
767
775
  "w",
768
776
  [
@@ -770,7 +778,7 @@ let corePlugins = {
770
778
  ]
771
779
  ]
772
780
  ]),
773
- minWidth: (0, _createUtilityPlugin).default("minWidth", [
781
+ minWidth: (0, _createUtilityPlugin.default)("minWidth", [
774
782
  [
775
783
  "min-w",
776
784
  [
@@ -778,7 +786,7 @@ let corePlugins = {
778
786
  ]
779
787
  ]
780
788
  ]),
781
- maxWidth: (0, _createUtilityPlugin).default("maxWidth", [
789
+ maxWidth: (0, _createUtilityPlugin.default)("maxWidth", [
782
790
  [
783
791
  "max-w",
784
792
  [
@@ -786,8 +794,8 @@ let corePlugins = {
786
794
  ]
787
795
  ]
788
796
  ]),
789
- flex: (0, _createUtilityPlugin).default("flex"),
790
- flexShrink: (0, _createUtilityPlugin).default("flexShrink", [
797
+ flex: (0, _createUtilityPlugin.default)("flex"),
798
+ flexShrink: (0, _createUtilityPlugin.default)("flexShrink", [
791
799
  [
792
800
  "flex-shrink",
793
801
  [
@@ -801,7 +809,7 @@ let corePlugins = {
801
809
  ]
802
810
  ],
803
811
  ]),
804
- flexGrow: (0, _createUtilityPlugin).default("flexGrow", [
812
+ flexGrow: (0, _createUtilityPlugin.default)("flexGrow", [
805
813
  [
806
814
  "flex-grow",
807
815
  [
@@ -815,7 +823,7 @@ let corePlugins = {
815
823
  ]
816
824
  ],
817
825
  ]),
818
- flexBasis: (0, _createUtilityPlugin).default("flexBasis", [
826
+ flexBasis: (0, _createUtilityPlugin.default)("flexBasis", [
819
827
  [
820
828
  "basis",
821
829
  [
@@ -875,7 +883,7 @@ let corePlugins = {
875
883
  values: theme("borderSpacing")
876
884
  });
877
885
  },
878
- transformOrigin: (0, _createUtilityPlugin).default("transformOrigin", [
886
+ transformOrigin: (0, _createUtilityPlugin.default)("transformOrigin", [
879
887
  [
880
888
  "origin",
881
889
  [
@@ -883,7 +891,7 @@ let corePlugins = {
883
891
  ]
884
892
  ]
885
893
  ]),
886
- translate: (0, _createUtilityPlugin).default("translate", [
894
+ translate: (0, _createUtilityPlugin.default)("translate", [
887
895
  [
888
896
  [
889
897
  "translate-x",
@@ -917,7 +925,7 @@ let corePlugins = {
917
925
  ], {
918
926
  supportsNegativeValues: true
919
927
  }),
920
- rotate: (0, _createUtilityPlugin).default("rotate", [
928
+ rotate: (0, _createUtilityPlugin.default)("rotate", [
921
929
  [
922
930
  "rotate",
923
931
  [
@@ -935,7 +943,7 @@ let corePlugins = {
935
943
  ], {
936
944
  supportsNegativeValues: true
937
945
  }),
938
- skew: (0, _createUtilityPlugin).default("skew", [
946
+ skew: (0, _createUtilityPlugin.default)("skew", [
939
947
  [
940
948
  [
941
949
  "skew-x",
@@ -969,7 +977,7 @@ let corePlugins = {
969
977
  ], {
970
978
  supportsNegativeValues: true
971
979
  }),
972
- scale: (0, _createUtilityPlugin).default("scale", [
980
+ scale: (0, _createUtilityPlugin.default)("scale", [
973
981
  [
974
982
  "scale",
975
983
  [
@@ -1045,7 +1053,7 @@ let corePlugins = {
1045
1053
  });
1046
1054
  },
1047
1055
  animation: ({ matchUtilities , theme , config })=>{
1048
- let prefixName = (name)=>`${config("prefix")}${(0, _escapeClassName).default(name)}`;
1056
+ let prefixName = (name)=>`${config("prefix")}${(0, _escapeClassName.default)(name)}`;
1049
1057
  var ref;
1050
1058
  let keyframes = Object.fromEntries(Object.entries((ref = theme("keyframes")) !== null && ref !== void 0 ? ref : {}).map(([key, value])=>{
1051
1059
  return [
@@ -1056,8 +1064,8 @@ let corePlugins = {
1056
1064
  ];
1057
1065
  }));
1058
1066
  matchUtilities({
1059
- animate: (value1)=>{
1060
- let animations = (0, _parseAnimationValue).default(value1);
1067
+ animate: (value)=>{
1068
+ let animations = (0, _parseAnimationValue.default)(value);
1061
1069
  return [
1062
1070
  ...animations.flatMap((animation)=>keyframes[animation.name]),
1063
1071
  {
@@ -1074,7 +1082,7 @@ let corePlugins = {
1074
1082
  values: theme("animation")
1075
1083
  });
1076
1084
  },
1077
- cursor: (0, _createUtilityPlugin).default("cursor"),
1085
+ cursor: (0, _createUtilityPlugin.default)("cursor"),
1078
1086
  touchAction: ({ addDefaults , addUtilities })=>{
1079
1087
  addDefaults("touch-action", {
1080
1088
  "--tw-pan-x": " ",
@@ -1215,7 +1223,7 @@ let corePlugins = {
1215
1223
  }
1216
1224
  });
1217
1225
  },
1218
- scrollMargin: (0, _createUtilityPlugin).default("scrollMargin", [
1226
+ scrollMargin: (0, _createUtilityPlugin.default)("scrollMargin", [
1219
1227
  [
1220
1228
  "scroll-m",
1221
1229
  [
@@ -1267,7 +1275,7 @@ let corePlugins = {
1267
1275
  ], {
1268
1276
  supportsNegativeValues: true
1269
1277
  }),
1270
- scrollPadding: (0, _createUtilityPlugin).default("scrollPadding", [
1278
+ scrollPadding: (0, _createUtilityPlugin.default)("scrollPadding", [
1271
1279
  [
1272
1280
  "scroll-p",
1273
1281
  [
@@ -1327,7 +1335,7 @@ let corePlugins = {
1327
1335
  }
1328
1336
  });
1329
1337
  },
1330
- listStyleType: (0, _createUtilityPlugin).default("listStyleType", [
1338
+ listStyleType: (0, _createUtilityPlugin.default)("listStyleType", [
1331
1339
  [
1332
1340
  "list",
1333
1341
  [
@@ -1342,7 +1350,7 @@ let corePlugins = {
1342
1350
  }
1343
1351
  });
1344
1352
  },
1345
- columns: (0, _createUtilityPlugin).default("columns", [
1353
+ columns: (0, _createUtilityPlugin.default)("columns", [
1346
1354
  [
1347
1355
  "columns",
1348
1356
  [
@@ -1422,7 +1430,7 @@ let corePlugins = {
1422
1430
  }
1423
1431
  });
1424
1432
  },
1425
- gridAutoColumns: (0, _createUtilityPlugin).default("gridAutoColumns", [
1433
+ gridAutoColumns: (0, _createUtilityPlugin.default)("gridAutoColumns", [
1426
1434
  [
1427
1435
  "auto-cols",
1428
1436
  [
@@ -1449,7 +1457,7 @@ let corePlugins = {
1449
1457
  }
1450
1458
  });
1451
1459
  },
1452
- gridAutoRows: (0, _createUtilityPlugin).default("gridAutoRows", [
1460
+ gridAutoRows: (0, _createUtilityPlugin.default)("gridAutoRows", [
1453
1461
  [
1454
1462
  "auto-rows",
1455
1463
  [
@@ -1457,7 +1465,7 @@ let corePlugins = {
1457
1465
  ]
1458
1466
  ]
1459
1467
  ]),
1460
- gridTemplateColumns: (0, _createUtilityPlugin).default("gridTemplateColumns", [
1468
+ gridTemplateColumns: (0, _createUtilityPlugin.default)("gridTemplateColumns", [
1461
1469
  [
1462
1470
  "grid-cols",
1463
1471
  [
@@ -1465,7 +1473,7 @@ let corePlugins = {
1465
1473
  ]
1466
1474
  ],
1467
1475
  ]),
1468
- gridTemplateRows: (0, _createUtilityPlugin).default("gridTemplateRows", [
1476
+ gridTemplateRows: (0, _createUtilityPlugin.default)("gridTemplateRows", [
1469
1477
  [
1470
1478
  "grid-rows",
1471
1479
  [
@@ -1622,7 +1630,7 @@ let corePlugins = {
1622
1630
  }
1623
1631
  });
1624
1632
  },
1625
- gap: (0, _createUtilityPlugin).default("gap", [
1633
+ gap: (0, _createUtilityPlugin.default)("gap", [
1626
1634
  [
1627
1635
  "gap",
1628
1636
  [
@@ -1740,18 +1748,18 @@ let corePlugins = {
1740
1748
  }
1741
1749
  });
1742
1750
  },
1743
- divideColor: ({ matchUtilities , theme , corePlugins: corePlugins1 })=>{
1751
+ divideColor: ({ matchUtilities , theme , corePlugins })=>{
1744
1752
  matchUtilities({
1745
1753
  divide: (value)=>{
1746
- if (!corePlugins1("divideOpacity")) {
1754
+ if (!corePlugins("divideOpacity")) {
1747
1755
  return {
1748
1756
  ["& > :not([hidden]) ~ :not([hidden])"]: {
1749
- "border-color": (0, _toColorValue).default(value)
1757
+ "border-color": (0, _toColorValue.default)(value)
1750
1758
  }
1751
1759
  };
1752
1760
  }
1753
1761
  return {
1754
- ["& > :not([hidden]) ~ :not([hidden])"]: (0, _withAlphaVariable).default({
1762
+ ["& > :not([hidden]) ~ :not([hidden])"]: (0, _withAlphaVariable.default)({
1755
1763
  color: value,
1756
1764
  property: "border-color",
1757
1765
  variable: "--tw-divide-opacity"
@@ -1759,7 +1767,7 @@ let corePlugins = {
1759
1767
  };
1760
1768
  }
1761
1769
  }, {
1762
- values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette).default(theme("divideColor"))),
1770
+ values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("divideColor"))),
1763
1771
  type: "color"
1764
1772
  });
1765
1773
  },
@@ -1977,7 +1985,7 @@ let corePlugins = {
1977
1985
  }
1978
1986
  });
1979
1987
  },
1980
- borderRadius: (0, _createUtilityPlugin).default("borderRadius", [
1988
+ borderRadius: (0, _createUtilityPlugin.default)("borderRadius", [
1981
1989
  [
1982
1990
  "rounded",
1983
1991
  [
@@ -2041,7 +2049,7 @@ let corePlugins = {
2041
2049
  ],
2042
2050
  ],
2043
2051
  ]),
2044
- borderWidth: (0, _createUtilityPlugin).default("borderWidth", [
2052
+ borderWidth: (0, _createUtilityPlugin.default)("borderWidth", [
2045
2053
  [
2046
2054
  "border",
2047
2055
  [
@@ -2146,35 +2154,35 @@ let corePlugins = {
2146
2154
  }
2147
2155
  });
2148
2156
  },
2149
- borderColor: ({ matchUtilities , theme , corePlugins: corePlugins2 })=>{
2157
+ borderColor: ({ matchUtilities , theme , corePlugins })=>{
2150
2158
  matchUtilities({
2151
2159
  border: (value)=>{
2152
- if (!corePlugins2("borderOpacity")) {
2160
+ if (!corePlugins("borderOpacity")) {
2153
2161
  return {
2154
- "border-color": (0, _toColorValue).default(value)
2162
+ "border-color": (0, _toColorValue.default)(value)
2155
2163
  };
2156
2164
  }
2157
- return (0, _withAlphaVariable).default({
2165
+ return (0, _withAlphaVariable.default)({
2158
2166
  color: value,
2159
2167
  property: "border-color",
2160
2168
  variable: "--tw-border-opacity"
2161
2169
  });
2162
2170
  }
2163
2171
  }, {
2164
- values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette).default(theme("borderColor"))),
2172
+ values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("borderColor"))),
2165
2173
  type: [
2166
2174
  "color"
2167
2175
  ]
2168
2176
  });
2169
2177
  matchUtilities({
2170
2178
  "border-x": (value)=>{
2171
- if (!corePlugins2("borderOpacity")) {
2179
+ if (!corePlugins("borderOpacity")) {
2172
2180
  return {
2173
- "border-left-color": (0, _toColorValue).default(value),
2174
- "border-right-color": (0, _toColorValue).default(value)
2181
+ "border-left-color": (0, _toColorValue.default)(value),
2182
+ "border-right-color": (0, _toColorValue.default)(value)
2175
2183
  };
2176
2184
  }
2177
- return (0, _withAlphaVariable).default({
2185
+ return (0, _withAlphaVariable.default)({
2178
2186
  color: value,
2179
2187
  property: [
2180
2188
  "border-left-color",
@@ -2184,13 +2192,13 @@ let corePlugins = {
2184
2192
  });
2185
2193
  },
2186
2194
  "border-y": (value)=>{
2187
- if (!corePlugins2("borderOpacity")) {
2195
+ if (!corePlugins("borderOpacity")) {
2188
2196
  return {
2189
- "border-top-color": (0, _toColorValue).default(value),
2190
- "border-bottom-color": (0, _toColorValue).default(value)
2197
+ "border-top-color": (0, _toColorValue.default)(value),
2198
+ "border-bottom-color": (0, _toColorValue.default)(value)
2191
2199
  };
2192
2200
  }
2193
- return (0, _withAlphaVariable).default({
2201
+ return (0, _withAlphaVariable.default)({
2194
2202
  color: value,
2195
2203
  property: [
2196
2204
  "border-top-color",
@@ -2200,64 +2208,64 @@ let corePlugins = {
2200
2208
  });
2201
2209
  }
2202
2210
  }, {
2203
- values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette).default(theme("borderColor"))),
2211
+ values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("borderColor"))),
2204
2212
  type: "color"
2205
2213
  });
2206
2214
  matchUtilities({
2207
2215
  "border-t": (value)=>{
2208
- if (!corePlugins2("borderOpacity")) {
2216
+ if (!corePlugins("borderOpacity")) {
2209
2217
  return {
2210
- "border-top-color": (0, _toColorValue).default(value)
2218
+ "border-top-color": (0, _toColorValue.default)(value)
2211
2219
  };
2212
2220
  }
2213
- return (0, _withAlphaVariable).default({
2221
+ return (0, _withAlphaVariable.default)({
2214
2222
  color: value,
2215
2223
  property: "border-top-color",
2216
2224
  variable: "--tw-border-opacity"
2217
2225
  });
2218
2226
  },
2219
2227
  "border-r": (value)=>{
2220
- if (!corePlugins2("borderOpacity")) {
2228
+ if (!corePlugins("borderOpacity")) {
2221
2229
  return {
2222
- "border-right-color": (0, _toColorValue).default(value)
2230
+ "border-right-color": (0, _toColorValue.default)(value)
2223
2231
  };
2224
2232
  }
2225
- return (0, _withAlphaVariable).default({
2233
+ return (0, _withAlphaVariable.default)({
2226
2234
  color: value,
2227
2235
  property: "border-right-color",
2228
2236
  variable: "--tw-border-opacity"
2229
2237
  });
2230
2238
  },
2231
2239
  "border-b": (value)=>{
2232
- if (!corePlugins2("borderOpacity")) {
2240
+ if (!corePlugins("borderOpacity")) {
2233
2241
  return {
2234
- "border-bottom-color": (0, _toColorValue).default(value)
2242
+ "border-bottom-color": (0, _toColorValue.default)(value)
2235
2243
  };
2236
2244
  }
2237
- return (0, _withAlphaVariable).default({
2245
+ return (0, _withAlphaVariable.default)({
2238
2246
  color: value,
2239
2247
  property: "border-bottom-color",
2240
2248
  variable: "--tw-border-opacity"
2241
2249
  });
2242
2250
  },
2243
2251
  "border-l": (value)=>{
2244
- if (!corePlugins2("borderOpacity")) {
2252
+ if (!corePlugins("borderOpacity")) {
2245
2253
  return {
2246
- "border-left-color": (0, _toColorValue).default(value)
2254
+ "border-left-color": (0, _toColorValue.default)(value)
2247
2255
  };
2248
2256
  }
2249
- return (0, _withAlphaVariable).default({
2257
+ return (0, _withAlphaVariable.default)({
2250
2258
  color: value,
2251
2259
  property: "border-left-color",
2252
2260
  variable: "--tw-border-opacity"
2253
2261
  });
2254
2262
  }
2255
2263
  }, {
2256
- values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette).default(theme("borderColor"))),
2264
+ values: (({ DEFAULT: _ , ...colors })=>colors)((0, _flattenColorPalette.default)(theme("borderColor"))),
2257
2265
  type: "color"
2258
2266
  });
2259
2267
  },
2260
- borderOpacity: (0, _createUtilityPlugin).default("borderOpacity", [
2268
+ borderOpacity: (0, _createUtilityPlugin.default)("borderOpacity", [
2261
2269
  [
2262
2270
  "border-opacity",
2263
2271
  [
@@ -2265,26 +2273,26 @@ let corePlugins = {
2265
2273
  ]
2266
2274
  ],
2267
2275
  ]),
2268
- backgroundColor: ({ matchUtilities , theme , corePlugins: corePlugins3 })=>{
2276
+ backgroundColor: ({ matchUtilities , theme , corePlugins })=>{
2269
2277
  matchUtilities({
2270
2278
  bg: (value)=>{
2271
- if (!corePlugins3("backgroundOpacity")) {
2279
+ if (!corePlugins("backgroundOpacity")) {
2272
2280
  return {
2273
- "background-color": (0, _toColorValue).default(value)
2281
+ "background-color": (0, _toColorValue.default)(value)
2274
2282
  };
2275
2283
  }
2276
- return (0, _withAlphaVariable).default({
2284
+ return (0, _withAlphaVariable.default)({
2277
2285
  color: value,
2278
2286
  property: "background-color",
2279
2287
  variable: "--tw-bg-opacity"
2280
2288
  });
2281
2289
  }
2282
2290
  }, {
2283
- values: (0, _flattenColorPalette).default(theme("backgroundColor")),
2291
+ values: (0, _flattenColorPalette.default)(theme("backgroundColor")),
2284
2292
  type: "color"
2285
2293
  });
2286
2294
  },
2287
- backgroundOpacity: (0, _createUtilityPlugin).default("backgroundOpacity", [
2295
+ backgroundOpacity: (0, _createUtilityPlugin.default)("backgroundOpacity", [
2288
2296
  [
2289
2297
  "bg-opacity",
2290
2298
  [
@@ -2292,7 +2300,7 @@ let corePlugins = {
2292
2300
  ]
2293
2301
  ],
2294
2302
  ]),
2295
- backgroundImage: (0, _createUtilityPlugin).default("backgroundImage", [
2303
+ backgroundImage: (0, _createUtilityPlugin.default)("backgroundImage", [
2296
2304
  [
2297
2305
  "bg",
2298
2306
  [
@@ -2308,11 +2316,11 @@ let corePlugins = {
2308
2316
  }),
2309
2317
  gradientColorStops: (()=>{
2310
2318
  function transparentTo(value) {
2311
- return (0, _withAlphaVariable).withAlphaValue(value, 0, "rgb(255 255 255 / 0)");
2319
+ return (0, _withAlphaVariable.withAlphaValue)(value, 0, "rgb(255 255 255 / 0)");
2312
2320
  }
2313
2321
  return function({ matchUtilities , theme }) {
2314
2322
  let options = {
2315
- values: (0, _flattenColorPalette).default(theme("gradientColorStops")),
2323
+ values: (0, _flattenColorPalette.default)(theme("gradientColorStops")),
2316
2324
  type: [
2317
2325
  "color",
2318
2326
  "any"
@@ -2322,7 +2330,7 @@ let corePlugins = {
2322
2330
  from: (value)=>{
2323
2331
  let transparentToValue = transparentTo(value);
2324
2332
  return {
2325
- "--tw-gradient-from": (0, _toColorValue).default(value, "from"),
2333
+ "--tw-gradient-from": (0, _toColorValue.default)(value, "from"),
2326
2334
  "--tw-gradient-to": transparentToValue,
2327
2335
  "--tw-gradient-stops": `var(--tw-gradient-from), var(--tw-gradient-to)`
2328
2336
  };
@@ -2333,13 +2341,13 @@ let corePlugins = {
2333
2341
  let transparentToValue = transparentTo(value);
2334
2342
  return {
2335
2343
  "--tw-gradient-to": transparentToValue,
2336
- "--tw-gradient-stops": `var(--tw-gradient-from), ${(0, _toColorValue).default(value, "via")}, var(--tw-gradient-to)`
2344
+ "--tw-gradient-stops": `var(--tw-gradient-from), ${(0, _toColorValue.default)(value, "via")}, var(--tw-gradient-to)`
2337
2345
  };
2338
2346
  }
2339
2347
  }, options);
2340
2348
  matchUtilities({
2341
2349
  to: (value)=>({
2342
- "--tw-gradient-to": (0, _toColorValue).default(value, "to")
2350
+ "--tw-gradient-to": (0, _toColorValue.default)(value, "to")
2343
2351
  })
2344
2352
  }, options);
2345
2353
  };
@@ -2360,7 +2368,7 @@ let corePlugins = {
2360
2368
  }
2361
2369
  });
2362
2370
  },
2363
- backgroundSize: (0, _createUtilityPlugin).default("backgroundSize", [
2371
+ backgroundSize: (0, _createUtilityPlugin.default)("backgroundSize", [
2364
2372
  [
2365
2373
  "bg",
2366
2374
  [
@@ -2403,7 +2411,7 @@ let corePlugins = {
2403
2411
  }
2404
2412
  });
2405
2413
  },
2406
- backgroundPosition: (0, _createUtilityPlugin).default("backgroundPosition", [
2414
+ backgroundPosition: (0, _createUtilityPlugin.default)("backgroundPosition", [
2407
2415
  [
2408
2416
  "bg",
2409
2417
  [
@@ -2455,11 +2463,11 @@ let corePlugins = {
2455
2463
  matchUtilities({
2456
2464
  fill: (value)=>{
2457
2465
  return {
2458
- fill: (0, _toColorValue).default(value)
2466
+ fill: (0, _toColorValue.default)(value)
2459
2467
  };
2460
2468
  }
2461
2469
  }, {
2462
- values: (0, _flattenColorPalette).default(theme("fill")),
2470
+ values: (0, _flattenColorPalette.default)(theme("fill")),
2463
2471
  type: [
2464
2472
  "color",
2465
2473
  "any"
@@ -2470,18 +2478,18 @@ let corePlugins = {
2470
2478
  matchUtilities({
2471
2479
  stroke: (value)=>{
2472
2480
  return {
2473
- stroke: (0, _toColorValue).default(value)
2481
+ stroke: (0, _toColorValue.default)(value)
2474
2482
  };
2475
2483
  }
2476
2484
  }, {
2477
- values: (0, _flattenColorPalette).default(theme("stroke")),
2485
+ values: (0, _flattenColorPalette.default)(theme("stroke")),
2478
2486
  type: [
2479
2487
  "color",
2480
2488
  "url"
2481
2489
  ]
2482
2490
  });
2483
2491
  },
2484
- strokeWidth: (0, _createUtilityPlugin).default("strokeWidth", [
2492
+ strokeWidth: (0, _createUtilityPlugin.default)("strokeWidth", [
2485
2493
  [
2486
2494
  "stroke",
2487
2495
  [
@@ -2514,7 +2522,7 @@ let corePlugins = {
2514
2522
  }
2515
2523
  });
2516
2524
  },
2517
- objectPosition: (0, _createUtilityPlugin).default("objectPosition", [
2525
+ objectPosition: (0, _createUtilityPlugin.default)("objectPosition", [
2518
2526
  [
2519
2527
  "object",
2520
2528
  [
@@ -2522,7 +2530,7 @@ let corePlugins = {
2522
2530
  ]
2523
2531
  ]
2524
2532
  ]),
2525
- padding: (0, _createUtilityPlugin).default("padding", [
2533
+ padding: (0, _createUtilityPlugin.default)("padding", [
2526
2534
  [
2527
2535
  "p",
2528
2536
  [
@@ -2594,7 +2602,7 @@ let corePlugins = {
2594
2602
  }
2595
2603
  });
2596
2604
  },
2597
- textIndent: (0, _createUtilityPlugin).default("textIndent", [
2605
+ textIndent: (0, _createUtilityPlugin.default)("textIndent", [
2598
2606
  [
2599
2607
  "indent",
2600
2608
  [
@@ -2637,7 +2645,7 @@ let corePlugins = {
2637
2645
  })
2638
2646
  });
2639
2647
  },
2640
- fontFamily: (0, _createUtilityPlugin).default("fontFamily", [
2648
+ fontFamily: (0, _createUtilityPlugin.default)("fontFamily", [
2641
2649
  [
2642
2650
  "font",
2643
2651
  [
@@ -2657,7 +2665,7 @@ let corePlugins = {
2657
2665
  let [fontSize, options] = Array.isArray(value) ? value : [
2658
2666
  value
2659
2667
  ];
2660
- let { lineHeight , letterSpacing } = (0, _isPlainObject).default(options) ? options : {
2668
+ let { lineHeight , letterSpacing , fontWeight } = (0, _isPlainObject.default)(options) ? options : {
2661
2669
  lineHeight: options
2662
2670
  };
2663
2671
  return {
@@ -2667,6 +2675,9 @@ let corePlugins = {
2667
2675
  },
2668
2676
  ...letterSpacing === undefined ? {} : {
2669
2677
  "letter-spacing": letterSpacing
2678
+ },
2679
+ ...fontWeight === undefined ? {} : {
2680
+ "font-weight": fontWeight
2670
2681
  }
2671
2682
  };
2672
2683
  }
@@ -2680,7 +2691,7 @@ let corePlugins = {
2680
2691
  ]
2681
2692
  });
2682
2693
  },
2683
- fontWeight: (0, _createUtilityPlugin).default("fontWeight", [
2694
+ fontWeight: (0, _createUtilityPlugin.default)("fontWeight", [
2684
2695
  [
2685
2696
  "font",
2686
2697
  [
@@ -2774,7 +2785,7 @@ let corePlugins = {
2774
2785
  }
2775
2786
  });
2776
2787
  },
2777
- lineHeight: (0, _createUtilityPlugin).default("lineHeight", [
2788
+ lineHeight: (0, _createUtilityPlugin.default)("lineHeight", [
2778
2789
  [
2779
2790
  "leading",
2780
2791
  [
@@ -2782,7 +2793,7 @@ let corePlugins = {
2782
2793
  ]
2783
2794
  ]
2784
2795
  ]),
2785
- letterSpacing: (0, _createUtilityPlugin).default("letterSpacing", [
2796
+ letterSpacing: (0, _createUtilityPlugin.default)("letterSpacing", [
2786
2797
  [
2787
2798
  "tracking",
2788
2799
  [
@@ -2792,26 +2803,26 @@ let corePlugins = {
2792
2803
  ], {
2793
2804
  supportsNegativeValues: true
2794
2805
  }),
2795
- textColor: ({ matchUtilities , theme , corePlugins: corePlugins4 })=>{
2806
+ textColor: ({ matchUtilities , theme , corePlugins })=>{
2796
2807
  matchUtilities({
2797
2808
  text: (value)=>{
2798
- if (!corePlugins4("textOpacity")) {
2809
+ if (!corePlugins("textOpacity")) {
2799
2810
  return {
2800
- color: (0, _toColorValue).default(value)
2811
+ color: (0, _toColorValue.default)(value)
2801
2812
  };
2802
2813
  }
2803
- return (0, _withAlphaVariable).default({
2814
+ return (0, _withAlphaVariable.default)({
2804
2815
  color: value,
2805
2816
  property: "color",
2806
2817
  variable: "--tw-text-opacity"
2807
2818
  });
2808
2819
  }
2809
2820
  }, {
2810
- values: (0, _flattenColorPalette).default(theme("textColor")),
2821
+ values: (0, _flattenColorPalette.default)(theme("textColor")),
2811
2822
  type: "color"
2812
2823
  });
2813
2824
  },
2814
- textOpacity: (0, _createUtilityPlugin).default("textOpacity", [
2825
+ textOpacity: (0, _createUtilityPlugin.default)("textOpacity", [
2815
2826
  [
2816
2827
  "text-opacity",
2817
2828
  [
@@ -2839,11 +2850,11 @@ let corePlugins = {
2839
2850
  matchUtilities({
2840
2851
  decoration: (value)=>{
2841
2852
  return {
2842
- "text-decoration-color": (0, _toColorValue).default(value)
2853
+ "text-decoration-color": (0, _toColorValue.default)(value)
2843
2854
  };
2844
2855
  }
2845
2856
  }, {
2846
- values: (0, _flattenColorPalette).default(theme("textDecorationColor")),
2857
+ values: (0, _flattenColorPalette.default)(theme("textDecorationColor")),
2847
2858
  type: [
2848
2859
  "color"
2849
2860
  ]
@@ -2868,7 +2879,7 @@ let corePlugins = {
2868
2879
  }
2869
2880
  });
2870
2881
  },
2871
- textDecorationThickness: (0, _createUtilityPlugin).default("textDecorationThickness", [
2882
+ textDecorationThickness: (0, _createUtilityPlugin.default)("textDecorationThickness", [
2872
2883
  [
2873
2884
  "decoration",
2874
2885
  [
@@ -2881,7 +2892,7 @@ let corePlugins = {
2881
2892
  "percentage"
2882
2893
  ]
2883
2894
  }),
2884
- textUnderlineOffset: (0, _createUtilityPlugin).default("textUnderlineOffset", [
2895
+ textUnderlineOffset: (0, _createUtilityPlugin.default)("textUnderlineOffset", [
2885
2896
  [
2886
2897
  "underline-offset",
2887
2898
  [
@@ -2906,18 +2917,18 @@ let corePlugins = {
2906
2917
  }
2907
2918
  });
2908
2919
  },
2909
- placeholderColor: ({ matchUtilities , theme , corePlugins: corePlugins5 })=>{
2920
+ placeholderColor: ({ matchUtilities , theme , corePlugins })=>{
2910
2921
  matchUtilities({
2911
2922
  placeholder: (value)=>{
2912
- if (!corePlugins5("placeholderOpacity")) {
2923
+ if (!corePlugins("placeholderOpacity")) {
2913
2924
  return {
2914
2925
  "&::placeholder": {
2915
- color: (0, _toColorValue).default(value)
2926
+ color: (0, _toColorValue.default)(value)
2916
2927
  }
2917
2928
  };
2918
2929
  }
2919
2930
  return {
2920
- "&::placeholder": (0, _withAlphaVariable).default({
2931
+ "&::placeholder": (0, _withAlphaVariable.default)({
2921
2932
  color: value,
2922
2933
  property: "color",
2923
2934
  variable: "--tw-placeholder-opacity"
@@ -2925,7 +2936,7 @@ let corePlugins = {
2925
2936
  };
2926
2937
  }
2927
2938
  }, {
2928
- values: (0, _flattenColorPalette).default(theme("placeholderColor")),
2939
+ values: (0, _flattenColorPalette.default)(theme("placeholderColor")),
2929
2940
  type: [
2930
2941
  "color",
2931
2942
  "any"
@@ -2949,11 +2960,11 @@ let corePlugins = {
2949
2960
  matchUtilities({
2950
2961
  caret: (value)=>{
2951
2962
  return {
2952
- "caret-color": (0, _toColorValue).default(value)
2963
+ "caret-color": (0, _toColorValue.default)(value)
2953
2964
  };
2954
2965
  }
2955
2966
  }, {
2956
- values: (0, _flattenColorPalette).default(theme("caretColor")),
2967
+ values: (0, _flattenColorPalette.default)(theme("caretColor")),
2957
2968
  type: [
2958
2969
  "color",
2959
2970
  "any"
@@ -2964,18 +2975,18 @@ let corePlugins = {
2964
2975
  matchUtilities({
2965
2976
  accent: (value)=>{
2966
2977
  return {
2967
- "accent-color": (0, _toColorValue).default(value)
2978
+ "accent-color": (0, _toColorValue.default)(value)
2968
2979
  };
2969
2980
  }
2970
2981
  }, {
2971
- values: (0, _flattenColorPalette).default(theme("accentColor")),
2982
+ values: (0, _flattenColorPalette.default)(theme("accentColor")),
2972
2983
  type: [
2973
2984
  "color",
2974
2985
  "any"
2975
2986
  ]
2976
2987
  });
2977
2988
  },
2978
- opacity: (0, _createUtilityPlugin).default("opacity", [
2989
+ opacity: (0, _createUtilityPlugin.default)("opacity", [
2979
2990
  [
2980
2991
  "opacity",
2981
2992
  [
@@ -3091,7 +3102,7 @@ let corePlugins = {
3091
3102
  });
3092
3103
  },
3093
3104
  boxShadow: (()=>{
3094
- let transformValue = (0, _transformThemeValue).default("boxShadow");
3105
+ let transformValue = (0, _transformThemeValue.default)("boxShadow");
3095
3106
  let defaultBoxShadow = [
3096
3107
  `var(--tw-ring-offset-shadow, 0 0 #0000)`,
3097
3108
  `var(--tw-ring-shadow, 0 0 #0000)`,
@@ -3107,7 +3118,7 @@ let corePlugins = {
3107
3118
  matchUtilities({
3108
3119
  shadow: (value)=>{
3109
3120
  value = transformValue(value);
3110
- let ast = (0, _parseBoxShadowValue).parseBoxShadowValue(value);
3121
+ let ast = (0, _parseBoxShadowValue.parseBoxShadowValue)(value);
3111
3122
  for (let shadow of ast){
3112
3123
  // Don't override color if the whole shadow is a variable
3113
3124
  if (!shadow.valid) {
@@ -3118,7 +3129,7 @@ let corePlugins = {
3118
3129
  return {
3119
3130
  "@defaults box-shadow": {},
3120
3131
  "--tw-shadow": value === "none" ? "0 0 #0000" : value,
3121
- "--tw-shadow-colored": value === "none" ? "0 0 #0000" : (0, _parseBoxShadowValue).formatBoxShadowValue(ast),
3132
+ "--tw-shadow-colored": value === "none" ? "0 0 #0000" : (0, _parseBoxShadowValue.formatBoxShadowValue)(ast),
3122
3133
  "box-shadow": defaultBoxShadow
3123
3134
  };
3124
3135
  }
@@ -3134,12 +3145,12 @@ let corePlugins = {
3134
3145
  matchUtilities({
3135
3146
  shadow: (value)=>{
3136
3147
  return {
3137
- "--tw-shadow-color": (0, _toColorValue).default(value),
3148
+ "--tw-shadow-color": (0, _toColorValue.default)(value),
3138
3149
  "--tw-shadow": "var(--tw-shadow-colored)"
3139
3150
  };
3140
3151
  }
3141
3152
  }, {
3142
- values: (0, _flattenColorPalette).default(theme("boxShadowColor")),
3153
+ values: (0, _flattenColorPalette.default)(theme("boxShadowColor")),
3143
3154
  type: [
3144
3155
  "color"
3145
3156
  ]
@@ -3168,7 +3179,7 @@ let corePlugins = {
3168
3179
  }
3169
3180
  });
3170
3181
  },
3171
- outlineWidth: (0, _createUtilityPlugin).default("outlineWidth", [
3182
+ outlineWidth: (0, _createUtilityPlugin.default)("outlineWidth", [
3172
3183
  [
3173
3184
  "outline",
3174
3185
  [
@@ -3182,7 +3193,7 @@ let corePlugins = {
3182
3193
  "percentage"
3183
3194
  ]
3184
3195
  }),
3185
- outlineOffset: (0, _createUtilityPlugin).default("outlineOffset", [
3196
+ outlineOffset: (0, _createUtilityPlugin.default)("outlineOffset", [
3186
3197
  [
3187
3198
  "outline-offset",
3188
3199
  [
@@ -3200,11 +3211,11 @@ let corePlugins = {
3200
3211
  matchUtilities({
3201
3212
  outline: (value)=>{
3202
3213
  return {
3203
- "outline-color": (0, _toColorValue).default(value)
3214
+ "outline-color": (0, _toColorValue.default)(value)
3204
3215
  };
3205
3216
  }
3206
3217
  }, {
3207
- values: (0, _flattenColorPalette).default(theme("outlineColor")),
3218
+ values: (0, _flattenColorPalette.default)(theme("outlineColor")),
3208
3219
  type: [
3209
3220
  "color"
3210
3221
  ]
@@ -3213,14 +3224,14 @@ let corePlugins = {
3213
3224
  ringWidth: ({ matchUtilities , addDefaults , addUtilities , theme , config })=>{
3214
3225
  let ringColorDefault = (()=>{
3215
3226
  var ref, ref1;
3216
- if ((0, _featureFlags).flagEnabled(config(), "respectDefaultRingColorOpacity")) {
3227
+ if ((0, _featureFlags.flagEnabled)(config(), "respectDefaultRingColorOpacity")) {
3217
3228
  return theme("ringColor.DEFAULT");
3218
3229
  }
3219
3230
  let ringOpacityDefault = theme("ringOpacity.DEFAULT", "0.5");
3220
3231
  if (!((ref = theme("ringColor")) === null || ref === void 0 ? void 0 : ref.DEFAULT)) {
3221
3232
  return `rgb(147 197 253 / ${ringOpacityDefault})`;
3222
3233
  }
3223
- return (0, _withAlphaVariable).withAlphaValue((ref1 = theme("ringColor")) === null || ref1 === void 0 ? void 0 : ref1.DEFAULT, ringOpacityDefault, `rgb(147 197 253 / ${ringOpacityDefault})`);
3234
+ return (0, _withAlphaVariable.withAlphaValue)((ref1 = theme("ringColor")) === null || ref1 === void 0 ? void 0 : ref1.DEFAULT, ringOpacityDefault, `rgb(147 197 253 / ${ringOpacityDefault})`);
3224
3235
  })();
3225
3236
  addDefaults("ring-width", {
3226
3237
  "--tw-ring-inset": " ",
@@ -3256,28 +3267,28 @@ let corePlugins = {
3256
3267
  }
3257
3268
  });
3258
3269
  },
3259
- ringColor: ({ matchUtilities , theme , corePlugins: corePlugins6 })=>{
3270
+ ringColor: ({ matchUtilities , theme , corePlugins })=>{
3260
3271
  matchUtilities({
3261
3272
  ring: (value)=>{
3262
- if (!corePlugins6("ringOpacity")) {
3273
+ if (!corePlugins("ringOpacity")) {
3263
3274
  return {
3264
- "--tw-ring-color": (0, _toColorValue).default(value)
3275
+ "--tw-ring-color": (0, _toColorValue.default)(value)
3265
3276
  };
3266
3277
  }
3267
- return (0, _withAlphaVariable).default({
3278
+ return (0, _withAlphaVariable.default)({
3268
3279
  color: value,
3269
3280
  property: "--tw-ring-color",
3270
3281
  variable: "--tw-ring-opacity"
3271
3282
  });
3272
3283
  }
3273
3284
  }, {
3274
- values: Object.fromEntries(Object.entries((0, _flattenColorPalette).default(theme("ringColor"))).filter(([modifier])=>modifier !== "DEFAULT")),
3285
+ values: Object.fromEntries(Object.entries((0, _flattenColorPalette.default)(theme("ringColor"))).filter(([modifier])=>modifier !== "DEFAULT")),
3275
3286
  type: "color"
3276
3287
  });
3277
3288
  },
3278
3289
  ringOpacity: (helpers)=>{
3279
3290
  let { config } = helpers;
3280
- return (0, _createUtilityPlugin).default("ringOpacity", [
3291
+ return (0, _createUtilityPlugin.default)("ringOpacity", [
3281
3292
  [
3282
3293
  "ring-opacity",
3283
3294
  [
@@ -3285,10 +3296,10 @@ let corePlugins = {
3285
3296
  ]
3286
3297
  ]
3287
3298
  ], {
3288
- filterDefault: !(0, _featureFlags).flagEnabled(config(), "respectDefaultRingColorOpacity")
3299
+ filterDefault: !(0, _featureFlags.flagEnabled)(config(), "respectDefaultRingColorOpacity")
3289
3300
  })(helpers);
3290
3301
  },
3291
- ringOffsetWidth: (0, _createUtilityPlugin).default("ringOffsetWidth", [
3302
+ ringOffsetWidth: (0, _createUtilityPlugin.default)("ringOffsetWidth", [
3292
3303
  [
3293
3304
  "ring-offset",
3294
3305
  [
@@ -3302,11 +3313,11 @@ let corePlugins = {
3302
3313
  matchUtilities({
3303
3314
  "ring-offset": (value)=>{
3304
3315
  return {
3305
- "--tw-ring-offset-color": (0, _toColorValue).default(value)
3316
+ "--tw-ring-offset-color": (0, _toColorValue.default)(value)
3306
3317
  };
3307
3318
  }
3308
3319
  }, {
3309
- values: (0, _flattenColorPalette).default(theme("ringOffsetColor")),
3320
+ values: (0, _flattenColorPalette.default)(theme("ringOffsetColor")),
3310
3321
  type: "color"
3311
3322
  });
3312
3323
  },
@@ -3607,7 +3618,7 @@ let corePlugins = {
3607
3618
  values: theme("transitionProperty")
3608
3619
  });
3609
3620
  },
3610
- transitionDelay: (0, _createUtilityPlugin).default("transitionDelay", [
3621
+ transitionDelay: (0, _createUtilityPlugin.default)("transitionDelay", [
3611
3622
  [
3612
3623
  "delay",
3613
3624
  [
@@ -3615,7 +3626,7 @@ let corePlugins = {
3615
3626
  ]
3616
3627
  ]
3617
3628
  ]),
3618
- transitionDuration: (0, _createUtilityPlugin).default("transitionDuration", [
3629
+ transitionDuration: (0, _createUtilityPlugin.default)("transitionDuration", [
3619
3630
  [
3620
3631
  "duration",
3621
3632
  [
@@ -3625,7 +3636,7 @@ let corePlugins = {
3625
3636
  ], {
3626
3637
  filterDefault: true
3627
3638
  }),
3628
- transitionTimingFunction: (0, _createUtilityPlugin).default("transitionTimingFunction", [
3639
+ transitionTimingFunction: (0, _createUtilityPlugin.default)("transitionTimingFunction", [
3629
3640
  [
3630
3641
  "ease",
3631
3642
  [
@@ -3635,7 +3646,7 @@ let corePlugins = {
3635
3646
  ], {
3636
3647
  filterDefault: true
3637
3648
  }),
3638
- willChange: (0, _createUtilityPlugin).default("willChange", [
3649
+ willChange: (0, _createUtilityPlugin.default)("willChange", [
3639
3650
  [
3640
3651
  "will-change",
3641
3652
  [
@@ -3643,7 +3654,7 @@ let corePlugins = {
3643
3654
  ]
3644
3655
  ]
3645
3656
  ]),
3646
- content: (0, _createUtilityPlugin).default("content", [
3657
+ content: (0, _createUtilityPlugin.default)("content", [
3647
3658
  [
3648
3659
  "content",
3649
3660
  [
@@ -3656,4 +3667,3 @@ let corePlugins = {
3656
3667
  ],
3657
3668
  ])
3658
3669
  };
3659
- exports.corePlugins = corePlugins;