tailwindcss 3.0.24 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/CHANGELOG.md +57 -3
  2. package/colors.d.ts +3 -0
  3. package/defaultConfig.d.ts +3 -0
  4. package/defaultTheme.d.ts +3 -0
  5. package/lib/cli-peer-dependencies.js +8 -3
  6. package/lib/cli.js +118 -77
  7. package/lib/corePluginList.js +1 -0
  8. package/lib/corePlugins.js +146 -117
  9. package/lib/css/preflight.css +1 -8
  10. package/lib/featureFlags.js +8 -6
  11. package/lib/index.js +10 -13
  12. package/lib/lib/cacheInvalidation.js +32 -14
  13. package/lib/lib/collapseAdjacentRules.js +5 -3
  14. package/lib/lib/defaultExtractor.js +191 -32
  15. package/lib/lib/evaluateTailwindFunctions.js +22 -13
  16. package/lib/lib/expandApplyAtRules.js +232 -195
  17. package/lib/lib/expandTailwindAtRules.js +40 -26
  18. package/lib/lib/generateRules.js +106 -42
  19. package/lib/lib/regex.js +52 -0
  20. package/lib/lib/resolveDefaultsAtRules.js +6 -9
  21. package/lib/lib/setupContextUtils.js +131 -79
  22. package/lib/lib/setupTrackingContext.js +7 -9
  23. package/lib/lib/sharedState.js +1 -2
  24. package/lib/lib/substituteScreenAtRules.js +1 -2
  25. package/lib/postcss-plugins/nesting/plugin.js +1 -2
  26. package/lib/util/buildMediaQuery.js +1 -2
  27. package/lib/util/cloneDeep.js +2 -4
  28. package/lib/util/color.js +26 -36
  29. package/lib/util/createPlugin.js +1 -2
  30. package/lib/util/createUtilityPlugin.js +1 -2
  31. package/lib/util/dataTypes.js +14 -12
  32. package/lib/util/flattenColorPalette.js +2 -5
  33. package/lib/util/formatVariantSelector.js +64 -57
  34. package/lib/util/getAllConfigs.js +10 -5
  35. package/lib/util/isValidArbitraryValue.js +1 -2
  36. package/lib/util/log.js +2 -3
  37. package/lib/util/negateValue.js +1 -2
  38. package/lib/util/normalizeConfig.js +33 -23
  39. package/lib/util/normalizeScreens.js +1 -2
  40. package/lib/util/parseAnimationValue.js +1 -2
  41. package/lib/util/parseBoxShadowValue.js +2 -43
  42. package/lib/util/pluginUtils.js +11 -3
  43. package/lib/util/resolveConfig.js +57 -34
  44. package/lib/util/splitAtTopLevelOnly.js +90 -0
  45. package/lib/util/transformThemeValue.js +4 -2
  46. package/lib/util/validateConfig.js +21 -0
  47. package/lib/util/withAlphaVariable.js +5 -5
  48. package/package.json +21 -16
  49. package/peers/index.js +3264 -1330
  50. package/plugin.d.ts +11 -0
  51. package/src/cli-peer-dependencies.js +7 -1
  52. package/src/cli.js +97 -33
  53. package/src/corePluginList.js +1 -1
  54. package/src/corePlugins.js +57 -40
  55. package/src/css/preflight.css +1 -8
  56. package/src/featureFlags.js +2 -2
  57. package/src/index.js +0 -2
  58. package/src/lib/collapseAdjacentRules.js +5 -1
  59. package/src/lib/defaultExtractor.js +177 -35
  60. package/src/lib/evaluateTailwindFunctions.js +20 -4
  61. package/src/lib/expandApplyAtRules.js +247 -188
  62. package/src/lib/expandTailwindAtRules.js +4 -4
  63. package/src/lib/generateRules.js +69 -5
  64. package/src/lib/regex.js +74 -0
  65. package/src/lib/resolveDefaultsAtRules.js +1 -1
  66. package/src/lib/setupContextUtils.js +103 -39
  67. package/src/lib/setupTrackingContext.js +4 -0
  68. package/src/util/color.js +20 -18
  69. package/src/util/dataTypes.js +11 -5
  70. package/src/util/formatVariantSelector.js +79 -62
  71. package/src/util/getAllConfigs.js +7 -0
  72. package/src/util/log.js +1 -1
  73. package/src/util/normalizeConfig.js +0 -8
  74. package/src/util/parseBoxShadowValue.js +3 -50
  75. package/src/util/pluginUtils.js +13 -1
  76. package/src/util/resolveConfig.js +66 -54
  77. package/src/util/splitAtTopLevelOnly.js +71 -0
  78. package/src/util/toPath.js +1 -1
  79. package/src/util/transformThemeValue.js +4 -2
  80. package/src/util/validateConfig.js +13 -0
  81. package/src/util/withAlphaVariable.js +1 -1
  82. package/stubs/defaultConfig.stub.js +2 -3
  83. package/stubs/simpleConfig.stub.js +1 -0
  84. package/types/config.d.ts +325 -0
  85. package/types/generated/.gitkeep +0 -0
  86. package/types/generated/colors.d.ts +276 -0
  87. package/types/generated/corePluginList.d.ts +1 -0
  88. package/types/index.d.ts +1 -0
