mario-teacher-student-client 9000.0.5 → 9000.0.6

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.
@@ -10,5 +10,5 @@ interface Props {
10
10
  titleDelete?: string;
11
11
  handleDelete: Function;
12
12
  }
13
- declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, titleDelete, handleDelete }: Props) => JSX.Element;
13
+ declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, handleDelete }: Props) => JSX.Element;
14
14
  export default CardItem;
@@ -5,6 +5,7 @@ interface Props {
5
5
  name?: string;
6
6
  isAddIcon?: boolean;
7
7
  handleAddItem?: Function;
8
+ placeholder?: string;
8
9
  }
9
- declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem }: Props) => JSX.Element;
10
+ declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder }: Props) => JSX.Element;
10
11
  export default InputComponent;
@@ -16,4 +16,5 @@ export interface ABOUT_MY_LEARNING_DIALOG {
16
16
  getById: Function;
17
17
  dataItem: any;
18
18
  setDataItem: any;
19
+ onDelete: Function;
19
20
  }
@@ -17,4 +17,5 @@ export interface SIMPLE_DIALOG_TYPE {
17
17
  dataItem: any;
18
18
  typeItem: string;
19
19
  setDataItem: any;
20
+ onDelete: Function;
20
21
  }
@@ -14,5 +14,6 @@ declare const useEditLearningStrategies: () => {
14
14
  handleCloseConfirmDeleteDialog: () => void;
15
15
  openConfirmDelete: boolean;
16
16
  idItem: any;
17
+ isTeacher: any;
17
18
  };
18
19
  export default useEditLearningStrategies;
@@ -1,3 +1,6 @@
1
1
  /// <reference types="react" />
2
- declare const SummaryStrengthsAndChallenges: () => JSX.Element;
2
+ interface Props {
3
+ isTeacher?: boolean;
4
+ }
5
+ declare const SummaryStrengthsAndChallenges: ({ isTeacher }: Props) => JSX.Element;
3
6
  export default SummaryStrengthsAndChallenges;
@@ -16,4 +16,5 @@ export interface THING_TEACHER_CAN_HELP_DIALOG {
16
16
  update: Function;
17
17
  getById: Function;
18
18
  getOneData: any;
19
+ onDelete: Function;
19
20
  }
package/dist/index.css CHANGED
@@ -6996,6 +6996,8 @@ h2._1KpSK {
6996
6996
  border-radius: 12px;
6997
6997
  background-color: #308252;
6998
6998
  color: #fff; }
6999
+ ._3uJBt ._11NhX:hover {
7000
+ background-color: rgba(48, 130, 82, 0.7); }
6999
7001
 
7000
7002
  ._3PqK8 {
7001
7003
  font-size: 15px;
package/dist/index.d.ts CHANGED
@@ -20,7 +20,6 @@ import UpdateStudentProfile from "./containers/MyStudent/components/UpdateStuden
20
20
  import CreateStudent from "./containers/MyStudent/components/CreateStudent";
21
21
  import ChangePassword from "./containers/MyProfile/views/ChangePassword";
22
22
  import StageDebugPage from "./containers/StageDebug/views/StageDebugPage";
23
- import NotificarionsPage from "./containers/SettingsPage/components/NotificationsPage";
24
23
  import LearningPlan from "./containers/LearningPlan/views/LearningPlan";
25
24
  import PersonalLearningGoal from "./containers/PersonalLearningPlan/components/PersonalLearningGoal/PersonalLearningGoal";
26
25
  import ListPersonalinterrest from "./containers/PersonalLearningPlan/PersonalInterests/components/ListPersonalInterrest";
@@ -45,4 +44,4 @@ import GoalList from "./containers/Goals/components/GoalList";
45
44
  import GoalDetail from "./containers/Goals/components/GoalDetail";
46
45
  import NewGoal from "./containers/Goals/components/NewGoal";
47
46
  import MyClassReflection from "./containers/MyClassReflection/components/MyClassReflection";
48
- export { MainLayout, HomePage, MyOneToOne, MyConferences, ConductIndex, MyStudent, SessionResultComponent, BookSession, SessionDetail, StudentDetail, StartReflection, ResultReflection, StudentReflection, ConferenceRubric, ResultConferenceRubric, BookSessionConferences, MyProfile, NewLearningPlan, UpdateStudentProfile, CreateStudent, ChangePassword, StageDebugPage, NotificarionsPage, LearningPlan, PersonalLearningGoal, ListPersonalinterrest, AccomondationList, AboutMyLearningList, ThinkTeacherCanHelpList, DetailStrengthsAndChallenges, UiCompletedOneToOne, Note, AddNote, EditNote, ViewItemNote, SettingPage, FriendCircleLearning, ListFriendCircle, ActivityCircleLearning, ListActivityLearning, LearningStrategies, LearningStrategiesSave, ActionPoint, GoalList, GoalDetail, NewGoal, MyClassReflection };
47
+ export { MainLayout, HomePage, MyOneToOne, MyConferences, ConductIndex, MyStudent, SessionResultComponent, BookSession, SessionDetail, StudentDetail, StartReflection, ResultReflection, StudentReflection, ConferenceRubric, ResultConferenceRubric, BookSessionConferences, MyProfile, NewLearningPlan, UpdateStudentProfile, CreateStudent, ChangePassword, StageDebugPage, LearningPlan, PersonalLearningGoal, ListPersonalinterrest, AccomondationList, AboutMyLearningList, ThinkTeacherCanHelpList, DetailStrengthsAndChallenges, UiCompletedOneToOne, Note, AddNote, EditNote, ViewItemNote, SettingPage, FriendCircleLearning, ListFriendCircle, ActivityCircleLearning, ListActivityLearning, LearningStrategies, LearningStrategiesSave, ActionPoint, GoalList, GoalDetail, NewGoal, MyClassReflection };