tailwindcss 0.0.0-insiders.fe08e91 → 0.0.0-oxide.6bf5e56

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 (176) hide show
  1. package/CHANGELOG.md +379 -3
  2. package/LICENSE +1 -2
  3. package/README.md +12 -8
  4. package/colors.d.ts +3 -0
  5. package/defaultConfig.d.ts +3 -0
  6. package/defaultTheme.d.ts +4 -0
  7. package/lib/cli/build/deps.js +54 -0
  8. package/lib/cli/build/index.js +48 -0
  9. package/lib/cli/build/plugin.js +367 -0
  10. package/lib/cli/build/utils.js +78 -0
  11. package/lib/cli/build/watching.js +178 -0
  12. package/lib/cli/help/index.js +71 -0
  13. package/lib/cli/index.js +18 -0
  14. package/lib/cli/init/index.js +46 -0
  15. package/lib/cli/shared.js +13 -0
  16. package/lib/cli-peer-dependencies.js +20 -7
  17. package/lib/cli.js +107 -611
  18. package/lib/constants.js +27 -20
  19. package/lib/corePluginList.js +6 -3
  20. package/lib/corePlugins.js +2064 -1811
  21. package/lib/css/preflight.css +5 -5
  22. package/lib/featureFlags.js +31 -22
  23. package/lib/index.js +28 -10
  24. package/lib/lib/cacheInvalidation.js +90 -0
  25. package/lib/lib/collapseAdjacentRules.js +27 -9
  26. package/lib/lib/collapseDuplicateDeclarations.js +12 -9
  27. package/lib/lib/content.js +176 -0
  28. package/lib/lib/defaultExtractor.js +225 -31
  29. package/lib/lib/detectNesting.js +13 -10
  30. package/lib/lib/evaluateTailwindFunctions.js +118 -55
  31. package/lib/lib/expandApplyAtRules.js +439 -190
  32. package/lib/lib/expandTailwindAtRules.js +151 -134
  33. package/lib/lib/findAtConfigPath.js +44 -0
  34. package/lib/lib/generateRules.js +454 -187
  35. package/lib/lib/getModuleDependencies.js +11 -8
  36. package/lib/lib/normalizeTailwindDirectives.js +36 -32
  37. package/lib/lib/offsets.js +217 -0
  38. package/lib/lib/partitionApplyAtRules.js +56 -0
  39. package/lib/lib/regex.js +60 -0
  40. package/lib/lib/resolveDefaultsAtRules.js +89 -67
  41. package/lib/lib/setupContextUtils.js +667 -376
  42. package/lib/lib/setupTrackingContext.js +38 -67
  43. package/lib/lib/sharedState.js +27 -14
  44. package/lib/lib/substituteScreenAtRules.js +11 -9
  45. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  46. package/lib/postcss-plugins/nesting/index.js +19 -0
  47. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  48. package/lib/processTailwindFeatures.js +35 -25
  49. package/lib/public/colors.js +247 -245
  50. package/lib/public/create-plugin.js +6 -4
  51. package/lib/public/default-config.js +7 -5
  52. package/lib/public/default-theme.js +7 -5
  53. package/lib/public/resolve-config.js +8 -5
  54. package/lib/util/bigSign.js +4 -1
  55. package/lib/util/buildMediaQuery.js +11 -6
  56. package/lib/util/cloneDeep.js +7 -6
  57. package/lib/util/cloneNodes.js +21 -3
  58. package/lib/util/color.js +53 -54
  59. package/lib/util/configurePlugins.js +5 -2
  60. package/lib/util/createPlugin.js +6 -6
  61. package/lib/util/createUtilityPlugin.js +12 -14
  62. package/lib/util/dataTypes.js +119 -110
  63. package/lib/util/defaults.js +4 -1
  64. package/lib/util/escapeClassName.js +7 -4
  65. package/lib/util/escapeCommas.js +5 -2
  66. package/lib/util/flattenColorPalette.js +9 -12
  67. package/lib/util/formatVariantSelector.js +184 -85
  68. package/lib/util/getAllConfigs.js +27 -8
  69. package/lib/util/hashConfig.js +6 -3
  70. package/lib/util/isKeyframeRule.js +5 -2
  71. package/lib/util/isPlainObject.js +5 -2
  72. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +23 -15
  73. package/lib/util/log.js +20 -14
  74. package/lib/util/nameClass.js +20 -9
  75. package/lib/util/negateValue.js +23 -8
  76. package/lib/util/normalizeConfig.js +116 -72
  77. package/lib/util/normalizeScreens.js +120 -11
  78. package/lib/util/parseAnimationValue.js +42 -40
  79. package/lib/util/parseBoxShadowValue.js +30 -23
  80. package/lib/util/parseDependency.js +38 -56
  81. package/lib/util/parseGlob.js +34 -0
  82. package/lib/util/parseObjectStyles.js +11 -8
  83. package/lib/util/pluginUtils.js +147 -50
  84. package/lib/util/prefixSelector.js +10 -8
  85. package/lib/util/removeAlphaVariables.js +29 -0
  86. package/lib/util/resolveConfig.js +97 -85
  87. package/lib/util/resolveConfigPath.js +11 -9
  88. package/lib/util/responsive.js +8 -5
  89. package/lib/util/splitAtTopLevelOnly.js +43 -0
  90. package/lib/util/tap.js +4 -1
  91. package/lib/util/toColorValue.js +5 -3
  92. package/lib/util/toPath.js +20 -4
  93. package/lib/util/transformThemeValue.js +37 -29
  94. package/lib/util/validateConfig.js +24 -0
  95. package/lib/util/validateFormalSyntax.js +24 -0
  96. package/lib/util/withAlphaVariable.js +23 -15
  97. package/nesting/index.js +2 -12
  98. package/package.json +47 -42
  99. package/peers/index.js +11381 -7950
  100. package/plugin.d.ts +11 -0
  101. package/resolveConfig.d.ts +12 -0
  102. package/scripts/generate-types.js +105 -0
  103. package/scripts/release-channel.js +18 -0
  104. package/scripts/release-notes.js +21 -0
  105. package/scripts/type-utils.js +27 -0
  106. package/src/cli/build/deps.js +56 -0
  107. package/src/cli/build/index.js +49 -0
  108. package/src/cli/build/plugin.js +439 -0
  109. package/src/cli/build/utils.js +76 -0
  110. package/src/cli/build/watching.js +227 -0
  111. package/src/cli/help/index.js +70 -0
  112. package/src/cli/index.js +3 -0
  113. package/src/cli/init/index.js +50 -0
  114. package/src/cli/shared.js +6 -0
  115. package/src/cli-peer-dependencies.js +7 -1
  116. package/src/cli.js +50 -629
  117. package/src/corePluginList.js +1 -1
  118. package/src/corePlugins.js +532 -217
  119. package/src/css/preflight.css +5 -5
  120. package/src/featureFlags.js +15 -9
  121. package/src/index.js +20 -1
  122. package/src/lib/cacheInvalidation.js +52 -0
  123. package/src/lib/collapseAdjacentRules.js +21 -2
  124. package/src/lib/content.js +212 -0
  125. package/src/lib/defaultExtractor.js +196 -33
  126. package/src/lib/evaluateTailwindFunctions.js +78 -7
  127. package/src/lib/expandApplyAtRules.js +482 -183
  128. package/src/lib/expandTailwindAtRules.js +106 -85
  129. package/src/lib/findAtConfigPath.js +48 -0
  130. package/src/lib/generateRules.js +418 -129
  131. package/src/lib/normalizeTailwindDirectives.js +1 -0
  132. package/src/lib/offsets.js +270 -0
  133. package/src/lib/partitionApplyAtRules.js +52 -0
  134. package/src/lib/regex.js +74 -0
  135. package/src/lib/resolveDefaultsAtRules.js +51 -30
  136. package/src/lib/setupContextUtils.js +556 -208
  137. package/src/lib/setupTrackingContext.js +11 -48
  138. package/src/lib/sharedState.js +5 -0
  139. package/src/postcss-plugins/nesting/README.md +42 -0
  140. package/src/postcss-plugins/nesting/index.js +13 -0
  141. package/src/postcss-plugins/nesting/plugin.js +80 -0
  142. package/src/processTailwindFeatures.js +8 -0
  143. package/src/util/buildMediaQuery.js +5 -3
  144. package/src/util/cloneNodes.js +19 -2
  145. package/src/util/color.js +25 -21
  146. package/src/util/dataTypes.js +29 -21
  147. package/src/util/formatVariantSelector.js +184 -61
  148. package/src/util/getAllConfigs.js +19 -0
  149. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  150. package/src/util/log.js +8 -8
  151. package/src/util/nameClass.js +4 -0
  152. package/src/util/negateValue.js +11 -3
  153. package/src/util/normalizeConfig.js +44 -6
  154. package/src/util/normalizeScreens.js +99 -4
  155. package/src/util/parseBoxShadowValue.js +4 -3
  156. package/src/util/parseDependency.js +37 -42
  157. package/src/util/parseGlob.js +24 -0
  158. package/src/util/pluginUtils.js +132 -10
  159. package/src/util/prefixSelector.js +7 -5
  160. package/src/util/removeAlphaVariables.js +24 -0
  161. package/src/util/resolveConfig.js +70 -32
  162. package/src/util/splitAtTopLevelOnly.js +45 -0
  163. package/src/util/toPath.js +1 -1
  164. package/src/util/transformThemeValue.js +13 -3
  165. package/src/util/validateConfig.js +13 -0
  166. package/src/util/validateFormalSyntax.js +34 -0
  167. package/src/util/withAlphaVariable.js +1 -1
  168. package/stubs/defaultConfig.stub.js +23 -20
  169. package/stubs/simpleConfig.stub.js +1 -0
  170. package/types/config.d.ts +362 -0
  171. package/types/generated/.gitkeep +0 -0
  172. package/types/generated/colors.d.ts +276 -0
  173. package/types/generated/corePluginList.d.ts +1 -0
  174. package/types/generated/default-theme.d.ts +342 -0
  175. package/types/index.d.ts +7 -0
  176. package/nesting/plugin.js +0 -41