@@ -0,0 +1,276 @@
1
+ export interface DefaultColors {
2
+ inherit: 'inherit'
3
+ current: 'currentColor'
4
+ transparent: 'transparent'
5
+ black: '#000'
6
+ white: '#fff'
7
+ slate: {
8
+ '50': '#f8fafc'
9
+ '100': '#f1f5f9'
10
+ '200': '#e2e8f0'
11
+ '300': '#cbd5e1'
12
+ '400': '#94a3b8'
13
+ '500': '#64748b'
14
+ '600': '#475569'
15
+ '700': '#334155'
16
+ '800': '#1e293b'
17
+ '900': '#0f172a'
18
+ }
19
+ gray: {
20
+ '50': '#f9fafb'
21
+ '100': '#f3f4f6'
22
+ '200': '#e5e7eb'
23
+ '300': '#d1d5db'
24
+ '400': '#9ca3af'
25
+ '500': '#6b7280'
26
+ '600': '#4b5563'
27
+ '700': '#374151'
28
+ '800': '#1f2937'
29
+ '900': '#111827'
30
+ }
31
+ zinc: {
32
+ '50': '#fafafa'
33
+ '100': '#f4f4f5'
34
+ '200': '#e4e4e7'
35
+ '300': '#d4d4d8'
36
+ '400': '#a1a1aa'
37
+ '500': '#71717a'
38
+ '600': '#52525b'
39
+ '700': '#3f3f46'
40
+ '800': '#27272a'
41
+ '900': '#18181b'
42
+ }
43
+ neutral: {
44
+ '50': '#fafafa'
45
+ '100': '#f5f5f5'
46
+ '200': '#e5e5e5'
47
+ '300': '#d4d4d4'
48
+ '400': '#a3a3a3'
49
+ '500': '#737373'
50
+ '600': '#525252'
51
+ '700': '#404040'
52
+ '800': '#262626'
53
+ '900': '#171717'
54
+ }
55
+ stone: {
56
+ '50': '#fafaf9'
57
+ '100': '#f5f5f4'
58
+ '200': '#e7e5e4'
59
+ '300': '#d6d3d1'
60
+ '400': '#a8a29e'
61
+ '500': '#78716c'
62
+ '600': '#57534e'
63
+ '700': '#44403c'
64
+ '800': '#292524'
65
+ '900': '#1c1917'
66
+ }
67
+ red: {
68
+ '50': '#fef2f2'
69
+ '100': '#fee2e2'
70
+ '200': '#fecaca'
71
+ '300': '#fca5a5'
72
+ '400': '#f87171'
73
+ '500': '#ef4444'
74
+ '600': '#dc2626'
75
+ '700': '#b91c1c'
76
+ '800': '#991b1b'
77
+ '900': '#7f1d1d'
78
+ }
79
+ orange: {
80
+ '50': '#fff7ed'
81
+ '100': '#ffedd5'
82
+ '200': '#fed7aa'
83
+ '300': '#fdba74'
84
+ '400': '#fb923c'
85
+ '500': '#f97316'
86
+ '600': '#ea580c'
87
+ '700': '#c2410c'
88
+ '800': '#9a3412'
89
+ '900': '#7c2d12'
90
+ }
91
+ amber: {
92
+ '50': '#fffbeb'
93
+ '100': '#fef3c7'
94
+ '200': '#fde68a'
95
+ '300': '#fcd34d'
96
+ '400': '#fbbf24'
97
+ '500': '#f59e0b'
98
+ '600': '#d97706'
99
+ '700': '#b45309'
100
+ '800': '#92400e'
101
+ '900': '#78350f'
102
+ }
103
+ yellow: {
104
+ '50': '#fefce8'
105
+ '100': '#fef9c3'
106
+ '200': '#fef08a'
107
+ '300': '#fde047'
108
+ '400': '#facc15'
109
+ '500': '#eab308'
110
+ '600': '#ca8a04'
111
+ '700': '#a16207'
112
+ '800': '#854d0e'
113
+ '900': '#713f12'
114
+ }
115
+ lime: {
116
+ '50': '#f7fee7'
117
+ '100': '#ecfccb'
118
+ '200': '#d9f99d'
119
+ '300': '#bef264'
120
+ '400': '#a3e635'
121
+ '500': '#84cc16'
122
+ '600': '#65a30d'
123
+ '700': '#4d7c0f'
124
+ '800': '#3f6212'
125
+ '900': '#365314'
126
+ }
127
+ green: {
128
+ '50': '#f0fdf4'
129
+ '100': '#dcfce7'
130
+ '200': '#bbf7d0'
131
+ '300': '#86efac'
132
+ '400': '#4ade80'
133
+ '500': '#22c55e'
134
+ '600': '#16a34a'
135
+ '700': '#15803d'
136
+ '800': '#166534'
137
+ '900': '#14532d'
138
+ }
139
+ emerald: {
140
+ '50': '#ecfdf5'
141
+ '100': '#d1fae5'
142
+ '200': '#a7f3d0'
143
+ '300': '#6ee7b7'
144
+ '400': '#34d399'
145
+ '500': '#10b981'
146
+ '600': '#059669'
147
+ '700': '#047857'
148
+ '800': '#065f46'
149
+ '900': '#064e3b'
150
+ }
151
+ teal: {
152
+ '50': '#f0fdfa'
153
+ '100': '#ccfbf1'
154
+ '200': '#99f6e4'
155
+ '300': '#5eead4'
156
+ '400': '#2dd4bf'
157
+ '500': '#14b8a6'
158
+ '600': '#0d9488'
159
+ '700': '#0f766e'
160
+ '800': '#115e59'
161
+ '900': '#134e4a'
162
+ }
163
+ cyan: {
164
+ '50': '#ecfeff'
165
+ '100': '#cffafe'
166
+ '200': '#a5f3fc'
167
+ '300': '#67e8f9'
168
+ '400': '#22d3ee'
169
+ '500': '#06b6d4'
170
+ '600': '#0891b2'
171
+ '700': '#0e7490'
172
+ '800': '#155e75'
173
+ '900': '#164e63'
174
+ }
175
+ sky: {
176
+ '50': '#f0f9ff'
177
+ '100': '#e0f2fe'
178
+ '200': '#bae6fd'
179
+ '300': '#7dd3fc'
180
+ '400': '#38bdf8'
181
+ '500': '#0ea5e9'
182
+ '600': '#0284c7'
183
+ '700': '#0369a1'
184
+ '800': '#075985'
185
+ '900': '#0c4a6e'
186
+ }
187
+ blue: {
188
+ '50': '#eff6ff'
189
+ '100': '#dbeafe'
190
+ '200': '#bfdbfe'
191
+ '300': '#93c5fd'
192
+ '400': '#60a5fa'
193
+ '500': '#3b82f6'
194
+ '600': '#2563eb'
195
+ '700': '#1d4ed8'
196
+ '800': '#1e40af'
197
+ '900': '#1e3a8a'
198
+ }
199
+ indigo: {
200
+ '50': '#eef2ff'
201
+ '100': '#e0e7ff'
202
+ '200': '#c7d2fe'
203
+ '300': '#a5b4fc'
204
+ '400': '#818cf8'
205
+ '500': '#6366f1'
206
+ '600': '#4f46e5'
207
+ '700': '#4338ca'
208
+ '800': '#3730a3'
209
+ '900': '#312e81'
210
+ }
211
+ violet: {
212
+ '50': '#f5f3ff'
213
+ '100': '#ede9fe'
214
+ '200': '#ddd6fe'
215
+ '300': '#c4b5fd'
216
+ '400': '#a78bfa'
217
+ '500': '#8b5cf6'
218
+ '600': '#7c3aed'
219
+ '700': '#6d28d9'
220
+ '800': '#5b21b6'
221
+ '900': '#4c1d95'
222
+ }
223
+ purple: {
224
+ '50': '#faf5ff'
225
+ '100': '#f3e8ff'
226
+ '200': '#e9d5ff'
227
+ '300': '#d8b4fe'
228
+ '400': '#c084fc'
229
+ '500': '#a855f7'
230
+ '600': '#9333ea'
231
+ '700': '#7e22ce'
232
+ '800': '#6b21a8'
233
+ '900': '#581c87'
234
+ }
235
+ fuchsia: {
236
+ '50': '#fdf4ff'
237
+ '100': '#fae8ff'
238
+ '200': '#f5d0fe'
239
+ '300': '#f0abfc'
240
+ '400': '#e879f9'
241
+ '500': '#d946ef'
242
+ '600': '#c026d3'
243
+ '700': '#a21caf'
244
+ '800': '#86198f'
245
+ '900': '#701a75'
246
+ }
247
+ pink: {
248
+ '50': '#fdf2f8'
249
+ '100': '#fce7f3'
250
+ '200': '#fbcfe8'
251
+ '300': '#f9a8d4'
252
+ '400': '#f472b6'
253
+ '500': '#ec4899'
254
+ '600': '#db2777'
255
+ '700': '#be185d'
256
+ '800': '#9d174d'
257
+ '900': '#831843'
258
+ }
259
+ rose: {
260
+ '50': '#fff1f2'
261
+ '100': '#ffe4e6'
262
+ '200': '#fecdd3'
263
+ '300': '#fda4af'
264
+ '400': '#fb7185'
265
+ '500': '#f43f5e'
266
+ '600': '#e11d48'
267
+ '700': '#be123c'
268
+ '800': '#9f1239'
269
+ '900': '#881337'
270
+ }
271
+ /** @deprecated As of Tailwind CSS v2.2, `lightBlue` has been renamed to `sky`. Update your configuration file to silence this warning. */ lightBlue: DefaultColors['sky']
272
+ /** @deprecated As of Tailwind CSS v3.0, `warmGray` has been renamed to `stone`. Update your configuration file to silence this warning. */ warmGray: DefaultColors['stone']
273
+ /** @deprecated As of Tailwind CSS v3.0, `trueGray` has been renamed to `neutral`. Update your configuration file to silence this warning. */ trueGray: DefaultColors['neutral']
274
+ /** @deprecated As of Tailwind CSS v3.0, `coolGray` has been renamed to `gray`. Update your configuration file to silence this warning. */ coolGray: DefaultColors['gray']
275
+ /** @deprecated As of Tailwind CSS v3.0, `blueGray` has been renamed to `slate`. Update your configuration file to silence this warning. */ blueGray: DefaultColors['slate']
276
+ }
@@ -0,0 +1 @@
1
+ export type CorePluginList = 'preflight' | 'container' | 'accessibility' | 'pointerEvents' | 'visibility' | 'position' | 'inset' | 'isolation' | 'zIndex' | 'order' | 'gridColumn' | 'gridColumnStart' | 'gridColumnEnd' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'float' | 'clear' | 'margin' | 'boxSizing' | 'display' | 'aspectRatio' | 'height' | 'maxHeight' | 'minHeight' | 'width' | 'minWidth' | 'maxWidth' | 'flex' | 'flexShrink' | 'flexGrow' | 'flexBasis' | 'tableLayout' | 'borderCollapse' | 'borderSpacing' | 'transformOrigin' | 'translate' | 'rotate' | 'skew' | 'scale' | 'transform' | 'animation' | 'cursor' | 'touchAction' | 'userSelect' | 'resize' | 'scrollSnapType' | 'scrollSnapAlign' | 'scrollSnapStop' | 'scrollMargin' | 'scrollPadding' | 'listStylePosition' | 'listStyleType' | 'appearance' | 'columns' | 'breakBefore' | 'breakInside' | 'breakAfter' | 'gridAutoColumns' | 'gridAutoFlow' | 'gridAutoRows' | 'gridTemplateColumns' | 'gridTemplateRows' | 'flexDirection' | 'flexWrap' | 'placeContent' | 'placeItems' | 'alignContent' | 'alignItems' | 'justifyContent' | 'justifyItems' | 'gap' | 'space' | 'divideWidth' | 'divideStyle' | 'divideColor' | 'divideOpacity' | 'placeSelf' | 'alignSelf' | 'justifySelf' | 'overflow' | 'overscrollBehavior' | 'scrollBehavior' | 'textOverflow' | 'whitespace' | 'wordBreak' | 'borderRadius' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderOpacity' | 'backgroundColor' | 'backgroundOpacity' | 'backgroundImage' | 'gradientColorStops' | 'boxDecorationBreak' | 'backgroundSize' | 'backgroundAttachment' | 'backgroundClip' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundOrigin' | 'fill' | 'stroke' | 'strokeWidth' | 'objectFit' | 'objectPosition' | 'padding' | 'textAlign' | 'textIndent' | 'verticalAlign' | 'fontFamily' | 'fontSize' | 'fontWeight' | 'textTransform' | 'fontStyle' | 'fontVariantNumeric' | 'lineHeight' | 'letterSpacing' | 'textColor' | 'textOpacity' | 'textDecoration' | 'textDecorationColor' | 'textDecorationStyle' | 'textDecorationThickness' | 'textUnderlineOffset' | 'fontSmoothing' | 'placeholderColor' | 'placeholderOpacity' | 'caretColor' | 'accentColor' | 'opacity' | 'backgroundBlendMode' | 'mixBlendMode' | 'boxShadow' | 'boxShadowColor' | 'outlineStyle' | 'outlineWidth' | 'outlineOffset' | 'outlineColor' | 'ringWidth' | 'ringColor' | 'ringOpacity' | 'ringOffsetWidth' | 'ringOffsetColor' | 'blur' | 'brightness' | 'contrast' | 'dropShadow' | 'grayscale' | 'hueRotate' | 'invert' | 'saturate' | 'sepia' | 'filter' | 'backdropBlur' | 'backdropBrightness' | 'backdropContrast' | 'backdropGrayscale' | 'backdropHueRotate' | 'backdropInvert' | 'backdropOpacity' | 'backdropSaturate' | 'backdropSepia' | 'backdropFilter' | 'transitionProperty' | 'transitionDelay' | 'transitionDuration' | 'transitionTimingFunction' | 'willChange' | 'content'
@@ -0,0 +1 @@
1
+ export type { Config } from './config.d'