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.
@@ -0,0 +1,8 @@
1
+ import React, { FC } from "react";
2
+ interface Props {
3
+ onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
4
+ className?: string;
5
+ text: string;
6
+ }
7
+ declare const SyncButtonIcon: FC<Props>;
8
+ export default SyncButtonIcon;
@@ -0,0 +1,7 @@
1
+ import React, { FC } from "react";
2
+ interface Props {
3
+ onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
4
+ className?: string;
5
+ }
6
+ declare const SyncButtonIcon: FC<Props>;
7
+ export default SyncButtonIcon;
@@ -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,6 +8,7 @@ declare type UserDetail = {
8
8
  roles: string[];
9
9
  isActive: boolean;
10
10
  profileImageFileName: string;
11
+ sourcedId?: string;
11
12
  };
12
13
  declare const useUserDetail: (id?: string | undefined) => {
13
14
  userDetail: UserDetail;
@@ -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;
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ interface Props {
3
+ onChange: (e: any) => void;
4
+ value?: string;
5
+ }
6
+ declare const RosterStudentSelector: FC<Props>;
7
+ export default RosterStudentSelector;
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: 60px; }
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: 60px; }
388
+ max-height: 40px; }
377
389
 
378
390
  ._3vb3s li > a {
379
391
  color: #808080 !important; }