@@ -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,342 @@
1
+ import { Config } from '../../types'
2
+ type CSSDeclarationList = Record<string, string>
3
+ export type DefaultTheme = Config['theme'] & {
4
+ screens: Record<'sm' | 'md' | 'lg' | 'xl' | '2xl', string>
5
+ columns: Record<
6
+ | '1'
7
+ | '2'
8
+ | '3'
9
+ | '4'
10
+ | '5'
11
+ | '6'
12
+ | '7'
13
+ | '8'
14
+ | '9'
15
+ | '10'
16
+ | '11'
17
+ | '12'
18
+ | 'auto'
19
+ | '3xs'
20
+ | '2xs'
21
+ | 'xs'
22
+ | 'sm'
23
+ | 'md'
24
+ | 'lg'
25
+ | 'xl'
26
+ | '2xl'
27
+ | '3xl'
28
+ | '4xl'
29
+ | '5xl'
30
+ | '6xl'
31
+ | '7xl',
32
+ string
33
+ >
34
+ spacing: Record<
35
+ | '0'
36
+ | '1'
37
+ | '2'
38
+ | '3'
39
+ | '4'
40
+ | '5'
41
+ | '6'
42
+ | '7'
43
+ | '8'
44
+ | '9'
45
+ | '10'
46
+ | '11'
47
+ | '12'
48
+ | '14'
49
+ | '16'
50
+ | '20'
51
+ | '24'
52
+ | '28'
53
+ | '32'
54
+ | '36'
55
+ | '40'
56
+ | '44'
57
+ | '48'
58
+ | '52'
59
+ | '56'
60
+ | '60'
61
+ | '64'
62
+ | '72'
63
+ | '80'
64
+ | '96'
65
+ | 'px'
66
+ | '0.5'
67
+ | '1.5'
68
+ | '2.5'
69
+ | '3.5',
70
+ string
71
+ >
72
+ animation: Record<'none' | 'spin' | 'ping' | 'pulse' | 'bounce', string>
73
+ aria: Record<
74
+ | 'checked'
75
+ | 'disabled'
76
+ | 'expanded'
77
+ | 'hidden'
78
+ | 'pressed'
79
+ | 'readonly'
80
+ | 'required'
81
+ | 'selected',
82
+ string
83
+ >
84
+ aspectRatio: Record<'auto' | 'square' | 'video', string>
85
+ backgroundImage: Record<
86
+ | 'none'
87
+ | 'gradient-to-t'
88
+ | 'gradient-to-tr'
89
+ | 'gradient-to-r'
90
+ | 'gradient-to-br'
91
+ | 'gradient-to-b'
92
+ | 'gradient-to-bl'
93
+ | 'gradient-to-l'
94
+ | 'gradient-to-tl',
95
+ string
96
+ >
97
+ backgroundPosition: Record<
98
+ | 'bottom'
99
+ | 'center'
100
+ | 'left'
101
+ | 'left-bottom'
102
+ | 'left-top'
103
+ | 'right'
104
+ | 'right-bottom'
105
+ | 'right-top'
106
+ | 'top',
107
+ string
108
+ >
109
+ backgroundSize: Record<'auto' | 'cover' | 'contain', string>
110
+ blur: Record<'0' | 'none' | 'sm' | 'DEFAULT' | 'md' | 'lg' | 'xl' | '2xl' | '3xl', string>
111
+ brightness: Record<
112
+ '0' | '50' | '75' | '90' | '95' | '100' | '105' | '110' | '125' | '150' | '200',
113
+ string
114
+ >
115
+ borderRadius: Record<
116
+ 'none' | 'sm' | 'DEFAULT' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full',
117
+ string
118
+ >
119
+ borderWidth: Record<'0' | '2' | '4' | '8' | 'DEFAULT', string>
120
+ boxShadow: Record<'sm' | 'DEFAULT' | 'md' | 'lg' | 'xl' | '2xl' | 'inner' | 'none', string>
121
+ contrast: Record<'0' | '50' | '75' | '100' | '125' | '150' | '200', string>
122
+ content: Record<'none', string>
123
+ cursor: Record<
124
+ | 'auto'
125
+ | 'default'
126
+ | 'pointer'
127
+ | 'wait'
128
+ | 'text'
129
+ | 'move'
130
+ | 'help'
131
+ | 'not-allowed'
132
+ | 'none'
133
+ | 'context-menu'
134
+ | 'progress'
135
+ | 'cell'
136
+ | 'crosshair'
137
+ | 'vertical-text'
138
+ | 'alias'
139
+ | 'copy'
140
+ | 'no-drop'
141
+ | 'grab'
142
+ | 'grabbing'
143
+ | 'all-scroll'
144
+ | 'col-resize'
145
+ | 'row-resize'
146
+ | 'n-resize'
147
+ | 'e-resize'
148
+ | 's-resize'
149
+ | 'w-resize'
150
+ | 'ne-resize'
151
+ | 'nw-resize'
152
+ | 'se-resize'
153
+ | 'sw-resize'
154
+ | 'ew-resize'
155
+ | 'ns-resize'
156
+ | 'nesw-resize'
157
+ | 'nwse-resize'
158
+ | 'zoom-in'
159
+ | 'zoom-out',
160
+ string
161
+ >
162
+ dropShadow: Record<'sm' | 'DEFAULT' | 'md' | 'lg' | 'xl' | '2xl' | 'none', string | string[]>
163
+ grayscale: Record<'0' | 'DEFAULT', string>
164
+ hueRotate: Record<'0' | '15' | '30' | '60' | '90' | '180', string>
165
+ invert: Record<'0' | 'DEFAULT', string>
166
+ flex: Record<'1' | 'auto' | 'initial' | 'none', string>
167
+ flexGrow: Record<'0' | 'DEFAULT', string>
168
+ flexShrink: Record<'0' | 'DEFAULT', string>
169
+ fontFamily: Record<'sans' | 'serif' | 'mono', string[]>
170
+ fontSize: Record<
171
+ | 'xs'
172
+ | 'sm'
173
+ | 'base'
174
+ | 'lg'
175
+ | 'xl'
176
+ | '2xl'
177
+ | '3xl'
178
+ | '4xl'
179
+ | '5xl'
180
+ | '6xl'
181
+ | '7xl'
182
+ | '8xl'
183
+ | '9xl',
184
+ [string, { lineHeight: string }]
185
+ >
186
+ fontWeight: Record<
187
+ | 'thin'
188
+ | 'extralight'
189
+ | 'light'
190
+ | 'normal'
191
+ | 'medium'
192
+ | 'semibold'
193
+ | 'bold'
194
+ | 'extrabold'
195
+ | 'black',
196
+ string
197
+ >
198
+ gridAutoColumns: Record<'auto' | 'min' | 'max' | 'fr', string>
199
+ gridAutoRows: Record<'auto' | 'min' | 'max' | 'fr', string>
200
+ gridColumn: Record<
201
+ | 'auto'
202
+ | 'span-1'
203
+ | 'span-2'
204
+ | 'span-3'
205
+ | 'span-4'
206
+ | 'span-5'
207
+ | 'span-6'
208
+ | 'span-7'
209
+ | 'span-8'
210
+ | 'span-9'
211
+ | 'span-10'
212
+ | 'span-11'
213
+ | 'span-12'
214
+ | 'span-full',
215
+ string
216
+ >
217
+ gridColumnEnd: Record<
218
+ '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | 'auto',
219
+ string
220
+ >
221
+ gridColumnStart: Record<
222
+ '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | 'auto',
223
+ string
224
+ >
225
+ gridRow: Record<
226
+ 'auto' | 'span-1' | 'span-2' | 'span-3' | 'span-4' | 'span-5' | 'span-6' | 'span-full',
227
+ string
228
+ >
229
+ gridRowStart: Record<'1' | '2' | '3' | '4' | '5' | '6' | '7' | 'auto', string>
230
+ gridRowEnd: Record<'1' | '2' | '3' | '4' | '5' | '6' | '7' | 'auto', string>
231
+ gridTemplateColumns: Record<
232
+ '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | 'none',
233
+ string
234
+ >
235
+ gridTemplateRows: Record<'1' | '2' | '3' | '4' | '5' | '6' | 'none', string>
236
+ keyframes: Record<'spin' | 'ping' | 'pulse' | 'bounce', Record<string, CSSDeclarationList>>
237
+ letterSpacing: Record<'tighter' | 'tight' | 'normal' | 'wide' | 'wider' | 'widest', string>
238
+ lineHeight: Record<
239
+ | '3'
240
+ | '4'
241
+ | '5'
242
+ | '6'
243
+ | '7'
244
+ | '8'
245
+ | '9'
246
+ | '10'
247
+ | 'none'
248
+ | 'tight'
249
+ | 'snug'
250
+ | 'normal'
251
+ | 'relaxed'
252
+ | 'loose',
253
+ string
254
+ >
255
+ listStyleType: Record<'none' | 'disc' | 'decimal', string>
256
+ minHeight: Record<'0' | 'full' | 'screen' | 'min' | 'max' | 'fit', string>
257
+ minWidth: Record<'0' | 'full' | 'min' | 'max' | 'fit', string>
258
+ objectPosition: Record<
259
+ | 'bottom'
260
+ | 'center'
261
+ | 'left'
262
+ | 'left-bottom'
263
+ | 'left-top'
264
+ | 'right'
265
+ | 'right-bottom'
266
+ | 'right-top'
267
+ | 'top',
268
+ string
269
+ >
270
+ opacity: Record<
271
+ | '0'
272
+ | '5'
273
+ | '10'
274
+ | '20'
275
+ | '25'
276
+ | '30'
277
+ | '40'
278
+ | '50'
279
+ | '60'
280
+ | '70'
281
+ | '75'
282
+ | '80'
283
+ | '90'
284
+ | '95'
285
+ | '100',
286
+ string
287
+ >
288
+ order: Record<
289
+ | '1'
290
+ | '2'
291
+ | '3'
292
+ | '4'
293
+ | '5'
294
+ | '6'
295
+ | '7'
296
+ | '8'
297
+ | '9'
298
+ | '10'
299
+ | '11'
300
+ | '12'
301
+ | 'first'
302
+ | 'last'
303
+ | 'none',
304
+ string
305
+ >
306
+ outlineOffset: Record<'0' | '1' | '2' | '4' | '8', string>
307
+ outlineWidth: Record<'0' | '1' | '2' | '4' | '8', string>
308
+ ringOffsetWidth: Record<'0' | '1' | '2' | '4' | '8', string>
309
+ ringWidth: Record<'0' | '1' | '2' | '4' | '8' | 'DEFAULT', string>
310
+ rotate: Record<'0' | '1' | '2' | '3' | '6' | '12' | '45' | '90' | '180', string>
311
+ saturate: Record<'0' | '50' | '100' | '150' | '200', string>
312
+ scale: Record<'0' | '50' | '75' | '90' | '95' | '100' | '105' | '110' | '125' | '150', string>
313
+ sepia: Record<'0' | 'DEFAULT', string>
314
+ skew: Record<'0' | '1' | '2' | '3' | '6' | '12', string>
315
+ strokeWidth: Record<'0' | '1' | '2', string>
316
+ textDecorationThickness: Record<'0' | '1' | '2' | '4' | '8' | 'auto' | 'from-font', string>
317
+ textUnderlineOffset: Record<'0' | '1' | '2' | '4' | '8' | 'auto', string>
318
+ transformOrigin: Record<
319
+ | 'center'
320
+ | 'top'
321
+ | 'top-right'
322
+ | 'right'
323
+ | 'bottom-right'
324
+ | 'bottom'
325
+ | 'bottom-left'
326
+ | 'left'
327
+ | 'top-left',
328
+ string
329
+ >
330
+ transitionDelay: Record<'75' | '100' | '150' | '200' | '300' | '500' | '700' | '1000', string>
331
+ transitionDuration: Record<
332
+ '75' | '100' | '150' | '200' | '300' | '500' | '700' | '1000' | 'DEFAULT',
333
+ string
334
+ >
335
+ transitionProperty: Record<
336
+ 'none' | 'all' | 'DEFAULT' | 'colors' | 'opacity' | 'shadow' | 'transform',
337
+ string
338
+ >
339
+ transitionTimingFunction: Record<'DEFAULT' | 'linear' | 'in' | 'out' | 'in-out', string>
340
+ willChange: Record<'auto' | 'scroll' | 'contents' | 'transform', string>
341
+ zIndex: Record<'0' | '10' | '20' | '30' | '40' | '50' | 'auto', string>
342
+ }
@@ -0,0 +1,7 @@
1
+ import { PluginCreator } from 'postcss'
2
+ import type { Config } from './config.d'
3
+
4
+ declare const plugin: PluginCreator<string | Config | { config: string | Config }>
5
+
6
+ export { Config }
7
+ export default plugin
package/nesting/plugin.js DELETED
@@ -1,41 +0,0 @@
1
- let postcss = require('postcss')
2
- let postcssNested = require('postcss-nested')
3
-
4
- module.exports = function nesting(opts = postcssNested) {
5
- return (root, result) => {
6
- root.walkAtRules('screen', (rule) => {
7
- rule.name = 'media'
8
- rule.params = `screen(${rule.params})`
9
- })
10
-
11
- root.walkAtRules('apply', (rule) => {
12
- rule.before(postcss.decl({ prop: '__apply', value: rule.params, source: rule.source }))
13
- rule.remove()
14
- })
15
-
16
- let plugin = (() => {
17
- if (typeof opts === 'function') {
18
- return opts
19
- }
20
-
21
- if (typeof opts === 'string') {
22
- return require(opts)
23
- }
24
-
25
- if (Object.keys(opts).length <= 0) {
26
- return postcssNested
27
- }
28
-
29
- throw new Error('tailwindcss/nesting should be loaded with a nesting plugin.')
30
- })()
31
-
32
- postcss([plugin]).process(root, result.opts).sync()
33
-
34
- root.walkDecls('__apply', (decl) => {
35
- decl.before(postcss.atRule({ name: 'apply', params: decl.value, source: decl.source }))
36
- decl.remove()
37
- })
38
-
39
- return root
40
- }
41
- }