analytica-frontend-lib 1.0.57 → 1.0.59
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 +28 -1
- package/dist/Card/index.d.ts +28 -1
- package/dist/Card/index.js +403 -56
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +412 -57
- 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/Skeleton/index.d.mts +39 -0
- package/dist/Skeleton/index.d.ts +39 -0
- package/dist/Skeleton/index.js +191 -0
- package/dist/Skeleton/index.js.map +1 -0
- package/dist/Skeleton/index.mjs +159 -0
- package/dist/Skeleton/index.mjs.map +1 -0
- package/dist/index.css +92 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +577 -62
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +580 -63
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +92 -2
- package/dist/styles.css.map +1 -1
- package/package.json +2 -1
package/dist/index.css
CHANGED
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
--radius-xl: 0.75rem;
|
|
76
76
|
--radius-3xl: 1.5rem;
|
|
77
77
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
78
|
+
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
78
79
|
--blur-xs: 4px;
|
|
79
80
|
--default-transition-duration: 150ms;
|
|
80
81
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -651,6 +652,9 @@
|
|
|
651
652
|
.h-12 {
|
|
652
653
|
height: calc(var(--spacing) * 12);
|
|
653
654
|
}
|
|
655
|
+
.h-14 {
|
|
656
|
+
height: calc(var(--spacing) * 14);
|
|
657
|
+
}
|
|
654
658
|
.h-20 {
|
|
655
659
|
height: calc(var(--spacing) * 20);
|
|
656
660
|
}
|
|
@@ -714,15 +718,21 @@
|
|
|
714
718
|
.min-h-6 {
|
|
715
719
|
min-height: calc(var(--spacing) * 6);
|
|
716
720
|
}
|
|
721
|
+
.min-h-16 {
|
|
722
|
+
min-height: calc(var(--spacing) * 16);
|
|
723
|
+
}
|
|
717
724
|
.min-h-20 {
|
|
718
725
|
min-height: calc(var(--spacing) * 20);
|
|
719
726
|
}
|
|
720
|
-
.min-h-
|
|
721
|
-
min-height: calc(var(--spacing) *
|
|
727
|
+
.min-h-24 {
|
|
728
|
+
min-height: calc(var(--spacing) * 24);
|
|
722
729
|
}
|
|
723
730
|
.min-h-\[50px\] {
|
|
724
731
|
min-height: 50px;
|
|
725
732
|
}
|
|
733
|
+
.min-h-\[80px\] {
|
|
734
|
+
min-height: 80px;
|
|
735
|
+
}
|
|
726
736
|
.min-h-\[300px\] {
|
|
727
737
|
min-height: 300px;
|
|
728
738
|
}
|
|
@@ -735,6 +745,9 @@
|
|
|
735
745
|
.w-0 {
|
|
736
746
|
width: calc(var(--spacing) * 0);
|
|
737
747
|
}
|
|
748
|
+
.w-1 {
|
|
749
|
+
width: calc(var(--spacing) * 1);
|
|
750
|
+
}
|
|
738
751
|
.w-2 {
|
|
739
752
|
width: calc(var(--spacing) * 2);
|
|
740
753
|
}
|
|
@@ -894,6 +907,12 @@
|
|
|
894
907
|
.min-w-20 {
|
|
895
908
|
min-width: calc(var(--spacing) * 20);
|
|
896
909
|
}
|
|
910
|
+
.min-w-\[2\.5rem\] {
|
|
911
|
+
min-width: 2.5rem;
|
|
912
|
+
}
|
|
913
|
+
.min-w-\[80px\] {
|
|
914
|
+
min-width: 80px;
|
|
915
|
+
}
|
|
897
916
|
.min-w-\[210px\] {
|
|
898
917
|
min-width: 210px;
|
|
899
918
|
}
|
|
@@ -946,6 +965,9 @@
|
|
|
946
965
|
.transform {
|
|
947
966
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
948
967
|
}
|
|
968
|
+
.animate-pulse {
|
|
969
|
+
animation: var(--animate-pulse);
|
|
970
|
+
}
|
|
949
971
|
.cursor-default {
|
|
950
972
|
cursor: default;
|
|
951
973
|
}
|
|
@@ -967,6 +989,11 @@
|
|
|
967
989
|
.list-disc {
|
|
968
990
|
list-style-type: disc;
|
|
969
991
|
}
|
|
992
|
+
.appearance-none {
|
|
993
|
+
-webkit-appearance: none;
|
|
994
|
+
-moz-appearance: none;
|
|
995
|
+
appearance: none;
|
|
996
|
+
}
|
|
970
997
|
.grid-cols-1 {
|
|
971
998
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
972
999
|
}
|
|
@@ -982,6 +1009,9 @@
|
|
|
982
1009
|
.grid-cols-7 {
|
|
983
1010
|
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
984
1011
|
}
|
|
1012
|
+
.grid-cols-\[1fr_auto\] {
|
|
1013
|
+
grid-template-columns: 1fr auto;
|
|
1014
|
+
}
|
|
985
1015
|
.flex-col {
|
|
986
1016
|
flex-direction: column;
|
|
987
1017
|
}
|
|
@@ -1057,6 +1087,13 @@
|
|
|
1057
1087
|
.gap-16 {
|
|
1058
1088
|
gap: calc(var(--spacing) * 16);
|
|
1059
1089
|
}
|
|
1090
|
+
.space-y-1 {
|
|
1091
|
+
:where(& > :not(:last-child)) {
|
|
1092
|
+
--tw-space-y-reverse: 0;
|
|
1093
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
1094
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1060
1097
|
.space-y-2 {
|
|
1061
1098
|
:where(& > :not(:last-child)) {
|
|
1062
1099
|
--tw-space-y-reverse: 0;
|
|
@@ -1064,6 +1101,13 @@
|
|
|
1064
1101
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1065
1102
|
}
|
|
1066
1103
|
}
|
|
1104
|
+
.space-y-3 {
|
|
1105
|
+
:where(& > :not(:last-child)) {
|
|
1106
|
+
--tw-space-y-reverse: 0;
|
|
1107
|
+
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
1108
|
+
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1067
1111
|
.space-y-4 {
|
|
1068
1112
|
:where(& > :not(:last-child)) {
|
|
1069
1113
|
--tw-space-y-reverse: 0;
|
|
@@ -1085,6 +1129,27 @@
|
|
|
1085
1129
|
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
1086
1130
|
}
|
|
1087
1131
|
}
|
|
1132
|
+
.space-x-2 {
|
|
1133
|
+
:where(& > :not(:last-child)) {
|
|
1134
|
+
--tw-space-x-reverse: 0;
|
|
1135
|
+
margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
|
|
1136
|
+
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
.space-x-3 {
|
|
1140
|
+
:where(& > :not(:last-child)) {
|
|
1141
|
+
--tw-space-x-reverse: 0;
|
|
1142
|
+
margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
|
|
1143
|
+
margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
.space-x-4 {
|
|
1147
|
+
:where(& > :not(:last-child)) {
|
|
1148
|
+
--tw-space-x-reverse: 0;
|
|
1149
|
+
margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
|
|
1150
|
+
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1088
1153
|
.truncate {
|
|
1089
1154
|
overflow: hidden;
|
|
1090
1155
|
text-overflow: ellipsis;
|
|
@@ -1319,6 +1384,9 @@
|
|
|
1319
1384
|
.bg-background-100 {
|
|
1320
1385
|
background-color: var(--color-background-100);
|
|
1321
1386
|
}
|
|
1387
|
+
.bg-background-200 {
|
|
1388
|
+
background-color: var(--color-background-200);
|
|
1389
|
+
}
|
|
1322
1390
|
.bg-background-300 {
|
|
1323
1391
|
background-color: var(--color-background-300);
|
|
1324
1392
|
}
|
|
@@ -1340,9 +1408,15 @@
|
|
|
1340
1408
|
.bg-blue-500 {
|
|
1341
1409
|
background-color: var(--color-blue-500);
|
|
1342
1410
|
}
|
|
1411
|
+
.bg-border-100 {
|
|
1412
|
+
background-color: var(--color-border-100);
|
|
1413
|
+
}
|
|
1343
1414
|
.bg-border-200 {
|
|
1344
1415
|
background-color: var(--color-border-200);
|
|
1345
1416
|
}
|
|
1417
|
+
.bg-current {
|
|
1418
|
+
background-color: currentcolor;
|
|
1419
|
+
}
|
|
1346
1420
|
.bg-error {
|
|
1347
1421
|
background-color: var(--color-error);
|
|
1348
1422
|
}
|
|
@@ -2076,6 +2150,10 @@
|
|
|
2076
2150
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2077
2151
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2078
2152
|
}
|
|
2153
|
+
.duration-100 {
|
|
2154
|
+
--tw-duration: 100ms;
|
|
2155
|
+
transition-duration: 100ms;
|
|
2156
|
+
}
|
|
2079
2157
|
.duration-200 {
|
|
2080
2158
|
--tw-duration: 200ms;
|
|
2081
2159
|
transition-duration: 200ms;
|
|
@@ -2967,6 +3045,11 @@
|
|
|
2967
3045
|
background-color: var(--color-success-500);
|
|
2968
3046
|
}
|
|
2969
3047
|
}
|
|
3048
|
+
.disabled\:text-text-400 {
|
|
3049
|
+
&:disabled {
|
|
3050
|
+
color: var(--color-text-400);
|
|
3051
|
+
}
|
|
3052
|
+
}
|
|
2970
3053
|
.disabled\:opacity-40 {
|
|
2971
3054
|
&:disabled {
|
|
2972
3055
|
opacity: 40%;
|
|
@@ -3614,6 +3697,7 @@
|
|
|
3614
3697
|
@property --tw-skew-x { syntax: "*"; inherits: false; }
|
|
3615
3698
|
@property --tw-skew-y { syntax: "*"; inherits: false; }
|
|
3616
3699
|
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
|
|
3700
|
+
@property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
|
|
3617
3701
|
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
|
|
3618
3702
|
@property --tw-leading { syntax: "*"; inherits: false; }
|
|
3619
3703
|
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
@@ -3657,6 +3741,11 @@
|
|
|
3657
3741
|
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
|
|
3658
3742
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
3659
3743
|
@property --tw-ease { syntax: "*"; inherits: false; }
|
|
3744
|
+
@keyframes pulse {
|
|
3745
|
+
50% {
|
|
3746
|
+
opacity: 0.5;
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3660
3749
|
@layer properties {
|
|
3661
3750
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
3662
3751
|
*,
|
|
@@ -3672,6 +3761,7 @@
|
|
|
3672
3761
|
--tw-skew-x: initial;
|
|
3673
3762
|
--tw-skew-y: initial;
|
|
3674
3763
|
--tw-space-y-reverse: 0;
|
|
3764
|
+
--tw-space-x-reverse: 0;
|
|
3675
3765
|
--tw-border-style: solid;
|
|
3676
3766
|
--tw-leading: initial;
|
|
3677
3767
|
--tw-font-weight: initial;
|