analytica-frontend-lib 1.0.56 → 1.0.58

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
@@ -651,6 +651,9 @@
651
651
  .h-12 {
652
652
  height: calc(var(--spacing) * 12);
653
653
  }
654
+ .h-14 {
655
+ height: calc(var(--spacing) * 14);
656
+ }
654
657
  .h-20 {
655
658
  height: calc(var(--spacing) * 20);
656
659
  }
@@ -735,6 +738,9 @@
735
738
  .w-0 {
736
739
  width: calc(var(--spacing) * 0);
737
740
  }
741
+ .w-1 {
742
+ width: calc(var(--spacing) * 1);
743
+ }
738
744
  .w-2 {
739
745
  width: calc(var(--spacing) * 2);
740
746
  }
@@ -894,6 +900,9 @@
894
900
  .min-w-20 {
895
901
  min-width: calc(var(--spacing) * 20);
896
902
  }
903
+ .min-w-\[2\.5rem\] {
904
+ min-width: 2.5rem;
905
+ }
897
906
  .min-w-\[210px\] {
898
907
  min-width: 210px;
899
908
  }
@@ -967,6 +976,11 @@
967
976
  .list-disc {
968
977
  list-style-type: disc;
969
978
  }
979
+ .appearance-none {
980
+ -webkit-appearance: none;
981
+ -moz-appearance: none;
982
+ appearance: none;
983
+ }
970
984
  .grid-cols-1 {
971
985
  grid-template-columns: repeat(1, minmax(0, 1fr));
972
986
  }
@@ -1178,6 +1192,10 @@
1178
1192
  border-bottom-style: var(--tw-border-style);
1179
1193
  border-bottom-width: 2px;
1180
1194
  }
1195
+ .border-b-4 {
1196
+ border-bottom-style: var(--tw-border-style);
1197
+ border-bottom-width: 4px;
1198
+ }
1181
1199
  .border-none {
1182
1200
  --tw-border-style: none;
1183
1201
  border-style: none;
@@ -1336,9 +1354,15 @@
1336
1354
  .bg-blue-500 {
1337
1355
  background-color: var(--color-blue-500);
1338
1356
  }
1357
+ .bg-border-100 {
1358
+ background-color: var(--color-border-100);
1359
+ }
1339
1360
  .bg-border-200 {
1340
1361
  background-color: var(--color-border-200);
1341
1362
  }
1363
+ .bg-current {
1364
+ background-color: currentcolor;
1365
+ }
1342
1366
  .bg-error {
1343
1367
  background-color: var(--color-error);
1344
1368
  }
@@ -2072,6 +2096,10 @@
2072
2096
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2073
2097
  transition-duration: var(--tw-duration, var(--default-transition-duration));
2074
2098
  }
2099
+ .duration-100 {
2100
+ --tw-duration: 100ms;
2101
+ transition-duration: 100ms;
2102
+ }
2075
2103
  .duration-200 {
2076
2104
  --tw-duration: 200ms;
2077
2105
  transition-duration: 200ms;
@@ -2963,6 +2991,11 @@
2963
2991
  background-color: var(--color-success-500);
2964
2992
  }
2965
2993
  }
2994
+ .disabled\:text-text-400 {
2995
+ &:disabled {
2996
+ color: var(--color-text-400);
2997
+ }
2998
+ }
2966
2999
  .disabled\:opacity-40 {
2967
3000
  &:disabled {
2968
3001
  opacity: 40%;