magneto365.ui 2.61.1 → 2.61.3
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/gif/e2ca38f1e0d908d9.gif +0 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +89 -79
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Text/Text.component.d.ts +1 -1
- package/dist/cjs/types/components/UI/atoms/Text/index.d.ts +1 -1
- package/dist/cjs/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/Alert/Alert.interface.d.ts +1 -1
- package/dist/cjs/types/components/UI/molecules/MegaMenuEmpty/MegaMenuEmpty.interface.d.ts +6 -2
- package/dist/cjs/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.component.d.ts +2 -2
- package/dist/cjs/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.interface.d.ts +7 -3
- package/dist/cjs/types/components/UI/template/AnalystTemplate/AnalystTemplate.interface.d.ts +2 -2
- package/dist/cjs/types/constants/gifs.constants.d.ts +1 -0
- package/dist/cjs/types/constants/stories/analyst.constants.d.ts +2 -2
- package/dist/cjs/types/constants/stories/megaMenu.constants.d.ts +3 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +89 -80
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Text/Text.component.d.ts +1 -1
- package/dist/esm/types/components/UI/atoms/Text/index.d.ts +1 -1
- package/dist/esm/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/Alert/Alert.interface.d.ts +1 -1
- package/dist/esm/types/components/UI/molecules/MegaMenuEmpty/MegaMenuEmpty.interface.d.ts +6 -2
- package/dist/esm/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.component.d.ts +2 -2
- package/dist/esm/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.interface.d.ts +7 -3
- package/dist/esm/types/components/UI/template/AnalystTemplate/AnalystTemplate.interface.d.ts +2 -2
- package/dist/esm/types/constants/gifs.constants.d.ts +1 -0
- package/dist/esm/types/constants/stories/analyst.constants.d.ts +2 -2
- package/dist/esm/types/constants/stories/megaMenu.constants.d.ts +3 -0
- package/dist/index.d.ts +50 -40
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { TextCustom } from './Text.component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { IHeaderAnalyst } from './HeaderAnalyst.interface';
|
|
3
3
|
/**
|
|
4
4
|
* Organism UI component of header analyst
|
|
5
5
|
*/
|
|
6
|
-
export declare const HeaderAnalyst: React.FC<
|
|
6
|
+
export declare const HeaderAnalyst: React.FC<IHeaderAnalyst>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IBreadcrumbs, IUserMenuWrapperAnalystProps } from '@components/UI/molecules';
|
|
2
2
|
import { ILogoComponent, ILinkProps } from '@components/UI/atoms';
|
|
3
|
-
export interface
|
|
3
|
+
export interface IHeaderAnalyst {
|
|
4
4
|
/**
|
|
5
5
|
* Breadcrumbs props
|
|
6
6
|
*/
|
|
@@ -13,10 +13,14 @@ export interface IHeaderAnalystProps {
|
|
|
13
13
|
* Function to handle modal visibility from analyst template
|
|
14
14
|
*/
|
|
15
15
|
handleModal?: (name: string, visible: boolean, data: unknown) => void;
|
|
16
|
+
/**
|
|
17
|
+
* Text to be displayed in the header
|
|
18
|
+
*/
|
|
19
|
+
legend?: string;
|
|
16
20
|
/**
|
|
17
21
|
* Logo props
|
|
18
22
|
*/
|
|
19
|
-
logoProps?:
|
|
23
|
+
logoProps?: ILogoAnalyst;
|
|
20
24
|
/**
|
|
21
25
|
* Main menu button click handler
|
|
22
26
|
*/
|
|
@@ -30,7 +34,7 @@ export interface IHeaderAnalystProps {
|
|
|
30
34
|
*/
|
|
31
35
|
userNotificationProps?: ILinkProps;
|
|
32
36
|
}
|
|
33
|
-
export interface
|
|
37
|
+
export interface ILogoAnalyst extends ILogoComponent {
|
|
34
38
|
/**
|
|
35
39
|
* Link to redirect
|
|
36
40
|
*/
|
package/dist/esm/types/components/UI/template/AnalystTemplate/AnalystTemplate.interface.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { IHeaderAnalyst, IModalAnalyst, INavMenuAnalystRegion } from '@components/UI/organism';
|
|
3
3
|
import { INavMenuDrawerAnalystProps } from '@components/UI/organism/NavMenuDrawerAnalyst';
|
|
4
4
|
export interface IAnalystTemplateProps {
|
|
5
5
|
/**
|
|
@@ -21,7 +21,7 @@ export interface IAnalystTemplateProps {
|
|
|
21
21
|
/**
|
|
22
22
|
* Header props
|
|
23
23
|
*/
|
|
24
|
-
headerProps:
|
|
24
|
+
headerProps: IHeaderAnalyst;
|
|
25
25
|
/**
|
|
26
26
|
* Navigation menu props
|
|
27
27
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IBreadcrumbs, IUserAnalyst, IUserMenuWrapperAnalystProps } from '@components/UI/molecules';
|
|
2
|
-
import {
|
|
2
|
+
import { IHeaderAnalyst, INavMenuAnalystProps, IModalAnalystProps } from '@components/UI/organism';
|
|
3
3
|
import { IMainButton, ILinkProps } from '@components/UI/atoms';
|
|
4
4
|
import { IAnalystTemplateProps } from '@components/UI/template';
|
|
5
5
|
export declare const MenuButtonAnalystProps: IMainButton;
|
|
@@ -7,7 +7,7 @@ export declare const BreadCrumbAnalystProps: IBreadcrumbs;
|
|
|
7
7
|
export declare const UserAnalystProps: IUserAnalyst;
|
|
8
8
|
export declare const UserNotificationProps: ILinkProps;
|
|
9
9
|
export declare const UserMenuAnalystProps: IUserMenuWrapperAnalystProps;
|
|
10
|
-
export declare const HeaderAnalystProps:
|
|
10
|
+
export declare const HeaderAnalystProps: IHeaderAnalyst;
|
|
11
11
|
export declare const NavMenuAnalystProps: INavMenuAnalystProps;
|
|
12
12
|
export declare const ModalAnalystProps: IModalAnalystProps;
|
|
13
13
|
export declare const AnalystTemplateProps: Omit<IAnalystTemplateProps, 'children'>;
|
|
@@ -2,6 +2,9 @@ import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.inter
|
|
|
2
2
|
import { IMegaMenuCard } from '@components/UI/molecules';
|
|
3
3
|
import { IMegaMenuCards } from '@components/UI/organism';
|
|
4
4
|
import { IMegaMenuJobs, IMegaMenuMainHeader, IMegaMenuSocialHeader } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
5
|
+
export declare const staticMessages: {
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
};
|
|
5
8
|
export declare const megaMenuSocialTabs: IMegaMenuTab[];
|
|
6
9
|
export declare const alphabet = "ABCDEFGHIJKLMN\u00D1OPQRSTUVWXYZ";
|
|
7
10
|
export declare const megaMenuJobImage: IMegaMenuCard;
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { IMegaMenuCard as IMegaMenuCard$1, IFiltersRef as IFiltersRef$1, IDatePi
|
|
|
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';
|
|
14
|
-
import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1,
|
|
14
|
+
import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1, IHeaderAnalyst as IHeaderAnalyst$1, IModalAnalyst as IModalAnalyst$1, INavMenuAnalystRegion as INavMenuAnalystRegion$1, IlistMenuUserProps as IlistMenuUserProps$1 } from '@components/UI/organism';
|
|
15
15
|
import { IListMenuText as IListMenuText$1 } from '@components/UI/molecules/ListMenuText/ListMenuText.interface';
|
|
16
16
|
import { IJobCompanyHeader as IJobCompanyHeader$1 } from '@components/UI/molecules/JobCompanyHeader';
|
|
17
17
|
import { ISimilarJobsCard as ISimilarJobsCard$1 } from '@components/UI/molecules/SimilarJobsCard/SimilarJobsCard.interface';
|
|
@@ -1063,6 +1063,38 @@ interface ISwitch {
|
|
|
1063
1063
|
|
|
1064
1064
|
declare const Switch: FC<ISwitch>;
|
|
1065
1065
|
|
|
1066
|
+
interface IText {
|
|
1067
|
+
/**
|
|
1068
|
+
* This is the main text
|
|
1069
|
+
* */
|
|
1070
|
+
text?: string;
|
|
1071
|
+
/**
|
|
1072
|
+
* This is the custom text
|
|
1073
|
+
* */
|
|
1074
|
+
customText?: ICustomText[];
|
|
1075
|
+
/**
|
|
1076
|
+
* You can add you custom className here
|
|
1077
|
+
*/
|
|
1078
|
+
className?: string;
|
|
1079
|
+
}
|
|
1080
|
+
interface ICustomText {
|
|
1081
|
+
/**
|
|
1082
|
+
* This is the value to the custom text
|
|
1083
|
+
* */
|
|
1084
|
+
value: string | React.ReactNode;
|
|
1085
|
+
/**
|
|
1086
|
+
* This is the custom font weight to text
|
|
1087
|
+
* */
|
|
1088
|
+
fontWeight: EFontWeightType;
|
|
1089
|
+
/**
|
|
1090
|
+
* This is the custom line break to text
|
|
1091
|
+
* */
|
|
1092
|
+
lineBreak?: boolean;
|
|
1093
|
+
}
|
|
1094
|
+
declare type EFontWeightType = 'normal' | 'bold' | 'lighter';
|
|
1095
|
+
|
|
1096
|
+
declare const TextCustom: React$1.FC<IText>;
|
|
1097
|
+
|
|
1066
1098
|
interface ITag {
|
|
1067
1099
|
/**
|
|
1068
1100
|
* this property add icon in the left side
|
|
@@ -1294,7 +1326,7 @@ interface IAlert {
|
|
|
1294
1326
|
/**
|
|
1295
1327
|
* This is the main text in the alert
|
|
1296
1328
|
* */
|
|
1297
|
-
text?: string
|
|
1329
|
+
text?: string;
|
|
1298
1330
|
/**
|
|
1299
1331
|
* This is the custom text in the alert
|
|
1300
1332
|
* */
|
|
@@ -3410,7 +3442,7 @@ interface IFooterMenuLinks {
|
|
|
3410
3442
|
|
|
3411
3443
|
declare const FooterMenuLinks: React$1.FC<IFooterMenuLinks>;
|
|
3412
3444
|
|
|
3413
|
-
interface
|
|
3445
|
+
interface IHeaderAnalyst {
|
|
3414
3446
|
/**
|
|
3415
3447
|
* Breadcrumbs props
|
|
3416
3448
|
*/
|
|
@@ -3423,10 +3455,14 @@ interface IHeaderAnalystProps {
|
|
|
3423
3455
|
* Function to handle modal visibility from analyst template
|
|
3424
3456
|
*/
|
|
3425
3457
|
handleModal?: (name: string, visible: boolean, data: unknown) => void;
|
|
3458
|
+
/**
|
|
3459
|
+
* Text to be displayed in the header
|
|
3460
|
+
*/
|
|
3461
|
+
legend?: string;
|
|
3426
3462
|
/**
|
|
3427
3463
|
* Logo props
|
|
3428
3464
|
*/
|
|
3429
|
-
logoProps?:
|
|
3465
|
+
logoProps?: ILogoAnalyst;
|
|
3430
3466
|
/**
|
|
3431
3467
|
* Main menu button click handler
|
|
3432
3468
|
*/
|
|
@@ -3440,7 +3476,7 @@ interface IHeaderAnalystProps {
|
|
|
3440
3476
|
*/
|
|
3441
3477
|
userNotificationProps?: ILinkProps$1;
|
|
3442
3478
|
}
|
|
3443
|
-
interface
|
|
3479
|
+
interface ILogoAnalyst extends ILogoComponent$1 {
|
|
3444
3480
|
/**
|
|
3445
3481
|
* Link to redirect
|
|
3446
3482
|
*/
|
|
@@ -3458,7 +3494,7 @@ interface ILogoAnalystProps extends ILogoComponent$1 {
|
|
|
3458
3494
|
/**
|
|
3459
3495
|
* Organism UI component of header analyst
|
|
3460
3496
|
*/
|
|
3461
|
-
declare const HeaderAnalyst: React$1.FC<
|
|
3497
|
+
declare const HeaderAnalyst: React$1.FC<IHeaderAnalyst>;
|
|
3462
3498
|
|
|
3463
3499
|
interface IAlertJobStatus {
|
|
3464
3500
|
/**
|
|
@@ -4725,36 +4761,6 @@ declare namespace IJobSuggestedDrawer {
|
|
|
4725
4761
|
}
|
|
4726
4762
|
}
|
|
4727
4763
|
|
|
4728
|
-
interface IText {
|
|
4729
|
-
/**
|
|
4730
|
-
* This is the main text
|
|
4731
|
-
* */
|
|
4732
|
-
text?: string;
|
|
4733
|
-
/**
|
|
4734
|
-
* This is the custom text
|
|
4735
|
-
* */
|
|
4736
|
-
customText?: ICustomText[];
|
|
4737
|
-
/**
|
|
4738
|
-
* You can add you custom className here
|
|
4739
|
-
*/
|
|
4740
|
-
className?: string;
|
|
4741
|
-
}
|
|
4742
|
-
interface ICustomText {
|
|
4743
|
-
/**
|
|
4744
|
-
* This is the value to the custom text
|
|
4745
|
-
* */
|
|
4746
|
-
value: string | React.ReactNode;
|
|
4747
|
-
/**
|
|
4748
|
-
* This is the custom font weight to text
|
|
4749
|
-
* */
|
|
4750
|
-
fontWeight: EFontWeightType;
|
|
4751
|
-
/**
|
|
4752
|
-
* This is the custom line break to text
|
|
4753
|
-
* */
|
|
4754
|
-
lineBreak?: boolean;
|
|
4755
|
-
}
|
|
4756
|
-
declare type EFontWeightType = 'normal' | 'bold' | 'lighter';
|
|
4757
|
-
|
|
4758
4764
|
declare const JobSuggestedDrawer: React$1.FC<IJobSuggestedDrawer> & {
|
|
4759
4765
|
Header: React$1.FC<IJobSuggestedDrawer.Header>;
|
|
4760
4766
|
Alert: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus> & {
|
|
@@ -5219,9 +5225,13 @@ interface IMegaMenuEmpty {
|
|
|
5219
5225
|
*/
|
|
5220
5226
|
title: string;
|
|
5221
5227
|
/**
|
|
5222
|
-
|
|
5223
|
-
|
|
5228
|
+
* Empty Subtitle
|
|
5229
|
+
*/
|
|
5224
5230
|
subtitle: string;
|
|
5231
|
+
/**
|
|
5232
|
+
* Image Data
|
|
5233
|
+
*/
|
|
5234
|
+
imageData: string;
|
|
5225
5235
|
}
|
|
5226
5236
|
|
|
5227
5237
|
declare const MegaMenuEmpty: React$1.FC<IMegaMenuEmpty>;
|
|
@@ -5540,7 +5550,7 @@ interface IAnalystTemplateProps {
|
|
|
5540
5550
|
/**
|
|
5541
5551
|
* Header props
|
|
5542
5552
|
*/
|
|
5543
|
-
headerProps:
|
|
5553
|
+
headerProps: IHeaderAnalyst$1;
|
|
5544
5554
|
/**
|
|
5545
5555
|
* Navigation menu props
|
|
5546
5556
|
*/
|
|
@@ -5922,4 +5932,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
5922
5932
|
showContent?: boolean | undefined;
|
|
5923
5933
|
}>;
|
|
5924
5934
|
|
|
5925
|
-
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlertsPanel, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, ButtonLink, 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, IAlertsPanel, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, IButtonLink, 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,
|
|
5935
|
+
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlertsPanel, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, ButtonLink, 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, IAlertsPanel, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, IButtonLink, 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, IHeaderAnalyst, 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, ILogoAnalyst, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuDrawer, IMegaMenuDrawerItem, IMegaMenuDrawerItemContent, IMegaMenuEmpty, 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, MegaMenuEmpty, 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, TextCustom, 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