magneto365.ui 2.48.4 → 2.48.9
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/801c14292dfce9f7.svg +11 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +331 -292
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/FilterActions/FilterActions.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/FilterActions/FilterActions.interface.d.ts +21 -0
- package/dist/cjs/types/components/UI/molecules/FilterActions/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface.d.ts +2 -1
- package/dist/cjs/types/components/UI/molecules/index.d.ts +2 -1
- package/dist/cjs/types/components/UI/organism/AlphabetFilter/AlphabetFilter.component.d.ts +4 -0
- package/dist/cjs/types/components/UI/organism/AlphabetFilter/AlphabetFilter.interface.d.ts +8 -0
- package/dist/cjs/types/components/UI/organism/AlphabetFilter/index.d.ts +1 -0
- package/dist/{esm/types/components/UI/molecules → cjs/types/components/UI/organism}/MegaMenuCards/MegaMenuCards.interface.d.ts +4 -1
- package/dist/cjs/types/components/UI/organism/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenu.component.d.ts +2 -2
- package/dist/cjs/types/constants/icons.constants.d.ts +1 -0
- package/dist/cjs/types/constants/stories/megaMenu.constants.d.ts +8 -1
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +330 -294
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/FilterActions/FilterActions.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/FilterActions/FilterActions.interface.d.ts +21 -0
- package/dist/esm/types/components/UI/molecules/FilterActions/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface.d.ts +2 -1
- package/dist/esm/types/components/UI/molecules/index.d.ts +2 -1
- package/dist/esm/types/components/UI/organism/AlphabetFilter/AlphabetFilter.component.d.ts +4 -0
- package/dist/esm/types/components/UI/organism/AlphabetFilter/AlphabetFilter.interface.d.ts +8 -0
- package/dist/esm/types/components/UI/organism/AlphabetFilter/index.d.ts +1 -0
- package/dist/{cjs/types/components/UI/molecules → esm/types/components/UI/organism}/MegaMenuCards/MegaMenuCards.interface.d.ts +4 -1
- package/dist/esm/types/components/UI/organism/index.d.ts +2 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenu.component.d.ts +2 -2
- package/dist/esm/types/constants/icons.constants.d.ts +1 -0
- package/dist/esm/types/constants/stories/megaMenu.constants.d.ts +8 -1
- package/dist/index.d.ts +61 -22
- package/package.json +1 -1
- /package/dist/cjs/types/components/UI/{molecules → organism}/MegaMenuCards/MegaMenuCards.component.d.ts +0 -0
- /package/dist/cjs/types/components/UI/{molecules → organism}/MegaMenuCards/index.d.ts +0 -0
- /package/dist/esm/types/components/UI/{molecules → organism}/MegaMenuCards/MegaMenuCards.component.d.ts +0 -0
- /package/dist/esm/types/components/UI/{molecules → organism}/MegaMenuCards/index.d.ts +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Ref } from 'react';
|
|
2
|
+
export interface IFilterActions {
|
|
3
|
+
/**
|
|
4
|
+
* Text that shows when all option is clicked
|
|
5
|
+
*/
|
|
6
|
+
allAction: string;
|
|
7
|
+
/**
|
|
8
|
+
* Callback when select an option
|
|
9
|
+
*/
|
|
10
|
+
onClickAction: (index: number, value: string) => void;
|
|
11
|
+
/**
|
|
12
|
+
* Optional reference for imperative behaviour
|
|
13
|
+
*/
|
|
14
|
+
filtersRef?: Ref<IFiltersRef>;
|
|
15
|
+
}
|
|
16
|
+
export interface IFiltersRef {
|
|
17
|
+
/**
|
|
18
|
+
* CallBack to restart filters
|
|
19
|
+
*/
|
|
20
|
+
restartFilters: () => void;
|
|
21
|
+
}
|
package/dist/esm/types/components/UI/molecules/MegaMenuSideCards/MegaMenuSideCards.interface.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { IMegaMenuCard } from '@components/UI/molecules';
|
|
1
2
|
import { IMegaMenuLink } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
2
|
-
import { IMegaMenuCard } from '../MegaMenuCard';
|
|
3
3
|
export interface IMegaMenuSideCards {
|
|
4
4
|
jobs: IMegaMenuCard[];
|
|
5
5
|
onSelectCard?: (index: number) => void;
|
|
6
6
|
action?: IMegaMenuLink;
|
|
7
|
+
maxCards?: number;
|
|
7
8
|
}
|
|
@@ -37,7 +37,6 @@ export * from './ListMenuText';
|
|
|
37
37
|
export * from './ListSortMenu';
|
|
38
38
|
export * from './MagnetoResolution';
|
|
39
39
|
export * from './MegaMenuCard';
|
|
40
|
-
export * from './MegaMenuCards';
|
|
41
40
|
export * from './MegaMenuJobsTabs';
|
|
42
41
|
export * from './MegaMenuPopover';
|
|
43
42
|
export * from './MenuCollapse/children/MenuCollapseChildren.interface';
|
|
@@ -65,3 +64,5 @@ export * from './Tooltip';
|
|
|
65
64
|
export * from './UserMenu';
|
|
66
65
|
export * from './UserMenuAnalyst';
|
|
67
66
|
export * from './UserMenuWrapperAnalyst';
|
|
67
|
+
export * from './FilterActions';
|
|
68
|
+
export * from './MegaMenuSideCards';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AlphabetFilter } from './AlphabetFilter.component';
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { IMegaMenuCard } from '@components/UI/molecules';
|
|
1
2
|
import { IMegaMenuLink } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
2
|
-
import {
|
|
3
|
+
import { IAlphabetFilter } from '../AlphabetFilter/AlphabetFilter.interface';
|
|
3
4
|
export interface IMegaMenuCards {
|
|
4
5
|
jobs: IMegaMenuCard[];
|
|
6
|
+
filterProps?: IAlphabetFilter;
|
|
5
7
|
action?: IMegaMenuLink;
|
|
6
8
|
title?: string;
|
|
7
9
|
actionTitle?: IMegaMenuLink;
|
|
8
10
|
className?: string;
|
|
11
|
+
maxCards?: number;
|
|
9
12
|
}
|
|
@@ -2,10 +2,10 @@ import React from 'react';
|
|
|
2
2
|
import { IMegaMenuContext } from './MegaMenuContext.interface';
|
|
3
3
|
import { IMegaMenu } from './MegaMenu.interface';
|
|
4
4
|
export declare const MegaMenu: React.FC<IMegaMenuContext & IMegaMenu> & {
|
|
5
|
-
Cards: React.FC<import("@components/UI/
|
|
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
8
|
sideProps: import("../../molecules/MegaMenuSideCards/MegaMenuSideCards.interface").IMegaMenuSideCards;
|
|
9
|
-
wrapperProps: import("@components/UI/
|
|
9
|
+
wrapperProps: import("@components/UI/organism").IMegaMenuCards;
|
|
10
10
|
}>;
|
|
11
11
|
};
|
|
@@ -90,6 +90,7 @@ export { default as LogoutIcon } from '../assets/logout.svg';
|
|
|
90
90
|
export { default as MagicStarBlackOutline } from '../assets/magicStarBlackOutline.svg';
|
|
91
91
|
export { default as MailDark } from '../assets/Mail1.svg';
|
|
92
92
|
export { default as MessageQuestion } from '../assets/MessageQuestion.svg';
|
|
93
|
+
export { default as Messages2BlackOutline } from '../assets/messages2BlackOutline.svg';
|
|
93
94
|
export { default as MiniArrowGrayDown } from '../assets/miniArrowGrayDown.svg';
|
|
94
95
|
export { default as MiniArrowGrayUp } from '../assets/miniArrowGrayUp.svg';
|
|
95
96
|
export { default as MinTrabajo } from '../assets/logo-SPE-2024.svg';
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
|
|
2
|
-
import { IMegaMenuCard
|
|
2
|
+
import { IMegaMenuCard } from '@components/UI/molecules';
|
|
3
|
+
import { IMegaMenuCards } from '@components/UI/organism';
|
|
3
4
|
import { IMegaMenuJobs, IMegaMenuMainHeader, IMegaMenuSocialHeader } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
4
5
|
export declare const megaMenuSocialTabs: IMegaMenuTab[];
|
|
6
|
+
export declare const alphabet = "ABCDEFGHIJKLMN\u00D1OPQRSTUVWXYZ";
|
|
5
7
|
export declare const megaMenuJobImage: IMegaMenuCard;
|
|
6
8
|
export declare const megaMenuJobIcon: IMegaMenuCard;
|
|
7
9
|
export declare const megaMenuJobsIcon: any[];
|
|
@@ -9,6 +11,11 @@ export declare const megaMenuJobsImage: any[];
|
|
|
9
11
|
export declare const megaMenuMainHeader: IMegaMenuMainHeader;
|
|
10
12
|
export declare const megaMenuSocialHeader: IMegaMenuSocialHeader;
|
|
11
13
|
export declare const megaMenuHelpIcons: any[];
|
|
14
|
+
export declare const filterProps: {
|
|
15
|
+
allActionText: string;
|
|
16
|
+
onClickAction: () => void;
|
|
17
|
+
title: string;
|
|
18
|
+
};
|
|
12
19
|
export declare const megaMenuCards: IMegaMenuCards;
|
|
13
20
|
export declare const megaMenuJobsIcons: any[];
|
|
14
21
|
export declare const megaMenuJobs: IMegaMenuJobs;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import React$1, { ChangeEvent, FC, ReactNode, SetStateAction } from 'react';
|
|
2
|
+
import React$1, { ChangeEvent, FC, ReactNode, Ref, SetStateAction } from 'react';
|
|
3
3
|
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$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, ILinkProps as ILinkProps$1, ILogoComponent as ILogoComponent$1 } from '@components/UI/atoms';
|
|
4
4
|
import { IconProps as IconProps$2 } from '@components/UI/atoms/Icon';
|
|
5
5
|
import { ISaveButton as ISaveButton$1 } from '@components/UI/atoms/SaveButton';
|
|
6
6
|
import { ICustomText } 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
|
-
import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
9
8
|
import * as _components_UI_molecules from '@components/UI/molecules';
|
|
10
|
-
import { 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 { 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, IMegaMenuCard as IMegaMenuCard$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 { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
11
|
+
import * as _components_UI_organism from '@components/UI/organism';
|
|
11
12
|
import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1, IHeaderAnalystProps as IHeaderAnalystProps$1, IModalAnalyst as IModalAnalyst$1, INavMenuAnalystRegion as INavMenuAnalystRegion$1 } from '@components/UI/organism';
|
|
12
13
|
import { IListMenuText as IListMenuText$1 } from '@components/UI/molecules/ListMenuText/ListMenuText.interface';
|
|
13
14
|
import { IJobCompanyHeader as IJobCompanyHeader$1 } from '@components/UI/molecules/JobCompanyHeader';
|
|
@@ -2400,16 +2401,6 @@ interface IMegaMenuCard {
|
|
|
2400
2401
|
|
|
2401
2402
|
declare const MegaMenuCard: React$1.FC<IMegaMenuCard>;
|
|
2402
2403
|
|
|
2403
|
-
interface IMegaMenuCards {
|
|
2404
|
-
jobs: IMegaMenuCard[];
|
|
2405
|
-
action?: IMegaMenuLink$1;
|
|
2406
|
-
title?: string;
|
|
2407
|
-
actionTitle?: IMegaMenuLink$1;
|
|
2408
|
-
className?: string;
|
|
2409
|
-
}
|
|
2410
|
-
|
|
2411
|
-
declare const MegaMenuCards: React$1.FC<IMegaMenuCards>;
|
|
2412
|
-
|
|
2413
2404
|
declare const MegaMenuJobsTabs: React$1.FC;
|
|
2414
2405
|
|
|
2415
2406
|
declare const MegaMenuPopover: React$1.FC;
|
|
@@ -3970,6 +3961,28 @@ declare const Select: (<T>({ children, renderSelect, placeholder, options, value
|
|
|
3970
3961
|
ListCheck: <T_3>({ className, renderItem, filter }: ISelect2ListCheck<T_3>) => JSX.Element;
|
|
3971
3962
|
};
|
|
3972
3963
|
|
|
3964
|
+
interface IAlphabetFilter {
|
|
3965
|
+
title: string;
|
|
3966
|
+
allActionText: string;
|
|
3967
|
+
className?: string;
|
|
3968
|
+
onClickAction: (index: number, value: string) => void;
|
|
3969
|
+
filtersRef?: Ref<unknown>;
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3972
|
+
declare const AlphabetFilter: React$1.FC<IAlphabetFilter>;
|
|
3973
|
+
|
|
3974
|
+
interface IMegaMenuCards {
|
|
3975
|
+
jobs: IMegaMenuCard$1[];
|
|
3976
|
+
filterProps?: IAlphabetFilter;
|
|
3977
|
+
action?: IMegaMenuLink$1;
|
|
3978
|
+
title?: string;
|
|
3979
|
+
actionTitle?: IMegaMenuLink$1;
|
|
3980
|
+
className?: string;
|
|
3981
|
+
maxCards?: number;
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
declare const MegaMenuCards: React$1.FC<IMegaMenuCards>;
|
|
3985
|
+
|
|
3973
3986
|
interface IMenuUser {
|
|
3974
3987
|
/**
|
|
3975
3988
|
* menu items props
|
|
@@ -4181,6 +4194,38 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
|
|
|
4181
4194
|
*/
|
|
4182
4195
|
declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
|
|
4183
4196
|
|
|
4197
|
+
interface IFilterActions {
|
|
4198
|
+
/**
|
|
4199
|
+
* Text that shows when all option is clicked
|
|
4200
|
+
*/
|
|
4201
|
+
allAction: string;
|
|
4202
|
+
/**
|
|
4203
|
+
* Callback when select an option
|
|
4204
|
+
*/
|
|
4205
|
+
onClickAction: (index: number, value: string) => void;
|
|
4206
|
+
/**
|
|
4207
|
+
* Optional reference for imperative behaviour
|
|
4208
|
+
*/
|
|
4209
|
+
filtersRef?: Ref<IFiltersRef>;
|
|
4210
|
+
}
|
|
4211
|
+
interface IFiltersRef {
|
|
4212
|
+
/**
|
|
4213
|
+
* CallBack to restart filters
|
|
4214
|
+
*/
|
|
4215
|
+
restartFilters: () => void;
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4218
|
+
declare const FilterActions: FC<IFilterActions>;
|
|
4219
|
+
|
|
4220
|
+
interface IMegaMenuSideCards {
|
|
4221
|
+
jobs: IMegaMenuCard$1[];
|
|
4222
|
+
onSelectCard?: (index: number) => void;
|
|
4223
|
+
action?: IMegaMenuLink$1;
|
|
4224
|
+
maxCards?: number;
|
|
4225
|
+
}
|
|
4226
|
+
|
|
4227
|
+
declare const MegaMenuSideCards: React$1.FC<IMegaMenuSideCards>;
|
|
4228
|
+
|
|
4184
4229
|
interface IJobsPage {
|
|
4185
4230
|
/**
|
|
4186
4231
|
* Props for the filter bottom header section.
|
|
@@ -4656,12 +4701,6 @@ interface IMegaMenu {
|
|
|
4656
4701
|
breadcrumbsProps?: IBreadcrumbs$1;
|
|
4657
4702
|
}
|
|
4658
4703
|
|
|
4659
|
-
interface IMegaMenuSideCards {
|
|
4660
|
-
jobs: IMegaMenuCard[];
|
|
4661
|
-
onSelectCard?: (index: number) => void;
|
|
4662
|
-
action?: IMegaMenuLink$1;
|
|
4663
|
-
}
|
|
4664
|
-
|
|
4665
4704
|
interface IMegaMenuLink {
|
|
4666
4705
|
label: string;
|
|
4667
4706
|
url: string;
|
|
@@ -4707,11 +4746,11 @@ interface IMegaMenuContext {
|
|
|
4707
4746
|
}
|
|
4708
4747
|
|
|
4709
4748
|
declare const MegaMenu: React$1.FC<IMegaMenuContext & IMegaMenu> & {
|
|
4710
|
-
Cards: React$1.FC<
|
|
4749
|
+
Cards: React$1.FC<_components_UI_organism.IMegaMenuCards>;
|
|
4711
4750
|
Card: React$1.FC<_components_UI_molecules.IMegaMenuCard>;
|
|
4712
4751
|
SideCards: React$1.FC<{
|
|
4713
4752
|
sideProps: IMegaMenuSideCards;
|
|
4714
|
-
wrapperProps:
|
|
4753
|
+
wrapperProps: _components_UI_organism.IMegaMenuCards;
|
|
4715
4754
|
}>;
|
|
4716
4755
|
};
|
|
4717
4756
|
|
|
@@ -4722,4 +4761,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
4722
4761
|
wrapperProps: T;
|
|
4723
4762
|
}>;
|
|
4724
4763
|
|
|
4725
|
-
export { Actions, Alert, AnalystTemplate, Avatar, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, 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, 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, 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, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, useMediaQuery, withClickOut, withMegaMenuContainer };
|
|
4764
|
+
export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, 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, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, 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, 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, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, useMediaQuery, withClickOut, withMegaMenuContainer };
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|