magneto365.ui 2.59.4 → 2.59.6-alpha
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 +539 -463
- 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 +2 -2
- package/dist/cjs/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.component.d.ts +2 -1
- package/dist/cjs/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface.d.ts +8 -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 -2
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +4 -1
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +539 -464
- 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 +2 -2
- package/dist/esm/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.component.d.ts +2 -1
- package/dist/esm/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface.d.ts +8 -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 -2
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +4 -1
- package/dist/index.d.ts +151 -6
- 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';
|
|
@@ -7,8 +7,8 @@ export interface IListMenuIcons {
|
|
|
7
7
|
logout: ILogout;
|
|
8
8
|
settings: ISettings;
|
|
9
9
|
haveGif?: boolean;
|
|
10
|
-
profileImage
|
|
11
|
-
isAuthenticated
|
|
10
|
+
profileImage?: IAvatar;
|
|
11
|
+
isAuthenticated?: boolean;
|
|
12
12
|
}
|
|
13
13
|
export interface IMenuItems {
|
|
14
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,10 +1,12 @@
|
|
|
1
1
|
import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
|
|
2
2
|
import { ISearchbar } from '@components/UI/molecules';
|
|
3
|
+
import { IPopoverRef } from '@components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface';
|
|
3
4
|
import { IlistMenuUserProps } from '@components/UI/organism';
|
|
4
|
-
import { ReactNode } from 'react';
|
|
5
|
+
import React, { ReactNode } from 'react';
|
|
5
6
|
export interface IMegaMenuLink {
|
|
6
7
|
label: string;
|
|
7
8
|
url: string;
|
|
9
|
+
onClick?: () => void;
|
|
8
10
|
target?: string;
|
|
9
11
|
icon?: string | undefined;
|
|
10
12
|
}
|
|
@@ -39,6 +41,7 @@ export interface IMegaMenuJobs {
|
|
|
39
41
|
onChangeTab?: (index: number) => void;
|
|
40
42
|
jobAction?: IMegaMenuAction;
|
|
41
43
|
allJobsAction?: IMegaMenuLink;
|
|
44
|
+
popoverRef?: React.Ref<IPopoverRef>;
|
|
42
45
|
}
|
|
43
46
|
export interface IMegaMenuContext {
|
|
44
47
|
socialHeaderProps: IMegaMenuSocialHeader;
|
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ import { IRightsReservedText as IRightsReservedText$1 } from '@components/UI/mol
|
|
|
33
33
|
import { IFooterMenuLinks as IFooterMenuLinks$1 } from '@components/UI/organism/FooterMenuLinks/FooterMenuLinks.interface';
|
|
34
34
|
import { ERenderType } from '@constants/stories';
|
|
35
35
|
import { IMegaMenuTab as IMegaMenuTab$1 } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
|
|
36
|
+
import { IPopoverRef as IPopoverRef$1 } from '@components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface';
|
|
36
37
|
|
|
37
38
|
interface IContextAppProvider {
|
|
38
39
|
children: React.ReactNode;
|
|
@@ -2420,8 +2421,8 @@ interface IListMenuIcons {
|
|
|
2420
2421
|
logout: ILogout;
|
|
2421
2422
|
settings: ISettings;
|
|
2422
2423
|
haveGif?: boolean;
|
|
2423
|
-
profileImage
|
|
2424
|
-
isAuthenticated
|
|
2424
|
+
profileImage?: IAvatar$1;
|
|
2425
|
+
isAuthenticated?: boolean;
|
|
2425
2426
|
}
|
|
2426
2427
|
interface IMenuItems {
|
|
2427
2428
|
title?: string;
|
|
@@ -2571,7 +2572,15 @@ declare const MegaMenuCard: React$1.FC<IMegaMenuCard>;
|
|
|
2571
2572
|
|
|
2572
2573
|
declare const MegaMenuJobsTabs: React$1.FC;
|
|
2573
2574
|
|
|
2574
|
-
|
|
2575
|
+
interface IMegaMenuPopover {
|
|
2576
|
+
children: ReactNode;
|
|
2577
|
+
popoverRef?: React.Ref<IPopoverRef>;
|
|
2578
|
+
}
|
|
2579
|
+
interface IPopoverRef {
|
|
2580
|
+
setShow: (show: boolean) => void;
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
declare const MegaMenuPopover: React$1.FC<IMegaMenuPopover>;
|
|
2575
2584
|
|
|
2576
2585
|
interface IMegaMenuSideCards {
|
|
2577
2586
|
/**
|
|
@@ -3494,6 +3503,24 @@ declare namespace IAlertJobStatus {
|
|
|
3494
3503
|
*/
|
|
3495
3504
|
type?: EAlertJobStatusIcon;
|
|
3496
3505
|
}
|
|
3506
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3507
|
+
/**
|
|
3508
|
+
* React children to be rendered inside the container.
|
|
3509
|
+
*/
|
|
3510
|
+
children?: React.ReactNode;
|
|
3511
|
+
/**
|
|
3512
|
+
* Additional class names for custom styling.
|
|
3513
|
+
*/
|
|
3514
|
+
className?: string;
|
|
3515
|
+
/**
|
|
3516
|
+
* Here is the icon button component
|
|
3517
|
+
*/
|
|
3518
|
+
icon?: string | null;
|
|
3519
|
+
/**
|
|
3520
|
+
* You can change the size of the icon by adding a numeric value here
|
|
3521
|
+
*/
|
|
3522
|
+
sizeIcon?: number;
|
|
3523
|
+
}
|
|
3497
3524
|
}
|
|
3498
3525
|
declare type EAlertJobStatusType = 'warning' | 'normal';
|
|
3499
3526
|
declare type EAlertJobStatusIcon = 'success' | 'warning';
|
|
@@ -3624,8 +3651,8 @@ interface IlistMenuUserProps {
|
|
|
3624
3651
|
menuItems1440?: IMenuItems[];
|
|
3625
3652
|
logout: ILogout;
|
|
3626
3653
|
settings: ISettings;
|
|
3627
|
-
profileImage
|
|
3628
|
-
isAuthenticated
|
|
3654
|
+
profileImage?: IAvatar;
|
|
3655
|
+
isAuthenticated?: boolean;
|
|
3629
3656
|
}
|
|
3630
3657
|
|
|
3631
3658
|
/**
|
|
@@ -4728,6 +4755,7 @@ declare const JobSuggestedDrawer: React$1.FC<IJobSuggestedDrawer> & {
|
|
|
4728
4755
|
Alert: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus> & {
|
|
4729
4756
|
Container: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Container>;
|
|
4730
4757
|
Icon: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Icon>;
|
|
4758
|
+
Button: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Button>;
|
|
4731
4759
|
Text: React$1.FC<IText>;
|
|
4732
4760
|
};
|
|
4733
4761
|
SimilarJobs: React$1.FC<IJobSuggestedDrawer.SimilarJobCards>;
|
|
@@ -4951,6 +4979,7 @@ declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
|
|
|
4951
4979
|
declare const AlertJobStatus: React$1.FC<IAlertJobStatus> & {
|
|
4952
4980
|
Container: React$1.FC<IAlertJobStatus.Container>;
|
|
4953
4981
|
Icon: React$1.FC<IAlertJobStatus.Icon>;
|
|
4982
|
+
Button: React$1.FC<IAlertJobStatus.Button>;
|
|
4954
4983
|
Text: React$1.FC<IText>;
|
|
4955
4984
|
};
|
|
4956
4985
|
|
|
@@ -5182,6 +5211,120 @@ interface INotification {
|
|
|
5182
5211
|
|
|
5183
5212
|
declare const Notification: React$1.FC<INotification>;
|
|
5184
5213
|
|
|
5214
|
+
interface IAlertJobModal {
|
|
5215
|
+
/**
|
|
5216
|
+
* React children to be rendered inside the component.
|
|
5217
|
+
*/
|
|
5218
|
+
children: JSX.Element | JSX.Element[];
|
|
5219
|
+
/**
|
|
5220
|
+
* Additional class names for custom styling.
|
|
5221
|
+
*/
|
|
5222
|
+
className?: string;
|
|
5223
|
+
/**
|
|
5224
|
+
* Represents whether the modal is open or closed.
|
|
5225
|
+
*/
|
|
5226
|
+
open: boolean;
|
|
5227
|
+
/**
|
|
5228
|
+
* Callback function to be executed when the modal is closed.
|
|
5229
|
+
*/
|
|
5230
|
+
onClose: () => void;
|
|
5231
|
+
}
|
|
5232
|
+
declare namespace IAlertJobModal {
|
|
5233
|
+
interface Header {
|
|
5234
|
+
/**
|
|
5235
|
+
* React children to be rendered inside the container.
|
|
5236
|
+
*/
|
|
5237
|
+
children?: React.ReactNode;
|
|
5238
|
+
/**
|
|
5239
|
+
* Additional class names for custom styling.
|
|
5240
|
+
*/
|
|
5241
|
+
className?: string;
|
|
5242
|
+
}
|
|
5243
|
+
interface Body {
|
|
5244
|
+
/**
|
|
5245
|
+
* React children to be rendered inside the container.
|
|
5246
|
+
*/
|
|
5247
|
+
children?: React.ReactNode;
|
|
5248
|
+
/**
|
|
5249
|
+
* Additional class names for custom styling.
|
|
5250
|
+
*/
|
|
5251
|
+
className?: string;
|
|
5252
|
+
}
|
|
5253
|
+
interface Footer {
|
|
5254
|
+
/**
|
|
5255
|
+
* React children to be rendered inside the container.
|
|
5256
|
+
*/
|
|
5257
|
+
children?: React.ReactNode;
|
|
5258
|
+
/**
|
|
5259
|
+
* Additional class names for custom styling.
|
|
5260
|
+
*/
|
|
5261
|
+
className?: string;
|
|
5262
|
+
}
|
|
5263
|
+
interface Icon {
|
|
5264
|
+
/**
|
|
5265
|
+
* Additional class names for custom styling.
|
|
5266
|
+
*/
|
|
5267
|
+
className?: string;
|
|
5268
|
+
/**
|
|
5269
|
+
* Here is the icon component
|
|
5270
|
+
*/
|
|
5271
|
+
src?: string | null;
|
|
5272
|
+
/**
|
|
5273
|
+
* You can change the size of the icon by adding a numeric value here
|
|
5274
|
+
*/
|
|
5275
|
+
size?: number;
|
|
5276
|
+
/**
|
|
5277
|
+
* Text alt in the img element
|
|
5278
|
+
*/
|
|
5279
|
+
alt?: string | null;
|
|
5280
|
+
}
|
|
5281
|
+
interface Title {
|
|
5282
|
+
/**
|
|
5283
|
+
* Set title text on modal header
|
|
5284
|
+
*/
|
|
5285
|
+
title: string;
|
|
5286
|
+
/**
|
|
5287
|
+
* Set subtitle text on modal header
|
|
5288
|
+
*/
|
|
5289
|
+
subtitle?: string | null;
|
|
5290
|
+
/**
|
|
5291
|
+
* React children to be rendered inside the container.
|
|
5292
|
+
*/
|
|
5293
|
+
children?: React.ReactNode;
|
|
5294
|
+
/**
|
|
5295
|
+
* Additional class names for custom styling.
|
|
5296
|
+
*/
|
|
5297
|
+
className?: string;
|
|
5298
|
+
}
|
|
5299
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
5300
|
+
/**
|
|
5301
|
+
* React children to be rendered inside the container.
|
|
5302
|
+
*/
|
|
5303
|
+
children?: React.ReactNode;
|
|
5304
|
+
/**
|
|
5305
|
+
* Additional class names for custom styling.
|
|
5306
|
+
*/
|
|
5307
|
+
className?: string;
|
|
5308
|
+
/**
|
|
5309
|
+
* Here is the icon button component
|
|
5310
|
+
*/
|
|
5311
|
+
icon?: string | null;
|
|
5312
|
+
/**
|
|
5313
|
+
* You can change the size of the icon by adding a numeric value here
|
|
5314
|
+
*/
|
|
5315
|
+
sizeIcon?: number;
|
|
5316
|
+
}
|
|
5317
|
+
}
|
|
5318
|
+
|
|
5319
|
+
declare const AlertJobModal: React$1.FC<IAlertJobModal> & {
|
|
5320
|
+
Header: React$1.FC<IAlertJobModal.Header>;
|
|
5321
|
+
Body: React$1.FC<IAlertJobModal.Body>;
|
|
5322
|
+
Footer: React$1.FC<IAlertJobModal.Footer>;
|
|
5323
|
+
Title: React$1.FC<IAlertJobModal.Title>;
|
|
5324
|
+
Icon: React$1.FC<IAlertJobModal.Icon>;
|
|
5325
|
+
Button: React$1.FC<IAlertJobModal.Button>;
|
|
5326
|
+
};
|
|
5327
|
+
|
|
5185
5328
|
interface IJobsPage {
|
|
5186
5329
|
/**
|
|
5187
5330
|
* Props for the filter bottom header section.
|
|
@@ -5660,6 +5803,7 @@ interface IMegaMenu {
|
|
|
5660
5803
|
interface IMegaMenuLink {
|
|
5661
5804
|
label: string;
|
|
5662
5805
|
url: string;
|
|
5806
|
+
onClick?: () => void;
|
|
5663
5807
|
target?: string;
|
|
5664
5808
|
icon?: string | undefined;
|
|
5665
5809
|
}
|
|
@@ -5694,6 +5838,7 @@ interface IMegaMenuJobs {
|
|
|
5694
5838
|
onChangeTab?: (index: number) => void;
|
|
5695
5839
|
jobAction?: IMegaMenuAction;
|
|
5696
5840
|
allJobsAction?: IMegaMenuLink;
|
|
5841
|
+
popoverRef?: React$1.Ref<IPopoverRef$1>;
|
|
5697
5842
|
}
|
|
5698
5843
|
interface IMegaMenuContext {
|
|
5699
5844
|
socialHeaderProps: IMegaMenuSocialHeader;
|
|
@@ -5722,4 +5867,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
5722
5867
|
showContent?: boolean | undefined;
|
|
5723
5868
|
}>;
|
|
5724
5869
|
|
|
5725
|
-
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 };
|
|
5870
|
+
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