Skip to content

Commit

Permalink
fix: generate lib types
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Jul 21, 2021
1 parent ae3123e commit 4df5f06
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,13 @@ export type TAlignContent =
| 'content-between'
| 'content-around';

export type TAlignSelf = 'self-auto' | 'self-start' | 'self-center' | 'self-end' | 'self-stretch';
export type TAlignSelf =
| 'self-auto'
| 'self-start'
| 'self-center'
| 'self-end'
| 'self-stretch'
| 'self-baseline';

export type TPlaceContent =
| 'place-content-start'
Expand Down Expand Up @@ -4079,6 +4085,11 @@ export type TPseudoClasses =
| 'lg:self-stretch'
| 'xl:self-stretch'
| '2xl:self-stretch'
| 'sm:self-baseline'
| 'md:self-baseline'
| 'lg:self-baseline'
| 'xl:self-baseline'
| '2xl:self-baseline'
| 'sm:animate-none'
| 'md:animate-none'
| 'lg:animate-none'
Expand Down

0 comments on commit 4df5f06

Please sign in to comment.