analytica-frontend-lib 1.0.36 → 1.0.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
@@ -26,9 +26,12 @@
26
26
  --color-gray-800: oklch(27.8% 0.033 256.848);
27
27
  --color-white: #fff;
28
28
  --spacing: 0.25rem;
29
+ --container-xs: 20rem;
29
30
  --container-md: 28rem;
30
31
  --container-lg: 32rem;
32
+ --container-2xl: 42rem;
31
33
  --container-4xl: 56rem;
34
+ --container-6xl: 72rem;
32
35
  --text-xs: 0.75rem;
33
36
  --text-xs--line-height: calc(1 / 0.75);
34
37
  --text-sm: 0.875rem;
@@ -56,6 +59,7 @@
56
59
  --font-weight-bold: 700;
57
60
  --font-weight-extrabold: 800;
58
61
  --font-weight-black: 900;
62
+ --tracking-wide: 0.025em;
59
63
  --leading-normal: 1.5;
60
64
  --radius-xs: 0.125rem;
61
65
  --radius-sm: 0.25rem;
@@ -416,6 +420,9 @@
416
420
  .left-4 {
417
421
  left: calc(var(--spacing) * 4);
418
422
  }
423
+ .z-10 {
424
+ z-index: 10;
425
+ }
419
426
  .z-50 {
420
427
  z-index: 50;
421
428
  }
@@ -440,6 +447,9 @@
440
447
  .mx-2 {
441
448
  margin-inline: calc(var(--spacing) * 2);
442
449
  }
450
+ .mx-auto {
451
+ margin-inline: auto;
452
+ }
443
453
  .my-1 {
444
454
  margin-block: calc(var(--spacing) * 1);
445
455
  }
@@ -464,6 +474,9 @@
464
474
  .mt-4 {
465
475
  margin-top: calc(var(--spacing) * 4);
466
476
  }
477
+ .mt-8 {
478
+ margin-top: calc(var(--spacing) * 8);
479
+ }
467
480
  .mt-12 {
468
481
  margin-top: calc(var(--spacing) * 12);
469
482
  }
@@ -473,6 +486,9 @@
473
486
  .mb-0\.5 {
474
487
  margin-bottom: calc(var(--spacing) * 0.5);
475
488
  }
489
+ .mb-1 {
490
+ margin-bottom: calc(var(--spacing) * 1);
491
+ }
476
492
  .mb-1\.5 {
477
493
  margin-bottom: calc(var(--spacing) * 1.5);
478
494
  }
@@ -539,6 +555,9 @@
539
555
  width: calc(var(--spacing) * 16);
540
556
  height: calc(var(--spacing) * 16);
541
557
  }
558
+ .h-0 {
559
+ height: calc(var(--spacing) * 0);
560
+ }
542
561
  .h-1 {
543
562
  height: calc(var(--spacing) * 1);
544
563
  }
@@ -593,12 +612,30 @@
593
612
  .h-\[27px\] {
594
613
  height: 27px;
595
614
  }
615
+ .h-\[90px\] {
616
+ height: 90px;
617
+ }
618
+ .h-\[152px\] {
619
+ height: 152px;
620
+ }
596
621
  .h-full {
597
622
  height: 100%;
598
623
  }
599
624
  .h-px {
600
625
  height: 1px;
601
626
  }
627
+ .min-h-\[300px\] {
628
+ min-height: 300px;
629
+ }
630
+ .min-h-\[400px\] {
631
+ min-height: 400px;
632
+ }
633
+ .min-h-\[600px\] {
634
+ min-height: 600px;
635
+ }
636
+ .w-0 {
637
+ width: calc(var(--spacing) * 0);
638
+ }
602
639
  .w-1\.5 {
603
640
  width: calc(var(--spacing) * 1.5);
604
641
  }
@@ -641,6 +678,12 @@
641
678
  .w-\[70px\] {
642
679
  width: 70px;
643
680
  }
681
+ .w-\[90px\] {
682
+ width: 90px;
683
+ }
684
+ .w-\[152px\] {
685
+ width: 152px;
686
+ }
644
687
  .w-\[288px\] {
645
688
  width: 288px;
646
689
  }
@@ -653,9 +696,15 @@
653
696
  .w-px {
654
697
  width: 1px;
655
698
  }
699
+ .max-w-2xl {
700
+ max-width: var(--container-2xl);
701
+ }
656
702
  .max-w-4xl {
657
703
  max-width: var(--container-4xl);
658
704
  }
705
+ .max-w-6xl {
706
+ max-width: var(--container-6xl);
707
+ }
659
708
  .max-w-\[390px\] {
660
709
  max-width: 390px;
661
710
  }
