mario-education 2.4.302-layout → 2.4.304-layout
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/layouts/hooks/useHeaderSideBar.d.ts +1 -1
- package/dist/components/layouts/hooks/useLanguages.d.ts +10 -0
- package/dist/containers/ConductSurvey/components/diaglog/hooks/useInterventionDialog.d.ts +1 -1
- package/dist/index.js +279 -385
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +280 -386
- package/dist/index.modern.js.map +1 -1
- package/package.json +3 -3
|
@@ -27,6 +27,6 @@ declare const useHeaderSideBar: (_navigations: any) => {
|
|
|
27
27
|
handleClose: () => void;
|
|
28
28
|
renderNavigationItem: (navigation: any, isSubItem?: boolean | undefined) => JSX.Element;
|
|
29
29
|
goToSettings: () => void;
|
|
30
|
-
t:
|
|
30
|
+
t: any;
|
|
31
31
|
};
|
|
32
32
|
export default useHeaderSideBar;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const useLanguages: () => {
|
|
3
|
+
languageList: any;
|
|
4
|
+
toggle: () => void;
|
|
5
|
+
dropdownOpen: boolean;
|
|
6
|
+
currentLang: any;
|
|
7
|
+
changeLanguageApp: (lang: string) => Promise<void>;
|
|
8
|
+
setCurrentLang: import("react").Dispatch<any>;
|
|
9
|
+
};
|
|
10
|
+
export default useLanguages;
|
|
@@ -15,7 +15,7 @@ interface Props {
|
|
|
15
15
|
onSubmit?: Function;
|
|
16
16
|
}
|
|
17
17
|
declare const useInterventionDialog: (props: Props) => {
|
|
18
|
-
t:
|
|
18
|
+
t: any;
|
|
19
19
|
intervention: INTERVENTION | undefined;
|
|
20
20
|
interventionLog: INTERVENTION_LOG;
|
|
21
21
|
answerType: string | null;
|