mario-core 2.9.180-external → 2.9.180-plp

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,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,4 @@
1
+ import { Language } from "../types/Language";
2
+ export declare const LANGUAGES: Language[];
3
+ export declare const DEFAULT_LANGUAGE_CODE = "en-GB";
4
+ export declare const SUPPORTED_LANGUAGES_CODE: string[];
@@ -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;
@@ -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;