react-gldn-kit 0.1.69 → 0.1.71

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.
Files changed (48) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/components/EmailSignInForm/index.d.ts +2 -1
  3. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/components/EmailSignInForm/index.js +3 -3
  4. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/components/IdSignInForm/index.d.ts +2 -1
  5. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/components/IdSignInForm/index.js +4 -4
  6. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/components/PhoneSignInForm/index.d.ts +2 -1
  7. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/components/PhoneSignInForm/index.js +9 -5
  8. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/index.d.ts +3 -1
  9. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/First/index.js +45 -22
  10. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/EmailSignInForm/index.js +1 -1
  11. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/IdSignInForm/index.js +1 -1
  12. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/PhoneSignInForm/index.js +1 -1
  13. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/index.js +1 -1
  14. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/First/components/Forms/EmailSignUp/index.js +2 -2
  15. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/First/components/Forms/PhoneSignUp/index.js +6 -5
  16. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/First/index.js +6 -3
  17. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Second/index.js +13 -9
  18. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/EmailSignUp/index.js +1 -1
  19. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/index.js +1 -1
  20. package/dist/lib/components/Modals/Alert/components/LostPassword/First/components/LostPasswordEmailForm/index.js +1 -1
  21. package/dist/lib/components/Modals/Alert/components/LostPassword/First/components/LostPasswordPhoneForm/index.js +1 -1
  22. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/components/LostPasswordEmailForm/index.js +1 -1
  23. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/components/LostPasswordPhoneForm/index.js +1 -1
  24. package/dist/lib/components/Modals/Alert/components/SetNewPassword/index.js +1 -1
  25. package/dist/lib/components/Payments/DepositQrForm/index.js +1 -1
  26. package/dist/lib/components/SignUp/PromoCode/index.js +1 -1
  27. package/dist/lib/components/SignUpTypeTwo/PhoneBox/components/Code/index.d.ts +2 -1
  28. package/dist/lib/components/SignUpTypeTwo/PhoneBox/components/Code/index.js +2 -4
  29. package/dist/lib/components/SignUpTypeTwo/PhoneBox/index.d.ts +3 -1
  30. package/dist/lib/components/SignUpTypeTwo/PhoneBox/index.js +44 -20
  31. package/dist/lib/components/ui/Buttons/ArrowButton/index.js +2 -2
  32. package/dist/lib/components/ui/Icons/Base/CloseEyeSvg.js +2 -2
  33. package/dist/lib/components/ui/Icons/Base/OpenEyeSvg.js +2 -2
  34. package/dist/lib/components/ui/Inputs/AmountInput/index.js +2 -2
  35. package/dist/lib/components/ui/Inputs/BaseInput/BaseInputUi.js +8 -8
  36. package/dist/lib/components/ui/Inputs/BaseInput/types.d.ts +3 -1
  37. package/dist/lib/components/ui/Inputs/EmailInput/index.js +2 -2
  38. package/dist/lib/components/ui/Inputs/PasswordInput/index.js +1 -1
  39. package/dist/lib/components/ui/Inputs/PhoneInput/components/PhoneView/index.d.ts +1 -0
  40. package/dist/lib/components/ui/Inputs/PhoneInput/components/PhoneView/index.js +12 -5
  41. package/dist/lib/components/ui/Inputs/PhoneInput/constants.js +1 -1
  42. package/dist/lib/components/ui/Inputs/PhoneInput/index.js +6 -6
  43. package/dist/lib/components/ui/Selector/index.js +1 -1
  44. package/dist/lib/service/validation.d.ts +2 -0
  45. package/dist/lib/service/validation.js +39 -2
  46. package/dist/main.css +247 -244
  47. package/package.json +1 -1
  48. /package/{Readme.md → README.md} +0 -0
package/dist/main.css CHANGED
@@ -661,9 +661,12 @@
661
661
  flex-direction: column;
662
662
  gap: var(--indent-xs);
663
663
  width: 100%;
664
+ height: 100%;
664
665
  }
