mario-education 2.4.274-release → 2.4.275-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/ConferenceRubric/hooks/useConferenceRubricDetail.d.ts +1 -1
  2. package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/types.d.ts +0 -1
  3. package/dist/MarioFramework.Education/ClientApp/src/containers/SurveyDashboard/components/dialog/DialogChooseTeacher.d.ts +10 -0
  4. package/dist/MarioFramework.Education/ClientApp/src/containers/SurveyDashboard/hooks/useAdditionalQuestionModel.d.ts +5 -0
  5. package/dist/index.css +5337 -5337
  6. package/dist/index.js +6 -14
  7. package/dist/index.js.map +1 -1
  8. package/dist/index.modern.js +6 -14
  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
@@ -6,7 +6,7 @@ declare const useConferenceRubricDetail: (id?: number | null | undefined) => {
6
6
  setTemporarySkill: import("react").Dispatch<import("react").SetStateAction<ConferenceRubricSkill | null>>;
7
7
  newRowTexts: any;
8
8
  changeNewRowText: (skillId: any, text: any) => void;
9
- confirmData: () => Promise<void>;
9
+ confirmData: (isLoading?: boolean | undefined) => Promise<void>;
10
10
  backToList: () => void;
11
11
  addItem: () => void;
12
12
  removeItem: (skillId: number) => void;
@@ -29,7 +29,6 @@ export interface IStudentPressure {
29
29
  }
30
30
  export interface IStudentPressureChart {
31
31
  studentPressure: IStudentPressure;
32
- changeLanguage?: string;
33
32
  width?: number;
34
33
  print?: boolean;
35
34
  }
@@ -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;