analytica-frontend-lib 1.0.46 → 1.0.47

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
  }
@@ -797,6 +809,9 @@
797
809
  .w-\[384px\] {
798
810
  width: 384px;
799
811
  }
812
+ .w-auto {
813
+ width: auto;
814
+ }
800
815
  .w-full {
801
816
  width: 100%;
802
817
  }
@@ -833,6 +848,9 @@
833
848
  .max-w-\[360px\] {
834
849
  max-width: 360px;
835
850
  }
851
+ .max-w-\[380px\] {
852
+ max-width: 380px;
853
+ }
836
854
  .max-w-\[390px\] {
837
855
  max-width: 390px;
838
856
  }
@@ -872,6 +890,9 @@
872
890
  .min-w-6 {
873
891
  min-width: calc(var(--spacing) * 6);
874
892
  }
893
+ .min-w-8 {
894
+ min-width: calc(var(--spacing) * 8);
895
+ }
875
896
  .min-w-20 {
876
897
  min-width: calc(var(--spacing) * 20);
877
898
  }
@@ -1281,6 +1302,9 @@
1281
1302
  .bg-background-500 {
1282
1303
  background-color: var(--color-background-500);
1283
1304
  }
1305
+ .bg-background-950 {
1306
+ background-color: var(--color-background-950);
1307
+ }
1284
1308
  .bg-background-muted {
1285
1309
  background-color: var(--color-background-muted);
1286
1310
  }