analytica-frontend-lib 1.1.21 → 1.1.22

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/index.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;
@@ -1090,6 +1091,9 @@
1090
1091
  .max-w-\[360px\] {
1091
1092
  max-width: 360px;
1092
1093
  }
1094
+ .max-w-\[364px\] {
1095
+ max-width: 364px;
1096
+ }
1093
1097
  .max-w-\[378px\] {
1094
1098
  max-width: 378px;
1095
1099
  }
@@ -1245,6 +1249,9 @@
1245
1249
  .animate-pulse {
1246
1250
  animation: var(--animate-pulse);
1247
1251
  }
1252
+ .animate-spin {
1253
+ animation: var(--animate-spin);
1254
+ }
1248
1255
  .cursor-default {
1249
1256
  cursor: default;
1250
1257
  }
@@ -1370,6 +1377,9 @@
1370
1377
  .gap-12 {
1371
1378
  gap: calc(var(--spacing) * 12);
1372
1379
  }
1380
+ .gap-14 {
1381
+ gap: calc(var(--spacing) * 14);
1382
+ }
1373
1383
  .gap-16 {
1374
1384
  gap: calc(var(--spacing) * 16);
1375
1385
  }
@@ -2062,6 +2072,12 @@
2062
2072
  .bg-background-muted {
2063
2073
  background-color: var(--color-background-muted);
2064
2074
  }
2075
+ .bg-background\/90 {
2076
+ background-color: color-mix(in srgb, #ffffff 90%, transparent);
2077
+ @supports (color: color-mix(in lab, red, red)) {
2078
+ background-color: color-mix(in oklab, var(--color-background) 90%, transparent);
2079
+ }
2080
+ }
2065
2081
  .bg-black\/20 {
2066
2082
  background-color: color-mix(in srgb, #000 20%, transparent);
2067
2083
  @supports (color: color-mix(in lab, red, red)) {
@@ -2620,6 +2636,12 @@
2620
2636
  --tw-gradient-to: transparent;
2621
2637
  --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
2638
  }
2639
+ .fill-primary-100 {
2640
+ fill: var(--color-primary-100);
2641
+ }
2642
+ .fill-primary-600 {
2643
+ fill: var(--color-primary-600);
2644
+ }
2623
2645
  .stroke-background-300 {
2624
2646
  stroke: var(--color-background-300);
2625
2647
  }
@@ -8912,6 +8934,11 @@
8912
8934
  @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
8913
8935
  @property --tw-duration { syntax: "*"; inherits: false; }
8914
8936
  @property --tw-ease { syntax: "*"; inherits: false; }
8937
+ @keyframes spin {
8938
+ to {
8939
+ transform: rotate(360deg);
8940
+ }
8941
+ }
8915
8942
  @keyframes pulse {
8916
8943
  50% {
8917
8944
  opacity: 0.5;