analytica-frontend-lib 1.3.8 → 1.3.9
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/ActivitiesHistory/index.css +30 -0
- package/dist/ActivitiesHistory/index.css.map +1 -1
- package/dist/ActivityCardQuestionBanks/index.css +30 -0
- package/dist/ActivityCardQuestionBanks/index.css.map +1 -1
- package/dist/ActivityCardQuestionPreview/index.css +30 -0
- package/dist/ActivityCardQuestionPreview/index.css.map +1 -1
- package/dist/ActivityDetails/index.css +30 -0
- package/dist/ActivityDetails/index.css.map +1 -1
- package/dist/ActivityFilters/index.css +30 -0
- package/dist/ActivityFilters/index.css.map +1 -1
- package/dist/ActivityPreview/index.css +30 -0
- package/dist/ActivityPreview/index.css.map +1 -1
- package/dist/AlertManager/index.css +30 -0
- package/dist/AlertManager/index.css.map +1 -1
- package/dist/RecommendedLessonsHistory/index.css +30 -0
- package/dist/RecommendedLessonsHistory/index.css.map +1 -1
- package/dist/SendActivityModal/SendActivityModal.css +30 -0
- package/dist/SendActivityModal/SendActivityModal.css.map +1 -1
- package/dist/SendActivityModal/index.css +30 -0
- package/dist/SendActivityModal/index.css.map +1 -1
- package/dist/TableProvider/index.css +30 -0
- package/dist/TableProvider/index.css.map +1 -1
- package/dist/index.css +30 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +489 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +483 -17
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +30 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -1
|
@@ -619,6 +619,9 @@
|
|
|
619
619
|
.z-10 {
|
|
620
620
|
z-index: 10;
|
|
621
621
|
}
|
|
622
|
+
.z-20 {
|
|
623
|
+
z-index: 20;
|
|
624
|
+
}
|
|
622
625
|
.z-50 {
|
|
623
626
|
z-index: 50;
|
|
624
627
|
}
|
|
@@ -1889,6 +1892,10 @@
|
|
|
1889
1892
|
border-top-left-radius: var(--radius-3xl);
|
|
1890
1893
|
border-top-right-radius: var(--radius-3xl);
|
|
1891
1894
|
}
|
|
1895
|
+
.rounded-t-md {
|
|
1896
|
+
border-top-left-radius: var(--radius-md);
|
|
1897
|
+
border-top-right-radius: var(--radius-md);
|
|
1898
|
+
}
|
|
1892
1899
|
.rounded-t-xl {
|
|
1893
1900
|
border-top-left-radius: var(--radius-xl);
|
|
1894
1901
|
border-top-right-radius: var(--radius-xl);
|
|
@@ -1905,6 +1912,10 @@
|
|
|
1905
1912
|
border-bottom-right-radius: var(--radius-3xl);
|
|
1906
1913
|
border-bottom-left-radius: var(--radius-3xl);
|
|
1907
1914
|
}
|
|
1915
|
+
.rounded-b-md {
|
|
1916
|
+
border-bottom-right-radius: var(--radius-md);
|
|
1917
|
+
border-bottom-left-radius: var(--radius-md);
|
|
1918
|
+
}
|
|
1908
1919
|
.rounded-b-xl {
|
|
1909
1920
|
border-bottom-right-radius: var(--radius-xl);
|
|
1910
1921
|
border-bottom-left-radius: var(--radius-xl);
|
|
@@ -3042,6 +3053,12 @@
|
|
|
3042
3053
|
.bg-white {
|
|
3043
3054
|
background-color: var(--color-white);
|
|
3044
3055
|
}
|
|
3056
|
+
.bg-white\/50 {
|
|
3057
|
+
background-color: color-mix(in srgb, #fff 50%, transparent);
|
|
3058
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3059
|
+
background-color: color-mix(in oklab, var(--color-white) 50%, transparent);
|
|
3060
|
+
}
|
|
3061
|
+
}
|
|
3045
3062
|
.bg-yellow-50 {
|
|
3046
3063
|
background-color: var(--color-yellow-50);
|
|
3047
3064
|
}
|
|
@@ -3099,12 +3116,18 @@
|
|
|
3099
3116
|
--tw-gradient-to: transparent;
|
|
3100
3117
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
3101
3118
|
}
|
|
3119
|
+
.fill-background-300 {
|
|
3120
|
+
fill: var(--color-background-300);
|
|
3121
|
+
}
|
|
3102
3122
|
.fill-primary-100 {
|
|
3103
3123
|
fill: var(--color-primary-100);
|
|
3104
3124
|
}
|
|
3105
3125
|
.fill-primary-600 {
|
|
3106
3126
|
fill: var(--color-primary-600);
|
|
3107
3127
|
}
|
|
3128
|
+
.fill-white {
|
|
3129
|
+
fill: var(--color-white);
|
|
3130
|
+
}
|
|
3108
3131
|
.stroke-background-300 {
|
|
3109
3132
|
stroke: var(--color-background-300);
|
|
3110
3133
|
}
|
|
@@ -4442,6 +4465,13 @@
|
|
|
4442
4465
|
}
|
|
4443
4466
|
}
|
|
4444
4467
|
}
|
|
4468
|
+
.group-hover\/bar\:opacity-100 {
|
|
4469
|
+
&:is(:where(.group\/bar):hover *) {
|
|
4470
|
+
@media (hover: hover) {
|
|
4471
|
+
opacity: 100%;
|
|
4472
|
+
}
|
|
4473
|
+
}
|
|
4474
|
+
}
|
|
4445
4475
|
.group-hover\/button\:scale-110 {
|
|
4446
4476
|
&:is(:where(.group\/button):hover *) {
|
|
4447
4477
|
@media (hover: hover) {
|