mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Fix missing supports in types (#9616)
* add `supports` to types * update changelog
This commit is contained in:
parent
2faf86fba1
commit
4dfb1e3f87
@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
- Nothing yet!
|
||||
### Fixed
|
||||
|
||||
- Fix missing `supports` in types ([#9616](https://github.com/tailwindlabs/tailwindcss/pull/9616))
|
||||
|
||||
## [3.2.0] - 2022-10-19
|
||||
|
||||
|
||||
@ -11,6 +11,7 @@ module.exports = {
|
||||
xl: '1280px',
|
||||
'2xl': '1536px',
|
||||
},
|
||||
supports: {},
|
||||
colors: ({ colors }) => ({
|
||||
inherit: colors.inherit,
|
||||
current: colors.current,
|
||||
|
||||
1
types/config.d.ts
vendored
1
types/config.d.ts
vendored
@ -84,6 +84,7 @@ type ScreensConfig = string[] | KeyValuePair<string, string | Screen | Screen[]>
|
||||
interface ThemeConfig {
|
||||
// Responsiveness
|
||||
screens: ResolvableTo<ScreensConfig>
|
||||
supports: ResolvableTo<Record<string, string>>
|
||||
|
||||
// Reusable base configs
|
||||
colors: ResolvableTo<RecursiveKeyValuePair>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user