tailwindcss 0.0.0-insiders.ea80db2 → 0.0.0-insiders.eae2b7a

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 (213) hide show
  1. package/README.md +13 -9
  2. package/defaultTheme.d.ts +2 -1
  3. package/index.css +5 -0
  4. package/lib/cli/build/index.js +57 -0
  5. package/lib/cli/build/plugin.js +427 -0
  6. package/lib/cli/build/utils.js +88 -0
  7. package/lib/cli/build/watching.js +182 -0
  8. package/lib/cli/help/index.js +73 -0
  9. package/lib/cli/index.js +231 -0
  10. package/lib/cli/init/index.js +63 -0
  11. package/lib/cli.js +1 -759
  12. package/lib/corePluginList.js +12 -3
  13. package/lib/corePlugins.js +2308 -1739
  14. package/lib/css/preflight.css +13 -5
  15. package/lib/featureFlags.js +50 -25
  16. package/lib/index.js +1 -40
  17. package/lib/lib/cacheInvalidation.js +48 -25
  18. package/lib/lib/collapseAdjacentRules.js +17 -10
  19. package/lib/lib/collapseDuplicateDeclarations.js +13 -8
  20. package/lib/lib/content.js +207 -0
  21. package/lib/lib/defaultExtractor.js +232 -33
  22. package/lib/lib/detectNesting.js +21 -10
  23. package/lib/lib/evaluateTailwindFunctions.js +117 -50
  24. package/lib/lib/expandApplyAtRules.js +316 -215
  25. package/lib/lib/expandTailwindAtRules.js +167 -115
  26. package/lib/lib/findAtConfigPath.js +46 -0
  27. package/lib/lib/generateRules.js +444 -211
  28. package/lib/lib/getModuleDependencies.js +88 -37
  29. package/lib/lib/handleImportAtRules.js +50 -0
  30. package/lib/lib/load-config.js +42 -0
  31. package/lib/lib/normalizeTailwindDirectives.js +29 -39
  32. package/lib/lib/offsets.js +306 -0
  33. package/lib/lib/partitionApplyAtRules.js +13 -8
  34. package/lib/lib/regex.js +74 -0
  35. package/lib/lib/remap-bitfield.js +89 -0
  36. package/lib/lib/resolveDefaultsAtRules.js +96 -74
  37. package/lib/lib/setupContextUtils.js +672 -300
  38. package/lib/lib/setupTrackingContext.js +63 -68
  39. package/lib/lib/sharedState.js +44 -17
  40. package/lib/lib/substituteScreenAtRules.js +14 -10
  41. package/lib/plugin.js +160 -0
  42. package/lib/postcss-plugins/nesting/README.md +2 -2
  43. package/lib/postcss-plugins/nesting/index.js +10 -6
  44. package/lib/postcss-plugins/nesting/plugin.js +24 -20
  45. package/lib/processTailwindFeatures.js +34 -29
  46. package/lib/public/colors.js +272 -246
  47. package/lib/public/create-plugin.js +9 -5
  48. package/lib/public/default-config.js +10 -6
  49. package/lib/public/default-theme.js +10 -6
  50. package/lib/public/load-config.js +12 -0
  51. package/lib/public/resolve-config.js +11 -6
  52. package/lib/util/applyImportantSelector.js +36 -0
  53. package/lib/util/bigSign.js +6 -1
  54. package/lib/util/buildMediaQuery.js +13 -6
  55. package/lib/util/cloneDeep.js +9 -6
  56. package/lib/util/cloneNodes.js +12 -3
  57. package/lib/util/color.js +66 -50
  58. package/lib/util/colorNames.js +752 -0
  59. package/lib/util/configurePlugins.js +7 -2
  60. package/lib/util/createPlugin.js +8 -5
  61. package/lib/util/createUtilityPlugin.js +13 -9
  62. package/lib/util/dataTypes.js +182 -111
  63. package/lib/util/defaults.js +12 -7
  64. package/lib/util/escapeClassName.js +13 -8
  65. package/lib/util/escapeCommas.js +7 -2
  66. package/lib/util/flattenColorPalette.js +11 -10
  67. package/lib/util/formatVariantSelector.js +228 -151
  68. package/lib/util/getAllConfigs.js +33 -12
  69. package/lib/util/hashConfig.js +9 -4
  70. package/lib/util/isKeyframeRule.js +7 -2
  71. package/lib/util/isPlainObject.js +7 -2
  72. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +25 -15
  73. package/lib/util/log.js +40 -13
  74. package/lib/util/nameClass.js +27 -10
  75. package/lib/util/negateValue.js +25 -8
  76. package/lib/util/normalizeConfig.js +155 -87
  77. package/lib/util/normalizeScreens.js +127 -8
  78. package/lib/util/parseAnimationValue.js +44 -40
  79. package/lib/util/parseBoxShadowValue.js +33 -62
  80. package/lib/util/parseDependency.js +39 -55
  81. package/lib/util/parseGlob.js +36 -0
  82. package/lib/util/parseObjectStyles.js +15 -10
  83. package/lib/util/pluginUtils.js +154 -59
  84. package/lib/util/prefixSelector.js +29 -10
  85. package/lib/util/pseudoElements.js +209 -0
  86. package/lib/util/removeAlphaVariables.js +31 -0
  87. package/lib/util/resolveConfig.js +96 -95
  88. package/lib/util/resolveConfigPath.js +29 -10
  89. package/lib/util/responsive.js +11 -6
  90. package/lib/util/splitAtTopLevelOnly.js +51 -0
  91. package/lib/util/tap.js +6 -1
  92. package/lib/util/toColorValue.js +7 -2
  93. package/lib/util/toPath.js +22 -4
  94. package/lib/util/transformThemeValue.js +40 -26
  95. package/lib/util/validateConfig.js +48 -0
  96. package/lib/util/validateFormalSyntax.js +26 -0
  97. package/lib/util/withAlphaVariable.js +27 -15
  98. package/lib/value-parser/LICENSE +22 -0
  99. package/lib/value-parser/README.md +3 -0
  100. package/lib/value-parser/index.d.js +2 -0
  101. package/lib/value-parser/index.js +22 -0
  102. package/lib/value-parser/parse.js +259 -0
  103. package/lib/value-parser/stringify.js +38 -0
  104. package/lib/value-parser/unit.js +86 -0
  105. package/lib/value-parser/walk.js +16 -0
  106. package/loadConfig.d.ts +4 -0
  107. package/loadConfig.js +2 -0
  108. package/package.json +54 -52
  109. package/plugin.d.ts +10 -5
  110. package/resolveConfig.d.ts +12 -0
  111. package/scripts/generate-types.js +53 -0
  112. package/scripts/release-channel.js +18 -0
  113. package/scripts/release-notes.js +21 -0
  114. package/scripts/type-utils.js +27 -0
  115. package/src/cli/build/index.js +53 -0
  116. package/src/cli/build/plugin.js +465 -0
  117. package/src/cli/build/utils.js +76 -0
  118. package/src/cli/build/watching.js +229 -0
  119. package/src/cli/help/index.js +70 -0
  120. package/src/cli/index.js +217 -0
  121. package/src/cli/init/index.js +79 -0
  122. package/src/cli.js +1 -836
  123. package/src/corePluginList.js +1 -1
  124. package/src/corePlugins.js +576 -106
  125. package/src/css/preflight.css +13 -5
  126. package/src/featureFlags.js +17 -3
  127. package/src/index.js +1 -42
  128. package/src/lib/collapseAdjacentRules.js +5 -1
  129. package/src/lib/content.js +240 -0
  130. package/src/lib/defaultExtractor.js +202 -35
  131. package/src/lib/detectNesting.js +9 -1
  132. package/src/lib/evaluateTailwindFunctions.js +82 -8
  133. package/src/lib/expandApplyAtRules.js +322 -189
  134. package/src/lib/expandTailwindAtRules.js +82 -59
  135. package/src/lib/findAtConfigPath.js +48 -0
  136. package/src/lib/generateRules.js +413 -132
  137. package/src/lib/getModuleDependencies.js +70 -30
  138. package/src/lib/handleImportAtRules.js +34 -0
  139. package/src/lib/load-config.ts +31 -0
  140. package/src/lib/normalizeTailwindDirectives.js +0 -27
  141. package/src/lib/offsets.js +373 -0
  142. package/src/lib/regex.js +74 -0
  143. package/src/lib/remap-bitfield.js +82 -0
  144. package/src/lib/resolveDefaultsAtRules.js +53 -36
  145. package/src/lib/setupContextUtils.js +570 -151
  146. package/src/lib/setupTrackingContext.js +44 -58
  147. package/src/lib/sharedState.js +13 -4
  148. package/src/plugin.js +128 -0
  149. package/src/postcss-plugins/nesting/README.md +2 -2
  150. package/src/public/colors.js +22 -0
  151. package/src/public/default-config.js +1 -1
  152. package/src/public/default-theme.js +2 -2
  153. package/src/public/load-config.js +2 -0
  154. package/src/util/applyImportantSelector.js +27 -0
  155. package/src/util/buildMediaQuery.js +5 -3
  156. package/src/util/cloneNodes.js +5 -1
  157. package/src/util/color.js +34 -17
  158. package/src/util/colorNames.js +150 -0
  159. package/src/util/dataTypes.js +67 -23
  160. package/src/util/formatVariantSelector.js +264 -144
  161. package/src/util/getAllConfigs.js +21 -2
  162. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  163. package/src/util/log.js +25 -1
  164. package/src/util/nameClass.js +4 -0
  165. package/src/util/negateValue.js +11 -3
  166. package/src/util/normalizeConfig.js +78 -20
  167. package/src/util/normalizeScreens.js +99 -4
  168. package/src/util/parseBoxShadowValue.js +3 -50
  169. package/src/util/parseDependency.js +37 -42
  170. package/src/util/parseGlob.js +24 -0
  171. package/src/util/pluginUtils.js +118 -23
  172. package/src/util/prefixSelector.js +28 -10
  173. package/src/util/pseudoElements.js +167 -0
  174. package/src/util/removeAlphaVariables.js +24 -0
  175. package/src/util/resolveConfig.js +70 -62
  176. package/src/util/resolveConfigPath.js +12 -1
  177. package/src/util/splitAtTopLevelOnly.js +52 -0
  178. package/src/util/toPath.js +1 -1
  179. package/src/util/transformThemeValue.js +13 -3
  180. package/src/util/validateConfig.js +36 -0
  181. package/src/util/validateFormalSyntax.js +34 -0
  182. package/src/util/withAlphaVariable.js +1 -1
  183. package/src/value-parser/LICENSE +22 -0
  184. package/src/value-parser/README.md +3 -0
  185. package/src/value-parser/index.d.ts +177 -0
  186. package/src/value-parser/index.js +28 -0
  187. package/src/value-parser/parse.js +303 -0
  188. package/src/value-parser/stringify.js +41 -0
  189. package/src/value-parser/unit.js +118 -0
  190. package/src/value-parser/walk.js +18 -0
  191. package/stubs/.gitignore +1 -0
  192. package/stubs/.prettierrc.json +6 -0
  193. package/stubs/{defaultConfig.stub.js → config.full.js} +215 -165
  194. package/stubs/{simpleConfig.stub.js → config.simple.js} +1 -1
  195. package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -1
  196. package/stubs/postcss.config.js +5 -0
  197. package/stubs/tailwind.config.cjs +2 -0
  198. package/stubs/tailwind.config.js +2 -0
  199. package/stubs/tailwind.config.ts +3 -0
  200. package/types/config.d.ts +102 -56
  201. package/types/generated/colors.d.ts +22 -0
  202. package/types/generated/corePluginList.d.ts +1 -1
  203. package/types/generated/default-theme.d.ts +372 -0
  204. package/types/index.d.ts +7 -1
  205. package/CHANGELOG.md +0 -2099
  206. package/lib/cli-peer-dependencies.js +0 -15
  207. package/lib/constants.js +0 -37
  208. package/peers/index.js +0 -75156
  209. package/scripts/install-integrations.js +0 -27
  210. package/scripts/rebuildFixtures.js +0 -68
  211. package/src/cli-peer-dependencies.js +0 -9
  212. package/src/constants.js +0 -17
  213. package/types.d.ts +0 -1
