mario-education 2.4.571-feedback → 2.4.573-feedback

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,2 +1,2 @@
1
- declare const TeacherSelector: ({ isShowDropDownIcon, classes, setSelectTeacherUserId }: any) => JSX.Element;
1
+ declare const TeacherSelector: ({ isShowDropDownIcon, classes, setSelectTeacherUserId, setSelected }: any) => JSX.Element;
2
2
  export default TeacherSelector;
@@ -141,4 +141,5 @@ declare type PropertySelector<T> = (item: T) => any;
141
141
  export declare const customSortBy: <T>(array: T[], selector: PropertySelector<T>) => T[];
142
142
  export declare const formatLowMetricLabels: (labels: string[]) => string;
143
143
  export declare const getDescriptionFromPercent: (percent: number, descriptions: any[], isStress?: boolean) => any;
144
+ export declare const getUniqueSortedGrades: (students: any) => unknown[];
144
145
  export {};
@@ -88,6 +88,6 @@ declare const useDashboard: () => {
88
88
  setOptionDate: import("react").Dispatch<import("react").SetStateAction<string>>;
89
89
  stressValue: number[];
90
90
  conversationKpi: IConversationKpi;
91
- setSelectTeacherUserId: (id: number) => void;
91
+ setSelectTeacherUserId: (value: any) => Promise<void>;
92
92
  };
93
93
  export default useDashboard;