analytica-frontend-lib 1.0.43 → 1.0.45

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
@@ -27,6 +27,7 @@
27
27
  --color-yellow-500: oklch(79.5% 0.184 86.047);
28
28
  --color-blue-500: oklch(62.3% 0.214 259.815);
29
29
  --color-gray-800: oklch(27.8% 0.033 256.848);
30
+ --color-black: #000;
30
31
  --color-white: #fff;
31
32
  --spacing: 0.25rem;
32
33
  --container-xs: 20rem;
@@ -70,8 +71,10 @@
70
71
  --radius-md: 0.375rem;
71
72
  --radius-lg: 0.5rem;
72
73
  --radius-xl: 0.75rem;
74
+ --radius-3xl: 1.5rem;
73
75
  --radius-4xl: 2rem;
74
76
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
77
+ --blur-xs: 4px;
75
78
  --default-transition-duration: 150ms;
76
79
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
77
80
  --default-font-family: var(--font-sans);
@@ -456,6 +459,9 @@
456
459
  .mx-2 {
457
460
  margin-inline: calc(var(--spacing) * 2);
458
461
  }
462
+ .mx-4 {
463
+ margin-inline: calc(var(--spacing) * 4);
464
+ }
459
465
  .mx-auto {
460
466
  margin-inline: auto;
461
467
  }
@@ -615,12 +621,21 @@
615
621
  .h-\[1em\] {
616
622
  height: 1em;
617
623
  }
624
+ .h-\[19px\] {
625
+ height: 19px;
626
+ }
618
627
  .h-\[21px\] {
619
628
  height: 21px;
620
629
  }
630
+ .h-\[24px\] {
631
+ height: 24px;
632
+ }
621
633
  .h-\[27px\] {
622
634
  height: 27px;
623
635
  }
636
+ .h-\[35px\] {
637
+ height: 35px;
638
+ }
624
639
  .h-\[90px\] {
625
640
  height: 90px;
626
641
  }
@@ -693,12 +708,18 @@
693
708
  .w-\[90px\] {
694
709
  width: 90px;
695
710
  }
711
+ .w-\[131px\] {
712
+ width: 131px;
713
+ }
696
714
  .w-\[152px\] {
697
715
  width: 152px;
698
716
  }
699
717
  .w-\[288px\] {
700
718
  width: 288px;
701
719
  }
720
+ .w-\[380px\] {
721
+ width: 380px;
722
+ }
702
723
  .w-\[384px\] {
703
724
  width: 384px;
704
725
  }
@@ -723,12 +744,27 @@
723
744
  .max-w-\[90px\] {
724
745
  max-width: 90px;
725
746
  }
747
+ .max-w-\[360px\] {
748
+ max-width: 360px;
749
+ }
726
750
  .max-w-\[390px\] {
727
751
  max-width: 390px;
728
752
  }
753
+ .max-w-\[420px\] {
754
+ max-width: 420px;
755
+ }
729
756
  .max-w-\[500px\] {
730
757
  max-width: 500px;
731
758
  }
759
+ .max-w-\[510px\] {
760
+ max-width: 510px;
761
+ }
762
+ .max-w-\[640px\] {
763
+ max-width: 640px;
764
+ }
765
+ .max-w-\[970px\] {
766
+ max-width: 970px;
767
+ }
732
768
  .max-w-lg {
733
769
  max-width: var(--container-lg);
734
770
  }
@@ -856,6 +892,9 @@
856
892
  .justify-center {
857
893
  justify-content: center;
858
894
  }
895
+ .justify-end {
896
+ justify-content: flex-end;
897
+ }
859
898
  .justify-start {
860
899
  justify-content: flex-start;
861
900
  }
@@ -936,6 +975,9 @@
936
975
  .rounded {
937
976
  border-radius: 0.25rem;
938
977
  }
978
+ .rounded-3xl {
979
+ border-radius: var(--radius-3xl);
980
+ }
939
981
  .rounded-4xl {
940
982
  border-radius: var(--radius-4xl);
941
983
  }
@@ -987,6 +1029,10 @@
987
1029
  border-bottom-style: var(--tw-border-style);
988
1030
  border-bottom-width: 1px;
989
1031
  }
