magneto365.ui 2.59.3 → 2.59.5
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/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +590 -469
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/AlertJobModal.component.d.ts +10 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +105 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalBody/AlertJobModalBody.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalButton/AlertJobModalButton.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalFooter/AlertJobModalFooter.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalHeader/AlertJobModalHeader.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalIcon/AlertJobModalIcon.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalTitle/AlertJobModalTitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobModal/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.component.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.interface.d.ts +18 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/AlertJobStatusButton.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/JobSuggestedDrawer/JobSuggestedDrawer.component.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/LoginHeader/LoginHeader.interface.d.ts +2 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenu.context.d.ts +2 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/cjs/types/constants/stories/megaMenu.constants.d.ts +9 -0
- package/dist/cjs/types/utils/icons/getIcons.util.d.ts +1 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +590 -470
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/AlertJobModal/AlertJobModal.component.d.ts +10 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +105 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalBody/AlertJobModalBody.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalButton/AlertJobModalButton.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalFooter/AlertJobModalFooter.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalHeader/AlertJobModalHeader.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalIcon/AlertJobModalIcon.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalTitle/AlertJobModalTitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobModal/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.component.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.interface.d.ts +18 -0
- package/dist/esm/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/AlertJobStatusButton.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/JobSuggestedDrawer/JobSuggestedDrawer.component.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/LoginHeader/LoginHeader.interface.d.ts +2 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenu.context.d.ts +2 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/esm/types/constants/stories/megaMenu.constants.d.ts +9 -0
- package/dist/esm/types/utils/icons/getIcons.util.d.ts +1 -0
- package/dist/index.d.ts +142 -3
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IAlertJobModal } from './AlertJobModal.interface';
|
|
3
|
+
export declare const AlertJobModal: React.FC<IAlertJobModal> & {
|
|
4
|
+
Header: React.FC<IAlertJobModal.Header>;
|
|
5
|
+
Body: React.FC<IAlertJobModal.Body>;
|
|
6
|
+
Footer: React.FC<IAlertJobModal.Footer>;
|
|
7
|
+
Title: React.FC<IAlertJobModal.Title>;
|
|
8
|
+
Icon: React.FC<IAlertJobModal.Icon>;
|
|
9
|
+
Button: React.FC<IAlertJobModal.Button>;
|
|
10
|
+
};
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface IAlertJobModal {
|
|
3
|
+
/**
|
|
4
|
+
* React children to be rendered inside the component.
|
|
5
|
+
*/
|
|
6
|
+
children: JSX.Element | JSX.Element[];
|
|
7
|
+
/**
|
|
8
|
+
* Additional class names for custom styling.
|
|
9
|
+
*/
|
|
10
|
+
className?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Represents whether the modal is open or closed.
|
|
13
|
+
*/
|
|
14
|
+
open: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Callback function to be executed when the modal is closed.
|
|
17
|
+
*/
|
|
18
|
+
onClose: () => void;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace IAlertJobModal {
|
|
21
|
+
interface Header {
|
|
22
|
+
/**
|
|
23
|
+
* React children to be rendered inside the container.
|
|
24
|
+
*/
|
|
25
|
+
children?: React.ReactNode;
|
|
26
|
+
/**
|
|
27
|
+
* Additional class names for custom styling.
|
|
28
|
+
*/
|
|
29
|
+
className?: string;
|
|
30
|
+
}
|
|
31
|
+
interface Body {
|
|
32
|
+
/**
|
|
33
|
+
* React children to be rendered inside the container.
|
|
34
|
+
*/
|
|
35
|
+
children?: React.ReactNode;
|
|
36
|
+
/**
|
|
37
|
+
* Additional class names for custom styling.
|
|
38
|
+
*/
|
|
39
|
+
className?: string;
|
|
40
|
+
}
|
|
41
|
+
interface Footer {
|
|
42
|
+
/**
|
|
43
|
+
* React children to be rendered inside the container.
|
|
44
|
+
*/
|
|
45
|
+
children?: React.ReactNode;
|
|
46
|
+
/**
|
|
47
|
+
* Additional class names for custom styling.
|
|
48
|
+
*/
|
|
49
|
+
className?: string;
|
|
50
|
+
}
|
|
51
|
+
interface Icon {
|
|
52
|
+
/**
|
|
53
|
+
* Additional class names for custom styling.
|
|
54
|
+
*/
|
|
55
|
+
className?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Here is the icon component
|
|
58
|
+
*/
|
|
59
|
+
src?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
* You can change the size of the icon by adding a numeric value here
|
|
62
|
+
*/
|
|
63
|
+
size?: number;
|
|
64
|
+
/**
|
|
65
|
+
* Text alt in the img element
|
|
66
|
+
*/
|
|
67
|
+
alt?: string | null;
|
|
68
|
+
}
|
|
69
|
+
interface Title {
|
|
70
|
+
/**
|
|
71
|
+
* Set title text on modal header
|
|
72
|
+
*/
|
|
73
|
+
title: string;
|
|
74
|
+
/**
|
|
75
|
+
* Set subtitle text on modal header
|
|
76
|
+
*/
|
|
77
|
+
subtitle?: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* React children to be rendered inside the container.
|
|
80
|
+
*/
|
|
81
|
+
children?: React.ReactNode;
|
|
82
|
+
/**
|
|
83
|
+
* Additional class names for custom styling.
|
|
84
|
+
*/
|
|
85
|
+
className?: string;
|
|
86
|
+
}
|
|
87
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
88
|
+
/**
|
|
89
|
+
* React children to be rendered inside the container.
|
|
90
|
+
*/
|
|
91
|
+
children?: React.ReactNode;
|
|
92
|
+
/**
|
|
93
|
+
* Additional class names for custom styling.
|
|
94
|
+
*/
|
|
95
|
+
className?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Here is the icon button component
|
|
98
|
+
*/
|
|
99
|
+
icon?: string | null;
|
|
100
|
+
/**
|
|
101
|
+
* You can change the size of the icon by adding a numeric value here
|
|
102
|
+
*/
|
|
103
|
+
sizeIcon?: number;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AlertJobModal.component';
|
|
@@ -3,5 +3,6 @@ import { IAlertJobStatus } from './AlertJobStatus.interface';
|
|
|
3
3
|
export declare const AlertJobStatus: React.FC<IAlertJobStatus> & {
|
|
4
4
|
Container: React.FC<IAlertJobStatus.Container>;
|
|
5
5
|
Icon: React.FC<IAlertJobStatus.Icon>;
|
|
6
|
+
Button: React.FC<IAlertJobStatus.Button>;
|
|
6
7
|
Text: React.FC<import("../../atoms/Text/Text.interface").IText>;
|
|
7
8
|
};
|
|
@@ -47,6 +47,24 @@ export declare namespace IAlertJobStatus {
|
|
|
47
47
|
*/
|
|
48
48
|
type?: EAlertJobStatusIcon;
|
|
49
49
|
}
|
|
50
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
51
|
+
/**
|
|
52
|
+
* React children to be rendered inside the container.
|
|
53
|
+
*/
|
|
54
|
+
children?: React.ReactNode;
|
|
55
|
+
/**
|
|
56
|
+
* Additional class names for custom styling.
|
|
57
|
+
*/
|
|
58
|
+
className?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Here is the icon button component
|
|
61
|
+
*/
|
|
62
|
+
icon?: string | null;
|
|
63
|
+
/**
|
|
64
|
+
* You can change the size of the icon by adding a numeric value here
|
|
65
|
+
*/
|
|
66
|
+
sizeIcon?: number;
|
|
67
|
+
}
|
|
50
68
|
}
|
|
51
69
|
export declare type EAlertJobStatusType = 'warning' | 'normal';
|
|
52
70
|
export declare type EAlertJobStatusIcon = 'success' | 'warning';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AlertJobStatusButton.component';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAvatar } from '@components/UI/atoms';
|
|
1
2
|
import { IMenuIcon } from '../MenuIcon/MenuIcon.interface';
|
|
2
3
|
export interface IListMenuIcons {
|
|
3
4
|
urlParam: string;
|
|
@@ -6,6 +7,8 @@ export interface IListMenuIcons {
|
|
|
6
7
|
logout: ILogout;
|
|
7
8
|
settings: ISettings;
|
|
8
9
|
haveGif?: boolean;
|
|
10
|
+
profileImage: IAvatar;
|
|
11
|
+
isAuthenticated: boolean;
|
|
9
12
|
}
|
|
10
13
|
export interface IMenuItems {
|
|
11
14
|
title?: string;
|
package/dist/esm/types/components/UI/organism/JobSuggestedDrawer/JobSuggestedDrawer.component.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare const JobSuggestedDrawer: React.FC<IJobSuggestedDrawer> & {
|
|
|
5
5
|
Alert: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus> & {
|
|
6
6
|
Container: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus.Container>;
|
|
7
7
|
Icon: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus.Icon>;
|
|
8
|
+
Button: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus.Button>;
|
|
8
9
|
Text: React.FC<import("../../atoms/Text/Text.interface").IText>;
|
|
9
10
|
};
|
|
10
11
|
SimilarJobs: React.FC<IJobSuggestedDrawer.SimilarJobCards>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IMegaMenuContext, IMegaMenuJobs, IMegaMenuSocialHeader, IMegaMenuMainHeader } from './MegaMenuContext.interface';
|
|
3
|
+
import { IlistMenuUserProps } from '@components/UI/organism';
|
|
3
4
|
export declare const MegaMenuProvider: React.FC<IMegaMenuContext>;
|
|
4
5
|
export declare const useMegaMenu: () => IMegaMenuContext;
|
|
5
6
|
export declare const useMegaMenuSocialHeader: () => IMegaMenuSocialHeader;
|
|
6
7
|
export declare const useMegaMenuJobs: () => IMegaMenuJobs;
|
|
7
8
|
export declare const useMegaMenuMain: () => IMegaMenuMainHeader;
|
|
9
|
+
export declare const useLoggedInUser: () => IlistMenuUserProps;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
|
|
2
2
|
import { ISearchbar } from '@components/UI/molecules';
|
|
3
|
+
import { IlistMenuUserProps } from '@components/UI/organism';
|
|
3
4
|
import { ReactNode } from 'react';
|
|
4
5
|
export interface IMegaMenuLink {
|
|
5
6
|
label: string;
|
|
@@ -43,4 +44,5 @@ export interface IMegaMenuContext {
|
|
|
43
44
|
socialHeaderProps: IMegaMenuSocialHeader;
|
|
44
45
|
jobsProps: IMegaMenuJobs;
|
|
45
46
|
mainHeaderProps: IMegaMenuMainHeader;
|
|
47
|
+
listMenuUserProps: IlistMenuUserProps;
|
|
46
48
|
}
|
|
@@ -18,6 +18,15 @@ export declare const filterProps: {
|
|
|
18
18
|
};
|
|
19
19
|
export declare const megaMenuCards: IMegaMenuCards;
|
|
20
20
|
export declare const megaMenuJobsIcons: any[];
|
|
21
|
+
export declare const megaMenuUserLoggedIcons: {
|
|
22
|
+
allJobs: any;
|
|
23
|
+
suggestedJobs: any;
|
|
24
|
+
savedJobs: any;
|
|
25
|
+
inProcess: any;
|
|
26
|
+
resume: any;
|
|
27
|
+
settings: any;
|
|
28
|
+
help: any;
|
|
29
|
+
};
|
|
21
30
|
export declare const mobileSocialIcons: any[];
|
|
22
31
|
export declare const megaMenuJobs: IMegaMenuJobs;
|
|
23
32
|
export declare const megaMenuBreadcrumbs: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getIcons: (iconName?: string | undefined) => any;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React$1, { ChangeEvent, FC, ReactNode, Ref, SetStateAction } from 'react';
|
|
3
|
-
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$1, ISearchItem as ISearchItem$1, IJobCompanyLogo as IJobCompanyLogo$1, IJobHeader as IJobHeader$1, IShareButton as IShareButton$1, IImage as IImage$1, IMainButton as IMainButton$1, ILinkProps as ILinkProps$1, ILogoComponent as ILogoComponent$1 } from '@components/UI/atoms';
|
|
3
|
+
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$1, ISearchItem as ISearchItem$1, IJobCompanyLogo as IJobCompanyLogo$1, IJobHeader as IJobHeader$1, IShareButton as IShareButton$1, IImage as IImage$1, IAvatar as IAvatar$1, IMainButton as IMainButton$1, ILinkProps as ILinkProps$1, ILogoComponent as ILogoComponent$1 } from '@components/UI/atoms';
|
|
4
4
|
import { IconProps as IconProps$2 } from '@components/UI/atoms/Icon';
|
|
5
5
|
import { ISaveButton as ISaveButton$1 } from '@components/UI/atoms/SaveButton';
|
|
6
6
|
import { ICustomText as ICustomText$1 } from '@components/UI/atoms/Text/Text.interface';
|
|
@@ -11,7 +11,7 @@ import { IMegaMenuCard as IMegaMenuCard$1, IFiltersRef as IFiltersRef$1, IDatePi
|
|
|
11
11
|
import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
12
12
|
import { IToggleButton as IToggleButton$1, IToggleButtonOnchangeValues as IToggleButtonOnchangeValues$1 } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
|
|
13
13
|
import * as _components_UI_organism from '@components/UI/organism';
|
|
14
|
-
import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1, IHeaderAnalystProps as IHeaderAnalystProps$1, IModalAnalyst as IModalAnalyst$1, INavMenuAnalystRegion as INavMenuAnalystRegion$1 } from '@components/UI/organism';
|
|
14
|
+
import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1, IHeaderAnalystProps as IHeaderAnalystProps$1, IModalAnalyst as IModalAnalyst$1, INavMenuAnalystRegion as INavMenuAnalystRegion$1, IlistMenuUserProps as IlistMenuUserProps$1 } from '@components/UI/organism';
|
|
15
15
|
import { IListMenuText as IListMenuText$1 } from '@components/UI/molecules/ListMenuText/ListMenuText.interface';
|
|
16
16
|
import { IJobCompanyHeader as IJobCompanyHeader$1 } from '@components/UI/molecules/JobCompanyHeader';
|
|
17
17
|
import { ISimilarJobsCard as ISimilarJobsCard$1 } from '@components/UI/molecules/SimilarJobsCard/SimilarJobsCard.interface';
|
|
@@ -2420,6 +2420,8 @@ interface IListMenuIcons {
|
|
|
2420
2420
|
logout: ILogout;
|
|
2421
2421
|
settings: ISettings;
|
|
2422
2422
|
haveGif?: boolean;
|
|
2423
|
+
profileImage: IAvatar$1;
|
|
2424
|
+
isAuthenticated: boolean;
|
|
2423
2425
|
}
|
|
2424
2426
|
interface IMenuItems {
|
|
2425
2427
|
title?: string;
|
|
@@ -3492,6 +3494,24 @@ declare namespace IAlertJobStatus {
|
|
|
3492
3494
|
*/
|
|
3493
3495
|
type?: EAlertJobStatusIcon;
|
|
3494
3496
|
}
|
|
3497
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3498
|
+
/**
|
|
3499
|
+
* React children to be rendered inside the container.
|
|
3500
|
+
*/
|
|
3501
|
+
children?: React.ReactNode;
|
|
3502
|
+
/**
|
|
3503
|
+
* Additional class names for custom styling.
|
|
3504
|
+
*/
|
|
3505
|
+
className?: string;
|
|
3506
|
+
/**
|
|
3507
|
+
* Here is the icon button component
|
|
3508
|
+
*/
|
|
3509
|
+
icon?: string | null;
|
|
3510
|
+
/**
|
|
3511
|
+
* You can change the size of the icon by adding a numeric value here
|
|
3512
|
+
*/
|
|
3513
|
+
sizeIcon?: number;
|
|
3514
|
+
}
|
|
3495
3515
|
}
|
|
3496
3516
|
declare type EAlertJobStatusType = 'warning' | 'normal';
|
|
3497
3517
|
declare type EAlertJobStatusIcon = 'success' | 'warning';
|
|
@@ -3622,6 +3642,8 @@ interface IlistMenuUserProps {
|
|
|
3622
3642
|
menuItems1440?: IMenuItems[];
|
|
3623
3643
|
logout: ILogout;
|
|
3624
3644
|
settings: ISettings;
|
|
3645
|
+
profileImage: IAvatar;
|
|
3646
|
+
isAuthenticated: boolean;
|
|
3625
3647
|
}
|
|
3626
3648
|
|
|
3627
3649
|
/**
|
|
@@ -4724,6 +4746,7 @@ declare const JobSuggestedDrawer: React$1.FC<IJobSuggestedDrawer> & {
|
|
|
4724
4746
|
Alert: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus> & {
|
|
4725
4747
|
Container: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Container>;
|
|
4726
4748
|
Icon: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Icon>;
|
|
4749
|
+
Button: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Button>;
|
|
4727
4750
|
Text: React$1.FC<IText>;
|
|
4728
4751
|
};
|
|
4729
4752
|
SimilarJobs: React$1.FC<IJobSuggestedDrawer.SimilarJobCards>;
|
|
@@ -4947,6 +4970,7 @@ declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
|
|
|
4947
4970
|
declare const AlertJobStatus: React$1.FC<IAlertJobStatus> & {
|
|
4948
4971
|
Container: React$1.FC<IAlertJobStatus.Container>;
|
|
4949
4972
|
Icon: React$1.FC<IAlertJobStatus.Icon>;
|
|
4973
|
+
Button: React$1.FC<IAlertJobStatus.Button>;
|
|
4950
4974
|
Text: React$1.FC<IText>;
|
|
4951
4975
|
};
|
|
4952
4976
|
|
|
@@ -5178,6 +5202,120 @@ interface INotification {
|
|
|
5178
5202
|
|
|
5179
5203
|
declare const Notification: React$1.FC<INotification>;
|
|
5180
5204
|
|
|
5205
|
+
interface IAlertJobModal {
|
|
5206
|
+
/**
|
|
5207
|
+
* React children to be rendered inside the component.
|
|
5208
|
+
*/
|
|
5209
|
+
children: JSX.Element | JSX.Element[];
|
|
5210
|
+
/**
|
|
5211
|
+
* Additional class names for custom styling.
|
|
5212
|
+
*/
|
|
5213
|
+
className?: string;
|
|
5214
|
+
/**
|
|
5215
|
+
* Represents whether the modal is open or closed.
|
|
5216
|
+
*/
|
|
5217
|
+
open: boolean;
|
|
5218
|
+
/**
|
|
5219
|
+
* Callback function to be executed when the modal is closed.
|
|
5220
|
+
*/
|
|
5221
|
+
onClose: () => void;
|
|
5222
|
+
}
|
|
5223
|
+
declare namespace IAlertJobModal {
|
|
5224
|
+
interface Header {
|
|
5225
|
+
/**
|
|
5226
|
+
* React children to be rendered inside the container.
|
|
5227
|
+
*/
|
|
5228
|
+
children?: React.ReactNode;
|
|
5229
|
+
/**
|
|
5230
|
+
* Additional class names for custom styling.
|
|
5231
|
+
*/
|
|
5232
|
+
className?: string;
|
|
5233
|
+
}
|
|
5234
|
+
interface Body {
|
|
5235
|
+
/**
|
|
5236
|
+
* React children to be rendered inside the container.
|
|
5237
|
+
*/
|
|
5238
|
+
children?: React.ReactNode;
|
|
5239
|
+
/**
|
|
5240
|
+
* Additional class names for custom styling.
|
|
5241
|
+
*/
|
|
5242
|
+
className?: string;
|
|
5243
|
+
}
|
|
5244
|
+
interface Footer {
|
|
5245
|
+
/**
|
|
5246
|
+
* React children to be rendered inside the container.
|
|
5247
|
+
*/
|
|
5248
|
+
children?: React.ReactNode;
|
|
5249
|
+
/**
|
|
5250
|
+
* Additional class names for custom styling.
|
|
5251
|
+
*/
|
|
5252
|
+
className?: string;
|
|
5253
|
+
}
|
|
5254
|
+
interface Icon {
|
|
5255
|
+
/**
|
|
5256
|
+
* Additional class names for custom styling.
|
|
5257
|
+
*/
|
|
5258
|
+
className?: string;
|
|
5259
|
+
/**
|
|
5260
|
+
* Here is the icon component
|
|
5261
|
+
*/
|
|
5262
|
+
src?: string | null;
|
|
5263
|
+
/**
|
|
5264
|
+
* You can change the size of the icon by adding a numeric value here
|
|
5265
|
+
*/
|
|
5266
|
+
size?: number;
|
|
5267
|
+
/**
|
|
5268
|
+
* Text alt in the img element
|
|
5269
|
+
*/
|
|
5270
|
+
alt?: string | null;
|
|
5271
|
+
}
|
|
5272
|
+
interface Title {
|
|
5273
|
+
/**
|
|
5274
|
+
* Set title text on modal header
|
|
5275
|
+
*/
|
|
5276
|
+
title: string;
|
|
5277
|
+
/**
|
|
5278
|
+
* Set subtitle text on modal header
|
|
5279
|
+
*/
|
|
5280
|
+
subtitle?: string | null;
|
|
5281
|
+
/**
|
|
5282
|
+
* React children to be rendered inside the container.
|
|
5283
|
+
*/
|
|
5284
|
+
children?: React.ReactNode;
|
|
5285
|
+
/**
|
|
5286
|
+
* Additional class names for custom styling.
|
|
5287
|
+
*/
|
|
5288
|
+
className?: string;
|
|
5289
|
+
}
|
|
5290
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
5291
|
+
/**
|
|
5292
|
+
* React children to be rendered inside the container.
|
|
5293
|
+
*/
|
|
5294
|
+
children?: React.ReactNode;
|
|
5295
|
+
/**
|
|
5296
|
+
* Additional class names for custom styling.
|
|
5297
|
+
*/
|
|
5298
|
+
className?: string;
|
|
5299
|
+
/**
|
|
5300
|
+
* Here is the icon button component
|
|
5301
|
+
*/
|
|
5302
|
+
icon?: string | null;
|
|
5303
|
+
/**
|
|
5304
|
+
* You can change the size of the icon by adding a numeric value here
|
|
5305
|
+
*/
|
|
5306
|
+
sizeIcon?: number;
|
|
5307
|
+
}
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
declare const AlertJobModal: React$1.FC<IAlertJobModal> & {
|
|
5311
|
+
Header: React$1.FC<IAlertJobModal.Header>;
|
|
5312
|
+
Body: React$1.FC<IAlertJobModal.Body>;
|
|
5313
|
+
Footer: React$1.FC<IAlertJobModal.Footer>;
|
|
5314
|
+
Title: React$1.FC<IAlertJobModal.Title>;
|
|
5315
|
+
Icon: React$1.FC<IAlertJobModal.Icon>;
|
|
5316
|
+
Button: React$1.FC<IAlertJobModal.Button>;
|
|
5317
|
+
};
|
|
5318
|
+
|
|
5181
5319
|
interface IJobsPage {
|
|
5182
5320
|
/**
|
|
5183
5321
|
* Props for the filter bottom header section.
|
|
@@ -5695,6 +5833,7 @@ interface IMegaMenuContext {
|
|
|
5695
5833
|
socialHeaderProps: IMegaMenuSocialHeader;
|
|
5696
5834
|
jobsProps: IMegaMenuJobs;
|
|
5697
5835
|
mainHeaderProps: IMegaMenuMainHeader;
|
|
5836
|
+
listMenuUserProps: IlistMenuUserProps$1;
|
|
5698
5837
|
}
|
|
5699
5838
|
|
|
5700
5839
|
declare const MegaMenu: React$1.FC<IMegaMenuContext & IMegaMenu> & {
|
|
@@ -5717,4 +5856,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
5717
5856
|
showContent?: boolean | undefined;
|
|
5718
5857
|
}>;
|
|
5719
5858
|
|
|
5720
|
-
export { Actions, Alert, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, ButtonLink, Checkbox, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertJobStatusIcon, EAlertJobStatusType, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAlertJobStatus, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, IButtonLink, ICardsRef, ICheckbox, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterActions, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFiltersRef, IFooterList, IFrequentSearch, IGetOptionsOnSearchProps, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuDrawer, IMegaMenuDrawerItem, IMegaMenuDrawerItemContent, IMegaMenuEmpty, IMegaMenuSideCards, IMegaMenuTab, IMenuCollapseChildren, IMenuDropdownProps, IMenuIcon, IMenuItem, IMenuItems, IMenuSearch, IMenuUser, IMessageProps, IMobileDatePicker, IMobileDrawer, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, IModalAnalyst, IModalAnalystProps, IModalAnalystScreen, IModalProps, IMultiRangeSlider, INavMMenuAnalystRegionModal, INavMenuAnalystIcons, INavMenuAnalystOption, INavMenuAnalystProps, INavMenuAnalystQueryString, INavMenuAnalystRegion, INavMenuAnalystRegionModalProps, INavMenuAnalystSection, INavMenuDrawerAnalystProps, INotification, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarCard, ISimilarCardData, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IUserTerm, IVacancies$1 as IVacancies, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, Input, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobRequirementsElement, JobSkillsCard, JobSuggestedDrawer, JobSuggestedHeader, JobSuggestedSimilarJobs, JobVideo, JobsPage, Link, LinkElement, LinkType, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuDrawer, MegaMenuDrawerItem, MegaMenuEmpty, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, Notification, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default as SortMenu, SuggestedJobsPage, Switch, TExpandableInfoSize, TExpandableInfoVariant, TMessageType, TToggleButtonList, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
|
5859
|
+
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, ButtonLink, Checkbox, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertJobStatusIcon, EAlertJobStatusType, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAlertJobStatus, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, IButtonLink, ICardsRef, ICheckbox, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterActions, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFiltersRef, IFooterList, IFrequentSearch, IGetOptionsOnSearchProps, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuDrawer, IMegaMenuDrawerItem, IMegaMenuDrawerItemContent, IMegaMenuEmpty, IMegaMenuSideCards, IMegaMenuTab, IMenuCollapseChildren, IMenuDropdownProps, IMenuIcon, IMenuItem, IMenuItems, IMenuSearch, IMenuUser, IMessageProps, IMobileDatePicker, IMobileDrawer, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, IModalAnalyst, IModalAnalystProps, IModalAnalystScreen, IModalProps, IMultiRangeSlider, INavMMenuAnalystRegionModal, INavMenuAnalystIcons, INavMenuAnalystOption, INavMenuAnalystProps, INavMenuAnalystQueryString, INavMenuAnalystRegion, INavMenuAnalystRegionModalProps, INavMenuAnalystSection, INavMenuDrawerAnalystProps, INotification, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarCard, ISimilarCardData, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IUserTerm, IVacancies$1 as IVacancies, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, Input, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobRequirementsElement, JobSkillsCard, JobSuggestedDrawer, JobSuggestedHeader, JobSuggestedSimilarJobs, JobVideo, JobsPage, Link, LinkElement, LinkType, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuDrawer, MegaMenuDrawerItem, MegaMenuEmpty, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, Notification, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default as SortMenu, SuggestedJobsPage, Switch, TExpandableInfoSize, TExpandableInfoVariant, TMessageType, TToggleButtonList, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
package/package.json
CHANGED