mario-education 2.4.3 → 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 +18 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +18 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12862,6 +12862,24 @@ var tabs$3 = [{
|
|
|
12862
12862
|
path: "/admin/question/question-list",
|
|
12863
12863
|
title: "Question list",
|
|
12864
12864
|
component: QuestionBankList
|
|
12865
|
+
}, {
|
|
12866
|
+
path: "/admin/question/default-question-list",
|
|
12867
|
+
title: "Default question list",
|
|
12868
|
+
component: function component() {
|
|
12869
|
+
return React__default.createElement(QuestionBankList, {
|
|
12870
|
+
isDefaultQuestion: true,
|
|
12871
|
+
isDefaultQuestionGeneral: false
|
|
12872
|
+
});
|
|
12873
|
+
}
|
|
12874
|
+
}, {
|
|
12875
|
+
path: "/admin/question/default-question-general-list",
|
|
12876
|
+
title: "Default question general class list",
|
|
12877
|
+
component: function component() {
|
|
12878
|
+
return React__default.createElement(QuestionBankList, {
|
|
12879
|
+
isDefaultQuestion: false,
|
|
12880
|
+
isDefaultQuestionGeneral: true
|
|
12881
|
+
});
|
|
12882
|
+
}
|
|
12865
12883
|
}, {
|
|
12866
12884
|
path: "/admin/question/question-category",
|
|
12867
12885
|
title: "Question category",
|