File tree 2 files changed +5
-0
lines changed
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
33
33
- Allow direct nesting in ` root ` or ` @layer ` nodes ([ #10229 ] ( https://github.com/tailwindlabs/tailwindcss/pull/10229 ) )
34
34
- Don't prefix classes in arbitrary variants ([ #10214 ] ( https://github.com/tailwindlabs/tailwindcss/pull/10214 ) )
35
35
- 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 ) )
36
37
37
38
### Changed
38
39
Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ type SafelistConfig =
53
53
variants ?: string [ ]
54
54
} [ ]
55
55
56
+ // Blocklist related config
57
+ type BlocklistConfig = string [ ]
58
+
56
59
// Presets related config
57
60
type PresetsConfig = Config [ ]
58
61
@@ -349,6 +352,7 @@ interface OptionalConfig {
349
352
prefix : Partial < PrefixConfig >
350
353
separator : Partial < SeparatorConfig >
351
354
safelist : Partial < SafelistConfig >
355
+ blocklist : Partial < BlocklistConfig >
352
356
presets : Partial < PresetsConfig >
353
357
future : Partial < FutureConfig >
354
358
experimental : Partial < ExperimentalConfig >
You can’t perform that action at this time.
0 commit comments