@shuriken-ui/tailwind 3.0.0-next.0 → 3.0.0-next.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/plugins/index.cjs +118 -45
- package/dist/plugins/index.mjs +118 -45
- package/dist/preset.d.cts +1 -1
- package/dist/preset.d.mts +1 -1
- package/dist/preset.d.ts +1 -1
- package/dist/shared/{tailwind.f78a9037.d.cts → tailwind.a9f50d73.d.cts} +270 -40
- package/dist/shared/{tailwind.f78a9037.d.mts → tailwind.a9f50d73.d.mts} +270 -40
- package/dist/shared/{tailwind.f78a9037.d.ts → tailwind.a9f50d73.d.ts} +270 -40
- package/package.json +1 -1
@@ -3548,12 +3548,22 @@ declare const defaultConfig$D: {
|
|
3548
3548
|
md: string;
|
3549
3549
|
lg: string;
|
3550
3550
|
};
|
3551
|
-
|
3551
|
+
contrast: {
|
3552
3552
|
default: {
|
3553
3553
|
background: {
|
3554
3554
|
light: string;
|
3555
3555
|
dark: string;
|
3556
3556
|
};
|
3557
|
+
};
|
3558
|
+
contrast: {
|
3559
|
+
background: {
|
3560
|
+
light: string;
|
3561
|
+
dark: string;
|
3562
|
+
};
|
3563
|
+
};
|
3564
|
+
};
|
3565
|
+
color: {
|
3566
|
+
primary: {
|
3557
3567
|
font: {
|
3558
3568
|
color: {
|
3559
3569
|
light: string;
|
@@ -3561,11 +3571,47 @@ declare const defaultConfig$D: {
|
|
3561
3571
|
};
|
3562
3572
|
};
|
3563
3573
|
};
|
3564
|
-
|
3565
|
-
|
3566
|
-
|
3567
|
-
|
3574
|
+
info: {
|
3575
|
+
font: {
|
3576
|
+
color: {
|
3577
|
+
light: string;
|
3578
|
+
dark: string;
|
3579
|
+
};
|
3580
|
+
};
|
3581
|
+
};
|
3582
|
+
success: {
|
3583
|
+
font: {
|
3584
|
+
color: {
|
3585
|
+
light: string;
|
3586
|
+
dark: string;
|
3587
|
+
};
|
3568
3588
|
};
|
3589
|
+
};
|
3590
|
+
warning: {
|
3591
|
+
font: {
|
3592
|
+
color: {
|
3593
|
+
light: string;
|
3594
|
+
dark: string;
|
3595
|
+
};
|
3596
|
+
};
|
3597
|
+
};
|
3598
|
+
danger: {
|
3599
|
+
font: {
|
3600
|
+
color: {
|
3601
|
+
light: string;
|
3602
|
+
dark: string;
|
3603
|
+
};
|
3604
|
+
};
|
3605
|
+
};
|
3606
|
+
dark: {
|
3607
|
+
font: {
|
3608
|
+
color: {
|
3609
|
+
light: string;
|
3610
|
+
dark: string;
|
3611
|
+
};
|
3612
|
+
};
|
3613
|
+
};
|
3614
|
+
black: {
|
3569
3615
|
font: {
|
3570
3616
|
color: {
|
3571
3617
|
light: string;
|
@@ -3769,7 +3815,7 @@ declare const defaultConfig$z: {
|
|
3769
3815
|
};
|
3770
3816
|
};
|
3771
3817
|
};
|
3772
|
-
|
3818
|
+
light: {
|
3773
3819
|
background: {
|
3774
3820
|
light: string;
|
3775
3821
|
dark: string;
|
@@ -3891,7 +3937,7 @@ declare const defaultConfig$z: {
|
|
3891
3937
|
};
|
3892
3938
|
};
|
3893
3939
|
};
|
3894
|
-
|
3940
|
+
light: {
|
3895
3941
|
background: {
|
3896
3942
|
light: string;
|
3897
3943
|
dark: string;
|
@@ -4021,7 +4067,7 @@ declare const defaultConfig$z: {
|
|
4021
4067
|
};
|
4022
4068
|
};
|
4023
4069
|
};
|
4024
|
-
|
4070
|
+
light: {
|
4025
4071
|
background: {
|
4026
4072
|
light: string;
|
4027
4073
|
dark: string;
|
@@ -13273,12 +13319,22 @@ declare function createPreset({ theme, plugins, }?: {
|
|
13273
13319
|
md?: string | undefined;
|
13274
13320
|
lg?: string | undefined;
|
13275
13321
|
} | undefined;
|
13276
|
-
|
13322
|
+
contrast?: {
|
13277
13323
|
default?: {
|
13278
13324
|
background?: {
|
13279
13325
|
light?: string | undefined;
|
13280
13326
|
dark?: string | undefined;
|
13281
13327
|
} | undefined;
|
13328
|
+
} | undefined;
|
13329
|
+
contrast?: {
|
13330
|
+
background?: {
|
13331
|
+
light?: string | undefined;
|
13332
|
+
dark?: string | undefined;
|
13333
|
+
} | undefined;
|
13334
|
+
} | undefined;
|
13335
|
+
} | undefined;
|
13336
|
+
color?: {
|
13337
|
+
primary?: {
|
13282
13338
|
font?: {
|
13283
13339
|
color?: {
|
13284
13340
|
light?: string | undefined;
|
@@ -13286,11 +13342,47 @@ declare function createPreset({ theme, plugins, }?: {
|
|
13286
13342
|
} | undefined;
|
13287
13343
|
} | undefined;
|
13288
13344
|
} | undefined;
|
13289
|
-
|
13290
|
-
|
13291
|
-
|
13292
|
-
|
13345
|
+
info?: {
|
13346
|
+
font?: {
|
13347
|
+
color?: {
|
13348
|
+
light?: string | undefined;
|
13349
|
+
dark?: string | undefined;
|
13350
|
+
} | undefined;
|
13293
13351
|
} | undefined;
|
13352
|
+
} | undefined;
|
13353
|
+
success?: {
|
13354
|
+
font?: {
|
13355
|
+
color?: {
|
13356
|
+
light?: string | undefined;
|
13357
|
+
dark?: string | undefined;
|
13358
|
+
} | undefined;
|
13359
|
+
} | undefined;
|
13360
|
+
} | undefined;
|
13361
|
+
warning?: {
|
13362
|
+
font?: {
|
13363
|
+
color?: {
|
13364
|
+
light?: string | undefined;
|
13365
|
+
dark?: string | undefined;
|
13366
|
+
} | undefined;
|
13367
|
+
} | undefined;
|
13368
|
+
} | undefined;
|
13369
|
+
danger?: {
|
13370
|
+
font?: {
|
13371
|
+
color?: {
|
13372
|
+
light?: string | undefined;
|
13373
|
+
dark?: string | undefined;
|
13374
|
+
} | undefined;
|
13375
|
+
} | undefined;
|
13376
|
+
} | undefined;
|
13377
|
+
dark?: {
|
13378
|
+
font?: {
|
13379
|
+
color?: {
|
13380
|
+
light?: string | undefined;
|
13381
|
+
dark?: string | undefined;
|
13382
|
+
} | undefined;
|
13383
|
+
} | undefined;
|
13384
|
+
} | undefined;
|
13385
|
+
black?: {
|
13294
13386
|
font?: {
|
13295
13387
|
color?: {
|
13296
13388
|
light?: string | undefined;
|
@@ -13470,7 +13562,7 @@ declare function createPreset({ theme, plugins, }?: {
|
|
13470
13562
|
} | undefined;
|
13471
13563
|
} | undefined;
|
13472
13564
|
} | undefined;
|
13473
|
-
|
13565
|
+
light?: {
|
13474
13566
|
background?: {
|
13475
13567
|
light?: string | undefined;
|
13476
13568
|
dark?: string | undefined;
|
@@ -13592,7 +13684,7 @@ declare function createPreset({ theme, plugins, }?: {
|
|
13592
13684
|
} | undefined;
|
13593
13685
|
} | undefined;
|
13594
13686
|
} | undefined;
|
13595
|
-
|
13687
|
+
light?: {
|
13596
13688
|
background?: {
|
13597
13689
|
light?: string | undefined;
|
13598
13690
|
dark?: string | undefined;
|
@@ -13722,7 +13814,7 @@ declare function createPreset({ theme, plugins, }?: {
|
|
13722
13814
|
} | undefined;
|
13723
13815
|
} | undefined;
|
13724
13816
|
} | undefined;
|
13725
|
-
|
13817
|
+
light?: {
|
13726
13818
|
background?: {
|
13727
13819
|
light?: string | undefined;
|
13728
13820
|
dark?: string | undefined;
|
@@ -22719,12 +22811,22 @@ declare function createPreset({ theme, plugins, }?: {
|
|
22719
22811
|
md?: string | undefined;
|
22720
22812
|
lg?: string | undefined;
|
22721
22813
|
} | undefined;
|
22722
|
-
|
22814
|
+
contrast?: {
|
22723
22815
|
default?: {
|
22724
22816
|
background?: {
|
22725
22817
|
light?: string | undefined;
|
22726
22818
|
dark?: string | undefined;
|
22727
22819
|
} | undefined;
|
22820
|
+
} | undefined;
|
22821
|
+
contrast?: {
|
22822
|
+
background?: {
|
22823
|
+
light?: string | undefined;
|
22824
|
+
dark?: string | undefined;
|
22825
|
+
} | undefined;
|
22826
|
+
} | undefined;
|
22827
|
+
} | undefined;
|
22828
|
+
color?: {
|
22829
|
+
primary?: {
|
22728
22830
|
font?: {
|
22729
22831
|
color?: {
|
22730
22832
|
light?: string | undefined;
|
@@ -22732,11 +22834,47 @@ declare function createPreset({ theme, plugins, }?: {
|
|
22732
22834
|
} | undefined;
|
22733
22835
|
} | undefined;
|
22734
22836
|
} | undefined;
|
22735
|
-
|
22736
|
-
|
22737
|
-
|
22738
|
-
|
22837
|
+
info?: {
|
22838
|
+
font?: {
|
22839
|
+
color?: {
|
22840
|
+
light?: string | undefined;
|
22841
|
+
dark?: string | undefined;
|
22842
|
+
} | undefined;
|
22843
|
+
} | undefined;
|
22844
|
+
} | undefined;
|
22845
|
+
success?: {
|
22846
|
+
font?: {
|
22847
|
+
color?: {
|
22848
|
+
light?: string | undefined;
|
22849
|
+
dark?: string | undefined;
|
22850
|
+
} | undefined;
|
22851
|
+
} | undefined;
|
22852
|
+
} | undefined;
|
22853
|
+
warning?: {
|
22854
|
+
font?: {
|
22855
|
+
color?: {
|
22856
|
+
light?: string | undefined;
|
22857
|
+
dark?: string | undefined;
|
22858
|
+
} | undefined;
|
22739
22859
|
} | undefined;
|
22860
|
+
} | undefined;
|
22861
|
+
danger?: {
|
22862
|
+
font?: {
|
22863
|
+
color?: {
|
22864
|
+
light?: string | undefined;
|
22865
|
+
dark?: string | undefined;
|
22866
|
+
} | undefined;
|
22867
|
+
} | undefined;
|
22868
|
+
} | undefined;
|
22869
|
+
dark?: {
|
22870
|
+
font?: {
|
22871
|
+
color?: {
|
22872
|
+
light?: string | undefined;
|
22873
|
+
dark?: string | undefined;
|
22874
|
+
} | undefined;
|
22875
|
+
} | undefined;
|
22876
|
+
} | undefined;
|
22877
|
+
black?: {
|
22740
22878
|
font?: {
|
22741
22879
|
color?: {
|
22742
22880
|
light?: string | undefined;
|
@@ -22916,7 +23054,7 @@ declare function createPreset({ theme, plugins, }?: {
|
|
22916
23054
|
} | undefined;
|
22917
23055
|
} | undefined;
|
22918
23056
|
} | undefined;
|
22919
|
-
|
23057
|
+
light?: {
|
22920
23058
|
background?: {
|
22921
23059
|
light?: string | undefined;
|
22922
23060
|
dark?: string | undefined;
|
@@ -23038,7 +23176,7 @@ declare function createPreset({ theme, plugins, }?: {
|
|
23038
23176
|
} | undefined;
|
23039
23177
|
} | undefined;
|
23040
23178
|
} | undefined;
|
23041
|
-
|
23179
|
+
light?: {
|
23042
23180
|
background?: {
|
23043
23181
|
light?: string | undefined;
|
23044
23182
|
dark?: string | undefined;
|
@@ -23168,7 +23306,7 @@ declare function createPreset({ theme, plugins, }?: {
|
|
23168
23306
|
} | undefined;
|
23169
23307
|
} | undefined;
|
23170
23308
|
} | undefined;
|
23171
|
-
|
23309
|
+
light?: {
|
23172
23310
|
background?: {
|
23173
23311
|
light?: string | undefined;
|
23174
23312
|
dark?: string | undefined;
|
@@ -32183,12 +32321,22 @@ declare const preset: {
|
|
32183
32321
|
md?: string | undefined;
|
32184
32322
|
lg?: string | undefined;
|
32185
32323
|
} | undefined;
|
32186
|
-
|
32324
|
+
contrast?: {
|
32187
32325
|
default?: {
|
32188
32326
|
background?: {
|
32189
32327
|
light?: string | undefined;
|
32190
32328
|
dark?: string | undefined;
|
32191
32329
|
} | undefined;
|
32330
|
+
} | undefined;
|
32331
|
+
contrast?: {
|
32332
|
+
background?: {
|
32333
|
+
light?: string | undefined;
|
32334
|
+
dark?: string | undefined;
|
32335
|
+
} | undefined;
|
32336
|
+
} | undefined;
|
32337
|
+
} | undefined;
|
32338
|
+
color?: {
|
32339
|
+
primary?: {
|
32192
32340
|
font?: {
|
32193
32341
|
color?: {
|
32194
32342
|
light?: string | undefined;
|
@@ -32196,11 +32344,47 @@ declare const preset: {
|
|
32196
32344
|
} | undefined;
|
32197
32345
|
} | undefined;
|
32198
32346
|
} | undefined;
|
32199
|
-
|
32200
|
-
|
32201
|
-
|
32202
|
-
|
32347
|
+
info?: {
|
32348
|
+
font?: {
|
32349
|
+
color?: {
|
32350
|
+
light?: string | undefined;
|
32351
|
+
dark?: string | undefined;
|
32352
|
+
} | undefined;
|
32353
|
+
} | undefined;
|
32354
|
+
} | undefined;
|
32355
|
+
success?: {
|
32356
|
+
font?: {
|
32357
|
+
color?: {
|
32358
|
+
light?: string | undefined;
|
32359
|
+
dark?: string | undefined;
|
32360
|
+
} | undefined;
|
32361
|
+
} | undefined;
|
32362
|
+
} | undefined;
|
32363
|
+
warning?: {
|
32364
|
+
font?: {
|
32365
|
+
color?: {
|
32366
|
+
light?: string | undefined;
|
32367
|
+
dark?: string | undefined;
|
32368
|
+
} | undefined;
|
32369
|
+
} | undefined;
|
32370
|
+
} | undefined;
|
32371
|
+
danger?: {
|
32372
|
+
font?: {
|
32373
|
+
color?: {
|
32374
|
+
light?: string | undefined;
|
32375
|
+
dark?: string | undefined;
|
32376
|
+
} | undefined;
|
32203
32377
|
} | undefined;
|
32378
|
+
} | undefined;
|
32379
|
+
dark?: {
|
32380
|
+
font?: {
|
32381
|
+
color?: {
|
32382
|
+
light?: string | undefined;
|
32383
|
+
dark?: string | undefined;
|
32384
|
+
} | undefined;
|
32385
|
+
} | undefined;
|
32386
|
+
} | undefined;
|
32387
|
+
black?: {
|
32204
32388
|
font?: {
|
32205
32389
|
color?: {
|
32206
32390
|
light?: string | undefined;
|
@@ -32380,7 +32564,7 @@ declare const preset: {
|
|
32380
32564
|
} | undefined;
|
32381
32565
|
} | undefined;
|
32382
32566
|
} | undefined;
|
32383
|
-
|
32567
|
+
light?: {
|
32384
32568
|
background?: {
|
32385
32569
|
light?: string | undefined;
|
32386
32570
|
dark?: string | undefined;
|
@@ -32502,7 +32686,7 @@ declare const preset: {
|
|
32502
32686
|
} | undefined;
|
32503
32687
|
} | undefined;
|
32504
32688
|
} | undefined;
|
32505
|
-
|
32689
|
+
light?: {
|
32506
32690
|
background?: {
|
32507
32691
|
light?: string | undefined;
|
32508
32692
|
dark?: string | undefined;
|
@@ -32632,7 +32816,7 @@ declare const preset: {
|
|
32632
32816
|
} | undefined;
|
32633
32817
|
} | undefined;
|
32634
32818
|
} | undefined;
|
32635
|
-
|
32819
|
+
light?: {
|
32636
32820
|
background?: {
|
32637
32821
|
light?: string | undefined;
|
32638
32822
|
dark?: string | undefined;
|
@@ -41629,12 +41813,22 @@ declare const preset: {
|
|
41629
41813
|
md?: string | undefined;
|
41630
41814
|
lg?: string | undefined;
|
41631
41815
|
} | undefined;
|
41632
|
-
|
41816
|
+
contrast?: {
|
41633
41817
|
default?: {
|
41634
41818
|
background?: {
|
41635
41819
|
light?: string | undefined;
|
41636
41820
|
dark?: string | undefined;
|
41637
41821
|
} | undefined;
|
41822
|
+
} | undefined;
|
41823
|
+
contrast?: {
|
41824
|
+
background?: {
|
41825
|
+
light?: string | undefined;
|
41826
|
+
dark?: string | undefined;
|
41827
|
+
} | undefined;
|
41828
|
+
} | undefined;
|
41829
|
+
} | undefined;
|
41830
|
+
color?: {
|
41831
|
+
primary?: {
|
41638
41832
|
font?: {
|
41639
41833
|
color?: {
|
41640
41834
|
light?: string | undefined;
|
@@ -41642,11 +41836,47 @@ declare const preset: {
|
|
41642
41836
|
} | undefined;
|
41643
41837
|
} | undefined;
|
41644
41838
|
} | undefined;
|
41645
|
-
|
41646
|
-
|
41647
|
-
|
41648
|
-
|
41839
|
+
info?: {
|
41840
|
+
font?: {
|
41841
|
+
color?: {
|
41842
|
+
light?: string | undefined;
|
41843
|
+
dark?: string | undefined;
|
41844
|
+
} | undefined;
|
41649
41845
|
} | undefined;
|
41846
|
+
} | undefined;
|
41847
|
+
success?: {
|
41848
|
+
font?: {
|
41849
|
+
color?: {
|
41850
|
+
light?: string | undefined;
|
41851
|
+
dark?: string | undefined;
|
41852
|
+
} | undefined;
|
41853
|
+
} | undefined;
|
41854
|
+
} | undefined;
|
41855
|
+
warning?: {
|
41856
|
+
font?: {
|
41857
|
+
color?: {
|
41858
|
+
light?: string | undefined;
|
41859
|
+
dark?: string | undefined;
|
41860
|
+
} | undefined;
|
41861
|
+
} | undefined;
|
41862
|
+
} | undefined;
|
41863
|
+
danger?: {
|
41864
|
+
font?: {
|
41865
|
+
color?: {
|
41866
|
+
light?: string | undefined;
|
41867
|
+
dark?: string | undefined;
|
41868
|
+
} | undefined;
|
41869
|
+
} | undefined;
|
41870
|
+
} | undefined;
|
41871
|
+
dark?: {
|
41872
|
+
font?: {
|
41873
|
+
color?: {
|
41874
|
+
light?: string | undefined;
|
41875
|
+
dark?: string | undefined;
|
41876
|
+
} | undefined;
|
41877
|
+
} | undefined;
|
41878
|
+
} | undefined;
|
41879
|
+
black?: {
|
41650
41880
|
font?: {
|
41651
41881
|
color?: {
|
41652
41882
|
light?: string | undefined;
|
@@ -41826,7 +42056,7 @@ declare const preset: {
|
|
41826
42056
|
} | undefined;
|
41827
42057
|
} | undefined;
|
41828
42058
|
} | undefined;
|
41829
|
-
|
42059
|
+
light?: {
|
41830
42060
|
background?: {
|
41831
42061
|
light?: string | undefined;
|
41832
42062
|
dark?: string | undefined;
|
@@ -41948,7 +42178,7 @@ declare const preset: {
|
|
41948
42178
|
} | undefined;
|
41949
42179
|
} | undefined;
|
41950
42180
|
} | undefined;
|
41951
|
-
|
42181
|
+
light?: {
|
41952
42182
|
background?: {
|
41953
42183
|
light?: string | undefined;
|
41954
42184
|
dark?: string | undefined;
|
@@ -42078,7 +42308,7 @@ declare const preset: {
|
|
42078
42308
|
} | undefined;
|
42079
42309
|
} | undefined;
|
42080
42310
|
} | undefined;
|
42081
|
-
|
42311
|
+
light?: {
|
42082
42312
|
background?: {
|
42083
42313
|
light?: string | undefined;
|
42084
42314
|
dark?: string | undefined;
|