@6thbridge/hexa 0.0.2 → 0.0.3
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/.turbo/turbo-lint.log +1 -1
- package/dist/index.d.mts +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +102 -1
- package/package.json +2 -1
package/dist/output.css
CHANGED
@@ -572,6 +572,10 @@ video {
|
|
572
572
|
pointer-events: auto;
|
573
573
|
}
|
574
574
|
|
575
|
+
.visible{
|
576
|
+
visibility: visible;
|
577
|
+
}
|
578
|
+
|
575
579
|
.fixed{
|
576
580
|
position: fixed;
|
577
581
|
}
|
@@ -639,6 +643,22 @@ video {
|
|
639
643
|
margin-right: auto;
|
640
644
|
}
|
641
645
|
|
646
|
+
.\!-mt-0{
|
647
|
+
margin-top: -0px !important;
|
648
|
+
}
|
649
|
+
|
650
|
+
.-mr-2{
|
651
|
+
margin-right: -0.5rem;
|
652
|
+
}
|
653
|
+
|
654
|
+
.ml-1{
|
655
|
+
margin-left: 0.25rem;
|
656
|
+
}
|
657
|
+
|
658
|
+
.ml-2{
|
659
|
+
margin-left: 0.5rem;
|
660
|
+
}
|
661
|
+
|
642
662
|
.ml-auto{
|
643
663
|
margin-left: auto;
|
644
664
|
}
|
@@ -663,6 +683,10 @@ video {
|
|
663
683
|
display: none;
|
664
684
|
}
|
665
685
|
|
686
|
+
.\!h-5{
|
687
|
+
height: 1.25rem !important;
|
688
|
+
}
|
689
|
+
|
666
690
|
.h-10{
|
667
691
|
height: 2.5rem;
|
668
692
|
}
|
@@ -679,6 +703,14 @@ video {
|
|
679
703
|
height: 1rem;
|
680
704
|
}
|
681
705
|
|
706
|
+
.h-5{
|
707
|
+
height: 1.25rem;
|
708
|
+
}
|
709
|
+
|
710
|
+
.h-72{
|
711
|
+
height: 18rem;
|
712
|
+
}
|
713
|
+
|
682
714
|
.h-\[1\.75rem\]{
|
683
715
|
height: 1.75rem;
|
684
716
|
}
|
@@ -716,6 +748,10 @@ video {
|
|
716
748
|
min-height: 80px;
|
717
749
|
}
|
718
750
|
|
751
|
+
.\!w-6{
|
752
|
+
width: 1.5rem !important;
|
753
|
+
}
|
754
|
+
|
719
755
|
.w-2\.5{
|
720
756
|
width: 0.625rem;
|
721
757
|
}
|
@@ -724,6 +760,10 @@ video {
|
|
724
760
|
width: 1rem;
|
725
761
|
}
|
726
762
|
|
763
|
+
.w-6{
|
764
|
+
width: 1.5rem;
|
765
|
+
}
|
766
|
+
|
727
767
|
.w-72{
|
728
768
|
width: 18rem;
|
729
769
|
}
|
@@ -736,6 +776,10 @@ video {
|
|
736
776
|
width: 2.75rem;
|
737
777
|
}
|
738
778
|
|
779
|
+
.w-\[200px\]{
|
780
|
+
width: 200px;
|
781
|
+
}
|
782
|
+
|
739
783
|
.w-\[3rem\]{
|
740
784
|
width: 3rem;
|
741
785
|
}
|
@@ -830,6 +874,10 @@ video {
|
|
830
874
|
justify-content: space-between;
|
831
875
|
}
|
832
876
|
|
877
|
+
.gap-1{
|
878
|
+
gap: 0.25rem;
|
879
|
+
}
|
880
|
+
|
833
881
|
.gap-2{
|
834
882
|
gap: 0.5rem;
|
835
883
|
}
|
@@ -898,16 +946,31 @@ video {
|
|
898
946
|
border-radius: 0.125rem;
|
899
947
|
}
|
900
948
|
|
949
|
+
.rounded-e-none{
|
950
|
+
border-start-end-radius: 0px;
|
951
|
+
border-end-end-radius: 0px;
|
952
|
+
}
|
953
|
+
|
901
954
|
.rounded-l-\[8px\]{
|
902
955
|
border-top-left-radius: 8px;
|
903
956
|
border-bottom-left-radius: 8px;
|
904
957
|
}
|
905
958
|
|
959
|
+
.rounded-l-none{
|
960
|
+
border-top-left-radius: 0px;
|
961
|
+
border-bottom-left-radius: 0px;
|
962
|
+
}
|
963
|
+
|
906
964
|
.rounded-r-\[8px\]{
|
907
965
|
border-top-right-radius: 8px;
|
908
966
|
border-bottom-right-radius: 8px;
|
909
967
|
}
|
910
968
|
|
969
|
+
.rounded-s-lg{
|
970
|
+
border-start-start-radius: 0.5rem;
|
971
|
+
border-end-start-radius: 0.5rem;
|
972
|
+
}
|
973
|
+
|
911
974
|
.\!border-0{
|
912
975
|
border-width: 0px !important;
|
913
976
|
}
|
@@ -924,10 +987,18 @@ video {
|
|
924
987
|
border-left-width: 0px !important;
|
925
988
|
}
|
926
989
|
|
990
|
+
.\!border-r-0{
|
991
|
+
border-right-width: 0px !important;
|
992
|
+
}
|
993
|
+
|
927
994
|
.border-l{
|
928
995
|
border-left-width: 1px;
|
929
996
|
}
|
930
997
|
|
998
|
+
.border-l-0{
|
999
|
+
border-left-width: 0px;
|
1000
|
+
}
|
1001
|
+
|
931
1002
|
.border-r{
|
932
1003
|
border-right-width: 1px;
|
933
1004
|
}
|
@@ -1012,6 +1083,10 @@ video {
|
|
1012
1083
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
1013
1084
|
}
|
1014
1085
|
|
1086
|
+
.bg-white\/20{
|
1087
|
+
background-color: rgb(255 255 255 / 0.2);
|
1088
|
+
}
|
1089
|
+
|
1015
1090
|
.stroke-\[\#232528\]{
|
1016
1091
|
stroke: #232528;
|
1017
1092
|
}
|
@@ -1227,6 +1302,10 @@ video {
|
|
1227
1302
|
color: rgb(25 25 25 / var(--tw-text-opacity, 1));
|
1228
1303
|
}
|
1229
1304
|
|
1305
|
+
.text-\[\#191919\]\/50{
|
1306
|
+
color: rgb(25 25 25 / 0.5);
|
1307
|
+
}
|
1308
|
+
|
1230
1309
|
.text-\[\#79818C\]{
|
1231
1310
|
--tw-text-opacity: 1;
|
1232
1311
|
color: rgb(121 129 140 / var(--tw-text-opacity, 1));
|
@@ -1278,6 +1357,14 @@ video {
|
|
1278
1357
|
caret-color: #DEDEDE;
|
1279
1358
|
}
|
1280
1359
|
|
1360
|
+
.opacity-0{
|
1361
|
+
opacity: 0;
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
.opacity-100{
|
1365
|
+
opacity: 1;
|
1366
|
+
}
|
1367
|
+
|
1281
1368
|
.opacity-50{
|
1282
1369
|
opacity: 0.5;
|
1283
1370
|
}
|
@@ -1303,6 +1390,10 @@ video {
|
|
1303
1390
|
outline-offset: 2px;
|
1304
1391
|
}
|
1305
1392
|
|
1393
|
+
.filter{
|
1394
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1395
|
+
}
|
1396
|
+
|
1306
1397
|
.transition{
|
1307
1398
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
1308
1399
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
@@ -1372,7 +1463,7 @@ input[type="number"] {
|
|
1372
1463
|
:root {
|
1373
1464
|
/* --color-primary: rgb(1, 2, 4); */
|
1374
1465
|
--color-primary: #0231c5;
|
1375
|
-
--color-primary-accent: #
|
1466
|
+
--color-primary-accent: #f5f7f9;
|
1376
1467
|
}
|
1377
1468
|
|
1378
1469
|
.placeholder\:text-\[\#79818C\]::-moz-placeholder{
|
@@ -1473,6 +1564,10 @@ input[type="number"] {
|
|
1473
1564
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1474
1565
|
}
|
1475
1566
|
|
1567
|
+
.focus\:ring-offset-1:focus{
|
1568
|
+
--tw-ring-offset-width: 1px;
|
1569
|
+
}
|
1570
|
+
|
1476
1571
|
.focus\:ring-offset-2:focus{
|
1477
1572
|
--tw-ring-offset-width: 2px;
|
1478
1573
|
}
|
@@ -1683,6 +1778,12 @@ input[type="number"] {
|
|
1683
1778
|
}
|
1684
1779
|
}
|
1685
1780
|
|
1781
|
+
@media (min-width: 768px){
|
1782
|
+
.md\:w-\[300px\]{
|
1783
|
+
width: 300px;
|
1784
|
+
}
|
1785
|
+
}
|
1786
|
+
|
1686
1787
|
.\[\&\>span\]\:items-center>span{
|
1687
1788
|
align-items: center;
|
1688
1789
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@6thbridge/hexa",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.3",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"types": "dist/index.d.ts",
|
6
6
|
"exports": {
|
@@ -47,6 +47,7 @@
|
|
47
47
|
"lucide-react": "^0.474.0",
|
48
48
|
"react": "^18",
|
49
49
|
"react-dom": "^18",
|
50
|
+
"react-phone-number-input": "^3.3.9",
|
50
51
|
"tailwind-merge": "^2.6.0",
|
51
52
|
"tailwindcss-animate": "^1.0.7"
|
52
53
|
},
|