File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ const display = [
15
15
'hidden' ,
16
16
] ;
17
17
18
+ const boxDecorationBreak = [ 'decoration-slice' , 'decoration-clone' ] ;
19
+
18
20
const container = [ 'container' ] ;
19
21
20
22
const float = [ 'float-right' , 'float-left' , 'float-none' ] ;
@@ -64,6 +66,7 @@ const visibility = ['visible', 'invisible'];
64
66
65
67
export default {
66
68
display,
69
+ boxDecorationBreak,
67
70
boxSizing,
68
71
container,
69
72
float,
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ type TInteractivityCategoryItem =
138
138
139
139
type TLayoutCategoryItem =
140
140
| 'display'
141
+ | 'boxDecorationBreak'
141
142
| 'boxSizing'
142
143
| 'container'
143
144
| 'float'
Original file line number Diff line number Diff line change @@ -2530,6 +2530,8 @@ export type TDisplay =
2530
2530
| 'contents'
2531
2531
| 'hidden';
2532
2532
2533
+ export type TBoxDecorationBreak = 'decoration-slice' | 'decoration-clone';
2534
+
2533
2535
export type TBoxSizing = 'box-border' | 'box-content';
2534
2536
2535
2537
export type TContainer = 'container';
@@ -3188,6 +3190,7 @@ export type TZIndex = 'z-0' | 'z-10' | 'z-20' | 'z-30' | 'z-40' | 'z-50' | 'z-au
3188
3190
3189
3191
export type TLayout =
3190
3192
| TDisplay
3193
+ | TBoxDecorationBreak
3191
3194
| TBoxSizing
3192
3195
| TContainer
3193
3196
| TFloat
@@ -6987,6 +6990,16 @@ export type TPseudoClasses =
6987
6990
| 'lg:border'
6988
6991
| 'xl:border'
6989
6992
| '2xl:border'
6993
+ | 'sm:decoration-slice'
6994
+ | 'md:decoration-slice'
6995
+ | 'lg:decoration-slice'
6996
+ | 'xl:decoration-slice'
6997
+ | '2xl:decoration-slice'
6998
+ | 'sm:decoration-clone'
6999
+ | 'md:decoration-clone'
7000
+ | 'lg:decoration-clone'
7001
+ | 'xl:decoration-clone'
7002
+ | '2xl:decoration-clone'
6990
7003
| 'sm:shadow-sm'
6991
7004
| 'md:shadow-sm'
6992
7005
| 'lg:shadow-sm'
You can’t perform that action at this time.
0 commit comments