@@ -1,109 +1,12 @@
1
1
  module.exports = {
2
- content: [],
2
+ content: ['auto'],
3
3
  presets: [],
4
4
  darkMode: 'media', // or 'class'
5
5
  theme: {
6
- screens: {
7
- sm: '640px',
8
- md: '768px',
9
- lg: '1024px',
10
- xl: '1280px',
11
- '2xl': '1536px',
12
- },
13
- colors: ({ colors }) => ({
14
- inherit: colors.inherit,
15
- current: colors.current,
16
- transparent: colors.transparent,
17
- black: colors.black,
18
- white: colors.white,
19
- slate: colors.slate,
20
- gray: colors.gray,
21
- zinc: colors.zinc,
22
- neutral: colors.neutral,
23
- stone: colors.stone,
24
- red: colors.red,
25
- orange: colors.orange,
26
- amber: colors.amber,
27
- yellow: colors.yellow,
28
- lime: colors.lime,
29
- green: colors.green,
30
- emerald: colors.emerald,
31
- teal: colors.teal,
32
- cyan: colors.cyan,
33
- sky: colors.sky,
34
- blue: colors.blue,
35
- indigo: colors.indigo,
36
- violet: colors.violet,
37
- purple: colors.purple,
38
- fuchsia: colors.fuchsia,
39
- pink: colors.pink,
40
- rose: colors.rose,
41
- }),
42
- columns: {
6
+ accentColor: ({ theme }) => ({
7
+ ...theme('colors'),
43
8
  auto: 'auto',
44
- 1: '1',
45
- 2: '2',
46
- 3: '3',
47
- 4: '4',
48
- 5: '5',
49
- 6: '6',
50
- 7: '7',
51
- 8: '8',
52
- 9: '9',
53
- 10: '10',
54
- 11: '11',
55
- 12: '12',
56
- '3xs': '16rem',
57
- '2xs': '18rem',
58
- xs: '20rem',
59
- sm: '24rem',
60
- md: '28rem',
61
- lg: '32rem',
62
- xl: '36rem',
63
- '2xl': '42rem',
64
- '3xl': '48rem',
65
- '4xl': '56rem',
66
- '5xl': '64rem',
67
- '6xl': '72rem',
68
- '7xl': '80rem',
69
- },
70
- spacing: {
71
- px: '1px',
72
- 0: '0px',
73
- 0.5: '0.125rem',
74
- 1: '0.25rem',
75
- 1.5: '0.375rem',
76
- 2: '0.5rem',
77
- 2.5: '0.625rem',
78
- 3: '0.75rem',
79
- 3.5: '0.875rem',
80
- 4: '1rem',
81
- 5: '1.25rem',
82
- 6: '1.5rem',
83
- 7: '1.75rem',
84
- 8: '2rem',
85
- 9: '2.25rem',
86
- 10: '2.5rem',
87
- 11: '2.75rem',
88
- 12: '3rem',
89
- 14: '3.5rem',
90
- 16: '4rem',
91
- 20: '5rem',
92
- 24: '6rem',
93
- 28: '7rem',
94
- 32: '8rem',
95
- 36: '9rem',
96
- 40: '10rem',
97
- 44: '11rem',
98
- 48: '12rem',
99
- 52: '13rem',
100
- 56: '14rem',
101
- 60: '15rem',
102
- 64: '16rem',
103
- 72: '18rem',
104
- 80: '20rem',
105
- 96: '24rem',
106
- },
9
+ }),
107
10
  animation: {
108
11
  none: 'none',
109
12
  spin: 'spin 1s linear infinite',
@@ -111,6 +14,17 @@ module.exports = {
111
14
  pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
112
15
  bounce: 'bounce 1s infinite',
113
16
  },
17
+ aria: {
18
+ busy: 'busy="true"',
19
+ checked: 'checked="true"',
20
+ disabled: 'disabled="true"',
21
+ expanded: 'expanded="true"',
22
+ hidden: 'hidden="true"',
23
+ pressed: 'pressed="true"',
24
+ readonly: 'readonly="true"',
25
+ required: 'required="true"',
26
+ selected: 'selected="true"',
27
+ },
114
28
  aspectRatio: {
115
29
  auto: 'auto',
116
30
  square: '1 / 1',
@@ -165,19 +79,6 @@ module.exports = {
165
79
  '2xl': '40px',
166
80
  '3xl': '64px',
167
81
  },
168
- brightness: {
169
- 0: '0',
170
- 50: '.5',
171
- 75: '.75',
172
- 90: '.9',
173
- 95: '.95',
174
- 100: '1',
175
- 105: '1.05',
176
- 110: '1.1',
177
- 125: '1.25',
178
- 150: '1.5',
179
- 200: '2',
180
- },
181
82
  borderColor: ({ theme }) => ({
182
83
  ...theme('colors'),
183
84
  DEFAULT: theme('colors.gray.200', 'currentColor'),
@@ -215,24 +116,90 @@ module.exports = {
215
116
  none: 'none',
216
117
  },
217
118
  boxShadowColor: ({ theme }) => theme('colors'),
218
- caretColor: ({ theme }) => theme('colors'),
219
- accentColor: ({ theme }) => ({
220
- ...theme('colors'),
221
- auto: 'auto',
222
- }),
223
- contrast: {
119
+ brightness: {
224
120
  0: '0',
225
121
  50: '.5',
226
122
  75: '.75',
123
+ 90: '.9',
124
+ 95: '.95',
227
125
  100: '1',
126
+ 105: '1.05',
127
+ 110: '1.1',
228
128
  125: '1.25',
229
129
  150: '1.5',
230
130
  200: '2',
231
131
  },
132
+ caretColor: ({ theme }) => theme('colors'),
133
+ colors: ({ colors }) => ({
134
+ inherit: colors.inherit,
135
+ current: colors.current,
136
+ transparent: colors.transparent,
137
+ black: colors.black,
138
+ white: colors.white,
139
+ slate: colors.slate,
140
+ gray: colors.gray,
141
+ zinc: colors.zinc,
142
+ neutral: colors.neutral,
143
+ stone: colors.stone,
144
+ red: colors.red,
145
+ orange: colors.orange,
146
+ amber: colors.amber,
147
+ yellow: colors.yellow,
148
+ lime: colors.lime,
149
+ green: colors.green,
150
+ emerald: colors.emerald,
151
+ teal: colors.teal,
152
+ cyan: colors.cyan,
153
+ sky: colors.sky,
154
+ blue: colors.blue,
155
+ indigo: colors.indigo,
156
+ violet: colors.violet,
157
+ purple: colors.purple,
158
+ fuchsia: colors.fuchsia,
159
+ pink: colors.pink,
160
+ rose: colors.rose,
161
+ }),
162
+ columns: {
163
+ auto: 'auto',
164
+ 1: '1',
165
+ 2: '2',
166
+ 3: '3',
167
+ 4: '4',
168
+ 5: '5',
169
+ 6: '6',
170
+ 7: '7',
171
+ 8: '8',
172
+ 9: '9',
173
+ 10: '10',
174
+ 11: '11',
175
+ 12: '12',
176
+ '3xs': '16rem',
177
+ '2xs': '18rem',
178
+ xs: '20rem',
179
+ sm: '24rem',
180
+ md: '28rem',
181
+ lg: '32rem',
182
+ xl: '36rem',
183
+ '2xl': '42rem',
184
+ '3xl': '48rem',
185
+ '4xl': '56rem',
186
+ '5xl': '64rem',
187
+ '6xl': '72rem',
188
+ '7xl': '80rem',
189
+ },
232
190
  container: {},
233
191
  content: {
234
192
  none: 'none',
235
193
  },
194
+ contrast: {
195
+ 0: '0',
196
+ 50: '.5',
197
+ 75: '.75',
198
+ 100: '1',
199
+ 125: '1.25',
200
+ 150: '1.5',
201
+ 200: '2',
202
+ },
236
203
  cursor: {
237
204
  auto: 'auto',
238
205
  default: 'default',
@@ -283,23 +250,10 @@ module.exports = {
283
250
  '2xl': '0 25px 25px rgb(0 0 0 / 0.15)',
284
251
  none: '0 0 #0000',
285
252
  },
286
- fill: ({ theme }) => theme('colors'),
287
- grayscale: {
288
- 0: '0',
289
- DEFAULT: '100%',
290
- },
291
- hueRotate: {
292
- 0: '0deg',
293
- 15: '15deg',
294
- 30: '30deg',
295
- 60: '60deg',
296
- 90: '90deg',
297
- 180: '180deg',
298
- },
299
- invert: {
300
- 0: '0',
301
- DEFAULT: '100%',
302
- },
253
+ fill: ({ theme }) => ({
254
+ none: 'none',
255
+ ...theme('colors'),
256
+ }),
303
257
  flex: {
304
258
  1: '1 1 0%',
305
259
  auto: '1 1 auto',
@@ -402,6 +356,33 @@ module.exports = {
402
356
  },
403
357
  gap: ({ theme }) => theme('spacing'),
404
358
  gradientColorStops: ({ theme }) => theme('colors'),
359
+ gradientColorStopPositions: {
360
+ '0%': '0%',
361
+ '5%': '5%',
362
+ '10%': '10%',
363
+ '15%': '15%',
364
+ '20%': '20%',
365
+ '25%': '25%',
366
+ '30%': '30%',
367
+ '35%': '35%',
368
+ '40%': '40%',
369
+ '45%': '45%',
370
+ '50%': '50%',
371
+ '55%': '55%',
372
+ '60%': '60%',
373
+ '65%': '65%',
374
+ '70%': '70%',
375
+ '75%': '75%',
376
+ '80%': '80%',
377
+ '85%': '85%',
378
+ '90%': '90%',
379
+ '95%': '95%',
380
+ '100%': '100%',
381
+ },
382
+ grayscale: {
383
+ 0: '0',
384
+ DEFAULT: '100%',
385
+ },
405
386
  gridAutoColumns: {
406
387
  auto: 'auto',
407
388
  min: 'min-content',
@@ -472,7 +453,7 @@ module.exports = {
472
453
  'span-6': 'span 6 / span 6',
473
454
  'span-full': '1 / -1',
474
455
  },
475
- gridRowStart: {
456
+ gridRowEnd: {
476
457
  auto: 'auto',
477
458
  1: '1',
478
459
  2: '2',
@@ -482,7 +463,7 @@ module.exports = {
482
463
  6: '6',
483
464
  7: '7',
484
465
  },
485
- gridRowEnd: {
466
+ gridRowStart: {
486
467
  auto: 'auto',
487
468
  1: '1',
488
469
  2: '2',
@@ -536,10 +517,21 @@ module.exports = {
536
517
  '5/6': '83.333333%',
537
518
  full: '100%',
538
519
  screen: '100vh',
520
+ svh: '100svh',
521
+ lvh: '100lvh',
522
+ dvh: '100dvh',
539
523
  min: 'min-content',
540
524
  max: 'max-content',
541
525
  fit: 'fit-content',
542
526
  }),
527
+ hueRotate: {
528
+ 0: '0deg',
529
+ 15: '15deg',
530
+ 30: '30deg',
531
+ 60: '60deg',
532
+ 90: '90deg',
533
+ 180: '180deg',
534
+ },
543
535
  inset: ({ theme }) => ({
544
536
  auto: 'auto',
545
537
  ...theme('spacing'),
@@ -551,6 +543,10 @@ module.exports = {
551
543
  '3/4': '75%',
552
544
  full: '100%',
553
545
  }),
546
+ invert: {
547
+ 0: '0',
548
+ DEFAULT: '100%',
549
+ },
554
550
  keyframes: {
555
551
  spin: {
556
552
  to: {
@@ -608,14 +604,29 @@ module.exports = {
608
604
  disc: 'disc',
609
605
  decimal: 'decimal',
610
606
  },
607
+ listStyleImage: {
608
+ none: 'none',
609
+ },
611
610
  margin: ({ theme }) => ({
612
611
  auto: 'auto',
613
612
  ...theme('spacing'),
614
613
  }),
614
+ lineClamp: {
615
+ 1: '1',
616
+ 2: '2',
617
+ 3: '3',
618
+ 4: '4',
619
+ 5: '5',
620
+ 6: '6',
621
+ },
615
622
  maxHeight: ({ theme }) => ({
616
623
  ...theme('spacing'),
624
+ none: 'none',
617
625
  full: '100%',
618
626
  screen: '100vh',
627
+ svh: '100svh',
628
+ lvh: '100lvh',
629
+ dvh: '100dvh',
619
630
  min: 'min-content',
620
631
  max: 'max-content',
621
632
  fit: 'fit-content',
@@ -645,6 +656,9 @@ module.exports = {
645
656
  0: '0px',
646
657
  full: '100%',
647
658
  screen: '100vh',
659
+ svh: '100svh',
660
+ lvh: '100lvh',
661
+ dvh: '100dvh',
648
662
  min: 'min-content',
649
663
  max: 'max-content',
650
664
  fit: 'fit-content',
@@ -701,9 +715,6 @@ module.exports = {
701
715
  11: '11',
702
716
  12: '12',
703
717
  },
704
- padding: ({ theme }) => theme('spacing'),
705
- placeholderColor: ({ theme }) => theme('colors'),
706
- placeholderOpacity: ({ theme }) => theme('opacity'),
707
718
  outlineColor: ({ theme }) => theme('colors'),
708
719
  outlineOffset: {
709
720
  0: '0px',
@@ -719,6 +730,9 @@ module.exports = {
719
730
  4: '4px',
720
731
  8: '8px',
721
732
  },
733
+ padding: ({ theme }) => theme('spacing'),
734
+ placeholderColor: ({ theme }) => theme('colors'),
735
+ placeholderOpacity: ({ theme }) => theme('opacity'),
722
736
  ringColor: ({ theme }) => ({
723
737
  DEFAULT: theme('colors.blue.500', '#3b82f6'),
724
738
  ...theme('colors'),
@@ -773,6 +787,13 @@ module.exports = {
773
787
  125: '1.25',
774
788
  150: '1.5',
775
789
  },
790
+ screens: {
791
+ sm: '640px',
792
+ md: '768px',
793
+ lg: '1024px',
794
+ xl: '1280px',
795
+ '2xl': '1536px',
796
+ },
776
797
  scrollMargin: ({ theme }) => ({
777
798
  ...theme('spacing'),
778
799
  }),
@@ -792,12 +813,54 @@ module.exports = {
792
813
  space: ({ theme }) => ({
793
814
  ...theme('spacing'),
794
815
  }),
795
- stroke: ({ theme }) => theme('colors'),
816
+ spacing: {
817
+ px: '1px',
818
+ 0: '0px',
819
+ 0.5: '0.125rem',
820
+ 1: '0.25rem',
821
+ 1.5: '0.375rem',
822
+ 2: '0.5rem',
823
+ 2.5: '0.625rem',
824
+ 3: '0.75rem',
825
+ 3.5: '0.875rem',
826
+ 4: '1rem',
827
+ 5: '1.25rem',
828
+ 6: '1.5rem',
829
+ 7: '1.75rem',
830
+ 8: '2rem',
831
+ 9: '2.25rem',
832
+ 10: '2.5rem',
833
+ 11: '2.75rem',
834
+ 12: '3rem',
835
+ 14: '3.5rem',
836
+ 16: '4rem',
837
+ 20: '5rem',
838
+ 24: '6rem',
839
+ 28: '7rem',
840
+ 32: '8rem',
841
+ 36: '9rem',
842
+ 40: '10rem',
843
+ 44: '11rem',
844
+ 48: '12rem',
845
+ 52: '13rem',
846
+ 56: '14rem',
847
+ 60: '15rem',
848
+ 64: '16rem',
849
+ 72: '18rem',
850
+ 80: '20rem',
851
+ 96: '24rem',
852
+ },
853
+ stroke: ({ theme }) => ({
854
+ none: 'none',
855
+ ...theme('colors'),
856
+ }),
796
857
  strokeWidth: {
797
858
  0: '0',
798
859
  1: '1',
799
860
  2: '2',
800
861
  },
862
+ supports: {},
863
+ data: {},
801
864
  textColor: ({ theme }) => theme('colors'),
802
865
  textDecorationColor: ({ theme }) => theme('colors'),
803
866
  textDecorationThickness: {
@@ -809,6 +872,10 @@ module.exports = {
809
872
  4: '4px',
810
873
  8: '8px',
811
874
  },
875
+ textIndent: ({ theme }) => ({
876
+ ...theme('spacing'),
877
+ }),
878
+ textOpacity: ({ theme }) => theme('opacity'),
812
879
  textUnderlineOffset: {
813
880
  auto: 'auto',
814
881
  0: '0px',
@@ -817,10 +884,6 @@ module.exports = {
817
884
  4: '4px',
818
885
  8: '8px',
819
886
  },
820
- textIndent: ({ theme }) => ({
821
- ...theme('spacing'),
822
- }),
823
- textOpacity: ({ theme }) => theme('opacity'),
824
887
  transformOrigin: {
825
888
  center: 'center',
826
889
  top: 'top',
@@ -833,6 +896,7 @@ module.exports = {
833
896
  'top-left': 'top left',
834
897
  },
835
898
  transitionDelay: {
899
+ 0: '0s',
836
900
  75: '75ms',
837
901
  100: '100ms',
838
902
  150: '150ms',
@@ -844,6 +908,7 @@ module.exports = {
844
908
  },
845
909
  transitionDuration: {
846
910
  DEFAULT: '150ms',
911
+ 0: '0s',
847
912
  75: '75ms',
848
913
  100: '100ms',
849
914
  150: '150ms',
@@ -911,6 +976,9 @@ module.exports = {
911
976
  '11/12': '91.666667%',
912
977
  full: '100%',
913
978
  screen: '100vw',
979
+ svw: '100svw',
980
+ lvw: '100lvw',
981
+ dvw: '100dvw',
914
982
  min: 'min-content',
915
983
  max: 'max-content',
916
984
  fit: 'fit-content',
@@ -931,23 +999,5 @@ module.exports = {
931
999
  50: '50',
932
1000
  },
933
1001
  },
934
- variantOrder: [
935
- 'first',
936
- 'last',
937
- 'odd',
938
- 'even',
939
- 'visited',
940
- 'checked',
941
- 'empty',
942
- 'read-only',
943
- 'group-hover',
944
- 'group-focus',
945
- 'focus-within',
946
- 'hover',
947
- 'focus',
948
- 'focus-visible',
949
- 'active',
950
- 'disabled',
951
- ],
952
1002
  plugins: [],
953
1003
  }
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- content: [],
2
+ content: ['auto'],
3
3
  theme: {
4
4
  extend: {},
5
5
  },
@@ -1,6 +1,5 @@
1
1
  module.exports = {
2
2
  plugins: {
3
3
  tailwindcss: {},
4
- autoprefixer: {},
5
4
  },
6
5
  }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ plugins: {
3
+ tailwindcss: {},
4
+ },
5
+ }
@@ -0,0 +1,2 @@
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = __CONFIG__
@@ -0,0 +1,2 @@
1
+ /** @type {import('tailwindcss').Config} */
2
+ export default __CONFIG__
@@ -0,0 +1,3 @@
1
+ import type { Config } from 'tailwindcss'
2
+
3
+ export default __CONFIG__ satisfies Config