analytica-frontend-lib 1.1.21 → 1.1.23
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/Accordation/index.js +1 -1
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +1 -1
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.js +1 -1
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +1 -1
- package/dist/Card/index.mjs.map +1 -1
- package/dist/LoadingModal/index.d.mts +11 -0
- package/dist/LoadingModal/index.d.ts +11 -0
- package/dist/LoadingModal/index.js +79 -0
- package/dist/LoadingModal/index.js.map +1 -0
- package/dist/LoadingModal/index.mjs +58 -0
- package/dist/LoadingModal/index.mjs.map +1 -0
- package/dist/NotificationCard/index.d.mts +104 -0
- package/dist/NotificationCard/index.d.ts +104 -0
- package/dist/NotificationCard/index.js +799 -0
- package/dist/NotificationCard/index.js.map +1 -0
- package/dist/NotificationCard/index.mjs +786 -0
- package/dist/NotificationCard/index.mjs.map +1 -0
- package/dist/Quiz/index.js +3 -14
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +3 -14
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/index.css +49 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +257 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +255 -14
- package/dist/index.mjs.map +1 -1
- package/dist/no-notification-result-7Y3ACV6V.png +0 -0
- package/dist/styles.css +49 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -1
|
Binary file
|
package/dist/styles.css
CHANGED
|
@@ -117,6 +117,7 @@
|
|
|
117
117
|
--radius-3xl: 1.5rem;
|
|
118
118
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
119
119
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
120
|
+
--animate-spin: spin 1s linear infinite;
|
|
120
121
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
121
122
|
--blur-xs: 4px;
|
|
122
123
|
--blur-sm: 8px;
|
|
@@ -831,6 +832,9 @@
|
|
|
831
832
|
.h-\[1em\] {
|
|
832
833
|
height: 1em;
|
|
833
834
|
}
|
|
835
|
+
.h-\[7px\] {
|
|
836
|
+
height: 7px;
|
|
837
|
+
}
|
|
834
838
|
.h-\[18px\] {
|
|
835
839
|
height: 18px;
|
|
836
840
|
}
|
|
@@ -999,6 +1003,9 @@
|
|
|
999
1003
|
.w-\[1em\] {
|
|
1000
1004
|
width: 1em;
|
|
1001
1005
|
}
|
|
1006
|
+
.w-\[7px\] {
|
|
1007
|
+
width: 7px;
|
|
1008
|
+
}
|
|
1002
1009
|
.w-\[18px\] {
|
|
1003
1010
|
width: 18px;
|
|
1004
1011
|
}
|
|
@@ -1084,12 +1091,18 @@
|
|
|
1084
1091
|
.max-w-\[266px\] {
|
|
1085
1092
|
max-width: 266px;
|
|
1086
1093
|
}
|
|
1094
|
+
.max-w-\[316px\] {
|
|
1095
|
+
max-width: 316px;
|
|
1096
|
+
}
|
|
1087
1097
|
.max-w-\[324px\] {
|
|
1088
1098
|
max-width: 324px;
|
|
1089
1099
|
}
|
|
1090
1100
|
.max-w-\[360px\] {
|
|
1091
1101
|
max-width: 360px;
|
|
1092
1102
|
}
|
|
1103
|
+
.max-w-\[364px\] {
|
|
1104
|
+
max-width: 364px;
|
|
1105
|
+
}
|
|
1093
1106
|
.max-w-\[378px\] {
|
|
1094
1107
|
max-width: 378px;
|
|
1095
1108
|
}
|
|
@@ -1168,6 +1181,9 @@
|
|
|
1168
1181
|
.min-w-\[140px\] {
|
|
1169
1182
|
min-width: 140px;
|
|
1170
1183
|
}
|
|
1184
|
+
.min-w-\[160px\] {
|
|
1185
|
+
min-width: 160px;
|
|
1186
|
+
}
|
|
1171
1187
|
.min-w-\[210px\] {
|
|
1172
1188
|
min-width: 210px;
|
|
1173
1189
|
}
|
|
@@ -1245,6 +1261,9 @@
|
|
|
1245
1261
|
.animate-pulse {
|
|
1246
1262
|
animation: var(--animate-pulse);
|
|
1247
1263
|
}
|
|
1264
|
+
.animate-spin {
|
|
1265
|
+
animation: var(--animate-spin);
|
|
1266
|
+
}
|
|
1248
1267
|
.cursor-default {
|
|
1249
1268
|
cursor: default;
|
|
1250
1269
|
}
|
|
@@ -1370,6 +1389,9 @@
|
|
|
1370
1389
|
.gap-12 {
|
|
1371
1390
|
gap: calc(var(--spacing) * 12);
|
|
1372
1391
|
}
|
|
1392
|
+
.gap-14 {
|
|
1393
|
+
gap: calc(var(--spacing) * 14);
|
|
1394
|
+
}
|
|
1373
1395
|
.gap-16 {
|
|
1374
1396
|
gap: calc(var(--spacing) * 16);
|
|
1375
1397
|
}
|
|
@@ -2062,6 +2084,12 @@
|
|
|
2062
2084
|
.bg-background-muted {
|
|
2063
2085
|
background-color: var(--color-background-muted);
|
|
2064
2086
|
}
|
|
2087
|
+
.bg-background\/90 {
|
|
2088
|
+
background-color: color-mix(in srgb, #ffffff 90%, transparent);
|
|
2089
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2090
|
+
background-color: color-mix(in oklab, var(--color-background) 90%, transparent);
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2065
2093
|
.bg-black\/20 {
|
|
2066
2094
|
background-color: color-mix(in srgb, #000 20%, transparent);
|
|
2067
2095
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2620,6 +2648,12 @@
|
|
|
2620
2648
|
--tw-gradient-to: transparent;
|
|
2621
2649
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
2622
2650
|
}
|
|
2651
|
+
.fill-primary-100 {
|
|
2652
|
+
fill: var(--color-primary-100);
|
|
2653
|
+
}
|
|
2654
|
+
.fill-primary-600 {
|
|
2655
|
+
fill: var(--color-primary-600);
|
|
2656
|
+
}
|
|
2623
2657
|
.stroke-background-300 {
|
|
2624
2658
|
stroke: var(--color-background-300);
|
|
2625
2659
|
}
|
|
@@ -2883,6 +2917,10 @@
|
|
|
2883
2917
|
--tw-leading: 21px;
|
|
2884
2918
|
line-height: 21px;
|
|
2885
2919
|
}
|
|
2920
|
+
.leading-\[23px\] {
|
|
2921
|
+
--tw-leading: 23px;
|
|
2922
|
+
line-height: 23px;
|
|
2923
|
+
}
|
|
2886
2924
|
.leading-\[150\%\] {
|
|
2887
2925
|
--tw-leading: 150%;
|
|
2888
2926
|
line-height: 150%;
|
|
@@ -3786,6 +3824,12 @@
|
|
|
3786
3824
|
color: var(--color-text-600);
|
|
3787
3825
|
}
|
|
3788
3826
|
}
|
|
3827
|
+
.last\:border-b-0 {
|
|
3828
|
+
&:last-child {
|
|
3829
|
+
border-bottom-style: var(--tw-border-style);
|
|
3830
|
+
border-bottom-width: 0px;
|
|
3831
|
+
}
|
|
3832
|
+
}
|
|
3789
3833
|
.hover\:border-background-50 {
|
|
3790
3834
|
&:hover {
|
|
3791
3835
|
@media (hover: hover) {
|
|
@@ -8912,6 +8956,11 @@
|
|
|
8912
8956
|
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
|
|
8913
8957
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
8914
8958
|
@property --tw-ease { syntax: "*"; inherits: false; }
|
|
8959
|
+
@keyframes spin {
|
|
8960
|
+
to {
|
|
8961
|
+
transform: rotate(360deg);
|
|
8962
|
+
}
|
|
8963
|
+
}
|
|
8915
8964
|
@keyframes pulse {
|
|
8916
8965
|
50% {
|
|
8917
8966
|
opacity: 0.5;
|