mario-core 3.0.5-es-beta → 3.0.5-es-staging
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/Alerts/ReactNotification.d.ts +4 -0
- package/dist/components/Modals/ModelSelectRole.d.ts +7 -0
- package/dist/containers/User/views/Profile.d.ts +15 -0
- package/dist/hooks/useLanguages.d.ts +10 -0
- package/dist/index.css +1147 -0
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -0
- package/dist/index.modern.js +9953 -9928
- package/dist/index.modern.js.map +1 -0
- package/dist/index.test.d.ts +1 -0
- package/dist/layouts/TheFooter.d.ts +3 -0
- package/dist/layouts/TheHeader.d.ts +6 -0
- package/dist/layouts/TheHeaderDropdown.d.ts +6 -0
- package/dist/layouts/TheLanguageDropdown.d.ts +3 -0
- package/dist/layouts/TheLayout.d.ts +4 -0
- package/dist/layouts/TheSidebar.d.ts +3 -0
- package/dist/redux/unreadNotification/action.d.ts +1 -0
- package/dist/types/Payload.d.ts +15 -0
- package/package.json +2 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import 'react-phone-number-input/style.css';
|
|
3
|
+
interface IProps {
|
|
4
|
+
userDetail: any;
|
|
5
|
+
confirmData: any;
|
|
6
|
+
currentRoles: any;
|
|
7
|
+
goBack: any;
|
|
8
|
+
setEdited: any;
|
|
9
|
+
setEditedTrue: any;
|
|
10
|
+
id?: string;
|
|
11
|
+
onResetPw: any;
|
|
12
|
+
getFile: any;
|
|
13
|
+
}
|
|
14
|
+
declare const Profile: ({ userDetail, confirmData, currentRoles, goBack, setEdited, setEditedTrue, id, onResetPw, getFile }: IProps) => JSX.Element;
|
|
15
|
+
export default Profile;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const useLanguages: () => {
|
|
3
|
+
languageList: any;
|
|
4
|
+
toggle: () => void;
|
|
5
|
+
dropdownOpen: boolean;
|
|
6
|
+
currentLang: string;
|
|
7
|
+
changeLanguageApp: (lang: string) => Promise<void>;
|
|
8
|
+
setCurrentLang: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
9
|
+
};
|
|
10
|
+
export default useLanguages;
|