3
3
// See https://github.com/stylelint/stylelint/blob/10.1.0/lib/reference/shorthandData.js
4
4
module . exports = {
5
5
margin : [ 'margin-top' , 'margin-bottom' , 'margin-left' , 'margin-right' ] ,
6
+ 'margin-block' : [ 'margin-block-start' , 'margin-block-end' ] ,
7
+ 'margin-inline' : [ 'margin-inline-start' , 'margin-inline-end' ] ,
6
8
padding : [ 'padding-top' , 'padding-bottom' , 'padding-left' , 'padding-right' ] ,
9
+ 'padding-block' : [ 'padding-block-start' , 'padding-block-end' ] ,
10
+ 'padding-inline' : [ 'padding-inline-start' , 'padding-inline-end' ] ,
7
11
background : [
8
12
'background-image' ,
9
13
'background-size' ,
@@ -128,7 +132,9 @@ module.exports = {
128
132
'grid-gap' : [ 'grid-row-gap' , 'grid-column-gap' ] ,
129
133
'grid-row' : [ 'grid-row-start' , 'grid-row-end' ] ,
130
134
'grid-template' : [ 'grid-template-columns' , 'grid-template-rows' , 'grid-template-areas' ] ,
135
+ offset : [ 'offset-anchor' , 'offset-distance' , 'offset-path' , 'offset-position' , 'offset-rotate' ] ,
131
136
outline : [ 'outline-color' , 'outline-style' , 'outline-width' ] ,
137
+ overflow : [ 'overflow-x' , 'overflow-y' ] ,
132
138
'text-decoration' : [ 'text-decoration-color' , 'text-decoration-style' , 'text-decoration-line' ] ,
133
139
'text-emphasis' : [ 'text-emphasis-style' , 'text-emphasis-color' ] ,
134
140
mask : [
@@ -141,4 +147,12 @@ module.exports = {
141
147
'mask-clip' ,
142
148
'mask-composite' ,
143
149
] ,
150
+ 'mask-border' : [
151
+ 'mask-border-mode' ,
152
+ 'mask-border-outset' ,
153
+ 'mask-border-repeat' ,
154
+ 'mask-border-slice' ,
155
+ 'mask-border-source' ,
156
+ 'mask-border-width'
157
+ ]
144
158
} ;
0 commit comments