mario-core 2.9.355-release → 2.9.357-prod
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.css +6 -0
- package/dist/index.js +240 -21
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +240 -21
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/constants.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -112,7 +112,7 @@ var confirm_password = "Confirm password";
|
|
|
112
112
|
var save = "Save";
|
|
113
113
|
var type_something_to_search_question = "Type something to search question";
|
|
114
114
|
var type_something_to_search_category = "Type something to search category";
|
|
115
|
-
var total_of_questions = "Total
|
|
115
|
+
var total_of_questions = "Total questions";
|
|
116
116
|
var create_question = "Create question";
|
|
117
117
|
var edit_question = "Edit question";
|
|
118
118
|
var question_type = "Question Type";
|
|
@@ -801,7 +801,7 @@ var conference_question = "Conference Question";
|
|
|
801
801
|
var actions = "Actions";
|
|
802
802
|
var order = "Order";
|
|
803
803
|
var user_for = "User for";
|
|
804
|
-
var question_category = "Question
|
|
804
|
+
var question_category = "Question category";
|
|
805
805
|
var template_survey = "Template Survey";
|
|
806
806
|
var total_of_category = "Total of category";
|
|
807
807
|
var create_template = "Create template";
|
|
@@ -2005,6 +2005,27 @@ var educator = "Educator";
|
|
|
2005
2005
|
var the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in = "The data presented in this chart reflects the student's <b>most recent check-in</b>.";
|
|
2006
2006
|
var free_fields_responses = "Free fields responses";
|
|
2007
2007
|
var please_select_a_category_to_view_data = "Please select a category to view data";
|
|
2008
|
+
var of = "of";
|
|
2009
|
+
var survey_management = "Survey Management";
|
|
2010
|
+
var questions_inside = "Questions inside";
|
|
2011
|
+
var search_in_categories = "Search in categories";
|
|
2012
|
+
var search_in_questions = "Search in questions";
|
|
2013
|
+
var total_of_categories = "Survey Categories";
|
|
2014
|
+
var all_questions = "All Questions";
|
|
2015
|
+
var enter_category_name = "Enter category name";
|
|
2016
|
+
var select_parent_category = "Select parent category";
|
|
2017
|
+
var new_survey_template_has_been_successfully_created = "New survey template has been successfully created";
|
|
2018
|
+
var this_survey_template_has_been_successfully_updated = "This survey template has been successfully updated";
|
|
2019
|
+
var action_survey_template = "{{action}} survey template";
|
|
2020
|
+
var select_question_category = "Select question category";
|
|
2021
|
+
var enter_new_survey_name = "Enter new survey name";
|
|
2022
|
+
var select_questions = "Select questions";
|
|
2023
|
+
var is_mandatory = "is Mandatory";
|
|
2024
|
+
var update_survey = "Update survey";
|
|
2025
|
+
var enter_answer = "Enter answer";
|
|
2026
|
+
var select_flag = "Select flag";
|
|
2027
|
+
var emotion_icon = "Emotion icon";
|
|
2028
|
+
var is_correct_answers = "Is correct answers";
|
|
2008
2029
|
var lang_us = {
|
|
2009
2030
|
dashboard: dashboard,
|
|
2010
2031
|
user: user,
|
|
@@ -4009,7 +4030,28 @@ var lang_us = {
|
|
|
4009
4030
|
educator: educator,
|
|
4010
4031
|
the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in: the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in,
|
|
4011
4032
|
free_fields_responses: free_fields_responses,
|
|
4012
|
-
please_select_a_category_to_view_data: please_select_a_category_to_view_data
|
|
4033
|
+
please_select_a_category_to_view_data: please_select_a_category_to_view_data,
|
|
4034
|
+
of: of,
|
|
4035
|
+
survey_management: survey_management,
|
|
4036
|
+
questions_inside: questions_inside,
|
|
4037
|
+
search_in_categories: search_in_categories,
|
|
4038
|
+
search_in_questions: search_in_questions,
|
|
4039
|
+
total_of_categories: total_of_categories,
|
|
4040
|
+
all_questions: all_questions,
|
|
4041
|
+
enter_category_name: enter_category_name,
|
|
4042
|
+
select_parent_category: select_parent_category,
|
|
4043
|
+
new_survey_template_has_been_successfully_created: new_survey_template_has_been_successfully_created,
|
|
4044
|
+
this_survey_template_has_been_successfully_updated: this_survey_template_has_been_successfully_updated,
|
|
4045
|
+
action_survey_template: action_survey_template,
|
|
4046
|
+
select_question_category: select_question_category,
|
|
4047
|
+
enter_new_survey_name: enter_new_survey_name,
|
|
4048
|
+
select_questions: select_questions,
|
|
4049
|
+
is_mandatory: is_mandatory,
|
|
4050
|
+
update_survey: update_survey,
|
|
4051
|
+
enter_answer: enter_answer,
|
|
4052
|
+
select_flag: select_flag,
|
|
4053
|
+
emotion_icon: emotion_icon,
|
|
4054
|
+
is_correct_answers: is_correct_answers
|
|
4013
4055
|
};
|
|
4014
4056
|
|
|
4015
4057
|
var dashboard$1 = "Dashboard";
|
|
@@ -4086,7 +4128,7 @@ var confirm_password$1 = "Confirm password";
|
|
|
4086
4128
|
var save$1 = "Save";
|
|
4087
4129
|
var type_something_to_search_question$1 = "Type something to search question";
|
|
4088
4130
|
var type_something_to_search_category$1 = "Type something to search category";
|
|
4089
|
-
var total_of_questions$1 = "Total
|
|
4131
|
+
var total_of_questions$1 = "Total questions";
|
|
4090
4132
|
var create_question$1 = "Create question";
|
|
4091
4133
|
var edit_question$1 = "Edit question";
|
|
4092
4134
|
var question_type$1 = "Question Type";
|
|
@@ -4776,7 +4818,7 @@ var conference_question$1 = "Conference Question";
|
|
|
4776
4818
|
var actions$1 = "Actions";
|
|
4777
4819
|
var order$1 = "Order";
|
|
4778
4820
|
var user_for$1 = "User for";
|
|
4779
|
-
var question_category$1 = "Question
|
|
4821
|
+
var question_category$1 = "Question category";
|
|
4780
4822
|
var template_survey$1 = "Template Survey";
|
|
4781
4823
|
var total_of_category$1 = "Total of category";
|
|
4782
4824
|
var create_template$1 = "Create template";
|
|
@@ -5979,6 +6021,27 @@ var educator$1 = "Educator";
|
|
|
5979
6021
|
var the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$1 = "The data presented in this chart reflects the student's <b>most recent check-in</b>.";
|
|
5980
6022
|
var free_fields_responses$1 = "Free fields responses";
|
|
5981
6023
|
var please_select_a_category_to_view_data$1 = "Please select a category to view data";
|
|
6024
|
+
var of$1 = "of";
|
|
6025
|
+
var survey_management$1 = "Survey Management";
|
|
6026
|
+
var questions_inside$1 = "Questions inside";
|
|
6027
|
+
var search_in_categories$1 = "Search in categories";
|
|
6028
|
+
var search_in_questions$1 = "Search in questions";
|
|
6029
|
+
var total_of_categories$1 = "Survey Categories";
|
|
6030
|
+
var all_questions$1 = "All Questions";
|
|
6031
|
+
var enter_category_name$1 = "Enter category name";
|
|
6032
|
+
var select_parent_category$1 = "Select parent category";
|
|
6033
|
+
var new_survey_template_has_been_successfully_created$1 = "New survey template has been successfully created";
|
|
6034
|
+
var this_survey_template_has_been_successfully_updated$1 = "This survey template has been successfully updated";
|
|
6035
|
+
var action_survey_template$1 = "{{action}} survey template";
|
|
6036
|
+
var select_question_category$1 = "Select question category";
|
|
6037
|
+
var enter_new_survey_name$1 = "Enter new survey name";
|
|
6038
|
+
var select_questions$1 = "Select questions";
|
|
6039
|
+
var is_mandatory$1 = "is Mandatory";
|
|
6040
|
+
var update_survey$1 = "Update survey";
|
|
6041
|
+
var enter_answer$1 = "Enter answer";
|
|
6042
|
+
var select_flag$1 = "Select flag";
|
|
6043
|
+
var emotion_icon$1 = "Emotion icon";
|
|
6044
|
+
var is_correct_answers$1 = "Is correct answers";
|
|
5982
6045
|
var lang_uk = {
|
|
5983
6046
|
dashboard: dashboard$1,
|
|
5984
6047
|
user: user$1,
|
|
@@ -7983,7 +8046,28 @@ var lang_uk = {
|
|
|
7983
8046
|
educator: educator$1,
|
|
7984
8047
|
the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in: the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$1,
|
|
7985
8048
|
free_fields_responses: free_fields_responses$1,
|
|
7986
|
-
please_select_a_category_to_view_data: please_select_a_category_to_view_data$1
|
|
8049
|
+
please_select_a_category_to_view_data: please_select_a_category_to_view_data$1,
|
|
8050
|
+
of: of$1,
|
|
8051
|
+
survey_management: survey_management$1,
|
|
8052
|
+
questions_inside: questions_inside$1,
|
|
8053
|
+
search_in_categories: search_in_categories$1,
|
|
8054
|
+
search_in_questions: search_in_questions$1,
|
|
8055
|
+
total_of_categories: total_of_categories$1,
|
|
8056
|
+
all_questions: all_questions$1,
|
|
8057
|
+
enter_category_name: enter_category_name$1,
|
|
8058
|
+
select_parent_category: select_parent_category$1,
|
|
8059
|
+
new_survey_template_has_been_successfully_created: new_survey_template_has_been_successfully_created$1,
|
|
8060
|
+
this_survey_template_has_been_successfully_updated: this_survey_template_has_been_successfully_updated$1,
|
|
8061
|
+
action_survey_template: action_survey_template$1,
|
|
8062
|
+
select_question_category: select_question_category$1,
|
|
8063
|
+
enter_new_survey_name: enter_new_survey_name$1,
|
|
8064
|
+
select_questions: select_questions$1,
|
|
8065
|
+
is_mandatory: is_mandatory$1,
|
|
8066
|
+
update_survey: update_survey$1,
|
|
8067
|
+
enter_answer: enter_answer$1,
|
|
8068
|
+
select_flag: select_flag$1,
|
|
8069
|
+
emotion_icon: emotion_icon$1,
|
|
8070
|
+
is_correct_answers: is_correct_answers$1
|
|
7987
8071
|
};
|
|
7988
8072
|
|
|
7989
8073
|
var dashboard$2 = "لوحة المعلومات";
|
|
@@ -9986,6 +10070,26 @@ var free_fields_responses$2 = "استجابات الحقول المجانية";
|
|
|
9986
10070
|
var please_select_a_category_to_view_data$2 = "الرجاء تحديد الفئة لعرض البيانات";
|
|
9987
10071
|
var educator$2 = "مُعلّم";
|
|
9988
10072
|
var the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$2 = "تعكس البيانات المقدمة في هذا المخطط <b>آخر تسجيل دخول</b> للطالب.";
|
|
10073
|
+
var survey_management$2 = "إدارة المسح";
|
|
10074
|
+
var questions_inside$2 = "أسئلة بالداخل";
|
|
10075
|
+
var search_in_categories$2 = "البحث في الفئات";
|
|
10076
|
+
var search_in_questions$2 = "البحث في الأسئلة";
|
|
10077
|
+
var total_of_categories$2 = "فئات الاستطلاع";
|
|
10078
|
+
var all_questions$2 = "جميع الأسئلة";
|
|
10079
|
+
var enter_category_name$2 = "أدخل اسم الفئة";
|
|
10080
|
+
var select_parent_category$2 = "حدد الفئة الأصلية";
|
|
10081
|
+
var new_survey_template_has_been_successfully_created$2 = "تم إنشاء قالب الاستطلاع الجديد بنجاح";
|
|
10082
|
+
var this_survey_template_has_been_successfully_updated$2 = "تم تحديث قالب الاستطلاع هذا بنجاح";
|
|
10083
|
+
var action_survey_template$2 = "قالب استطلاع {{action}}";
|
|
10084
|
+
var select_question_category$2 = "حدد فئة السؤال";
|
|
10085
|
+
var enter_new_survey_name$2 = "أدخل اسم الاستطلاع الجديد";
|
|
10086
|
+
var select_questions$2 = "اختر الأسئلة";
|
|
10087
|
+
var is_mandatory$2 = "هو إلزامي";
|
|
10088
|
+
var update_survey$2 = "تحديث الاستطلاع";
|
|
10089
|
+
var enter_answer$2 = "أدخل الإجابة";
|
|
10090
|
+
var select_flag$2 = "حدد العلم";
|
|
10091
|
+
var emotion_icon$2 = "أيقونة العاطفة";
|
|
10092
|
+
var is_correct_answers$2 = "هل هي اجابات صحيحة";
|
|
9989
10093
|
var lang_ar = {
|
|
9990
10094
|
dashboard: dashboard$2,
|
|
9991
10095
|
user: user$2,
|
|
@@ -12025,7 +12129,27 @@ var lang_ar = {
|
|
|
12025
12129
|
free_fields_responses: free_fields_responses$2,
|
|
12026
12130
|
please_select_a_category_to_view_data: please_select_a_category_to_view_data$2,
|
|
12027
12131
|
educator: educator$2,
|
|
12028
|
-
the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in: the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$2
|
|
12132
|
+
the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in: the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$2,
|
|
12133
|
+
survey_management: survey_management$2,
|
|
12134
|
+
questions_inside: questions_inside$2,
|
|
12135
|
+
search_in_categories: search_in_categories$2,
|
|
12136
|
+
search_in_questions: search_in_questions$2,
|
|
12137
|
+
total_of_categories: total_of_categories$2,
|
|
12138
|
+
all_questions: all_questions$2,
|
|
12139
|
+
enter_category_name: enter_category_name$2,
|
|
12140
|
+
select_parent_category: select_parent_category$2,
|
|
12141
|
+
new_survey_template_has_been_successfully_created: new_survey_template_has_been_successfully_created$2,
|
|
12142
|
+
this_survey_template_has_been_successfully_updated: this_survey_template_has_been_successfully_updated$2,
|
|
12143
|
+
action_survey_template: action_survey_template$2,
|
|
12144
|
+
select_question_category: select_question_category$2,
|
|
12145
|
+
enter_new_survey_name: enter_new_survey_name$2,
|
|
12146
|
+
select_questions: select_questions$2,
|
|
12147
|
+
is_mandatory: is_mandatory$2,
|
|
12148
|
+
update_survey: update_survey$2,
|
|
12149
|
+
enter_answer: enter_answer$2,
|
|
12150
|
+
select_flag: select_flag$2,
|
|
12151
|
+
emotion_icon: emotion_icon$2,
|
|
12152
|
+
is_correct_answers: is_correct_answers$2
|
|
12029
12153
|
};
|
|
12030
12154
|
|
|
12031
12155
|
var dashboard$3 = "Cuadro de mandos";
|
|
@@ -14028,6 +14152,26 @@ var educator$3 = "Educadora";
|
|
|
14028
14152
|
var the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$3 = "Los datos presentados en este gráfico reflejan el <b>registro más reciente</b> del estudiante.";
|
|
14029
14153
|
var free_fields_responses$3 = "Respuestas de campos libres";
|
|
14030
14154
|
var please_select_a_category_to_view_data$3 = "Seleccione una categoría para ver los datos";
|
|
14155
|
+
var survey_management$3 = "Gestión de encuestas";
|
|
14156
|
+
var questions_inside$3 = "Preguntas dentro";
|
|
14157
|
+
var search_in_categories$3 = "Buscar en categorías";
|
|
14158
|
+
var search_in_questions$3 = "Buscar en preguntas";
|
|
14159
|
+
var total_of_categories$3 = "Categorías de la encuesta";
|
|
14160
|
+
var all_questions$3 = "Todas las preguntas";
|
|
14161
|
+
var enter_category_name$3 = "Introduzca el nombre de la categoría";
|
|
14162
|
+
var select_parent_category$3 = "Seleccionar categoría principal";
|
|
14163
|
+
var new_survey_template_has_been_successfully_created$3 = "Se ha creado correctamente la nueva plantilla de encuesta";
|
|
14164
|
+
var this_survey_template_has_been_successfully_updated$3 = "Esta plantilla de encuesta se ha actualizado correctamente";
|
|
14165
|
+
var action_survey_template$3 = "Plantilla de encuesta {{action}}";
|
|
14166
|
+
var select_question_category$3 = "Seleccione la categoría de la pregunta";
|
|
14167
|
+
var enter_new_survey_name$3 = "Introduzca el nuevo nombre de la encuesta";
|
|
14168
|
+
var select_questions$3 = "Seleccione preguntas";
|
|
14169
|
+
var is_mandatory$3 = "Es obligatoria";
|
|
14170
|
+
var update_survey$3 = "Actualizar encuesta";
|
|
14171
|
+
var enter_answer$3 = "Introducir respuesta";
|
|
14172
|
+
var select_flag$3 = "Seleccionar bandera";
|
|
14173
|
+
var emotion_icon$3 = "Icono de emoción";
|
|
14174
|
+
var is_correct_answers$3 = "¿Son respuestas correctas?";
|
|
14031
14175
|
var lang_es = {
|
|
14032
14176
|
dashboard: dashboard$3,
|
|
14033
14177
|
user: user$3,
|
|
@@ -16067,7 +16211,27 @@ var lang_es = {
|
|
|
16067
16211
|
educator: educator$3,
|
|
16068
16212
|
the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in: the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$3,
|
|
16069
16213
|
free_fields_responses: free_fields_responses$3,
|
|
16070
|
-
please_select_a_category_to_view_data: please_select_a_category_to_view_data$3
|
|
16214
|
+
please_select_a_category_to_view_data: please_select_a_category_to_view_data$3,
|
|
16215
|
+
survey_management: survey_management$3,
|
|
16216
|
+
questions_inside: questions_inside$3,
|
|
16217
|
+
search_in_categories: search_in_categories$3,
|
|
16218
|
+
search_in_questions: search_in_questions$3,
|
|
16219
|
+
total_of_categories: total_of_categories$3,
|
|
16220
|
+
all_questions: all_questions$3,
|
|
16221
|
+
enter_category_name: enter_category_name$3,
|
|
16222
|
+
select_parent_category: select_parent_category$3,
|
|
16223
|
+
new_survey_template_has_been_successfully_created: new_survey_template_has_been_successfully_created$3,
|
|
16224
|
+
this_survey_template_has_been_successfully_updated: this_survey_template_has_been_successfully_updated$3,
|
|
16225
|
+
action_survey_template: action_survey_template$3,
|
|
16226
|
+
select_question_category: select_question_category$3,
|
|
16227
|
+
enter_new_survey_name: enter_new_survey_name$3,
|
|
16228
|
+
select_questions: select_questions$3,
|
|
16229
|
+
is_mandatory: is_mandatory$3,
|
|
16230
|
+
update_survey: update_survey$3,
|
|
16231
|
+
enter_answer: enter_answer$3,
|
|
16232
|
+
select_flag: select_flag$3,
|
|
16233
|
+
emotion_icon: emotion_icon$3,
|
|
16234
|
+
is_correct_answers: is_correct_answers$3
|
|
16071
16235
|
};
|
|
16072
16236
|
|
|
16073
16237
|
var dashboard$4 = "仪表板";
|
|
@@ -18070,6 +18234,26 @@ var educator$4 = "教育者";
|
|
|
18070
18234
|
var the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$4 = "此图表中显示的数据反映了学生<b>最近的签到情况</b>。";
|
|
18071
18235
|
var free_fields_responses$4 = "自由场响应";
|
|
18072
18236
|
var please_select_a_category_to_view_data$4 = "请选择一个类别来查看数据";
|
|
18237
|
+
var survey_management$4 = "调查管理";
|
|
18238
|
+
var questions_inside$4 = "里面有疑问";
|
|
18239
|
+
var search_in_categories$4 = "按类别搜索";
|
|
18240
|
+
var search_in_questions$4 = "在问题中搜索";
|
|
18241
|
+
var total_of_categories$4 = "调查类别";
|
|
18242
|
+
var all_questions$4 = "所有问题";
|
|
18243
|
+
var enter_category_name$4 = "输入类别名称";
|
|
18244
|
+
var select_parent_category$4 = "选择父类别";
|
|
18245
|
+
var new_survey_template_has_been_successfully_created$4 = "新的调查模板已成功创建";
|
|
18246
|
+
var this_survey_template_has_been_successfully_updated$4 = "此调查模板已成功更新";
|
|
18247
|
+
var action_survey_template$4 = "{{action}} 调查模板";
|
|
18248
|
+
var select_question_category$4 = "选择问题类别";
|
|
18249
|
+
var enter_new_survey_name$4 = "输入新调查名称";
|
|
18250
|
+
var select_questions$4 = "选择问题";
|
|
18251
|
+
var is_mandatory$4 = "是强制性的";
|
|
18252
|
+
var update_survey$4 = "更新调查";
|
|
18253
|
+
var enter_answer$4 = "输入答案";
|
|
18254
|
+
var select_flag$4 = "选择标志";
|
|
18255
|
+
var emotion_icon$4 = "情感图标";
|
|
18256
|
+
var is_correct_answers$4 = "是正确答案";
|
|
18073
18257
|
var lang_zh = {
|
|
18074
18258
|
dashboard: dashboard$4,
|
|
18075
18259
|
user: user$4,
|
|
@@ -20109,7 +20293,27 @@ var lang_zh = {
|
|
|
20109
20293
|
educator: educator$4,
|
|
20110
20294
|
the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in: the_data_presented_in_this_chart_reflects_the_student_s_most_recent_check_in$4,
|
|
20111
20295
|
free_fields_responses: free_fields_responses$4,
|
|
20112
|
-
please_select_a_category_to_view_data: please_select_a_category_to_view_data$4
|
|
20296
|
+
please_select_a_category_to_view_data: please_select_a_category_to_view_data$4,
|
|
20297
|
+
survey_management: survey_management$4,
|
|
20298
|
+
questions_inside: questions_inside$4,
|
|
20299
|
+
search_in_categories: search_in_categories$4,
|
|
20300
|
+
search_in_questions: search_in_questions$4,
|
|
20301
|
+
total_of_categories: total_of_categories$4,
|
|
20302
|
+
all_questions: all_questions$4,
|
|
20303
|
+
enter_category_name: enter_category_name$4,
|
|
20304
|
+
select_parent_category: select_parent_category$4,
|
|
20305
|
+
new_survey_template_has_been_successfully_created: new_survey_template_has_been_successfully_created$4,
|
|
20306
|
+
this_survey_template_has_been_successfully_updated: this_survey_template_has_been_successfully_updated$4,
|
|
20307
|
+
action_survey_template: action_survey_template$4,
|
|
20308
|
+
select_question_category: select_question_category$4,
|
|
20309
|
+
enter_new_survey_name: enter_new_survey_name$4,
|
|
20310
|
+
select_questions: select_questions$4,
|
|
20311
|
+
is_mandatory: is_mandatory$4,
|
|
20312
|
+
update_survey: update_survey$4,
|
|
20313
|
+
enter_answer: enter_answer$4,
|
|
20314
|
+
select_flag: select_flag$4,
|
|
20315
|
+
emotion_icon: emotion_icon$4,
|
|
20316
|
+
is_correct_answers: is_correct_answers$4
|
|
20113
20317
|
};
|
|
20114
20318
|
|
|
20115
20319
|
var TINY_MCE_API_KEY = "htqausuofrnali3nh9ivmlpq6v415o0tv2qikpg39bqf4pnk";
|
|
@@ -20266,6 +20470,7 @@ var LANGUAGES = [{
|
|
|
20266
20470
|
}];
|
|
20267
20471
|
var DEFAULT_LANGUAGE_CODE = "en-US";
|
|
20268
20472
|
var SUPPORTED_LANGUAGES_CODE = ["en-US", "en-GB", "ar", "es", "zh"];
|
|
20473
|
+
var screenWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
|
|
20269
20474
|
|
|
20270
20475
|
var resources$5 = {
|
|
20271
20476
|
"en-US": {
|
|
@@ -20314,7 +20519,7 @@ function _catch(body, recover) {
|
|
|
20314
20519
|
return result;
|
|
20315
20520
|
}
|
|
20316
20521
|
|
|
20317
|
-
var styles = {"btn-login-google":"_2HqmH","notification-count":"_2sew7","text-introduction":"_3OgWF","btn-trans-border":"_r9cAh","contact":"_NszFe","learn-more":"_MDjzH","title-quote":"_1Swkw","descriptions-quote":"_gi8vj","box-login":"_38Lo1","block-verification":"_1OzGy","block-login":"_wWIyO","class-link-sso-image":"_3EZva","title-login":"_3nuns","title-forgot-password":"_21qb6","btn-close":"_NhW9l","btn-login":"_3IL10","school-icon":"_2OUwW","school-name":"_2Owso","login-description":"_fx-kA","digital-privacy-icon":"_141p1","return-to-login":"_Ce3Kg","recover-account":"_2t6d9","link-to-login":"_3bDsd","privacy-policy":"_I4SVu","remember":"_11FZt","term-and-conditions":"_3LXoI","descriptions-forgot-pass":"_PMcjT","content-icon":"_2rZY6","descriptions-icon":"_3SOdX","title-icon":"_y9lM2","nav-home":"_1TT1q","box-introduction":"_32V6L","icon":"_20YJX","checkbox-keep-login":"_1AiX0","label-keep-login":"_2uNvW","option-text":"_pqn4y","form-user-name":"_39BJD","input":"_ozRAq","checkbox-remember":"_2K9b2","btn-rounder":"_2VvIr","btn-active":"_2A0HF","block-reset-password":"_23Sua","block-forgot-pass":"_3CWP6","page-not-login":"_3Wmco","content-quote":"_13Rk0","home-page":"_o6HKW","bg-animate":"_30npl","active":"_3oAH-","show":"_16rY4","fade-in":"_26nbh","behind":"_3A7Vv","login":"_F-hjL","login-content":"_149oA","logo-home":"_24U3W","img-box":"_2v-L_","img-login":"_3ncTL","img-login-rectangle":"_2kOvJ","c-main":"_39l0X","container-fluid":"_1BMwK","input-file-label":"_1XNpH","delete-avatar-button":"_1z5h9","header-logo":"_Gewcf","box-sidebar":"_2vcmv","sidebar-logo":"_1hXpy","sidebar-nav-links":"_3vb3s","c-active":"_36jSM","sidebar-nav-links-hover":"_DNrus","box-sidebar-header":"_3NEZj","box-logout":"_1wUDG","sidebar-btn-minimized":"_1S7Px","sidebar-minimized-logo":"_3846X","sidebar-logout":"_2P85D","nav-mobile":"_1qjbW","filter-media-file":"_1I62C","div":"_3cLcM","dropdown-menu":"_1krbH","header-avatar":"_RQaHE","dropdown-menu-flag":"_XK8oS","dropdown-content":"_3ys4W","dropdown-change":"_ToOW_","item-address":"_3sQlR","item-logout":"_3bqSM","title-address":"_1jgSI","img-avatar":"_35Ttz","item-contact":"_1wc7o","logout":"_1_9tV","content-text":"_3S4f2","dropdown-content-language":"_3ajui","dropdown-item-language":"_3Y_y4","dropdown-item-language-active":"_CzNMi","popover__sort__item":"_1ocBa","popover__sort__item--active":"_18NhM","popover__search__icon":"_2bquW","popover__search__input":"_3A4G4","popover__options":"_1MsEW","button-export":"_2rTzM","button-content":"_18y0w","button-icon":"_3cZAT","hide-in-mobile":"_1INnO","hamburger-menu":"_2yRc8","box-content-home-page":"_ABUIP","collapse-box":"_WX97m","hide-in-desktop":"_2LIqK","control-input":"_2Zz97","custom-control":"_3-yp5","item-select-role":"_1KcY7","item-role-active":"_dOVso","model-switch-roles":"_3ZqxI","title":"_g-p72","btn-login-with-sso":"_DrSlA","app-alert":"_3Vgah","app-alert--success":"_1jraB"};
|
|
20522
|
+
var styles = {"btn-login-google":"_2HqmH","notification-count":"_2sew7","text-introduction":"_3OgWF","btn-trans-border":"_r9cAh","contact":"_NszFe","learn-more":"_MDjzH","title-quote":"_1Swkw","descriptions-quote":"_gi8vj","box-login":"_38Lo1","block-verification":"_1OzGy","block-login":"_wWIyO","class-link-sso-image":"_3EZva","title-login":"_3nuns","title-forgot-password":"_21qb6","btn-close":"_NhW9l","btn-login":"_3IL10","school-icon":"_2OUwW","school-name":"_2Owso","login-description":"_fx-kA","digital-privacy-icon":"_141p1","return-to-login":"_Ce3Kg","recover-account":"_2t6d9","link-to-login":"_3bDsd","privacy-policy":"_I4SVu","remember":"_11FZt","term-and-conditions":"_3LXoI","descriptions-forgot-pass":"_PMcjT","content-icon":"_2rZY6","descriptions-icon":"_3SOdX","title-icon":"_y9lM2","nav-home":"_1TT1q","box-introduction":"_32V6L","icon":"_20YJX","checkbox-keep-login":"_1AiX0","label-keep-login":"_2uNvW","option-text":"_pqn4y","form-user-name":"_39BJD","input":"_ozRAq","checkbox-remember":"_2K9b2","btn-rounder":"_2VvIr","btn-active":"_2A0HF","block-reset-password":"_23Sua","block-forgot-pass":"_3CWP6","page-not-login":"_3Wmco","content-quote":"_13Rk0","home-page":"_o6HKW","bg-animate":"_30npl","active":"_3oAH-","show":"_16rY4","fade-in":"_26nbh","behind":"_3A7Vv","login":"_F-hjL","login-content":"_149oA","logo-home":"_24U3W","img-box":"_2v-L_","img-login":"_3ncTL","img-login-rectangle":"_2kOvJ","c-main":"_39l0X","container-fluid":"_1BMwK","input-file-label":"_1XNpH","delete-avatar-button":"_1z5h9","header-logo":"_Gewcf","box-sidebar":"_2vcmv","sidebar-logo":"_1hXpy","sidebar-nav-links":"_3vb3s","c-active":"_36jSM","sidebar-nav-links-hover":"_DNrus","box-sidebar-header":"_3NEZj","box-logout":"_1wUDG","sidebar-btn-minimized":"_1S7Px","sidebar-minimized-logo":"_3846X","sidebar-logout":"_2P85D","nav-mobile":"_1qjbW","filter-media-file":"_1I62C","div":"_3cLcM","dropdown-menu":"_1krbH","header-avatar":"_RQaHE","dropdown-menu-flag":"_XK8oS","dropdown-content":"_3ys4W","dropdown-change":"_ToOW_","item-address":"_3sQlR","item-logout":"_3bqSM","title-address":"_1jgSI","img-avatar":"_35Ttz","item-contact":"_1wc7o","logout":"_1_9tV","content-text":"_3S4f2","dropdown-content-language":"_3ajui","dropdown-item-language":"_3Y_y4","dropdown-item-language-active":"_CzNMi","popover__sort__item":"_1ocBa","popover__sort__item--active":"_18NhM","popover__search__icon":"_2bquW","popover__search__input":"_3A4G4","popover__options":"_1MsEW","button-export":"_2rTzM","button-content":"_18y0w","button-icon":"_3cZAT","hide-in-mobile":"_1INnO","hamburger-menu":"_2yRc8","box-content-home-page":"_ABUIP","collapse-box":"_WX97m","hide-in-desktop":"_2LIqK","control-input":"_2Zz97","custom-control":"_3-yp5","item-select-role":"_1KcY7","item-role-active":"_dOVso","model-switch-roles":"_3ZqxI","title":"_g-p72","btn-login-with-sso":"_DrSlA","app-alert":"_3Vgah","app-alert--success":"_1jraB","p-0-12":"_1sfzz"};
|
|
20318
20523
|
|
|
20319
20524
|
var style = {
|
|
20320
20525
|
fontSize: "0.85rem"
|
|
@@ -39502,7 +39707,7 @@ var HOME_ADMIN = "/admin/users/user-list";
|
|
|
39502
39707
|
var HOME_TEACHER = "/home";
|
|
39503
39708
|
var HOME_STUDENT = "/home";
|
|
39504
39709
|
var DASHBOARD_TITLE = "Dashboard";
|
|
39505
|
-
var ROOT_TITLE = "Mario
|
|
39710
|
+
var ROOT_TITLE = "Mario Education";
|
|
39506
39711
|
var BG_IMAGES = ["images/landing-page.jpg", "images/landing-page2.jpg", "images/landing-page3.jpg"];
|
|
39507
39712
|
|
|
39508
39713
|
var Dashboard = function Dashboard() {
|
|
@@ -39903,12 +40108,12 @@ var TheContent = function TheContent(_ref) {
|
|
|
39903
40108
|
var location = useLocation();
|
|
39904
40109
|
var pathname = location.pathname;
|
|
39905
40110
|
var dashboard = !pathname.includes("/admin") ? "box-container" : "";
|
|
39906
|
-
var
|
|
40111
|
+
var paddingAdmin = pathname.includes("/admin") ? "pt-3" : "";
|
|
39907
40112
|
return React.createElement("main", {
|
|
39908
40113
|
className: "c-main " + dashboard
|
|
39909
40114
|
}, React.createElement(CContainer, {
|
|
39910
40115
|
fluid: true,
|
|
39911
|
-
className: "h-100 " +
|
|
40116
|
+
className: "h-100 " + paddingAdmin
|
|
39912
40117
|
}, React.createElement(Suspense, {
|
|
39913
40118
|
fallback: loading
|
|
39914
40119
|
}, React.createElement(Switch, null, routes.map(function (route, idx) {
|
|
@@ -40356,9 +40561,8 @@ var style$1 = {
|
|
|
40356
40561
|
bottom: 70,
|
|
40357
40562
|
backgroundColor: "#fff",
|
|
40358
40563
|
borderTop: "1px solid #ddd",
|
|
40359
|
-
marginLeft: "-30px",
|
|
40360
40564
|
padding: "18px 8px",
|
|
40361
|
-
zIndex:
|
|
40565
|
+
zIndex: 2
|
|
40362
40566
|
};
|
|
40363
40567
|
|
|
40364
40568
|
var DetailActionButtons = function DetailActionButtons(_ref) {
|
|
@@ -40369,11 +40573,18 @@ var DetailActionButtons = function DetailActionButtons(_ref) {
|
|
|
40369
40573
|
var _useTranslation = useTranslation(),
|
|
40370
40574
|
t = _useTranslation.t;
|
|
40371
40575
|
|
|
40576
|
+
var customizeStyle = screenWidth <= 767 ? Object.assign(style$1, {
|
|
40577
|
+
bottom: 0,
|
|
40578
|
+
magin: 0
|
|
40579
|
+
}) : _extends({}, style$1);
|
|
40372
40580
|
return React.createElement(Row, {
|
|
40373
40581
|
form: true,
|
|
40374
|
-
style:
|
|
40582
|
+
style: customizeStyle
|
|
40375
40583
|
}, React.createElement(Col, {
|
|
40376
|
-
md: 12
|
|
40584
|
+
md: 12,
|
|
40585
|
+
style: {
|
|
40586
|
+
textAlign: screenWidth <= 767 ? 'right' : 'left'
|
|
40587
|
+
}
|
|
40377
40588
|
}, React.createElement(Button, {
|
|
40378
40589
|
color: "primary",
|
|
40379
40590
|
size: "sm",
|
|
@@ -43502,7 +43713,7 @@ var UserList = function UserList() {
|
|
|
43502
43713
|
};
|
|
43503
43714
|
|
|
43504
43715
|
return React.createElement("div", {
|
|
43505
|
-
className: "fadeIn animated h-100
|
|
43716
|
+
className: "fadeIn animated h-100 " + (screenWidth <= 767 ? styles['p-0-12'] : '')
|
|
43506
43717
|
}, React.createElement("h5", {
|
|
43507
43718
|
className: "mb-2"
|
|
43508
43719
|
}, t("" + header$2)), React.createElement(Row, {
|
|
@@ -43546,7 +43757,11 @@ var UserList = function UserList() {
|
|
|
43546
43757
|
className: "mb-2"
|
|
43547
43758
|
}, React.createElement(Col, {
|
|
43548
43759
|
md: 12
|
|
43549
|
-
}, React.createElement("div",
|
|
43760
|
+
}, React.createElement("div", {
|
|
43761
|
+
style: {
|
|
43762
|
+
overflow: 'auto'
|
|
43763
|
+
}
|
|
43764
|
+
}, React.createElement(Table, {
|
|
43550
43765
|
bordered: true,
|
|
43551
43766
|
hover: true,
|
|
43552
43767
|
striped: true,
|
|
@@ -44674,7 +44889,11 @@ var AssignStudentList = function AssignStudentList() {
|
|
|
44674
44889
|
className: "mb-2"
|
|
44675
44890
|
}, React.createElement(Col, {
|
|
44676
44891
|
md: 12
|
|
44677
|
-
}, !!userList && userList.length > 0 ? React.createElement("div",
|
|
44892
|
+
}, !!userList && userList.length > 0 ? React.createElement("div", {
|
|
44893
|
+
style: {
|
|
44894
|
+
overflow: 'auto'
|
|
44895
|
+
}
|
|
44896
|
+
}, React.createElement(Table, {
|
|
44678
44897
|
bordered: true,
|
|
44679
44898
|
hover: true,
|
|
44680
44899
|
striped: true,
|
|
@@ -45490,7 +45709,7 @@ var UserDetail = function UserDetail() {
|
|
|
45490
45709
|
setFieldValue("roles", [].concat(values.roles, [role]));
|
|
45491
45710
|
}, [values.roles]);
|
|
45492
45711
|
return React.createElement("div", {
|
|
45493
|
-
className: "animated fadeIn detail-buttons-padding"
|
|
45712
|
+
className: "animated fadeIn detail-buttons-padding " + (screenWidth <= 767 ? styles['p-0-12'] : '')
|
|
45494
45713
|
}, React.createElement(QuitPrompt, {
|
|
45495
45714
|
when: edited
|
|
45496
45715
|
}), React.createElement("h5", {
|