mario-education 2.4.253-release → 2.4.255-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.
Files changed (19) hide show
  1. package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionCategory/hooks/useQuestionCateDetail.d.ts +1 -1
  2. package/dist/MarioFramework.Education/ClientApp/src/containers/SurveyDashboard/components/dialog/DialogChooseTeacher.d.ts +10 -0
  3. package/dist/MarioFramework.Education/ClientApp/src/containers/SurveyDashboard/hooks/useAdditionalQuestionModel.d.ts +5 -0
  4. package/dist/MarioFramework.Education/ClientApp/src/services/questionCategoryService.d.ts +1 -0
  5. package/dist/index.css +5337 -5337
  6. package/dist/index.js +145 -57
  7. package/dist/index.js.map +1 -1
  8. package/dist/index.modern.js +145 -57
  9. package/dist/index.modern.js.map +1 -1
  10. package/package.json +104 -104
  11. package/dist/MarioFramework.Education/ClientApp/src/components/Select/Autocomplete.d.ts +0 -2
  12. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/components/ImportOneRoster.d.ts +0 -6
  13. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/components/RosterConfigForm.d.ts +0 -8
  14. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/hooks/useImportOneRoster.d.ts +0 -28
  15. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/hooks/userRosterConfigForm.d.ts +0 -7
  16. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/utils/constants.d.ts +0 -2
  17. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/utils/types.d.ts +0 -5
  18. package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/views/OneRoster.d.ts +0 -3
  19. package/dist/MarioFramework.Education/ClientApp/src/utils/function.d.ts +0 -3
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  declare type questionCateDetail = {
3
3
  name: string;
4
- parentCategoryId: number | null;
4
+ parentCategoryId: Array<number> | null;
5
5
  };
6
6
  declare const useQuestionCateDetail: () => {
7
7
  id: number;
@@ -0,0 +1,10 @@
1
+ interface Props {
2
+ studentId?: number;
3
+ isTeacherStart?: string;
4
+ setIsTeacherStart?: Function;
5
+ setStudentId?: Function;
6
+ onClickStart?: Function;
7
+ handleClose?: any;
8
+ }
9
+ declare const DialogChooseTeacher: ({ handleClose, }: Props) => JSX.Element;
10
+ export default DialogChooseTeacher;
@@ -0,0 +1,5 @@
1
+ declare const useAdditionalQuestionModel: ({ open }: any) => {
2
+ formTextList: string[];
3
+ toTextList: string[];
4
+ };
5
+ export default useAdditionalQuestionModel;
@@ -1,5 +1,6 @@
1
1
  import { Filter } from "mario-core";
2
2
  export declare const get: (filter?: Filter | undefined) => Promise<import("axios").AxiosResponse<any>>;
3
+ export declare const getParentLevel0: (level?: string | undefined) => Promise<import("axios").AxiosResponse<any>>;
3
4
  export declare const getById: (id: number) => Promise<import("axios").AxiosResponse<any>>;
4
5
  export declare const create: (data: any) => Promise<import("axios").AxiosResponse<any>>;
5
6
  export declare const update: (data: any) => Promise<import("axios").AxiosResponse<any>>;