analytica-frontend-lib 1.1.99 → 1.2.1

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
@@ -1075,12 +1075,12 @@
1075
1075
  .w-\[90px\] {
1076
1076
  width: 90px;
1077
1077
  }
1078
- .w-\[99px\] {
1079
- width: 99px;
1080
- }
1081
1078
  .w-\[110px\] {
1082
1079
  width: 110px;
1083
1080
  }
1081
+ .w-\[120px\] {
1082
+ width: 120px;
1083
+ }
1084
1084
  .w-\[122px\] {
1085
1085
  width: 122px;
1086
1086
  }
@@ -1247,6 +1247,12 @@
1247
1247
  .min-w-\[80px\] {
1248
1248
  min-width: 80px;
1249
1249
  }
1250
+ .min-w-\[90px\] {
1251
+ min-width: 90px;
1252
+ }
1253
+ .min-w-\[120px\] {
1254
+ min-width: 120px;
1255
+ }
1250
1256
  .min-w-\[140px\] {
1251
1257
  min-width: 140px;
1252
1258
  }
@@ -2929,6 +2935,9 @@
2929
2935
  .pt-1 {
2930
2936
  padding-top: calc(var(--spacing) * 1);
2931
2937
  }
2938
+ .pt-2 {
2939
+ padding-top: calc(var(--spacing) * 2);
2940
+ }
2932
2941
  .pt-2\.5 {
2933
2942
  padding-top: calc(var(--spacing) * 2.5);
2934
2943
  }
@@ -9704,6 +9713,11 @@
9704
9713
  flex: none;
9705
9714
  }
9706
9715
  }
9716
+ .sm\:shrink-0 {
9717
+ @media (width >= 40rem) {
9718
+ flex-shrink: 0;
9719
+ }
9720
+ }
9707
9721
  .sm\:basis-0 {
9708
9722
  @media (width >= 40rem) {
9709
9723
  flex-basis: calc(var(--spacing) * 0);
@@ -18462,6 +18476,21 @@
18462
18476
  translate: var(--tw-translate-x) var(--tw-translate-y);
18463
18477
  }
18464
18478
  }
18479
+ .\[\&\>span\]\:overflow-hidden {
18480
+ & > span {
18481
+ overflow: hidden;
18482
+ }
18483
+ }
18484
+ .\[\&\>span\]\:text-ellipsis {
18485
+ & > span {
18486
+ text-overflow: ellipsis;
18487
+ }
18488
+ }
18489
+ .\[\&\>span\]\:whitespace-nowrap {
18490
+ & > span {
18491
+ white-space: nowrap;
18492
+ }
18493
+ }
18465
18494
  .\[\&\>svg\]\:size-4 {
18466
18495
  & > svg {
18467
18496
  width: calc(var(--spacing) * 4);