analytica-frontend-lib 1.0.57 → 1.0.58
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/dist/Card/index.d.mts +19 -1
- package/dist/Card/index.d.ts +19 -1
- package/dist/Card/index.js +246 -7
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +256 -8
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Menu/index.js +13 -6
- package/dist/Menu/index.js.map +1 -1
- package/dist/Menu/index.mjs +13 -6
- package/dist/Menu/index.mjs.map +1 -1
- package/dist/index.css +29 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +257 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +268 -14
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +29 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -651,6 +651,9 @@
|
|
|
651
651
|
.h-12 {
|
|
652
652
|
height: calc(var(--spacing) * 12);
|
|
653
653
|
}
|
|
654
|
+
.h-14 {
|
|
655
|
+
height: calc(var(--spacing) * 14);
|
|
656
|
+
}
|
|
654
657
|
.h-20 {
|
|
655
658
|
height: calc(var(--spacing) * 20);
|
|
656
659
|
}
|
|
@@ -735,6 +738,9 @@
|
|
|
735
738
|
.w-0 {
|
|
736
739
|
width: calc(var(--spacing) * 0);
|
|
737
740
|
}
|
|
741
|
+
.w-1 {
|
|
742
|
+
width: calc(var(--spacing) * 1);
|
|
743
|
+
}
|
|
738
744
|
.w-2 {
|
|
739
745
|
width: calc(var(--spacing) * 2);
|
|
740
746
|
}
|
|
@@ -894,6 +900,9 @@
|
|
|
894
900
|
.min-w-20 {
|
|
895
901
|
min-width: calc(var(--spacing) * 20);
|
|
896
902
|
}
|
|
903
|
+
.min-w-\[2\.5rem\] {
|
|
904
|
+
min-width: 2.5rem;
|
|
905
|
+
}
|
|
897
906
|
.min-w-\[210px\] {
|
|
898
907
|
min-width: 210px;
|
|
899
908
|
}
|
|
@@ -967,6 +976,11 @@
|
|
|
967
976
|
.list-disc {
|
|
968
977
|
list-style-type: disc;
|
|
969
978
|
}
|
|
979
|
+
.appearance-none {
|
|
980
|
+
-webkit-appearance: none;
|
|
981
|
+
-moz-appearance: none;
|
|
982
|
+
appearance: none;
|
|
983
|
+
}
|
|
970
984
|
.grid-cols-1 {
|
|
971
985
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
972
986
|
}
|
|
@@ -1340,9 +1354,15 @@
|
|
|
1340
1354
|
.bg-blue-500 {
|
|
1341
1355
|
background-color: var(--color-blue-500);
|
|
1342
1356
|
}
|
|
1357
|
+
.bg-border-100 {
|
|
1358
|
+
background-color: var(--color-border-100);
|
|
1359
|
+
}
|
|
1343
1360
|
.bg-border-200 {
|
|
1344
1361
|
background-color: var(--color-border-200);
|
|
1345
1362
|
}
|
|
1363
|
+
.bg-current {
|
|
1364
|
+
background-color: currentcolor;
|
|
1365
|
+
}
|
|
1346
1366
|
.bg-error {
|
|
1347
1367
|
background-color: var(--color-error);
|
|
1348
1368
|
}
|
|
@@ -2076,6 +2096,10 @@
|
|
|
2076
2096
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2077
2097
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2078
2098
|
}
|
|
2099
|
+
.duration-100 {
|
|
2100
|
+
--tw-duration: 100ms;
|
|
2101
|
+
transition-duration: 100ms;
|
|
2102
|
+
}
|
|
2079
2103
|
.duration-200 {
|
|
2080
2104
|
--tw-duration: 200ms;
|
|
2081
2105
|
transition-duration: 200ms;
|
|
@@ -2967,6 +2991,11 @@
|
|
|
2967
2991
|
background-color: var(--color-success-500);
|
|
2968
2992
|
}
|
|
2969
2993
|
}
|
|
2994
|
+
.disabled\:text-text-400 {
|
|
2995
|
+
&:disabled {
|
|
2996
|
+
color: var(--color-text-400);
|
|
2997
|
+
}
|
|
2998
|
+
}
|
|
2970
2999
|
.disabled\:opacity-40 {
|
|
2971
3000
|
&:disabled {
|
|
2972
3001
|
opacity: 40%;
|