666
+
665
667
  .KIT__BaseInputUi-module__inputWrapper___AnbPW {
666
668
  border-radius: var(--input-border-radius);
669
+ border: 1px solid transparent;
667
670
  height: var(--input-height);
668
671
  display: flex;
669
672
  align-items: center;
@@ -671,6 +674,7 @@
671
674
  padding: var(--input-padding);
672
675
  position: relative;
673
676
  background: var(--input-background);
677
+ width: 100%;
674
678
  }
675
679
 
676
680
  .KIT__BaseInputUi-module__borderColorfulGreen___QRGSG,
@@ -705,14 +709,23 @@
705
709
  width: var(--large);
706
710
  }
707
711
 
712
+ .KIT__BaseInputUi-module__inputWithLabel___R1Dge {
713
+ display: flex;
714
+ flex-direction: column;
715
+ width: 100%;
716
+ height: 100%;
717
+ }
718
+
708
719
  .KIT__BaseInputUi-module__label___uzM8L {
709
720
  position: absolute;
710
- left: 10px;
721
+ top: 50%;
722
+ transform: translateY(-50%);
711
723
  color: var(--input-label-text-color);
712
- opacity: 0.5;
713
724
  z-index: 1;
714
- font-weight: bold;
725
+ font-weight: 500;
715
726
  transition: 0.5s;
727
+ order: -1;
728
+ line-height: 1;
716
729
  }
717
730
 
718
731
  .KIT__BaseInputUi-module__labelRight___Q5n_d {
@@ -720,67 +733,29 @@
720
733
  }
721
734
 
722
735
  .KIT__BaseInputUi-module__input___RWf0J {
723
- z-index: 2;
724
736
  height: 100%;
725
737
  width: 100%;
726
- padding: 2px;
727
738
  background-color: transparent;
728
739
  color: var(--input-text-color);
729
- font-weight: bold;
730
- }
731
-
732
- .KIT__BaseInputUi-module__input___RWf0J:-moz-placeholder-shown ~ .KIT__BaseInputUi-module__label___uzM8L {
733
- top: 50%;
734
- transform: translateY(-50%);
735
- left: 10px;
736
- font-size: 11px;
737
- color: var(--input-label-text-color);
738
- }
739
-
740
- .KIT__BaseInputUi-module__input___RWf0J:placeholder-shown ~ .KIT__BaseInputUi-module__label___uzM8L {
741
- top: 50%;
742
- transform: translateY(-50%);
743
- left: 10px;
744
- font-size: 11px;
745
- color: var(--input-label-text-color);
746
- }
747
-
748
- .KIT__BaseInputUi-module__input___RWf0J:-moz-placeholder-shown ~ .KIT__BaseInputUi-module__labelRight___Q5n_d {
749
- top: 50%;
750
- transform: translateY(-50%);
751
- left: 25px;
752
- font-size: 11px;
753
- }
754
-
755
- .KIT__BaseInputUi-module__input___RWf0J:placeholder-shown ~ .KIT__BaseInputUi-module__labelRight___Q5n_d {
756
- top: 50%;
757
- transform: translateY(-50%);
758
- left: 25px;
759
- font-size: 11px;
760
- }
761
-
762
- .KIT__BaseInputUi-module__input___RWf0J:not(placeholder-shown) ~ .KIT__BaseInputUi-module__label___uzM8L {
763
- top: -15px;
764
- transform: translateY(0%);
765
- z-index: 1;
766
- left: 0px;
767
- font-size: 10px;
740
+ font-weight: 500;
741
+ font-size: var(--font-size-m);
768
742
  }
769
743
 
770
744
  .KIT__BaseInputUi-module__input___RWf0J::-moz-placeholder {
771
- font-size: 0;
745
+ font-size: var(--font-size-m);
772
746
  }
773
747
 
774
748
  .KIT__BaseInputUi-module__input___RWf0J::placeholder {
775
- font-size: 0;
749
+ font-size: var(--font-size-m);
776
750
  }
777
751
 
