cekat-ui 1.2.1 → 1.2.2
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/components/Alert/Alert.d.ts +6 -0
- package/dist/components/Alert/alert.styles.d.ts +47 -0
- package/dist/components/Alert/alert.types.d.ts +46 -0
- package/dist/components/Alert/index.d.ts +3 -0
- package/dist/components/Button/Button.d.ts +7 -1
- package/dist/components/Button/button.types.d.ts +2 -1
- package/dist/components/Input/Input.d.ts +7 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +1193 -912
- package/dist/index.umd.js +1 -1
- package/dist/style.css +163 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -679,6 +679,10 @@ body{
|
|
|
679
679
|
right: 0px;
|
|
680
680
|
}
|
|
681
681
|
|
|
682
|
+
.right-2{
|
|
683
|
+
right: 0.5rem;
|
|
684
|
+
}
|
|
685
|
+
|
|
682
686
|
.right-4{
|
|
683
687
|
right: 1rem;
|
|
684
688
|
}
|
|
@@ -687,6 +691,10 @@ body{
|
|
|
687
691
|
right: -6px;
|
|
688
692
|
}
|
|
689
693
|
|
|
694
|
+
.right-\[7px\]{
|
|
695
|
+
right: 7px;
|
|
696
|
+
}
|
|
697
|
+
|
|
690
698
|
.right-\[calc\(100\%\+8px\)\]{
|
|
691
699
|
right: calc(100% + 8px);
|
|
692
700
|
}
|
|
@@ -695,14 +703,26 @@ body{
|
|
|
695
703
|
right: 100%;
|
|
696
704
|
}
|
|
697
705
|
|
|
706
|
+
.top-0{
|
|
707
|
+
top: 0px;
|
|
708
|
+
}
|
|
709
|
+
|
|
698
710
|
.top-1\/2{
|
|
699
711
|
top: 50%;
|
|
700
712
|
}
|
|
701
713
|
|
|
714
|
+
.top-2{
|
|
715
|
+
top: 0.5rem;
|
|
716
|
+
}
|
|
717
|
+
|
|
702
718
|
.top-\[-6px\]{
|
|
703
719
|
top: -6px;
|
|
704
720
|
}
|
|
705
721
|
|
|
722
|
+
.top-\[7px\]{
|
|
723
|
+
top: 7px;
|
|
724
|
+
}
|
|
725
|
+
|
|
706
726
|
.top-\[calc\(100\%\+8px\)\]{
|
|
707
727
|
top: calc(100% + 8px);
|
|
708
728
|
}
|
|
@@ -784,6 +804,10 @@ body{
|
|
|
784
804
|
margin-top: 0.5rem;
|
|
785
805
|
}
|
|
786
806
|
|
|
807
|
+
.block{
|
|
808
|
+
display: block;
|
|
809
|
+
}
|
|
810
|
+
|
|
787
811
|
.inline-block{
|
|
788
812
|
display: inline-block;
|
|
789
813
|
}
|
|
@@ -808,6 +832,15 @@ body{
|
|
|
808
832
|
display: grid;
|
|
809
833
|
}
|
|
810
834
|
|
|
835
|
+
.hidden{
|
|
836
|
+
display: none;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.size-10{
|
|
840
|
+
width: 2.5rem;
|
|
841
|
+
height: 2.5rem;
|
|
842
|
+
}
|
|
843
|
+
|
|
811
844
|
.size-2{
|
|
812
845
|
width: 0.5rem;
|
|
813
846
|
height: 0.5rem;
|
|
@@ -838,6 +871,16 @@ body{
|
|
|
838
871
|
height: 1.5rem;
|
|
839
872
|
}
|
|
840
873
|
|
|
874
|
+
.size-8{
|
|
875
|
+
width: 2rem;
|
|
876
|
+
height: 2rem;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.size-9{
|
|
880
|
+
width: 2.25rem;
|
|
881
|
+
height: 2.25rem;
|
|
882
|
+
}
|
|
883
|
+
|
|
841
884
|
.size-\[18px\]{
|
|
842
885
|
width: 18px;
|
|
843
886
|
height: 18px;
|
|
@@ -1117,6 +1160,10 @@ body{
|
|
|
1117
1160
|
min-width: max-content;
|
|
1118
1161
|
}
|
|
1119
1162
|
|
|
1163
|
+
.max-w-\[1280px\]{
|
|
1164
|
+
max-width: 1280px;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1120
1167
|
.max-w-\[240px\]{
|
|
1121
1168
|
max-width: 240px;
|
|
1122
1169
|
}
|
|
@@ -1233,6 +1280,10 @@ body{
|
|
|
1233
1280
|
resize: vertical;
|
|
1234
1281
|
}
|
|
1235
1282
|
|
|
1283
|
+
.resize{
|
|
1284
|
+
resize: both;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1236
1287
|
.list-disc{
|
|
1237
1288
|
list-style-type: disc;
|
|
1238
1289
|
}
|
|
@@ -1245,6 +1296,10 @@ body{
|
|
|
1245
1296
|
flex-direction: column;
|
|
1246
1297
|
}
|
|
1247
1298
|
|
|
1299
|
+
.flex-col-reverse{
|
|
1300
|
+
flex-direction: column-reverse;
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1248
1303
|
.flex-wrap{
|
|
1249
1304
|
flex-wrap: wrap;
|
|
1250
1305
|
}
|
|
@@ -1277,6 +1332,10 @@ body{
|
|
|
1277
1332
|
justify-content: space-between;
|
|
1278
1333
|
}
|
|
1279
1334
|
|
|
1335
|
+
.gap-0\.5{
|
|
1336
|
+
gap: 0.125rem;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1280
1339
|
.gap-1{
|
|
1281
1340
|
gap: 0.25rem;
|
|
1282
1341
|
}
|
|
@@ -1624,6 +1683,11 @@ body{
|
|
|
1624
1683
|
border-color: rgb(151 244 165 / var(--tw-border-opacity, 1));
|
|
1625
1684
|
}
|
|
1626
1685
|
|
|
1686
|
+
.border-success-300{
|
|
1687
|
+
--tw-border-opacity: 1;
|
|
1688
|
+
border-color: rgb(96 222 127 / var(--tw-border-opacity, 1));
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1627
1691
|
.border-success-500{
|
|
1628
1692
|
--tw-border-opacity: 1;
|
|
1629
1693
|
border-color: rgb(8 145 70 / var(--tw-border-opacity, 1));
|
|
@@ -1643,6 +1707,11 @@ body{
|
|
|
1643
1707
|
border-color: rgb(254 240 199 / var(--tw-border-opacity, 1));
|
|
1644
1708
|
}
|
|
1645
1709
|
|
|
1710
|
+
.border-warning-300{
|
|
1711
|
+
--tw-border-opacity: 1;
|
|
1712
|
+
border-color: rgb(254 200 75 / var(--tw-border-opacity, 1));
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1646
1715
|
.border-warning-500{
|
|
1647
1716
|
--tw-border-opacity: 1;
|
|
1648
1717
|
border-color: rgb(247 144 9 / var(--tw-border-opacity, 1));
|
|
@@ -2181,6 +2250,30 @@ body{
|
|
|
2181
2250
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2182
2251
|
}
|
|
2183
2252
|
|
|
2253
|
+
.bg-gradient-to-br{
|
|
2254
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
.from-primary-200{
|
|
2258
|
+
--tw-gradient-from: #CDDAF2 var(--tw-gradient-from-position);
|
|
2259
|
+
--tw-gradient-to: rgb(205 218 242 / 0) var(--tw-gradient-to-position);
|
|
2260
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2261
|
+
}
|
|
2262
|
+
|
|
2263
|
+
.from-warning-200{
|
|
2264
|
+
--tw-gradient-from: #FEF0C7 var(--tw-gradient-from-position);
|
|
2265
|
+
--tw-gradient-to: rgb(254 240 199 / 0) var(--tw-gradient-to-position);
|
|
2266
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
.to-primary-50{
|
|
2270
|
+
--tw-gradient-to: #FBFCFF var(--tw-gradient-to-position);
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
.to-warning-50{
|
|
2274
|
+
--tw-gradient-to: #FFFCF5 var(--tw-gradient-to-position);
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2184
2277
|
.fill-\[\#1ea7fd\]{
|
|
2185
2278
|
fill: #1ea7fd;
|
|
2186
2279
|
}
|
|
@@ -2243,6 +2336,10 @@ body{
|
|
|
2243
2336
|
padding: 0.75rem;
|
|
2244
2337
|
}
|
|
2245
2338
|
|
|
2339
|
+
.p-4{
|
|
2340
|
+
padding: 1rem;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2246
2343
|
.p-6{
|
|
2247
2344
|
padding: 1.5rem;
|
|
2248
2345
|
}
|
|
@@ -2419,6 +2516,10 @@ body{
|
|
|
2419
2516
|
padding-right: 0.75rem;
|
|
2420
2517
|
}
|
|
2421
2518
|
|
|
2519
|
+
.pr-8{
|
|
2520
|
+
padding-right: 2rem;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2422
2523
|
.pr-\[9px\]{
|
|
2423
2524
|
padding-right: 9px;
|
|
2424
2525
|
}
|
|
@@ -2816,6 +2917,11 @@ body{
|
|
|
2816
2917
|
color: rgb(181 71 8 / var(--tw-text-opacity, 1));
|
|
2817
2918
|
}
|
|
2818
2919
|
|
|
2920
|
+
.text-warning-800{
|
|
2921
|
+
--tw-text-opacity: 1;
|
|
2922
|
+
color: rgb(147 55 13 / var(--tw-text-opacity, 1));
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2819
2925
|
.text-white{
|
|
2820
2926
|
--tw-text-opacity: 1;
|
|
2821
2927
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
@@ -3253,6 +3359,63 @@ body{
|
|
|
3253
3359
|
opacity: 1;
|
|
3254
3360
|
}
|
|
3255
3361
|
|
|
3362
|
+
@media (min-width: 640px){
|
|
3363
|
+
.sm\:static{
|
|
3364
|
+
position: static;
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
.sm\:flex{
|
|
3368
|
+
display: flex;
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
.sm\:w-auto{
|
|
3372
|
+
width: auto;
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3375
|
+
.sm\:flex-row{
|
|
3376
|
+
flex-direction: row;
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
.sm\:flex-wrap{
|
|
3380
|
+
flex-wrap: wrap;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
.sm\:items-start{
|
|
3384
|
+
align-items: flex-start;
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
.sm\:items-center{
|
|
3388
|
+
align-items: center;
|
|
3389
|
+
}
|
|
3390
|
+
|
|
3391
|
+
.sm\:gap-2{
|
|
3392
|
+
gap: 0.5rem;
|
|
3393
|
+
}
|
|
3394
|
+
|
|
3395
|
+
.sm\:gap-3{
|
|
3396
|
+
gap: 0.75rem;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
.sm\:gap-x-1\.5{
|
|
3400
|
+
-moz-column-gap: 0.375rem;
|
|
3401
|
+
column-gap: 0.375rem;
|
|
3402
|
+
}
|
|
3403
|
+
|
|
3404
|
+
.sm\:px-8{
|
|
3405
|
+
padding-left: 2rem;
|
|
3406
|
+
padding-right: 2rem;
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
.sm\:py-3{
|
|
3410
|
+
padding-top: 0.75rem;
|
|
3411
|
+
padding-bottom: 0.75rem;
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
.sm\:pr-0{
|
|
3415
|
+
padding-right: 0px;
|
|
3416
|
+
}
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3256
3419
|
.\[\&\:\:-webkit-calendar-picker-indicator\]\:hidden::-webkit-calendar-picker-indicator{
|
|
3257
3420
|
display: none;
|
|
3258
3421
|
}
|