mario-teacher-student-client 9000.0.16 → 9000.0.19

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;
@@ -12,5 +12,6 @@ declare const useTodoList: () => {
12
12
  }>) => void;
13
13
  handleChangeSearchString: (e: React.ChangeEvent<HTMLInputElement>) => void;
14
14
  getActionPointList: () => Promise<void>;
15
+ isTeacher: any;
15
16
  };
16
17
  export default useTodoList;
@@ -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,23 @@
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>;
18
+ openConfirmDeleteDialog: boolean;
19
+ onOpenConfirmDeleteDialog: () => void;
20
+ onCloseConfirmDeleteDialog: () => void;
21
+ id: any;
19
22
  };
20
23
  export default useNoteAdd;
@@ -0,0 +1,12 @@
1
+ export interface INote {
2
+ avatarStudent: string;
3
+ createAt: string;
4
+ grade: string;
5
+ id: number;
6
+ isFavorite: boolean;
7
+ nameStudent: string;
8
+ studentId: number;
9
+ text: string;
10
+ title: string;
11
+ type: string;
12
+ }
@@ -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;
@@ -2875,7 +2892,8 @@ h2._1OAmb {
2875
2892
  display: flex;
2876
2893
  flex-direction: column;
2877
2894
  justify-content: center;
2878
- align-items: center; }
2895
+ align-items: center;
2896
+ margin-bottom: 20px; }
2879
2897
 
2880
2898
  ._1RMJt {
2881
2899
  margin: 8px 0;
@@ -2954,6 +2972,11 @@ h2._1OAmb {
2954
2972
  ._3LCtT {
2955
2973
  cursor: pointer; }
2956
2974
 
2975
+ ._2G4IB {
2976
+ width: 50px;
2977
+ height: 50px;
2978
+ border-radius: 50%; }
2979
+
2957
2980
  @font-face {
2958
2981
  font-family: "Lato-Regular";
2959
2982
  src: url("/fonts/Lato-Regular.ttf");
@@ -4258,7 +4281,15 @@ h2._1OAmb {
4258
4281
  ._3h6aC {
4259
4282
  font-size: 14px;
4260
4283
  font-weight: 400;
4261
- margin-top: 10px; }
4284
+ margin-top: 10px;
4285
+ height: 40px;
4286
+ color: rgba(0, 0, 0, 0.87);
4287
+ overflow: hidden;
4288
+ line-height: 15px;
4289
+ display: -webkit-box;
4290
+ -webkit-line-clamp: 2;
4291
+ text-overflow: ellipsis;
4292
+ -webkit-box-orient: vertical; }
4262
4293
 
4263
4294
  ._2w2ZD {
4264
4295
  font-size: 12px !important;
@@ -4646,6 +4677,10 @@ h2._1OAmb {
4646
4677
  font-size: 14px;
4647
4678
  line-height: 14px;
4648
4679
  color: rgba(0, 0, 0, 0.54); }
4680
+ ._2K3qC ._yJtRg {
4681
+ margin: 45px 0 30px 20px; }
4682
+ ._2K3qC ._2bopc {
4683
+ margin: 20px 0 30px 20px; }
4649
4684
 
4650
4685
  @font-face {
4651
4686
  font-family: "Lato-Regular";
@@ -8227,6 +8262,7 @@ button._kb6Ui {
8227
8262
  padding: 16px; }
8228
8263
 
8229
8264
  ._2Kqyy {
8265
+ min-height: 749px;
8230
8266
  background: #EFEFEF; }
8231
8267
  ._2Kqyy ._3JOTO {
8232
8268
  padding: 24px 16px; }
@@ -8280,7 +8316,13 @@ button._kb6Ui {
8280
8316
  padding-left: 15px; }
8281
8317
  ._2Kqyy ._CqXeM ._2RMhs ._15B2X {
8282
8318
  margin-left: 10px;
8283
- color: #1A202C; }
8319
+ color: #1A202C;
8320
+ font-weight: 400;
8321
+ font-size: 14px;
8322
+ font-family: "Roboto", sans-serif !important; }
8323
+ ._2Kqyy ._CqXeM ._2RMhs ._WRoAg {
8324
+ color: rgba(0, 0, 0, 0.54);
8325
+ font-family: "Roboto", sans-serif !important; }
8284
8326
  ._2Kqyy ._CqXeM ._2RMhs p {
8285
8327
  margin-right: 10px;
8286
8328
  margin-top: 10px; }
@@ -8289,10 +8331,17 @@ button._kb6Ui {
8289
8331
  display: flex; }
8290
8332
  ._2Kqyy ._CqXeM ._oTRhw ._FmE78 {
8291
8333
  font-size: 20px;
8292
- font-weight: 700; }
8334
+ font-weight: 700;
8335
+ font-family: "Roboto", sans-serif !important; }
8293
8336
  ._2Kqyy ._CqXeM ._oTRhw ._yC3LF {
8294
8337
  font-weight: bold;
8295
- font-size: 16px; }
8338
+ font-size: 16px;
8339
+ font-family: "Roboto", sans-serif !important; }
8340
+ ._2Kqyy ._CqXeM ._oTRhw ._1T8V9 {
8341
+ color: #1A202C;
8342
+ font-weight: 400;
8343
+ font-size: 16px;
8344
+ font-family: "Roboto", sans-serif !important; }
8296
8345
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 {
8297
8346
  margin-left: 50px; }
8298
8347
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._3dAV2 {
@@ -8310,16 +8359,28 @@ button._kb6Ui {
8310
8359
  color: #44337A;
8311
8360
  border-radius: 12px;
8312
8361
  margin-right: 10px;
8313
- padding: 5px 15px; }
8362
+ padding: 5px 15px;
8363
+ font-family: "Roboto", sans-serif !important;
8364
+ font-weight: 700; }
8314
8365
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._2SGYS ._2HLBj {
8315
8366
  background: #CEEDFF;
8316
8367
  color: #153E75;
8317
8368
  border-radius: 12px;
8318
- padding: 5px 15px; }
8369
+ padding: 5px 15px;
8370
+ font-family: "Roboto", sans-serif !important;
8371
+ font-weight: 700; }
8372
+ ._2Kqyy ._1SHW2 {
8373
+ padding: 0 20px; }
8374
+ ._2Kqyy ._1SHW2 ._28G44 {
8375
+ font-size: 16px; }
8319
8376
 
8320
8377
  ._1qEK_ {
8321
8378
  padding-left: 16px;
8322
8379
  padding-top: 24px; }
8380
+ ._1qEK_ ._2HFM4 {
8381
+ color: red;
8382
+ font-style: italic;
8383
+ font-size: 16px; }
8323
8384
  ._1qEK_ ._2-kHe {
8324
8385
  font-size: 18px;
8325
8386
  font-weight: bold;
@@ -8355,7 +8416,8 @@ button._kb6Ui {
8355
8416
  color: #1A202C;
8356
8417
  padding-bottom: 13px; }
8357
8418
  ._1ooLu ._3hbmt {
8358
- display: flex; }
8419
+ display: flex;
8420
+ padding-bottom: 23px; }
8359
8421
  ._1ooLu ._3hbmt ._15B2X {
8360
8422
  font-size: 16px;
8361
8423
  font-weight: 400;