File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333- Allow direct nesting in ` root ` or ` @layer ` nodes ([ #10229 ] ( https://github.com/tailwindlabs/tailwindcss/pull/10229 ) )
3434- Don't prefix classes in arbitrary variants ([ #10214 ] ( https://github.com/tailwindlabs/tailwindcss/pull/10214 ) )
3535- Fix perf regression when checking for changed content ([ #10234 ] ( https://github.com/tailwindlabs/tailwindcss/pull/10234 ) )
36+ - Fix missing ` blocklist ` member in the ` Config ` type ([ #10239 ] ( https://github.com/tailwindlabs/tailwindcss/pull/10239 ) )
3637
3738### Changed
3839
Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ type SafelistConfig =
5353 variants ?: string [ ]
5454 } [ ]
5555
56+ // Blocklist related config
57+ type BlocklistConfig = string [ ]
58+
5659// Presets related config
5760type PresetsConfig = Config [ ]
5861
@@ -349,6 +352,7 @@ interface OptionalConfig {
349352 prefix : Partial < PrefixConfig >
350353 separator : Partial < SeparatorConfig >
351354 safelist : Partial < SafelistConfig >
355+ blocklist : Partial < BlocklistConfig >
352356 presets : Partial < PresetsConfig >
353357 future : Partial < FutureConfig >
354358 experimental : Partial < ExperimentalConfig >
You can’t perform that action at this time.
0 commit comments