analytica-frontend-lib 1.0.95 → 1.0.96
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/Quiz/index.d.mts +5 -1
- package/dist/Quiz/index.d.ts +5 -1
- package/dist/Quiz/index.js +450 -178
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +445 -170
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/Quiz/useQuizStore/index.d.mts +12 -2
- package/dist/Quiz/useQuizStore/index.d.ts +12 -2
- package/dist/Quiz/useQuizStore/index.js +115 -16
- package/dist/Quiz/useQuizStore/index.js.map +1 -1
- package/dist/Quiz/useQuizStore/index.mjs +114 -16
- package/dist/Quiz/useQuizStore/index.mjs.map +1 -1
- package/dist/Select/index.d.mts +2 -1
- package/dist/Select/index.d.ts +2 -1
- package/dist/Select/index.js +22 -18
- package/dist/Select/index.js.map +1 -1
- package/dist/Select/index.mjs +22 -18
- package/dist/Select/index.mjs.map +1 -1
- package/dist/index.css +12 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +203 -65
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +201 -65
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +12 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -856,6 +856,12 @@
|
|
|
856
856
|
.max-h-32 {
|
|
857
857
|
max-height: calc(var(--spacing) * 32);
|
|
858
858
|
}
|
|
859
|
+
.max-h-\[400px\] {
|
|
860
|
+
max-height: 400px;
|
|
861
|
+
}
|
|
862
|
+
.max-h-\[600px\] {
|
|
863
|
+
max-height: 600px;
|
|
864
|
+
}
|
|
859
865
|
.max-h-none {
|
|
860
866
|
max-height: none;
|
|
861
867
|
}
|
|
@@ -886,6 +892,9 @@
|
|
|
886
892
|
.min-h-\[80px\] {
|
|
887
893
|
min-height: 80px;
|
|
888
894
|
}
|
|
895
|
+
.min-h-\[120px\] {
|
|
896
|
+
min-height: 120px;
|
|
897
|
+
}
|
|
889
898
|
.min-h-\[300px\] {
|
|
890
899
|
min-height: 300px;
|
|
891
900
|
}
|
|
@@ -2759,6 +2768,9 @@
|
|
|
2759
2768
|
.whitespace-nowrap {
|
|
2760
2769
|
white-space: nowrap;
|
|
2761
2770
|
}
|
|
2771
|
+
.whitespace-pre-wrap {
|
|
2772
|
+
white-space: pre-wrap;
|
|
2773
|
+
}
|
|
2762
2774
|
.\!text-primary-950 {
|
|
2763
2775
|
color: var(--color-primary-950) !important;
|
|
2764
2776
|
}
|