778
- .KIT__BaseInputUi-module__input___RWf0J:focus ~ .KIT__BaseInputUi-module__label___uzM8L {
779
- top: -15px;
752
+ .KIT__BaseInputUi-module__input___RWf0J:focus ~ .KIT__BaseInputUi-module__label___uzM8L,
753
+ .KIT__BaseInputUi-module__label___uzM8L.KIT__BaseInputUi-module__labelUp___Mdr3p,
754
+ .KIT__BaseInputUi-module__input___RWf0J:-webkit-autofill ~ .KIT__BaseInputUi-module__label___uzM8L {
780
755
  transform: translateY(0%);
781
- left: 0px;
782
- z-index: 2;
783
- font-size: 10px;
756
+ font-size: var(--font-size-s);
757
+ position: relative;
758
+ top: 0;
784
759
  }
785
760
 
786
761
  .KIT__BaseInputUi-module__disabled___eDvdR {
@@ -799,6 +774,7 @@
799
774
  font-size: 11px;
800
775
  overflow: hidden;
801
776
  color: var(--input-error);
777
+ padding-left: var(--indent-m);
802
778
  }
803
779
 
804
780
  .KIT__BaseInputUi-module__resetErrorColor___sLSqG {
@@ -811,34 +787,22 @@
811
787
  margin-left: var(--input-inline-start);
812
788
  }
813
789
 
814
- .KIT__BaseInputUi-module__input___RWf0J:focus ~ .KIT__BaseInputUi-module__label___uzM8L.KIT__BaseInputUi-module__hideLabel___XBQr4 {
790
+ /* .input:focus ~ .label.hideLabel {
815
791
  opacity: 0;
816
- }
792
+ } */
817
793
 
818
- .KIT__BaseInputUi-module__input___RWf0J:not(placeholder-shown) ~ label.KIT__BaseInputUi-module__hideLabel___XBQr4 {
794
+ /* .input:not(placeholder-shown) ~ label.hideLabel {
819
795
  opacity: 0;
820
796
  }
821
797
 
822
- .KIT__BaseInputUi-module__input___RWf0J:-moz-placeholder-shown ~ label.KIT__BaseInputUi-module__hideLabel___XBQr4 {
823
- opacity: 1;
824
- }
825
-
826
- .KIT__BaseInputUi-module__input___RWf0J:placeholder-shown ~ label.KIT__BaseInputUi-module__hideLabel___XBQr4 {
798
+ .input:placeholder-shown~label.hideLabel {
827
799
  opacity: 1;
828
- }
800
+ } */
829
801
 
830
802
  .KIT__BaseInputUi-module__fistIcon___K8TLN {
831
803
  padding-left: 0;
832
804
  }
833
805
 
834
- .KIT__BaseInputUi-module__inputWrapper___AnbPW .KIT__BaseInputUi-module__label___uzM8L.KIT__BaseInputUi-module__labelUp___Mdr3p {
835
- top: -15px;
836
- transform: translateY(0%);
837
- left: 0px;
838
- z-index: 2;
839
- font-size: 10px;
840
- }
841
-
842
806
  .KIT__BaseInputUi-module__animationFadeIn___qsCmj {
843
807
  animation: KIT__BaseInputUi-module__FadeIn___kQ_6Q 1s forwards;
844
808
  }
@@ -911,24 +875,21 @@
911
875
  margin-bottom: var(--indent-l);
912
876
  }
913
877
 
914
- .KIT__ArrowButton-module__openedColor___M7HTi * {
915
- fill: var(--arrow-button-opened-svg-path-fill);
916
- cursor: pointer;
878
+ .KIT__ArrowButton-module__defaultClasses___mj1Wq {
879
+ transition: 0.5s;
917
880
  }
918
881
 
919
- .KIT__ArrowButton-module__openedColor___M7HTi {
920
- transition: 0.5s;
921
- transform: rotate(180deg);
882
+ .KIT__ArrowButton-module__defaultClasses___mj1Wq path {
883
+ fill: var(--arrow-button-svg-path-fill);
922
884
  }
923
885
 
924
- .KIT__ArrowButton-module__default___LNKYw {
925
- padding: 5px;
926
- width: 22px;
927
- height: 18px;
886
+ .KIT__ArrowButton-module__openedColor___M7HTi * {
887
+ fill: var(--arrow-button-opened-svg-path-fill);
888
+ cursor: pointer;
928
889
  }
929
890
 
930
- .KIT__ArrowButton-module__default___LNKYw path {
931
- fill: var(--arrow-button-svg-path-fill);
891
+ .KIT__ArrowButton-module__defaultClasses___mj1Wq.KIT__ArrowButton-module__openedColor___M7HTi {
892
+ transform: rotate(0deg);
932
893
  }
933
894
 
934
895
  .KIT__Selector-module__wrapperSelector___gMgBa {
@@ -1022,6 +983,7 @@
1022
983
  overflow: hidden;
1023
984
  white-space: nowrap;
1024
985
  text-overflow: ellipsis;
986
+ color: var(--selector-overflow-color);
1025
987
  }
1026
988
 
1027
989
  .KIT__Selector-module__column___lV8W1 {
@@ -1035,7 +997,7 @@
1035
997
  .KIT__Selector-module__label___WfHNj {
1036
998
  font-weight: 500;
1037
999
  font-size: var(--font-size-xs);
1038
- color: var(--base-400);
1000
+ color: var(--selector-label-text-color);
1039
1001
  }
1040
1002
 
1041
1003
  .KIT__Selector-module__maxSize___ElpMa {
@@ -1273,12 +1235,13 @@
1273
1235
  align-items: center;
1274
1236
  justify-content: center;
1275
1237
  position: relative;
1276
- z-index: 2;
1277
- padding-bottom: var(--indent-l);
1238
+ z-index: calc(var(--layout-lvl-1) + 1);
1239
+ padding-bottom: var(--indent-s);
1278
1240
  white-space: nowrap;
1279
1241
  text-overflow: ellipsis;
1280
1242
  width: 100%;
1281
1243
  gap: var(--indent-s);
1244
+ font-size: var(--font-size-s);
1282
1245
  }
1283
1246
  .KIT__Tabs-module__wrapperTabs___rFoBY .KIT__Tabs-module__tab___NBVtA.KIT__Tabs-module__buttonTab___Tpphz {
1284
1247
  padding: var(--indent-s);
@@ -1311,6 +1274,7 @@
1311
1274
  border-radius: var(--border-s);
1312
1275
  border: 2px solid var(--tab-border-bottom-color);
1313
1276
  background: var(--primary-gradient);
1277
+ z-index: var(--layout-lvl-1);
1314
1278
  }
1315
1279
  .KIT__Tabs-module__wrapperTabs___rFoBY::-webkit-scrollbar {
1316
1280
  width: 0;
@@ -1464,6 +1428,117 @@
1464
1428
  .KIT__Timer-module__time___imFax:first-child {
1465
1429
  margin-left: 0;
1466
1430
  }
1431
+ .KIT__PhoneView-module__row___EVJyb {
1432
+ display: flex;
1433
+ background-color: var(--input-background);
1434
+ border-radius: var(--border-s);
1435
+ }
1436
+
1437
+ .KIT__PhoneView-module__codeWrapper___pUMRn {
1438
+ display: flex;
1439
+ align-items: center;
1440
+ flex-wrap: nowrap;
1441
+ padding-left: var(--indent-s);
1442
+ }
1443
+
1444
+ .KIT__PhoneView-module__column___bl_cw {
1445
+ flex-direction: column;
1446
+ }
1447
+
1448
+ .KIT__PhoneView-module__mainInput___qB1oB {
1449
+ height: 50px;
1450
+ flex-direction: column;
1451
+ justify-content: center;
1452
+ }
1453
+
1454
+ .KIT__PhoneView-module__content___Dnmvr {
1455
+ display: flex;
1456
+ align-items: center;
1457
+ width: 100%;
1458
+ }
1459
+
1460
+ .KIT__PhoneView-module__phoneText___rHzpz {
1461
+ font-size: var(--font-size-xs);
1462
+ font-weight: 500;
1463
+ color: var(--base-400);
1464
+ padding-left: var(--indent-s);
1465
+ line-height: 14px;
1466
+ }
1467
+
1468
+ .KIT__PhoneView-module__code___y3pYW {
1469
+ display: flex;
1470
+ }
1471
+
1472
+ .KIT__PhoneView-module__arrow___Qw7Mg {
1473
+ display: flex;
1474
+ align-items: center;
1475
+ justify-content: center;
1476
+ width: 16px;
1477
+ cursor: pointer;
1478
+ }
1479
+
1480
+ .KIT__PhoneView-module__arrow___Qw7Mg svg {
1481
+ transition: all 0.5s;
1482
+ transform: rotate(180deg);
1483
+ }
1484
+
1485
+ .KIT__PhoneView-module__opened___cbAQs .KIT__PhoneView-module__arrow___Qw7Mg svg {
1486
+ transform: none;
1487
+ transform: initial;
1488
+ }
1489
+
1490
+ .KIT__PhoneView-module__input___gRvqf {
1491
+ padding: 0;
1492
+ border: none;
1493
+ background: transparent;
1494
+ }
1495
+
1496
+ .KIT__PhoneView-module__inputWrapper___lQu09 {
1497
+ background-color: transparent;
1498
+ height: 100%;
1499
+ }
1500
+
1501
+ .KIT__PhoneView-module__inputText___MRtU0 {
1502
+ font-weight: 400;
1503
+ width: 100%;
1504
+ padding: 0;
1505
+ font-size: 0;
1506
+ height: 100%;
1507
+ z-index: calc(var(--layout-lvl-1) + 1);
1508
+ }
1509
+
1510
+ .KIT__PhoneView-module__name___glkXr {
1511
+ color: var(--phone-view-name-color);
1512
+ font-size: var(--font-size-s);
1513
+ display: flex;
1514
+ align-items: center;
1515
+ padding-left: var(--indent-s);
1516
+ }
1517
+
1518
+ .KIT__PhoneView-module__borderColorfulRed___j2jR2 {
1519
+ border: 1px solid var(--input-border-red);
1520
+ border-radius: var(--input-border-radius);
1521
+ }
1522
+
1523
+ .KIT__PhoneView-module__borderColorfulRed___j2jR2 .KIT__PhoneView-module__codeWrapper___pUMRn,
1524
+ .KIT__PhoneView-module__borderColorfulRed___j2jR2 .KIT__PhoneView-module__input___gRvqf {
1525
+ border: none;
1526
+ }
1527
+
1528
+ .KIT__PhoneView-module__placeholder___xpTLd {
1529
+ position: absolute;
1530
+ left: 0;
1531
+ z-index: 1;
1532
+ }
1533
+
1534
+ .KIT__PhoneView-module__placeholder___xpTLd .KIT__PhoneView-module__value___qzrlu {
1535
+ color: var(--input-text-color);
1536
+ }
1537
+
1538
+ .KIT__PhoneView-module__highlightX___U4qhC {
1539
+ color: var(--x-reg-color);
1540
+ }
1541
+
1467
1542
  .KIT__PhoneInput-module__input___hyTKa {
1468
1543
  border-radius: var(--border-s);
1469
1544
  border: var(--input-border);
@@ -1503,6 +1578,7 @@
1503
1578
  font-size: 11px;
1504
1579
  overflow: hidden;
1505
1580
  color: rgb(var(--red));
1581
+ padding-left: var(--indent-m);
1506
1582
  }
1507
1583
 
1508
1584
  .KIT__PhoneInput-module__input___hyTKa:-webkit-autofill,
@@ -1557,103 +1633,6 @@
1557
1633
  background: var(--phone-input-item-hover-background-color);
1558
1634
  }
1559
1635
 
1560
- .KIT__PhoneView-module__row___EVJyb {
1561
- display: flex;
1562
- background-color: var(--input-background);
1563
- border-radius: var(--border-s);
1564
- }
1565
-
1566
- .KIT__PhoneView-module__codeWrapper___pUMRn {
1567
- display: flex;
1568
- align-items: center;
1569
- flex-wrap: nowrap;
1570
- padding-left: var(--indent-s);
1571
- }
1572
-
1573
- .KIT__PhoneView-module__column___bl_cw {
1574
- flex-direction: column;
1575
- }
1576
-
1577
- .KIT__PhoneView-module__mainInput___qB1oB {
1578
- height: 50px;
1579
- flex-direction: column;
1580
- justify-content: center;
1581
- }
1582
-
1583
- .KIT__PhoneView-module__content___Dnmvr {
1584
- display: flex;
1585
- align-items: center;
1586
- }
1587
-
1588
- .KIT__PhoneView-module__phoneText___rHzpz {
1589
- font-size: var(--font-size-xs);
1590
- font-weight: 500;
1591
- color: var(--base-400);
1592
- padding-left: var(--indent-s);
1593
- line-height: 14px;
1594
- }
1595
-
1596
- .KIT__PhoneView-module__code___y3pYW {
1597
- display: flex;
1598
- }
1599
-
1600
- .KIT__PhoneView-module__arrow___Qw7Mg {
1601
- display: flex;
1602
- align-items: center;
1603
- justify-content: center;
1604
- width: 16px;
1605
- cursor: pointer;
1606
- }
1607
-
1608
- .KIT__PhoneView-module__arrow___Qw7Mg svg {
1609
- transition: all 0.5s;
1610
- transform: rotate(180deg);
1611
- }
1612
-
1613
- .KIT__PhoneView-module__opened___cbAQs .KIT__PhoneView-module__arrow___Qw7Mg svg {
1614
- transform: none;
1615
- transform: initial;
1616
- }
1617
-
1618
- .KIT__PhoneView-module__input___gRvqf {
1619
- padding: 0;
1620
- border: none;
1621
- background: transparent;
1622
- }
1623
-
1624
- .KIT__PhoneView-module__mainInput___qB1oB .KIT__PhoneView-module__input___gRvqf {
1625
- height: auto;
1626
- }
1627
-
1628
- .KIT__PhoneView-module__inputWrapper___lQu09 {
1629
- height: auto;
1630
- height: initial;
1631
- background-color: transparent;
1632
- }
1633
-
1634
- .KIT__PhoneView-module__inputText___MRtU0 {
1635
- font-weight: 400;
1636
- padding: 0;
1637
- }
1638
-
1639
- .KIT__PhoneView-module__name___glkXr {
1640
- color: var(--phone-view-name-color);
1641
- font-size: var(--font-size-s);
1642
- display: flex;
1643
- align-items: center;
1644
- padding-left: var(--indent-s);
1645
- }
1646
-
1647
- .KIT__PhoneView-module__borderColorfulRed___j2jR2 {
1648
- border: 1px solid var(--input-border-red);
1649
- border-radius: var(--input-border-radius);
1650
- }
1651
-
1652
- .KIT__PhoneView-module__borderColorfulRed___j2jR2 .KIT__PhoneView-module__codeWrapper___pUMRn,
1653
- .KIT__PhoneView-module__borderColorfulRed___j2jR2 .KIT__PhoneView-module__input___gRvqf {
1654
- border: none;
1655
- }
1656
-
1657
1636
  .KIT__Code-module__drop____Xnq2 {
1658
1637
  height: 100%;
1659
1638
  border-radius: var(--radius-1);
@@ -1741,7 +1720,7 @@
1741
1720
  height: 100%;
1742
1721
  background: var(--phone-box-background);
1743
1722
  border: 1px solid var(--input-default-border-color);
1744
- color: var(--base-0);
1723
+ color: transparent;
1745
1724
  font-size: var(--font-size-m);
1746
1725
  font-weight: 400;
1747
1726
  padding: 0 var(--indent-m);
@@ -1777,6 +1756,22 @@
1777
1756
  font-size: var(--font-size-xs);
1778
1757
  }
1779
1758
 
1759
+ .KIT__PhoneBox-module__relative___rrYb6 {
1760
+ position: relative;
1761
+ width: 100%;
1762
+ height: 100%;
1763
+ }
1764
+
1765
+ .KIT__PhoneBox-module__value___q6e7Y {
1766
+ position: absolute;
1767
+ top: 15px;
1768
+ left: var(--indent-m);
1769
+ color: var(--base-0);
1770
+ font-size: var(--font-size-m);
1771
+ /* z-index: -1; */
1772
+ font-weight: 400;
1773
+ }
1774
+
1780
1775
  .KIT__InputBox-module__wrapperPasswordBox___AyUW_ {
1781
1776
  margin-bottom: var(--indent-xxl);
1782
1777
  color: var(--base-0);
@@ -1933,6 +1928,65 @@
1933
1928
  color: var(--base-0);
1934
1929
  }
1935
1930
 
1931
+ .KIT__SocialButton-module__wrapperSocialButton___zzRye {
1932
+ display: flex;
1933
+ flex-direction: column;
1934
+ align-items: center;
1935
+ justify-content: center;
1936
+ gap: var(--indent-xs);
1937
+ cursor: pointer;
1938
+ }
1939
+
1940
+ .KIT__SocialButton-module__iconBox___SBfYf {
1941
+ --height: 44px;
1942
+ display: flex;
1943
+ flex-direction: column;
1944
+ align-items: center;
1945
+ justify-content: center;
1946
+ background-color: rgba(255, 255, 255, 0.1);
1947
+ border-radius: var(--border-m);
1948
+ height: 44px;
1949
+ height: var(--height);
1950
+ width: 100%;
1951
+ }
1952
+
1953
+ .KIT__SocialButton-module__title___XGj0M {
1954
+ color: var(--base-0);
1955
+ font-size: var(--font-size-xs);
1956
+ }
1957
+
1958
+ .KIT__SocialButtons-module__wrapperSocialButtons___NZOfm {
1959
+ display: flex;
1960
+ flex-direction: column;
1961
+ gap: var(--indent-m);
1962
+ margin-bottom: var(--indent-m);
1963
+ }
1964
+
1965
+ .KIT__SocialButtons-module__socialButtons___ZWpE0 {
1966
+ display: grid;
1967
+ width: 100%;
1968
+ grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
1969
+ grid-gap: var(--indent-m);
1970
+ gap: var(--indent-m);
1971
+ }
1972
+
1973
+ .KIT__SocialButtons-module__row___DA7Ns {
1974
+ display: flex;
1975
+ align-items: center;
1976
+ gap: var(--indent-s);
1977
+ }
1978
+
1979
+ .KIT__SocialButtons-module__line___feDyO {
1980
+ height: 1px;
1981
+ background-color: rgba(255, 255, 255, 0.1);
1982
+ flex: 1;
1983
+ }
1984
+
1985
+ .KIT__SocialButtons-module__or___pGdGi {
1986
+ color: rgba(161, 166, 178, 1);
1987
+ font-size: var(--font-size-m);
1988
+ }
1989
+
1936
1990
  .KIT__SignUpTypeTwo-module__wrapperSignUp___P12OH {
1937
1991
  --tab-color: rgba(255, 255, 255, 0.5);
1938
1992
  --active-tab-color: var(--base-0);
@@ -2322,65 +2376,6 @@
2322
2376
  color: var(--red-1000);
2323
2377
  }
2324
2378
 
2325
- .KIT__SocialButton-module__wrapperSocialButton___zzRye {
2326
- display: flex;
2327
- flex-direction: column;
2328
- align-items: center;
2329
- justify-content: center;
2330
- gap: var(--indent-xs);
2331
- cursor: pointer;
2332
- }
2333
-
2334
- .KIT__SocialButton-module__iconBox___SBfYf {
2335
- --height: 44px;
2336
- display: flex;
2337
- flex-direction: column;
2338
- align-items: center;
2339
- justify-content: center;
2340
- background-color: rgba(255, 255, 255, 0.1);
2341
- border-radius: var(--border-m);
2342
- height: 44px;
2343
- height: var(--height);
2344
- width: 100%;
2345
- }
2346
-
2347
- .KIT__SocialButton-module__title___XGj0M {
2348
- color: var(--base-0);
2349
- font-size: var(--font-size-xs);
2350
- }
2351
-
2352
- .KIT__SocialButtons-module__wrapperSocialButtons___NZOfm {
2353
- display: flex;
2354
- flex-direction: column;
2355
- gap: var(--indent-m);
2356
- margin-bottom: var(--indent-m);
2357
- }
2358
-
2359
- .KIT__SocialButtons-module__socialButtons___ZWpE0 {
2360
- display: grid;
2361
- width: 100%;
2362
- grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
2363
- grid-gap: var(--indent-m);
2364
- gap: var(--indent-m);
2365
- }
2366
-
2367
- .KIT__SocialButtons-module__row___DA7Ns {
2368
- display: flex;
2369
- align-items: center;
2370
- gap: var(--indent-s);
2371
- }
2372
-
2373
- .KIT__SocialButtons-module__line___feDyO {
2374
- height: 1px;
2375
- background-color: rgba(255, 255, 255, 0.1);
2376
- flex: 1;
2377
- }
2378
-
2379
- .KIT__SocialButtons-module__or___pGdGi {
2380
- color: rgba(161, 166, 178, 1);
2381
- font-size: var(--font-size-m);
2382
- }
2383
-
2384
2379
  .KIT__SignUpTypeThree-module__wrapperSignUpModal___ODeA9 {
2385
2380
  --semi-dark-gray: rgb(46, 58, 76);
2386
2381
  --third-primary-color: rgb(252, 212, 53);
@@ -2753,7 +2748,7 @@
2753
2748
  }
2754
2749
 
2755
2750
  .KIT__SignIn-module__content___tU4ST .KIT__SignIn-module__passwordField___PMmjM,
2756
- .KIT__SignIn-module__wrapperForm___n33_f>div,
2751
+ .KIT__SignIn-module__wrapperForm___n33_f > div,
2757
2752
  .KIT__SignIn-module__lostPsw___bqjdO {
2758
2753
  cursor: pointer;
2759
2754
  width: var(--full);
@@ -2807,15 +2802,23 @@
2807
2802
  margin-bottom: 0;
2808
2803
  }
2809
2804
 
2810
- .KIT__SignIn-module__reg___GSs_9 {
2811
- opacity: 0.7;
2805
+ .KIT__SignIn-module__noAccount___tMNZ_ {
2806
+ cursor: pointer;
2807
+ color: var(--auth-button-text-color);
2812
2808
  }
2813
2809
 
2810
+ .KIT__SignIn-module__noAccount___tMNZ_ span {
2811
+ margin-left: var(--indent-xs);
2812
+ font-weight: 500;
2813
+ color: #4576f4;
2814
+ }
2815
+
2814
2816
  @media (min-width: 768px) {
2815
2817
  .KIT__SignIn-module__wrapperSignInModal___TsZU2 {
2816
2818
  width: 500px;
2817
2819
  }
2818
2820
  }
2821
+
2819
2822
  .KIT__PopUpHeader-module__wrapperPopUpHeader___GmjiQ {
2820
2823
  display: flex;
2821
2824
  justify-content: space-between;
@@ -2961,7 +2964,6 @@
2961
2964
  .KIT__ModalLayout-module__overflow___wwFs1 {
2962
2965
  border-radius: var(--border-l) var(--border-l) 0 0;
2963
2966
  overflow: hidden;
2964
- margin-bottom: var(--indent-l);
2965
2967
  }
2966
2968
 
2967
2969
  @media screen and (min-width: 768px) {
@@ -6525,6 +6527,7 @@
6525
6527
  );
6526
6528
  /*Notice: it equals 255,255,255,0.5*/
6527
6529
  --sign-up-modal-checkbox-color: var(--base-0, white);
6530
+ --x-reg-color: var(--base-400);
6528
6531
 
6529
6532
  /* Second */
6530
6533
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-gldn-kit",
3
- "version": "0.1.69",
3
+ "version": "0.1.71",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "keywords": [],
File without changes