Skip to content

Commit

Permalink
feat: add support for display : inline-table, list-item utilities
Browse files Browse the repository at this point in the history
Fixes #192
  • Loading branch information
muhammadsammy committed Apr 9, 2021
1 parent 65416ca commit 6a500af
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cli/lib/non-configurable/layout.ts
Expand Up @@ -9,9 +9,11 @@ const display = [
'grid',
'inline-grid',
'table',
'inline-table',
'table-row',
'table-cell',
'contents',
'list-item',
'hidden',
];

Expand Down
12 changes: 12 additions & 0 deletions src/index.ts
Expand Up @@ -2525,9 +2525,11 @@ export type TDisplay =
| 'grid'
| 'inline-grid'
| 'table'
| 'inline-table'
| 'table-row'
| 'table-cell'
| 'contents'
| 'list-item'
| 'hidden';

export type TBoxDecorationBreak = 'decoration-slice' | 'decoration-clone';
Expand Down Expand Up @@ -7277,6 +7279,11 @@ export type TPseudoClasses =
| 'lg:table'
| 'xl:table'
| '2xl:table'
| 'sm:inline-table'
| 'md:inline-table'
| 'lg:inline-table'
| 'xl:inline-table'
| '2xl:inline-table'
| 'sm:table-row'
| 'md:table-row'
| 'lg:table-row'
Expand All @@ -7292,6 +7299,11 @@ export type TPseudoClasses =
| 'lg:contents'
| 'xl:contents'
| '2xl:contents'
| 'sm:list-item'
| 'md:list-item'
| 'lg:list-item'
| 'xl:list-item'
| '2xl:list-item'
| 'sm:hidden'
| 'md:hidden'
| 'lg:hidden'
Expand Down

0 comments on commit 6a500af

Please sign in to comment.