mario-education 2.4.112-beta → 2.4.121-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.
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/components/AgGridComponents.d.ts +0 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/configs/constants.d.ts +0 -4
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/hooks/useQuestionDetail.d.ts +0 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/Subject/views/SubjectList.d.ts +2 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSystem/apiClient/index.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSystem/hooks/useTemplateBuilder.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/index.d.ts +4 -1
- package/dist/index.css +46 -0
- package/dist/index.js +1084 -128
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1082 -129
- package/dist/index.modern.js.map +1 -1
- package/package.json +4 -2
|
@@ -8,5 +8,4 @@ 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;
|
|
12
11
|
export {};
|
|
@@ -24,7 +24,6 @@ declare type QuestionDetail = {
|
|
|
24
24
|
subQuestions: string[];
|
|
25
25
|
isBeforeSession: boolean;
|
|
26
26
|
isDefaultQuestionSurvey: boolean;
|
|
27
|
-
userForQuestion?: string;
|
|
28
27
|
};
|
|
29
28
|
declare const useQuestionDetail: (id?: number | undefined, type?: number | undefined) => {
|
|
30
29
|
questionDetail: QuestionDetail;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Subject/views/SubjectList.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const TemplateSystemList: FC;
|
|
3
|
+
export default TemplateSystemList;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSystem/apiClient/index.d.ts
CHANGED
|
@@ -5,3 +5,4 @@ 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>>;
|
|
@@ -30,6 +30,9 @@ 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";
|
|
33
36
|
import LoadLanguage from "./components/Loading/LoadLanguage";
|
|
34
37
|
import AdminTraining from "./containers/AdminTraining/views/AdminTraining";
|
|
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 };
|
|
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 };
|
package/dist/index.css
CHANGED
|
@@ -195,6 +195,52 @@ tbody._b-AXV tr {
|
|
|
195
195
|
display: flex;
|
|
196
196
|
width: 40%;
|
|
197
197
|
padding-bottom: 10px;
|
|
198
|
+
}
|
|
199
|
+
._1WxAe {
|
|
200
|
+
border-right: 1px solid #d8dbe0;
|
|
201
|
+
height: 100vh;
|
|
202
|
+
padding: 20px 0px 35px 0px;
|
|
203
|
+
margin: 0;
|
|
204
|
+
}
|
|
205
|
+
._3_Ed7 {
|
|
206
|
+
text-align: center;
|
|
207
|
+
margin-bottom: 25px;
|
|
208
|
+
cursor: pointer;
|
|
209
|
+
height: 260px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
._3_Ed7 h5 {
|
|
213
|
+
font-size: 15px;
|
|
214
|
+
}
|
|
215
|
+
._3uUiv {
|
|
216
|
+
height: 200px;
|
|
217
|
+
border-radius: 10px;
|
|
218
|
+
background: #fff;
|
|
219
|
+
box-shadow: 0px 0px 10px 5px #cdcdcd;
|
|
220
|
+
margin-bottom: 12px;
|
|
221
|
+
}
|
|
222
|
+
._3_Ed7._3sodH ._3uUiv {
|
|
223
|
+
box-shadow: 0px 0px 10px 5px #3c65e0;
|
|
224
|
+
}
|
|
225
|
+
._3_Ed7._3sodH h5 {
|
|
226
|
+
font-size: 15px;
|
|
227
|
+
color: #3c65e0;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
._Az5Kt {
|
|
231
|
+
padding: 15px;
|
|
232
|
+
display: flex;
|
|
233
|
+
border-bottom: 1px solid #d8dbe0;
|
|
234
|
+
position: sticky;
|
|
235
|
+
justify-content: space-between;
|
|
236
|
+
align-items: center;
|
|
237
|
+
}
|
|
238
|
+
._Az5Kt h5 {
|
|
239
|
+
font-size: 15px;
|
|
240
|
+
margin-bottom: 0px;
|
|
241
|
+
}
|
|
242
|
+
._1Jrg_ {
|
|
243
|
+
padding: 15px 20px;
|
|
198
244
|
}
|
|
199
245
|
._3DVMZ {
|
|
200
246
|
display: flex;
|