analytica-frontend-lib 1.2.45 → 1.2.46
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/ActivityCardQuestionBanks/index.css +20 -0
- package/dist/ActivityCardQuestionBanks/index.css.map +1 -1
- package/dist/ActivityCardQuestionPreview/index.css +20 -0
- package/dist/ActivityCardQuestionPreview/index.css.map +1 -1
- package/dist/ActivityDetails/index.css +20 -0
- package/dist/ActivityDetails/index.css.map +1 -1
- package/dist/ActivityFilters/index.css +20 -0
- package/dist/ActivityFilters/index.css.map +1 -1
- package/dist/ActivityPreview/index.css +20 -0
- package/dist/ActivityPreview/index.css.map +1 -1
- package/dist/AlertManager/index.css +20 -0
- package/dist/AlertManager/index.css.map +1 -1
- package/dist/RecommendedLessonsHistory/index.css +19327 -0
- package/dist/RecommendedLessonsHistory/index.css.map +1 -0
- package/dist/RecommendedLessonsHistory/index.d.ts +2 -0
- package/dist/RecommendedLessonsHistory/index.d.ts.map +1 -0
- package/dist/RecommendedLessonsHistory/index.js +6775 -0
- package/dist/RecommendedLessonsHistory/index.js.map +1 -0
- package/dist/RecommendedLessonsHistory/index.mjs +6815 -0
- package/dist/RecommendedLessonsHistory/index.mjs.map +1 -0
- package/dist/SendActivityModal/index.css +20 -0
- package/dist/SendActivityModal/index.css.map +1 -1
- package/dist/TableProvider/index.css +20 -0
- package/dist/TableProvider/index.css.map +1 -1
- package/dist/hooks/useRecommendedLessons/index.d.ts +355 -0
- package/dist/hooks/useRecommendedLessons/index.d.ts.map +1 -0
- package/dist/hooks/useRecommendedLessons/index.js +195 -0
- package/dist/hooks/useRecommendedLessons/index.js.map +1 -0
- package/dist/hooks/useRecommendedLessons/index.mjs +155 -0
- package/dist/hooks/useRecommendedLessons/index.mjs.map +1 -0
- package/dist/hooks/useRecommendedLessons.d.ts +355 -0
- package/dist/hooks/useRecommendedLessons.d.ts.map +1 -0
- package/dist/index.css +20 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +698 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +685 -0
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +20 -0
- package/dist/styles.css.map +1 -1
- package/dist/types/recommendedLessons/index.d.ts +182 -0
- package/dist/types/recommendedLessons/index.d.ts.map +1 -0
- package/dist/types/recommendedLessons/index.js +75 -0
- package/dist/types/recommendedLessons/index.js.map +1 -0
- package/dist/types/recommendedLessons/index.mjs +45 -0
- package/dist/types/recommendedLessons/index.mjs.map +1 -0
- package/dist/types/recommendedLessons.d.ts +182 -0
- package/dist/types/recommendedLessons.d.ts.map +1 -0
- package/package.json +2 -1
|
@@ -604,6 +604,9 @@
|
|
|
604
604
|
.isolate {
|
|
605
605
|
isolation: isolate;
|
|
606
606
|
}
|
|
607
|
+
.z-0 {
|
|
608
|
+
z-index: 0;
|
|
609
|
+
}
|
|
607
610
|
.z-10 {
|
|
608
611
|
z-index: 10;
|
|
609
612
|
}
|
|
@@ -1329,6 +1332,9 @@
|
|
|
1329
1332
|
.max-w-\[1150px\] {
|
|
1330
1333
|
max-width: 1150px;
|
|
1331
1334
|
}
|
|
1335
|
+
.max-w-\[1350px\] {
|
|
1336
|
+
max-width: 1350px;
|
|
1337
|
+
}
|
|
1332
1338
|
.max-w-full {
|
|
1333
1339
|
max-width: 100%;
|
|
1334
1340
|
}
|
|
@@ -1705,6 +1711,9 @@
|
|
|
1705
1711
|
margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
|
|
1706
1712
|
}
|
|
1707
1713
|
}
|
|
1714
|
+
.self-center {
|
|
1715
|
+
align-self: center;
|
|
1716
|
+
}
|
|
1708
1717
|
.self-start {
|
|
1709
1718
|
align-self: flex-start;
|
|
1710
1719
|
}
|
|
@@ -16575,6 +16584,11 @@
|
|
|
16575
16584
|
width: calc(var(--spacing) * 3.5);
|
|
16576
16585
|
}
|
|
16577
16586
|
}
|
|
16587
|
+
.lg\:w-auto {
|
|
16588
|
+
@media (width >= 64rem) {
|
|
16589
|
+
width: auto;
|
|
16590
|
+
}
|
|
16591
|
+
}
|
|
16578
16592
|
.lg\:max-w-\[1000px\] {
|
|
16579
16593
|
@media (width >= 64rem) {
|
|
16580
16594
|
max-width: 1000px;
|
|
@@ -18672,6 +18686,12 @@
|
|
|
18672
18686
|
padding-left: calc(var(--spacing) * 96);
|
|
18673
18687
|
}
|
|
18674
18688
|
}
|
|
18689
|
+
.lg\:text-2xl {
|
|
18690
|
+
@media (width >= 64rem) {
|
|
18691
|
+
font-size: var(--text-2xl);
|
|
18692
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
18693
|
+
}
|
|
18694
|
+
}
|
|
18675
18695
|
.xl\:max-w-none {
|
|
18676
18696
|
@media (width >= 80rem) {
|
|
18677
18697
|
max-width: none;
|