mario-core 2.9.137-level → 2.9.139-level
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 +42 -30
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +42 -30
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -609,9 +609,10 @@ var share_survey = "Share Survey";
|
|
|
609
609
|
var new_survey = "New Survey";
|
|
610
610
|
var assign_counselor = "Assign Counselor";
|
|
611
611
|
var select_counselor = "Select Counselor";
|
|
612
|
-
var
|
|
613
|
-
var
|
|
614
|
-
var
|
|
612
|
+
var select_support_teacher = "Select Support Teacher";
|
|
613
|
+
var assign_support_teacher = "Assign Support Teacher";
|
|
614
|
+
var switch_support_teacher = "Switch Support Teacher";
|
|
615
|
+
var support_teacher_name = "Support Teacher Name";
|
|
615
616
|
var user_for_question = "User For Question";
|
|
616
617
|
var requested_reflection = "Requested Reflection";
|
|
617
618
|
var request_class_reflection = "Request Class Reflection";
|
|
@@ -622,10 +623,10 @@ var remove_counselor = "Remove Counselor";
|
|
|
622
623
|
var current_counselor_email = "Current Counselor Email";
|
|
623
624
|
var current_counselor_name = "Current Counselor Name";
|
|
624
625
|
var select_counselor_change = "Select Counselor Change";
|
|
625
|
-
var
|
|
626
|
-
var
|
|
627
|
-
var
|
|
628
|
-
var
|
|
626
|
+
var current_support_teacher_name = "Current Support Teacher Name";
|
|
627
|
+
var current_support_teacher_email = "Current Support Teacher Email";
|
|
628
|
+
var remove_support_teacher = "Remove Support Teacher";
|
|
629
|
+
var select_support_teacher_change = "Select Support Teacher Change";
|
|
629
630
|
var filter_calendar = "Filter calendar";
|
|
630
631
|
var average_student_safety = "Average Student Safety";
|
|
631
632
|
var is_active = "Is Active";
|
|
@@ -693,6 +694,8 @@ var no_last_or_requested_check_ins = "No last or requested Check-Ins";
|
|
|
693
694
|
var students_who_are_highly_stressed = "Students who are highly stressed";
|
|
694
695
|
var students_who_are_not_feeling_safe = "Students who are not feeling safe";
|
|
695
696
|
var students_missing_a_weekly_check_in = "Students missing a weekly check-in";
|
|
697
|
+
var student_stress_by_zone = "Student Stress by Zone";
|
|
698
|
+
var student_distribution = "Student Distribution";
|
|
696
699
|
var lang_us = {
|
|
697
700
|
dashboard: dashboard,
|
|
698
701
|
user: user,
|
|
@@ -1275,9 +1278,10 @@ var lang_us = {
|
|
|
1275
1278
|
new_survey: new_survey,
|
|
1276
1279
|
assign_counselor: assign_counselor,
|
|
1277
1280
|
select_counselor: select_counselor,
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
+
select_support_teacher: select_support_teacher,
|
|
1282
|
+
assign_support_teacher: assign_support_teacher,
|
|
1283
|
+
switch_support_teacher: switch_support_teacher,
|
|
1284
|
+
support_teacher_name: support_teacher_name,
|
|
1281
1285
|
user_for_question: user_for_question,
|
|
1282
1286
|
requested_reflection: requested_reflection,
|
|
1283
1287
|
request_class_reflection: request_class_reflection,
|
|
@@ -1288,10 +1292,10 @@ var lang_us = {
|
|
|
1288
1292
|
current_counselor_email: current_counselor_email,
|
|
1289
1293
|
current_counselor_name: current_counselor_name,
|
|
1290
1294
|
select_counselor_change: select_counselor_change,
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
+
current_support_teacher_name: current_support_teacher_name,
|
|
1296
|
+
current_support_teacher_email: current_support_teacher_email,
|
|
1297
|
+
remove_support_teacher: remove_support_teacher,
|
|
1298
|
+
select_support_teacher_change: select_support_teacher_change,
|
|
1295
1299
|
filter_calendar: filter_calendar,
|
|
1296
1300
|
average_student_safety: average_student_safety,
|
|
1297
1301
|
is_active: is_active,
|
|
@@ -1362,7 +1366,9 @@ var lang_us = {
|
|
|
1362
1366
|
no_last_or_requested_check_ins: no_last_or_requested_check_ins,
|
|
1363
1367
|
students_who_are_highly_stressed: students_who_are_highly_stressed,
|
|
1364
1368
|
students_who_are_not_feeling_safe: students_who_are_not_feeling_safe,
|
|
1365
|
-
students_missing_a_weekly_check_in: students_missing_a_weekly_check_in
|
|
1369
|
+
students_missing_a_weekly_check_in: students_missing_a_weekly_check_in,
|
|
1370
|
+
student_stress_by_zone: student_stress_by_zone,
|
|
1371
|
+
student_distribution: student_distribution
|
|
1366
1372
|
};
|
|
1367
1373
|
|
|
1368
1374
|
var dashboard$1 = "Dashboard";
|
|
@@ -1941,9 +1947,10 @@ var share_survey$1 = "Share Survey";
|
|
|
1941
1947
|
var new_survey$1 = "New Survey";
|
|
1942
1948
|
var assign_counselor$1 = "Assign Counselor";
|
|
1943
1949
|
var select_counselor$1 = "Select Counselor";
|
|
1944
|
-
var
|
|
1945
|
-
var
|
|
1946
|
-
var
|
|
1950
|
+
var select_support_teacher$1 = "Select Support Teacher";
|
|
1951
|
+
var assign_support_teacher$1 = "Assign Support Teacher";
|
|
1952
|
+
var switch_support_teacher$1 = "Switch Support Teacher";
|
|
1953
|
+
var support_teacher_name$1 = "Support Teacher Name";
|
|
1947
1954
|
var user_for_question$1 = "User For Question";
|
|
1948
1955
|
var requested_reflection$1 = "Requested Reflection";
|
|
1949
1956
|
var request_class_reflection$1 = "Request Class Reflection";
|
|
@@ -1954,10 +1961,10 @@ var remove_counselor$1 = "Remove Counselor";
|
|
|
1954
1961
|
var current_counselor_email$1 = "Current Counselor Email";
|
|
1955
1962
|
var current_counselor_name$1 = "Current Counselor Name";
|
|
1956
1963
|
var select_counselor_change$1 = "Select Counselor Change";
|
|
1957
|
-
var
|
|
1958
|
-
var
|
|
1959
|
-
var
|
|
1960
|
-
var
|
|
1964
|
+
var current_support_teacher_name$1 = "Current Support Teacher Name";
|
|
1965
|
+
var current_support_teacher_email$1 = "Current Support Teacher Email";
|
|
1966
|
+
var remove_support_teacher$1 = "Remove Support Teacher";
|
|
1967
|
+
var select_support_teacher_change$1 = "Select Support Teacher Change";
|
|
1961
1968
|
var filter_calendar$1 = "Filter calendar";
|
|
1962
1969
|
var average_student_safety$1 = "Average Student Safety";
|
|
1963
1970
|
var is_active$1 = "Is Active";
|
|
@@ -2024,6 +2031,8 @@ var no_last_or_requested_check_ins$1 = "No last or requested Check-Ins";
|
|
|
2024
2031
|
var students_who_are_highly_stressed$1 = "Students who are highly stressed";
|
|
2025
2032
|
var students_who_are_not_feeling_safe$1 = "Students who are not feeling safe";
|
|
2026
2033
|
var students_missing_a_weekly_check_in$1 = "Students missing a weekly check-in";
|
|
2034
|
+
var student_stress_by_zone$1 = "Student Stress by Zone";
|
|
2035
|
+
var student_distribution$1 = "Student Distribution";
|
|
2027
2036
|
var lang_uk = {
|
|
2028
2037
|
dashboard: dashboard$1,
|
|
2029
2038
|
user: user$1,
|
|
@@ -2607,9 +2616,10 @@ var lang_uk = {
|
|
|
2607
2616
|
new_survey: new_survey$1,
|
|
2608
2617
|
assign_counselor: assign_counselor$1,
|
|
2609
2618
|
select_counselor: select_counselor$1,
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2619
|
+
select_support_teacher: select_support_teacher$1,
|
|
2620
|
+
assign_support_teacher: assign_support_teacher$1,
|
|
2621
|
+
switch_support_teacher: switch_support_teacher$1,
|
|
2622
|
+
support_teacher_name: support_teacher_name$1,
|
|
2613
2623
|
user_for_question: user_for_question$1,
|
|
2614
2624
|
requested_reflection: requested_reflection$1,
|
|
2615
2625
|
request_class_reflection: request_class_reflection$1,
|
|
@@ -2620,10 +2630,10 @@ var lang_uk = {
|
|
|
2620
2630
|
current_counselor_email: current_counselor_email$1,
|
|
2621
2631
|
current_counselor_name: current_counselor_name$1,
|
|
2622
2632
|
select_counselor_change: select_counselor_change$1,
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2633
|
+
current_support_teacher_name: current_support_teacher_name$1,
|
|
2634
|
+
current_support_teacher_email: current_support_teacher_email$1,
|
|
2635
|
+
remove_support_teacher: remove_support_teacher$1,
|
|
2636
|
+
select_support_teacher_change: select_support_teacher_change$1,
|
|
2627
2637
|
filter_calendar: filter_calendar$1,
|
|
2628
2638
|
average_student_safety: average_student_safety$1,
|
|
2629
2639
|
is_active: is_active$1,
|
|
@@ -2693,7 +2703,9 @@ var lang_uk = {
|
|
|
2693
2703
|
no_last_or_requested_check_ins: no_last_or_requested_check_ins$1,
|
|
2694
2704
|
students_who_are_highly_stressed: students_who_are_highly_stressed$1,
|
|
2695
2705
|
students_who_are_not_feeling_safe: students_who_are_not_feeling_safe$1,
|
|
2696
|
-
students_missing_a_weekly_check_in: students_missing_a_weekly_check_in$1
|
|
2706
|
+
students_missing_a_weekly_check_in: students_missing_a_weekly_check_in$1,
|
|
2707
|
+
student_stress_by_zone: student_stress_by_zone$1,
|
|
2708
|
+
student_distribution: student_distribution$1
|
|
2697
2709
|
};
|
|
2698
2710
|
|
|
2699
2711
|
var DEFAULT_LANGUAGE = localStorage.getItem("language") !== null ? localStorage.getItem("language") : "uk";
|