tailwindcss 0.0.0-insiders.d3e754a → 0.0.0-insiders.d3f2221

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 (217) hide show
  1. package/README.md +13 -9
  2. package/colors.d.ts +3 -0
  3. package/defaultConfig.d.ts +3 -0
  4. package/defaultTheme.d.ts +4 -0
  5. package/index.css +5 -0
  6. package/lib/cli/build/index.js +57 -0
  7. package/lib/cli/build/plugin.js +431 -0
  8. package/lib/cli/build/utils.js +88 -0
  9. package/lib/cli/build/watching.js +182 -0
  10. package/lib/cli/help/index.js +73 -0
  11. package/lib/cli/index.js +231 -0
  12. package/lib/cli/init/index.js +63 -0
  13. package/lib/cli.js +1 -739
  14. package/lib/corePluginList.js +13 -3
  15. package/lib/corePlugins.js +1094 -478
  16. package/lib/css/preflight.css +17 -4
  17. package/lib/featureFlags.js +49 -23
  18. package/lib/index.js +1 -29
  19. package/lib/lib/cacheInvalidation.js +92 -0
  20. package/lib/lib/collapseAdjacentRules.js +12 -5
  21. package/lib/lib/collapseDuplicateDeclarations.js +12 -7
  22. package/lib/lib/content.js +207 -0
  23. package/lib/lib/defaultExtractor.js +217 -33
  24. package/lib/lib/detectNesting.js +15 -4
  25. package/lib/lib/evaluateTailwindFunctions.js +104 -37
  26. package/lib/lib/expandApplyAtRules.js +312 -211
  27. package/lib/lib/expandTailwindAtRules.js +149 -96
  28. package/lib/lib/findAtConfigPath.js +46 -0
  29. package/lib/lib/generateRules.js +437 -188
  30. package/lib/lib/getModuleDependencies.js +88 -37
  31. package/lib/lib/handleImportAtRules.js +50 -0
  32. package/lib/lib/load-config.js +42 -0
  33. package/lib/lib/normalizeTailwindDirectives.js +9 -19
  34. package/lib/lib/offsets.js +306 -0
  35. package/lib/lib/partitionApplyAtRules.js +11 -6
  36. package/lib/lib/regex.js +74 -0
  37. package/lib/lib/remap-bitfield.js +89 -0
  38. package/lib/lib/resolveDefaultsAtRules.js +80 -58
  39. package/lib/lib/setupContextUtils.js +683 -270
  40. package/lib/lib/setupTrackingContext.js +63 -67
  41. package/lib/lib/sharedState.js +39 -10
  42. package/lib/lib/substituteScreenAtRules.js +13 -9
  43. package/lib/plugin.js +164 -0
  44. package/lib/postcss-plugins/nesting/README.md +2 -2
  45. package/lib/postcss-plugins/nesting/index.js +10 -6
  46. package/lib/postcss-plugins/nesting/plugin.js +15 -11
  47. package/lib/processTailwindFeatures.js +33 -28
  48. package/lib/public/colors.js +55 -29
  49. package/lib/public/create-plugin.js +9 -5
  50. package/lib/public/default-config.js +10 -6
  51. package/lib/public/default-theme.js +10 -6
  52. package/lib/public/load-config.js +12 -0
  53. package/lib/public/resolve-config.js +11 -6
  54. package/lib/util/applyImportantSelector.js +36 -0
  55. package/lib/util/bigSign.js +6 -1
  56. package/lib/util/buildMediaQuery.js +12 -5
  57. package/lib/util/cloneDeep.js +8 -5
  58. package/lib/util/cloneNodes.js +11 -2
  59. package/lib/util/color.js +59 -42
  60. package/lib/util/colorNames.js +752 -0
  61. package/lib/util/configurePlugins.js +7 -2
  62. package/lib/util/createPlugin.js +8 -5
  63. package/lib/util/createUtilityPlugin.js +15 -11
  64. package/lib/util/dataTypes.js +172 -47
  65. package/lib/util/defaults.js +12 -7
  66. package/lib/util/escapeClassName.js +13 -8
  67. package/lib/util/escapeCommas.js +6 -1
  68. package/lib/util/flattenColorPalette.js +9 -8
  69. package/lib/util/formatVariantSelector.js +230 -151
  70. package/lib/util/getAllConfigs.js +34 -12
  71. package/lib/util/hashConfig.js +9 -4
  72. package/lib/util/isKeyframeRule.js +6 -1
  73. package/lib/util/isPlainObject.js +6 -1
  74. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +15 -5
  75. package/lib/util/log.js +36 -9
  76. package/lib/util/nameClass.js +24 -7
  77. package/lib/util/negateValue.js +23 -6
  78. package/lib/util/normalizeConfig.js +142 -69
  79. package/lib/util/normalizeScreens.js +124 -5
  80. package/lib/util/parseAnimationValue.js +8 -4
  81. package/lib/util/parseBoxShadowValue.js +16 -45
  82. package/lib/util/parseDependency.js +38 -54
  83. package/lib/util/parseGlob.js +36 -0
  84. package/lib/util/parseObjectStyles.js +14 -9
  85. package/lib/util/pluginUtils.js +146 -51
  86. package/lib/util/prefixSelector.js +29 -10
  87. package/lib/util/pseudoElements.js +209 -0
  88. package/lib/util/removeAlphaVariables.js +31 -0
  89. package/lib/util/resolveConfig.js +100 -73
  90. package/lib/util/resolveConfigPath.js +27 -8
  91. package/lib/util/responsive.js +10 -5
  92. package/lib/util/splitAtTopLevelOnly.js +51 -0
  93. package/lib/util/tap.js +6 -1
  94. package/lib/util/toColorValue.js +6 -1
  95. package/lib/util/toPath.js +20 -2
  96. package/lib/util/transformThemeValue.js +21 -7
  97. package/lib/util/validateConfig.js +48 -0
  98. package/lib/util/validateFormalSyntax.js +26 -0
  99. package/lib/util/withAlphaVariable.js +24 -12
  100. package/lib/value-parser/LICENSE +22 -0
  101. package/lib/value-parser/README.md +3 -0
  102. package/lib/value-parser/index.d.js +2 -0
  103. package/lib/value-parser/index.js +22 -0
  104. package/lib/value-parser/parse.js +259 -0
  105. package/lib/value-parser/stringify.js +38 -0
  106. package/lib/value-parser/unit.js +86 -0
  107. package/lib/value-parser/walk.js +16 -0
  108. package/loadConfig.d.ts +4 -0
  109. package/loadConfig.js +2 -0
  110. package/package.json +58 -53
  111. package/plugin.d.ts +11 -0
  112. package/resolveConfig.d.ts +12 -0
  113. package/scripts/generate-types.js +105 -0
  114. package/scripts/release-channel.js +18 -0
  115. package/scripts/release-notes.js +21 -0
  116. package/scripts/type-utils.js +27 -0
  117. package/src/cli/build/index.js +53 -0
  118. package/src/cli/build/plugin.js +469 -0
  119. package/src/cli/build/utils.js +76 -0
  120. package/src/cli/build/watching.js +229 -0
  121. package/src/cli/help/index.js +70 -0
  122. package/src/cli/index.js +217 -0
  123. package/src/cli/init/index.js +79 -0
  124. package/src/cli.js +1 -813
  125. package/src/corePluginList.js +1 -1
  126. package/src/corePlugins.js +636 -117
  127. package/src/css/preflight.css +17 -4
  128. package/src/featureFlags.js +13 -3
  129. package/src/index.js +1 -28
  130. package/src/lib/cacheInvalidation.js +52 -0
  131. package/src/lib/collapseAdjacentRules.js +5 -1
  132. package/src/lib/content.js +240 -0
  133. package/src/lib/defaultExtractor.js +192 -35
  134. package/src/lib/detectNesting.js +9 -1
  135. package/src/lib/evaluateTailwindFunctions.js +82 -8
  136. package/src/lib/expandApplyAtRules.js +322 -189
  137. package/src/lib/expandTailwindAtRules.js +87 -60
  138. package/src/lib/findAtConfigPath.js +48 -0
  139. package/src/lib/generateRules.js +428 -128
  140. package/src/lib/getModuleDependencies.js +70 -30
  141. package/src/lib/handleImportAtRules.js +34 -0
  142. package/src/lib/load-config.ts +31 -0
  143. package/src/lib/normalizeTailwindDirectives.js +0 -27
  144. package/src/lib/offsets.js +373 -0
  145. package/src/lib/regex.js +74 -0
  146. package/src/lib/remap-bitfield.js +82 -0
  147. package/src/lib/resolveDefaultsAtRules.js +53 -36
  148. package/src/lib/setupContextUtils.js +608 -157
  149. package/src/lib/setupTrackingContext.js +44 -58
  150. package/src/lib/sharedState.js +14 -4
  151. package/src/plugin.js +133 -0
  152. package/src/postcss-plugins/nesting/README.md +2 -2
  153. package/src/processTailwindFeatures.js +3 -2
  154. package/src/public/colors.js +22 -0
  155. package/src/public/default-config.js +1 -1
  156. package/src/public/default-theme.js +2 -2
  157. package/src/public/load-config.js +2 -0
  158. package/src/util/applyImportantSelector.js +27 -0
  159. package/src/util/buildMediaQuery.js +5 -3
  160. package/src/util/cloneNodes.js +5 -1
  161. package/src/util/color.js +39 -20
  162. package/src/util/colorNames.js +150 -0
  163. package/src/util/dataTypes.js +115 -23
  164. package/src/util/formatVariantSelector.js +265 -144
  165. package/src/util/getAllConfigs.js +21 -2
  166. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  167. package/src/util/log.js +25 -1
  168. package/src/util/nameClass.js +4 -0
  169. package/src/util/negateValue.js +11 -3
  170. package/src/util/normalizeConfig.js +78 -20
  171. package/src/util/normalizeScreens.js +99 -4
  172. package/src/util/parseBoxShadowValue.js +3 -50
  173. package/src/util/parseDependency.js +37 -42
  174. package/src/util/parseGlob.js +24 -0
  175. package/src/util/pluginUtils.js +118 -23
  176. package/src/util/prefixSelector.js +29 -10
  177. package/src/util/pseudoElements.js +167 -0
  178. package/src/util/removeAlphaVariables.js +24 -0
  179. package/src/util/resolveConfig.js +70 -32
  180. package/src/util/resolveConfigPath.js +12 -1
  181. package/src/util/splitAtTopLevelOnly.js +52 -0
  182. package/src/util/toPath.js +1 -1
  183. package/src/util/transformThemeValue.js +13 -3
  184. package/src/util/validateConfig.js +36 -0
  185. package/src/util/validateFormalSyntax.js +34 -0
  186. package/src/util/withAlphaVariable.js +1 -1
  187. package/src/value-parser/LICENSE +22 -0
  188. package/src/value-parser/README.md +3 -0
  189. package/src/value-parser/index.d.ts +177 -0
  190. package/src/value-parser/index.js +28 -0
  191. package/src/value-parser/parse.js +303 -0
  192. package/src/value-parser/stringify.js +41 -0
  193. package/src/value-parser/unit.js +118 -0
  194. package/src/value-parser/walk.js +18 -0
  195. package/stubs/.gitignore +1 -0
  196. package/stubs/.prettierrc.json +6 -0
  197. package/stubs/{defaultConfig.stub.js → config.full.js} +224 -172
  198. package/stubs/{simpleConfig.stub.js → config.simple.js} +1 -1
  199. package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -1
  200. package/stubs/postcss.config.js +5 -0
  201. package/stubs/tailwind.config.cjs +2 -0
  202. package/stubs/tailwind.config.js +2 -0
  203. package/stubs/tailwind.config.ts +3 -0
  204. package/types/config.d.ts +369 -0
  205. package/types/generated/.gitkeep +0 -0
  206. package/types/generated/colors.d.ts +298 -0
  207. package/types/generated/corePluginList.d.ts +1 -0
  208. package/types/generated/default-theme.d.ts +378 -0
  209. package/types/index.d.ts +7 -0
  210. package/CHANGELOG.md +0 -2075
  211. package/lib/cli-peer-dependencies.js +0 -15
  212. package/lib/constants.js +0 -37
  213. package/peers/index.js +0 -75077
  214. package/scripts/install-integrations.js +0 -27
  215. package/scripts/rebuildFixtures.js +0 -68
  216. package/src/cli-peer-dependencies.js +0 -9
  217. package/src/constants.js +0 -17