@@ -665,6 +714,9 @@
665
714
  .max-w-md {
666
715
  max-width: var(--container-md);
667
716
  }
717
+ .max-w-xs {
718
+ max-width: var(--container-xs);
719
+ }
668
720
  .min-w-\[210px\] {
669
721
  min-width: 210px;
670
722
  }
@@ -702,6 +754,9 @@
702
754
  --tw-translate-y: calc(var(--spacing) * 1);
703
755
  translate: var(--tw-translate-x) var(--tw-translate-y);
704
756
  }
757
+ .-rotate-90 {
758
+ rotate: calc(90deg * -1);
759
+ }
705
760
  .rotate-180 {
706
761
  rotate: 180deg;
707
762
  }
@@ -720,9 +775,21 @@
720
775
  .resize-none {
721
776
  resize: none;
722
777
  }
778
+ .list-inside {
779
+ list-style-position: inside;
780
+ }
781
+ .list-disc {
782
+ list-style-type: disc;
783
+ }
784
+ .grid-cols-1 {
785
+ grid-template-columns: repeat(1, minmax(0, 1fr));
786
+ }
723
787
  .grid-cols-2 {
724
788
  grid-template-columns: repeat(2, minmax(0, 1fr));
725
789
  }
790
+ .grid-cols-3 {
791
+ grid-template-columns: repeat(3, minmax(0, 1fr));
792
+ }
726
793
  .flex-col {
727
794
  flex-direction: column;
728
795
  }
@@ -741,6 +808,9 @@
741
808
  .items-start {
742
809
  align-items: flex-start;
743
810
  }
811
+ .justify-around {
812
+ justify-content: space-around;
813
+ }
744
814
  .justify-between {
745
815
  justify-content: space-between;
746
816
  }
@@ -777,6 +847,9 @@
777
847
  .gap-12 {
778
848
  gap: calc(var(--spacing) * 12);
779
849
  }
