@klu_dev/ui-klu-green 1.2.19 → 1.2.20
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/README.md +10 -8
- package/dist/index.css +190 -77
- package/dist/index.d.ts +5 -0
- package/dist/index.js +124 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,10 +12,13 @@ npm install @klu_dev/ui-klu-green
|
|
|
12
12
|
|
|
13
13
|
## Componentes disponibles
|
|
14
14
|
- Input
|
|
15
|
-
- TextField
|
|
15
|
+
- TextField (Componente similar a Input pero cuadrado)
|
|
16
16
|
- Button
|
|
17
17
|
- BackButton
|
|
18
18
|
- Select
|
|
19
|
+
- SelectField (Componente similar a Select pero cuadrado)
|
|
20
|
+
- SearchSelect
|
|
21
|
+
- SearchSelectField (Componente similar a SearchSelect pero cuadrado)
|
|
19
22
|
- Typography
|
|
20
23
|
- Modal
|
|
21
24
|
- BalanceInfo
|
|
@@ -24,11 +27,10 @@ npm install @klu_dev/ui-klu-green
|
|
|
24
27
|
- PromoBanner
|
|
25
28
|
- SidebarTabs
|
|
26
29
|
- MobileMenuDrawer
|
|
27
|
-
- SearchSelect
|
|
28
30
|
- InputCode
|
|
29
31
|
- GridCard
|
|
30
32
|
- CheckBox
|
|
31
|
-
-
|
|
33
|
+
- PhoneField
|
|
32
34
|
- IconBadge
|
|
33
35
|
|
|
34
36
|
## Antes de comenzar a agregar componentes
|
|
@@ -902,12 +904,12 @@ export default function CheckboxExample() {
|
|
|
902
904
|
|
|
903
905
|
|
|
904
906
|
|
|
905
|
-
## Uso de
|
|
906
|
-
El componente
|
|
907
|
+
## Uso de PhoneField
|
|
908
|
+
El componente PhoneField es un campo de entrada de texto optimizado para la captura de números telefónicos. Permite la selección dinámica de prefijos internacionales (LADAS/códigos de país) mediante un menú desplegable integrado y ofrece soporte nativo para la validación y visualización de estados de error, variantes de tamaño y un comportamiento adaptables (full width).
|
|
907
909
|
|
|
908
910
|
```tsx
|
|
909
911
|
import React, { useState } from 'react';
|
|
910
|
-
import {
|
|
912
|
+
import { PhoneField } from './inputPhoneField';
|
|
911
913
|
|
|
912
914
|
const RegistrationForm = () => {
|
|
913
915
|
const [phoneNumber, setPhoneNumber] = useState('');
|
|
@@ -937,7 +939,7 @@ const RegistrationForm = () => {
|
|
|
937
939
|
return (
|
|
938
940
|
<div style={{ maxWidth: '400px', padding: '20px' }}>
|
|
939
941
|
<label htmlFor="phone">Número de Teléfono</label>
|
|
940
|
-
<
|
|
942
|
+
<PhoneField
|
|
941
943
|
id="phone"
|
|
942
944
|
size="full"
|
|
943
945
|
placeholder="55 0000 0000"
|
|
@@ -954,7 +956,7 @@ const RegistrationForm = () => {
|
|
|
954
956
|
export default RegistrationForm;
|
|
955
957
|
```
|
|
956
958
|
|
|
957
|
-
### Props de
|
|
959
|
+
### Props de PhoneField
|
|
958
960
|
|
|
959
961
|
| Prop | Tipo | Por Defecto | Descripción |
|
|
960
962
|
| :--- | :--- | :--- | :--- |
|
package/dist/index.css
CHANGED
|
@@ -230,6 +230,10 @@ button,
|
|
|
230
230
|
.uiklu-left-0{
|
|
231
231
|
left: 0px;
|
|
232
232
|
|
|
233
|
+
}
|
|
234
|
+
.uiklu-left-1\/2{
|
|
235
|
+
left: 50%;
|
|
236
|
+
|
|
233
237
|
}
|
|
234
238
|
.uiklu-left-2{
|
|
235
239
|
left: 0.5rem;
|
|
@@ -278,14 +282,14 @@ button,
|
|
|
278
282
|
.uiklu-top-8{
|
|
279
283
|
top: 2rem;
|
|
280
284
|
|
|
281
|
-
}
|
|
282
|
-
.uiklu-top-\[2px\]{
|
|
283
|
-
top: 2px;
|
|
284
|
-
|
|
285
285
|
}
|
|
286
286
|
.uiklu-top-\[50\%\]{
|
|
287
287
|
top: 50%;
|
|
288
288
|
|
|
289
|
+
}
|
|
290
|
+
.uiklu-top-full{
|
|
291
|
+
top: 100%;
|
|
292
|
+
|
|
289
293
|
}
|
|
290
294
|
.uiklu-z-0{
|
|
291
295
|
z-index: 0;
|
|
@@ -306,6 +310,10 @@ button,
|
|
|
306
310
|
.uiklu-z-\[200\]{
|
|
307
311
|
z-index: 200;
|
|
308
312
|
|
|
313
|
+
}
|
|
314
|
+
.uiklu-z-\[9999\]{
|
|
315
|
+
z-index: 9999;
|
|
316
|
+
|
|
309
317
|
}
|
|
310
318
|
.uiklu-m-0{
|
|
311
319
|
margin: 0px;
|
|
@@ -366,6 +374,10 @@ button,
|
|
|
366
374
|
.uiklu-mb-\[12px\]{
|
|
367
375
|
margin-bottom: 12px;
|
|
368
376
|
|
|
377
|
+
}
|
|
378
|
+
.uiklu-mb-\[16px\]{
|
|
379
|
+
margin-bottom: 16px;
|
|
380
|
+
|
|
369
381
|
}
|
|
370
382
|
.uiklu-mb-\[18px\]{
|
|
371
383
|
margin-bottom: 18px;
|
|
@@ -403,8 +415,8 @@ button,
|
|
|
403
415
|
margin-left: 1.25rem;
|
|
404
416
|
|
|
405
417
|
}
|
|
406
|
-
.uiklu-ml-\[
|
|
407
|
-
margin-left:
|
|
418
|
+
.uiklu-ml-\[10px\]{
|
|
419
|
+
margin-left: 10px;
|
|
408
420
|
|
|
409
421
|
}
|
|
410
422
|
.uiklu-ml-\[1px\]{
|
|
@@ -446,10 +458,6 @@ button,
|
|
|
446
458
|
.uiklu-mt-3{
|
|
447
459
|
margin-top: 0.75rem;
|
|
448
460
|
|
|
449
|
-
}
|
|
450
|
-
.uiklu-mt-4{
|
|
451
|
-
margin-top: 1rem;
|
|
452
|
-
|
|
453
461
|
}
|
|
454
462
|
.uiklu-mt-6{
|
|
455
463
|
margin-top: 1.5rem;
|
|
@@ -458,6 +466,14 @@ button,
|
|
|
458
466
|
.uiklu-mt-8{
|
|
459
467
|
margin-top: 2rem;
|
|
460
468
|
|
|
469
|
+
}
|
|
470
|
+
.uiklu-mt-\[20px\]{
|
|
471
|
+
margin-top: 20px;
|
|
472
|
+
|
|
473
|
+
}
|
|
474
|
+
.uiklu-mt-auto{
|
|
475
|
+
margin-top: auto;
|
|
476
|
+
|
|
461
477
|
}
|
|
462
478
|
.uiklu-box-border{
|
|
463
479
|
box-sizing: border-box;
|
|
@@ -482,6 +498,10 @@ button,
|
|
|
482
498
|
.uiklu-grid{
|
|
483
499
|
display: grid;
|
|
484
500
|
|
|
501
|
+
}
|
|
502
|
+
.uiklu-hidden{
|
|
503
|
+
display: none;
|
|
504
|
+
|
|
485
505
|
}
|
|
486
506
|
.uiklu-h-12{
|
|
487
507
|
height: 3rem;
|
|
@@ -490,18 +510,10 @@ button,
|
|
|
490
510
|
.uiklu-h-2{
|
|
491
511
|
height: 0.5rem;
|
|
492
512
|
|
|
493
|
-
}
|
|
494
|
-
.uiklu-h-3{
|
|
495
|
-
height: 0.75rem;
|
|
496
|
-
|
|
497
513
|
}
|
|
498
514
|
.uiklu-h-3\.5{
|
|
499
515
|
height: 0.875rem;
|
|
500
516
|
|
|
501
|
-
}
|
|
502
|
-
.uiklu-h-36{
|
|
503
|
-
height: 9rem;
|
|
504
|
-
|
|
505
517
|
}
|
|
506
518
|
.uiklu-h-4{
|
|
507
519
|
height: 1rem;
|
|
@@ -518,10 +530,6 @@ button,
|
|
|
518
530
|
.uiklu-h-6{
|
|
519
531
|
height: 1.5rem;
|
|
520
532
|
|
|
521
|
-
}
|
|
522
|
-
.uiklu-h-7{
|
|
523
|
-
height: 1.75rem;
|
|
524
|
-
|
|
525
533
|
}
|
|
526
534
|
.uiklu-h-8{
|
|
527
535
|
height: 2rem;
|
|
@@ -534,6 +542,10 @@ button,
|
|
|
534
542
|
.uiklu-h-\[14px\]{
|
|
535
543
|
height: 14px;
|
|
536
544
|
|
|
545
|
+
}
|
|
546
|
+
.uiklu-h-\[150px\]{
|
|
547
|
+
height: 150px;
|
|
548
|
+
|
|
537
549
|
}
|
|
538
550
|
.uiklu-h-\[1px\]{
|
|
539
551
|
height: 1px;
|
|
@@ -642,6 +654,10 @@ button,
|
|
|
642
654
|
.uiklu-max-h-screen{
|
|
643
655
|
max-height: 100vh;
|
|
644
656
|
|
|
657
|
+
}
|
|
658
|
+
.uiklu-min-h-\[114px\]{
|
|
659
|
+
min-height: 114px;
|
|
660
|
+
|
|
645
661
|
}
|
|
646
662
|
.uiklu-min-h-\[20px\]{
|
|
647
663
|
min-height: 20px;
|
|
@@ -678,18 +694,10 @@ button,
|
|
|
678
694
|
.uiklu-w-5{
|
|
679
695
|
width: 1.25rem;
|
|
680
696
|
|
|
681
|
-
}
|
|
682
|
-
.uiklu-w-56{
|
|
683
|
-
width: 14rem;
|
|
684
|
-
|
|
685
697
|
}
|
|
686
698
|
.uiklu-w-6{
|
|
687
699
|
width: 1.5rem;
|
|
688
700
|
|
|
689
|
-
}
|
|
690
|
-
.uiklu-w-7{
|
|
691
|
-
width: 1.75rem;
|
|
692
|
-
|
|
693
701
|
}
|
|
694
702
|
.uiklu-w-8{
|
|
695
703
|
width: 2rem;
|
|
@@ -714,10 +722,18 @@ button,
|
|
|
714
722
|
.uiklu-w-\[150px\]{
|
|
715
723
|
width: 150px;
|
|
716
724
|
|
|
725
|
+
}
|
|
726
|
+
.uiklu-w-\[160px\]{
|
|
727
|
+
width: 160px;
|
|
728
|
+
|
|
717
729
|
}
|
|
718
730
|
.uiklu-w-\[162px\]{
|
|
719
731
|
width: 162px;
|
|
720
732
|
|
|
733
|
+
}
|
|
734
|
+
.uiklu-w-\[186px\]{
|
|
735
|
+
width: 186px;
|
|
736
|
+
|
|
721
737
|
}
|
|
722
738
|
.uiklu-w-\[1px\]{
|
|
723
739
|
width: 1px;
|
|
@@ -742,6 +758,10 @@ button,
|
|
|
742
758
|
.uiklu-w-\[26px\]{
|
|
743
759
|
width: 26px;
|
|
744
760
|
|
|
761
|
+
}
|
|
762
|
+
.uiklu-w-\[29px\]{
|
|
763
|
+
width: 29px;
|
|
764
|
+
|
|
745
765
|
}
|
|
746
766
|
.uiklu-w-\[30px\]{
|
|
747
767
|
width: 30px;
|
|
@@ -843,6 +863,10 @@ button,
|
|
|
843
863
|
.uiklu-min-w-\[150px\]{
|
|
844
864
|
min-width: 150px;
|
|
845
865
|
|
|
866
|
+
}
|
|
867
|
+
.uiklu-min-w-\[186px\]{
|
|
868
|
+
min-width: 186px;
|
|
869
|
+
|
|
846
870
|
}
|
|
847
871
|
.uiklu-min-w-\[187px\]{
|
|
848
872
|
min-width: 187px;
|
|
@@ -923,6 +947,10 @@ button,
|
|
|
923
947
|
.uiklu-max-w-\[500px\]{
|
|
924
948
|
max-width: 500px;
|
|
925
949
|
|
|
950
|
+
}
|
|
951
|
+
.uiklu-max-w-\[569px\]{
|
|
952
|
+
max-width: 569px;
|
|
953
|
+
|
|
926
954
|
}
|
|
927
955
|
.uiklu-max-w-\[600px\]{
|
|
928
956
|
max-width: 600px;
|
|
@@ -943,10 +971,6 @@ button,
|
|
|
943
971
|
.uiklu-max-w-md{
|
|
944
972
|
max-width: 28rem;
|
|
945
973
|
|
|
946
|
-
}
|
|
947
|
-
.uiklu-max-w-xl{
|
|
948
|
-
max-width: 36rem;
|
|
949
|
-
|
|
950
974
|
}
|
|
951
975
|
.uiklu-flex-1{
|
|
952
976
|
flex: 1 1 0%;
|
|
@@ -959,6 +983,15 @@ button,
|
|
|
959
983
|
.uiklu-shrink-0{
|
|
960
984
|
flex-shrink: 0;
|
|
961
985
|
|
|
986
|
+
}
|
|
987
|
+
.uiklu-flex-grow{
|
|
988
|
+
flex-grow: 1;
|
|
989
|
+
|
|
990
|
+
}
|
|
991
|
+
.uiklu--translate-x-1\/2{
|
|
992
|
+
--tw-translate-x: -50%;
|
|
993
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
994
|
+
|
|
962
995
|
}
|
|
963
996
|
.uiklu--translate-y-1\/2{
|
|
964
997
|
--tw-translate-y: -50%;
|
|
@@ -1095,10 +1128,6 @@ button,
|
|
|
1095
1128
|
.uiklu-gap-4{
|
|
1096
1129
|
gap: 1rem;
|
|
1097
1130
|
|
|
1098
|
-
}
|
|
1099
|
-
.uiklu-gap-5{
|
|
1100
|
-
gap: 1.25rem;
|
|
1101
|
-
|
|
1102
1131
|
}
|
|
1103
1132
|
.uiklu-gap-6{
|
|
1104
1133
|
gap: 1.5rem;
|
|
@@ -1219,6 +1248,10 @@ button,
|
|
|
1219
1248
|
.uiklu-break-words{
|
|
1220
1249
|
overflow-wrap: break-word;
|
|
1221
1250
|
|
|
1251
|
+
}
|
|
1252
|
+
.uiklu-break-all{
|
|
1253
|
+
word-break: break-all;
|
|
1254
|
+
|
|
1222
1255
|
}
|
|
1223
1256
|
.uiklu-rounded{
|
|
1224
1257
|
border-radius: 0.25rem;
|
|
@@ -1283,10 +1316,6 @@ button,
|
|
|
1283
1316
|
.uiklu-rounded-none{
|
|
1284
1317
|
border-radius: 0px;
|
|
1285
1318
|
|
|
1286
|
-
}
|
|
1287
|
-
.uiklu-rounded-sm{
|
|
1288
|
-
border-radius: 0.125rem;
|
|
1289
|
-
|
|
1290
1319
|
}
|
|
1291
1320
|
.uiklu-rounded-xl{
|
|
1292
1321
|
border-radius: 0.75rem;
|
|
@@ -1399,11 +1428,6 @@ button,
|
|
|
1399
1428
|
--tw-border-opacity: 1;
|
|
1400
1429
|
border-color: hsl(var(--uiklu-outlinesecondary) / var(--tw-border-opacity, 1));
|
|
1401
1430
|
|
|
1402
|
-
}
|
|
1403
|
-
.uiklu-border-primary{
|
|
1404
|
-
--tw-border-opacity: 1;
|
|
1405
|
-
border-color: hsl(var(--uiklu-primary) / var(--tw-border-opacity, 1));
|
|
1406
|
-
|
|
1407
1431
|
}
|
|
1408
1432
|
.uiklu-border-primary100{
|
|
1409
1433
|
--tw-border-opacity: 1;
|
|
@@ -1447,6 +1471,11 @@ button,
|
|
|
1447
1471
|
--tw-border-opacity: 1;
|
|
1448
1472
|
border-right-color: hsl(var(--uiklu-gray-900) / var(--tw-border-opacity, 1));
|
|
1449
1473
|
|
|
1474
|
+
}
|
|
1475
|
+
.uiklu-border-t-gray900{
|
|
1476
|
+
--tw-border-opacity: 1;
|
|
1477
|
+
border-top-color: hsl(var(--uiklu-gray-900) / var(--tw-border-opacity, 1));
|
|
1478
|
+
|
|
1450
1479
|
}
|
|
1451
1480
|
.uiklu-bg-\[\#002B2B\]{
|
|
1452
1481
|
--tw-bg-opacity: 1;
|
|
@@ -1487,6 +1516,10 @@ button,
|
|
|
1487
1516
|
--tw-bg-opacity: 1;
|
|
1488
1517
|
background-color: hsl(var(--uiklu-basewhite) / var(--tw-bg-opacity, 1));
|
|
1489
1518
|
|
|
1519
|
+
}
|
|
1520
|
+
.uiklu-bg-basewhite\/40{
|
|
1521
|
+
background-color: hsl(var(--uiklu-basewhite) / 0.4);
|
|
1522
|
+
|
|
1490
1523
|
}
|
|
1491
1524
|
.uiklu-bg-black{
|
|
1492
1525
|
--tw-bg-opacity: 1;
|
|
@@ -1505,10 +1538,6 @@ button,
|
|
|
1505
1538
|
--tw-bg-opacity: 1;
|
|
1506
1539
|
background-color: hsl(var(--uiklu-destructive) / var(--tw-bg-opacity, 1));
|
|
1507
1540
|
|
|
1508
|
-
}
|
|
1509
|
-
.uiklu-bg-destructive\/60{
|
|
1510
|
-
background-color: hsl(var(--uiklu-destructive) / 0.6);
|
|
1511
|
-
|
|
1512
1541
|
}
|
|
1513
1542
|
.uiklu-bg-errorbg{
|
|
1514
1543
|
--tw-bg-opacity: 1;
|
|
@@ -1524,6 +1553,11 @@ button,
|
|
|
1524
1553
|
--tw-bg-opacity: 1;
|
|
1525
1554
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1526
1555
|
|
|
1556
|
+
}
|
|
1557
|
+
.uiklu-bg-gray300{
|
|
1558
|
+
--tw-bg-opacity: 1;
|
|
1559
|
+
background-color: hsl(var(--uiklu-gray-300) / var(--tw-bg-opacity, 1));
|
|
1560
|
+
|
|
1527
1561
|
}
|
|
1528
1562
|
.uiklu-bg-gray50{
|
|
1529
1563
|
--tw-bg-opacity: 1;
|
|
@@ -1544,25 +1578,11 @@ button,
|
|
|
1544
1578
|
--tw-bg-opacity: 1;
|
|
1545
1579
|
background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
|
|
1546
1580
|
|
|
1547
|
-
}
|
|
1548
|
-
.uiklu-bg-orange400{
|
|
1549
|
-
--tw-bg-opacity: 1;
|
|
1550
|
-
background-color: hsl(var(--uiklu-orange-400) / var(--tw-bg-opacity, 1));
|
|
1551
|
-
|
|
1552
|
-
}
|
|
1553
|
-
.uiklu-bg-orange400\/60{
|
|
1554
|
-
background-color: hsl(var(--uiklu-orange-400) / 0.6);
|
|
1555
|
-
|
|
1556
1581
|
}
|
|
1557
1582
|
.uiklu-bg-orange500{
|
|
1558
1583
|
--tw-bg-opacity: 1;
|
|
1559
1584
|
background-color: hsl(var(--uiklu-orange-500) / var(--tw-bg-opacity, 1));
|
|
1560
1585
|
|
|
1561
|
-
}
|
|
1562
|
-
.uiklu-bg-outlinesecondary{
|
|
1563
|
-
--tw-bg-opacity: 1;
|
|
1564
|
-
background-color: hsl(var(--uiklu-outlinesecondary) / var(--tw-bg-opacity, 1));
|
|
1565
|
-
|
|
1566
1586
|
}
|
|
1567
1587
|
.uiklu-bg-primary{
|
|
1568
1588
|
--tw-bg-opacity: 1;
|
|
@@ -1607,6 +1627,11 @@ button,
|
|
|
1607
1627
|
--tw-bg-opacity: 1;
|
|
1608
1628
|
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
|
|
1609
1629
|
|
|
1630
|
+
}
|
|
1631
|
+
.uiklu-bg-slate-100{
|
|
1632
|
+
--tw-bg-opacity: 1;
|
|
1633
|
+
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
|
1634
|
+
|
|
1610
1635
|
}
|
|
1611
1636
|
.uiklu-bg-slate-50{
|
|
1612
1637
|
--tw-bg-opacity: 1;
|
|
@@ -1727,10 +1752,6 @@ button,
|
|
|
1727
1752
|
.uiklu-p-4{
|
|
1728
1753
|
padding: 1rem;
|
|
1729
1754
|
|
|
1730
|
-
}
|
|
1731
|
-
.uiklu-p-5{
|
|
1732
|
-
padding: 1.25rem;
|
|
1733
|
-
|
|
1734
1755
|
}
|
|
1735
1756
|
.uiklu-p-6{
|
|
1736
1757
|
padding: 1.5rem;
|
|
@@ -1920,6 +1941,10 @@ button,
|
|
|
1920
1941
|
.uiklu-pr-\[10px\]{
|
|
1921
1942
|
padding-right: 10px;
|
|
1922
1943
|
|
|
1944
|
+
}
|
|
1945
|
+
.uiklu-pt-0\.5{
|
|
1946
|
+
padding-top: 0.125rem;
|
|
1947
|
+
|
|
1923
1948
|
}
|
|
1924
1949
|
.uiklu-pt-4{
|
|
1925
1950
|
padding-top: 1rem;
|
|
@@ -2068,6 +2093,10 @@ button,
|
|
|
2068
2093
|
.uiklu-font-bold{
|
|
2069
2094
|
font-weight: 700;
|
|
2070
2095
|
|
|
2096
|
+
}
|
|
2097
|
+
.uiklu-font-light{
|
|
2098
|
+
font-weight: 300;
|
|
2099
|
+
|
|
2071
2100
|
}
|
|
2072
2101
|
.uiklu-font-medium{
|
|
2073
2102
|
font-weight: 500;
|
|
@@ -2270,6 +2299,11 @@ button,
|
|
|
2270
2299
|
--tw-text-opacity: 1;
|
|
2271
2300
|
color: hsl(var(--uiklu-primary-600) / var(--tw-text-opacity, 1));
|
|
2272
2301
|
|
|
2302
|
+
}
|
|
2303
|
+
.uiklu-text-primary700{
|
|
2304
|
+
--tw-text-opacity: 1;
|
|
2305
|
+
color: hsl(var(--uiklu-primary-700) / var(--tw-text-opacity, 1));
|
|
2306
|
+
|
|
2273
2307
|
}
|
|
2274
2308
|
.uiklu-text-primary800{
|
|
2275
2309
|
--tw-text-opacity: 1;
|
|
@@ -2343,16 +2377,18 @@ button,
|
|
|
2343
2377
|
.uiklu-opacity-90{
|
|
2344
2378
|
opacity: 0.9;
|
|
2345
2379
|
|
|
2346
|
-
}
|
|
2347
|
-
.uiklu-mix-blend-screen{
|
|
2348
|
-
mix-blend-mode: screen;
|
|
2349
|
-
|
|
2350
2380
|
}
|
|
2351
2381
|
.uiklu-shadow-2xl{
|
|
2352
2382
|
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
2353
2383
|
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
2354
2384
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2355
2385
|
|
|
2386
|
+
}
|
|
2387
|
+
.uiklu-shadow-\[0_2\.467px_2\.467px_0_rgba\(0\,0\,0\,0\.25\)\]{
|
|
2388
|
+
--tw-shadow: 0 2.467px 2.467px 0 rgba(0,0,0,0.25);
|
|
2389
|
+
--tw-shadow-colored: 0 2.467px 2.467px 0 var(--tw-shadow-color);
|
|
2390
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2391
|
+
|
|
2356
2392
|
}
|
|
2357
2393
|
.uiklu-shadow-lg{
|
|
2358
2394
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
@@ -2882,10 +2918,6 @@ input.uiklu-flex:not(:placeholder-shown) {
|
|
|
2882
2918
|
.sm\:uiklu-flex-row{
|
|
2883
2919
|
flex-direction: row;
|
|
2884
2920
|
|
|
2885
|
-
}
|
|
2886
|
-
.sm\:uiklu-items-stretch{
|
|
2887
|
-
align-items: stretch;
|
|
2888
|
-
|
|
2889
2921
|
}
|
|
2890
2922
|
.sm\:uiklu-justify-end{
|
|
2891
2923
|
justify-content: flex-end;
|
|
@@ -2896,6 +2928,11 @@ input.uiklu-flex:not(:placeholder-shown) {
|
|
|
2896
2928
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
2897
2929
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2898
2930
|
|
|
2931
|
+
}
|
|
2932
|
+
.sm\:uiklu-break-normal{
|
|
2933
|
+
overflow-wrap: normal;
|
|
2934
|
+
word-break: normal;
|
|
2935
|
+
|
|
2899
2936
|
}
|
|
2900
2937
|
.sm\:uiklu-pt-0{
|
|
2901
2938
|
padding-top: 0px;
|
|
@@ -2936,6 +2973,82 @@ input.uiklu-flex:not(:placeholder-shown) {
|
|
|
2936
2973
|
|
|
2937
2974
|
}
|
|
2938
2975
|
|
|
2976
|
+
@media (min-width: 1024px){
|
|
2977
|
+
.lg\:uiklu-mb-0{
|
|
2978
|
+
margin-bottom: 0px;
|
|
2979
|
+
|
|
2980
|
+
}
|
|
2981
|
+
.lg\:uiklu-mr-\[20px\]{
|
|
2982
|
+
margin-right: 20px;
|
|
2983
|
+
|
|
2984
|
+
}
|
|
2985
|
+
.lg\:uiklu-mt-4{
|
|
2986
|
+
margin-top: 1rem;
|
|
2987
|
+
|
|
2988
|
+
}
|
|
2989
|
+
.lg\:uiklu-mt-\[10px\]{
|
|
2990
|
+
margin-top: 10px;
|
|
2991
|
+
|
|
2992
|
+
}
|
|
2993
|
+
.lg\:uiklu-block{
|
|
2994
|
+
display: block;
|
|
2995
|
+
|
|
2996
|
+
}
|
|
2997
|
+
.lg\:uiklu-flex{
|
|
2998
|
+
display: flex;
|
|
2999
|
+
|
|
3000
|
+
}
|
|
3001
|
+
.lg\:uiklu-hidden{
|
|
3002
|
+
display: none;
|
|
3003
|
+
|
|
3004
|
+
}
|
|
3005
|
+
.lg\:uiklu-h-\[114px\]{
|
|
3006
|
+
height: 114px;
|
|
3007
|
+
|
|
3008
|
+
}
|
|
3009
|
+
.lg\:uiklu-min-w-\[331px\]{
|
|
3010
|
+
min-width: 331px;
|
|
3011
|
+
|
|
3012
|
+
}
|
|
3013
|
+
.lg\:uiklu-max-w-full{
|
|
3014
|
+
max-width: 100%;
|
|
3015
|
+
|
|
3016
|
+
}
|
|
3017
|
+
.lg\:uiklu-flex-row{
|
|
3018
|
+
flex-direction: row;
|
|
3019
|
+
|
|
3020
|
+
}
|
|
3021
|
+
.lg\:uiklu-flex-nowrap{
|
|
3022
|
+
flex-wrap: nowrap;
|
|
3023
|
+
|
|
3024
|
+
}
|
|
3025
|
+
.lg\:uiklu-items-center{
|
|
3026
|
+
align-items: center;
|
|
3027
|
+
|
|
3028
|
+
}
|
|
3029
|
+
.lg\:uiklu-items-stretch{
|
|
3030
|
+
align-items: stretch;
|
|
3031
|
+
|
|
3032
|
+
}
|
|
3033
|
+
.lg\:uiklu-justify-start{
|
|
3034
|
+
justify-content: flex-start;
|
|
3035
|
+
|
|
3036
|
+
}
|
|
3037
|
+
.lg\:uiklu-justify-end{
|
|
3038
|
+
justify-content: flex-end;
|
|
3039
|
+
|
|
3040
|
+
}
|
|
3041
|
+
.lg\:uiklu-justify-between{
|
|
3042
|
+
justify-content: space-between;
|
|
3043
|
+
|
|
3044
|
+
}
|
|
3045
|
+
.lg\:uiklu-text-left{
|
|
3046
|
+
text-align: left;
|
|
3047
|
+
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
}
|
|
3051
|
+
|
|
2939
3052
|
.\[\&\>\[data-slot\=progress-indicator\]\]\:uiklu-bg-primary300>[data-slot=progress-indicator]{
|
|
2940
3053
|
--tw-bg-opacity: 1;
|
|
2941
3054
|
background-color: hsl(var(--uiklu-primary-300) / var(--tw-bg-opacity, 1));
|
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ declare function MobileMenuDrawer({ isOpen, onClose, items, activeTab, onTabChan
|
|
|
144
144
|
|
|
145
145
|
declare const Icons: {
|
|
146
146
|
CARD: react_jsx_runtime.JSX.Element;
|
|
147
|
+
CARDCIRCLE: react_jsx_runtime.JSX.Element;
|
|
147
148
|
TICKET: react_jsx_runtime.JSX.Element;
|
|
148
149
|
CASH: react_jsx_runtime.JSX.Element;
|
|
149
150
|
CHEVRON_RIGHT: react_jsx_runtime.JSX.Element;
|
|
@@ -159,6 +160,7 @@ declare const Icons: {
|
|
|
159
160
|
ARROW_UP: react_jsx_runtime.JSX.Element;
|
|
160
161
|
ARROW_DOWN: react_jsx_runtime.JSX.Element;
|
|
161
162
|
KLU: react_jsx_runtime.JSX.Element;
|
|
163
|
+
KLUWHITE: react_jsx_runtime.JSX.Element;
|
|
162
164
|
DESIGNEDFREEDOM: react_jsx_runtime.JSX.Element;
|
|
163
165
|
GRAPHIC_TOP: react_jsx_runtime.JSX.Element;
|
|
164
166
|
HOME: react_jsx_runtime.JSX.Element;
|
|
@@ -200,6 +202,9 @@ declare const Icons: {
|
|
|
200
202
|
WARNING: react_jsx_runtime.JSX.Element;
|
|
201
203
|
CHECK: react_jsx_runtime.JSX.Element;
|
|
202
204
|
DOWNLOAD: react_jsx_runtime.JSX.Element;
|
|
205
|
+
MASTERCARD: react_jsx_runtime.JSX.Element;
|
|
206
|
+
LOCKOPEN: react_jsx_runtime.JSX.Element;
|
|
207
|
+
LOCK: react_jsx_runtime.JSX.Element;
|
|
203
208
|
};
|
|
204
209
|
|
|
205
210
|
declare const searchSelectTriggerVariants: (props?: ({
|