sixseconds-modules 1.6.28 → 1.6.30

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.
@@ -1,4 +1,4 @@
1
- export declare function getDropDownMenuAPI(params: any): Promise<import('./types/base').ErrorResult | {
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 changeUserPassword(payload: any): Promise<import('./types/base').ErrorResult | {
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,3 +1,4 @@
1
1
  export { default as BackArrow } from './backArrow';
2
2
  export { default as Warning } from './warning';
3
3
  export { default as FormikErrorMsg } from './formikMsg';
4
+ export { default as Logo } from './logo';
@@ -1,6 +1,5 @@
1
- declare const Warning: ({ message, isTranslate, type, }: {
1
+ declare const Warning: ({ message, type }: {
2
2
  message: string;
3
- isTranslate?: boolean;
4
3
  type?: string;
5
4
  }) => import("react/jsx-runtime").JSX.Element;
6
5
  export default Warning;
@@ -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;
@@ -0,0 +1,7 @@
1
+ import { t } from '../../types';
2
+ interface IProps {
3
+ t: t;
4
+ router?: any;
5
+ }
6
+ declare const PreviousLoginBanner: ({ t, router }: IProps) => any;
7
+ export default PreviousLoginBanner;
@@ -62,6 +62,7 @@ export interface IInterFaceLang {
62
62
  export interface IHeaderProps {
63
63
  t: t
64
64
  router?: any
65
+ isPreviousLoginBanner?: boolean
65
66
  notificationAccessApps?: {
66
67
  name: string
67
68
  }[]