sevago-sso-fe 1.0.42 → 1.0.43

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.
@@ -15,3 +15,4 @@ export declare const updateAccount: import('@reduxjs/toolkit').AsyncThunk<import
15
15
  export declare const getAccount: import('@reduxjs/toolkit').AsyncThunk<import('../../apis').User, string, import('@reduxjs/toolkit').AsyncThunkConfig>;
16
16
  export declare const updatePositionOrgUnit: import('@reduxjs/toolkit').AsyncThunk<string, string, import('@reduxjs/toolkit').AsyncThunkConfig>;
17
17
  export declare const updateCurrentAccess: import('@reduxjs/toolkit').AsyncThunk<string, string, import('@reduxjs/toolkit').AsyncThunkConfig>;
18
+ export declare const resetCurrentAccessToBase: import('@reduxjs/toolkit').AsyncThunk<string, string, import('@reduxjs/toolkit').AsyncThunkConfig>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sevago-sso-fe",
3
- "version": "1.0.42",
3
+ "version": "1.0.43",
4
4
  "description": "Sevago SSO Frontend Library - A comprehensive SSO solution with React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,2 +0,0 @@
1
- import { AppInfo } from './apps.data';
2
- export declare const SYSTEM_MODULES: AppInfo[];
@@ -1,15 +0,0 @@
1
- import { SxProps } from '@mui/material';
2
- import { default as React } from 'react';
3
- import { SizeProps } from './avatar-enum.enum';
4
- interface AvatarUserInfoProps {
5
- name: string;
6
- url?: string;
7
- positions?: string[];
8
- maxWidth?: string | number;
9
- isTag?: boolean;
10
- sxName?: SxProps;
11
- sxPosition?: SxProps;
12
- sizeAvatar?: SizeProps;
13
- }
14
- export declare const AvatarUserInfo: React.FC<AvatarUserInfoProps>;
15
- export {};
@@ -1,9 +0,0 @@
1
- import { AvatarProps } from '@mui/material';
2
- import { default as React, ReactNode } from 'react';
3
- import { SizeProps } from './avatar-enum.enum';
4
- export interface AvatarElementProps extends AvatarProps {
5
- url?: string | null;
6
- size?: SizeProps;
7
- tooltipContent?: ReactNode;
8
- }
9
- export declare const AvatarElement: React.FC<AvatarElementProps>;
@@ -1,3 +0,0 @@
1
- export * from './avatar-enum.enum';
2
- export { AvatarElement } from './avatar.element';
3
- export { AvatarUserInfo } from './avatar-user-info.element';
@@ -1,14 +0,0 @@
1
- import { SxProps } from '@mui/system';
2
- import { default as React } from 'react';
3
- import { SizeProps } from '../../avatar';
4
- export interface ImageContentCaptionComponentProps {
5
- url?: string;
6
- content?: string;
7
- caption?: string;
8
- sizeType?: SizeProps;
9
- sx?: SxProps;
10
- sxContent?: SxProps;
11
- sxCaption?: SxProps;
12
- alt?: string;
13
- }
14
- export declare const ImageContentCaptionComponent: React.FC<ImageContentCaptionComponentProps>;
@@ -1,9 +0,0 @@
1
- import { default as React } from 'react';
2
- import { SizeProps } from '../../avatar/avatar-enum.enum';
3
- export interface ImageContentTimeComponentProps {
4
- url: string;
5
- content: string;
6
- time: Date;
7
- sizeType?: SizeProps;
8
- }
9
- export declare const ImageContentTimeComponent: React.FC<ImageContentTimeComponentProps>;