@6thbridge/hexa 0.0.3 → 0.0.4
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 +15 -3
- package/dist/index.d.ts +15 -3
- 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 +23 -14
- package/package.json +1 -1
- package/tsconfig.json +1 -2
- package/tsconfig.node.json +0 -10
package/dist/output.css
CHANGED
@@ -1021,11 +1021,6 @@ video {
|
|
1021
1021
|
border-color: rgb(222 222 222 / var(--tw-border-opacity, 1));
|
1022
1022
|
}
|
1023
1023
|
|
1024
|
-
.border-blue-950{
|
1025
|
-
--tw-border-opacity: 1;
|
1026
|
-
border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
|
1027
|
-
}
|
1028
|
-
|
1029
1024
|
.border-primary-main{
|
1030
1025
|
border-color: var(--color-primary);
|
1031
1026
|
}
|
@@ -1035,6 +1030,11 @@ video {
|
|
1035
1030
|
border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
|
1036
1031
|
}
|
1037
1032
|
|
1033
|
+
.border-red-600{
|
1034
|
+
--tw-border-opacity: 1;
|
1035
|
+
border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
|
1036
|
+
}
|
1037
|
+
|
1038
1038
|
.border-transparent{
|
1039
1039
|
border-color: transparent;
|
1040
1040
|
}
|
@@ -1074,6 +1074,11 @@ video {
|
|
1074
1074
|
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
|
1075
1075
|
}
|
1076
1076
|
|
1077
|
+
.bg-red-600{
|
1078
|
+
--tw-bg-opacity: 1;
|
1079
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
1080
|
+
}
|
1081
|
+
|
1077
1082
|
.bg-transparent{
|
1078
1083
|
background-color: transparent;
|
1079
1084
|
}
|
@@ -1249,10 +1254,6 @@ video {
|
|
1249
1254
|
line-height: 1rem;
|
1250
1255
|
}
|
1251
1256
|
|
1252
|
-
.\!font-medium{
|
1253
|
-
font-weight: 500 !important;
|
1254
|
-
}
|
1255
|
-
|
1256
1257
|
.\!font-normal{
|
1257
1258
|
font-weight: 400 !important;
|
1258
1259
|
}
|
@@ -1321,11 +1322,6 @@ video {
|
|
1321
1322
|
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
1322
1323
|
}
|
1323
1324
|
|
1324
|
-
.text-blue-950{
|
1325
|
-
--tw-text-opacity: 1;
|
1326
|
-
color: rgb(23 37 84 / var(--tw-text-opacity, 1));
|
1327
|
-
}
|
1328
|
-
|
1329
1325
|
.text-gray-400{
|
1330
1326
|
--tw-text-opacity: 1;
|
1331
1327
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
@@ -1340,6 +1336,11 @@ video {
|
|
1340
1336
|
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
1341
1337
|
}
|
1342
1338
|
|
1339
|
+
.text-red-600{
|
1340
|
+
--tw-text-opacity: 1;
|
1341
|
+
color: rgb(220 38 38 / var(--tw-text-opacity, 1));
|
1342
|
+
}
|
1343
|
+
|
1343
1344
|
.text-white{
|
1344
1345
|
--tw-text-opacity: 1;
|
1345
1346
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
@@ -1541,6 +1542,10 @@ input[type="number"] {
|
|
1541
1542
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1542
1543
|
}
|
1543
1544
|
|
1545
|
+
.hover\:bg-red-600\/70:hover{
|
1546
|
+
background-color: rgb(220 38 38 / 0.7);
|
1547
|
+
}
|
1548
|
+
|
1544
1549
|
.hover\:bg-opacity-70:hover{
|
1545
1550
|
--tw-bg-opacity: 0.7;
|
1546
1551
|
}
|
@@ -1613,6 +1618,10 @@ input[type="number"] {
|
|
1613
1618
|
cursor: not-allowed;
|
1614
1619
|
}
|
1615
1620
|
|
1621
|
+
.disabled\:bg-red-600\/70:disabled{
|
1622
|
+
background-color: rgb(220 38 38 / 0.7);
|
1623
|
+
}
|
1624
|
+
|
1616
1625
|
.disabled\:bg-opacity-70:disabled{
|
1617
1626
|
--tw-bg-opacity: 0.7;
|
1618
1627
|
}
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED