analytica-frontend-lib 1.0.82 → 1.0.83

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.
Files changed (40) hide show
  1. package/dist/Accordation/index.js +2 -2
  2. package/dist/Accordation/index.js.map +1 -1
  3. package/dist/Accordation/index.mjs +2 -2
  4. package/dist/Accordation/index.mjs.map +1 -1
  5. package/dist/AlertDialog/index.js +1 -1
  6. package/dist/AlertDialog/index.js.map +1 -1
  7. package/dist/AlertDialog/index.mjs +1 -1
  8. package/dist/AlertDialog/index.mjs.map +1 -1
  9. package/dist/Card/index.js +2 -2
  10. package/dist/Card/index.js.map +1 -1
  11. package/dist/Card/index.mjs +2 -2
  12. package/dist/Card/index.mjs.map +1 -1
  13. package/dist/Modal/index.js +1 -1
  14. package/dist/Modal/index.js.map +1 -1
  15. package/dist/Modal/index.mjs +1 -1
  16. package/dist/Modal/index.mjs.map +1 -1
  17. package/dist/Quiz/index.d.mts +29 -0
  18. package/dist/Quiz/index.d.ts +29 -0
  19. package/dist/Quiz/index.js +3662 -0
  20. package/dist/Quiz/index.js.map +1 -0
  21. package/dist/Quiz/index.mjs +3673 -0
  22. package/dist/Quiz/index.mjs.map +1 -0
  23. package/dist/Quiz/useQuizStore/index.d.mts +108 -0
  24. package/dist/Quiz/useQuizStore/index.d.ts +108 -0
  25. package/dist/Quiz/useQuizStore/index.js +274 -0
  26. package/dist/Quiz/useQuizStore/index.js.map +1 -0
  27. package/dist/Quiz/useQuizStore/index.mjs +249 -0
  28. package/dist/Quiz/useQuizStore/index.mjs.map +1 -0
  29. package/dist/index.css +53 -0
  30. package/dist/index.css.map +1 -1
  31. package/dist/index.d.mts +2 -0
  32. package/dist/index.d.ts +2 -0
  33. package/dist/index.js +659 -4
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.mjs +657 -4
  36. package/dist/index.mjs.map +1 -1
  37. package/dist/simulated-result-QN5HCUY5.png +0 -0
  38. package/dist/styles.css +53 -0
  39. package/dist/styles.css.map +1 -1
  40. package/package.json +2 -1
package/dist/styles.css CHANGED
@@ -526,9 +526,15 @@
526
526
  .right-\[10px\] {
527
527
  right: 10px;
528
528
  }
529
+ .bottom-0 {
530
+ bottom: calc(var(--spacing) * 0);
531
+ }
529
532
  .bottom-4 {
530
533
  bottom: calc(var(--spacing) * 4);
531
534
  }
535
+ .bottom-15 {
536
+ bottom: calc(var(--spacing) * 15);
537
+ }
532
538
  .bottom-full {
533
539
  bottom: 100%;
534
540
  }
@@ -652,6 +658,9 @@
652
658
  .mb-8 {
653
659
  margin-bottom: calc(var(--spacing) * 8);
654
660
  }
661
+ .mb-auto {
662
+ margin-bottom: auto;
663
+ }
655
664
  .ml-2 {
656
665
  margin-left: calc(var(--spacing) * 2);
657
666
  }
@@ -810,6 +819,9 @@
810
819
  .h-\[152px\] {
811
820
  height: 152px;
812
821
  }
822
+ .h-\[calc\(100vh-180px\)\] {
823
+ height: calc(100vh - 180px);
824
+ }
813
825
  .h-auto {
814
826
  height: auto;
815
827
  }
@@ -945,6 +957,9 @@
945
957
  .w-\[200px\] {
946
958
  width: 200px;
947
959
  }
960
+ .w-\[282px\] {
961
+ width: 282px;
962
+ }
948
963
  .w-\[320px\] {
949
964
  width: 320px;
950
965
  }
@@ -994,6 +1009,9 @@
994
1009
  .max-w-\[262px\] {
995
1010
  max-width: 262px;
996
1011
  }
1012
+ .max-w-\[266px\] {
1013
+ max-width: 266px;
1014
+ }
997
1015
  .max-w-\[324px\] {
998
1016
  max-width: 324px;
999
1017
  }
@@ -2405,6 +2423,10 @@
2405
2423
  .stroke-success-200 {
2406
2424
  stroke: var(--color-success-200);
2407
2425
  }
2426
+ .object-cover {
2427
+ -o-object-fit: cover;
2428
+ object-fit: cover;
2429
+ }
2408
2430
  .p-0 {
2409
2431
  padding: calc(var(--spacing) * 0);
2410
2432
  }
@@ -2513,6 +2535,12 @@
2513
2535
  .pb-9\.5 {
2514
2536
  padding-bottom: calc(var(--spacing) * 9.5);
2515
2537
  }
2538
+ .pb-15 {
2539
+ padding-bottom: calc(var(--spacing) * 15);
2540
+ }
2541
+ .pb-\[80px\] {
2542
+ padding-bottom: 80px;
2543
+ }
2516
2544
  .pl-8 {
2517
2545
  padding-left: calc(var(--spacing) * 8);
2518
2546
  }
@@ -3415,6 +3443,21 @@
3415
3443
  border-radius: var(--radius-xl);
3416
3444
  }
3417
3445
  }
3446
+ .not-lg\:h-\[calc\(100vh-200px\)\] {
3447
+ @media not (width >= 64rem) {
3448
+ height: calc(100vh - 200px);
3449
+ }
3450
+ }
3451
+ .not-lg\:max-w-\[calc\(100vw-32px\)\] {
3452
+ @media not (width >= 64rem) {
3453
+ max-width: calc(100vw - 32px);
3454
+ }
3455
+ }
3456
+ .not-lg\:px-6 {
3457
+ @media not (width >= 64rem) {
3458
+ padding-inline: calc(var(--spacing) * 6);
3459
+ }
3460
+ }
3418
3461
  .group-hover\:text-primary-950 {
3419
3462
  &:is(:where(.group):hover *) {
3420
3463
  @media (hover: hover) {
@@ -7951,6 +7994,11 @@
7951
7994
  height: calc(var(--spacing) * 6);
7952
7995
  }
7953
7996
  }
7997
+ .lg\:max-h-\[687px\] {
7998
+ @media (width >= 64rem) {
7999
+ max-height: 687px;
8000
+ }
8001
+ }
7954
8002
  .lg\:w-3\.5 {
7955
8003
  @media (width >= 64rem) {
7956
8004
  width: calc(var(--spacing) * 3.5);
@@ -7961,6 +8009,11 @@
7961
8009
  width: calc(var(--spacing) * 6);
7962
8010
  }
7963
8011
  }
8012
+ .lg\:max-w-\[1000px\] {
8013
+ @media (width >= 64rem) {
8014
+ max-width: 1000px;
8015
+ }
8016
+ }
7964
8017
  .lg\:max-w-none {
7965
8018
  @media (width >= 64rem) {
7966
8019
  max-width: none;