mario-education 2.4.171-level → 2.4.173-level

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.
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import { IReadinessToLearning } from "../configs/types";
3
3
  interface IProps {
4
4
  data: IReadinessToLearning[];
5
+ isPrint?: boolean;
5
6
  }
6
7
  declare const _default: React.NamedExoticComponent<IProps>;
7
8
  export default _default;
@@ -3,6 +3,8 @@ interface IProps {
3
3
  series: number[];
4
4
  colors: string[];
5
5
  label: string[];
6
+ width?: number | string;
7
+ height?: number | string;
6
8
  }
7
9
  declare const OverallDonutChart: FC<IProps>;
8
10
  export default OverallDonutChart;
@@ -2,6 +2,10 @@ import React from "react";
2
2
  import { IlearningStrategies } from "../configs/types";
3
3
  interface ITopLearningStrategy {
4
4
  data: IlearningStrategies;
5
+ learningStrategyId?: string;
6
+ topLearningStrategyId?: string;
7
+ width?: number;
8
+ isPrint?: boolean;
5
9
  }
6
10
  declare const _default: React.NamedExoticComponent<ITopLearningStrategy>;
7
11
  export default _default;
@@ -35,6 +35,7 @@ export declare const INITIAl_STUDENT_DASHBOARD: {
35
35
  totalTimeConference: number;
36
36
  totalTimeOneToOne: number;
37
37
  totalCheckIn: number;
38
+ schoolName: string;
38
39
  };
39
40
  export declare const INITIAL_AVG: number[];
40
41
  export declare const COLOR_CHART_AND_PERCENTS: string[];
@@ -216,6 +216,7 @@ export interface IDashboardToTalStudent {
216
216
  totalTimeConference: number;
217
217
  totalTimeOneToOne: number;
218
218
  totalCheckIn: number;
219
+ schoolName: string;
219
220
  }
220
221
  export declare enum FILTER_YEAR {
221
222
  THIS_YEAR = 0,
@@ -282,6 +283,9 @@ export interface IGenerateChart {
282
283
  avgQuestionLastMonth: IQuestionResponseLastMonth[];
283
284
  isShowExpandIcon?: boolean;
284
285
  onExpand?: Function;
286
+ isPrint?: boolean;
287
+ width?: number | string;
288
+ height?: number | string;
285
289
  }
286
290
  export interface IDashboardToPDF {
287
291
  startTime: number | undefined;
@@ -305,6 +309,8 @@ export interface IDashboardToPDF {
305
309
  avgConferenceLastMonth: IQuestionResponseLastMonth[];
306
310
  readinessToLearning: IReadinessToLearning[];
307
311
  studentPressure: IStudentPressure;
312
+ dataOverallReadyToLearn: IOverallReadinessToLearn;
313
+ schoolName: string;
308
314
  }
309
315
  export interface IOverallReadinessToLearn {
310
316
  resultQuestion: ISeries[];
@@ -45,5 +45,6 @@ declare const useChartDatas: () => {
45
45
  studentPressure: import("../configs/types").IStudentPressure;
46
46
  dataOverallReadyToLearn: import("../configs/types").IOverallReadinessToLearn;
47
47
  readinessToLearning: import("../configs/types").IReadinessToLearning[];
48
+ schoolName: any;
48
49
  };
49
50
  export default useChartDatas;
package/dist/index.css CHANGED
@@ -1165,12 +1165,18 @@ h6._3zOGW {
1165
1165
  }
1166
1166
 
1167
1167
  ._2IQ8b {
1168
- position: absolute;
1168
+ position: fixed;
1169
1169
  z-index: -9999;
1170
- width: 1792px;
1170
+ width: 800px;
1171
1171
  opacity: 0;
1172
- top: -35px;
1173
- left: -630px;
1172
+ bottom: -100vh;
1173
+ right: -100vw;
1174
+ & > div {
1175
+ width: 100%;
1176
+ & > div {
1177
+ width: 100%;
1178
+ }
1179
+ }
1174
1180
  }
1175
1181
 
1176
1182
  ._sQ21k {