File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed
src/types/tailwind/properties/layout Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 11# tailwindest
22
3+ ## 2.3.6
4+
5+ ### Patch Changes
6+
7+ - Fix aspect ratio arbitrary values support ` aspect-[x/y] `
8+
39## 2.3.5
410
511### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " tailwindest" ,
3- "version" : " 2.3.5 " ,
3+ "version" : " 2.3.6 " ,
44 "description" : " typesafe, reusable tailwind" ,
55 "homepage" : " https://tailwindest.vercel.app" ,
66 "author" : " danpacho" ,
Original file line number Diff line number Diff line change 11import { PlugBase , Pluggable } from "../../../plugin"
22import { TailwindArbitrary } from "../common/@arbitrary"
33
4- type TailwindAspectRatio < Plug extends PlugBase = "" > =
5- | "aspect- auto"
6- | "aspect- square"
7- | "aspect- video"
4+ type TailwindAspectRatioVariants < Plug extends PlugBase = "" > =
5+ | "auto"
6+ | "square"
7+ | "video"
88 | Pluggable < Plug >
99 | TailwindArbitrary
1010
11+ type TailwindAspectRatio < Plug extends PlugBase = "" > =
12+ `aspect-${TailwindAspectRatioVariants < Plug > } `
13+
1114export type TailwindAspectRatioType < Plug extends PlugBase = "" > = {
1215 /**
1316 *@description Utilities for controlling the aspect ratio of an element.
You can’t perform that action at this time.
0 commit comments