mario-education 2.4.102-beta → 2.5.0-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.
@@ -8,4 +8,5 @@ export declare const renderQuestionText: (params: any) => JSX.Element;
8
8
  export declare const renderActions: ({ params, edit, remove }: ActionProps) => JSX.Element;
9
9
  export declare const renderCategory: (params: any) => JSX.Element;
10
10
  export declare const renderType: (params: any) => JSX.Element;
11
+ export declare const renderUserQuestion: (params: any) => JSX.Element;
11
12
  export {};
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ interface IUserForQuestionSelect {
3
+ value: string;
4
+ onChange: Function;
5
+ }
6
+ declare const UserForQuestionSelect: ({ value, onChange }: IUserForQuestionSelect) => JSX.Element;
7
+ export default UserForQuestionSelect;
@@ -5,3 +5,7 @@ export declare enum TYPE_QUESTION {
5
5
  Conference = 3,
6
6
  Survey = 4
7
7
  }
8
+ export declare const userForQuestion: {
9
+ value: string;
10
+ label: string;
11
+ }[];
@@ -24,6 +24,7 @@ declare type QuestionDetail = {
24
24
  subQuestions: string[];
25
25
  isBeforeSession: boolean;
26
26
  isDefaultQuestionSurvey: boolean;
27
+ userForQuestion?: string;
27
28
  };
28
29
  declare const useQuestionDetail: (id?: number | undefined, type?: number | undefined) => {
29
30
  questionDetail: QuestionDetail;
@@ -1,3 +1,3 @@
1
1
  import { FC } from "react";
2
- declare const TemplateSystemList: FC;
3
- export default TemplateSystemList;
2
+ declare const SubjectList: FC;
3
+ export default SubjectList;
@@ -5,4 +5,3 @@ export declare const update: (data: any) => Promise<import("axios").AxiosRespons
5
5
  export declare const remove: (id: number) => Promise<import("axios").AxiosResponse<any>>;
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
- export declare const updateHTMLIEP: (id: number, body: any) => Promise<import("axios").AxiosResponse<any>>;
@@ -5,6 +5,5 @@ declare type TemplateDetail = {
5
5
  };
6
6
  declare const useTemplateBuilder: (templateId: number) => {
7
7
  templateDetail: TemplateDetail;
8
- saveHTMLTemplate: (isPublish?: boolean | undefined) => Promise<void>;
9
8
  };
10
9
  export default useTemplateBuilder;
@@ -30,9 +30,6 @@ import CompareTeacher from "./containers/CompareTeacher/views/CompareTeacher";
30
30
  import Dashboard from "./containers/Dashboard/views/Dashboard";
31
31
  import SessionTemplateList from "./containers/SessionTemplate/views/SessionTemplateList";
32
32
  import SessionTemplateGeneralClassList from "./containers/SessionTemplateGeneralClass/views/SessionTemplateGeneralClassList";
33
- import TemplateContainer from "./containers/TemplateSystem/views/TemplateContainer";
34
- import TemplateBuilderPage from "./containers/TemplateSystem/views/TemplateBuilderPage";
35
- import TemplateStartBuild from "./containers/TemplateSystem/views/TemplateStartBuild";
36
33
  import LoadLanguage from "./components/Loading/LoadLanguage";
37
34
  import AdminTraining from "./containers/AdminTraining/views/AdminTraining";
38
- export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining, TemplateContainer, TemplateBuilderPage, TemplateStartBuild };
35
+ export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining };