mario-education 2.4.124-beta → 2.4.126-beta
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/constants.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/types.d.ts +6 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/components/UserForQuestion.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Subject/views/SubjectList.d.ts +2 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSystem/apiClient/index.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSystem/hooks/useTemplateBuilder.d.ts +7 -5
- package/dist/MarioFramework.Education/ClientApp/src/index.d.ts +1 -4
- package/dist/MarioFramework.Education/ClientApp/src/utils/type.d.ts +5 -0
- package/dist/index.css +893 -939
- package/dist/index.js +167 -1126
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +168 -1124
- package/dist/index.modern.js.map +1 -1
- package/package.json +94 -96
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts
CHANGED
|
@@ -43,3 +43,10 @@ export declare const GENDER_OPTION: {
|
|
|
43
43
|
value: number;
|
|
44
44
|
label: string;
|
|
45
45
|
}[];
|
|
46
|
+
export declare const DEFAULT_START_DATE: number;
|
|
47
|
+
export declare const DEFAULT_END_DATE: number;
|
|
48
|
+
export declare const CALENDAR_OPTIONS: {
|
|
49
|
+
label: string;
|
|
50
|
+
startDate: number;
|
|
51
|
+
endDate: number;
|
|
52
|
+
}[];
|
|
@@ -211,12 +211,18 @@ export interface ICalenDarLabelBox {
|
|
|
211
211
|
value: FILTER_YEAR;
|
|
212
212
|
label: string;
|
|
213
213
|
}
|
|
214
|
+
export interface ICalendarTimeLabelBox {
|
|
215
|
+
startDate: any;
|
|
216
|
+
endDate: any;
|
|
217
|
+
label: string;
|
|
218
|
+
}
|
|
214
219
|
export interface IGenderLabelBox {
|
|
215
220
|
value: number;
|
|
216
221
|
label: string;
|
|
217
222
|
}
|
|
218
223
|
export interface ILabelBox {
|
|
219
224
|
calendar: ICalenDarLabelBox;
|
|
225
|
+
calendarTime?: ICalendarTimeLabelBox;
|
|
220
226
|
gender: IGenderLabelBox;
|
|
221
227
|
grade: number;
|
|
222
228
|
bandScore: number;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Subject/views/SubjectList.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const SubjectList: FC;
|
|
3
|
+
export default SubjectList;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSystem/apiClient/index.d.ts
CHANGED
|
@@ -6,3 +6,4 @@ export declare const remove: (id: number) => Promise<import("axios").AxiosRespon
|
|
|
6
6
|
export declare const getAllTemplatePage: (isTemplateIEP: boolean) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
7
|
export declare const updateTemplatePage: (templateId: number, subTemplateId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
8
|
export declare const updateHTMLIEP: (id: number, body: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
9
|
+
export declare const updateTimeReq: () => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
declare type
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type IEPDetail = {
|
|
3
3
|
name: string;
|
|
4
|
-
|
|
4
|
+
isPublish: boolean;
|
|
5
5
|
};
|
|
6
6
|
declare const useTemplateBuilder: (templateId: number) => {
|
|
7
|
-
|
|
8
|
-
saveHTMLTemplate: (
|
|
7
|
+
iepDetail: IEPDetail;
|
|
8
|
+
saveHTMLTemplate: () => Promise<void>;
|
|
9
|
+
setIEPDetail: import("react").Dispatch<import("react").SetStateAction<IEPDetail>>;
|
|
10
|
+
isPageIEP: string | null;
|
|
9
11
|
};
|
|
10
12
|
export default useTemplateBuilder;
|
|
@@ -30,9 +30,6 @@ import CompareTeacher from "./containers/CompareTeacher/views/CompareTeacher";
|
|
|
30
30
|
import Dashboard from "./containers/Dashboard/views/Dashboard";
|
|
31
31
|
import SessionTemplateList from "./containers/SessionTemplate/views/SessionTemplateList";
|
|
32
32
|
import SessionTemplateGeneralClassList from "./containers/SessionTemplateGeneralClass/views/SessionTemplateGeneralClassList";
|
|
33
|
-
import TemplateContainer from "./containers/TemplateSystem/views/TemplateContainer";
|
|
34
|
-
import TemplateBuilderPage from "./containers/TemplateSystem/views/TemplateBuilderPage";
|
|
35
|
-
import TemplateStartBuild from "./containers/TemplateSystem/views/TemplateStartBuild";
|
|
36
33
|
import LoadLanguage from "./components/Loading/LoadLanguage";
|
|
37
34
|
import AdminTraining from "./containers/AdminTraining/views/AdminTraining";
|
|
38
|
-
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining
|
|
35
|
+
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining };
|