tailwindcss 0.0.0-insiders.ea139f2 → 0.0.0-insiders.ea4e1cd

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