850
+ .gap-16 {
851
+ gap: calc(var(--spacing) * 16);
852
+ }
780
853
  .space-y-2 {
781
854
  :where(& > :not(:last-child)) {
782
855
  --tw-space-y-reverse: 0;
@@ -1026,6 +1099,18 @@
1026
1099
  .bg-white {
1027
1100
  background-color: var(--color-white);
1028
1101
  }
1102
+ .stroke-background-300 {
1103
+ stroke: var(--color-background-300);
1104
+ }
1105
+ .stroke-primary-100 {
1106
+ stroke: var(--color-primary-100);
1107
+ }
1108
+ .stroke-primary-700 {
1109
+ stroke: var(--color-primary-700);
1110
+ }
1111
+ .stroke-success-200 {
1112
+ stroke: var(--color-success-200);
1113
+ }
1029
1114
  .p-0 {
1030
1115
  padding: calc(var(--spacing) * 0);
1031
1116
  }
@@ -1155,6 +1240,10 @@
1155
1240
  font-size: var(--text-xs);
1156
1241
  line-height: var(--tw-leading, var(--text-xs--line-height));
1157
1242
  }
1243
+ .leading-7 {
1244
+ --tw-leading: calc(var(--spacing) * 7);
1245
+ line-height: calc(var(--spacing) * 7);
1246
+ }
1158
1247
  .leading-\[150\%\] {
1159
1248
  --tw-leading: 150%;
1160
1249
  line-height: 150%;
@@ -1195,6 +1284,10 @@
1195
1284
  --tw-font-weight: var(--font-weight-semibold);
1196
1285
  font-weight: var(--font-weight-semibold);
1197
1286
  }
1287
+ .tracking-wide {
1288
+ --tw-tracking: var(--tracking-wide);
1289
+ letter-spacing: var(--tracking-wide);
1290
+ }
1198
1291
  .whitespace-nowrap {
1199
1292
  white-space: nowrap;
1200
1293
  }
@@ -1249,6 +1342,9 @@
1249
1342
  .text-primary-500 {
1250
1343
  color: var(--color-primary-500);
1251
1344
  }
1345
+ .text-primary-700 {
1346
+ color: var(--color-primary-700);
1347
+ }
1252
1348
  .text-primary-950 {
1253
1349
  color: var(--color-primary-950);
1254
1350
  }
@@ -1300,6 +1396,9 @@
1300
1396
  .capitalize {
1301
1397
  text-transform: capitalize;
1302
1398
  }
1399
+ .uppercase {
1400
+ text-transform: uppercase;
1401
+ }
1303
1402
  .italic {
1304
1403
  font-style: italic;
1305
1404
  }
@@ -1312,6 +1411,15 @@
1312
1411
  .opacity-50 {
1313
1412
  opacity: 50%;
1314
1413
  }
1414
+ .shadow {
1415
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1416
+ box-shadow:
1417
+ var(--tw-inset-shadow),
1418
+ var(--tw-inset-ring-shadow),
1419
+ var(--tw-ring-offset-shadow),
1420
+ var(--tw-ring-shadow),
1421
+ var(--tw-shadow);
1422
+ }
1315
1423
  .shadow-hard-shadow-3 {
1316
1424
  --tw-shadow: 2px 2px 8px var(--tw-shadow-color, rgba(38, 38, 38, 0.2));
1317
1425
  box-shadow:
@@ -1357,6 +1465,24 @@
1357
1465
  var(--tw-ring-shadow),
1358
1466
  var(--tw-shadow);
1359
1467
  }
1468
+ .shadow-soft-shadow-2 {
1469
+ --tw-shadow: 0px 0px 20px var(--tw-shadow-color, rgba(38, 38, 38, 0.1));
1470
+ box-shadow:
1471
+ var(--tw-inset-shadow),
1472
+ var(--tw-inset-ring-shadow),
1473
+ var(--tw-ring-offset-shadow),
1474
+ var(--tw-ring-shadow),
1475
+ var(--tw-shadow);
1476
+ }
1477
+ .shadow-soft-shadow-3 {
1478
+ --tw-shadow: 0px 0px 30px var(--tw-shadow-color, rgba(38, 38, 38, 0.1));
1479
+ box-shadow:
1480
+ var(--tw-inset-shadow),
1481
+ var(--tw-inset-ring-shadow),
1482
+ var(--tw-ring-offset-shadow),
1483
+ var(--tw-ring-shadow),
1484
+ var(--tw-shadow);
1485
+ }
1360
1486
  .ring-2 {
1361
1487
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1362
1488
  box-shadow:
@@ -1393,6 +1519,35 @@
1393
1519
  .filter {
1394
1520
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
1395
1521
  }
1522
+ .transition {
1523
+ transition-property:
1524
+ color,
1525
+ background-color,
1526
+ border-color,
1527
+ outline-color,
1528
+ text-decoration-color,
1529
+ fill,
1530
+ stroke,
1531
+ --tw-gradient-from,
1532
+ --tw-gradient-via,
1533
+ --tw-gradient-to,
1534
+ opacity,
1535
+ box-shadow,
1536
+ transform,
1537
+ translate,
1538
+ scale,
1539
+ rotate,
1540
+ filter,
1541
+ -webkit-backdrop-filter,
1542
+ backdrop-filter,
1543
+ display,
1544
+ visibility,
1545
+ content-visibility,
1546
+ overlay,
1547
+ pointer-events;
1548
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1549
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1550
+ }
1396
1551
  .transition-all {
1397
1552
  transition-property: all;
1398
1553
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -1435,6 +1590,10 @@
1435
1590
  --tw-duration: 300ms;
1436
1591
  transition-duration: 300ms;
1437
1592
  }
1593
+ .duration-500 {
1594
+ --tw-duration: 500ms;
1595
+ transition-duration: 500ms;
1596
+ }
1438
1597
  .ease-out {
1439
1598
  --tw-ease: var(--ease-out);
1440
1599
  transition-timing-function: var(--ease-out);
@@ -1900,6 +2059,21 @@
1900
2059
  opacity: 50%;
1901
2060
  }
1902
2061
  }
2062
+ .md\:grid-cols-2 {
2063
+ @media (width >= 48rem) {
2064
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2065
+ }
2066
+ }
2067
+ .lg\:grid-cols-4 {
2068
+ @media (width >= 64rem) {
2069
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2070
+ }
2071
+ }
2072
+ .lg\:flex-row {
2073
+ @media (width >= 64rem) {
2074
+ flex-direction: row;
2075
+ }
2076
+ }
1903
2077
  .\[\&_tr\:first-child\]\:border-0 {
1904
2078
  & tr:first-child {
1905
2079
  border-style: var(--tw-border-style);
@@ -2285,6 +2459,7 @@
2285
2459
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
2286
2460
  @property --tw-leading { syntax: "*"; inherits: false; }
2287
2461
  @property --tw-font-weight { syntax: "*"; inherits: false; }
2462
+ @property --tw-tracking { syntax: "*"; inherits: false; }
2288
2463
  @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2289
2464
  @property --tw-shadow-color { syntax: "*"; inherits: false; }
2290
2465
  @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@@ -2333,6 +2508,7 @@
2333
2508
  --tw-border-style: solid;
2334
2509
  --tw-leading: initial;
2335
2510
  --tw-font-weight: initial;
2511
+ --tw-tracking: initial;
2336
2512
  --tw-shadow: 0 0 #0000;
2337
2513
  --tw-shadow-color: initial;
2338
2514
  --tw-shadow-alpha: 100%;