@@ -113,7 +113,6 @@ export const functionalPlugins = new Map<string, FunctionalPlugin[]>([
113
113
[ "border" , [
114
114
{ scaleKey : "borderWidth" , ns : 'borderWidth' , class : [ 'border-width' ] , type : 'line-width' } ,
115
115
{ scaleKey : "borderColor" , ns : 'borderColor' , class : [ 'border-color' ] , type : 'color' } ,
116
- { scaleKey : "borderStyle" , ns : 'borderStyle' , class : [ 'border-style' ] , type : 'line-width' } ,
117
116
] ] ,
118
117
[ "ring" , [
119
118
{ scaleKey : "ringWidth" , ns : 'ringWidth' , class : [ 'box-shadow' ] , type : 'line-width' } ,
@@ -138,6 +137,12 @@ export const functionalPlugins = new Map<string, FunctionalPlugin[]>([
138
137
[ "gap" , [
139
138
{ scaleKey : "gap" , ns : 'gap' , class : [ 'gap' ] , type : 'length' } ,
140
139
] ] ,
140
+ [ "gap-x" , [
141
+ { scaleKey : "gap" , ns : 'gapX' , class : [ 'gap' ] , type : 'length' } ,
142
+ ] ] ,
143
+ [ "gap-y" , [
144
+ { scaleKey : "gap" , ns : 'gapY' , class : [ 'gap' ] , type : 'length' } ,
145
+ ] ] ,
141
146
[ "col" , [
142
147
{ scaleKey : "gridColumn" , ns : 'gridColumn' , class : [ 'grid-column' ] , type : 'number' } ,
143
148
] ] ,
@@ -214,6 +219,9 @@ export const functionalPlugins = new Map<string, FunctionalPlugin[]>([
214
219
[ "end" , [
215
220
{ scaleKey : "inset" , ns : 'insetInlineEnd' , class : [ 'inset-inline-end' ] , type : 'length' , supportNegative : true } ,
216
221
] ] ,
222
+ [ "order" , [
223
+ { scaleKey : "order" , ns : 'order' , class : [ 'order' ] , type : 'length' , supportNegative : true } ,
224
+ ] ] ,
217
225
] ) ;
218
226
219
227
export const namedPlugins = new Map < string , NamedPlugin > ( [
@@ -319,14 +327,14 @@ export const namedPlugins = new Map<string, NamedPlugin>([
319
327
[ "justify-evenly" , { class : [ 'justify-content' ] , value : 'space-evenly' , ns : 'justifyContent' } ] ,
320
328
321
329
// Flex Grow & Shrink
322
- [ "flex-grow" , { class : [ 'flex-grow' ] , value : '1' , ns : 'flexGrow' } ] ,
323
- [ "flex-grow-0" , { class : [ 'flex-grow' ] , value : '0' , ns : 'flexGrow' } ] ,
324
330
[ "grow" , { class : [ 'flex-grow' ] , value : '1' , ns : 'flexGrow' } ] ,
325
331
[ "grow-0" , { class : [ 'flex-grow' ] , value : '0' , ns : 'flexGrow' } ] ,
326
- [ "flex-shrink " , { class : [ 'flex-shrink ' ] , value : '1' , ns : 'flexShrink ' } ] ,
327
- [ "flex-shrink -0" , { class : [ 'flex-shrink ' ] , value : '0' , ns : 'flexShrink ' } ] ,
332
+ [ "flex-grow " , { class : [ 'flex-grow ' ] , value : '1' , ns : 'flexGrow ' } ] ,
333
+ [ "flex-grow -0" , { class : [ 'flex-grow ' ] , value : '0' , ns : 'flexGrow ' } ] ,
328
334
[ "shrink" , { class : [ 'flex-shrink' ] , value : '1' , ns : 'flexShrink' } ] ,
329
335
[ "shrink-0" , { class : [ 'flex-shrink' ] , value : '0' , ns : 'flexShrink' } ] ,
336
+ [ "flex-shrink" , { class : [ 'flex-shrink' ] , value : '1' , ns : 'flexShrink' } ] ,
337
+ [ "flex-shrink-0" , { class : [ 'flex-shrink' ] , value : '0' , ns : 'flexShrink' } ] ,
330
338
331
339
] )
332
340
0 commit comments