mario-core 2.9.150-level → 2.9.151-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/components/Buttons/SyncButton.d.ts +8 -0
- package/dist/components/Buttons/SyncButtonIcon.d.ts +7 -0
- package/dist/containers/User/constants/types.d.ts +13 -0
- package/dist/containers/User/hooks/useStudentSelector.d.ts +8 -0
- package/dist/containers/User/hooks/useUserDetail.d.ts +1 -0
- package/dist/containers/User/hooks/useUserList.d.ts +2 -0
- package/dist/containers/User/views/RosterStudentSelector.d.ts +7 -0
- package/dist/index.css +15 -3
- package/dist/index.js +2336 -1456
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2337 -1457
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/TheLayoutAdmin.d.ts +4 -0
- package/dist/services/userService.d.ts +8 -1
- package/dist/types/Filter.d.ts +6 -0
- package/package.json +101 -101
- package/dist/containers/Login/constant/type.d.ts +0 -5
- package/dist/containers/Login/views/ModelSelectRole.d.ts +0 -4
- package/dist/utils/amplitude.d.ts +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare type RosterStudent = {
|
|
2
|
+
sourcedId: string;
|
|
3
|
+
givenName: string;
|
|
4
|
+
middleName: string;
|
|
5
|
+
familyName: string;
|
|
6
|
+
email: string;
|
|
7
|
+
grades: string;
|
|
8
|
+
role: string;
|
|
9
|
+
};
|
|
10
|
+
export declare type Option = {
|
|
11
|
+
label: string;
|
|
12
|
+
value: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Option } from "../constants/types";
|
|
2
|
+
declare const useStudentSelector: (value?: string | undefined) => {
|
|
3
|
+
students: Option[];
|
|
4
|
+
isLoading: boolean;
|
|
5
|
+
student: Option | undefined;
|
|
6
|
+
handleInputChange: (value: string) => void;
|
|
7
|
+
};
|
|
8
|
+
export default useStudentSelector;
|
|
@@ -8,5 +8,7 @@ declare const useUserList: () => {
|
|
|
8
8
|
changeFilters: (updatedFilters: any) => void;
|
|
9
9
|
reDirectDetailPage: (id?: number | undefined) => void;
|
|
10
10
|
swicthUser: (id: string) => Promise<void>;
|
|
11
|
+
handleSyncRosterStudents: () => Promise<void>;
|
|
12
|
+
rosterUserInfo: (record: any) => string;
|
|
11
13
|
};
|
|
12
14
|
export default useUserList;
|
package/dist/index.css
CHANGED
|
@@ -294,7 +294,19 @@
|
|
|
294
294
|
._jOY7o {
|
|
295
295
|
background-size: cover;
|
|
296
296
|
opacity: 0;
|
|
297
|
-
animation: _wnn2_ 20s step-start infinite 0s;
|
|
297
|
+
-webkit-animation: _wnn2_ 20s step-start infinite 0s;
|
|
298
|
+
animation: _wnn2_ 20s step-start infinite 0s; }
|
|
299
|
+
|
|
300
|
+
@-webkit-keyframes _wnn2_ {
|
|
301
|
+
0% {
|
|
302
|
+
opacity: 0;
|
|
303
|
+
background-image: url("/images/landing-page.jpg"); }
|
|
304
|
+
50% {
|
|
305
|
+
opacity: 1;
|
|
306
|
+
background-image: url("/images/landing-page2.jpg"); }
|
|
307
|
+
100% {
|
|
308
|
+
opacity: 2;
|
|
309
|
+
background-image: url("/images/landing-page3.jpg"); } }
|
|
298
310
|
|
|
299
311
|
@keyframes _wnn2_ {
|
|
300
312
|
0% {
|
|
@@ -323,7 +335,7 @@
|
|
|
323
335
|
height: 100%;
|
|
324
336
|
padding: 20px 100px; }
|
|
325
337
|
._F-hjL ._149oA ._24U3W > img {
|
|
326
|
-
height:
|
|
338
|
+
height: 40px; }
|
|
327
339
|
._F-hjL ._149oA ._3Wmco {
|
|
328
340
|
padding-top: 70px; }
|
|
329
341
|
|
|
@@ -373,7 +385,7 @@
|
|
|
373
385
|
|
|
374
386
|
._1hXpy {
|
|
375
387
|
max-width: 160px;
|
|
376
|
-
max-height:
|
|
388
|
+
max-height: 40px; }
|
|
377
389
|
|
|
378
390
|
._3vb3s li > a {
|
|
379
391
|
color: #808080 !important; }
|