analytica-frontend-lib 1.0.40 → 1.0.42

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/styles.css CHANGED
@@ -62,6 +62,7 @@
62
62
  --font-weight-bold: 700;
63
63
  --font-weight-extrabold: 800;
64
64
  --font-weight-black: 900;
65
+ --tracking-normal: 0em;
65
66
  --tracking-wide: 0.025em;
66
67
  --leading-normal: 1.5;
67
68
  --radius-xs: 0.125rem;
@@ -564,9 +565,6 @@
564
565
  .h-1 {
565
566
  height: calc(var(--spacing) * 1);
566
567
  }
567
- .h-1\.5 {
568
- height: calc(var(--spacing) * 1.5);
569
- }
570
568
  .h-2 {
571
569
  height: calc(var(--spacing) * 2);
572
570
  }
@@ -639,9 +637,6 @@
639
637
  .w-0 {
640
638
  width: calc(var(--spacing) * 0);
641
639
  }
642
- .w-1\.5 {
643
- width: calc(var(--spacing) * 1.5);
644
- }
645
640
  .w-2 {
646
641
  width: calc(var(--spacing) * 2);
647
642
  }
@@ -681,9 +676,6 @@
681
676
  .w-\[21px\] {
682
677
  width: 21px;
683
678
  }
684
- .w-\[70px\] {
685
- width: 70px;
686
- }
687
679
  .w-\[90px\] {
688
680
  width: 90px;
689
681
  }
@@ -711,6 +703,12 @@
711
703
  .max-w-6xl {
712
704
  max-width: var(--container-6xl);
713
705
  }
706
+ .max-w-\[50px\] {
707
+ max-width: 50px;
708
+ }
709
+ .max-w-\[90px\] {
710
+ max-width: 90px;
711
+ }
714
712
  .max-w-\[390px\] {
715
713
  max-width: 390px;
716
714
  }
@@ -726,6 +724,9 @@
726
724
  .max-w-xs {
727
725
  max-width: var(--container-xs);
728
726
  }
727
+ .min-w-0 {
728
+ min-width: calc(var(--spacing) * 0);
729
+ }
729
730
  .min-w-\[210px\] {
730
731
  min-width: 210px;
731
732
  }
@@ -835,6 +836,9 @@
835
836
  .justify-start {
836
837
  justify-content: flex-start;
837
838
  }
839
+ .gap-0 {
840
+ gap: calc(var(--spacing) * 0);
841
+ }
838
842
  .gap-0\.5 {
839
843
  gap: calc(var(--spacing) * 0.5);
840
844
  }
@@ -886,6 +890,11 @@
886
890
  margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
887
891
  }
888
892
  }
893
+ .truncate {
894
+ overflow: hidden;
895
+ text-overflow: ellipsis;
896
+ white-space: nowrap;
897
+ }
889
898
  .overflow-hidden {
890
899
  overflow: hidden;
891
900
  }
@@ -1282,14 +1291,25 @@
1282
1291
  font-size: var(--text-xs);
1283
1292
  line-height: var(--tw-leading, var(--text-xs--line-height));
1284
1293
  }
1294
+ .text-\[8px\] {
1295
+ font-size: 8px;
1296
+ }
1285
1297
  .leading-7 {
1286
1298
  --tw-leading: calc(var(--spacing) * 7);
1287
1299
  line-height: calc(var(--spacing) * 7);
1288
1300
  }
1301
+ .leading-\[9px\] {
1302
+ --tw-leading: 9px;
1303
+ line-height: 9px;
1304
+ }
1289
1305
  .leading-\[150\%\] {
1290
1306
  --tw-leading: 150%;
1291
1307
  line-height: 150%;
1292
1308
  }
1309
+ .leading-none {
1310
+ --tw-leading: 1;
1311
+ line-height: 1;
1312
+ }
1293
1313
  .leading-normal {
1294
1314
  --tw-leading: var(--leading-normal);
1295
1315
  line-height: var(--leading-normal);
@@ -1326,6 +1346,10 @@
1326
1346
  --tw-font-weight: var(--font-weight-semibold);
1327
1347
  font-weight: var(--font-weight-semibold);
1328
1348
  }
1349
+ .tracking-normal {
1350
+ --tw-tracking: var(--tracking-normal);
1351
+ letter-spacing: var(--tracking-normal);
1352
+ }
1329
1353
  .tracking-wide {
1330
1354
  --tw-tracking: var(--tracking-wide);
1331
1355
  letter-spacing: var(--tracking-wide);
@@ -2119,6 +2143,21 @@
2119
2143
  opacity: 50%;
2120
2144
  }
2121
2145
  }
2146
+ .sm\:flex-row {
2147
+ @media (width >= 40rem) {
2148
+ flex-direction: row;
2149
+ }
2150
+ }
2151
+ .sm\:items-center {
2152
+ @media (width >= 40rem) {
2153
+ align-items: center;
2154
+ }
2155
+ }
2156
+ .sm\:gap-4 {
2157
+ @media (width >= 40rem) {
2158
+ gap: calc(var(--spacing) * 4);
2159
+ }
2160
+ }
2122
2161
  .md\:grid-cols-2 {
2123
2162
  @media (width >= 48rem) {
2124
2163
  grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -2134,6 +2173,11 @@
2134
2173
  flex-direction: row;
2135
2174
  }
2136
2175
  }
2176
+ .xl\:grid-cols-2 {
2177
+ @media (width >= 80rem) {
2178
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2179
+ }
2180
+ }
2137
2181
  .\[\&_tr\:first-child\]\:border-0 {
2138
2182
  & tr:first-child {
2139
2183
  border-style: var(--tw-border-style);