cekat-ui 1.3.9 → 1.3.10
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/index.d.mts +192 -0
- package/dist/index.d.ts +192 -0
- package/dist/index.mjs +5297 -4535
- package/dist/index.umd.js +4 -4
- package/dist/style.css +192 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -683,6 +683,14 @@ body {
|
|
|
683
683
|
inset: 0px;
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
+
.-left-4 {
|
|
687
|
+
left: -1rem;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.-top-3 {
|
|
691
|
+
top: -0.75rem;
|
|
692
|
+
}
|
|
693
|
+
|
|
686
694
|
.bottom-0 {
|
|
687
695
|
bottom: 0px;
|
|
688
696
|
}
|
|
@@ -852,6 +860,10 @@ body {
|
|
|
852
860
|
margin-right: 0.625rem;
|
|
853
861
|
}
|
|
854
862
|
|
|
863
|
+
.mt-0\.5 {
|
|
864
|
+
margin-top: 0.125rem;
|
|
865
|
+
}
|
|
866
|
+
|
|
855
867
|
.mt-1 {
|
|
856
868
|
margin-top: 0.25rem;
|
|
857
869
|
}
|
|
@@ -920,6 +932,11 @@ body {
|
|
|
920
932
|
height: 0.75rem;
|
|
921
933
|
}
|
|
922
934
|
|
|
935
|
+
.size-3\.5 {
|
|
936
|
+
width: 0.875rem;
|
|
937
|
+
height: 0.875rem;
|
|
938
|
+
}
|
|
939
|
+
|
|
923
940
|
.size-4 {
|
|
924
941
|
width: 1rem;
|
|
925
942
|
height: 1rem;
|
|
@@ -1089,6 +1106,10 @@ body {
|
|
|
1089
1106
|
height: 100px;
|
|
1090
1107
|
}
|
|
1091
1108
|
|
|
1109
|
+
.h-\[122px\] {
|
|
1110
|
+
height: 122px;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1092
1113
|
.h-\[200vh\] {
|
|
1093
1114
|
height: 200vh;
|
|
1094
1115
|
}
|
|
@@ -1265,6 +1286,10 @@ body {
|
|
|
1265
1286
|
width: 6rem;
|
|
1266
1287
|
}
|
|
1267
1288
|
|
|
1289
|
+
.w-28 {
|
|
1290
|
+
width: 7rem;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1268
1293
|
.w-3 {
|
|
1269
1294
|
width: 0.75rem;
|
|
1270
1295
|
}
|
|
@@ -1345,6 +1370,11 @@ body {
|
|
|
1345
1370
|
width: auto;
|
|
1346
1371
|
}
|
|
1347
1372
|
|
|
1373
|
+
.w-fit {
|
|
1374
|
+
width: -moz-fit-content;
|
|
1375
|
+
width: fit-content;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1348
1378
|
.w-full {
|
|
1349
1379
|
width: 100%;
|
|
1350
1380
|
}
|
|
@@ -1361,6 +1391,10 @@ body {
|
|
|
1361
1391
|
min-width: 2rem;
|
|
1362
1392
|
}
|
|
1363
1393
|
|
|
1394
|
+
.min-w-\[120px\] {
|
|
1395
|
+
min-width: 120px;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1364
1398
|
.min-w-\[160px\] {
|
|
1365
1399
|
min-width: 160px;
|
|
1366
1400
|
}
|
|
@@ -1406,10 +1440,18 @@ body {
|
|
|
1406
1440
|
max-width: 320px;
|
|
1407
1441
|
}
|
|
1408
1442
|
|
|
1443
|
+
.max-w-\[400px\] {
|
|
1444
|
+
max-width: 400px;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1409
1447
|
.max-w-\[420px\] {
|
|
1410
1448
|
max-width: 420px;
|
|
1411
1449
|
}
|
|
1412
1450
|
|
|
1451
|
+
.max-w-\[504px\] {
|
|
1452
|
+
max-width: 504px;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1413
1455
|
.max-w-\[600px\] {
|
|
1414
1456
|
max-width: 600px;
|
|
1415
1457
|
}
|
|
@@ -1571,6 +1613,10 @@ body {
|
|
|
1571
1613
|
list-style-type: disc;
|
|
1572
1614
|
}
|
|
1573
1615
|
|
|
1616
|
+
.grid-cols-2 {
|
|
1617
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1574
1620
|
.grid-cols-4 {
|
|
1575
1621
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1576
1622
|
}
|
|
@@ -1639,6 +1685,10 @@ body {
|
|
|
1639
1685
|
gap: 0.375rem;
|
|
1640
1686
|
}
|
|
1641
1687
|
|
|
1688
|
+
.gap-10 {
|
|
1689
|
+
gap: 2.5rem;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1642
1692
|
.gap-12 {
|
|
1643
1693
|
gap: 3rem;
|
|
1644
1694
|
}
|
|
@@ -1721,6 +1771,10 @@ body {
|
|
|
1721
1771
|
white-space: nowrap;
|
|
1722
1772
|
}
|
|
1723
1773
|
|
|
1774
|
+
.break-words {
|
|
1775
|
+
overflow-wrap: break-word;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1724
1778
|
.rounded {
|
|
1725
1779
|
border-radius: 0.25rem;
|
|
1726
1780
|
}
|
|
@@ -2746,6 +2800,11 @@ body {
|
|
|
2746
2800
|
padding-right: 0.25rem;
|
|
2747
2801
|
}
|
|
2748
2802
|
|
|
2803
|
+
.px-1\.5 {
|
|
2804
|
+
padding-left: 0.375rem;
|
|
2805
|
+
padding-right: 0.375rem;
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2749
2808
|
.px-2 {
|
|
2750
2809
|
padding-left: 0.5rem;
|
|
2751
2810
|
padding-right: 0.5rem;
|
|
@@ -3246,6 +3305,11 @@ body {
|
|
|
3246
3305
|
color: currentColor;
|
|
3247
3306
|
}
|
|
3248
3307
|
|
|
3308
|
+
.text-error-100 {
|
|
3309
|
+
--tw-text-opacity: 1;
|
|
3310
|
+
color: rgb(253 226 209 / var(--tw-text-opacity, 1));
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3249
3313
|
.text-error-400 {
|
|
3250
3314
|
--tw-text-opacity: 1;
|
|
3251
3315
|
color: rgb(237 102 83 / var(--tw-text-opacity, 1));
|
|
@@ -3266,6 +3330,11 @@ body {
|
|
|
3266
3330
|
color: rgb(162 15 35 / var(--tw-text-opacity, 1));
|
|
3267
3331
|
}
|
|
3268
3332
|
|
|
3333
|
+
.text-error-800 {
|
|
3334
|
+
--tw-text-opacity: 1;
|
|
3335
|
+
color: rgb(131 9 36 / var(--tw-text-opacity, 1));
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3269
3338
|
.text-indigo-600 {
|
|
3270
3339
|
--tw-text-opacity: 1;
|
|
3271
3340
|
color: rgb(68 76 231 / var(--tw-text-opacity, 1));
|
|
@@ -3276,11 +3345,21 @@ body {
|
|
|
3276
3345
|
color: rgb(53 56 205 / var(--tw-text-opacity, 1));
|
|
3277
3346
|
}
|
|
3278
3347
|
|
|
3348
|
+
.text-info-100 {
|
|
3349
|
+
--tw-text-opacity: 1;
|
|
3350
|
+
color: rgb(206 233 253 / var(--tw-text-opacity, 1));
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3279
3353
|
.text-info-700 {
|
|
3280
3354
|
--tw-text-opacity: 1;
|
|
3281
3355
|
color: rgb(8 59 164 / var(--tw-text-opacity, 1));
|
|
3282
3356
|
}
|
|
3283
3357
|
|
|
3358
|
+
.text-info-900 {
|
|
3359
|
+
--tw-text-opacity: 1;
|
|
3360
|
+
color: rgb(3 29 109 / var(--tw-text-opacity, 1));
|
|
3361
|
+
}
|
|
3362
|
+
|
|
3284
3363
|
.text-light-100 {
|
|
3285
3364
|
--tw-text-opacity: 1;
|
|
3286
3365
|
color: rgb(242 244 247 / var(--tw-text-opacity, 1));
|
|
@@ -3381,6 +3460,11 @@ body {
|
|
|
3381
3460
|
color: rgb(15 134 153 / var(--tw-text-opacity, 1));
|
|
3382
3461
|
}
|
|
3383
3462
|
|
|
3463
|
+
.text-success-100 {
|
|
3464
|
+
--tw-text-opacity: 1;
|
|
3465
|
+
color: rgb(202 249 204 / var(--tw-text-opacity, 1));
|
|
3466
|
+
}
|
|
3467
|
+
|
|
3384
3468
|
.text-success-500 {
|
|
3385
3469
|
--tw-text-opacity: 1;
|
|
3386
3470
|
color: rgb(8 145 70 / var(--tw-text-opacity, 1));
|
|
@@ -3396,11 +3480,21 @@ body {
|
|
|
3396
3480
|
color: rgb(4 104 69 / var(--tw-text-opacity, 1));
|
|
3397
3481
|
}
|
|
3398
3482
|
|
|
3483
|
+
.text-success-900 {
|
|
3484
|
+
--tw-text-opacity: 1;
|
|
3485
|
+
color: rgb(1 69 59 / var(--tw-text-opacity, 1));
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3399
3488
|
.text-teal-600 {
|
|
3400
3489
|
--tw-text-opacity: 1;
|
|
3401
3490
|
color: rgb(14 147 132 / var(--tw-text-opacity, 1));
|
|
3402
3491
|
}
|
|
3403
3492
|
|
|
3493
|
+
.text-warning-100 {
|
|
3494
|
+
--tw-text-opacity: 1;
|
|
3495
|
+
color: rgb(255 250 235 / var(--tw-text-opacity, 1));
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3404
3498
|
.text-warning-500 {
|
|
3405
3499
|
--tw-text-opacity: 1;
|
|
3406
3500
|
color: rgb(247 144 9 / var(--tw-text-opacity, 1));
|
|
@@ -3429,6 +3523,10 @@ body {
|
|
|
3429
3523
|
text-decoration-line: underline;
|
|
3430
3524
|
}
|
|
3431
3525
|
|
|
3526
|
+
.underline-offset-2 {
|
|
3527
|
+
text-underline-offset: 2px;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3432
3530
|
.opacity-0 {
|
|
3433
3531
|
opacity: 0;
|
|
3434
3532
|
}
|
|
@@ -3471,6 +3569,12 @@ body {
|
|
|
3471
3569
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3472
3570
|
}
|
|
3473
3571
|
|
|
3572
|
+
.shadow-\[0px_4px_4px_0px_rgba\(0\2c 0\2c 0\2c 0\.04\)\] {
|
|
3573
|
+
--tw-shadow: 0px 4px 4px 0px rgba(0,0,0,0.04);
|
|
3574
|
+
--tw-shadow-colored: 0px 4px 4px 0px var(--tw-shadow-color);
|
|
3575
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3474
3578
|
.shadow-\[inset_-1px_0_0_0_\#D0D5DD\] {
|
|
3475
3579
|
--tw-shadow: inset -1px 0 0 0 #D0D5DD;
|
|
3476
3580
|
--tw-shadow-colored: inset -1px 0 0 0 var(--tw-shadow-color);
|
|
@@ -3570,6 +3674,12 @@ body {
|
|
|
3570
3674
|
transition-duration: 150ms;
|
|
3571
3675
|
}
|
|
3572
3676
|
|
|
3677
|
+
.transition-\[color\2c background-color\] {
|
|
3678
|
+
transition-property: color,background-color;
|
|
3679
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3680
|
+
transition-duration: 150ms;
|
|
3681
|
+
}
|
|
3682
|
+
|
|
3573
3683
|
.transition-all {
|
|
3574
3684
|
transition-property: all;
|
|
3575
3685
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -4408,6 +4518,10 @@ body {
|
|
|
4408
4518
|
border-right-width: 0px;
|
|
4409
4519
|
}
|
|
4410
4520
|
|
|
4521
|
+
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
4522
|
+
pointer-events: none;
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4411
4525
|
.data-\[empty\]\:h-full[data-empty] {
|
|
4412
4526
|
height: 100%;
|
|
4413
4527
|
}
|
|
@@ -4443,6 +4557,16 @@ body {
|
|
|
4443
4557
|
border-color: rgb(19 82 191 / var(--tw-border-opacity, 1));
|
|
4444
4558
|
}
|
|
4445
4559
|
|
|
4560
|
+
.data-\[current\]\:bg-light-50[data-current] {
|
|
4561
|
+
--tw-bg-opacity: 1;
|
|
4562
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
4563
|
+
}
|
|
4564
|
+
|
|
4565
|
+
.data-\[current\]\:bg-primary-100[data-current] {
|
|
4566
|
+
--tw-bg-opacity: 1;
|
|
4567
|
+
background-color: rgb(228 235 249 / var(--tw-bg-opacity, 1));
|
|
4568
|
+
}
|
|
4569
|
+
|
|
4446
4570
|
.data-\[disabled\]\:bg-white[data-disabled] {
|
|
4447
4571
|
--tw-bg-opacity: 1;
|
|
4448
4572
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
@@ -4463,6 +4587,16 @@ body {
|
|
|
4463
4587
|
background-color: rgb(228 231 236 / var(--tw-bg-opacity, 1));
|
|
4464
4588
|
}
|
|
4465
4589
|
|
|
4590
|
+
.data-\[hovered\]\:bg-light-50[data-hovered] {
|
|
4591
|
+
--tw-bg-opacity: 1;
|
|
4592
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4595
|
+
.data-\[hovered\]\:bg-primary-100[data-hovered] {
|
|
4596
|
+
--tw-bg-opacity: 1;
|
|
4597
|
+
background-color: rgb(228 235 249 / var(--tw-bg-opacity, 1));
|
|
4598
|
+
}
|
|
4599
|
+
|
|
4466
4600
|
.data-\[indeterminate\]\:bg-primary-500[data-indeterminate] {
|
|
4467
4601
|
--tw-bg-opacity: 1;
|
|
4468
4602
|
background-color: rgb(19 82 191 / var(--tw-bg-opacity, 1));
|
|
@@ -4502,6 +4636,16 @@ body {
|
|
|
4502
4636
|
background-color: rgb(205 218 242 / var(--tw-bg-opacity, 1));
|
|
4503
4637
|
}
|
|
4504
4638
|
|
|
4639
|
+
.data-\[current\]\:text-light-800[data-current] {
|
|
4640
|
+
--tw-text-opacity: 1;
|
|
4641
|
+
color: rgb(24 34 48 / var(--tw-text-opacity, 1));
|
|
4642
|
+
}
|
|
4643
|
+
|
|
4644
|
+
.data-\[current\]\:text-primary-800[data-current] {
|
|
4645
|
+
--tw-text-opacity: 1;
|
|
4646
|
+
color: rgb(8 33 76 / var(--tw-text-opacity, 1));
|
|
4647
|
+
}
|
|
4648
|
+
|
|
4505
4649
|
.data-\[disabled\]\:text-light-400[data-disabled] {
|
|
4506
4650
|
--tw-text-opacity: 1;
|
|
4507
4651
|
color: rgb(152 162 179 / var(--tw-text-opacity, 1));
|
|
@@ -4517,11 +4661,21 @@ body {
|
|
|
4517
4661
|
color: rgb(16 24 40 / var(--tw-text-opacity, 1));
|
|
4518
4662
|
}
|
|
4519
4663
|
|
|
4664
|
+
.data-\[hovered\]\:text-light-700[data-hovered] {
|
|
4665
|
+
--tw-text-opacity: 1;
|
|
4666
|
+
color: rgb(52 64 84 / var(--tw-text-opacity, 1));
|
|
4667
|
+
}
|
|
4668
|
+
|
|
4520
4669
|
.data-\[hovered\]\:text-light-900[data-hovered] {
|
|
4521
4670
|
--tw-text-opacity: 1;
|
|
4522
4671
|
color: rgb(16 24 40 / var(--tw-text-opacity, 1));
|
|
4523
4672
|
}
|
|
4524
4673
|
|
|
4674
|
+
.data-\[hovered\]\:text-primary-800[data-hovered] {
|
|
4675
|
+
--tw-text-opacity: 1;
|
|
4676
|
+
color: rgb(8 33 76 / var(--tw-text-opacity, 1));
|
|
4677
|
+
}
|
|
4678
|
+
|
|
4525
4679
|
.data-\[pending\]\:\!text-light-400[data-pending] {
|
|
4526
4680
|
--tw-text-opacity: 1 !important;
|
|
4527
4681
|
color: rgb(152 162 179 / var(--tw-text-opacity, 1)) !important;
|
|
@@ -4532,6 +4686,10 @@ body {
|
|
|
4532
4686
|
color: rgb(11 49 115 / var(--tw-text-opacity, 1));
|
|
4533
4687
|
}
|
|
4534
4688
|
|
|
4689
|
+
.data-\[hovered\]\:underline[data-hovered] {
|
|
4690
|
+
text-decoration-line: underline;
|
|
4691
|
+
}
|
|
4692
|
+
|
|
4535
4693
|
.data-\[disabled\]\:opacity-60[data-disabled] {
|
|
4536
4694
|
opacity: 0.6;
|
|
4537
4695
|
}
|
|
@@ -4654,6 +4812,14 @@ body {
|
|
|
4654
4812
|
display: flex;
|
|
4655
4813
|
}
|
|
4656
4814
|
|
|
4815
|
+
.sm\:h-auto {
|
|
4816
|
+
height: auto;
|
|
4817
|
+
}
|
|
4818
|
+
|
|
4819
|
+
.sm\:w-20 {
|
|
4820
|
+
width: 5rem;
|
|
4821
|
+
}
|
|
4822
|
+
|
|
4657
4823
|
.sm\:w-auto {
|
|
4658
4824
|
width: auto;
|
|
4659
4825
|
}
|
|
@@ -4687,6 +4853,19 @@ body {
|
|
|
4687
4853
|
column-gap: 0.375rem;
|
|
4688
4854
|
}
|
|
4689
4855
|
|
|
4856
|
+
.sm\:self-stretch {
|
|
4857
|
+
align-self: stretch;
|
|
4858
|
+
}
|
|
4859
|
+
|
|
4860
|
+
.sm\:rounded-none {
|
|
4861
|
+
border-radius: 0px;
|
|
4862
|
+
}
|
|
4863
|
+
|
|
4864
|
+
.sm\:rounded-l-xl {
|
|
4865
|
+
border-top-left-radius: 0.75rem;
|
|
4866
|
+
border-bottom-left-radius: 0.75rem;
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4690
4869
|
.sm\:px-8 {
|
|
4691
4870
|
padding-left: 2rem;
|
|
4692
4871
|
padding-right: 2rem;
|
|
@@ -4697,9 +4876,22 @@ body {
|
|
|
4697
4876
|
padding-bottom: 0.75rem;
|
|
4698
4877
|
}
|
|
4699
4878
|
|
|
4879
|
+
.sm\:py-4 {
|
|
4880
|
+
padding-top: 1rem;
|
|
4881
|
+
padding-bottom: 1rem;
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
.sm\:pl-5 {
|
|
4885
|
+
padding-left: 1.25rem;
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4700
4888
|
.sm\:pr-0 {
|
|
4701
4889
|
padding-right: 0px;
|
|
4702
4890
|
}
|
|
4891
|
+
|
|
4892
|
+
.sm\:pr-4 {
|
|
4893
|
+
padding-right: 1rem;
|
|
4894
|
+
}
|
|
4703
4895
|
}
|
|
4704
4896
|
|
|
4705
4897
|
.\[\&\:\:-webkit-calendar-picker-indicator\]\:hidden::-webkit-calendar-picker-indicator {
|