analytica-frontend-lib 1.0.68 → 1.0.70

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/index.css CHANGED
@@ -497,6 +497,9 @@
497
497
  .right-\[10px\] {
498
498
  right: 10px;
499
499
  }
500
+ .bottom-0 {
501
+ bottom: calc(var(--spacing) * 0);
502
+ }
500
503
  .bottom-4 {
501
504
  bottom: calc(var(--spacing) * 4);
502
505
  }
@@ -509,18 +512,27 @@
509
512
  .left-1\/2 {
510
513
  left: calc(1/2 * 100%);
511
514
  }
515
+ .left-2 {
516
+ left: calc(var(--spacing) * 2);
517
+ }
512
518
  .left-3 {
513
519
  left: calc(var(--spacing) * 3);
514
520
  }
515
521
  .left-4 {
516
522
  left: calc(var(--spacing) * 4);
517
523
  }
524
+ .isolate {
525
+ isolation: isolate;
526
+ }
518
527
  .z-10 {
519
528
  z-index: 10;
520
529
  }
521
530
  .z-50 {
522
531
  z-index: 50;
523
532
  }
533
+ .z-\[2\] {
534
+ z-index: 2;
535
+ }
524
536
  .container {
525
537
  width: 100%;
526
538
  @media (width >= 40rem) {
@@ -805,6 +817,9 @@
805
817
  .min-h-\[80px\] {
806
818
  min-height: 80px;
807
819
  }
820
+ .min-h-\[200px\] {
821
+ min-height: 200px;
822
+ }
808
823
  .min-h-\[300px\] {
809
824
  min-height: 300px;
810
825
  }
@@ -814,6 +829,9 @@
814
829
  .min-h-\[600px\] {
815
830
  min-height: 600px;
816
831
  }
832
+ .min-h-screen {
833
+ min-height: 100vh;
834
+ }
817
835
  .w-0 {
818
836
  width: calc(var(--spacing) * 0);
819
837
  }
@@ -868,12 +886,24 @@
868
886
  .w-\[58px\] {
869
887
  width: 58px;
870
888
  }
889
+ .w-\[70px\] {
890
+ width: 70px;
891
+ }
892
+ .w-\[80px\] {
893
+ width: 80px;
894
+ }
871
895
  .w-\[90px\] {
872
896
  width: 90px;
873
897
  }
898
+ .w-\[100px\] {
899
+ width: 100px;
900
+ }
874
901
  .w-\[110px\] {
875
902
  width: 110px;
876
903
  }
904
+ .w-\[115px\] {
905
+ width: 115px;
906
+ }
877
907
  .w-\[131px\] {
878
908
  width: 131px;
879
909
  }
@@ -886,6 +916,9 @@
886
916
  .w-\[200px\] {
887
917
  width: 200px;
888
918
  }
919
+ .w-\[240px\] {
920
+ width: 240px;
921
+ }
889
922
  .w-\[320px\] {
890
923
  width: 320px;
891
924
  }
@@ -1333,6 +1366,10 @@
1333
1366
  border-bottom-style: var(--tw-border-style);
1334
1367
  border-bottom-width: 2px;
1335
1368
  }
1369
+ .border-dashed {
1370
+ --tw-border-style: dashed;
1371
+ border-style: dashed;
1372
+ }
1336
1373
  .border-none {
1337
1374
  --tw-border-style: none;
1338
1375
  border-style: none;
@@ -2478,6 +2515,10 @@
2478
2515
  --tw-font-weight: var(--font-weight-semibold);
2479
2516
  font-weight: var(--font-weight-semibold);
2480
2517
  }
2518
+ .tracking-\[0\.2px\] {
2519
+ --tw-tracking: 0.2px;
2520
+ letter-spacing: 0.2px;
2521
+ }
2481
2522
  .tracking-normal {
2482
2523
  --tw-tracking: var(--tracking-normal);
2483
2524
  letter-spacing: var(--tracking-normal);
@@ -7345,6 +7386,11 @@
7345
7386
  --tw-ring-color: var(--color-indicator-info);
7346
7387
  }
7347
7388
  }
7389
+ .focus-visible\:ring-primary-500 {
7390
+ &:focus-visible {
7391
+ --tw-ring-color: var(--color-primary-500);
7392
+ }
7393
+ }
7348
7394
  .focus-visible\:ring-primary-600 {
7349
7395
  &:focus-visible {
7350
7396
  --tw-ring-color: var(--color-primary-600);
@@ -7356,6 +7402,12 @@
7356
7402
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
7357
7403
  }
7358
7404
  }
7405
+ .focus-visible\:ring-offset-2 {
7406
+ &:focus-visible {
7407
+ --tw-ring-offset-width: 2px;
7408
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
7409
+ }
7410
+ }
7359
7411
  .focus-visible\:outline-none {
7360
7412
  &:focus-visible {
7361
7413
  --tw-outline-style: none;
@@ -7495,6 +7547,16 @@
7495
7547
  opacity: 50%;
7496
7548
  }
7497
7549
  }
7550
+ .sm\:hidden {
7551
+ @media (width >= 40rem) {
7552
+ display: none;
7553
+ }
7554
+ }
7555
+ .sm\:inline {
7556
+ @media (width >= 40rem) {
7557
+ display: inline;
7558
+ }
7559
+ }
7498
7560
  .sm\:h-3 {
7499
7561
  @media (width >= 40rem) {
7500
7562
  height: calc(var(--spacing) * 3);
@@ -7520,6 +7582,31 @@
7520
7582
  width: calc(var(--spacing) * 5);
7521
7583
  }
7522
7584
  }
7585
+ .sm\:w-\[120px\] {
7586
+ @media (width >= 40rem) {
7587
+ width: 120px;
7588
+ }
7589
+ }
7590
+ .sm\:w-\[140px\] {
7591
+ @media (width >= 40rem) {
7592
+ width: 140px;
7593
+ }
7594
+ }
7595
+ .sm\:w-\[160px\] {
7596
+ @media (width >= 40rem) {
7597
+ width: 160px;
7598
+ }
7599
+ }
7600
+ .sm\:w-\[204px\] {
7601
+ @media (width >= 40rem) {
7602
+ width: 204px;
7603
+ }
7604
+ }
7605
+ .sm\:w-\[416px\] {
7606
+ @media (width >= 40rem) {
7607
+ width: 416px;
7608
+ }
7609
+ }
7523
7610
  .sm\:w-auto {
7524
7611
  @media (width >= 40rem) {
7525
7612
  width: auto;