sixseconds-modules 1.6.29 → 1.6.31
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/api/user.d.ts +3 -2
- package/dist/components/elements/index.d.ts +1 -0
- package/dist/components/elements/warning.d.ts +1 -2
- package/dist/components/header/index.d.ts +1 -1
- package/dist/components/header/previousLoginBanner.d.ts +7 -0
- package/dist/components/header/type.d.ts +1 -0
- package/dist/index.cjs.js +422 -108
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.es.js +423 -109
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/api/user.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function getDropDownMenuApi(params: any): Promise<import('./types/base').ErrorResult | {
|
|
2
2
|
remote: "success";
|
|
3
3
|
data: any;
|
|
4
4
|
}>;
|
|
@@ -6,7 +6,8 @@ export declare function notificationApi(data: any): Promise<import('./types/base
|
|
|
6
6
|
remote: "success";
|
|
7
7
|
data: any;
|
|
8
8
|
}>;
|
|
9
|
-
export declare function
|
|
9
|
+
export declare function changeUserPasswordApi(payload: any): Promise<import('./types/base').ErrorResult | {
|
|
10
10
|
remote: "success";
|
|
11
11
|
data: any;
|
|
12
12
|
}>;
|
|
13
|
+
export declare function autoLoginApi(id: string, userDetails?: any): Promise<import('./types/base').SuccessResult<any> | import('./types/base').ErrorResult>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IHeaderProps } from './type';
|
|
2
|
-
export declare const Header: ({ router, frontCustomComponent, endCustomComponents, totallyEndCustomComponent, userData, interFaceLangList, centerCustomComponents, updateInterfaceLang, selectedInterFaceLang, logoutHandler, logo, isNotification, extraMenuOptions, isMenu, isAccessAppMenu, notificationAccessApps, sx, t, }: IHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const Header: ({ router, frontCustomComponent, endCustomComponents, totallyEndCustomComponent, userData, interFaceLangList, centerCustomComponents, updateInterfaceLang, selectedInterFaceLang, logoutHandler, logo, isNotification, extraMenuOptions, isMenu, isAccessAppMenu, notificationAccessApps, isPreviousLoginBanner, sx, t, }: IHeaderProps) => import("react/jsx-runtime").JSX.Element;
|