analytica-frontend-lib 1.0.96 → 1.0.98

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
@@ -58,6 +58,7 @@
58
58
  --color-gray-50: oklch(98.5% 0.002 247.839);
59
59
  --color-gray-100: oklch(96.7% 0.003 264.542);
60
60
  --color-gray-200: oklch(92.8% 0.006 264.531);
61
+ --color-gray-300: oklch(87.2% 0.01 258.338);
61
62
  --color-gray-400: oklch(70.7% 0.022 261.325);
62
63
  --color-gray-500: oklch(55.1% 0.027 264.364);
63
64
  --color-gray-600: oklch(44.6% 0.03 256.802);
@@ -599,6 +600,9 @@
599
600
  .m-3 {
600
601
  margin: calc(var(--spacing) * 3);
601
602
  }
603
+ .mx-1 {
604
+ margin-inline: calc(var(--spacing) * 1);
605
+ }
602
606
  .mx-2 {
603
607
  margin-inline: calc(var(--spacing) * 2);
604
608
  }
@@ -659,6 +663,9 @@
659
663
  .mb-2 {
660
664
  margin-bottom: calc(var(--spacing) * 2);
661
665
  }
666
+ .mb-2\.5 {
667
+ margin-bottom: calc(var(--spacing) * 2.5);
668
+ }
662
669
  .mb-3 {
663
670
  margin-bottom: calc(var(--spacing) * 3);
664
671
  }
@@ -835,6 +842,9 @@
835
842
  .h-\[152px\] {
836
843
  height: 152px;
837
844
  }
845
+ .h-\[600px\] {
846
+ height: 600px;
847
+ }
838
848
  .h-\[calc\(100vh-180px\)\] {
839
849
  height: calc(100vh - 180px);
840
850
  }
@@ -856,6 +866,9 @@
856
866
  .max-h-32 {
857
867
  max-height: calc(var(--spacing) * 32);
858
868
  }
869
+ .max-h-\[300px\] {
870
+ max-height: 300px;
871
+ }
859
872
  .max-h-\[400px\] {
860
873
  max-height: 400px;
861
874
  }
@@ -979,6 +992,9 @@
979
992
  .w-\[160px\] {
980
993
  width: 160px;
981
994
  }
995
+ .w-\[180px\] {
996
+ width: 180px;
997
+ }
982
998
  .w-\[200px\] {
983
999
  width: 200px;
984
1000
  }
@@ -1115,12 +1131,12 @@
1115
1131
  .min-w-\[80px\] {
1116
1132
  min-width: 80px;
1117
1133
  }
1134
+ .min-w-\[140px\] {
1135
+ min-width: 140px;
1136
+ }
1118
1137
  .min-w-\[210px\] {
1119
1138
  min-width: 210px;
1120
1139
  }
1121
- .min-w-\[220px\] {
1122
- min-width: 220px;
1123
- }
1124
1140
  .min-w-\[280px\] {
1125
1141
  min-width: 280px;
1126
1142
  }
@@ -1407,6 +1423,9 @@
1407
1423
  .overflow-x-auto {
1408
1424
  overflow-x: auto;
1409
1425
  }
1426
+ .overflow-x-hidden {
1427
+ overflow-x: hidden;
1428
+ }
1410
1429
  .overflow-y-auto {
1411
1430
  overflow-y: auto;
1412
1431
  }
@@ -1629,6 +1648,9 @@
1629
1648
  .border-gray-200 {
1630
1649
  border-color: var(--color-gray-200);
1631
1650
  }
1651
+ .border-gray-300 {
1652
+ border-color: var(--color-gray-300);
1653
+ }
1632
1654
  .border-gray-400 {
1633
1655
  border-color: var(--color-gray-400);
1634
1656
  }
@@ -2578,6 +2600,9 @@
2578
2600
  .pr-10 {
2579
2601
  padding-right: calc(var(--spacing) * 10);
2580
2602
  }
2603
+ .pb-0 {
2604
+ padding-bottom: calc(var(--spacing) * 0);
2605
+ }
2581
2606
  .pb-2 {
2582
2607
  padding-bottom: calc(var(--spacing) * 2);
2583
2608
  }
@@ -2599,6 +2624,9 @@
2599
2624
  .pb-\[80px\] {
2600
2625
  padding-bottom: 80px;
2601
2626
  }
2627
+ .pb-\[100px\] {
2628
+ padding-bottom: 100px;
2629
+ }
2602
2630
  .pb-\[150px\] {
2603
2631
  padding-bottom: 150px;
2604
2632
  }
@@ -2687,6 +2715,10 @@
2687
2715
  --tw-leading: calc(var(--spacing) * 7);
2688
2716
  line-height: calc(var(--spacing) * 7);
2689
2717
  }
2718
+ .leading-8 {
2719
+ --tw-leading: calc(var(--spacing) * 8);
2720
+ line-height: calc(var(--spacing) * 8);
2721
+ }
2690
2722
  .leading-\[14px\] {
2691
2723
  --tw-leading: 14px;
2692
2724
  line-height: 14px;