analytica-frontend-lib 1.0.81 → 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 (42) hide show
  1. package/dist/Accordation/index.js +76 -130
  2. package/dist/Accordation/index.js.map +1 -1
  3. package/dist/Accordation/index.mjs +76 -130
  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.d.mts +0 -3
  10. package/dist/Card/index.d.ts +0 -3
  11. package/dist/Card/index.js +76 -130
  12. package/dist/Card/index.js.map +1 -1
  13. package/dist/Card/index.mjs +76 -130
  14. package/dist/Card/index.mjs.map +1 -1
  15. package/dist/Modal/index.js +1 -1
  16. package/dist/Modal/index.js.map +1 -1
  17. package/dist/Modal/index.mjs +1 -1
  18. package/dist/Modal/index.mjs.map +1 -1
  19. package/dist/Quiz/index.d.mts +29 -0
  20. package/dist/Quiz/index.d.ts +29 -0
  21. package/dist/Quiz/index.js +3662 -0
  22. package/dist/Quiz/index.js.map +1 -0
  23. package/dist/Quiz/index.mjs +3673 -0
  24. package/dist/Quiz/index.mjs.map +1 -0
  25. package/dist/Quiz/useQuizStore/index.d.mts +108 -0
  26. package/dist/Quiz/useQuizStore/index.d.ts +108 -0
  27. package/dist/Quiz/useQuizStore/index.js +274 -0
  28. package/dist/Quiz/useQuizStore/index.js.map +1 -0
  29. package/dist/Quiz/useQuizStore/index.mjs +249 -0
  30. package/dist/Quiz/useQuizStore/index.mjs.map +1 -0
  31. package/dist/index.css +50 -3
  32. package/dist/index.css.map +1 -1
  33. package/dist/index.d.mts +2 -0
  34. package/dist/index.d.ts +2 -0
  35. package/dist/index.js +733 -132
  36. package/dist/index.js.map +1 -1
  37. package/dist/index.mjs +731 -132
  38. package/dist/index.mjs.map +1 -1
  39. package/dist/simulated-result-QN5HCUY5.png +0 -0
  40. package/dist/styles.css +50 -3
  41. package/dist/styles.css.map +1 -1
  42. package/package.json +2 -1
package/dist/styles.css CHANGED
@@ -532,6 +532,9 @@
532
532
  .bottom-4 {
533
533
  bottom: calc(var(--spacing) * 4);
534
534
  }
535
+ .bottom-15 {
536
+ bottom: calc(var(--spacing) * 15);
537
+ }
535
538
  .bottom-full {
536
539
  bottom: 100%;
537
540
  }
@@ -541,9 +544,6 @@
541
544
  .left-1\/2 {
542
545
  left: calc(1/2 * 100%);
543
546
  }
544
- .left-2 {
545
- left: calc(var(--spacing) * 2);
546
- }
547
547
  .left-3 {
548
548
  left: calc(var(--spacing) * 3);
549
549
  }
@@ -658,6 +658,9 @@
658
658
  .mb-8 {
659
659
  margin-bottom: calc(var(--spacing) * 8);
660
660
  }
661
+ .mb-auto {
662
+ margin-bottom: auto;
663
+ }
661
664
  .ml-2 {
662
665
  margin-left: calc(var(--spacing) * 2);
663
666
  }
@@ -816,6 +819,9 @@
816
819
  .h-\[152px\] {
817
820
  height: 152px;
818
821
  }
822
+ .h-\[calc\(100vh-180px\)\] {
823
+ height: calc(100vh - 180px);
824
+ }
819
825
  .h-auto {
820
826
  height: auto;
821
827
  }
@@ -951,6 +957,9 @@
951
957
  .w-\[200px\] {
952
958
  width: 200px;
953
959
  }
960
+ .w-\[282px\] {
961
+ width: 282px;
962
+ }
954
963
  .w-\[320px\] {
955
964
  width: 320px;
956
965
  }
@@ -1000,6 +1009,9 @@
1000
1009
  .max-w-\[262px\] {
1001
1010
  max-width: 262px;
1002
1011
  }
1012
+ .max-w-\[266px\] {
1013
+ max-width: 266px;
1014
+ }
1003
1015
  .max-w-\[324px\] {
1004
1016
  max-width: 324px;
1005
1017
  }
@@ -2411,6 +2423,10 @@
2411
2423
  .stroke-success-200 {
2412
2424
  stroke: var(--color-success-200);
2413
2425
  }
2426
+ .object-cover {
2427
+ -o-object-fit: cover;
2428
+ object-fit: cover;
2429
+ }
2414
2430
  .p-0 {
2415
2431
  padding: calc(var(--spacing) * 0);
2416
2432
  }
@@ -2519,6 +2535,12 @@
2519
2535
  .pb-9\.5 {
2520
2536
  padding-bottom: calc(var(--spacing) * 9.5);
2521
2537
  }
2538
+ .pb-15 {
2539
+ padding-bottom: calc(var(--spacing) * 15);
2540
+ }
2541
+ .pb-\[80px\] {
2542
+ padding-bottom: 80px;
2543
+ }
2522
2544
  .pl-8 {
2523
2545
  padding-left: calc(var(--spacing) * 8);
2524
2546
  }
@@ -3421,6 +3443,21 @@
3421
3443
  border-radius: var(--radius-xl);
3422
3444
  }
3423
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
+ }
3424
3461
  .group-hover\:text-primary-950 {
3425
3462
  &:is(:where(.group):hover *) {
3426
3463
  @media (hover: hover) {
@@ -7957,6 +7994,11 @@
7957
7994
  height: calc(var(--spacing) * 6);
7958
7995
  }
7959
7996
  }
7997
+ .lg\:max-h-\[687px\] {
7998
+ @media (width >= 64rem) {
7999
+ max-height: 687px;
8000
+ }
8001
+ }
7960
8002
  .lg\:w-3\.5 {
7961
8003
  @media (width >= 64rem) {
7962
8004
  width: calc(var(--spacing) * 3.5);
@@ -7967,6 +8009,11 @@
7967
8009
  width: calc(var(--spacing) * 6);
7968
8010
  }
7969
8011
  }
8012
+ .lg\:max-w-\[1000px\] {
8013
+ @media (width >= 64rem) {
8014
+ max-width: 1000px;
8015
+ }
8016
+ }
7970
8017
  .lg\:max-w-none {
7971
8018
  @media (width >= 64rem) {
7972
8019
  max-width: none;