mario-education 2.4.155-level → 2.4.157-level
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/MarioFramework.Education/ClientApp/src/components/Select/SelectFilter.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/utils/type.d.ts +3 -1
- package/dist/index.css +2164 -2161
- package/dist/index.js +96 -66
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +96 -66
- package/dist/index.modern.js.map +1 -1
- package/package.json +98 -98
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/ReadinessToLearn.d.ts +0 -7
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchCounselor/hooks/useSwitchAssistant.d.ts +0 -18
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchSecondaryTeacher/components/SwitchCounselorModal.d.ts +0 -4
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchSecondaryTeacher/hooks/useSwitchCounselor.d.ts +0 -18
- /package/dist/MarioFramework.Education/ClientApp/src/utils/{servicetype.interface.d.ts → serviceType.interface.d.ts} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import "react-datepicker/dist/react-datepicker.css";
|
|
3
3
|
import { PROPS_FILTERS_COMPONENT } from "../../utils/type";
|
|
4
|
-
declare const SelectFilter: ({ studentUserId, studentId, studentDefault, handleChangeFilters, name, icon, option, onChangeFilters, btnStyle, filter, teacherUserId, changeCurrentTeacherUserId }: PROPS_FILTERS_COMPONENT) => JSX.Element;
|
|
4
|
+
declare const SelectFilter: ({ studentUserId, studentId, studentDefault, handleChangeFilters, name, icon, option, onChangeFilters, btnStyle, filter, teacherUserId, changeCurrentTeacherUserId, labelBox, setLabelBox }: PROPS_FILTERS_COMPONENT) => JSX.Element;
|
|
5
5
|
export default SelectFilter;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export declare const SUCCESS_INDICATORS_QUESTION: string[];
|
|
|
69
69
|
export declare const SAFETY_QUESTION = "safety";
|
|
70
70
|
export declare const STRESS_QUESTION = "stress";
|
|
71
71
|
export declare const readinessToLearnName = "readiness_to_learn";
|
|
72
|
-
export declare const preparednessChartName = "
|
|
72
|
+
export declare const preparednessChartName = "Readiness To Learn";
|
|
73
73
|
export declare const averageStudentSafetyName = "average_student_safety";
|
|
74
74
|
export declare const averageStudentStressName = "average_student_stress";
|
|
75
75
|
export declare const successIndicatorsName = "success_indicators";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DashboardFilter } from "../containers/Dashboard/configs/types";
|
|
1
|
+
import { DashboardFilter, ILabelBox } from "../containers/Dashboard/configs/types";
|
|
2
2
|
export interface Student {
|
|
3
3
|
studentId: number;
|
|
4
4
|
email: string;
|
|
@@ -36,6 +36,8 @@ export interface PROPS_FILTERS_COMPONENT {
|
|
|
36
36
|
academicYearId?: number;
|
|
37
37
|
btnStyle?: any;
|
|
38
38
|
changeCurrentTeacherUserId?: (userId: string) => void;
|
|
39
|
+
setLabelBox: Function;
|
|
40
|
+
labelBox: ILabelBox;
|
|
39
41
|
}
|
|
40
42
|
export interface BAND_SCORE {
|
|
41
43
|
label: string;
|