@nextui-org/theme 0.0.0-dev-v2-20230518012432 → 0.0.0-dev-v2-20230525214932
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-CPWIXBDM.mjs → chunk-25QTQFHB.mjs} +6 -5
- package/dist/{chunk-KUQBSI5S.mjs → chunk-6IVGIMY2.mjs} +1 -1
- package/dist/{chunk-NCFXYR7C.mjs → chunk-NGOZQK3L.mjs} +5 -5
- package/dist/{chunk-B2N536X5.mjs → chunk-TLJBVOUD.mjs} +6 -1
- package/dist/components/badge.js +6 -5
- package/dist/components/badge.mjs +1 -1
- package/dist/components/checkbox.js +6 -1
- package/dist/components/checkbox.mjs +1 -1
- package/dist/components/index.js +18 -12
- package/dist/components/index.mjs +4 -4
- package/dist/components/kbd.js +1 -1
- package/dist/components/kbd.mjs +1 -1
- package/dist/components/toggle.js +5 -5
- package/dist/components/toggle.mjs +1 -1
- package/dist/index.js +18 -12
- package/dist/index.mjs +6 -6
- package/dist/plugin.mjs +2 -2
- package/package.json +1 -1
- package/dist/{chunk-CH6AU75S.mjs → chunk-WUXZWYH4.mjs} +3 -3
|
@@ -22,6 +22,7 @@ var badge = tv({
|
|
|
22
22
|
"font-regular",
|
|
23
23
|
"scale-100",
|
|
24
24
|
"opacity-100",
|
|
25
|
+
"subpixel-antialiased",
|
|
25
26
|
"data-[invisible=true]:scale-0",
|
|
26
27
|
"data-[invisible=true]:opacity-0"
|
|
27
28
|
]
|
|
@@ -107,7 +108,7 @@ var badge = tv({
|
|
|
107
108
|
badge: "transition-none"
|
|
108
109
|
},
|
|
109
110
|
false: {
|
|
110
|
-
badge: "transition-transform-opacity"
|
|
111
|
+
badge: "transition-transform-opacity !ease-soft-spring !duration-300"
|
|
111
112
|
}
|
|
112
113
|
},
|
|
113
114
|
disableOutline: {
|
|
@@ -359,28 +360,28 @@ var badge = tv({
|
|
|
359
360
|
placement: "top-right",
|
|
360
361
|
shape: "circle",
|
|
361
362
|
class: {
|
|
362
|
-
badge: "top-[
|
|
363
|
+
badge: "top-[10%] right-[10%] translate-x-1/2 -translate-y-1/2"
|
|
363
364
|
}
|
|
364
365
|
},
|
|
365
366
|
{
|
|
366
367
|
placement: "top-left",
|
|
367
368
|
shape: "circle",
|
|
368
369
|
class: {
|
|
369
|
-
badge: "top-[
|
|
370
|
+
badge: "top-[10%] left-[10%] -translate-x-1/2 -translate-y-1/2"
|
|
370
371
|
}
|
|
371
372
|
},
|
|
372
373
|
{
|
|
373
374
|
placement: "bottom-right",
|
|
374
375
|
shape: "circle",
|
|
375
376
|
class: {
|
|
376
|
-
badge: "bottom-[
|
|
377
|
+
badge: "bottom-[10%] right-[10%] translate-x-1/2 translate-y-1/2"
|
|
377
378
|
}
|
|
378
379
|
},
|
|
379
380
|
{
|
|
380
381
|
placement: "bottom-left",
|
|
381
382
|
shape: "circle",
|
|
382
383
|
class: {
|
|
383
|
-
badge: "bottom-[
|
|
384
|
+
badge: "bottom-[10%] left-[10%] -translate-x-1/2 translate-y-1/2"
|
|
384
385
|
}
|
|
385
386
|
}
|
|
386
387
|
]
|
|
@@ -85,7 +85,7 @@ var toggle = tv({
|
|
|
85
85
|
],
|
|
86
86
|
startIcon: "text-[0.6rem] left-1",
|
|
87
87
|
endIcon: "text-[0.6rem] right-1",
|
|
88
|
-
label: "text-
|
|
88
|
+
label: "text-xs"
|
|
89
89
|
},
|
|
90
90
|
sm: {
|
|
91
91
|
wrapper: "w-10 h-6 mr-2",
|
|
@@ -97,7 +97,7 @@ var toggle = tv({
|
|
|
97
97
|
],
|
|
98
98
|
endIcon: "text-xs",
|
|
99
99
|
startIcon: "text-xs",
|
|
100
|
-
label: "text-
|
|
100
|
+
label: "text-sm"
|
|
101
101
|
},
|
|
102
102
|
md: {
|
|
103
103
|
wrapper: "w-12 h-7 mr-2",
|
|
@@ -109,7 +109,7 @@ var toggle = tv({
|
|
|
109
109
|
],
|
|
110
110
|
endIcon: "text-sm",
|
|
111
111
|
startIcon: "text-sm",
|
|
112
|
-
label: "text-
|
|
112
|
+
label: "text-base"
|
|
113
113
|
},
|
|
114
114
|
lg: {
|
|
115
115
|
wrapper: "w-14 h-8 mr-2",
|
|
@@ -121,7 +121,7 @@ var toggle = tv({
|
|
|
121
121
|
],
|
|
122
122
|
endIcon: "text-base",
|
|
123
123
|
startIcon: "text-base",
|
|
124
|
-
label: "text-
|
|
124
|
+
label: "text-lg"
|
|
125
125
|
},
|
|
126
126
|
xl: {
|
|
127
127
|
wrapper: "w-16 h-9 mr-2",
|
|
@@ -133,7 +133,7 @@ var toggle = tv({
|
|
|
133
133
|
],
|
|
134
134
|
endIcon: "text-base",
|
|
135
135
|
startIcon: "text-base",
|
|
136
|
-
label: "text-
|
|
136
|
+
label: "text-lg"
|
|
137
137
|
}
|
|
138
138
|
},
|
|
139
139
|
isDisabled: {
|
|
@@ -136,7 +136,12 @@ var checkbox = tv({
|
|
|
136
136
|
label: "transition-none"
|
|
137
137
|
},
|
|
138
138
|
false: {
|
|
139
|
-
wrapper: [
|
|
139
|
+
wrapper: [
|
|
140
|
+
"before:transition-background",
|
|
141
|
+
"after:transition-transform-opacity",
|
|
142
|
+
"after:!ease-linear",
|
|
143
|
+
"after:!duration-200"
|
|
144
|
+
],
|
|
140
145
|
icon: "transition-opacity",
|
|
141
146
|
label: "transition-opacity before:transition-width"
|
|
142
147
|
}
|
package/dist/components/badge.js
CHANGED
|
@@ -118,6 +118,7 @@ var badge = (0, import_tailwind_variants.tv)({
|
|
|
118
118
|
"font-regular",
|
|
119
119
|
"scale-100",
|
|
120
120
|
"opacity-100",
|
|
121
|
+
"subpixel-antialiased",
|
|
121
122
|
"data-[invisible=true]:scale-0",
|
|
122
123
|
"data-[invisible=true]:opacity-0"
|
|
123
124
|
]
|
|
@@ -203,7 +204,7 @@ var badge = (0, import_tailwind_variants.tv)({
|
|
|
203
204
|
badge: "transition-none"
|
|
204
205
|
},
|
|
205
206
|
false: {
|
|
206
|
-
badge: "transition-transform-opacity"
|
|
207
|
+
badge: "transition-transform-opacity !ease-soft-spring !duration-300"
|
|
207
208
|
}
|
|
208
209
|
},
|
|
209
210
|
disableOutline: {
|
|
@@ -455,28 +456,28 @@ var badge = (0, import_tailwind_variants.tv)({
|
|
|
455
456
|
placement: "top-right",
|
|
456
457
|
shape: "circle",
|
|
457
458
|
class: {
|
|
458
|
-
badge: "top-[
|
|
459
|
+
badge: "top-[10%] right-[10%] translate-x-1/2 -translate-y-1/2"
|
|
459
460
|
}
|
|
460
461
|
},
|
|
461
462
|
{
|
|
462
463
|
placement: "top-left",
|
|
463
464
|
shape: "circle",
|
|
464
465
|
class: {
|
|
465
|
-
badge: "top-[
|
|
466
|
+
badge: "top-[10%] left-[10%] -translate-x-1/2 -translate-y-1/2"
|
|
466
467
|
}
|
|
467
468
|
},
|
|
468
469
|
{
|
|
469
470
|
placement: "bottom-right",
|
|
470
471
|
shape: "circle",
|
|
471
472
|
class: {
|
|
472
|
-
badge: "bottom-[
|
|
473
|
+
badge: "bottom-[10%] right-[10%] translate-x-1/2 translate-y-1/2"
|
|
473
474
|
}
|
|
474
475
|
},
|
|
475
476
|
{
|
|
476
477
|
placement: "bottom-left",
|
|
477
478
|
shape: "circle",
|
|
478
479
|
class: {
|
|
479
|
-
badge: "bottom-[
|
|
480
|
+
badge: "bottom-[10%] left-[10%] -translate-x-1/2 translate-y-1/2"
|
|
480
481
|
}
|
|
481
482
|
}
|
|
482
483
|
]
|
|
@@ -161,7 +161,12 @@ var checkbox = (0, import_tailwind_variants.tv)({
|
|
|
161
161
|
label: "transition-none"
|
|
162
162
|
},
|
|
163
163
|
false: {
|
|
164
|
-
wrapper: [
|
|
164
|
+
wrapper: [
|
|
165
|
+
"before:transition-background",
|
|
166
|
+
"after:transition-transform-opacity",
|
|
167
|
+
"after:!ease-linear",
|
|
168
|
+
"after:!duration-200"
|
|
169
|
+
],
|
|
165
170
|
icon: "transition-opacity",
|
|
166
171
|
label: "transition-opacity before:transition-width"
|
|
167
172
|
}
|
package/dist/components/index.js
CHANGED
|
@@ -2239,6 +2239,7 @@ var badge = (0, import_tailwind_variants12.tv)({
|
|
|
2239
2239
|
"font-regular",
|
|
2240
2240
|
"scale-100",
|
|
2241
2241
|
"opacity-100",
|
|
2242
|
+
"subpixel-antialiased",
|
|
2242
2243
|
"data-[invisible=true]:scale-0",
|
|
2243
2244
|
"data-[invisible=true]:opacity-0"
|
|
2244
2245
|
]
|
|
@@ -2324,7 +2325,7 @@ var badge = (0, import_tailwind_variants12.tv)({
|
|
|
2324
2325
|
badge: "transition-none"
|
|
2325
2326
|
},
|
|
2326
2327
|
false: {
|
|
2327
|
-
badge: "transition-transform-opacity"
|
|
2328
|
+
badge: "transition-transform-opacity !ease-soft-spring !duration-300"
|
|
2328
2329
|
}
|
|
2329
2330
|
},
|
|
2330
2331
|
disableOutline: {
|
|
@@ -2576,28 +2577,28 @@ var badge = (0, import_tailwind_variants12.tv)({
|
|
|
2576
2577
|
placement: "top-right",
|
|
2577
2578
|
shape: "circle",
|
|
2578
2579
|
class: {
|
|
2579
|
-
badge: "top-[
|
|
2580
|
+
badge: "top-[10%] right-[10%] translate-x-1/2 -translate-y-1/2"
|
|
2580
2581
|
}
|
|
2581
2582
|
},
|
|
2582
2583
|
{
|
|
2583
2584
|
placement: "top-left",
|
|
2584
2585
|
shape: "circle",
|
|
2585
2586
|
class: {
|
|
2586
|
-
badge: "top-[
|
|
2587
|
+
badge: "top-[10%] left-[10%] -translate-x-1/2 -translate-y-1/2"
|
|
2587
2588
|
}
|
|
2588
2589
|
},
|
|
2589
2590
|
{
|
|
2590
2591
|
placement: "bottom-right",
|
|
2591
2592
|
shape: "circle",
|
|
2592
2593
|
class: {
|
|
2593
|
-
badge: "bottom-[
|
|
2594
|
+
badge: "bottom-[10%] right-[10%] translate-x-1/2 translate-y-1/2"
|
|
2594
2595
|
}
|
|
2595
2596
|
},
|
|
2596
2597
|
{
|
|
2597
2598
|
placement: "bottom-left",
|
|
2598
2599
|
shape: "circle",
|
|
2599
2600
|
class: {
|
|
2600
|
-
badge: "bottom-[
|
|
2601
|
+
badge: "bottom-[10%] left-[10%] -translate-x-1/2 translate-y-1/2"
|
|
2601
2602
|
}
|
|
2602
2603
|
}
|
|
2603
2604
|
]
|
|
@@ -2741,7 +2742,12 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2741
2742
|
label: "transition-none"
|
|
2742
2743
|
},
|
|
2743
2744
|
false: {
|
|
2744
|
-
wrapper: [
|
|
2745
|
+
wrapper: [
|
|
2746
|
+
"before:transition-background",
|
|
2747
|
+
"after:transition-transform-opacity",
|
|
2748
|
+
"after:!ease-linear",
|
|
2749
|
+
"after:!duration-200"
|
|
2750
|
+
],
|
|
2745
2751
|
icon: "transition-opacity",
|
|
2746
2752
|
label: "transition-opacity before:transition-width"
|
|
2747
2753
|
}
|
|
@@ -3403,7 +3409,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3403
3409
|
],
|
|
3404
3410
|
startIcon: "text-[0.6rem] left-1",
|
|
3405
3411
|
endIcon: "text-[0.6rem] right-1",
|
|
3406
|
-
label: "text-
|
|
3412
|
+
label: "text-xs"
|
|
3407
3413
|
},
|
|
3408
3414
|
sm: {
|
|
3409
3415
|
wrapper: "w-10 h-6 mr-2",
|
|
@@ -3415,7 +3421,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3415
3421
|
],
|
|
3416
3422
|
endIcon: "text-xs",
|
|
3417
3423
|
startIcon: "text-xs",
|
|
3418
|
-
label: "text-
|
|
3424
|
+
label: "text-sm"
|
|
3419
3425
|
},
|
|
3420
3426
|
md: {
|
|
3421
3427
|
wrapper: "w-12 h-7 mr-2",
|
|
@@ -3427,7 +3433,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3427
3433
|
],
|
|
3428
3434
|
endIcon: "text-sm",
|
|
3429
3435
|
startIcon: "text-sm",
|
|
3430
|
-
label: "text-
|
|
3436
|
+
label: "text-base"
|
|
3431
3437
|
},
|
|
3432
3438
|
lg: {
|
|
3433
3439
|
wrapper: "w-14 h-8 mr-2",
|
|
@@ -3439,7 +3445,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3439
3445
|
],
|
|
3440
3446
|
endIcon: "text-base",
|
|
3441
3447
|
startIcon: "text-base",
|
|
3442
|
-
label: "text-
|
|
3448
|
+
label: "text-lg"
|
|
3443
3449
|
},
|
|
3444
3450
|
xl: {
|
|
3445
3451
|
wrapper: "w-16 h-9 mr-2",
|
|
@@ -3451,7 +3457,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3451
3457
|
],
|
|
3452
3458
|
endIcon: "text-base",
|
|
3453
3459
|
startIcon: "text-base",
|
|
3454
|
-
label: "text-
|
|
3460
|
+
label: "text-lg"
|
|
3455
3461
|
}
|
|
3456
3462
|
},
|
|
3457
3463
|
isDisabled: {
|
|
@@ -5793,7 +5799,7 @@ var kbd = (0, import_tailwind_variants28.tv)({
|
|
|
5793
5799
|
"inline-block",
|
|
5794
5800
|
"space-x-0.5",
|
|
5795
5801
|
"font-sans",
|
|
5796
|
-
"font-
|
|
5802
|
+
"font-normal",
|
|
5797
5803
|
"text-center",
|
|
5798
5804
|
"text-sm",
|
|
5799
5805
|
"border",
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
} from "../chunk-UUJTS7XS.mjs";
|
|
14
14
|
import {
|
|
15
15
|
toggle
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-NGOZQK3L.mjs";
|
|
17
17
|
import {
|
|
18
18
|
user
|
|
19
19
|
} from "../chunk-ZNBW4PQF.mjs";
|
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
} from "../chunk-7EDXWCUZ.mjs";
|
|
63
63
|
import {
|
|
64
64
|
kbd
|
|
65
|
-
} from "../chunk-
|
|
65
|
+
} from "../chunk-6IVGIMY2.mjs";
|
|
66
66
|
import {
|
|
67
67
|
link,
|
|
68
68
|
linkAnchorClasses
|
|
@@ -73,7 +73,7 @@ import {
|
|
|
73
73
|
} from "../chunk-Y43NAEAT.mjs";
|
|
74
74
|
import {
|
|
75
75
|
badge
|
|
76
|
-
} from "../chunk-
|
|
76
|
+
} from "../chunk-25QTQFHB.mjs";
|
|
77
77
|
import {
|
|
78
78
|
button,
|
|
79
79
|
buttonGroup
|
|
@@ -84,7 +84,7 @@ import {
|
|
|
84
84
|
import {
|
|
85
85
|
checkbox,
|
|
86
86
|
checkboxGroup
|
|
87
|
-
} from "../chunk-
|
|
87
|
+
} from "../chunk-TLJBVOUD.mjs";
|
|
88
88
|
import {
|
|
89
89
|
chip
|
|
90
90
|
} from "../chunk-W5WYYDCM.mjs";
|
package/dist/components/kbd.js
CHANGED
package/dist/components/kbd.mjs
CHANGED
|
@@ -109,7 +109,7 @@ var toggle = (0, import_tailwind_variants.tv)({
|
|
|
109
109
|
],
|
|
110
110
|
startIcon: "text-[0.6rem] left-1",
|
|
111
111
|
endIcon: "text-[0.6rem] right-1",
|
|
112
|
-
label: "text-
|
|
112
|
+
label: "text-xs"
|
|
113
113
|
},
|
|
114
114
|
sm: {
|
|
115
115
|
wrapper: "w-10 h-6 mr-2",
|
|
@@ -121,7 +121,7 @@ var toggle = (0, import_tailwind_variants.tv)({
|
|
|
121
121
|
],
|
|
122
122
|
endIcon: "text-xs",
|
|
123
123
|
startIcon: "text-xs",
|
|
124
|
-
label: "text-
|
|
124
|
+
label: "text-sm"
|
|
125
125
|
},
|
|
126
126
|
md: {
|
|
127
127
|
wrapper: "w-12 h-7 mr-2",
|
|
@@ -133,7 +133,7 @@ var toggle = (0, import_tailwind_variants.tv)({
|
|
|
133
133
|
],
|
|
134
134
|
endIcon: "text-sm",
|
|
135
135
|
startIcon: "text-sm",
|
|
136
|
-
label: "text-
|
|
136
|
+
label: "text-base"
|
|
137
137
|
},
|
|
138
138
|
lg: {
|
|
139
139
|
wrapper: "w-14 h-8 mr-2",
|
|
@@ -145,7 +145,7 @@ var toggle = (0, import_tailwind_variants.tv)({
|
|
|
145
145
|
],
|
|
146
146
|
endIcon: "text-base",
|
|
147
147
|
startIcon: "text-base",
|
|
148
|
-
label: "text-
|
|
148
|
+
label: "text-lg"
|
|
149
149
|
},
|
|
150
150
|
xl: {
|
|
151
151
|
wrapper: "w-16 h-9 mr-2",
|
|
@@ -157,7 +157,7 @@ var toggle = (0, import_tailwind_variants.tv)({
|
|
|
157
157
|
],
|
|
158
158
|
endIcon: "text-base",
|
|
159
159
|
startIcon: "text-base",
|
|
160
|
-
label: "text-
|
|
160
|
+
label: "text-lg"
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
isDisabled: {
|
package/dist/index.js
CHANGED
|
@@ -2271,6 +2271,7 @@ var badge = (0, import_tailwind_variants12.tv)({
|
|
|
2271
2271
|
"font-regular",
|
|
2272
2272
|
"scale-100",
|
|
2273
2273
|
"opacity-100",
|
|
2274
|
+
"subpixel-antialiased",
|
|
2274
2275
|
"data-[invisible=true]:scale-0",
|
|
2275
2276
|
"data-[invisible=true]:opacity-0"
|
|
2276
2277
|
]
|
|
@@ -2356,7 +2357,7 @@ var badge = (0, import_tailwind_variants12.tv)({
|
|
|
2356
2357
|
badge: "transition-none"
|
|
2357
2358
|
},
|
|
2358
2359
|
false: {
|
|
2359
|
-
badge: "transition-transform-opacity"
|
|
2360
|
+
badge: "transition-transform-opacity !ease-soft-spring !duration-300"
|
|
2360
2361
|
}
|
|
2361
2362
|
},
|
|
2362
2363
|
disableOutline: {
|
|
@@ -2608,28 +2609,28 @@ var badge = (0, import_tailwind_variants12.tv)({
|
|
|
2608
2609
|
placement: "top-right",
|
|
2609
2610
|
shape: "circle",
|
|
2610
2611
|
class: {
|
|
2611
|
-
badge: "top-[
|
|
2612
|
+
badge: "top-[10%] right-[10%] translate-x-1/2 -translate-y-1/2"
|
|
2612
2613
|
}
|
|
2613
2614
|
},
|
|
2614
2615
|
{
|
|
2615
2616
|
placement: "top-left",
|
|
2616
2617
|
shape: "circle",
|
|
2617
2618
|
class: {
|
|
2618
|
-
badge: "top-[
|
|
2619
|
+
badge: "top-[10%] left-[10%] -translate-x-1/2 -translate-y-1/2"
|
|
2619
2620
|
}
|
|
2620
2621
|
},
|
|
2621
2622
|
{
|
|
2622
2623
|
placement: "bottom-right",
|
|
2623
2624
|
shape: "circle",
|
|
2624
2625
|
class: {
|
|
2625
|
-
badge: "bottom-[
|
|
2626
|
+
badge: "bottom-[10%] right-[10%] translate-x-1/2 translate-y-1/2"
|
|
2626
2627
|
}
|
|
2627
2628
|
},
|
|
2628
2629
|
{
|
|
2629
2630
|
placement: "bottom-left",
|
|
2630
2631
|
shape: "circle",
|
|
2631
2632
|
class: {
|
|
2632
|
-
badge: "bottom-[
|
|
2633
|
+
badge: "bottom-[10%] left-[10%] -translate-x-1/2 translate-y-1/2"
|
|
2633
2634
|
}
|
|
2634
2635
|
}
|
|
2635
2636
|
]
|
|
@@ -2773,7 +2774,12 @@ var checkbox = (0, import_tailwind_variants13.tv)({
|
|
|
2773
2774
|
label: "transition-none"
|
|
2774
2775
|
},
|
|
2775
2776
|
false: {
|
|
2776
|
-
wrapper: [
|
|
2777
|
+
wrapper: [
|
|
2778
|
+
"before:transition-background",
|
|
2779
|
+
"after:transition-transform-opacity",
|
|
2780
|
+
"after:!ease-linear",
|
|
2781
|
+
"after:!duration-200"
|
|
2782
|
+
],
|
|
2777
2783
|
icon: "transition-opacity",
|
|
2778
2784
|
label: "transition-opacity before:transition-width"
|
|
2779
2785
|
}
|
|
@@ -3435,7 +3441,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3435
3441
|
],
|
|
3436
3442
|
startIcon: "text-[0.6rem] left-1",
|
|
3437
3443
|
endIcon: "text-[0.6rem] right-1",
|
|
3438
|
-
label: "text-
|
|
3444
|
+
label: "text-xs"
|
|
3439
3445
|
},
|
|
3440
3446
|
sm: {
|
|
3441
3447
|
wrapper: "w-10 h-6 mr-2",
|
|
@@ -3447,7 +3453,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3447
3453
|
],
|
|
3448
3454
|
endIcon: "text-xs",
|
|
3449
3455
|
startIcon: "text-xs",
|
|
3450
|
-
label: "text-
|
|
3456
|
+
label: "text-sm"
|
|
3451
3457
|
},
|
|
3452
3458
|
md: {
|
|
3453
3459
|
wrapper: "w-12 h-7 mr-2",
|
|
@@ -3459,7 +3465,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3459
3465
|
],
|
|
3460
3466
|
endIcon: "text-sm",
|
|
3461
3467
|
startIcon: "text-sm",
|
|
3462
|
-
label: "text-
|
|
3468
|
+
label: "text-base"
|
|
3463
3469
|
},
|
|
3464
3470
|
lg: {
|
|
3465
3471
|
wrapper: "w-14 h-8 mr-2",
|
|
@@ -3471,7 +3477,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3471
3477
|
],
|
|
3472
3478
|
endIcon: "text-base",
|
|
3473
3479
|
startIcon: "text-base",
|
|
3474
|
-
label: "text-
|
|
3480
|
+
label: "text-lg"
|
|
3475
3481
|
},
|
|
3476
3482
|
xl: {
|
|
3477
3483
|
wrapper: "w-16 h-9 mr-2",
|
|
@@ -3483,7 +3489,7 @@ var toggle = (0, import_tailwind_variants16.tv)({
|
|
|
3483
3489
|
],
|
|
3484
3490
|
endIcon: "text-base",
|
|
3485
3491
|
startIcon: "text-base",
|
|
3486
|
-
label: "text-
|
|
3492
|
+
label: "text-lg"
|
|
3487
3493
|
}
|
|
3488
3494
|
},
|
|
3489
3495
|
isDisabled: {
|
|
@@ -5825,7 +5831,7 @@ var kbd = (0, import_tailwind_variants28.tv)({
|
|
|
5825
5831
|
"inline-block",
|
|
5826
5832
|
"space-x-0.5",
|
|
5827
5833
|
"font-sans",
|
|
5828
|
-
"font-
|
|
5834
|
+
"font-normal",
|
|
5829
5835
|
"text-center",
|
|
5830
5836
|
"text-sm",
|
|
5831
5837
|
"border",
|
package/dist/index.mjs
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
} from "./chunk-UUJTS7XS.mjs";
|
|
14
14
|
import {
|
|
15
15
|
toggle
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-NGOZQK3L.mjs";
|
|
17
17
|
import {
|
|
18
18
|
user
|
|
19
19
|
} from "./chunk-ZNBW4PQF.mjs";
|
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
} from "./chunk-7EDXWCUZ.mjs";
|
|
63
63
|
import {
|
|
64
64
|
kbd
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-6IVGIMY2.mjs";
|
|
66
66
|
import {
|
|
67
67
|
link,
|
|
68
68
|
linkAnchorClasses
|
|
@@ -73,7 +73,7 @@ import {
|
|
|
73
73
|
} from "./chunk-Y43NAEAT.mjs";
|
|
74
74
|
import {
|
|
75
75
|
badge
|
|
76
|
-
} from "./chunk-
|
|
76
|
+
} from "./chunk-25QTQFHB.mjs";
|
|
77
77
|
import {
|
|
78
78
|
button,
|
|
79
79
|
buttonGroup
|
|
@@ -84,7 +84,7 @@ import {
|
|
|
84
84
|
import {
|
|
85
85
|
checkbox,
|
|
86
86
|
checkboxGroup
|
|
87
|
-
} from "./chunk-
|
|
87
|
+
} from "./chunk-TLJBVOUD.mjs";
|
|
88
88
|
import {
|
|
89
89
|
chip
|
|
90
90
|
} from "./chunk-W5WYYDCM.mjs";
|
|
@@ -105,7 +105,7 @@ import {
|
|
|
105
105
|
} from "./chunk-7CTZKPXG.mjs";
|
|
106
106
|
import {
|
|
107
107
|
nextui
|
|
108
|
-
} from "./chunk-
|
|
108
|
+
} from "./chunk-WUXZWYH4.mjs";
|
|
109
109
|
import "./chunk-XLATS5QU.mjs";
|
|
110
110
|
import {
|
|
111
111
|
absoluteFullClasses,
|
|
@@ -114,7 +114,6 @@ import {
|
|
|
114
114
|
ringClasses,
|
|
115
115
|
translateCenterClasses
|
|
116
116
|
} from "./chunk-INZK6TTL.mjs";
|
|
117
|
-
import "./chunk-DMASP6FA.mjs";
|
|
118
117
|
import "./chunk-WQEDQHKX.mjs";
|
|
119
118
|
import {
|
|
120
119
|
colors
|
|
@@ -124,6 +123,7 @@ import {
|
|
|
124
123
|
} from "./chunk-LQHWK6UV.mjs";
|
|
125
124
|
import "./chunk-37PIXVP4.mjs";
|
|
126
125
|
import "./chunk-M63AFAHO.mjs";
|
|
126
|
+
import "./chunk-DMASP6FA.mjs";
|
|
127
127
|
import {
|
|
128
128
|
commonColors
|
|
129
129
|
} from "./chunk-CRCBVLUP.mjs";
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WUXZWYH4.mjs";
|
|
4
4
|
import "./chunk-XLATS5QU.mjs";
|
|
5
5
|
import "./chunk-INZK6TTL.mjs";
|
|
6
|
-
import "./chunk-DMASP6FA.mjs";
|
|
7
6
|
import "./chunk-WQEDQHKX.mjs";
|
|
8
7
|
import "./chunk-M74ZSXB7.mjs";
|
|
9
8
|
import "./chunk-LQHWK6UV.mjs";
|
|
10
9
|
import "./chunk-37PIXVP4.mjs";
|
|
11
10
|
import "./chunk-M63AFAHO.mjs";
|
|
11
|
+
import "./chunk-DMASP6FA.mjs";
|
|
12
12
|
import "./chunk-CRCBVLUP.mjs";
|
|
13
13
|
import "./chunk-DCEG5LGX.mjs";
|
|
14
14
|
import "./chunk-L2OL7R23.mjs";
|
package/package.json
CHANGED
|
@@ -4,15 +4,15 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
baseStyles
|
|
6
6
|
} from "./chunk-INZK6TTL.mjs";
|
|
7
|
-
import {
|
|
8
|
-
animations
|
|
9
|
-
} from "./chunk-DMASP6FA.mjs";
|
|
10
7
|
import {
|
|
11
8
|
semanticColors
|
|
12
9
|
} from "./chunk-LQHWK6UV.mjs";
|
|
13
10
|
import {
|
|
14
11
|
removeDefaultKeys
|
|
15
12
|
} from "./chunk-37PIXVP4.mjs";
|
|
13
|
+
import {
|
|
14
|
+
animations
|
|
15
|
+
} from "./chunk-DMASP6FA.mjs";
|
|
16
16
|
import {
|
|
17
17
|
commonColors
|
|
18
18
|
} from "./chunk-CRCBVLUP.mjs";
|