analytica-frontend-lib 1.0.58 → 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 +10 -1
- package/dist/Card/index.d.ts +10 -1
- package/dist/Card/index.js +161 -53
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +160 -53
- package/dist/Card/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 +63 -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 +324 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +316 -53
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +63 -2
- package/dist/styles.css.map +1 -1
- package/package.json +2 -1
package/dist/styles.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);
|
|
@@ -717,15 +718,21 @@
|
|
|
717
718
|
.min-h-6 {
|
|
718
719
|
min-height: calc(var(--spacing) * 6);
|
|
719
720
|
}
|
|
721
|
+
.min-h-16 {
|
|
722
|
+
min-height: calc(var(--spacing) * 16);
|
|
723
|
+
}
|
|
720
724
|
.min-h-20 {
|
|
721
725
|
min-height: calc(var(--spacing) * 20);
|
|
722
726
|
}
|
|
723
|
-
.min-h-
|
|
724
|
-
min-height: calc(var(--spacing) *
|
|
727
|
+
.min-h-24 {
|
|
728
|
+
min-height: calc(var(--spacing) * 24);
|
|
725
729
|
}
|
|
726
730
|
.min-h-\[50px\] {
|
|
727
731
|
min-height: 50px;
|
|
728
732
|
}
|
|
733
|
+
.min-h-\[80px\] {
|
|
734
|
+
min-height: 80px;
|
|
735
|
+
}
|
|
729
736
|
.min-h-\[300px\] {
|
|
730
737
|
min-height: 300px;
|
|
731
738
|
}
|
|
@@ -903,6 +910,9 @@
|
|
|
903
910
|
.min-w-\[2\.5rem\] {
|
|
904
911
|
min-width: 2.5rem;
|
|
905
912
|
}
|
|
913
|
+
.min-w-\[80px\] {
|
|
914
|
+
min-width: 80px;
|
|
915
|
+
}
|
|
906
916
|
.min-w-\[210px\] {
|
|
907
917
|
min-width: 210px;
|
|
908
918
|
}
|
|
@@ -955,6 +965,9 @@
|
|
|
955
965
|
.transform {
|
|
956
966
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
957
967
|
}
|
|
968
|
+
.animate-pulse {
|
|
969
|
+
animation: var(--animate-pulse);
|
|
970
|
+
}
|
|
958
971
|
.cursor-default {
|
|
959
972
|
cursor: default;
|
|
960
973
|
}
|
|
@@ -996,6 +1009,9 @@
|
|
|
996
1009
|
.grid-cols-7 {
|
|
997
1010
|
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
998
1011
|
}
|
|
1012
|
+
.grid-cols-\[1fr_auto\] {
|
|
1013
|
+
grid-template-columns: 1fr auto;
|
|
1014
|
+
}
|
|
999
1015
|
.flex-col {
|
|
1000
1016
|
flex-direction: column;
|
|
1001
1017
|
}
|
|
@@ -1071,6 +1087,13 @@
|
|
|
1071
1087
|
.gap-16 {
|
|
1072
1088
|
gap: calc(var(--spacing) * 16);
|
|
1073
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
|
+
}
|
|
1074
1097
|
.space-y-2 {
|
|
1075
1098
|
:where(& > :not(:last-child)) {
|
|
1076
1099
|
--tw-space-y-reverse: 0;
|
|
@@ -1078,6 +1101,13 @@
|
|
|
1078
1101
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1079
1102
|
}
|
|
1080
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
|
+
}
|
|
1081
1111
|
.space-y-4 {
|
|
1082
1112
|
:where(& > :not(:last-child)) {
|
|
1083
1113
|
--tw-space-y-reverse: 0;
|
|
@@ -1099,6 +1129,27 @@
|
|
|
1099
1129
|
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
1100
1130
|
}
|
|
1101
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
|
+
}
|
|
1102
1153
|
.truncate {
|
|
1103
1154
|
overflow: hidden;
|
|
1104
1155
|
text-overflow: ellipsis;
|
|
@@ -1333,6 +1384,9 @@
|
|
|
1333
1384
|
.bg-background-100 {
|
|
1334
1385
|
background-color: var(--color-background-100);
|
|
1335
1386
|
}
|
|
1387
|
+
.bg-background-200 {
|
|
1388
|
+
background-color: var(--color-background-200);
|
|
1389
|
+
}
|
|
1336
1390
|
.bg-background-300 {
|
|
1337
1391
|
background-color: var(--color-background-300);
|
|
1338
1392
|
}
|
|
@@ -3643,6 +3697,7 @@
|
|
|
3643
3697
|
@property --tw-skew-x { syntax: "*"; inherits: false; }
|
|
3644
3698
|
@property --tw-skew-y { syntax: "*"; inherits: false; }
|
|
3645
3699
|
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
|
|
3700
|
+
@property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
|
|
3646
3701
|
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
|
|
3647
3702
|
@property --tw-leading { syntax: "*"; inherits: false; }
|
|
3648
3703
|
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
@@ -3686,6 +3741,11 @@
|
|
|
3686
3741
|
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
|
|
3687
3742
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
3688
3743
|
@property --tw-ease { syntax: "*"; inherits: false; }
|
|
3744
|
+
@keyframes pulse {
|
|
3745
|
+
50% {
|
|
3746
|
+
opacity: 0.5;
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3689
3749
|
@layer properties {
|
|
3690
3750
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
3691
3751
|
*,
|
|
@@ -3701,6 +3761,7 @@
|
|
|
3701
3761
|
--tw-skew-x: initial;
|
|
3702
3762
|
--tw-skew-y: initial;
|
|
3703
3763
|
--tw-space-y-reverse: 0;
|
|
3764
|
+
--tw-space-x-reverse: 0;
|
|
3704
3765
|
--tw-border-style: solid;
|
|
3705
3766
|
--tw-leading: initial;
|
|
3706
3767
|
--tw-font-weight: initial;
|