magneto365.ui 2.54.0 → 2.55.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/assets/035d90cb55b544da.svg +15 -0
- package/dist/assets/1aba91fa564f11d7.svg +16 -0
- package/dist/assets/3a1c54796cd5e026.svg +17 -0
- package/dist/assets/3e2d04cc8ff5910d.svg +11 -0
- package/dist/assets/f3929a315218dc82.svg +10 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +673 -571
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/ModalResponsive/ModalResponsive.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/ModalResponsive/ModalResponsive.interface.d.ts +22 -0
- package/dist/cjs/types/components/UI/molecules/ModalResponsive/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/index.d.ts +2 -1
- package/dist/cjs/types/components/UI/organism/ProcessesCard/ProcessesCard.component.d.ts +11 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/ProcessesCard.interface.d.ts +42 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardArrow/ProcessesCardArrow.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardBrand/ProcessesCardBrand.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardIconStatus/ProcessesCardIconStatus.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardSection/ProcessesCardSection.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardStatus/ProcessesCardStatus.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardText/ProcessesCardText.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardTitle/ProcessesCardTitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
- package/dist/cjs/types/constants/icons.constants.d.ts +6 -1
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +672 -572
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/ModalResponsive/ModalResponsive.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/ModalResponsive/ModalResponsive.interface.d.ts +22 -0
- package/dist/esm/types/components/UI/molecules/ModalResponsive/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/index.d.ts +2 -1
- package/dist/esm/types/components/UI/organism/ProcessesCard/ProcessesCard.component.d.ts +11 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/ProcessesCard.interface.d.ts +42 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardArrow/ProcessesCardArrow.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardBrand/ProcessesCardBrand.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardIconStatus/ProcessesCardIconStatus.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardSection/ProcessesCardSection.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardStatus/ProcessesCardStatus.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardText/ProcessesCardText.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardTitle/ProcessesCardTitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
- package/dist/esm/types/constants/icons.constants.d.ts +6 -1
- package/dist/index.d.ts +82 -5
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface IModalResponsive {
|
|
2
|
+
/**
|
|
3
|
+
* this property open the container
|
|
4
|
+
*/
|
|
5
|
+
open: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* this property close the container
|
|
8
|
+
*/
|
|
9
|
+
onClose: () => void;
|
|
10
|
+
/**
|
|
11
|
+
* this property sets the children elements
|
|
12
|
+
*/
|
|
13
|
+
children: JSX.Element | JSX.Element[];
|
|
14
|
+
/**
|
|
15
|
+
* this property sets customs styles for the modal
|
|
16
|
+
*/
|
|
17
|
+
modalClassName?: string;
|
|
18
|
+
/**
|
|
19
|
+
* this property sets customs styles for the mobile drawer
|
|
20
|
+
*/
|
|
21
|
+
mobileDrawerClassName?: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ModalResponsive.component';
|
|
@@ -13,6 +13,7 @@ export * from './FilterActions';
|
|
|
13
13
|
export * from './FilterContainerMenu';
|
|
14
14
|
export * from './FilterMenuItem';
|
|
15
15
|
export * from './FilterSearchItem';
|
|
16
|
+
export * from './FraudCardJob';
|
|
16
17
|
export * from './FrequentSearch';
|
|
17
18
|
export * from './HeaderDrawerCompany';
|
|
18
19
|
export * from './HeaderDrawerTabs';
|
|
@@ -49,6 +50,7 @@ export * from './MobileDrawer';
|
|
|
49
50
|
export * from './MobileJobDetailsHeader';
|
|
50
51
|
export * from './MobileSearchbar';
|
|
51
52
|
export * from './Modal';
|
|
53
|
+
export * from './ModalResponsive';
|
|
52
54
|
export * from './Pagination';
|
|
53
55
|
export * from './RightsReservedText';
|
|
54
56
|
export * from './ScoreLevel';
|
|
@@ -67,4 +69,3 @@ export * from './Tooltip';
|
|
|
67
69
|
export * from './UserMenu';
|
|
68
70
|
export * from './UserMenuAnalyst';
|
|
69
71
|
export * from './UserMenuWrapperAnalyst';
|
|
70
|
-
export * from './FraudCardJob';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IProcessesCard } from './ProcessesCard.interface';
|
|
3
|
+
export declare const ProcessesCard: React.FC<IProcessesCard> & {
|
|
4
|
+
IconStatus: React.FC<IProcessesCard.IStatusIcon>;
|
|
5
|
+
Section: React.FC<import("./ProcessesCard.interface").ICommonProcessesCardPros>;
|
|
6
|
+
Status: React.FC<IProcessesCard.ICardStatus>;
|
|
7
|
+
Brand: React.FC<import("./ProcessesCard.interface").ICommonProcessesCardImg>;
|
|
8
|
+
Arrow: React.FC<import("./ProcessesCard.interface").ICommonProcessesCardImg>;
|
|
9
|
+
Title: React.FC<IProcessesCard.ITitle>;
|
|
10
|
+
Text: React.FC<IProcessesCard.IText>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare type IStatusJob = 'Sent' | 'Pending' | 'Validation' | 'Finalists' | 'Hired' | 'Discarded';
|
|
3
|
+
export interface ICommonProcessesCardPros {
|
|
4
|
+
/**
|
|
5
|
+
* this property sets custom className
|
|
6
|
+
*/
|
|
7
|
+
className?: string;
|
|
8
|
+
/**
|
|
9
|
+
* this property sets any children
|
|
10
|
+
*/
|
|
11
|
+
children: React.ReactNode;
|
|
12
|
+
}
|
|
13
|
+
export declare type ICommonProcessesCardImg = React.ImgHTMLAttributes<HTMLImageElement>;
|
|
14
|
+
export interface IProcessesCard extends React.ButtonHTMLAttributes<HTMLButtonElement>, ICommonProcessesCardPros {
|
|
15
|
+
/**
|
|
16
|
+
* this property sets custom className
|
|
17
|
+
*/
|
|
18
|
+
children: React.ReactNode;
|
|
19
|
+
/**
|
|
20
|
+
* this property on true changes the background color
|
|
21
|
+
*/
|
|
22
|
+
isSelected?: boolean;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace IProcessesCard {
|
|
25
|
+
type ISection = ICommonProcessesCardPros;
|
|
26
|
+
type ITitle = ICommonProcessesCardPros & {
|
|
27
|
+
status?: IStatusJob;
|
|
28
|
+
};
|
|
29
|
+
type ICardStatus = ICommonProcessesCardPros & {
|
|
30
|
+
status: IStatusJob;
|
|
31
|
+
isSelected?: boolean;
|
|
32
|
+
};
|
|
33
|
+
type IText = ICommonProcessesCardPros & {
|
|
34
|
+
status?: IStatusJob;
|
|
35
|
+
strong?: boolean;
|
|
36
|
+
};
|
|
37
|
+
type IBrand = ICommonProcessesCardImg;
|
|
38
|
+
type IArrow = ICommonProcessesCardImg;
|
|
39
|
+
type IStatusIcon = ICommonProcessesCardImg & {
|
|
40
|
+
status: IStatusJob;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ProcessesCard.component';
|
|
@@ -23,6 +23,7 @@ export * from './NavMenuAnalyst';
|
|
|
23
23
|
export * from './NavMenuAnalystRegionModal';
|
|
24
24
|
export * from './NavMenuDrawerAnalyst';
|
|
25
25
|
export * from './OneSelectionEntry';
|
|
26
|
+
export * from './ProcessesCard';
|
|
26
27
|
export * from './Select';
|
|
27
28
|
export * from './Select2';
|
|
28
29
|
export * from './SimilarJobs';
|
|
@@ -33,6 +33,7 @@ export { default as Calendar1 } from '../assets/Calendar1.svg';
|
|
|
33
33
|
export { default as Checked } from '../assets/Checked.svg';
|
|
34
34
|
export { default as ClipboardClose } from '../assets/ClipboardClose.svg';
|
|
35
35
|
export { default as Clock } from '../assets/Clock.svg';
|
|
36
|
+
export { default as ClockLine } from '../assets/clock.svg';
|
|
36
37
|
export { default as Close } from '../assets/Close.svg';
|
|
37
38
|
export { default as CloseCircle } from '../assets/closeCircle.svg';
|
|
38
39
|
export { default as CloseCircleRedBold } from '../assets/closeCircleRedBold.svg';
|
|
@@ -40,6 +41,8 @@ export { default as CoinBlackOutline } from '../assets/coinBlackOutline.svg';
|
|
|
40
41
|
export { default as Danger } from '../assets/danger.svg';
|
|
41
42
|
export { default as DocTextBlueBold } from '../assets/docTextBlueBold.svg';
|
|
42
43
|
export { default as DocTextWhiteOutline } from '../assets/docTextWhiteOutline.svg';
|
|
44
|
+
export { default as DocumentForward } from '../assets/document-forward.svg';
|
|
45
|
+
export { default as DocumentSearch } from '../assets/document-search.svg';
|
|
43
46
|
export { default as DocumentText } from '../assets/DocumentText.svg';
|
|
44
47
|
export { default as DocumentTextGray } from '../assets/DocumentTextGray.svg';
|
|
45
48
|
export { default as DollarCircle } from '../assets/DollarCircle.svg';
|
|
@@ -132,13 +135,15 @@ export { default as TwitterBlue } from '../assets/Twitter2.svg';
|
|
|
132
135
|
export { default as TwitterDark } from '../assets/Twitter1.svg';
|
|
133
136
|
export { default as Urgent } from '../assets/Urgent.svg';
|
|
134
137
|
export { default as User } from '../assets/User.svg';
|
|
138
|
+
export { default as UserRemove } from '../assets/user-remove.svg';
|
|
135
139
|
export { default as UserRoundedBlue } from '../assets/userRoundedBlue.svg';
|
|
136
140
|
export { default as UserRoundedGray } from '../assets/userRoundedGray.svg';
|
|
137
141
|
export { default as UserSearchBlueBold } from '../assets/userSearchBlueBold.svg';
|
|
138
142
|
export { default as UserSearchWhiteOutline } from '../assets/userSearchWhiteOutline.svg';
|
|
143
|
+
export { default as UserTick } from '../assets/user-tick.svg';
|
|
139
144
|
export { default as Warning } from '../assets/warning.svg';
|
|
140
|
-
export { default as WarningHex } from '../assets/warning-hex.svg';
|
|
141
145
|
export { default as Warning3D } from '../assets/warning-3d.svg';
|
|
146
|
+
export { default as WarningHex } from '../assets/warning-hex.svg';
|
|
142
147
|
export { default as WarningYellowBold } from '../assets/warningYellowBold.svg';
|
|
143
148
|
export { default as WhatsAppColor } from '../assets/Whatsapp1.svg';
|
|
144
149
|
export { default as WhatsAppDark } from '../assets/Whatsapp.svg';
|
package/dist/index.d.ts
CHANGED
|
@@ -1690,6 +1690,10 @@ interface IFilterSearchItem {
|
|
|
1690
1690
|
|
|
1691
1691
|
declare const FilterSearchItem: FC<IFilterSearchItem>;
|
|
1692
1692
|
|
|
1693
|
+
declare const FraudCardJob: ({ fraudLink }: {
|
|
1694
|
+
fraudLink: string;
|
|
1695
|
+
}) => JSX.Element;
|
|
1696
|
+
|
|
1693
1697
|
interface IFrequentSearch {
|
|
1694
1698
|
/**
|
|
1695
1699
|
* The heading or title for the frequent search section.
|
|
@@ -2665,6 +2669,31 @@ declare const _default$1: React$1.FC<IModal> & {
|
|
|
2665
2669
|
Description: React$1.FC<IModalDescription>;
|
|
2666
2670
|
};
|
|
2667
2671
|
|
|
2672
|
+
interface IModalResponsive {
|
|
2673
|
+
/**
|
|
2674
|
+
* this property open the container
|
|
2675
|
+
*/
|
|
2676
|
+
open: boolean;
|
|
2677
|
+
/**
|
|
2678
|
+
* this property close the container
|
|
2679
|
+
*/
|
|
2680
|
+
onClose: () => void;
|
|
2681
|
+
/**
|
|
2682
|
+
* this property sets the children elements
|
|
2683
|
+
*/
|
|
2684
|
+
children: JSX.Element | JSX.Element[];
|
|
2685
|
+
/**
|
|
2686
|
+
* this property sets customs styles for the modal
|
|
2687
|
+
*/
|
|
2688
|
+
modalClassName?: string;
|
|
2689
|
+
/**
|
|
2690
|
+
* this property sets customs styles for the mobile drawer
|
|
2691
|
+
*/
|
|
2692
|
+
mobileDrawerClassName?: string;
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
declare const ModalResponsive: React$1.FC<IModalResponsive>;
|
|
2696
|
+
|
|
2668
2697
|
interface ICreatePaginationProps {
|
|
2669
2698
|
/**
|
|
2670
2699
|
* This is the total of vacancies
|
|
@@ -3884,6 +3913,58 @@ interface IListOption {
|
|
|
3884
3913
|
|
|
3885
3914
|
declare const OneSelectionEntry: React$1.FC<IOneSelectionentry>;
|
|
3886
3915
|
|
|
3916
|
+
declare type IStatusJob = 'Sent' | 'Pending' | 'Validation' | 'Finalists' | 'Hired' | 'Discarded';
|
|
3917
|
+
interface ICommonProcessesCardPros {
|
|
3918
|
+
/**
|
|
3919
|
+
* this property sets custom className
|
|
3920
|
+
*/
|
|
3921
|
+
className?: string;
|
|
3922
|
+
/**
|
|
3923
|
+
* this property sets any children
|
|
3924
|
+
*/
|
|
3925
|
+
children: React.ReactNode;
|
|
3926
|
+
}
|
|
3927
|
+
declare type ICommonProcessesCardImg = React.ImgHTMLAttributes<HTMLImageElement>;
|
|
3928
|
+
interface IProcessesCard extends React.ButtonHTMLAttributes<HTMLButtonElement>, ICommonProcessesCardPros {
|
|
3929
|
+
/**
|
|
3930
|
+
* this property sets custom className
|
|
3931
|
+
*/
|
|
3932
|
+
children: React.ReactNode;
|
|
3933
|
+
/**
|
|
3934
|
+
* this property on true changes the background color
|
|
3935
|
+
*/
|
|
3936
|
+
isSelected?: boolean;
|
|
3937
|
+
}
|
|
3938
|
+
declare namespace IProcessesCard {
|
|
3939
|
+
type ISection = ICommonProcessesCardPros;
|
|
3940
|
+
type ITitle = ICommonProcessesCardPros & {
|
|
3941
|
+
status?: IStatusJob;
|
|
3942
|
+
};
|
|
3943
|
+
type ICardStatus = ICommonProcessesCardPros & {
|
|
3944
|
+
status: IStatusJob;
|
|
3945
|
+
isSelected?: boolean;
|
|
3946
|
+
};
|
|
3947
|
+
type IText = ICommonProcessesCardPros & {
|
|
3948
|
+
status?: IStatusJob;
|
|
3949
|
+
strong?: boolean;
|
|
3950
|
+
};
|
|
3951
|
+
type IBrand = ICommonProcessesCardImg;
|
|
3952
|
+
type IArrow = ICommonProcessesCardImg;
|
|
3953
|
+
type IStatusIcon = ICommonProcessesCardImg & {
|
|
3954
|
+
status: IStatusJob;
|
|
3955
|
+
};
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
declare const ProcessesCard: React$1.FC<IProcessesCard> & {
|
|
3959
|
+
IconStatus: React$1.FC<IProcessesCard.IStatusIcon>;
|
|
3960
|
+
Section: React$1.FC<ICommonProcessesCardPros>;
|
|
3961
|
+
Status: React$1.FC<IProcessesCard.ICardStatus>;
|
|
3962
|
+
Brand: React$1.FC<ICommonProcessesCardImg>;
|
|
3963
|
+
Arrow: React$1.FC<ICommonProcessesCardImg>;
|
|
3964
|
+
Title: React$1.FC<IProcessesCard.ITitle>;
|
|
3965
|
+
Text: React$1.FC<IProcessesCard.IText>;
|
|
3966
|
+
};
|
|
3967
|
+
|
|
3887
3968
|
interface ISelectInput<T> extends Omit<IInput, 'onChange' | 'value' | 'placeholder' | 'type'> {
|
|
3888
3969
|
/**
|
|
3889
3970
|
* input value.
|
|
@@ -4441,10 +4522,6 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
|
|
|
4441
4522
|
*/
|
|
4442
4523
|
declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
|
|
4443
4524
|
|
|
4444
|
-
declare const FraudCardJob: ({ fraudLink }: {
|
|
4445
|
-
fraudLink: string;
|
|
4446
|
-
}) => JSX.Element;
|
|
4447
|
-
|
|
4448
4525
|
interface IJobsPage {
|
|
4449
4526
|
/**
|
|
4450
4527
|
* Props for the filter bottom header section.
|
|
@@ -4980,4 +5057,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
4980
5057
|
wrapperProps: T;
|
|
4981
5058
|
}>;
|
|
4982
5059
|
|
|
4983
|
-
export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, Checkbox, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, 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, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, 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, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, 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, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, 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, 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, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, 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, withMegaMenuContainer };
|
|
5060
|
+
export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, Checkbox, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, 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, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, 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, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, 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, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, 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, 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, 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, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, 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, withMegaMenuContainer };
|
package/package.json
CHANGED