mario-core 2.9.90-beta → 2.9.91-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.
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ interface Props {
3
+ title?: string;
4
+ descriptions?: string;
5
+ }
6
+ declare const BlockForgotPass: FC<Props>;
7
+ export default BlockForgotPass;
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ import { Notification } from "../../../types/Notification";
3
+ interface Props {
4
+ notificationList: Notification[];
5
+ }
6
+ declare const NotificationList: FC<Props>;
7
+ export default NotificationList;
package/dist/index.js CHANGED
@@ -377,7 +377,6 @@ var how_my_teachers_can_help_me_learn = "How my teachers can help me learn";
377
377
  var about_my_learning = "About My Learning";
378
378
  var accommodations = "Accommodations";
379
379
  var goals = "Goals";
380
- var this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it = "This goal is showing in the student's conference rubric. Are you sure to delete it?";
381
380
  var activity_circles = "Activity Circles";
382
381
  var friend_circles = "Friend Circles";
383
382
  var are_you_ready_to_learn = "Are you ready to learn?";
@@ -590,8 +589,6 @@ var duplicate_survey = "Duplicate Survey";
590
589
  var share_survey = "Share Survey";
591
590
  var new_survey = "New Survey";
592
591
  var assign_counselor = "Assign Counselor";
593
- var assign_secondary_teacher = "Assign Secondary Teacher";
594
- var secondary_teacher_name = "Secondary Teacher Name";
595
592
  var lang_us = {
596
593
  dashboard: dashboard,
597
594
  user: user,
@@ -941,7 +938,6 @@ var lang_us = {
941
938
  about_my_learning: about_my_learning,
942
939
  accommodations: accommodations,
943
940
  goals: goals,
944
- this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it: this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it,
945
941
  activity_circles: activity_circles,
946
942
  friend_circles: friend_circles,
947
943
  are_you_ready_to_learn: are_you_ready_to_learn,
@@ -1155,9 +1151,7 @@ var lang_us = {
1155
1151
  duplicate_survey: duplicate_survey,
1156
1152
  share_survey: share_survey,
1157
1153
  new_survey: new_survey,
1158
- assign_counselor: assign_counselor,
1159
- assign_secondary_teacher: assign_secondary_teacher,
1160
- secondary_teacher_name: secondary_teacher_name
1154
+ assign_counselor: assign_counselor
1161
1155
  };
1162
1156
 
1163
1157
  var dashboard$1 = "Dashboard";
@@ -1504,7 +1498,6 @@ var how_my_teachers_can_help_me_learn$1 = "How my teachers can help me learn";
1504
1498
  var about_my_learning$1 = "About My Learning";
1505
1499
  var accommodations$1 = "Accommodations";
1506
1500
  var goals$1 = "Goals";
1507
- var this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it$1 = "This goal is showing in the student's conference rubric. Are you sure to delete it?";
1508
1501
  var activity_circles$1 = "Activity Circles";
1509
1502
  var friend_circles$1 = "Friend Circles";
1510
1503
  var are_you_ready_to_learn$1 = "Are you ready to learn?";
@@ -1717,8 +1710,6 @@ var duplicate_survey$1 = "Duplicate Survey";
1717
1710
  var share_survey$1 = "Share Survey";
1718
1711
  var new_survey$1 = "New Survey";
1719
1712
  var assign_counselor$1 = "Assign Counselor";
1720
- var assign_secondary_teacher$1 = "Assign Secondary Teacher";
1721
- var secondary_teacher_name$1 = "Secondary Teacher Name";
1722
1713
  var lang_uk = {
1723
1714
  dashboard: dashboard$1,
1724
1715
  user: user$1,
@@ -2068,7 +2059,6 @@ var lang_uk = {
2068
2059
  about_my_learning: about_my_learning$1,
2069
2060
  accommodations: accommodations$1,
2070
2061
  goals: goals$1,
2071
- this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it: this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it$1,
2072
2062
  activity_circles: activity_circles$1,
2073
2063
  friend_circles: friend_circles$1,
2074
2064
  are_you_ready_to_learn: are_you_ready_to_learn$1,
@@ -2282,9 +2272,7 @@ var lang_uk = {
2282
2272
  duplicate_survey: duplicate_survey$1,
2283
2273
  share_survey: share_survey$1,
2284
2274
  new_survey: new_survey$1,
2285
- assign_counselor: assign_counselor$1,
2286
- assign_secondary_teacher: assign_secondary_teacher$1,
2287
- secondary_teacher_name: secondary_teacher_name$1
2275
+ assign_counselor: assign_counselor$1
2288
2276
  };
2289
2277
 
2290
2278
  var DEFAULT_LANGUAGE = localStorage.getItem("language") !== null ? localStorage.getItem("language") : "uk";
@@ -2558,7 +2546,7 @@ var STAR_OPTIONS = [{
2558
2546
  value: 5
2559
2547
  }];
2560
2548
  var ANSWER_EDITOR_HEIGHT = 150;
2561
- var USER_ROLES = ["Admin", "Assistant", "Teacher", "General ED teacher", "Counselor", "SecondaryTeacher", "Student", "Parent"];
2549
+ var USER_ROLES = ["Admin", "Assistant", "Teacher", "General ED teacher", "Counselor", "Student", "Parent"];
2562
2550
  var CHAT_CHANNEL = "chat-channel";
2563
2551
  var NOTIFICATION_CHANNEL = "NOTIFICATION_CHANNEL";
2564
2552
  var NEW_NOTIFICATION = "NEW_NOTIFICATION";
@@ -2575,8 +2563,7 @@ var ROLES = {
2575
2563
  EDUTEACHER: "General ED teacher",
2576
2564
  STUDENT: "Student",
2577
2565
  PARENT: "Parent",
2578
- COUNSELOR: "Counselor",
2579
- SECONDARY_TEACHER: "SecondaryTeacher"
2566
+ COUNSELOR: "Counselor"
2580
2567
  };
2581
2568
  var NOTIFICATION_ALERT_KEY = "NOTIFICATION_ALERT_KEY";
2582
2569
 
@@ -2831,7 +2818,7 @@ var useLogin = function useLogin() {
2831
2818
  history.push(HOMEPAGE_DISTRICT);
2832
2819
  } else if (roles.includes("Admin")) {
2833
2820
  history.push(HOMEPAGE_ADMIN);
2834
- } else if (roles.includes("Teacher") || roles.includes("Assistant") || roles.includes("Counselor") || roles.includes("SecondaryTeacher")) {
2821
+ } else if (roles.includes("Teacher") || roles.includes("Assistant") || roles.includes("Counselor")) {
2835
2822
  history.push(HOMEPAGE_TEACHER);
2836
2823
  } else if (roles.includes("Student")) {
2837
2824
  history.push(HOMEPAGE_STUDENT);
@@ -7115,13 +7102,13 @@ var UserDetail = function UserDetail() {
7115
7102
  return;
7116
7103
  }
7117
7104
 
7118
- if ([ROLES.ADMIN, ROLES.STUDENT, ROLES.PARENT, ROLES.EDUTEACHER, ROLES.COUNSELOR, ROLES.SECONDARY_TEACHER].includes(role)) {
7105
+ if ([ROLES.ADMIN, ROLES.STUDENT, ROLES.PARENT, ROLES.EDUTEACHER, ROLES.COUNSELOR].includes(role)) {
7119
7106
  setFieldValue("roles", [role]);
7120
7107
  return;
7121
7108
  }
7122
7109
 
7123
7110
  var teacherAssistantRoles = values.roles.filter(function (item) {
7124
- return ![ROLES.STUDENT, ROLES.ADMIN, ROLES.PARENT, ROLES.EDUTEACHER, ROLES.COUNSELOR, ROLES.SECONDARY_TEACHER].includes(item);
7111
+ return ![ROLES.STUDENT, ROLES.ADMIN, ROLES.PARENT, ROLES.EDUTEACHER, ROLES.COUNSELOR].includes(item);
7125
7112
  });
7126
7113
  setFieldValue("roles", [].concat(teacherAssistantRoles, [role]));
7127
7114
  }, [values.roles]);
@@ -8145,7 +8132,7 @@ var NotificationList = function NotificationList() {
8145
8132
  return React__default.createElement("div", {
8146
8133
  className: "animated fadeIn",
8147
8134
  style: {
8148
- padding: "20px 40px 160px"
8135
+ padding: "20px 40px"
8149
8136
  }
8150
8137
  }, React__default.createElement("h5", {
8151
8138
  className: "mb-2"
@@ -10606,8 +10593,6 @@ var useUserList = function useUserList() {
10606
10593
  history.push(HOMEPAGE_PARENT$1);
10607
10594
  } else if (roles.includes("EduTeacher")) {
10608
10595
  history.push(HOMEPAGE_EDU_TEACHER$1);
10609
- } else if (roles.includes("Counselor") || roles.includes("SecondaryTeacher")) {
10610
- history.push(HOMEPAGE_TEACHER$1);
10611
10596
  }
10612
10597
  };
10613
10598