analytica-frontend-lib 1.0.82 → 1.0.84

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 +52 -0
  18. package/dist/Quiz/index.d.ts +52 -0
  19. package/dist/Quiz/index.js +4185 -0
  20. package/dist/Quiz/index.js.map +1 -0
  21. package/dist/Quiz/index.mjs +4191 -0
  22. package/dist/Quiz/index.mjs.map +1 -0
  23. package/dist/Quiz/useQuizStore/index.d.mts +140 -0
  24. package/dist/Quiz/useQuizStore/index.d.ts +140 -0
  25. package/dist/Quiz/useQuizStore/index.js +395 -0
  26. package/dist/Quiz/useQuizStore/index.js.map +1 -0
  27. package/dist/Quiz/useQuizStore/index.mjs +367 -0
  28. package/dist/Quiz/useQuizStore/index.mjs.map +1 -0
  29. package/dist/index.css +59 -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 +1008 -4
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.mjs +1003 -4
  36. package/dist/index.mjs.map +1 -1
  37. package/dist/simulated-result-QN5HCUY5.png +0 -0
  38. package/dist/styles.css +59 -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
  }
@@ -2417,6 +2439,9 @@
2417
2439
  .p-3 {
2418
2440
  padding: calc(var(--spacing) * 3);
2419
2441
  }
2442
+ .p-3\.5 {
2443
+ padding: calc(var(--spacing) * 3.5);
2444
+ }
2420
2445
  .p-4 {
2421
2446
  padding: calc(var(--spacing) * 4);
2422
2447
  }
@@ -2498,6 +2523,9 @@
2498
2523
  .pr-10 {
2499
2524
  padding-right: calc(var(--spacing) * 10);
2500
2525
  }
2526
+ .\!pb-\[150px\] {
2527
+ padding-bottom: 150px !important;
2528
+ }
2501
2529
  .pb-2 {
2502
2530
  padding-bottom: calc(var(--spacing) * 2);
2503
2531
  }
@@ -2513,6 +2541,12 @@
2513
2541
  .pb-9\.5 {
2514
2542
  padding-bottom: calc(var(--spacing) * 9.5);
2515
2543
  }
2544
+ .pb-15 {
2545
+ padding-bottom: calc(var(--spacing) * 15);
2546
+ }
2547
+ .pb-\[80px\] {
2548
+ padding-bottom: 80px;
2549
+ }
2516
2550
  .pl-8 {
2517
2551
  padding-left: calc(var(--spacing) * 8);
2518
2552
  }
@@ -3415,6 +3449,21 @@
3415
3449
  border-radius: var(--radius-xl);
3416
3450
  }
3417
3451
  }
3452
+ .not-lg\:h-\[calc\(100vh-200px\)\] {
3453
+ @media not (width >= 64rem) {
3454
+ height: calc(100vh - 200px);
3455
+ }
3456
+ }
3457
+ .not-lg\:max-w-\[calc\(100vw-32px\)\] {
3458
+ @media not (width >= 64rem) {
3459
+ max-width: calc(100vw - 32px);
3460
+ }
3461
+ }
3462
+ .not-lg\:px-6 {
3463
+ @media not (width >= 64rem) {
3464
+ padding-inline: calc(var(--spacing) * 6);
3465
+ }
3466
+ }
3418
3467
  .group-hover\:text-primary-950 {
3419
3468
  &:is(:where(.group):hover *) {
3420
3469
  @media (hover: hover) {
@@ -7951,6 +8000,11 @@
7951
8000
  height: calc(var(--spacing) * 6);
7952
8001
  }
7953
8002
  }
8003
+ .lg\:max-h-\[687px\] {
8004
+ @media (width >= 64rem) {
8005
+ max-height: 687px;
8006
+ }
8007
+ }
7954
8008
  .lg\:w-3\.5 {
7955
8009
  @media (width >= 64rem) {
7956
8010
  width: calc(var(--spacing) * 3.5);
@@ -7961,6 +8015,11 @@
7961
8015
  width: calc(var(--spacing) * 6);
7962
8016
  }
7963
8017
  }
8018
+ .lg\:max-w-\[1000px\] {
8019
+ @media (width >= 64rem) {
8020
+ max-width: 1000px;
8021
+ }
8022
+ }
7964
8023
  .lg\:max-w-none {
7965
8024
  @media (width >= 64rem) {
7966
8025
  max-width: none;