mario-education 2.4.585-feedback → 2.4.585-release
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/containers/Dashboard/components/GenerateTrendQuestion.d.ts +1 -1
- package/dist/containers/Dashboard/components/ReadinessToLearnTab.d.ts +1 -1
- package/dist/containers/Dashboard/configs/constants.d.ts +1 -1
- package/dist/containers/Dashboard/configs/types.d.ts +2 -0
- package/dist/containers/FrequencyAndSetup/hooks/useFrequencyAndSetup.d.ts +1 -1
- package/dist/containers/Homepage/common/constant.d.ts +1 -1
- package/dist/containers/Homepage/common/interface.d.ts +1 -0
- package/dist/index.css +15141 -15141
- package/dist/index.js +30 -23
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +30 -23
- package/dist/index.modern.js.map +1 -1
- package/package.json +110 -110
- package/dist/components/Loading/LoadLanguage.d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { IGenerateTrendQuestion } from "../configs/types";
|
|
3
|
-
declare const _default: React.MemoExoticComponent<({ series, avgQuestionLastMonth, icons, className, noAvgText }: IGenerateTrendQuestion) => JSX.Element>;
|
|
3
|
+
declare const _default: React.MemoExoticComponent<({ series, avgQuestionLastMonth, icons, className, noAvgText, timeOfDay }: IGenerateTrendQuestion) => JSX.Element>;
|
|
4
4
|
export default _default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { IReadinessToLearnTab } from "../configs/types";
|
|
2
|
-
declare const ReadinessToLearnTab: ({ dataReadinessOfChart, handleHoverTooltip, classFontSize, dataOverallReadyToLearn, dayOfWeekOneToOne, monthsOneToOne, avgQuestionLastMonth, preparednessData, preparednessWeeklyData, weeksOneToOne, setOptionDate, activeColumn, onActiveColumn }: IReadinessToLearnTab) => JSX.Element;
|
|
2
|
+
declare const ReadinessToLearnTab: ({ dataReadinessOfChart, handleHoverTooltip, classFontSize, dataOverallReadyToLearn, dayOfWeekOneToOne, monthsOneToOne, avgQuestionLastMonth, preparednessData, preparednessWeeklyData, weeksOneToOne, setOptionDate, activeColumn, onActiveColumn, timeOfDay }: IReadinessToLearnTab) => JSX.Element;
|
|
3
3
|
export default ReadinessToLearnTab;
|
|
@@ -69,7 +69,7 @@ export declare const INITIAL_OVERALL_READY_TO_LEARN: {
|
|
|
69
69
|
export declare const heightChartDefault = 250;
|
|
70
70
|
export declare const PREPAREDNESS_QUESTION: string[];
|
|
71
71
|
export declare const SUCCESS_INDICATORS_QUESTION: string[];
|
|
72
|
-
export declare const SAFETY_QUESTION
|
|
72
|
+
export declare const SAFETY_QUESTION: string[];
|
|
73
73
|
export declare const STRESS_QUESTION = "stress";
|
|
74
74
|
export declare const readinessToLearnName = "readiness_to_learn";
|
|
75
75
|
export declare const preparednessChartName = "readiness_to_learn";
|
|
@@ -640,6 +640,7 @@ export interface IReadinessToLearnTab {
|
|
|
640
640
|
setOptionDate?: Function;
|
|
641
641
|
onActiveColumn?: any;
|
|
642
642
|
activeColumn?: boolean[];
|
|
643
|
+
timeOfDay?: string;
|
|
643
644
|
}
|
|
644
645
|
export interface IGenerateTrendQuestion {
|
|
645
646
|
series: ISeries[];
|
|
@@ -648,6 +649,7 @@ export interface IGenerateTrendQuestion {
|
|
|
648
649
|
icons: string[];
|
|
649
650
|
className?: string;
|
|
650
651
|
noAvgText?: boolean;
|
|
652
|
+
timeOfDay?: string;
|
|
651
653
|
}
|
|
652
654
|
export interface FILTER_STUDENT_WELLBEING {
|
|
653
655
|
startDate?: number;
|
|
@@ -8,7 +8,7 @@ declare const useFrequencyAndSetup: () => {
|
|
|
8
8
|
openModalDelete: boolean;
|
|
9
9
|
setOpenModalDelete: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
10
10
|
setup: IWellBeingSetup;
|
|
11
|
-
onChangeSetup: <K extends "id" | "
|
|
11
|
+
onChangeSetup: <K extends "id" | "contacts" | "sections" | "frequencyMode" | "frequencyType" | "customFrequencyDays" | "isContactFlowEnabled">(key: K, value: IWellBeingSetup[K]) => void;
|
|
12
12
|
contacts: IWellBeingFlowContact[];
|
|
13
13
|
sections: IWellBeingSection[];
|
|
14
14
|
onChangeSections: (orderSections: IWellBeingSection[]) => void;
|
|
@@ -23,7 +23,7 @@ export declare const INITIAl_SCHOOL_INFO: {
|
|
|
23
23
|
logo: string;
|
|
24
24
|
name: string;
|
|
25
25
|
};
|
|
26
|
-
export declare const SAFETY_QUESTION
|
|
26
|
+
export declare const SAFETY_QUESTION: string[];
|
|
27
27
|
export declare const STRESS_QUESTION = "stress";
|
|
28
28
|
export declare const PREPAREDNESS_QUESTION: string[];
|
|
29
29
|
export declare const SUCCESS_INDICATORS_QUESTION: string[];
|