mario-education 2.4.124-beta → 2.4.125-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/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/utils/type.d.ts +5 -0
- package/dist/index.css +939 -939
- package/dist/index.js +263 -116
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +264 -117
- package/dist/index.modern.js.map +1 -1
- package/package.json +96 -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/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;
|