@6thbridge/hexa 0.0.11 → 0.0.12
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-build.log +12 -12
- package/.turbo/turbo-lint.log +1 -1
- package/dist/index.d.mts +7 -6
- package/dist/index.d.ts +7 -6
- 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 +21 -11
- package/package.json +5 -1
package/dist/output.css
CHANGED
@@ -649,9 +649,9 @@ video {
|
|
649
649
|
margin-right: -0.25rem;
|
650
650
|
}
|
651
651
|
|
652
|
-
.mx-
|
653
|
-
margin-left: 0.
|
654
|
-
margin-right: 0.
|
652
|
+
.mx-2{
|
653
|
+
margin-left: 0.5rem;
|
654
|
+
margin-right: 0.5rem;
|
655
655
|
}
|
656
656
|
|
657
657
|
.mx-auto{
|
@@ -683,6 +683,10 @@ video {
|
|
683
683
|
margin-right: 0.5rem;
|
684
684
|
}
|
685
685
|
|
686
|
+
.mt-2{
|
687
|
+
margin-top: 0.5rem;
|
688
|
+
}
|
689
|
+
|
686
690
|
.mt-5{
|
687
691
|
margin-top: 1.25rem;
|
688
692
|
}
|
@@ -784,16 +788,12 @@ video {
|
|
784
788
|
height: 1px;
|
785
789
|
}
|
786
790
|
|
787
|
-
.max-h-\[
|
788
|
-
max-height:
|
789
|
-
}
|
790
|
-
|
791
|
-
.max-h-\[300px\]{
|
792
|
-
max-height: 300px;
|
791
|
+
.max-h-\[225px\]{
|
792
|
+
max-height: 225px;
|
793
793
|
}
|
794
794
|
|
795
|
-
.max-h-\[
|
796
|
-
max-height:
|
795
|
+
.max-h-\[270px\]{
|
796
|
+
max-height: 270px;
|
797
797
|
}
|
798
798
|
|
799
799
|
.min-h-\[80px\]{
|
@@ -1207,6 +1207,11 @@ video {
|
|
1207
1207
|
background-color: transparent !important;
|
1208
1208
|
}
|
1209
1209
|
|
1210
|
+
.bg-\[\#959595\]{
|
1211
|
+
--tw-bg-opacity: 1;
|
1212
|
+
background-color: rgb(149 149 149 / var(--tw-bg-opacity, 1));
|
1213
|
+
}
|
1214
|
+
|
1210
1215
|
.bg-\[\#F6F6F6\]{
|
1211
1216
|
--tw-bg-opacity: 1;
|
1212
1217
|
background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
|
@@ -1924,6 +1929,11 @@ input:-webkit-autofill:active {
|
|
1924
1929
|
cursor: pointer;
|
1925
1930
|
}
|
1926
1931
|
|
1932
|
+
.hover\:bg-\[\#808080\]:hover{
|
1933
|
+
--tw-bg-opacity: 1;
|
1934
|
+
background-color: rgb(128 128 128 / var(--tw-bg-opacity, 1));
|
1935
|
+
}
|
1936
|
+
|
1927
1937
|
.hover\:bg-gray-50:hover{
|
1928
1938
|
--tw-bg-opacity: 1;
|
1929
1939
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@6thbridge/hexa",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.12",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"types": "dist/index.d.ts",
|
6
6
|
"exports": {
|
@@ -58,6 +58,10 @@
|
|
58
58
|
"react": ">=18.0.0",
|
59
59
|
"react-dom": ">=18.0.0"
|
60
60
|
},
|
61
|
+
"resolutions": {
|
62
|
+
"@radix-ui/react-dismissable-layer": "1.1.0",
|
63
|
+
"@radix-ui/react-focus-scope": "1.1.0"
|
64
|
+
},
|
61
65
|
"scripts": {
|
62
66
|
"lint": "eslint . --max-warnings 0",
|
63
67
|
"generate:component": "turbo gen react-component",
|