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.
- package/dist/components/Card/CardItem.d.ts +1 -1
- package/dist/components/Input/InputComponent.d.ts +2 -1
- package/dist/containers/AboutMyLearning/constants/type.d.ts +1 -0
- package/dist/containers/Accommodation/constants/type.d.ts +1 -0
- package/dist/containers/LearningStrategies/hook/useEditLearningStrategies.d.ts +1 -0
- package/dist/containers/StrengthsAndChallenges/views/SummaryStrengthsAndChallenges.d.ts +4 -1
- package/dist/containers/ThingTeachersCanHelp/constants/type.d.ts +1 -0
- package/dist/index.css +2 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.js +141 -459
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +144 -461
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -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,
|
|
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;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
|
+
isTeacher?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const SummaryStrengthsAndChallenges: ({ isTeacher }: Props) => JSX.Element;
|
|
3
6
|
export default SummaryStrengthsAndChallenges;
|
package/dist/index.css
CHANGED
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,
|
|
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 };
|