magneto365.ui 2.51.0 → 2.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +445 -427
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/ToggleButton/ToggleButton.interface.d.ts +9 -4
- package/dist/cjs/types/components/UI/molecules/ToggleButtonList/ToggleButtonList.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/ToggleButtonList/ToggleButtonList.interface.d.ts +19 -0
- package/dist/cjs/types/components/UI/molecules/ToggleButtonList/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/index.d.ts +3 -2
- package/dist/cjs/types/constants/stories/toggleButton.constants.d.ts +2 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +445 -428
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/ToggleButton/ToggleButton.interface.d.ts +9 -4
- package/dist/esm/types/components/UI/molecules/ToggleButtonList/ToggleButtonList.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/ToggleButtonList/ToggleButtonList.interface.d.ts +19 -0
- package/dist/esm/types/components/UI/molecules/ToggleButtonList/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/index.d.ts +3 -2
- package/dist/esm/types/constants/stories/toggleButton.constants.d.ts +2 -0
- package/dist/index.d.ts +65 -38
- package/package.json +1 -1
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export interface IToggleButtonOnchangeValues {
|
|
2
|
+
name?: string;
|
|
3
|
+
id: string | number;
|
|
4
|
+
}
|
|
1
5
|
export interface IToggleButton {
|
|
2
6
|
/**
|
|
3
7
|
* You can extend the style properties with class names
|
|
@@ -26,8 +30,9 @@ export interface IToggleButton {
|
|
|
26
30
|
/**
|
|
27
31
|
* this function returns the name and id value of the button when clicked on
|
|
28
32
|
*/
|
|
29
|
-
onChange
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
onChange?: (value: IToggleButtonOnchangeValues) => void;
|
|
34
|
+
/**
|
|
35
|
+
* this property sets custom Icon
|
|
36
|
+
*/
|
|
37
|
+
customIcon?: string;
|
|
33
38
|
}
|
package/dist/esm/types/components/UI/molecules/ToggleButtonList/ToggleButtonList.interface.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IToggleButton, IToggleButtonOnchangeValues } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
|
|
2
|
+
export declare type TToggleButtonList = {
|
|
3
|
+
/**
|
|
4
|
+
* this property sets the list of toggle buttons
|
|
5
|
+
*/
|
|
6
|
+
list: Partial<Pick<IToggleButton, 'id' | 'name' | 'customIcon'>>[];
|
|
7
|
+
/**
|
|
8
|
+
* this property sets the props of toggle buttons
|
|
9
|
+
*/
|
|
10
|
+
toggleButtonProps?: IToggleButton;
|
|
11
|
+
/**
|
|
12
|
+
* this property returns the values of the toggle button selected
|
|
13
|
+
*/
|
|
14
|
+
onChange?: (value: IToggleButtonOnchangeValues | null) => void;
|
|
15
|
+
/**
|
|
16
|
+
* this property sets customs className for toggle buttons
|
|
17
|
+
*/
|
|
18
|
+
className?: string;
|
|
19
|
+
};
|
|
@@ -9,6 +9,7 @@ export * from './DatePicker';
|
|
|
9
9
|
export * from './Drawer';
|
|
10
10
|
export * from './EmptyResults';
|
|
11
11
|
export * from './ExpandableInfo';
|
|
12
|
+
export * from './FilterActions';
|
|
12
13
|
export * from './FilterContainerMenu';
|
|
13
14
|
export * from './FilterMenuItem';
|
|
14
15
|
export * from './FilterSearchItem';
|
|
@@ -39,6 +40,7 @@ export * from './MagnetoResolution';
|
|
|
39
40
|
export * from './MegaMenuCard';
|
|
40
41
|
export * from './MegaMenuJobsTabs';
|
|
41
42
|
export * from './MegaMenuPopover';
|
|
43
|
+
export * from './MegaMenuSideCards';
|
|
42
44
|
export * from './MenuCollapse/children/MenuCollapseChildren.interface';
|
|
43
45
|
export * from './MenuIcon';
|
|
44
46
|
export * from './MenuSearch';
|
|
@@ -60,9 +62,8 @@ export * from './Tab';
|
|
|
60
62
|
export * from './TabButton';
|
|
61
63
|
export * from './TextArea';
|
|
62
64
|
export * from './TimelineEvent';
|
|
65
|
+
export * from './ToggleButtonList';
|
|
63
66
|
export * from './Tooltip';
|
|
64
67
|
export * from './UserMenu';
|
|
65
68
|
export * from './UserMenuAnalyst';
|
|
66
69
|
export * from './UserMenuWrapperAnalyst';
|
|
67
|
-
export * from './FilterActions';
|
|
68
|
-
export * from './MegaMenuSideCards';
|
package/dist/index.d.ts
CHANGED
|
@@ -6,8 +6,9 @@ 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
8
|
import * as _components_UI_molecules from '@components/UI/molecules';
|
|
9
|
-
import {
|
|
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';
|
|
10
10
|
import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
11
|
+
import { IToggleButton as IToggleButton$1, IToggleButtonOnchangeValues as IToggleButtonOnchangeValues$1 } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
|
|
11
12
|
import * as _components_UI_organism from '@components/UI/organism';
|
|
12
13
|
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';
|
|
13
14
|
import { IListMenuText as IListMenuText$1 } from '@components/UI/molecules/ListMenuText/ListMenuText.interface';
|
|
@@ -1012,6 +1013,10 @@ interface ITag {
|
|
|
1012
1013
|
|
|
1013
1014
|
declare const Tags: React$1.FC<ITag>;
|
|
1014
1015
|
|
|
1016
|
+
interface IToggleButtonOnchangeValues {
|
|
1017
|
+
name?: string;
|
|
1018
|
+
id: string | number;
|
|
1019
|
+
}
|
|
1015
1020
|
interface IToggleButton {
|
|
1016
1021
|
/**
|
|
1017
1022
|
* You can extend the style properties with class names
|
|
@@ -1040,10 +1045,11 @@ interface IToggleButton {
|
|
|
1040
1045
|
/**
|
|
1041
1046
|
* this function returns the name and id value of the button when clicked on
|
|
1042
1047
|
*/
|
|
1043
|
-
onChange
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1048
|
+
onChange?: (value: IToggleButtonOnchangeValues) => void;
|
|
1049
|
+
/**
|
|
1050
|
+
* this property sets custom Icon
|
|
1051
|
+
*/
|
|
1052
|
+
customIcon?: string;
|
|
1047
1053
|
}
|
|
1048
1054
|
|
|
1049
1055
|
declare const ToggleButton: React$1.FC<IToggleButton>;
|
|
@@ -1566,6 +1572,29 @@ declare enum EExpandableInfoSize {
|
|
|
1566
1572
|
*/
|
|
1567
1573
|
declare const ExpandableInfo: React$1.FC<IExpandableInfoProps>;
|
|
1568
1574
|
|
|
1575
|
+
interface IFilterActions {
|
|
1576
|
+
/**
|
|
1577
|
+
* Text that shows when all option is clicked
|
|
1578
|
+
*/
|
|
1579
|
+
allAction: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* Callback when select an option
|
|
1582
|
+
*/
|
|
1583
|
+
onClickAction: (index: number, value: string) => void;
|
|
1584
|
+
/**
|
|
1585
|
+
* Optional reference for imperative behaviour
|
|
1586
|
+
*/
|
|
1587
|
+
filtersRef?: Ref<IFiltersRef>;
|
|
1588
|
+
}
|
|
1589
|
+
interface IFiltersRef {
|
|
1590
|
+
/**
|
|
1591
|
+
* CallBack to restart filters
|
|
1592
|
+
*/
|
|
1593
|
+
restartFilters: () => void;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
declare const FilterActions: FC<IFilterActions>;
|
|
1597
|
+
|
|
1569
1598
|
interface IFilterContainerMenu {
|
|
1570
1599
|
/**
|
|
1571
1600
|
* you must add jsx elements
|
|
@@ -2433,6 +2462,15 @@ declare const MegaMenuJobsTabs: React$1.FC;
|
|
|
2433
2462
|
|
|
2434
2463
|
declare const MegaMenuPopover: React$1.FC;
|
|
2435
2464
|
|
|
2465
|
+
interface IMegaMenuSideCards {
|
|
2466
|
+
jobs: IMegaMenuCard$1[];
|
|
2467
|
+
onSelectCard?: (index: number) => void;
|
|
2468
|
+
action?: IMegaMenuLink$1;
|
|
2469
|
+
maxCards?: number;
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
declare const MegaMenuSideCards: React$1.FC<IMegaMenuSideCards>;
|
|
2473
|
+
|
|
2436
2474
|
interface IMenuCollapseChildren extends IListMenuText {
|
|
2437
2475
|
isOpen: boolean;
|
|
2438
2476
|
onClick: () => void;
|
|
@@ -2941,6 +2979,27 @@ declare type TimelineEventStatus = 'checked' | 'current' | 'blocked';
|
|
|
2941
2979
|
|
|
2942
2980
|
declare const TimelineEvent: React$1.FC<TimelineEventProps>;
|
|
2943
2981
|
|
|
2982
|
+
declare type TToggleButtonList = {
|
|
2983
|
+
/**
|
|
2984
|
+
* this property sets the list of toggle buttons
|
|
2985
|
+
*/
|
|
2986
|
+
list: Partial<Pick<IToggleButton$1, 'id' | 'name' | 'customIcon'>>[];
|
|
2987
|
+
/**
|
|
2988
|
+
* this property sets the props of toggle buttons
|
|
2989
|
+
*/
|
|
2990
|
+
toggleButtonProps?: IToggleButton$1;
|
|
2991
|
+
/**
|
|
2992
|
+
* this property returns the values of the toggle button selected
|
|
2993
|
+
*/
|
|
2994
|
+
onChange?: (value: IToggleButtonOnchangeValues$1 | null) => void;
|
|
2995
|
+
/**
|
|
2996
|
+
* this property sets customs className for toggle buttons
|
|
2997
|
+
*/
|
|
2998
|
+
className?: string;
|
|
2999
|
+
};
|
|
3000
|
+
|
|
3001
|
+
declare const ToggleButtonList: React$1.FC<TToggleButtonList>;
|
|
3002
|
+
|
|
2944
3003
|
declare type TPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
2945
3004
|
interface ITooltipProps {
|
|
2946
3005
|
/**
|
|
@@ -4350,38 +4409,6 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
|
|
|
4350
4409
|
*/
|
|
4351
4410
|
declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
|
|
4352
4411
|
|
|
4353
|
-
interface IFilterActions {
|
|
4354
|
-
/**
|
|
4355
|
-
* Text that shows when all option is clicked
|
|
4356
|
-
*/
|
|
4357
|
-
allAction: string;
|
|
4358
|
-
/**
|
|
4359
|
-
* Callback when select an option
|
|
4360
|
-
*/
|
|
4361
|
-
onClickAction: (index: number, value: string) => void;
|
|
4362
|
-
/**
|
|
4363
|
-
* Optional reference for imperative behaviour
|
|
4364
|
-
*/
|
|
4365
|
-
filtersRef?: Ref<IFiltersRef>;
|
|
4366
|
-
}
|
|
4367
|
-
interface IFiltersRef {
|
|
4368
|
-
/**
|
|
4369
|
-
* CallBack to restart filters
|
|
4370
|
-
*/
|
|
4371
|
-
restartFilters: () => void;
|
|
4372
|
-
}
|
|
4373
|
-
|
|
4374
|
-
declare const FilterActions: FC<IFilterActions>;
|
|
4375
|
-
|
|
4376
|
-
interface IMegaMenuSideCards {
|
|
4377
|
-
jobs: IMegaMenuCard$1[];
|
|
4378
|
-
onSelectCard?: (index: number) => void;
|
|
4379
|
-
action?: IMegaMenuLink$1;
|
|
4380
|
-
maxCards?: number;
|
|
4381
|
-
}
|
|
4382
|
-
|
|
4383
|
-
declare const MegaMenuSideCards: React$1.FC<IMegaMenuSideCards>;
|
|
4384
|
-
|
|
4385
4412
|
interface IJobsPage {
|
|
4386
4413
|
/**
|
|
4387
4414
|
* Props for the filter bottom header section.
|
|
@@ -4917,4 +4944,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
4917
4944
|
wrapperProps: T;
|
|
4918
4945
|
}>;
|
|
4919
4946
|
|
|
4920
|
-
export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, 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, 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, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuContainer };
|
|
4947
|
+
export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, 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, 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 };
|
package/package.json
CHANGED