analytica-frontend-lib 1.1.35 → 1.1.37

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
@@ -820,6 +820,9 @@
820
820
  .h-14 {
821
821
  height: calc(var(--spacing) * 14);
822
822
  }
823
+ .h-16 {
824
+ height: calc(var(--spacing) * 16);
825
+ }
823
826
  .h-20 {
824
827
  height: calc(var(--spacing) * 20);
825
828
  }
@@ -895,12 +898,21 @@
895
898
  .max-h-32 {
896
899
  max-height: calc(var(--spacing) * 32);
897
900
  }
901
+ .max-h-\[80vh\] {
902
+ max-height: 80vh;
903
+ }
898
904
  .max-h-\[300px\] {
899
905
  max-height: 300px;
900
906
  }
907
+ .max-h-\[350px\] {
908
+ max-height: 350px;
909
+ }
901
910
  .max-h-\[400px\] {
902
911
  max-height: 400px;
903
912
  }
913
+ .max-h-\[500px\] {
914
+ max-height: 500px;
915
+ }
904
916
  .max-h-\[600px\] {
905
917
  max-height: 600px;
906
918
  }
@@ -910,6 +922,9 @@
910
922
  .max-h-screen {
911
923
  max-height: 100vh;
912
924
  }
925
+ .min-h-0 {
926
+ min-height: calc(var(--spacing) * 0);
927
+ }
913
928
  .min-h-6 {
914
929
  min-height: calc(var(--spacing) * 6);
915
930
  }
@@ -994,6 +1009,9 @@
994
1009
  .w-11 {
995
1010
  width: calc(var(--spacing) * 11);
996
1011
  }
1012
+ .w-16 {
1013
+ width: calc(var(--spacing) * 16);
1014
+ }
997
1015
  .w-20 {
998
1016
  width: calc(var(--spacing) * 20);
999
1017
  }
@@ -1088,6 +1106,9 @@
1088
1106
  .max-w-\[266px\] {
1089
1107
  max-width: 266px;
1090
1108
  }
1109
+ .max-w-\[316px\] {
1110
+ max-width: 316px;
1111
+ }
1091
1112
  .max-w-\[324px\] {
1092
1113
  max-width: 324px;
1093
1114
  }
@@ -1103,6 +1124,9 @@
1103
1124
  .max-w-\[390px\] {
1104
1125
  max-width: 390px;
1105
1126
  }
1127
+ .max-w-\[400px\] {
1128
+ max-width: 400px;
1129
+ }
1106
1130
  .max-w-\[420px\] {
1107
1131
  max-width: 420px;
1108
1132
  }
@@ -2914,6 +2938,10 @@
2914
2938
  --tw-leading: 21px;
2915
2939
  line-height: 21px;
2916
2940
  }
2941
+ .leading-\[23px\] {
2942
+ --tw-leading: 23px;
2943
+ line-height: 23px;
2944
+ }
2917
2945
  .leading-\[150\%\] {
2918
2946
  --tw-leading: 150%;
2919
2947
  line-height: 150%;
@@ -3484,6 +3512,9 @@
3484
3512
  .capitalize {
3485
3513
  text-transform: capitalize;
3486
3514
  }
3515
+ .lowercase {
3516
+ text-transform: lowercase;
3517
+ }
3487
3518
  .uppercase {
3488
3519
  text-transform: uppercase;
3489
3520
  }