1032
+ .border-b-0 {
1033
+ border-bottom-style: var(--tw-border-style);
1034
+ border-bottom-width: 0px;
1035
+ }
990
1036
  .border-b-2 {
991
1037
  border-bottom-style: var(--tw-border-style);
992
1038
  border-bottom-width: 2px;
@@ -1092,9 +1138,6 @@
1092
1138
  .\!bg-primary-50 {
1093
1139
  background-color: var(--color-primary-50) !important;
1094
1140
  }
1095
- .bg-\[\#1c61b2\] {
1096
- background-color: #1c61b2;
1097
- }
1098
1141
  .bg-amber-500 {
1099
1142
  background-color: var(--color-amber-500);
1100
1143
  }
@@ -1116,6 +1159,12 @@
1116
1159
  .bg-background-muted {
1117
1160
  background-color: var(--color-background-muted);
1118
1161
  }
1162
+ .bg-black\/60 {
1163
+ background-color: color-mix(in srgb, #000 60%, transparent);
1164
+ @supports (color: color-mix(in lab, red, red)) {
1165
+ background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
1166
+ }
1167
+ }
1119
1168
  .bg-blue-500 {
1120
1169
  background-color: var(--color-blue-500);
1121
1170
  }
@@ -1233,6 +1282,9 @@
1233
1282
  .p-8 {
1234
1283
  padding: calc(var(--spacing) * 8);
1235
1284
  }
1285
+ .px-0 {
1286
+ padding-inline: calc(var(--spacing) * 0);
1287
+ }
1236
1288
  .px-2 {
1237
1289
  padding-inline: calc(var(--spacing) * 2);
1238
1290
  }
@@ -1272,9 +1324,15 @@
1272
1324
  .py-3\.5 {
1273
1325
  padding-block: calc(var(--spacing) * 3.5);
1274
1326
  }
1327
+ .py-6 {
1328
+ padding-block: calc(var(--spacing) * 6);
1329
+ }
1275
1330
  .pr-10 {
1276
1331
  padding-right: calc(var(--spacing) * 10);
1277
1332
  }
1333
+ .pb-6 {
1334
+ padding-bottom: calc(var(--spacing) * 6);
1335
+ }
1278
1336
  .pl-8 {
1279
1337
  padding-left: calc(var(--spacing) * 8);
1280
1338
  }
@@ -1344,6 +1402,14 @@
1344
1402
  .text-\[8px\] {
1345
1403
  font-size: 8px;
1346
1404
  }
1405
+ .leading-4 {
1406
+ --tw-leading: calc(var(--spacing) * 4);
1407
+ line-height: calc(var(--spacing) * 4);
1408
+ }
1409
+ .leading-6 {
1410
+ --tw-leading: calc(var(--spacing) * 6);
1411
+ line-height: calc(var(--spacing) * 6);
1412
+ }
1347
1413
  .leading-7 {
1348
1414
  --tw-leading: calc(var(--spacing) * 7);
1349
1415
  line-height: calc(var(--spacing) * 7);
@@ -1352,6 +1418,14 @@
1352
1418
  --tw-leading: 9px;
1353
1419
  line-height: 9px;
1354
1420
  }
1421
+ .leading-\[14px\] {
1422
+ --tw-leading: 14px;
1423
+ line-height: 14px;
1424
+ }
1425
+ .leading-\[19px\] {
1426
+ --tw-leading: 19px;
1427
+ line-height: 19px;
1428
+ }
1355
1429
  .leading-\[150\%\] {
1356
1430
  --tw-leading: 150%;
1357
1431
  line-height: 150%;
@@ -1413,8 +1487,8 @@
1413
1487
  .\!text-text-600 {
1414
1488
  color: var(--color-text-600) !important;
1415
1489
  }
1416
- .text-\[\#1c61b2\] {
1417
- color: #1c61b2;
1490
+ .\!text-text-900 {
1491
+ color: var(--color-text-900) !important;
1418
1492
  }
1419
1493
  .text-background-500 {
1420
1494
  color: var(--color-background-500);
@@ -1464,12 +1538,21 @@
1464
1538
  .text-primary-500 {
1465
1539
  color: var(--color-primary-500);
1466
1540
  }
1541
+ .text-primary-600 {
1542
+ color: var(--color-primary-600);
1543
+ }
1467
1544
  .text-primary-700 {
1468
1545
  color: var(--color-primary-700);
1469
1546
  }
1547
+ .text-primary-800 {
1548
+ color: var(--color-primary-800);
1549
+ }
1470
1550
  .text-primary-950 {
1471
1551
  color: var(--color-primary-950);
1472
1552
  }
1553
+ .text-success-200 {
1554
+ color: var(--color-success-200);
1555
+ }
1473
1556
  .text-success-500 {
1474
1557
  color: var(--color-success-500);
1475
1558
  }
@@ -1545,6 +1628,15 @@
1545
1628
  var(--tw-ring-shadow),
1546
1629
  var(--tw-shadow);
1547
1630
  }
1631
+ .shadow-hard-shadow-2 {
1632
+ --tw-shadow: 0px 3px 10px var(--tw-shadow-color, rgba(38, 38, 38, 0.2));
1633
+ box-shadow:
1634
+ var(--tw-inset-shadow),
1635
+ var(--tw-inset-ring-shadow),
1636
+ var(--tw-ring-offset-shadow),
1637
+ var(--tw-ring-shadow),
1638
+ var(--tw-shadow);
1639
+ }
1548
1640
  .shadow-hard-shadow-3 {
1549
1641
  --tw-shadow: 2px 2px 8px var(--tw-shadow-color, rgba(38, 38, 38, 0.2));
1550
1642
  box-shadow:
@@ -1644,6 +1736,11 @@
1644
1736
  .filter {
1645
1737
  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,);
1646
1738
  }
1739
+ .backdrop-blur-xs {
1740
+ --tw-backdrop-blur: blur(var(--blur-xs));
1741
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1742
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1743
+ }
1647
1744
  .transition {
1648
1745
  transition-property:
1649
1746
  color,
@@ -1922,6 +2019,13 @@
1922
2019
  }
1923
2020
  }
1924
2021
  }
2022
+ .hover\:text-text-700 {
2023
+ &:hover {
2024
+ @media (hover: hover) {
2025
+ color: var(--color-text-700);
2026
+ }
2027
+ }
2028
+ }
1925
2029
  .hover\:text-text-950 {
1926
2030
  &:hover {
1927
2031
  @media (hover: hover) {
@@ -1990,6 +2094,11 @@
1990
2094
  var(--tw-shadow);
1991
2095
  }
1992
2096
  }
2097
+ .focus\:ring-indicator-info {
2098
+ &:focus {
2099
+ --tw-ring-color: var(--color-indicator-info);
2100
+ }
2101
+ }
1993
2102
  .focus\:ring-primary-500 {
1994
2103
  &:focus {
1995
2104
  --tw-ring-color: var(--color-primary-500);
@@ -2006,6 +2115,12 @@
2006
2115
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2007
2116
  }
2008
2117
  }
2118
+ .focus\:ring-offset-2 {
2119
+ &:focus {
2120
+ --tw-ring-offset-width: 2px;
2121
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2122
+ }
2123
+ }
2009
2124
  .focus\:outline-primary-950 {
2010
2125
  &:focus {
2011
2126
  outline-color: var(--color-primary-950);
@@ -2710,6 +2825,15 @@
2710
2825
  @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
2711
2826
  @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2712
2827
  @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
2828
+ @property --tw-backdrop-blur { syntax: "*"; inherits: false; }
2829
+ @property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
2830
+ @property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
2831
+ @property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
2832
+ @property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
2833
+ @property --tw-backdrop-invert { syntax: "*"; inherits: false; }
2834
+ @property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
2835
+ @property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
2836
+ @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
2713
2837
  @property --tw-duration { syntax: "*"; inherits: false; }
2714
2838
  @property --tw-ease { syntax: "*"; inherits: false; }
2715
2839
  @layer properties {
@@ -2759,6 +2883,15 @@
2759
2883
  --tw-drop-shadow-color: initial;
2760
2884
  --tw-drop-shadow-alpha: 100%;
2761
2885
  --tw-drop-shadow-size: initial;
2886
+ --tw-backdrop-blur: initial;
2887
+ --tw-backdrop-brightness: initial;
2888
+ --tw-backdrop-contrast: initial;
2889
+ --tw-backdrop-grayscale: initial;
2890
+ --tw-backdrop-hue-rotate: initial;
2891
+ --tw-backdrop-invert: initial;
2892
+ --tw-backdrop-opacity: initial;
2893
+ --tw-backdrop-saturate: initial;
2894
+ --tw-backdrop-sepia: initial;
2762
2895
  --tw-duration: initial;
2763
2896
  --tw-ease: initial;
2764
2897
  }