@@ -5,7 +5,7 @@ const SIZES_EXTENDED = ['3xl', '4xl', '5xl', '6xl', '7xl'] as const
5
5
const OVERSCROLL = [ 'auto' , 'contain' , 'none' ] as const
6
6
const OVERFLOW = [ 'auto' , 'hidden' , 'visible' , 'scroll' ] as const
7
7
const LENGTH = [ isLength ] as const
8
- const MARGIN = [ 'auto' , isLength ] as const
8
+ const LENGTH_WITH_AUTO = [ 'auto' , isLength ] as const
9
9
const INTEGER = [ isInteger ] as const
10
10
const ANY = [ isAny ] as const
11
11
const POSITIONS = [
@@ -172,45 +172,45 @@ export function getDefaultConfig() {
172
172
* Right / Left
173
173
* @see https://tailwindcss.com/docs/top-right-bottom-left
174
174
*/
175
- [ { x : LENGTH } ] ,
175
+ [ { x : LENGTH_WITH_AUTO } ] ,
176
176
/**
177
177
* Top / Bottom
178
178
* @see https://tailwindcss.com/docs/top-right-bottom-left
179
179
*/
180
- [ { y : LENGTH } ] ,
180
+ [ { y : LENGTH_WITH_AUTO } ] ,
181
181
/**
182
182
* Top / Right / Bottom / Left
183
183
* @see https://tailwindcss.com/docs/top-right-bottom-left
184
184
*/
185
- LENGTH ,
185
+ LENGTH_WITH_AUTO ,
186
186
] ,
187
187
top : [
188
188
/**
189
189
* Top
190
190
* @see https://tailwindcss.com/docs/top-right-bottom-left
191
191
*/
192
- LENGTH ,
192
+ LENGTH_WITH_AUTO ,
193
193
] ,
194
194
right : [
195
195
/**
196
196
* Right
197
197
* @see https://tailwindcss.com/docs/top-right-bottom-left
198
198
*/
199
- LENGTH ,
199
+ LENGTH_WITH_AUTO ,
200
200
] ,
201
201
bottom : [
202
202
/**
203
203
* Bottom
204
204
* @see https://tailwindcss.com/docs/top-right-bottom-left
205
205
*/
206
- LENGTH ,
206
+ LENGTH_WITH_AUTO ,
207
207
] ,
208
208
left : [
209
209
/**
210
210
* Left
211
211
* @see https://tailwindcss.com/docs/top-right-bottom-left
212
212
*/
213
- LENGTH ,
213
+ LENGTH_WITH_AUTO ,
214
214
] ,
215
215
z : [
216
216
/**
@@ -449,49 +449,49 @@ export function getDefaultConfig() {
449
449
* Margin
450
450
* @see https://tailwindcss.com/docs/margin
451
451
*/
452
- MARGIN ,
452
+ LENGTH_WITH_AUTO ,
453
453
] ,
454
454
mx : [
455
455
/**
456
456
* Margin X
457
457
* @see https://tailwindcss.com/docs/margin
458
458
*/
459
- MARGIN ,
459
+ LENGTH_WITH_AUTO ,
460
460
] ,
461
461
my : [
462
462
/**
463
463
* Margin Y
464
464
* @see https://tailwindcss.com/docs/margin
465
465
*/
466
- MARGIN ,
466
+ LENGTH_WITH_AUTO ,
467
467
] ,
468
468
mt : [
469
469
/**
470
470
* Margin Top
471
471
* @see https://tailwindcss.com/docs/margin
472
472
*/
473
- MARGIN ,
473
+ LENGTH_WITH_AUTO ,
474
474
] ,
475
475
mr : [
476
476
/**
477
477
* Margin Right
478
478
* @see https://tailwindcss.com/docs/margin
479
479
*/
480
- MARGIN ,
480
+ LENGTH_WITH_AUTO ,
481
481
] ,
482
482
mb : [
483
483
/**
484
484
* Margin Bottom
485
485
* @see https://tailwindcss.com/docs/margin
486
486
*/
487
- MARGIN ,
487
+ LENGTH_WITH_AUTO ,
488
488
] ,
489
489
ml : [
490
490
/**
491
491
* Margin Left
492
492
* @see https://tailwindcss.com/docs/margin
493
493
*/
494
- MARGIN ,
494
+ LENGTH_WITH_AUTO ,
495
495
] ,
496
496
space : [
497
497
/**
0 commit comments