mario-education 2.4.559-feedback → 2.4.561-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.
- package/dist/containers/OneRosterSystem/components/ImportOneRoster.d.ts +2 -0
- package/dist/containers/OneRosterSystem/components/RosterConfigForm.d.ts +2 -1
- package/dist/containers/OneRosterSystem/configs/types.d.ts +4 -0
- package/dist/containers/OneRosterSystem/hooks/useImportOneRoster.d.ts +2 -1
- package/dist/containers/OneRosterSystem/hooks/userRosterConfigForm.d.ts +2 -2
- package/dist/containers/OneRosterSystem/views/OneRosterClever.d.ts +2 -0
- package/dist/index.css +14176 -14176
- package/dist/index.js +83 -34
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +83 -34
- package/dist/index.modern.js.map +1 -1
- package/dist/services/oneRosterService.d.ts +4 -4
- package/package.json +109 -109
- package/dist/components/Loading/LoadLanguage.d.ts +0 -3
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
import { ROSTER_CONFIG } from "../configs/types";
|
|
2
|
+
import { DomainType, ROSTER_CONFIG } from "../configs/types";
|
|
3
3
|
interface Props {
|
|
4
4
|
rosterConfig: ROSTER_CONFIG;
|
|
5
5
|
updateData: Function;
|
|
6
|
+
type?: DomainType;
|
|
6
7
|
}
|
|
7
8
|
declare const RosterConfigForm: FC<Props>;
|
|
8
9
|
export default RosterConfigForm;
|
|
@@ -7,8 +7,9 @@ interface UploadInfo {
|
|
|
7
7
|
rejectedFiles?: string;
|
|
8
8
|
comment?: string;
|
|
9
9
|
}
|
|
10
|
-
declare const useImportOneRoster: ({ errorImportRest }: {
|
|
10
|
+
declare const useImportOneRoster: ({ errorImportRest, type }: {
|
|
11
11
|
errorImportRest: any;
|
|
12
|
+
type: any;
|
|
12
13
|
}) => {
|
|
13
14
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
14
15
|
fileProgress: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ROSTER_CONFIG } from "../configs/types";
|
|
2
|
-
declare const useRosterConfigForm: () => {
|
|
1
|
+
import { DomainType, ROSTER_CONFIG } from "../configs/types";
|
|
2
|
+
declare const useRosterConfigForm: (type: DomainType) => {
|
|
3
3
|
rosterConfig: ROSTER_CONFIG;
|
|
4
4
|
errorImportRest: string | null;
|
|
5
5
|
updateData: (values: any) => Promise<void>;
|