mario-education 2.4.187-level → 2.4.189-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.
- package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/components/ImportOneRoster.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/hooks/useImportOneRoster.d.ts +3 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/OneRoster/hooks/userRosterConfigForm.d.ts +1 -1
- package/dist/index.css +36 -0
- package/dist/index.js +668 -155
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +668 -155
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,9 @@ interface UploadInfo {
|
|
|
7
7
|
rejectedFiles?: string;
|
|
8
8
|
comment?: string;
|
|
9
9
|
}
|
|
10
|
-
declare const useImportOneRoster: (
|
|
10
|
+
declare const useImportOneRoster: ({ errorImportRest }: {
|
|
11
|
+
errorImportRest: any;
|
|
12
|
+
}) => {
|
|
11
13
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
12
14
|
fileProgress: number;
|
|
13
15
|
uploadInfo: UploadInfo | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ROSTER_CONFIG } from "../utils/types";
|
|
2
2
|
declare const useRosterConfigForm: () => {
|
|
3
3
|
rosterConfig: ROSTER_CONFIG;
|
|
4
|
-
|
|
4
|
+
errorImportRest: string | null;
|
|
5
5
|
updateData: (values: any) => Promise<void>;
|
|
6
6
|
};
|
|
7
7
|
export default useRosterConfigForm;
|
package/dist/index.css
CHANGED
|
@@ -254,6 +254,42 @@ tbody._b-AXV tr {
|
|
|
254
254
|
._1Jrg_ {
|
|
255
255
|
padding: 15px 20px;
|
|
256
256
|
}
|
|
257
|
+
._2r0G1 {
|
|
258
|
+
-webkit-animation: _2fufb 0.6s infinite linear;
|
|
259
|
+
animation: _2fufb 0.6s infinite linear;
|
|
260
|
+
transform: rotate(0);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@-webkit-keyframes _2fufb {
|
|
264
|
+
0% {
|
|
265
|
+
transform: rotate(0deg);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
100% {
|
|
269
|
+
transform: rotate(360deg);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
@keyframes _2fufb {
|
|
274
|
+
0% {
|
|
275
|
+
transform: rotate(0deg);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
100% {
|
|
279
|
+
transform: rotate(360deg);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
._3gvpw {
|
|
283
|
+
margin-left: 1.4rem;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
._u47jo {
|
|
287
|
+
margin-top: -12px;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
._3OiL8{
|
|
291
|
+
list-style-type: none;
|
|
292
|
+
}
|
|
257
293
|
._3DVMZ {
|
|
258
294
|
display: flex;
|
|
259
295
|
flex: 0 0 17%;
|