mario-education 2.4.463-release → 2.4.464-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.
@@ -0,0 +1,3 @@
1
+ import { ILastAnswerTable } from "../configs/types";
2
+ declare const LastAnswerTable: ({ items, onOder }: ILastAnswerTable) => JSX.Element;
3
+ export default LastAnswerTable;
@@ -0,0 +1,20 @@
1
+ /// <reference types="react" />
2
+ import { IQuestionFilter, ILabelBox, ISummarizeQuestion } from "../configs/types";
3
+ import { IFilter, Student } from "../../../utils/type";
4
+ declare const useSummarizeQuestion: () => {
5
+ setFilter: import("react").Dispatch<import("react").SetStateAction<IQuestionFilter>>;
6
+ filter: IQuestionFilter;
7
+ summarizeQuestions: ISummarizeQuestion | undefined;
8
+ handleChangeFilters: (event: any) => void;
9
+ onChangeFilters: (filterSelect: IFilter) => void;
10
+ labelBox: ILabelBox;
11
+ setLabelBox: import("react").Dispatch<import("react").SetStateAction<ILabelBox>>;
12
+ gradeList: string[];
13
+ handleChangeAcademicYearFilters: (option: any) => void;
14
+ academicYearItem: any;
15
+ setGradeList: import("react").Dispatch<import("react").SetStateAction<string[]>>;
16
+ handleFilterStudent: (option: any) => void;
17
+ studentDefault: Student | undefined;
18
+ handleSort: (key: string) => void;
19
+ };
20
+ export default useSummarizeQuestion;
@@ -0,0 +1,2 @@
1
+ declare const SummarizeQuestion: () => JSX.Element;
2
+ export default SummarizeQuestion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-education",
3
- "version": "2.4.463-release",
3
+ "version": "2.4.464-release",
4
4
  "description": "Contains education components && functions for BRSS Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -93,7 +93,7 @@
93
93
  "grapesjs-preset-webpage": "^0.1.11",
94
94
  "html2canvas": "^1.4.1",
95
95
  "jspdf": "^2.5.1",
96
- "mario-core": "2.9.355-release",
96
+ "mario-core": "2.9.356-release",
97
97
  "react-apexcharts": "^1.3.9",
98
98
  "react-datepicker": "^3.8.0",
99
99
  "react-icons": "^4.2.0",