tailwindcss 0.0.0-insiders.c6b3f96 → 0.0.0-insiders.c9d2d0d
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.
- package/CHANGELOG.md +1 -0
- package/lib/corePlugins.js +1 -0
- package/package.json +1 -1
- package/src/corePlugins.js +1 -0
- package/types/config.d.ts +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
36
36
|
- Support customizing class name when using `darkMode: 'class'` ([#5800](https://github.com/tailwindlabs/tailwindcss/pull/5800))
|
|
37
37
|
- Add `--poll` option to the CLI ([#7725](https://github.com/tailwindlabs/tailwindcss/pull/7725))
|
|
38
38
|
- Add new `border-spacing` utilities ([#7102](https://github.com/tailwindlabs/tailwindcss/pull/7102))
|
|
39
|
+
- Add `enabled` variant ([#7905](https://github.com/tailwindlabs/tailwindcss/pull/7905))
|
|
39
40
|
- Add TypeScript types for the `tailwind.config.js` file ([#7891](https://github.com/tailwindlabs/tailwindcss/pull/7891))
|
|
40
41
|
|
|
41
42
|
## [3.0.23] - 2022-02-16
|
package/lib/corePlugins.js
CHANGED
package/package.json
CHANGED
package/src/corePlugins.js
CHANGED
package/types/config.d.ts
CHANGED
|
@@ -304,19 +304,20 @@ interface RequiredConfig {
|
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
interface OptionalConfig {
|
|
307
|
-
important: ImportantConfig
|
|
308
|
-
prefix: PrefixConfig
|
|
309
|
-
separator: SeparatorConfig
|
|
310
|
-
safelist: SafelistConfig
|
|
311
|
-
presets: PresetsConfig
|
|
312
|
-
future: FutureConfig
|
|
313
|
-
experimental: ExperimentalConfig
|
|
314
|
-
darkMode: DarkModeConfig
|
|
315
|
-
theme: ThemeConfig
|
|
316
|
-
corePlugins: CorePluginsConfig
|
|
317
|
-
plugins: PluginsConfig
|
|
307
|
+
important: Partial<ImportantConfig>
|
|
308
|
+
prefix: Partial<PrefixConfig>
|
|
309
|
+
separator: Partial<SeparatorConfig>
|
|
310
|
+
safelist: Partial<SafelistConfig>
|
|
311
|
+
presets: Partial<PresetsConfig>
|
|
312
|
+
future: Partial<FutureConfig>
|
|
313
|
+
experimental: Partial<ExperimentalConfig>
|
|
314
|
+
darkMode: Partial<DarkModeConfig>
|
|
315
|
+
theme: Partial<ThemeConfig>
|
|
316
|
+
corePlugins: Partial<CorePluginsConfig>
|
|
317
|
+
plugins: Partial<PluginsConfig>
|
|
318
318
|
/** Custom */
|
|
319
319
|
[key: string]: any
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
export type Config = RequiredConfig & Partial<OptionalConfig>
|
|
323
|
+
|