mario-education 2.4.2 → 2.4.4
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/index.js +27 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +27 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -8240,7 +8240,15 @@ var SwitchTeacherModal = function SwitchTeacherModal(props, ref) {
|
|
|
8240
8240
|
}, React.createElement(Row, null, React.createElement(Col, {
|
|
8241
8241
|
md: 12,
|
|
8242
8242
|
className: "mb-2"
|
|
8243
|
-
}, React.createElement("p",
|
|
8243
|
+
}, React.createElement("p", {
|
|
8244
|
+
className: "font-weight-bold"
|
|
8245
|
+
}, "Student Name"), React.createElement("p", null, userChoiced.studentName, " "), React.createElement("p", {
|
|
8246
|
+
className: "font-weight-bold"
|
|
8247
|
+
}, "Student Email"), React.createElement("p", null, userChoiced.emailStudent, " "), React.createElement("p", {
|
|
8248
|
+
className: "font-weight-bold"
|
|
8249
|
+
}, "Current Teacher Name"), React.createElement("p", null, userChoiced.teacherName, " "), React.createElement("p", {
|
|
8250
|
+
className: "font-weight-bold"
|
|
8251
|
+
}, "Current Teacher Email"), React.createElement("p", null, userChoiced.emailTeacher, " "), !!userChoiced && React.createElement(CustomSelector, {
|
|
8244
8252
|
options: options,
|
|
8245
8253
|
value: valueDefault,
|
|
8246
8254
|
placeholder: "Select teacher change",
|
|
@@ -12851,6 +12859,24 @@ var tabs$3 = [{
|
|
|
12851
12859
|
path: "/admin/question/question-list",
|
|
12852
12860
|
title: "Question list",
|
|
12853
12861
|
component: QuestionBankList
|
|
12862
|
+
}, {
|
|
12863
|
+
path: "/admin/question/default-question-list",
|
|
12864
|
+
title: "Default question list",
|
|
12865
|
+
component: function component() {
|
|
12866
|
+
return React.createElement(QuestionBankList, {
|
|
12867
|
+
isDefaultQuestion: true,
|
|
12868
|
+
isDefaultQuestionGeneral: false
|
|
12869
|
+
});
|
|
12870
|
+
}
|
|
12871
|
+
}, {
|
|
12872
|
+
path: "/admin/question/default-question-general-list",
|
|
12873
|
+
title: "Default question general class list",
|
|
12874
|
+
component: function component() {
|
|
12875
|
+
return React.createElement(QuestionBankList, {
|
|
12876
|
+
isDefaultQuestion: false,
|
|
12877
|
+
isDefaultQuestionGeneral: true
|
|
12878
|
+
});
|
|
12879
|
+
}
|
|
12854
12880
|
}, {
|
|
12855
12881
|
path: "/admin/question/question-category",
|
|
12856
12882
|
title: "Question category",
|