@@ -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'),
@@ -194,6 +95,9 @@ module.exports = {
194
95
  '3xl': '1.5rem',
195
96
  full: '9999px',
196
97
  },
98
+ borderSpacing: ({ theme }) => ({
99
+ ...theme('spacing'),
100
+ }),
197
101
  borderWidth: {
198
102
  DEFAULT: '1px',
199
103
  0: '0px',
@@ -212,24 +116,90 @@ module.exports = {
212
116
  none: 'none',
213
117
  },
214
118
  boxShadowColor: ({ theme }) => theme('colors'),
215
- caretColor: ({ theme }) => theme('colors'),
216
- accentColor: ({ theme }) => ({
217
- ...theme('colors'),
218
- auto: 'auto',
219
- }),
220
- contrast: {
119
+ brightness: {
221
120
  0: '0',
222
121
  50: '.5',
223
122
  75: '.75',
123
+ 90: '.9',
124
+ 95: '.95',
224
125
  100: '1',
126
+ 105: '1.05',
127
+ 110: '1.1',
225
128
  125: '1.25',
226
129
  150: '1.5',
227
130
  200: '2',
228
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
+ },
229
190
  container: {},
230
191
  content: {
231
192
  none: 'none',
232
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
+ },
233
203
  cursor: {
234
204
  auto: 'auto',
235
205
  default: 'default',
@@ -280,23 +250,10 @@ module.exports = {
280
250
  '2xl': '0 25px 25px rgb(0 0 0 / 0.15)',
281
251
  none: '0 0 #0000',
282
252
  },
283
- fill: ({ theme }) => theme('colors'),
284
- grayscale: {
285
- 0: '0',
286
- DEFAULT: '100%',
287
- },
288
- hueRotate: {
289
- 0: '0deg',
290
- 15: '15deg',
291
- 30: '30deg',
292
- 60: '60deg',
293
- 90: '90deg',
294
- 180: '180deg',
295
- },
296
- invert: {
297
- 0: '0',
298
- DEFAULT: '100%',
299
- },
253
+ fill: ({ theme }) => ({
254
+ none: 'none',
255
+ ...theme('colors'),
256
+ }),
300
257
  flex: {
301
258
  1: '1 1 0%',
302
259
  auto: '1 1 auto',
@@ -346,13 +303,6 @@ module.exports = {
346
303
  sans: [
347
304
  'ui-sans-serif',
348
305
  'system-ui',
349
- '-apple-system',
350
- 'BlinkMacSystemFont',
351
- '"Segoe UI"',
352
- 'Roboto',
353
- '"Helvetica Neue"',
354
- 'Arial',
355
- '"Noto Sans"',
356
306
  'sans-serif',
357
307
  '"Apple Color Emoji"',
358
308
  '"Segoe UI Emoji"',
@@ -399,6 +349,33 @@ module.exports = {
399
349
  },
400
350
  gap: ({ theme }) => theme('spacing'),
401
351
  gradientColorStops: ({ theme }) => theme('colors'),
352
+ gradientColorStopPositions: {
353
+ '0%': '0%',
354
+ '5%': '5%',
355
+ '10%': '10%',
356
+ '15%': '15%',
357
+ '20%': '20%',
358
+ '25%': '25%',
359
+ '30%': '30%',
360
+ '35%': '35%',
361
+ '40%': '40%',
362
+ '45%': '45%',
363
+ '50%': '50%',
364
+ '55%': '55%',
365
+ '60%': '60%',
366
+ '65%': '65%',
367
+ '70%': '70%',
368
+ '75%': '75%',
369
+ '80%': '80%',
370
+ '85%': '85%',
371
+ '90%': '90%',
372
+ '95%': '95%',
373
+ '100%': '100%',
374
+ },
375
+ grayscale: {
376
+ 0: '0',
377
+ DEFAULT: '100%',
378
+ },
402
379
  gridAutoColumns: {
403
380
  auto: 'auto',
404
381
  min: 'min-content',
@@ -469,7 +446,7 @@ module.exports = {
469
446
  'span-6': 'span 6 / span 6',
470
447
  'span-full': '1 / -1',
471
448
  },
472
- gridRowStart: {
449
+ gridRowEnd: {
473
450
  auto: 'auto',
474
451
  1: '1',
475
452
  2: '2',
@@ -479,7 +456,7 @@ module.exports = {
479
456
  6: '6',
480
457
  7: '7',
481
458
  },
482
- gridRowEnd: {
459
+ gridRowStart: {
483
460
  auto: 'auto',
484
461
  1: '1',
485
462
  2: '2',
@@ -533,10 +510,21 @@ module.exports = {
533
510
  '5/6': '83.333333%',
534
511
  full: '100%',
535
512
  screen: '100vh',
513
+ svh: '100svh',
514
+ lvh: '100lvh',
515
+ dvh: '100dvh',
536
516
  min: 'min-content',
537
517
  max: 'max-content',
538
518
  fit: 'fit-content',
539
519
  }),
520
+ hueRotate: {
521
+ 0: '0deg',
522
+ 15: '15deg',
523
+ 30: '30deg',
524
+ 60: '60deg',
525
+ 90: '90deg',
526
+ 180: '180deg',
527
+ },
540
528
  inset: ({ theme }) => ({
541
529
  auto: 'auto',
542
530
  ...theme('spacing'),
@@ -548,6 +536,10 @@ module.exports = {
548
536
  '3/4': '75%',
549
537
  full: '100%',
550
538
  }),
539
+ invert: {
540
+ 0: '0',
541
+ DEFAULT: '100%',
542
+ },
551
543
  keyframes: {
552
544
  spin: {
553
545
  to: {
@@ -605,14 +597,29 @@ module.exports = {
605
597
  disc: 'disc',
606
598
  decimal: 'decimal',
607
599
  },
600
+ listStyleImage: {
601
+ none: 'none',
602
+ },
608
603
  margin: ({ theme }) => ({
609
604
  auto: 'auto',
610
605
  ...theme('spacing'),
611
606
  }),
607
+ lineClamp: {
608
+ 1: '1',
609
+ 2: '2',
610
+ 3: '3',
611
+ 4: '4',
612
+ 5: '5',
613
+ 6: '6',
614
+ },
612
615
  maxHeight: ({ theme }) => ({
613
616
  ...theme('spacing'),
617
+ none: 'none',
614
618
  full: '100%',
615
619
  screen: '100vh',
620
+ svh: '100svh',
621
+ lvh: '100lvh',
622
+ dvh: '100dvh',
616
623
  min: 'min-content',
617
624
  max: 'max-content',
618
625
  fit: 'fit-content',
@@ -642,6 +649,9 @@ module.exports = {
642
649
  0: '0px',
643
650
  full: '100%',
644
651
  screen: '100vh',
652
+ svh: '100svh',
653
+ lvh: '100lvh',
654
+ dvh: '100dvh',
645
655
  min: 'min-content',
646
656
  max: 'max-content',
647
657
  fit: 'fit-content',
@@ -668,15 +678,21 @@ module.exports = {
668
678
  0: '0',
669
679
  5: '0.05',
670
680
  10: '0.1',
681
+ 15: '0.15',
671
682
  20: '0.2',
672
683
  25: '0.25',
673
684
  30: '0.3',
685
+ 35: '0.35',
674
686
  40: '0.4',
687
+ 45: '0.45',
675
688
  50: '0.5',
689
+ 55: '0.55',
676
690
  60: '0.6',
691
+ 65: '0.65',
677
692
  70: '0.7',
678
693
  75: '0.75',
679
694
  80: '0.8',
695
+ 85: '0.85',
680
696
  90: '0.9',
681
697
  95: '0.95',
682
698
  100: '1',
@@ -698,9 +714,6 @@ module.exports = {
698
714
  11: '11',
699
715
  12: '12',
700
716
  },
701
- padding: ({ theme }) => theme('spacing'),
702
- placeholderColor: ({ theme }) => theme('colors'),
703
- placeholderOpacity: ({ theme }) => theme('opacity'),
704
717
  outlineColor: ({ theme }) => theme('colors'),
705
718
  outlineOffset: {
706
719
  0: '0px',
@@ -716,6 +729,9 @@ module.exports = {
716
729
  4: '4px',
717
730
  8: '8px',
718
731
  },
732
+ padding: ({ theme }) => theme('spacing'),
733
+ placeholderColor: ({ theme }) => theme('colors'),
734
+ placeholderOpacity: ({ theme }) => theme('opacity'),
719
735
  ringColor: ({ theme }) => ({
720
736
  DEFAULT: theme('colors.blue.500', '#3b82f6'),
721
737
  ...theme('colors'),
@@ -770,6 +786,13 @@ module.exports = {
770
786
  125: '1.25',
771
787
  150: '1.5',
772
788
  },
789
+ screens: {
790
+ sm: '640px',
791
+ md: '768px',
792
+ lg: '1024px',
793
+ xl: '1280px',
794
+ '2xl': '1536px',
795
+ },
773
796
  scrollMargin: ({ theme }) => ({
774
797
  ...theme('spacing'),
775
798
  }),
@@ -789,12 +812,54 @@ module.exports = {
789
812
  space: ({ theme }) => ({
790
813
  ...theme('spacing'),
791
814
  }),
792
- stroke: ({ theme }) => theme('colors'),
815
+ spacing: {
816
+ px: '1px',
817
+ 0: '0px',
818
+ 0.5: '0.125rem',
819
+ 1: '0.25rem',
820
+ 1.5: '0.375rem',
821
+ 2: '0.5rem',
822
+ 2.5: '0.625rem',
823
+ 3: '0.75rem',
824
+ 3.5: '0.875rem',
825
+ 4: '1rem',
826
+ 5: '1.25rem',
827
+ 6: '1.5rem',
828
+ 7: '1.75rem',
829
+ 8: '2rem',
830
+ 9: '2.25rem',
831
+ 10: '2.5rem',
832
+ 11: '2.75rem',
833
+ 12: '3rem',
834
+ 14: '3.5rem',
835
+ 16: '4rem',
836
+ 20: '5rem',
837
+ 24: '6rem',
838
+ 28: '7rem',
839
+ 32: '8rem',
840
+ 36: '9rem',
841
+ 40: '10rem',
842
+ 44: '11rem',
843
+ 48: '12rem',
844
+ 52: '13rem',
845
+ 56: '14rem',
846
+ 60: '15rem',
847
+ 64: '16rem',
848
+ 72: '18rem',
849
+ 80: '20rem',
850
+ 96: '24rem',
851
+ },
852
+ stroke: ({ theme }) => ({
853
+ none: 'none',
854
+ ...theme('colors'),
855
+ }),
793
856
  strokeWidth: {
794
857
  0: '0',
795
858
  1: '1',
796
859
  2: '2',
797
860
  },
861
+ supports: {},
862
+ data: {},
798
863
  textColor: ({ theme }) => theme('colors'),
799
864
  textDecorationColor: ({ theme }) => theme('colors'),
800
865
  textDecorationThickness: {
@@ -806,6 +871,10 @@ module.exports = {
806
871
  4: '4px',
807
872
  8: '8px',
808
873
  },
874
+ textIndent: ({ theme }) => ({
875
+ ...theme('spacing'),
876
+ }),
877
+ textOpacity: ({ theme }) => theme('opacity'),
809
878
  textUnderlineOffset: {
810
879
  auto: 'auto',
811
880
  0: '0px',
@@ -814,10 +883,6 @@ module.exports = {
814
883
  4: '4px',
815
884
  8: '8px',
816
885
  },
817
- textIndent: ({ theme }) => ({
818
- ...theme('spacing'),
819
- }),
820
- textOpacity: ({ theme }) => theme('opacity'),
821
886
  transformOrigin: {
822
887
  center: 'center',
823
888
  top: 'top',
@@ -830,6 +895,7 @@ module.exports = {
830
895
  'top-left': 'top left',
831
896
  },
832
897
  transitionDelay: {
898
+ 0: '0s',
833
899
  75: '75ms',
834
900
  100: '100ms',
835
901
  150: '150ms',
@@ -841,6 +907,7 @@ module.exports = {
841
907
  },
842
908
  transitionDuration: {
843
909
  DEFAULT: '150ms',
910
+ 0: '0s',
844
911
  75: '75ms',
845
912
  100: '100ms',
846
913
  150: '150ms',
@@ -908,6 +975,9 @@ module.exports = {
908
975
  '11/12': '91.666667%',
909
976
  full: '100%',
910
977
  screen: '100vw',
978
+ svw: '100svw',
979
+ lvw: '100lvw',
980
+ dvw: '100dvw',
911
981
  min: 'min-content',
912
982
  max: 'max-content',
913
983
  fit: 'fit-content',
@@ -928,23 +998,5 @@ module.exports = {
928
998
  50: '50',
929
999
  },
930
1000
  },
931
- variantOrder: [
932
- 'first',
933
- 'last',
934
- 'odd',
935
- 'even',
936
- 'visited',
937
- 'checked',
938
- 'empty',
939
- 'read-only',
940
- 'group-hover',
941
- 'group-focus',
942
- 'focus-within',
943
- 'hover',
944
- 'focus',
945
- 'focus-visible',
946
- 'active',
947
- 'disabled',
948
- ],
949
1001
  plugins: [],
950
1002
  }
@@ -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