sevago-sso-fe 1.0.40 → 1.0.42

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,3 @@
1
1
  export * from './auth.constant';
2
2
  export * from './auth.enum';
3
3
  export * from './auth.interface';
4
- export * from './parts';
@@ -1,3 +1,2 @@
1
1
  export { DashboardPage } from './dashboard.page';
2
2
  export * from './screen';
3
- export * from './sidebar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sevago-sso-fe",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
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,4 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface AvatarUserComponentProps {
3
- }
4
- export declare const AvatarUserComponent: React.FC<AvatarUserComponentProps>;
@@ -1 +0,0 @@
1
- export { AvatarUserComponent } from './avatar-user.component';
@@ -1,19 +0,0 @@
1
- import { default as React, ReactNode } from 'react';
2
- export declare enum SnackbarType {
3
- INFO = "info",
4
- SUCCESS = "success",
5
- ERROR = "error",
6
- WARNING = "warning"
7
- }
8
- export interface SnackbarContext {
9
- message: string;
10
- type: SnackbarType;
11
- }
12
- export interface SnackbarContextType {
13
- showSnackbar: (params: SnackbarContext) => void;
14
- }
15
- export interface SnackbarProviderProps {
16
- children?: ReactNode;
17
- }
18
- export declare const SnackbarProvider: React.FC<SnackbarProviderProps>;
19
- export declare const useSnackbar: () => SnackbarContextType;
@@ -1,25 +0,0 @@
1
- export interface TaggedUser {
2
- id: string;
3
- name: string;
4
- url: string;
5
- }
6
- interface TagPosition {
7
- start: number;
8
- end: number;
9
- }
10
- interface UseTagSelectorReturn {
11
- showTagSelector: boolean;
12
- tagPosition: TagPosition | null;
13
- searchQuery: string;
14
- filteredUsers: TaggedUser[];
15
- selectedUserIndex: number;
16
- users: TaggedUser[];
17
- handleInputChange: (newValue: string) => void;
18
- resetTagSelector: () => void;
19
- resetAll: () => void;
20
- setSearchQuery: (query: string) => void;
21
- taggedUserIds: Set<string>;
22
- removeTaggedUser: (userId: string) => void;
23
- }
24
- export declare const useTagSelector: (movementId: string) => UseTagSelectorReturn;
25
- export {};
@@ -1 +0,0 @@
1
- export declare const useSidebar: () => any;
@@ -1 +0,0 @@
1
- export * from './otp';
@@ -1 +0,0 @@
1
- export { OtpPart } from './otp.part';
@@ -1,6 +0,0 @@
1
- import { default as React } from 'react';
2
- import { AuthProcess } from '../../auth.enum';
3
- export interface OtpPartProps {
4
- setAuthProcess: React.Dispatch<React.SetStateAction<AuthProcess>>;
5
- }
6
- export declare const OtpPart: React.FC<OtpPartProps>;
@@ -1,2 +0,0 @@
1
- export { SidebarContext } from './sidebar.context';
2
- export { SidebarProvider } from './sidebar.provider';
@@ -1,10 +0,0 @@
1
- import { AppInfo } from '../../../common/constant/apps.data';
2
- interface SidebarContextType {
3
- isCollapsed: boolean;
4
- setIsCollapsed: (collapsed: boolean) => void;
5
- activeExpandMenu: AppInfo[] | null;
6
- setActiveExpandMenu: (menu: AppInfo[] | null) => void;
7
- sidebarWidth: string;
8
- }
9
- export declare const SidebarContext: import('react').Context<SidebarContextType | undefined>;
10
- export {};
@@ -1,4 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const SidebarProvider: React.FC<{
3
- children: React.ReactNode;
4
- }>;