mario-teacher-student-client 9000.0.19 → 9000.0.20

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,6 +10,7 @@ interface Props {
10
10
  placeholder?: string;
11
11
  isSending?: boolean;
12
12
  handleSending?: Function;
13
+ canSubmit?: boolean;
13
14
  }
14
- declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, customId, isSending, handleSending }: Props) => JSX.Element;
15
+ declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, customId, isSending, handleSending, canSubmit }: Props) => JSX.Element;
15
16
  export default InputComponent;
@@ -19,6 +19,6 @@ declare const useListDetailActivity: () => {
19
19
  setFile: import("react").Dispatch<any>;
20
20
  confirmData: (values: any, cb: any) => Promise<void>;
21
21
  getData: () => Promise<void>;
22
- deleteActivity: (studentId: number, activityId: number, cb?: any) => Promise<void>;
22
+ deleteActivity: (cb?: any) => Promise<void>;
23
23
  };
24
24
  export default useListDetailActivity;
@@ -25,6 +25,7 @@ declare const useNotes: (sessionId: number, sessionResultId: number, conferenceI
25
25
  handleRemoveQuestionAnswer: (noteId: number) => Promise<void>;
26
26
  handleSubmitSingleNote: () => Promise<void>;
27
27
  handleSubmitPrivateNote: () => Promise<void>;
28
- teacherPrivateNote: string;
28
+ selectedQuestionIds: any[];
29
+ handleAddQuestion: () => Promise<void>;
29
30
  };
30
31
  export default useNotes;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface Props {
3
+ value: string;
4
+ onChange: Function;
5
+ onSubmit: Function;
6
+ }
7
+ declare const ScaffoldingAnswerTextarea: ({ value, onChange, onSubmit }: Props) => JSX.Element;
8
+ export default ScaffoldingAnswerTextarea;
package/dist/index.css CHANGED
@@ -2916,6 +2916,12 @@ h2._1OAmb {
2916
2916
  ._1xv1l {
2917
2917
  background: #edf2f7; }
2918
2918
 
2919
+ ._3XiPT {
2920
+ min-height: 20vh; }
2921
+
2922
+ ._3XiPT textarea {
2923
+ min-height: calc(20vh - 18px); }
2924
+
2919
2925
  ._-oBRr {
2920
2926
  font-family: "Roboto";
2921
2927
  font-size: 16px;
@@ -2977,6 +2983,14 @@ h2._1OAmb {
2977
2983
  height: 50px;
2978
2984
  border-radius: 50%; }
2979
2985
 
2986
+ ._2NYJT {
2987
+ cursor: pointer;
2988
+ width: 16px;
2989
+ height: 16px; }
2990
+
2991
+ ._SGD0h {
2992
+ cursor: pointer; }
2993
+
2980
2994
  @font-face {
2981
2995
  font-family: "Lato-Regular";
2982
2996
  src: url("/fonts/Lato-Regular.ttf");
@@ -7903,6 +7917,11 @@ button._kb6Ui {
7903
7917
  ._2dVsV svg {
7904
7918
  margin-left: 15px; }
7905
7919
 
7920
+ ._1Y1uN {
7921
+ justify-content: space-between;
7922
+ display: flex;
7923
+ padding: 24px 0; }
7924
+
7906
7925
  ._1KdDE {
7907
7926
  display: flex;
7908
7927
  justify-content: space-between;
@@ -8626,6 +8645,15 @@ button._kb6Ui {
8626
8645
  ._PvIMZ ._2ogUR {
8627
8646
  margin-top: 10px; }
8628
8647
 
8648
+ ._3Olyq {
8649
+ padding-left: 15px !important; }
8650
+
8651
+ ._3yUBr {
8652
+ padding: 3px !important; }
8653
+
8654
+ ._1Uocr {
8655
+ justify-content: space-between; }
8656
+
8629
8657
  ._21KWj {
8630
8658
  padding: 24px 16px;
8631
8659
  display: flex;