analytica-frontend-lib 1.0.97 → 1.0.99
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 +2 -1
- package/dist/Quiz/index.d.ts +2 -1
- package/dist/Quiz/index.js +150 -3
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +149 -3
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/Quiz/useQuizStore/index.d.mts +2 -1
- package/dist/Quiz/useQuizStore/index.d.ts +2 -1
- package/dist/Quiz/useQuizStore/index.js +1 -0
- package/dist/Quiz/useQuizStore/index.js.map +1 -1
- package/dist/Quiz/useQuizStore/index.mjs +1 -0
- package/dist/Quiz/useQuizStore/index.mjs.map +1 -1
- package/dist/index.css +34 -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 +150 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +149 -3
- package/dist/index.mjs.map +1 -1
- package/dist/mock-image-question-HEZCLFDL.png +0 -0
- package/dist/styles.css +34 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
|
Binary file
|
package/dist/styles.css
CHANGED
|
@@ -711,6 +711,9 @@
|
|
|
711
711
|
.hidden {
|
|
712
712
|
display: none;
|
|
713
713
|
}
|
|
714
|
+
.inline-block {
|
|
715
|
+
display: inline-block;
|
|
716
|
+
}
|
|
714
717
|
.inline-flex {
|
|
715
718
|
display: inline-flex;
|
|
716
719
|
}
|
|
@@ -1493,6 +1496,10 @@
|
|
|
1493
1496
|
border-style: var(--tw-border-style);
|
|
1494
1497
|
border-width: 2px;
|
|
1495
1498
|
}
|
|
1499
|
+
.border-4 {
|
|
1500
|
+
border-style: var(--tw-border-style);
|
|
1501
|
+
border-width: 4px;
|
|
1502
|
+
}
|
|
1496
1503
|
.border-\[3px\] {
|
|
1497
1504
|
border-style: var(--tw-border-style);
|
|
1498
1505
|
border-width: 3px;
|
|
@@ -1525,6 +1532,9 @@
|
|
|
1525
1532
|
--tw-border-style: solid;
|
|
1526
1533
|
border-style: solid;
|
|
1527
1534
|
}
|
|
1535
|
+
.border-\[\#F8CC2E\] {
|
|
1536
|
+
border-color: #F8CC2E;
|
|
1537
|
+
}
|
|
1528
1538
|
.border-background-50 {
|
|
1529
1539
|
border-color: var(--color-background-50);
|
|
1530
1540
|
}
|
|
@@ -1957,6 +1967,9 @@
|
|
|
1957
1967
|
.border-warning-950 {
|
|
1958
1968
|
border-color: var(--color-warning-950);
|
|
1959
1969
|
}
|
|
1970
|
+
.border-white {
|
|
1971
|
+
border-color: var(--color-white);
|
|
1972
|
+
}
|
|
1960
1973
|
.border-b-primary-200 {
|
|
1961
1974
|
border-bottom-color: var(--color-primary-200);
|
|
1962
1975
|
}
|
|
@@ -2137,6 +2150,18 @@
|
|
|
2137
2150
|
.bg-indicator-error {
|
|
2138
2151
|
background-color: var(--color-indicator-error);
|
|
2139
2152
|
}
|
|
2153
|
+
.bg-indicator-error\/70 {
|
|
2154
|
+
background-color: color-mix(in srgb, #b91c1c 70%, transparent);
|
|
2155
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2156
|
+
background-color: color-mix(in oklab, var(--color-indicator-error) 70%, transparent);
|
|
2157
|
+
}
|
|
2158
|
+
}
|
|
2159
|
+
.bg-indicator-primary\/70 {
|
|
2160
|
+
background-color: color-mix(in srgb, #373737 70%, transparent);
|
|
2161
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2162
|
+
background-color: color-mix(in oklab, var(--color-indicator-primary) 70%, transparent);
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2140
2165
|
.bg-info {
|
|
2141
2166
|
background-color: var(--color-info);
|
|
2142
2167
|
}
|
|
@@ -2332,6 +2357,12 @@
|
|
|
2332
2357
|
.bg-success-600 {
|
|
2333
2358
|
background-color: var(--color-success-600);
|
|
2334
2359
|
}
|
|
2360
|
+
.bg-success-600\/70 {
|
|
2361
|
+
background-color: color-mix(in srgb, #2a7948 70%, transparent);
|
|
2362
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2363
|
+
background-color: color-mix(in oklab, var(--color-success-600) 70%, transparent);
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2335
2366
|
.bg-success-700 {
|
|
2336
2367
|
background-color: var(--color-success-700);
|
|
2337
2368
|
}
|
|
@@ -2615,6 +2646,9 @@
|
|
|
2615
2646
|
.pb-6 {
|
|
2616
2647
|
padding-bottom: calc(var(--spacing) * 6);
|
|
2617
2648
|
}
|
|
2649
|
+
.pb-8 {
|
|
2650
|
+
padding-bottom: calc(var(--spacing) * 8);
|
|
2651
|
+
}
|
|
2618
2652
|
.pb-9\.5 {
|
|
2619
2653
|
padding-bottom: calc(var(--spacing) * 9.5);
|
|
2620
2654
|
}
|