@klu_dev/ui-klu-green 1.2.18 → 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 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
- - InputPhone
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 InputPhone
906
- El componente InputPhone 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
+ ## 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 { InputPhone } from './components/InputPhone';
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
- <InputPhone
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 InputPhone
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-\[-10px\]{
407
- margin-left: -10px;
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;
@@ -827,6 +847,10 @@ button,
827
847
  .uiklu-w-full{
828
848
  width: 100%;
829
849
 
850
+ }
851
+ .uiklu-w-px{
852
+ width: 1px;
853
+
830
854
  }
831
855
  .uiklu-min-w-0{
832
856
  min-width: 0px;
@@ -839,6 +863,10 @@ button,
839
863
  .uiklu-min-w-\[150px\]{
840
864
  min-width: 150px;
841
865
 
866
+ }
867
+ .uiklu-min-w-\[186px\]{
868
+ min-width: 186px;
869
+
842
870
  }
843
871
  .uiklu-min-w-\[187px\]{
844
872
  min-width: 187px;
@@ -919,6 +947,10 @@ button,
919
947
  .uiklu-max-w-\[500px\]{
920
948
  max-width: 500px;
921
949
 
950
+ }
951
+ .uiklu-max-w-\[569px\]{
952
+ max-width: 569px;
953
+
922
954
  }
923
955
  .uiklu-max-w-\[600px\]{
924
956
  max-width: 600px;
@@ -939,10 +971,6 @@ button,
939
971
  .uiklu-max-w-md{
940
972
  max-width: 28rem;
941
973
 
942
- }
943
- .uiklu-max-w-xl{
944
- max-width: 36rem;
945
-
946
974
  }
947
975
  .uiklu-flex-1{
948
976
  flex: 1 1 0%;
@@ -955,6 +983,15 @@ button,
955
983
  .uiklu-shrink-0{
956
984
  flex-shrink: 0;
957
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
+
958
995
  }
959
996
  .uiklu--translate-y-1\/2{
960
997
  --tw-translate-y: -50%;
@@ -1067,6 +1104,10 @@ button,
1067
1104
  .uiklu-gap-1{
1068
1105
  gap: 0.25rem;
1069
1106
 
1107
+ }
1108
+ .uiklu-gap-1\.5{
1109
+ gap: 0.375rem;
1110
+
1070
1111
  }
1071
1112
  .uiklu-gap-10{
1072
1113
  gap: 2.5rem;
@@ -1087,10 +1128,6 @@ button,
1087
1128
  .uiklu-gap-4{
1088
1129
  gap: 1rem;
1089
1130
 
1090
- }
1091
- .uiklu-gap-5{
1092
- gap: 1.25rem;
1093
-
1094
1131
  }
1095
1132
  .uiklu-gap-6{
1096
1133
  gap: 1.5rem;
@@ -1211,6 +1248,10 @@ button,
1211
1248
  .uiklu-break-words{
1212
1249
  overflow-wrap: break-word;
1213
1250
 
1251
+ }
1252
+ .uiklu-break-all{
1253
+ word-break: break-all;
1254
+
1214
1255
  }
1215
1256
  .uiklu-rounded{
1216
1257
  border-radius: 0.25rem;
@@ -1275,10 +1316,6 @@ button,
1275
1316
  .uiklu-rounded-none{
1276
1317
  border-radius: 0px;
1277
1318
 
1278
- }
1279
- .uiklu-rounded-sm{
1280
- border-radius: 0.125rem;
1281
-
1282
1319
  }
1283
1320
  .uiklu-rounded-xl{
1284
1321
  border-radius: 0.75rem;
@@ -1307,6 +1344,10 @@ button,
1307
1344
  .uiklu-border-b-\[1px\]{
1308
1345
  border-bottom-width: 1px;
1309
1346
 
1347
+ }
1348
+ .uiklu-border-r{
1349
+ border-right-width: 1px;
1350
+
1310
1351
  }
1311
1352
  .uiklu-border-t{
1312
1353
  border-top-width: 1px;
@@ -1343,6 +1384,10 @@ button,
1343
1384
  --tw-border-opacity: 1;
1344
1385
  border-color: hsl(var(--uiklu-destructive) / var(--tw-border-opacity, 1));
1345
1386
 
1387
+ }
1388
+ .uiklu-border-destructive\/40{
1389
+ border-color: hsl(var(--uiklu-destructive) / 0.4);
1390
+
1346
1391
  }
1347
1392
  .uiklu-border-gray-100{
1348
1393
  --tw-border-opacity: 1;
@@ -1383,11 +1428,6 @@ button,
1383
1428
  --tw-border-opacity: 1;
1384
1429
  border-color: hsl(var(--uiklu-outlinesecondary) / var(--tw-border-opacity, 1));
1385
1430
 
1386
- }
1387
- .uiklu-border-primary{
1388
- --tw-border-opacity: 1;
1389
- border-color: hsl(var(--uiklu-primary) / var(--tw-border-opacity, 1));
1390
-
1391
1431
  }
1392
1432
  .uiklu-border-primary100{
1393
1433
  --tw-border-opacity: 1;
@@ -1431,6 +1471,11 @@ button,
1431
1471
  --tw-border-opacity: 1;
1432
1472
  border-right-color: hsl(var(--uiklu-gray-900) / var(--tw-border-opacity, 1));
1433
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
+
1434
1479
  }
1435
1480
  .uiklu-bg-\[\#002B2B\]{
1436
1481
  --tw-bg-opacity: 1;
@@ -1471,6 +1516,10 @@ button,
1471
1516
  --tw-bg-opacity: 1;
1472
1517
  background-color: hsl(var(--uiklu-basewhite) / var(--tw-bg-opacity, 1));
1473
1518
 
1519
+ }
1520
+ .uiklu-bg-basewhite\/40{
1521
+ background-color: hsl(var(--uiklu-basewhite) / 0.4);
1522
+
1474
1523
  }
1475
1524
  .uiklu-bg-black{
1476
1525
  --tw-bg-opacity: 1;
@@ -1489,10 +1538,6 @@ button,
1489
1538
  --tw-bg-opacity: 1;
1490
1539
  background-color: hsl(var(--uiklu-destructive) / var(--tw-bg-opacity, 1));
1491
1540
 
1492
- }
1493
- .uiklu-bg-destructive\/60{
1494
- background-color: hsl(var(--uiklu-destructive) / 0.6);
1495
-
1496
1541
  }
1497
1542
  .uiklu-bg-errorbg{
1498
1543
  --tw-bg-opacity: 1;
@@ -1508,6 +1553,11 @@ button,
1508
1553
  --tw-bg-opacity: 1;
1509
1554
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
1510
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
+
1511
1561
  }
1512
1562
  .uiklu-bg-gray50{
1513
1563
  --tw-bg-opacity: 1;
@@ -1528,25 +1578,11 @@ button,
1528
1578
  --tw-bg-opacity: 1;
1529
1579
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
1530
1580
 
1531
- }
1532
- .uiklu-bg-orange400{
1533
- --tw-bg-opacity: 1;
1534
- background-color: hsl(var(--uiklu-orange-400) / var(--tw-bg-opacity, 1));
1535
-
1536
- }
1537
- .uiklu-bg-orange400\/60{
1538
- background-color: hsl(var(--uiklu-orange-400) / 0.6);
1539
-
1540
1581
  }
1541
1582
  .uiklu-bg-orange500{
1542
1583
  --tw-bg-opacity: 1;
1543
1584
  background-color: hsl(var(--uiklu-orange-500) / var(--tw-bg-opacity, 1));
1544
1585
 
1545
- }
1546
- .uiklu-bg-outlinesecondary{
1547
- --tw-bg-opacity: 1;
1548
- background-color: hsl(var(--uiklu-outlinesecondary) / var(--tw-bg-opacity, 1));
1549
-
1550
1586
  }
1551
1587
  .uiklu-bg-primary{
1552
1588
  --tw-bg-opacity: 1;
@@ -1591,6 +1627,11 @@ button,
1591
1627
  --tw-bg-opacity: 1;
1592
1628
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
1593
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
+
1594
1635
  }
1595
1636
  .uiklu-bg-slate-50{
1596
1637
  --tw-bg-opacity: 1;
@@ -1711,10 +1752,6 @@ button,
1711
1752
  .uiklu-p-4{
1712
1753
  padding: 1rem;
1713
1754
 
1714
- }
1715
- .uiklu-p-5{
1716
- padding: 1.25rem;
1717
-
1718
1755
  }
1719
1756
  .uiklu-p-6{
1720
1757
  padding: 1.5rem;
@@ -1813,6 +1850,11 @@ button,
1813
1850
  padding-left: 48px;
1814
1851
  padding-right: 48px;
1815
1852
 
1853
+ }
1854
+ .uiklu-px-\[8px\]{
1855
+ padding-left: 8px;
1856
+ padding-right: 8px;
1857
+
1816
1858
  }
1817
1859
  .uiklu-py-1{
1818
1860
  padding-top: 0.25rem;
@@ -1867,6 +1909,14 @@ button,
1867
1909
  .uiklu-pl-6{
1868
1910
  padding-left: 1.5rem;
1869
1911
 
1912
+ }
1913
+ .uiklu-pl-8{
1914
+ padding-left: 2rem;
1915
+
1916
+ }
1917
+ .uiklu-pl-\[6px\]{
1918
+ padding-left: 6px;
1919
+
1870
1920
  }
1871
1921
  .uiklu-pr-10{
1872
1922
  padding-right: 2.5rem;
@@ -1887,6 +1937,14 @@ button,
1887
1937
  .uiklu-pr-6{
1888
1938
  padding-right: 1.5rem;
1889
1939
 
1940
+ }
1941
+ .uiklu-pr-\[10px\]{
1942
+ padding-right: 10px;
1943
+
1944
+ }
1945
+ .uiklu-pt-0\.5{
1946
+ padding-top: 0.125rem;
1947
+
1890
1948
  }
1891
1949
  .uiklu-pt-4{
1892
1950
  padding-top: 1rem;
@@ -2035,6 +2093,10 @@ button,
2035
2093
  .uiklu-font-bold{
2036
2094
  font-weight: 700;
2037
2095
 
2096
+ }
2097
+ .uiklu-font-light{
2098
+ font-weight: 300;
2099
+
2038
2100
  }
2039
2101
  .uiklu-font-medium{
2040
2102
  font-weight: 500;
@@ -2237,6 +2299,11 @@ button,
2237
2299
  --tw-text-opacity: 1;
2238
2300
  color: hsl(var(--uiklu-primary-600) / var(--tw-text-opacity, 1));
2239
2301
 
2302
+ }
2303
+ .uiklu-text-primary700{
2304
+ --tw-text-opacity: 1;
2305
+ color: hsl(var(--uiklu-primary-700) / var(--tw-text-opacity, 1));
2306
+
2240
2307
  }
2241
2308
  .uiklu-text-primary800{
2242
2309
  --tw-text-opacity: 1;
@@ -2310,16 +2377,18 @@ button,
2310
2377
  .uiklu-opacity-90{
2311
2378
  opacity: 0.9;
2312
2379
 
2313
- }
2314
- .uiklu-mix-blend-screen{
2315
- mix-blend-mode: screen;
2316
-
2317
2380
  }
2318
2381
  .uiklu-shadow-2xl{
2319
2382
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
2320
2383
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
2321
2384
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2322
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
+
2323
2392
  }
2324
2393
  .uiklu-shadow-lg{
2325
2394
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
@@ -2849,10 +2918,6 @@ input.uiklu-flex:not(:placeholder-shown) {
2849
2918
  .sm\:uiklu-flex-row{
2850
2919
  flex-direction: row;
2851
2920
 
2852
- }
2853
- .sm\:uiklu-items-stretch{
2854
- align-items: stretch;
2855
-
2856
2921
  }
2857
2922
  .sm\:uiklu-justify-end{
2858
2923
  justify-content: flex-end;
@@ -2863,6 +2928,11 @@ input.uiklu-flex:not(:placeholder-shown) {
2863
2928
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
2864
2929
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
2865
2930
 
2931
+ }
2932
+ .sm\:uiklu-break-normal{
2933
+ overflow-wrap: normal;
2934
+ word-break: normal;
2935
+
2866
2936
  }
2867
2937
  .sm\:uiklu-pt-0{
2868
2938
  padding-top: 0px;
@@ -2903,6 +2973,82 @@ input.uiklu-flex:not(:placeholder-shown) {
2903
2973
 
2904
2974
  }
2905
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
+
2906
3052
  .\[\&\>\[data-slot\=progress-indicator\]\]\:uiklu-bg-primary300>[data-slot=progress-indicator]{
2907
3053
  --tw-bg-opacity: 1;
2908
3054
  background-color: hsl(var(--uiklu-primary-300) / var(--tw-bg-opacity, 1));