analytica-frontend-lib 1.0.46 → 1.0.48

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
@@ -390,6 +390,9 @@
390
390
  .relative {
391
391
  position: relative;
392
392
  }
393
+ .static {
394
+ position: static;
395
+ }
393
396
  .inset-0 {
394
397
  inset: calc(var(--spacing) * 0);
395
398
  }
@@ -546,6 +549,12 @@
546
549
  .box-border {
547
550
  box-sizing: border-box;
548
551
  }
552
+ .line-clamp-2 {
553
+ overflow: hidden;
554
+ display: -webkit-box;
555
+ -webkit-box-orient: vertical;
556
+ -webkit-line-clamp: 2;
557
+ }
549
558
  .block {
550
559
  display: block;
551
560
  }
@@ -641,9 +650,6 @@
641
650
  .h-20 {
642
651
  height: calc(var(--spacing) * 20);
643
652
  }
644
- .h-20\.5 {
645
- height: calc(var(--spacing) * 20.5);
646
- }
647
653
  .h-24 {
648
654
  height: calc(var(--spacing) * 24);
649
655
  }
@@ -698,12 +704,18 @@
698
704
  .max-h-32 {
699
705
  max-height: calc(var(--spacing) * 32);
700
706
  }
707
+ .max-h-none {
708
+ max-height: none;
709
+ }
701
710
  .min-h-6 {
702
711
  min-height: calc(var(--spacing) * 6);
703
712
  }
704
713
  .min-h-20 {
705
714
  min-height: calc(var(--spacing) * 20);
706
715
  }
716
+ .min-h-20\.5 {
717
+ min-height: calc(var(--spacing) * 20.5);
718
+ }
707
719
  .min-h-\[50px\] {
708
720
  min-height: 50px;
709
721
  }
@@ -755,9 +767,6 @@
755
767
  .w-20 {
756
768
  width: calc(var(--spacing) * 20);
757
769
  }
758
- .w-72 {
759
- width: calc(var(--spacing) * 72);
760
- }
761
770
  .w-\[1em\] {
762
771
  width: 1em;
763
772
  }
@@ -797,6 +806,9 @@
797
806
  .w-\[384px\] {
798
807
  width: 384px;
799
808
  }
809
+ .w-auto {
810
+ width: auto;
811
+ }
800
812
  .w-full {
801
813
  width: 100%;
802
814
  }
@@ -833,6 +845,9 @@
833
845
  .max-w-\[360px\] {
834
846
  max-width: 360px;
835
847
  }
848
+ .max-w-\[380px\] {
849
+ max-width: 380px;
850
+ }
836
851
  .max-w-\[390px\] {
837
852
  max-width: 390px;
838
853
  }
@@ -872,6 +887,9 @@
872
887
  .min-w-6 {
873
888
  min-width: calc(var(--spacing) * 6);
874
889
  }
890
+ .min-w-8 {
891
+ min-width: calc(var(--spacing) * 8);
892
+ }
875
893
  .min-w-20 {
876
894
  min-width: calc(var(--spacing) * 20);
877
895
  }
@@ -1281,6 +1299,9 @@
1281
1299
  .bg-background-500 {
1282
1300
  background-color: var(--color-background-500);
1283
1301
  }
1302
+ .bg-background-950 {
1303
+ background-color: var(--color-background-950);
1304
+ }
1284
1305
  .bg-background-muted {
1285
1306
  background-color: var(--color-background-muted);
1286
1307
  }