mario-teacher-student-client 9000.0.16 → 9000.0.17

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.
@@ -16,6 +16,7 @@ interface Props {
16
16
  minute?: number;
17
17
  hour?: number;
18
18
  isTeacher?: boolean;
19
+ isClassReflection?: boolean;
19
20
  }
20
21
  declare const HeaderComponent: FC<Props>;
21
22
  export default HeaderComponent;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  interface Props {
3
- id?: string;
3
+ customId?: string;
4
4
  valueText: string;
5
5
  onChange: Function;
6
6
  name?: string;
@@ -11,5 +11,5 @@ interface Props {
11
11
  isSending?: boolean;
12
12
  handleSending?: Function;
13
13
  }
14
- declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, id, isSending, handleSending }: Props) => JSX.Element;
14
+ declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, customId, isSending, handleSending }: Props) => JSX.Element;
15
15
  export default InputComponent;
@@ -3,6 +3,8 @@ interface Props {
3
3
  onChangeQuestionAnswer?: Function;
4
4
  questionId: number;
5
5
  valueText: string;
6
+ minText?: string;
7
+ maxText?: string;
6
8
  }
7
9
  declare const SingleChoiceComponent: FC<Props>;
8
10
  export default SingleChoiceComponent;
@@ -16,5 +16,6 @@ declare const useListDetail: () => {
16
16
  label: string;
17
17
  color: string;
18
18
  }[];
19
+ onDeleteFriend: (cb: any) => Promise<void>;
19
20
  };
20
21
  export default useListDetail;
@@ -1,20 +1,19 @@
1
1
  declare const useNoteAdd: () => {
2
- dataTeacherOrStudent: any;
2
+ studentList: any[];
3
3
  handleTitle: (event: React.ChangeEvent<HTMLInputElement>) => void;
4
4
  addDataNote: () => Promise<void>;
5
5
  handleNote: (event: string) => void;
6
- onChangeGetIdStudent: (_: any, id: number) => void;
6
+ handleChangeStudent: (event: React.ChangeEvent<{}>, value: any) => void;
7
7
  title: string;
8
8
  note: string;
9
9
  viewListNote: () => void;
10
- onChangeSetDataUpdateText: (e: any) => void;
11
- itemViewUpdate: any;
12
- onChangeGetIdStudentUpdate: (_: any, id: any) => void;
13
- onChangeSetDataNoteDetailUpdateTitle: (e: any) => void;
14
10
  getItemNoteHook: () => Promise<void>;
15
11
  itemView: any;
16
12
  deleteItemHook: () => Promise<void>;
17
13
  editNote: () => void;
14
+ errorSelect: boolean;
15
+ errorTitle: boolean;
16
+ student: any;
18
17
  updateDataNote: () => Promise<void>;
19
18
  };
20
19
  export default useNoteAdd;
@@ -5,6 +5,7 @@ declare type PropsType = {
5
5
  sessionResultId: number;
6
6
  conferenceId: number;
7
7
  conferenceResultId: number;
8
+ informationUser: any;
8
9
  };
9
10
  declare const ScaffoldingFloatTab: (props: PropsType) => JSX.Element;
10
11
  export default ScaffoldingFloatTab;
package/dist/index.css CHANGED
@@ -467,6 +467,19 @@ p._1YLGi {
467
467
  border: 1px solid;
468
468
  border-radius: 12px; }
469
469
 
470
+ ._3oH01 {
471
+ margin-left: 10px; }
472
+
473
+ ._3oSdM {
474
+ display: flex;
475
+ justify-content: space-between;
476
+ align-items: center;
477
+ margin-bottom: 5px; }
478
+ ._3oSdM > p {
479
+ font-size: 14px;
480
+ font-weight: bold;
481
+ line-height: 40px; }
482
+
470
483
  @font-face {
471
484
  font-family: "Lato-Regular";
472
485
  src: url("/fonts/Lato-Regular.ttf");
@@ -674,8 +687,7 @@ p._1YLGi {
674
687
  padding: 15px;
675
688
  display: flex;
676
689
  justify-content: space-between;
677
- align-items: center;
678
- flex: 2 1; }
690
+ align-items: center; }
679
691
 
680
692
  ._3C9U0 {
681
693
  max-height: 600px;
@@ -713,6 +725,11 @@ p._1YLGi {
713
725
  color: #0A4DA2 !important;
714
726
  cursor: pointer; }
715
727
 
728
+ ._3DzT8 {
729
+ display: flex;
730
+ justify-content: flex-end;
731
+ width: 100px; }
732
+
716
733
  ._3zfpv {
717
734
  display: flex;
718
735
  justify-content: space-evenly;
@@ -2954,6 +2971,11 @@ h2._1OAmb {
2954
2971
  ._3LCtT {
2955
2972
  cursor: pointer; }
2956
2973
 
2974
+ ._2G4IB {
2975
+ width: 50px;
2976
+ height: 50px;
2977
+ border-radius: 50%; }
2978
+
2957
2979
  @font-face {
2958
2980
  font-family: "Lato-Regular";
2959
2981
  src: url("/fonts/Lato-Regular.ttf");
@@ -4258,7 +4280,15 @@ h2._1OAmb {
4258
4280
  ._3h6aC {
4259
4281
  font-size: 14px;
4260
4282
  font-weight: 400;
4261
- margin-top: 10px; }
4283
+ margin-top: 10px;
4284
+ height: 40px;
4285
+ color: rgba(0, 0, 0, 0.87);
4286
+ overflow: hidden;
4287
+ line-height: 15px;
4288
+ display: -webkit-box;
4289
+ -webkit-line-clamp: 2;
4290
+ text-overflow: ellipsis;
4291
+ -webkit-box-orient: vertical; }
4262
4292
 
4263
4293
  ._2w2ZD {
4264
4294
  font-size: 12px !important;
@@ -4646,6 +4676,10 @@ h2._1OAmb {
4646
4676
  font-size: 14px;
4647
4677
  line-height: 14px;
4648
4678
  color: rgba(0, 0, 0, 0.54); }
4679
+ ._2K3qC ._yJtRg {
4680
+ margin: 45px 0 30px 20px; }
4681
+ ._2K3qC ._2bopc {
4682
+ margin: 20px 0 30px 20px; }
4649
4683
 
4650
4684
  @font-face {
4651
4685
  font-family: "Lato-Regular";
@@ -8227,6 +8261,7 @@ button._kb6Ui {
8227
8261
  padding: 16px; }
8228
8262
 
8229
8263
  ._2Kqyy {
8264
+ min-height: 749px;
8230
8265
  background: #EFEFEF; }
8231
8266
  ._2Kqyy ._3JOTO {
8232
8267
  padding: 24px 16px; }
@@ -8304,7 +8339,8 @@ button._kb6Ui {
8304
8339
  font-size: 16px;
8305
8340
  font-weight: 700; }
8306
8341
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._2SGYS {
8307
- display: flex; }
8342
+ display: flex;
8343
+ font-weight: 500; }
8308
8344
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._2SGYS ._3FHQG {
8309
8345
  background: #E9D8FD;
8310
8346
  color: #44337A;
@@ -8320,6 +8356,10 @@ button._kb6Ui {
8320
8356
  ._1qEK_ {
8321
8357
  padding-left: 16px;
8322
8358
  padding-top: 24px; }
8359
+ ._1qEK_ ._2HFM4 {
8360
+ color: red;
8361
+ font-style: italic;
8362
+ font-size: 16px; }
8323
8363
  ._1qEK_ ._2-kHe {
8324
8364
  font-size: 18px;
8325
8365
  font-weight: bold;