mario-education 2.4.152-level → 2.4.154-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/containers/Dashboard/configs/types.d.ts +2 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +1 -1
- package/dist/index.js +963 -771
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +963 -771
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
|
@@ -302,6 +302,8 @@ export interface IDashboardToPDF {
|
|
|
302
302
|
activeColumnConference: boolean[];
|
|
303
303
|
dayOfWeekConference: string[];
|
|
304
304
|
avgConferenceLastMonth: IQuestionResponseLastMonth[];
|
|
305
|
+
readinessToLearning: IReadinessToLearning[];
|
|
306
|
+
studentPressure: IStudentPressure;
|
|
305
307
|
}
|
|
306
308
|
export interface IOverallReadinessToLearn {
|
|
307
309
|
resultQuestion: ISeries[];
|
|
@@ -28,7 +28,7 @@ export declare const mtssOptions: {
|
|
|
28
28
|
value: MtssType;
|
|
29
29
|
label: string;
|
|
30
30
|
}[];
|
|
31
|
-
export declare const learningStrategyChartOptions: (labelNames: any, usageCountList: number[],
|
|
31
|
+
export declare const learningStrategyChartOptions: (labelNames: any, usageCountList: number[], isMobileScreen: boolean) => ApexOptions;
|
|
32
32
|
export declare const ReadinessToLearnOptions: (questionTexts: string[]) => ApexOptions;
|
|
33
33
|
export declare const optionsChartGrade: (maxDatas: number) => ApexOptions;
|
|
34
34
|
export declare const studentBySpecialNeedOptions: (seriesValue: IseriesChart, colors: string[]) => ApexOptions;
|