mario-education 2.4.273-release → 2.4.275-release

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.
@@ -1,3 +1,3 @@
1
1
  import { IStudentPressureChart } from "../configs/types";
2
- declare const StudentPressureChart: ({ studentPressure, width, print }: IStudentPressureChart) => JSX.Element;
2
+ declare const StudentPressureChart: ({ studentPressure, changeLanguage, width, print }: IStudentPressureChart) => JSX.Element;
3
3
  export default StudentPressureChart;
@@ -29,6 +29,7 @@ export interface IStudentPressure {
29
29
  }
30
30
  export interface IStudentPressureChart {
31
31
  studentPressure: IStudentPressure;
32
+ changeLanguage?: string;
32
33
  width?: number;
33
34
  print?: boolean;
34
35
  }
@@ -1,3 +1,3 @@
1
1
  export declare const useStyles: (props?: any) => Record<"body" | "title" | "tabs" | "tabLabel" | "tabLabelActive", string>;
2
- export declare const useStyleModelCreate: (props: any) => Record<"label" | "root" | "instructions" | "completed", string>;
2
+ export declare const useStyleModelCreate: (props: any) => Record<"label" | "root" | "completed" | "instructions", string>;
3
3
  export declare const useStylesDataGrid: (props?: any) => Record<"root", string>;