magneto365.ui 2.57.2 → 2.57.4
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/megaMenu/ca9ee6d183e7647b.svg +8 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +809 -639
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/MegaMenuTab/MegaMenuTab.component.d.ts +3 -1
- package/dist/cjs/types/components/UI/molecules/ListIconLink/ListIconLink.interface.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/MegaMenuDrawerItem/MegaMenuDrawerItem.component.d.ts +10 -0
- package/dist/cjs/types/components/UI/molecules/MegaMenuDrawerItem/MegaMenuDrawerItem.interface.d.ts +29 -0
- package/dist/cjs/types/components/UI/molecules/MegaMenuDrawerItem/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/MegaMenuSocialTabs/MegaMenuTabs.component.d.ts +4 -1
- package/dist/cjs/types/components/UI/molecules/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/AlphabetFilter/AlphabetFilter.interface.d.ts +2 -1
- package/dist/cjs/types/components/UI/organism/MegaMenuDrawer/MegaMenuDrawer.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/MegaMenuDrawer/MegaMenuDrawer.interface.d.ts +11 -0
- package/dist/cjs/types/components/UI/organism/MegaMenuDrawer/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/MegaMenuMainHeader/MegaMenuMainHeader.component.d.ts +2 -1
- package/dist/cjs/types/components/UI/organism/MegaMenuMainHeader/MegaMenuMainHeader.interface.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -3
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuDesktop.component.d.ts +4 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuMobile.component.d.ts +4 -0
- package/dist/cjs/types/constants/megaMenu.constants.d.ts +1 -0
- package/dist/cjs/types/constants/stories/megaMenu.constants.d.ts +1 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +807 -639
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/MegaMenuTab/MegaMenuTab.component.d.ts +3 -1
- package/dist/esm/types/components/UI/molecules/ListIconLink/ListIconLink.interface.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/MegaMenuDrawerItem/MegaMenuDrawerItem.component.d.ts +10 -0
- package/dist/esm/types/components/UI/molecules/MegaMenuDrawerItem/MegaMenuDrawerItem.interface.d.ts +29 -0
- package/dist/esm/types/components/UI/molecules/MegaMenuDrawerItem/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/MegaMenuSocialTabs/MegaMenuTabs.component.d.ts +4 -1
- package/dist/esm/types/components/UI/molecules/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/AlphabetFilter/AlphabetFilter.interface.d.ts +2 -1
- package/dist/esm/types/components/UI/organism/MegaMenuDrawer/MegaMenuDrawer.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/MegaMenuDrawer/MegaMenuDrawer.interface.d.ts +11 -0
- package/dist/esm/types/components/UI/organism/MegaMenuDrawer/index.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/MegaMenuMainHeader/MegaMenuMainHeader.component.d.ts +2 -1
- package/dist/esm/types/components/UI/organism/MegaMenuMainHeader/MegaMenuMainHeader.interface.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -3
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuDesktop.component.d.ts +4 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuMobile.component.d.ts +4 -0
- package/dist/esm/types/constants/megaMenu.constants.d.ts +1 -0
- package/dist/esm/types/constants/stories/megaMenu.constants.d.ts +1 -0
- package/dist/index.d.ts +61 -7
- package/package.json +1 -1
package/dist/esm/types/components/UI/molecules/MegaMenuDrawerItem/MegaMenuDrawerItem.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
|
+
import { IMegaMenuDrawerItem } from './MegaMenuDrawerItem.interface';
|
|
3
|
+
export declare const MegaMenuDrawerItem: React.FC<IMegaMenuDrawerItem> & {
|
|
4
|
+
Drawer: React.FC<{
|
|
5
|
+
title: string;
|
|
6
|
+
content: ReactNode;
|
|
7
|
+
isOpen: boolean;
|
|
8
|
+
toggleDrawer: () => void;
|
|
9
|
+
}>;
|
|
10
|
+
};
|
package/dist/esm/types/components/UI/molecules/MegaMenuDrawerItem/MegaMenuDrawerItem.interface.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export interface IMegaMenuDrawerItem {
|
|
3
|
+
className?: string;
|
|
4
|
+
/**
|
|
5
|
+
* Put a url direction
|
|
6
|
+
*/
|
|
7
|
+
url: string;
|
|
8
|
+
/**
|
|
9
|
+
* This property set to true can change styles
|
|
10
|
+
*/
|
|
11
|
+
isActive: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* This is the menu text
|
|
14
|
+
*/
|
|
15
|
+
text: string;
|
|
16
|
+
/**
|
|
17
|
+
* Icon for each option
|
|
18
|
+
*/
|
|
19
|
+
icon?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Icon for each option
|
|
22
|
+
*/
|
|
23
|
+
content?: IMegaMenuDrawerItemContent;
|
|
24
|
+
onClickOption?: () => void;
|
|
25
|
+
}
|
|
26
|
+
export interface IMegaMenuDrawerItemContent {
|
|
27
|
+
child: ReactNode;
|
|
28
|
+
title: string;
|
|
29
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { IFiltersRef } from '@components/UI/molecules';
|
|
1
2
|
import { Ref } from 'react';
|
|
2
3
|
export interface IAlphabetFilter {
|
|
3
4
|
title: string;
|
|
4
5
|
allActionText: string;
|
|
5
6
|
className?: string;
|
|
6
7
|
onClickAction: (index: number, value: string) => void;
|
|
7
|
-
filtersRef?: Ref<
|
|
8
|
+
filtersRef?: Ref<IFiltersRef>;
|
|
8
9
|
}
|
|
@@ -24,9 +24,8 @@ export interface IMegaMenuMainHeader {
|
|
|
24
24
|
onClickSignUp: (event: Event) => Promise<void>;
|
|
25
25
|
};
|
|
26
26
|
searchBarProps?: ISearchbar;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
27
|
+
homeUrl?: string;
|
|
28
|
+
homeText?: string;
|
|
30
29
|
}
|
|
31
30
|
export interface IMegaMenuJobsTabs {
|
|
32
31
|
label: string;
|
|
@@ -6,3 +6,4 @@ export { default as CourthouseBlue } from '../assets/megaMenu/courthouse-blue.sv
|
|
|
6
6
|
export { default as CourthouseGrey } from '../assets/megaMenu/courthouse-grey.svg';
|
|
7
7
|
export { default as LocationBlue } from '../assets/megaMenu/location-blue.svg';
|
|
8
8
|
export { default as LocationGrey } from '../assets/megaMenu/location-grey.svg';
|
|
9
|
+
export { default as Book } from '../assets/megaMenu/book.svg';
|
|
@@ -18,6 +18,7 @@ export declare const filterProps: {
|
|
|
18
18
|
};
|
|
19
19
|
export declare const megaMenuCards: IMegaMenuCards;
|
|
20
20
|
export declare const megaMenuJobsIcons: any[];
|
|
21
|
+
export declare const mobileSocialIcons: any[];
|
|
21
22
|
export declare const megaMenuJobs: IMegaMenuJobs;
|
|
22
23
|
export declare const megaMenuBreadcrumbs: {
|
|
23
24
|
breadcrumbProps: {
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { ISaveButton as ISaveButton$1 } from '@components/UI/atoms/SaveButton';
|
|
|
6
6
|
import { ICustomText as ICustomText$1 } from '@components/UI/atoms/Text/Text.interface';
|
|
7
7
|
import { IFilterValue as IFilterValue$1, ISetIsApplied as ISetIsApplied$1, IFilter as IFilter$1, ISearchRenderTypeProps as ISearchRenderTypeProps$1 } from '@components/UI/template/SideFilter';
|
|
8
8
|
import * as _components_UI_molecules from '@components/UI/molecules';
|
|
9
|
-
import { IMegaMenuCard as IMegaMenuCard$1, IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IJobCompanyHeader as IJobCompanyHeader$2, IJobDetailCard as IJobDetailCard$1, IJobSkillsCard as IJobSkillsCard$1, IJobApplyCard as IJobApplyCard$1, IJobFooterCard as IJobFooterCard$1, ICityDetail as ICityDetail$1, TimelineEventStatus as TimelineEventStatus$1, IUserMenuAnalystProps as IUserMenuAnalystProps$1, IFrequentSearch as IFrequentSearch$1, IPaginationProps as IPaginationProps$1, IEmptyResults as IEmptyResults$2, IJobCard as IJobCard$2, ISearchbar as ISearchbar$1 } from '@components/UI/molecules';
|
|
9
|
+
import { IMegaMenuCard as IMegaMenuCard$1, IFiltersRef as IFiltersRef$1, IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IJobCompanyHeader as IJobCompanyHeader$2, IJobDetailCard as IJobDetailCard$1, IJobSkillsCard as IJobSkillsCard$1, IJobApplyCard as IJobApplyCard$1, IJobFooterCard as IJobFooterCard$1, ICityDetail as ICityDetail$1, TimelineEventStatus as TimelineEventStatus$1, IUserMenuAnalystProps as IUserMenuAnalystProps$1, IFrequentSearch as IFrequentSearch$1, IPaginationProps as IPaginationProps$1, IEmptyResults as IEmptyResults$2, IJobCard as IJobCard$2, ISearchbar as ISearchbar$1 } from '@components/UI/molecules';
|
|
10
10
|
import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
11
11
|
import { IToggleButton as IToggleButton$1, IToggleButtonOnchangeValues as IToggleButtonOnchangeValues$1 } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
|
|
12
12
|
import * as _components_UI_organism from '@components/UI/organism';
|
|
@@ -642,7 +642,9 @@ interface IMegaMenuTab {
|
|
|
642
642
|
selected: boolean;
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
-
declare const MegaMenuTab: React$1.FC<IMegaMenuTab
|
|
645
|
+
declare const MegaMenuTab: React$1.FC<IMegaMenuTab & {
|
|
646
|
+
showArrow: boolean;
|
|
647
|
+
}>;
|
|
646
648
|
|
|
647
649
|
interface IMenuDropdownProps {
|
|
648
650
|
/**
|
|
@@ -2283,6 +2285,7 @@ interface IListIconLink {
|
|
|
2283
2285
|
listIcon: IListIcon[];
|
|
2284
2286
|
size?: number;
|
|
2285
2287
|
hover?: boolean;
|
|
2288
|
+
className?: string;
|
|
2286
2289
|
}
|
|
2287
2290
|
interface IListIcon {
|
|
2288
2291
|
url?: string | null;
|
|
@@ -3105,7 +3108,7 @@ interface IAlphabetFilter {
|
|
|
3105
3108
|
allActionText: string;
|
|
3106
3109
|
className?: string;
|
|
3107
3110
|
onClickAction: (index: number, value: string) => void;
|
|
3108
|
-
filtersRef?: Ref<
|
|
3111
|
+
filtersRef?: Ref<IFiltersRef$1>;
|
|
3109
3112
|
}
|
|
3110
3113
|
|
|
3111
3114
|
declare const AlphabetFilter: React$1.FC<IAlphabetFilter>;
|
|
@@ -4426,6 +4429,20 @@ declare const UserTermTitle: React$1.FC<IUserTerm.Title>;
|
|
|
4426
4429
|
|
|
4427
4430
|
declare const UserTermUList: React$1.FC<IUserTerm.UlList>;
|
|
4428
4431
|
|
|
4432
|
+
interface IMegaMenuDrawer {
|
|
4433
|
+
className?: string;
|
|
4434
|
+
/**
|
|
4435
|
+
*
|
|
4436
|
+
*/
|
|
4437
|
+
isOpen?: boolean;
|
|
4438
|
+
/**
|
|
4439
|
+
*
|
|
4440
|
+
*/
|
|
4441
|
+
onClose?: () => void;
|
|
4442
|
+
}
|
|
4443
|
+
|
|
4444
|
+
declare const MegaMenuDrawer: React$1.FC<IMegaMenuDrawer>;
|
|
4445
|
+
|
|
4429
4446
|
interface IJobSuggestedDrawer {
|
|
4430
4447
|
/**
|
|
4431
4448
|
* Management the loading status jobs ui
|
|
@@ -4956,6 +4973,44 @@ declare const SimilarCardLogo: React$1.FC<ISimilarCard.Logo>;
|
|
|
4956
4973
|
|
|
4957
4974
|
declare const SimilarCardIcon: React$1.FC<ISimilarCard.Icon>;
|
|
4958
4975
|
|
|
4976
|
+
interface IMegaMenuDrawerItem {
|
|
4977
|
+
className?: string;
|
|
4978
|
+
/**
|
|
4979
|
+
* Put a url direction
|
|
4980
|
+
*/
|
|
4981
|
+
url: string;
|
|
4982
|
+
/**
|
|
4983
|
+
* This property set to true can change styles
|
|
4984
|
+
*/
|
|
4985
|
+
isActive: boolean;
|
|
4986
|
+
/**
|
|
4987
|
+
* This is the menu text
|
|
4988
|
+
*/
|
|
4989
|
+
text: string;
|
|
4990
|
+
/**
|
|
4991
|
+
* Icon for each option
|
|
4992
|
+
*/
|
|
4993
|
+
icon?: string;
|
|
4994
|
+
/**
|
|
4995
|
+
* Icon for each option
|
|
4996
|
+
*/
|
|
4997
|
+
content?: IMegaMenuDrawerItemContent;
|
|
4998
|
+
onClickOption?: () => void;
|
|
4999
|
+
}
|
|
5000
|
+
interface IMegaMenuDrawerItemContent {
|
|
5001
|
+
child: ReactNode;
|
|
5002
|
+
title: string;
|
|
5003
|
+
}
|
|
5004
|
+
|
|
5005
|
+
declare const MegaMenuDrawerItem: React$1.FC<IMegaMenuDrawerItem> & {
|
|
5006
|
+
Drawer: React$1.FC<{
|
|
5007
|
+
title: string;
|
|
5008
|
+
content: ReactNode;
|
|
5009
|
+
isOpen: boolean;
|
|
5010
|
+
toggleDrawer: () => void;
|
|
5011
|
+
}>;
|
|
5012
|
+
};
|
|
5013
|
+
|
|
4959
5014
|
interface IJobsPage {
|
|
4960
5015
|
/**
|
|
4961
5016
|
* Props for the filter bottom header section.
|
|
@@ -5454,9 +5509,8 @@ interface IMegaMenuMainHeader {
|
|
|
5454
5509
|
onClickSignUp: (event: Event) => Promise<void>;
|
|
5455
5510
|
};
|
|
5456
5511
|
searchBarProps?: ISearchbar$1;
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
};
|
|
5512
|
+
homeUrl?: string;
|
|
5513
|
+
homeText?: string;
|
|
5460
5514
|
}
|
|
5461
5515
|
interface IMegaMenuJobsTabs {
|
|
5462
5516
|
label: string;
|
|
@@ -5491,4 +5545,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
5491
5545
|
wrapperProps: T;
|
|
5492
5546
|
}>;
|
|
5493
5547
|
|
|
5494
|
-
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, 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, IAlertJobStatus, 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, IJobSuggestedDrawer, 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, 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, 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, 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, withMegaMenuContainer };
|
|
5548
|
+
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, 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, IAlertJobStatus, 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, 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, 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, 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, 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, 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, withMegaMenuContainer };
|
package/package.json
CHANGED