magneto365.ui 2.59.0 → 2.59.1
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 +269 -246
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface.d.ts +26 -0
- package/dist/cjs/types/components/UI/molecules/MegaMenuSideCards/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenu.component.d.ts +3 -1
- package/dist/cjs/types/components/hoc/index.d.ts +1 -1
- package/dist/cjs/types/components/hoc/megaMenu/withSideCards.d.ts +9 -0
- package/dist/cjs/types/components/hoc/megaMenu/withSideCards.desktop.d.ts +8 -0
- package/dist/cjs/types/components/hoc/megaMenu/withSideCardsDrawer.mobile.d.ts +8 -0
- package/dist/cjs/types/components/hoc/megaMenu/withSideCardsMobile.d.ts +9 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +269 -246
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface.d.ts +26 -0
- package/dist/esm/types/components/UI/molecules/MegaMenuSideCards/index.d.ts +1 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenu.component.d.ts +3 -1
- package/dist/esm/types/components/hoc/index.d.ts +1 -1
- package/dist/esm/types/components/hoc/megaMenu/withSideCards.d.ts +9 -0
- package/dist/esm/types/components/hoc/megaMenu/withSideCards.desktop.d.ts +8 -0
- package/dist/esm/types/components/hoc/megaMenu/withSideCardsDrawer.mobile.d.ts +8 -0
- package/dist/esm/types/components/hoc/megaMenu/withSideCardsMobile.d.ts +9 -0
- package/dist/index.d.ts +33 -5
- package/package.json +1 -1
- package/dist/cjs/types/components/hoc/megaMenu/withContainer.d.ts +0 -7
- package/dist/esm/types/components/hoc/megaMenu/withContainer.d.ts +0 -7
package/dist/esm/types/components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface.d.ts
CHANGED
|
@@ -1,9 +1,35 @@
|
|
|
1
1
|
import { IMegaMenuCard } from '@components/UI/molecules';
|
|
2
2
|
import { IMegaMenuLink } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
3
|
+
import { Ref } from 'react';
|
|
3
4
|
export interface IMegaMenuSideCards {
|
|
5
|
+
/**
|
|
6
|
+
* Array of jobs for each card
|
|
7
|
+
*/
|
|
4
8
|
jobs: IMegaMenuCard[];
|
|
9
|
+
/**
|
|
10
|
+
* CallBack when a card is selected
|
|
11
|
+
*/
|
|
5
12
|
onSelectCard?: (index: number) => void;
|
|
13
|
+
/**
|
|
14
|
+
* Actrion button on the end of the component
|
|
15
|
+
*/
|
|
6
16
|
action?: IMegaMenuLink;
|
|
17
|
+
/**
|
|
18
|
+
* Max amount of cards
|
|
19
|
+
*/
|
|
7
20
|
maxCards?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Initial selected card
|
|
23
|
+
*/
|
|
8
24
|
initValue?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Reference for iterative bnehaviour
|
|
27
|
+
*/
|
|
28
|
+
cardsRef?: Ref<ICardsRef>;
|
|
29
|
+
}
|
|
30
|
+
export interface ICardsRef {
|
|
31
|
+
/**
|
|
32
|
+
* CallBack to restart filters
|
|
33
|
+
*/
|
|
34
|
+
setSelectedCard: (index: number) => void;
|
|
9
35
|
}
|
|
@@ -5,7 +5,9 @@ export declare const MegaMenu: React.FC<IMegaMenuContext & IMegaMenu> & {
|
|
|
5
5
|
Cards: React.FC<import("@components/UI/organism").IMegaMenuCards>;
|
|
6
6
|
Card: React.FC<import("@components/UI/molecules").IMegaMenuCard>;
|
|
7
7
|
SideCards: React.FC<{
|
|
8
|
-
sideProps: import("
|
|
8
|
+
sideProps: import("@components/UI/molecules").IMegaMenuSideCards;
|
|
9
9
|
wrapperProps: import("@components/UI/organism").IMegaMenuCards;
|
|
10
|
+
withDrawerAction?: boolean | undefined;
|
|
11
|
+
showContent?: boolean | undefined;
|
|
10
12
|
}>;
|
|
11
13
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as withClickOut } from './withClickOut';
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as withMegaMenuSideCards } from './megaMenu/withSideCards';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IMegaMenuSideCards } from '@components/UI/molecules';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare const withMegaMenuSideCards: <T>(WrappedComponent: React.FC<T>) => React.FC<{
|
|
4
|
+
sideProps: IMegaMenuSideCards;
|
|
5
|
+
wrapperProps: T;
|
|
6
|
+
withDrawerAction?: boolean | undefined;
|
|
7
|
+
showContent?: boolean | undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export default withMegaMenuSideCards;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMegaMenuSideCards } from '@components/UI/molecules';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare const DesktopSideCards: <T>({ WrappedComponent, sideProps, wrapperProps }: {
|
|
4
|
+
WrappedComponent: React.FC<T>;
|
|
5
|
+
sideProps: IMegaMenuSideCards;
|
|
6
|
+
wrapperProps: T;
|
|
7
|
+
}) => JSX.Element;
|
|
8
|
+
export default DesktopSideCards;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMegaMenuSideCards } from '@components/UI/molecules';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare const MobileSideCardsDrawer: <T>({ WrappedComponent, sideProps, wrapperProps }: {
|
|
4
|
+
WrappedComponent: React.FC<T>;
|
|
5
|
+
sideProps: IMegaMenuSideCards;
|
|
6
|
+
wrapperProps: T;
|
|
7
|
+
}) => JSX.Element;
|
|
8
|
+
export default MobileSideCardsDrawer;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IMegaMenuSideCards } from '@components/UI/molecules';
|
|
3
|
+
declare const MobileSideCards: <T>({ WrappedComponent, sideProps, wrapperProps, showContent }: {
|
|
4
|
+
WrappedComponent: React.FC<T>;
|
|
5
|
+
sideProps: IMegaMenuSideCards;
|
|
6
|
+
wrapperProps: T;
|
|
7
|
+
showContent: boolean;
|
|
8
|
+
}) => JSX.Element;
|
|
9
|
+
export default MobileSideCards;
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { ICustomText as ICustomText$1 } from '@components/UI/atoms/Text/Text.int
|
|
|
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 { IJobsActions as IJobsActions$1 } from '@components/UI/molecules/JobActions';
|
|
9
9
|
import * as _components_UI_molecules from '@components/UI/molecules';
|
|
10
|
-
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, IAlertJobStatus as IAlertJobStatus$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
|
+
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, IAlertJobStatus as IAlertJobStatus$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, IMegaMenuSideCards as IMegaMenuSideCards$1 } from '@components/UI/molecules';
|
|
11
11
|
import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
12
12
|
import { IToggleButton as IToggleButton$1, IToggleButtonOnchangeValues as IToggleButtonOnchangeValues$1 } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
|
|
13
13
|
import * as _components_UI_organism from '@components/UI/organism';
|
|
@@ -33,7 +33,6 @@ 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 { IMegaMenuSideCards as IMegaMenuSideCards$1 } from '@components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface';
|
|
37
36
|
|
|
38
37
|
interface IContextAppProvider {
|
|
39
38
|
children: React.ReactNode;
|
|
@@ -2528,11 +2527,36 @@ declare const MegaMenuJobsTabs: React$1.FC;
|
|
|
2528
2527
|
declare const MegaMenuPopover: React$1.FC;
|
|
2529
2528
|
|
|
2530
2529
|
interface IMegaMenuSideCards {
|
|
2530
|
+
/**
|
|
2531
|
+
* Array of jobs for each card
|
|
2532
|
+
*/
|
|
2531
2533
|
jobs: IMegaMenuCard$1[];
|
|
2534
|
+
/**
|
|
2535
|
+
* CallBack when a card is selected
|
|
2536
|
+
*/
|
|
2532
2537
|
onSelectCard?: (index: number) => void;
|
|
2538
|
+
/**
|
|
2539
|
+
* Actrion button on the end of the component
|
|
2540
|
+
*/
|
|
2533
2541
|
action?: IMegaMenuLink$1;
|
|
2542
|
+
/**
|
|
2543
|
+
* Max amount of cards
|
|
2544
|
+
*/
|
|
2534
2545
|
maxCards?: number;
|
|
2546
|
+
/**
|
|
2547
|
+
* Initial selected card
|
|
2548
|
+
*/
|
|
2535
2549
|
initValue?: number;
|
|
2550
|
+
/**
|
|
2551
|
+
* Reference for iterative bnehaviour
|
|
2552
|
+
*/
|
|
2553
|
+
cardsRef?: Ref<ICardsRef>;
|
|
2554
|
+
}
|
|
2555
|
+
interface ICardsRef {
|
|
2556
|
+
/**
|
|
2557
|
+
* CallBack to restart filters
|
|
2558
|
+
*/
|
|
2559
|
+
setSelectedCard: (index: number) => void;
|
|
2536
2560
|
}
|
|
2537
2561
|
|
|
2538
2562
|
declare const MegaMenuSideCards: React$1.FC<IMegaMenuSideCards>;
|
|
@@ -5618,16 +5642,20 @@ declare const MegaMenu: React$1.FC<IMegaMenuContext & IMegaMenu> & {
|
|
|
5618
5642
|
Cards: React$1.FC<_components_UI_organism.IMegaMenuCards>;
|
|
5619
5643
|
Card: React$1.FC<_components_UI_molecules.IMegaMenuCard>;
|
|
5620
5644
|
SideCards: React$1.FC<{
|
|
5621
|
-
sideProps: IMegaMenuSideCards;
|
|
5645
|
+
sideProps: _components_UI_molecules.IMegaMenuSideCards;
|
|
5622
5646
|
wrapperProps: _components_UI_organism.IMegaMenuCards;
|
|
5647
|
+
withDrawerAction?: boolean | undefined;
|
|
5648
|
+
showContent?: boolean | undefined;
|
|
5623
5649
|
}>;
|
|
5624
5650
|
};
|
|
5625
5651
|
|
|
5626
5652
|
declare const withClickOut: <T>(WrappedComponent: React$1.FC<T>) => React$1.FC<T>;
|
|
5627
5653
|
|
|
5628
|
-
declare const
|
|
5654
|
+
declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => React$1.FC<{
|
|
5629
5655
|
sideProps: IMegaMenuSideCards$1;
|
|
5630
5656
|
wrapperProps: T;
|
|
5657
|
+
withDrawerAction?: boolean | undefined;
|
|
5658
|
+
showContent?: boolean | undefined;
|
|
5631
5659
|
}>;
|
|
5632
5660
|
|
|
5633
|
-
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, 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, 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, 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, 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,
|
|
5661
|
+
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, 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, 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, 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, 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
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IMegaMenuSideCards } from '@components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
declare const withMegaMenuContainer: <T>(WrappedComponent: React.FC<T>) => React.FC<{
|
|
4
|
-
sideProps: IMegaMenuSideCards;
|
|
5
|
-
wrapperProps: T;
|
|
6
|
-
}>;
|
|
7
|
-
export default withMegaMenuContainer;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IMegaMenuSideCards } from '@components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
declare const withMegaMenuContainer: <T>(WrappedComponent: React.FC<T>) => React.FC<{
|
|
4
|
-
sideProps: IMegaMenuSideCards;
|
|
5
|
-
wrapperProps: T;
|
|
6
|
-
}>;
|
|
7
|
-
export default withMegaMenuContainer;
|