analytica-frontend-lib 1.1.13 → 1.1.15
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/Accordation/index.js +41 -7
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +41 -7
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.js +41 -7
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +41 -7
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Quiz/index.d.mts +9 -1
- package/dist/Quiz/index.d.ts +9 -1
- package/dist/Quiz/index.js +116 -70
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +112 -69
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/Quiz/useQuizStore/index.d.mts +52 -14
- package/dist/Quiz/useQuizStore/index.d.ts +52 -14
- package/dist/Quiz/useQuizStore/index.js +30 -17
- package/dist/Quiz/useQuizStore/index.js.map +1 -1
- package/dist/Quiz/useQuizStore/index.mjs +30 -17
- package/dist/Quiz/useQuizStore/index.mjs.map +1 -1
- package/dist/index.css +9 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +108 -68
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +108 -68
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -3
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -727,6 +727,9 @@
|
|
|
727
727
|
.hidden {
|
|
728
728
|
display: none;
|
|
729
729
|
}
|
|
730
|
+
.inline {
|
|
731
|
+
display: inline;
|
|
732
|
+
}
|
|
730
733
|
.inline-block {
|
|
731
734
|
display: inline-block;
|
|
732
735
|
}
|
|
@@ -1150,6 +1153,9 @@
|
|
|
1150
1153
|
.min-w-20 {
|
|
1151
1154
|
min-width: calc(var(--spacing) * 20);
|
|
1152
1155
|
}
|
|
1156
|
+
.min-w-24 {
|
|
1157
|
+
min-width: calc(var(--spacing) * 24);
|
|
1158
|
+
}
|
|
1153
1159
|
.min-w-\[2\.5rem\] {
|
|
1154
1160
|
min-width: 2.5rem;
|
|
1155
1161
|
}
|
|
@@ -2757,15 +2763,15 @@
|
|
|
2757
2763
|
.pb-9\.5 {
|
|
2758
2764
|
padding-bottom: calc(var(--spacing) * 9.5);
|
|
2759
2765
|
}
|
|
2766
|
+
.pb-10 {
|
|
2767
|
+
padding-bottom: calc(var(--spacing) * 10);
|
|
2768
|
+
}
|
|
2760
2769
|
.pb-15 {
|
|
2761
2770
|
padding-bottom: calc(var(--spacing) * 15);
|
|
2762
2771
|
}
|
|
2763
2772
|
.pb-\[80px\] {
|
|
2764
2773
|
padding-bottom: 80px;
|
|
2765
2774
|
}
|
|
2766
|
-
.pb-\[100px\] {
|
|
2767
|
-
padding-bottom: 100px;
|
|
2768
|
-
}
|
|
2769
2775
|
.pb-\[150px\] {
|
|
2770
2776
|
padding-bottom: 150px;
|
|
2771
2777
|
}
|