magneto365.ui 2.74.0 → 2.75.0
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 +899 -729
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/InlineDetails/InlineDetails.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/atoms/InlineDetails/InlineDetails.interface.d.ts +13 -0
- package/dist/cjs/types/components/UI/atoms/InlineDetails/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/Drawer/Drawer.interface.d.ts +10 -0
- package/dist/cjs/types/components/UI/molecules/PortalTooltip/PortalTooltip.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/PortalTooltip/PortalTooltip.interface.d.ts +45 -0
- package/dist/cjs/types/components/UI/molecules/PortalTooltip/hooks/usePortalTooltip.hook.d.ts +7 -0
- package/dist/cjs/types/components/UI/molecules/PortalTooltip/hooks/usePortalTooltipPosition.hook.d.ts +10 -0
- package/dist/cjs/types/components/UI/molecules/PortalTooltip/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/ScrollableTab/ScrollableTab.component.d.ts +6 -0
- package/dist/cjs/types/components/UI/molecules/ScrollableTab/ScrollableTab.interface.d.ts +13 -0
- package/dist/cjs/types/components/UI/molecules/ScrollableTab/hooks/useScrollableTab.hook.d.ts +8 -0
- package/dist/cjs/types/components/UI/molecules/ScrollableTab/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/TabItem/TabItem.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/TabItem/TabItem.interface.d.ts +24 -0
- package/dist/cjs/types/components/UI/molecules/TabItem/TabItem.stories.d.ts +8 -0
- package/dist/cjs/types/components/UI/molecules/TabItem/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/Tooltip/Tooltip.interface.d.ts +1 -2
- package/dist/cjs/types/components/UI/molecules/index.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.interface.d.ts +4 -3
- package/dist/cjs/types/constants/stories/InlineDetails.contants.d.ts +2 -0
- package/dist/cjs/types/constants/stories/analyst.constants.d.ts +0 -2
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +896 -730
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/InlineDetails/InlineDetails.component.d.ts +3 -0
- package/dist/esm/types/components/UI/atoms/InlineDetails/InlineDetails.interface.d.ts +13 -0
- package/dist/esm/types/components/UI/atoms/InlineDetails/index.d.ts +2 -0
- package/dist/esm/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/Drawer/Drawer.interface.d.ts +10 -0
- package/dist/esm/types/components/UI/molecules/PortalTooltip/PortalTooltip.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/PortalTooltip/PortalTooltip.interface.d.ts +45 -0
- package/dist/esm/types/components/UI/molecules/PortalTooltip/hooks/usePortalTooltip.hook.d.ts +7 -0
- package/dist/esm/types/components/UI/molecules/PortalTooltip/hooks/usePortalTooltipPosition.hook.d.ts +10 -0
- package/dist/esm/types/components/UI/molecules/PortalTooltip/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/ScrollableTab/ScrollableTab.component.d.ts +6 -0
- package/dist/esm/types/components/UI/molecules/ScrollableTab/ScrollableTab.interface.d.ts +13 -0
- package/dist/esm/types/components/UI/molecules/ScrollableTab/hooks/useScrollableTab.hook.d.ts +8 -0
- package/dist/esm/types/components/UI/molecules/ScrollableTab/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/TabItem/TabItem.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/TabItem/TabItem.interface.d.ts +24 -0
- package/dist/esm/types/components/UI/molecules/TabItem/TabItem.stories.d.ts +8 -0
- package/dist/esm/types/components/UI/molecules/TabItem/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/Tooltip/Tooltip.interface.d.ts +1 -2
- package/dist/esm/types/components/UI/molecules/index.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.interface.d.ts +4 -3
- package/dist/esm/types/constants/stories/InlineDetails.contants.d.ts +2 -0
- package/dist/esm/types/constants/stories/analyst.constants.d.ts +0 -2
- package/dist/index.d.ts +121 -4
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Interface for the InLineDetails component
|
|
3
|
+
*/
|
|
4
|
+
export interface IInlineDetails {
|
|
5
|
+
/**
|
|
6
|
+
* Array of strings that will be displayed in a single line, separated by " | "
|
|
7
|
+
*/
|
|
8
|
+
details: string[];
|
|
9
|
+
/**
|
|
10
|
+
* Optional className to apply custom styles to the wrapper element
|
|
11
|
+
*/
|
|
12
|
+
className?: string;
|
|
13
|
+
}
|
|
@@ -46,6 +46,11 @@ export interface IDrawer {
|
|
|
46
46
|
* this property sets custom styles into background drawer
|
|
47
47
|
*/
|
|
48
48
|
backGroundClassName?: string;
|
|
49
|
+
/**
|
|
50
|
+
* An optional custom container where the Drawer Portal will be rendered.
|
|
51
|
+
* If not provided, it will use the body.
|
|
52
|
+
*/
|
|
53
|
+
customContainer?: IDrawerPortal['customContainer'];
|
|
49
54
|
}
|
|
50
55
|
/**
|
|
51
56
|
* This interface represents a Portal for the Drawer component.
|
|
@@ -56,4 +61,9 @@ export interface IDrawerPortal {
|
|
|
56
61
|
* It can be a single JSX element, an array of JSX elements, or `false` to indicate no content.
|
|
57
62
|
*/
|
|
58
63
|
children: false | JSX.Element | JSX.Element[];
|
|
64
|
+
/**
|
|
65
|
+
* An optional custom container where the Drawer Portal will be rendered.
|
|
66
|
+
* If not provided, it will use the body.
|
|
67
|
+
*/
|
|
68
|
+
customContainer?: HTMLElement | ShadowRoot;
|
|
59
69
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TPosition } from '../Tooltip/Tooltip.interface';
|
|
3
|
+
export interface IPortalTooltipProps {
|
|
4
|
+
/**
|
|
5
|
+
* this property set the tooltip title
|
|
6
|
+
*/
|
|
7
|
+
title: string;
|
|
8
|
+
/**
|
|
9
|
+
* this property set the tooltip position
|
|
10
|
+
* @default 'bottom'
|
|
11
|
+
*/
|
|
12
|
+
position?: TPosition;
|
|
13
|
+
/**
|
|
14
|
+
* the tooltip component must wrap a component. This needs to be able to hold a ref
|
|
15
|
+
*/
|
|
16
|
+
children: React.ReactElement;
|
|
17
|
+
/**
|
|
18
|
+
* this property set the tooltip visibility
|
|
19
|
+
* @default true
|
|
20
|
+
*/
|
|
21
|
+
visible?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* this property set the tooltip width
|
|
24
|
+
* @default 'fit-content'
|
|
25
|
+
*/
|
|
26
|
+
width?: string;
|
|
27
|
+
/**
|
|
28
|
+
* this property sets delay in milliseconds before the tooltip appears
|
|
29
|
+
*/
|
|
30
|
+
enterDelay?: number;
|
|
31
|
+
/**
|
|
32
|
+
* this property sets delay in milliseconds before the tooltip disappears
|
|
33
|
+
*/
|
|
34
|
+
leaveDelay?: number;
|
|
35
|
+
/**
|
|
36
|
+
* this property sets the offset in pixels for the tooltip position relative to the target element
|
|
37
|
+
* @default 8
|
|
38
|
+
*/
|
|
39
|
+
offset?: number;
|
|
40
|
+
/**
|
|
41
|
+
* this property set the tooltip arrow visibility
|
|
42
|
+
* @default true
|
|
43
|
+
*/
|
|
44
|
+
hasArrow?: boolean;
|
|
45
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const usePortalTooltip: (visible: boolean, enterDelay?: number | undefined, leaveDelay?: number | undefined) => {
|
|
2
|
+
open: boolean;
|
|
3
|
+
tooltipContainer: HTMLElement | ShadowRoot;
|
|
4
|
+
showTooltip: () => void;
|
|
5
|
+
hideTooltip: () => void;
|
|
6
|
+
};
|
|
7
|
+
export default usePortalTooltip;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const usePortalTooltipPosition: (open: boolean, offset: number, position: string) => {
|
|
3
|
+
coords: {
|
|
4
|
+
top: number;
|
|
5
|
+
left: number;
|
|
6
|
+
};
|
|
7
|
+
triggerRef: import("react").RefObject<HTMLDivElement>;
|
|
8
|
+
tooltipRef: import("react").RefObject<HTMLDivElement>;
|
|
9
|
+
};
|
|
10
|
+
export default usePortalTooltipPosition;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface IScrollableTab {
|
|
3
|
+
children: React.ReactNode | React.ReactNode[];
|
|
4
|
+
/**
|
|
5
|
+
* Optional prop to set the scroll amount when clicking the arrows
|
|
6
|
+
* @default 100
|
|
7
|
+
*/
|
|
8
|
+
scrollAmount?: number;
|
|
9
|
+
/**
|
|
10
|
+
* Optional prop to add custom className
|
|
11
|
+
*/
|
|
12
|
+
className?: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const useScrollableTab: () => {
|
|
3
|
+
showLeftArrow: boolean;
|
|
4
|
+
showRightArrow: boolean;
|
|
5
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
6
|
+
handleScrollByAmount: (amount: number) => void | undefined;
|
|
7
|
+
};
|
|
8
|
+
export default useScrollableTab;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface ITabItem {
|
|
2
|
+
/**
|
|
3
|
+
* Tab item text
|
|
4
|
+
*/
|
|
5
|
+
text: string;
|
|
6
|
+
/**
|
|
7
|
+
* Tab item action
|
|
8
|
+
*/
|
|
9
|
+
onClick?: () => void;
|
|
10
|
+
/**
|
|
11
|
+
* Tab item styles
|
|
12
|
+
*/
|
|
13
|
+
className?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Tab item disabled state
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
isDisabled?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Tab item selected state
|
|
21
|
+
* @default false
|
|
22
|
+
*/
|
|
23
|
+
isSelected?: boolean;
|
|
24
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { TabItem } from './TabItem.component';
|
|
3
|
+
declare const meta: Meta<typeof TabItem>;
|
|
4
|
+
declare type Story = StoryObj<typeof TabItem>;
|
|
5
|
+
export declare const Default: Story;
|
|
6
|
+
export declare const Disabled: Story;
|
|
7
|
+
export declare const Selected: Story;
|
|
8
|
+
export default meta;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare type TPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
2
|
+
export declare type TPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
3
3
|
export interface ITooltipProps {
|
|
4
4
|
/**
|
|
5
5
|
* this property set the tooltip title
|
|
@@ -22,4 +22,3 @@ export interface ITooltipProps {
|
|
|
22
22
|
*/
|
|
23
23
|
visible?: boolean;
|
|
24
24
|
}
|
|
25
|
-
export {};
|
|
@@ -81,5 +81,8 @@ export * from './Tooltip';
|
|
|
81
81
|
export * from './UserMenu';
|
|
82
82
|
export * from './UserMenuAnalyst';
|
|
83
83
|
export * from './UserMenuWrapperAnalyst';
|
|
84
|
+
export * from './ScrollableTab';
|
|
85
|
+
export * from './TabItem';
|
|
86
|
+
export * from './PortalTooltip';
|
|
84
87
|
export * from './ImageCard';
|
|
85
88
|
export * from './CompanyCard';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IBreadcrumbs, IUserMenuWrapperAnalystProps } from '@components/UI/molecules';
|
|
2
|
-
import { ILogoComponent
|
|
2
|
+
import { ILogoComponent } from '@components/UI/atoms';
|
|
3
|
+
import React from 'react';
|
|
3
4
|
export interface IHeaderAnalyst {
|
|
4
5
|
/**
|
|
5
6
|
* Breadcrumbs props
|
|
@@ -30,9 +31,9 @@ export interface IHeaderAnalyst {
|
|
|
30
31
|
*/
|
|
31
32
|
userMenuProps: IUserMenuWrapperAnalystProps;
|
|
32
33
|
/**
|
|
33
|
-
*
|
|
34
|
+
* Component to display a custom notification bell
|
|
34
35
|
*/
|
|
35
|
-
|
|
36
|
+
notificationBell?: React.ReactNode;
|
|
36
37
|
}
|
|
37
38
|
export interface ILogoAnalyst extends ILogoComponent {
|
|
38
39
|
/**
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { IBreadcrumbs, IUserAnalyst, IUserMenuWrapperAnalystProps } from '@components/UI/molecules';
|
|
2
2
|
import { IHeaderAnalyst, INavMenuAnalystProps, IModalAnalystProps } from '@components/UI/organism';
|
|
3
|
-
import { ILinkProps } from '@components/UI/atoms';
|
|
4
3
|
import { IAnalystTemplateProps } from '@components/UI/template';
|
|
5
4
|
export declare const BreadCrumbAnalystProps: IBreadcrumbs;
|
|
6
5
|
export declare const UserAnalystProps: IUserAnalyst;
|
|
7
|
-
export declare const UserNotificationProps: ILinkProps;
|
|
8
6
|
export declare const UserMenuAnalystProps: IUserMenuWrapperAnalystProps;
|
|
9
7
|
export declare const HeaderAnalystProps: IHeaderAnalyst;
|
|
10
8
|
export declare const NavMenuAnalystProps: INavMenuAnalystProps;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ChangeEvent, FC, ReactNode, Ref, SetStateAction } from 'react';
|
|
4
4
|
import * as _components_UI_atoms from '@components/UI/atoms';
|
|
5
|
-
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$1, ICollapseContext as ICollapseContext$1, IAvatar as IAvatar$1, IRatingBadge as IRatingBadge$1, TCollapseBody as TCollapseBody$1, TCollapseHeader as TCollapseHeader$1, TCollapseToggler as TCollapseToggler$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,
|
|
5
|
+
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$1, ICollapseContext as ICollapseContext$1, IAvatar as IAvatar$1, IRatingBadge as IRatingBadge$1, TCollapseBody as TCollapseBody$1, TCollapseHeader as TCollapseHeader$1, TCollapseToggler as TCollapseToggler$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, ILogoComponent as ILogoComponent$1, IButtonLink as IButtonLink$1 } from '@components/UI/atoms';
|
|
6
6
|
import { TInputFile as TInputFile$1 } from '@components/UI/atoms/InputFile/inputFile.interface';
|
|
7
7
|
import { IconProps as IconProps$2 } from '@components/UI/atoms/Icon';
|
|
8
8
|
import { MagnetoUIColor as MagnetoUIColor$1, MagnetoUIText as MagnetoUIText$1 } from 'magneto-ui';
|
|
@@ -1401,6 +1401,22 @@ interface IUserMenuButtonAnalystProps {
|
|
|
1401
1401
|
*/
|
|
1402
1402
|
declare const UserMenuButtonAnalyst: React__default.FC<IUserMenuButtonAnalystProps>;
|
|
1403
1403
|
|
|
1404
|
+
/**
|
|
1405
|
+
* Interface for the InLineDetails component
|
|
1406
|
+
*/
|
|
1407
|
+
interface IInlineDetails {
|
|
1408
|
+
/**
|
|
1409
|
+
* Array of strings that will be displayed in a single line, separated by " | "
|
|
1410
|
+
*/
|
|
1411
|
+
details: string[];
|
|
1412
|
+
/**
|
|
1413
|
+
* Optional className to apply custom styles to the wrapper element
|
|
1414
|
+
*/
|
|
1415
|
+
className?: string;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
declare function InlineDetails({ details, className }: Readonly<IInlineDetails>): JSX.Element;
|
|
1419
|
+
|
|
1404
1420
|
declare const ShareIcons: {
|
|
1405
1421
|
Facebook: {
|
|
1406
1422
|
icon: any;
|
|
@@ -2088,6 +2104,11 @@ interface IDrawer {
|
|
|
2088
2104
|
* this property sets custom styles into background drawer
|
|
2089
2105
|
*/
|
|
2090
2106
|
backGroundClassName?: string;
|
|
2107
|
+
/**
|
|
2108
|
+
* An optional custom container where the Drawer Portal will be rendered.
|
|
2109
|
+
* If not provided, it will use the body.
|
|
2110
|
+
*/
|
|
2111
|
+
customContainer?: IDrawerPortal['customContainer'];
|
|
2091
2112
|
}
|
|
2092
2113
|
/**
|
|
2093
2114
|
* This interface represents a Portal for the Drawer component.
|
|
@@ -2098,6 +2119,11 @@ interface IDrawerPortal {
|
|
|
2098
2119
|
* It can be a single JSX element, an array of JSX elements, or `false` to indicate no content.
|
|
2099
2120
|
*/
|
|
2100
2121
|
children: false | JSX.Element | JSX.Element[];
|
|
2122
|
+
/**
|
|
2123
|
+
* An optional custom container where the Drawer Portal will be rendered.
|
|
2124
|
+
* If not provided, it will use the body.
|
|
2125
|
+
*/
|
|
2126
|
+
customContainer?: HTMLElement | ShadowRoot;
|
|
2101
2127
|
}
|
|
2102
2128
|
|
|
2103
2129
|
/**
|
|
@@ -4517,9 +4543,9 @@ interface IHeaderAnalyst {
|
|
|
4517
4543
|
*/
|
|
4518
4544
|
userMenuProps: IUserMenuWrapperAnalystProps$1;
|
|
4519
4545
|
/**
|
|
4520
|
-
*
|
|
4546
|
+
* Component to display a custom notification bell
|
|
4521
4547
|
*/
|
|
4522
|
-
|
|
4548
|
+
notificationBell?: React__default.ReactNode;
|
|
4523
4549
|
}
|
|
4524
4550
|
interface ILogoAnalyst extends ILogoComponent$1 {
|
|
4525
4551
|
/**
|
|
@@ -6120,6 +6146,97 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
|
|
|
6120
6146
|
*/
|
|
6121
6147
|
declare const UserMenuWrapperAnalyst: React__default.FC<IUserMenuWrapperAnalystProps>;
|
|
6122
6148
|
|
|
6149
|
+
interface IScrollableTab {
|
|
6150
|
+
children: React.ReactNode | React.ReactNode[];
|
|
6151
|
+
/**
|
|
6152
|
+
* Optional prop to set the scroll amount when clicking the arrows
|
|
6153
|
+
* @default 100
|
|
6154
|
+
*/
|
|
6155
|
+
scrollAmount?: number;
|
|
6156
|
+
/**
|
|
6157
|
+
* Optional prop to add custom className
|
|
6158
|
+
*/
|
|
6159
|
+
className?: string;
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
/**
|
|
6163
|
+
* Molecule UI for ScrollableTab
|
|
6164
|
+
*/
|
|
6165
|
+
declare const ScrollableTab: React__default.FC<IScrollableTab>;
|
|
6166
|
+
|
|
6167
|
+
interface ITabItem {
|
|
6168
|
+
/**
|
|
6169
|
+
* Tab item text
|
|
6170
|
+
*/
|
|
6171
|
+
text: string;
|
|
6172
|
+
/**
|
|
6173
|
+
* Tab item action
|
|
6174
|
+
*/
|
|
6175
|
+
onClick?: () => void;
|
|
6176
|
+
/**
|
|
6177
|
+
* Tab item styles
|
|
6178
|
+
*/
|
|
6179
|
+
className?: string;
|
|
6180
|
+
/**
|
|
6181
|
+
* Tab item disabled state
|
|
6182
|
+
* @default false
|
|
6183
|
+
*/
|
|
6184
|
+
isDisabled?: boolean;
|
|
6185
|
+
/**
|
|
6186
|
+
* Tab item selected state
|
|
6187
|
+
* @default false
|
|
6188
|
+
*/
|
|
6189
|
+
isSelected?: boolean;
|
|
6190
|
+
}
|
|
6191
|
+
|
|
6192
|
+
declare const TabItem: React__default.FC<ITabItem>;
|
|
6193
|
+
|
|
6194
|
+
interface IPortalTooltipProps {
|
|
6195
|
+
/**
|
|
6196
|
+
* this property set the tooltip title
|
|
6197
|
+
*/
|
|
6198
|
+
title: string;
|
|
6199
|
+
/**
|
|
6200
|
+
* this property set the tooltip position
|
|
6201
|
+
* @default 'bottom'
|
|
6202
|
+
*/
|
|
6203
|
+
position?: TPosition;
|
|
6204
|
+
/**
|
|
6205
|
+
* the tooltip component must wrap a component. This needs to be able to hold a ref
|
|
6206
|
+
*/
|
|
6207
|
+
children: React.ReactElement;
|
|
6208
|
+
/**
|
|
6209
|
+
* this property set the tooltip visibility
|
|
6210
|
+
* @default true
|
|
6211
|
+
*/
|
|
6212
|
+
visible?: boolean;
|
|
6213
|
+
/**
|
|
6214
|
+
* this property set the tooltip width
|
|
6215
|
+
* @default 'fit-content'
|
|
6216
|
+
*/
|
|
6217
|
+
width?: string;
|
|
6218
|
+
/**
|
|
6219
|
+
* this property sets delay in milliseconds before the tooltip appears
|
|
6220
|
+
*/
|
|
6221
|
+
enterDelay?: number;
|
|
6222
|
+
/**
|
|
6223
|
+
* this property sets delay in milliseconds before the tooltip disappears
|
|
6224
|
+
*/
|
|
6225
|
+
leaveDelay?: number;
|
|
6226
|
+
/**
|
|
6227
|
+
* this property sets the offset in pixels for the tooltip position relative to the target element
|
|
6228
|
+
* @default 8
|
|
6229
|
+
*/
|
|
6230
|
+
offset?: number;
|
|
6231
|
+
/**
|
|
6232
|
+
* this property set the tooltip arrow visibility
|
|
6233
|
+
* @default true
|
|
6234
|
+
*/
|
|
6235
|
+
hasArrow?: boolean;
|
|
6236
|
+
}
|
|
6237
|
+
|
|
6238
|
+
declare const PortalTooltip: React__default.FC<IPortalTooltipProps>;
|
|
6239
|
+
|
|
6123
6240
|
interface ICardImage {
|
|
6124
6241
|
/**
|
|
6125
6242
|
* Path to the image to be displayed.
|
|
@@ -7069,4 +7186,4 @@ declare type MagnetoUIText = 'sm-2' | 'md' | 'md-2' | 'lg' | 'xl' | '2xl' | '3xl
|
|
|
7069
7186
|
*/
|
|
7070
7187
|
declare type MagnetoUIWeight = 'normal' | 'bold' | 'black';
|
|
7071
7188
|
|
|
7072
|
-
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlertsPanel, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarChart, BarLoader, BarsChart, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$3 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, ButtonLink, CandidateNav, CandidateProfile, CandidateProfileTemplate, Carousel, CategoryGrid, _default as CategoryMenuCard, Checkbox, CitiesDetailDrawer, Collapse, CompanyCard, CompanyCardWithDescription, CompanyCardWithoutDescription, ComparativeCounter, ComponentProps, CreateAccountCTA, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, DotsLoader, Drawer, DrawerMenu, EAlertJobStatusIcon, EAlertJobStatusType, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, ETypographyFontWeight, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, HorizontalMenu, IActions, IAlert, IAlertJobStatus, IAlertsPanel, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, IButtonLink, ICanApply, ICandidateNavButton, ICandidateNavContext, ICandidateProfileAvatar, ICandidateProfileTemplate, ICandidateProfileTemplateProfile, ICandidateProvider, ICandidateScreen, ICandidateTemplateContext, ICardsRef, ICarousel, ICategoryField, ICategoryGrid, ICategoryMenuCard, ICheckbox, ICitiesDetailDrawer, ICityDetail, ICollapseContext, 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, IHeaderAnalyst, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IHorizontalMenu, IHorizontalMenuOption, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalyst, 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, IQualification, IQualificationStar, IRadioCommonProps, IRadioProps, IRatingBadge, 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, ITypographyBase, ITypographyEllipsis, ITypographyLink, ITypographyText, ITypographyTitle, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IUserTerm, IVacancies$1 as IVacancies, IVacantPositions, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, ImageCard, Input, InputFile, 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, MagnetoUIBorder, MagnetoUIColor, MagnetoUIGap, MagnetoUIMargin, MagnetoUIOpacity, MagnetoUIPadding, ContextAppProvider as MagnetoUIProvider, MagnetoUIRadius, MagnetoUIScale, MagnetoUIScreen, MagnetoUIShadow, MagnetoUIText, MagnetoUIWeight, 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$2 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, Notification, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Qualification, Radio, RatingBadge, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default$1 as SortMenu, SuggestedJobsPage, Switch, TCandidateNav, TCandidateNavOption, TCandidateNavOptions, TCandidateNavStep, TCandidateProfile, TCandidateProfileBody, TCandidateProfileHeader, TCandidateProfileTemplateMainNav, TCandidateProfileTemplateNav, TCandidateProfileToggler, TCollapse, TCollapseBody, TCollapseHeader, TCollapseToggler, TExpandableInfoSize, TExpandableInfoVariant, TInputFile, TMessageType, TToggleButtonList, TTypographyFontWeight, TTypographyParagraph, TVacantOption, TVacantOptionType, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, TextCustom, TimeLineItemStatus, Timeline, TimelineEvent, TimelineEventProps, ToggleButton, ToggleButtonList, Tooltip, Typography, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, VacantPositions, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
|
7189
|
+
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlertsPanel, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarChart, BarLoader, BarsChart, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$3 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, ButtonLink, CandidateNav, CandidateProfile, CandidateProfileTemplate, Carousel, CategoryGrid, _default as CategoryMenuCard, Checkbox, CitiesDetailDrawer, Collapse, CompanyCard, CompanyCardWithDescription, CompanyCardWithoutDescription, ComparativeCounter, ComponentProps, CreateAccountCTA, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, DotsLoader, Drawer, DrawerMenu, EAlertJobStatusIcon, EAlertJobStatusType, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, ETypographyFontWeight, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, HorizontalMenu, IActions, IAlert, IAlertJobStatus, IAlertsPanel, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, IButtonLink, ICanApply, ICandidateNavButton, ICandidateNavContext, ICandidateProfileAvatar, ICandidateProfileTemplate, ICandidateProfileTemplateProfile, ICandidateProvider, ICandidateScreen, ICandidateTemplateContext, ICardsRef, ICarousel, ICategoryField, ICategoryGrid, ICategoryMenuCard, ICheckbox, ICitiesDetailDrawer, ICityDetail, ICollapseContext, 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, IHeaderAnalyst, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IHorizontalMenu, IHorizontalMenuOption, IImage, IInlineDetails, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalyst, 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, IPortalTooltipProps, IQualification, IQualificationStar, IRadioCommonProps, IRadioProps, IRatingBadge, ISaveButton, IScrollableTab, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarCard, ISimilarCardData, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, ITabItem, ITypographyBase, ITypographyEllipsis, ITypographyLink, ITypographyText, ITypographyTitle, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IUserTerm, IVacancies$1 as IVacancies, IVacantPositions, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, ImageCard, InlineDetails, Input, InputFile, 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, MagnetoUIBorder, MagnetoUIColor, MagnetoUIGap, MagnetoUIMargin, MagnetoUIOpacity, MagnetoUIPadding, ContextAppProvider as MagnetoUIProvider, MagnetoUIRadius, MagnetoUIScale, MagnetoUIScreen, MagnetoUIShadow, MagnetoUIText, MagnetoUIWeight, 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$2 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, Notification, OneSelectionEntry, Pagination, Paragraph, Popover, PortalTooltip, ProcessesCard, Qualification, Radio, RatingBadge, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, ScrollableTab, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default$1 as SortMenu, SuggestedJobsPage, Switch, TCandidateNav, TCandidateNavOption, TCandidateNavOptions, TCandidateNavStep, TCandidateProfile, TCandidateProfileBody, TCandidateProfileHeader, TCandidateProfileTemplateMainNav, TCandidateProfileTemplateNav, TCandidateProfileToggler, TCollapse, TCollapseBody, TCollapseHeader, TCollapseToggler, TExpandableInfoSize, TExpandableInfoVariant, TInputFile, TMessageType, TToggleButtonList, TTypographyFontWeight, TTypographyParagraph, TVacantOption, TVacantOptionType, Tab, TabButton, TabButtonElement, TabItem, Tags as Tag, TextArea, TextCustom, TimeLineItemStatus, Timeline, TimelineEvent, TimelineEventProps, ToggleButton, ToggleButtonList, Tooltip, Typography, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, VacantPositions, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
package/package.json
CHANGED