mario-education 2.5.6-release → 2.5.8-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/PrintSectionPdf/api/service.d.ts +1 -0
- package/dist/containers/PrintSectionPdf/hooks/useAcademicYearList.d.ts +8 -0
- package/dist/containers/PrintSectionPdf/hooks/useBreakingMonth.d.ts +14 -0
- package/dist/containers/PrintSectionPdf/views/PrintSection.d.ts +5 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const get: () => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const useSemesterList: (breakingMonthDetail: any) => {
|
|
2
|
+
academicYearList: any;
|
|
3
|
+
totalItems: number;
|
|
4
|
+
filters: import("mario-core").Filter;
|
|
5
|
+
changeFilters: (updatedFilters: any) => void;
|
|
6
|
+
getData: () => Promise<void>;
|
|
7
|
+
};
|
|
8
|
+
export default useSemesterList;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type BreakingMonthDetail = {
|
|
3
|
+
value: number;
|
|
4
|
+
};
|
|
5
|
+
declare const useBreakingMonth: () => {
|
|
6
|
+
breakingMonthDetail: any;
|
|
7
|
+
confirmData: (value: number, cb: any) => Promise<void>;
|
|
8
|
+
initValue: BreakingMonthDetail;
|
|
9
|
+
edited: boolean;
|
|
10
|
+
setEdited: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
11
|
+
setEditedTrue: () => Promise<void>;
|
|
12
|
+
setEditedFalse: () => Promise<void>;
|
|
13
|
+
};
|
|
14
|
+
export default useBreakingMonth;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mario-education",
|
|
3
|
-
"version": "2.05.
|
|
3
|
+
"version": "2.05.08-release",
|
|
4
4
|
"description": "Contains education components && functions for BRSS Mario project",
|
|
5
5
|
"author": "brss",
|
|
6
6
|
"license": "MIT",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"grapesjs-preset-webpage": "^0.1.11",
|
|
97
97
|
"html2canvas": "^1.4.1",
|
|
98
98
|
"jspdf": "^2.5.1",
|
|
99
|
-
"mario-core": "2.10.
|
|
99
|
+
"mario-core": "2.10.06-release",
|
|
100
100
|
"papaparse": "^5.5.2",
|
|
101
101
|
"react-apexcharts": "^1.3.9",
|
|
102
102
|
"react-datepicker": "^3.8.0",
|