magneto365.ui 2.56.4 → 2.57.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 +679 -612
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Divider/Divider.interface.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/Alert/Alert.interface.d.ts +1 -1
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/ApplicationSummary.component.d.ts +9 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/ApplicationSummary.interface.d.ts +71 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationButton/ApplicationButton.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationButton/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationSection/ApplicationSection.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationSection/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationSubTitle/ApplicationSubTitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationSubTitle/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationText/ApplicationText.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationText/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationTitle/ApplicationTitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/children/ApplicationTitle/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/ApplicationSummary/index.d.ts +5 -0
- package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +675 -613
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Divider/Divider.interface.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/Alert/Alert.interface.d.ts +1 -1
- package/dist/esm/types/components/UI/organism/ApplicationSummary/ApplicationSummary.component.d.ts +9 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/ApplicationSummary.interface.d.ts +71 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationButton/ApplicationButton.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationButton/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationSection/ApplicationSection.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationSection/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationSubTitle/ApplicationSubTitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationSubTitle/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationText/ApplicationText.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationText/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationTitle/ApplicationTitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationTitle/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/ApplicationSummary/index.d.ts +5 -0
- package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
- package/dist/index.d.ts +90 -2
- package/package.json +1 -1
package/dist/esm/types/components/UI/organism/ApplicationSummary/ApplicationSummary.component.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IApplicationSummary } from './ApplicationSummary.interface';
|
|
3
|
+
export declare const ApplicationSummary: React.FC<IApplicationSummary> & {
|
|
4
|
+
Section: React.FC<IApplicationSummary.Section>;
|
|
5
|
+
Title: React.FC<IApplicationSummary.Title>;
|
|
6
|
+
SubTitle: React.FC<IApplicationSummary.SubTitle>;
|
|
7
|
+
Button: React.FC<IApplicationSummary.Button>;
|
|
8
|
+
Text: React.FC<IApplicationSummary.Text>;
|
|
9
|
+
};
|
package/dist/esm/types/components/UI/organism/ApplicationSummary/ApplicationSummary.interface.d.ts
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface IApplicationSummary {
|
|
3
|
+
/**
|
|
4
|
+
* this property sets any component
|
|
5
|
+
*/
|
|
6
|
+
children: JSX.Element | JSX.Element[];
|
|
7
|
+
/**
|
|
8
|
+
* this property opens the ui
|
|
9
|
+
*/
|
|
10
|
+
open: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* this property closes the ui
|
|
13
|
+
*/
|
|
14
|
+
onClose: () => void;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace IApplicationSummary {
|
|
17
|
+
interface Section {
|
|
18
|
+
/**
|
|
19
|
+
* this property sets custom styles
|
|
20
|
+
*/
|
|
21
|
+
className?: string;
|
|
22
|
+
/**
|
|
23
|
+
* this property sets any component
|
|
24
|
+
*/
|
|
25
|
+
children: JSX.Element | JSX.Element[];
|
|
26
|
+
/**
|
|
27
|
+
* this property update to position align the components
|
|
28
|
+
*/
|
|
29
|
+
aligned?: 'start' | 'center' | 'end';
|
|
30
|
+
}
|
|
31
|
+
interface Title {
|
|
32
|
+
/**
|
|
33
|
+
* this property sets custom styles
|
|
34
|
+
*/
|
|
35
|
+
className?: string;
|
|
36
|
+
/**
|
|
37
|
+
* this property sets children elements
|
|
38
|
+
*/
|
|
39
|
+
children?: React.ReactNode;
|
|
40
|
+
}
|
|
41
|
+
interface SubTitle {
|
|
42
|
+
/**
|
|
43
|
+
* this property sets custom styles
|
|
44
|
+
*/
|
|
45
|
+
className?: string;
|
|
46
|
+
/**
|
|
47
|
+
* this property sets children elements
|
|
48
|
+
*/
|
|
49
|
+
children?: React.ReactNode;
|
|
50
|
+
}
|
|
51
|
+
interface Text {
|
|
52
|
+
/**
|
|
53
|
+
* this property sets custom styles
|
|
54
|
+
*/
|
|
55
|
+
className?: string;
|
|
56
|
+
/**
|
|
57
|
+
* this property sets children elements
|
|
58
|
+
*/
|
|
59
|
+
children?: React.ReactNode;
|
|
60
|
+
}
|
|
61
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
62
|
+
/**
|
|
63
|
+
* this property sets custom styles
|
|
64
|
+
*/
|
|
65
|
+
className?: string;
|
|
66
|
+
/**
|
|
67
|
+
* this property sets custom style button
|
|
68
|
+
*/
|
|
69
|
+
variant?: 'primary' | 'secondary';
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ApplicationButton.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ApplicationSection.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ApplicationSubTitle.component';
|
package/dist/esm/types/components/UI/organism/ApplicationSummary/children/ApplicationText/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ApplicationText.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ApplicationTitle.component';
|
package/dist/index.d.ts
CHANGED
|
@@ -284,6 +284,7 @@ declare const DateInput: React$1.FC<IDateInput>;
|
|
|
284
284
|
declare type DIRECTIONS = 'HORIZONTAL' | 'VERTICAL';
|
|
285
285
|
interface IDivider {
|
|
286
286
|
direction?: DIRECTIONS;
|
|
287
|
+
spacing?: number;
|
|
287
288
|
}
|
|
288
289
|
|
|
289
290
|
/**
|
|
@@ -1237,7 +1238,7 @@ interface IAlert {
|
|
|
1237
1238
|
/**
|
|
1238
1239
|
* This is the main text in the alert
|
|
1239
1240
|
* */
|
|
1240
|
-
text?: string;
|
|
1241
|
+
text?: string | React.ReactNode;
|
|
1241
1242
|
/**
|
|
1242
1243
|
* This is the custom text in the alert
|
|
1243
1244
|
* */
|
|
@@ -3109,6 +3110,93 @@ interface IAlphabetFilter {
|
|
|
3109
3110
|
|
|
3110
3111
|
declare const AlphabetFilter: React$1.FC<IAlphabetFilter>;
|
|
3111
3112
|
|
|
3113
|
+
interface IApplicationSummary {
|
|
3114
|
+
/**
|
|
3115
|
+
* this property sets any component
|
|
3116
|
+
*/
|
|
3117
|
+
children: JSX.Element | JSX.Element[];
|
|
3118
|
+
/**
|
|
3119
|
+
* this property opens the ui
|
|
3120
|
+
*/
|
|
3121
|
+
open: boolean;
|
|
3122
|
+
/**
|
|
3123
|
+
* this property closes the ui
|
|
3124
|
+
*/
|
|
3125
|
+
onClose: () => void;
|
|
3126
|
+
}
|
|
3127
|
+
declare namespace IApplicationSummary {
|
|
3128
|
+
interface Section {
|
|
3129
|
+
/**
|
|
3130
|
+
* this property sets custom styles
|
|
3131
|
+
*/
|
|
3132
|
+
className?: string;
|
|
3133
|
+
/**
|
|
3134
|
+
* this property sets any component
|
|
3135
|
+
*/
|
|
3136
|
+
children: JSX.Element | JSX.Element[];
|
|
3137
|
+
/**
|
|
3138
|
+
* this property update to position align the components
|
|
3139
|
+
*/
|
|
3140
|
+
aligned?: 'start' | 'center' | 'end';
|
|
3141
|
+
}
|
|
3142
|
+
interface Title {
|
|
3143
|
+
/**
|
|
3144
|
+
* this property sets custom styles
|
|
3145
|
+
*/
|
|
3146
|
+
className?: string;
|
|
3147
|
+
/**
|
|
3148
|
+
* this property sets children elements
|
|
3149
|
+
*/
|
|
3150
|
+
children?: React.ReactNode;
|
|
3151
|
+
}
|
|
3152
|
+
interface SubTitle {
|
|
3153
|
+
/**
|
|
3154
|
+
* this property sets custom styles
|
|
3155
|
+
*/
|
|
3156
|
+
className?: string;
|
|
3157
|
+
/**
|
|
3158
|
+
* this property sets children elements
|
|
3159
|
+
*/
|
|
3160
|
+
children?: React.ReactNode;
|
|
3161
|
+
}
|
|
3162
|
+
interface Text {
|
|
3163
|
+
/**
|
|
3164
|
+
* this property sets custom styles
|
|
3165
|
+
*/
|
|
3166
|
+
className?: string;
|
|
3167
|
+
/**
|
|
3168
|
+
* this property sets children elements
|
|
3169
|
+
*/
|
|
3170
|
+
children?: React.ReactNode;
|
|
3171
|
+
}
|
|
3172
|
+
interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3173
|
+
/**
|
|
3174
|
+
* this property sets custom styles
|
|
3175
|
+
*/
|
|
3176
|
+
className?: string;
|
|
3177
|
+
/**
|
|
3178
|
+
* this property sets custom style button
|
|
3179
|
+
*/
|
|
3180
|
+
variant?: 'primary' | 'secondary';
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
declare const ApplicationSummary: React$1.FC<IApplicationSummary> & {
|
|
3185
|
+
Section: React$1.FC<IApplicationSummary.Section>;
|
|
3186
|
+
Title: React$1.FC<IApplicationSummary.Title>;
|
|
3187
|
+
SubTitle: React$1.FC<IApplicationSummary.SubTitle>;
|
|
3188
|
+
Button: React$1.FC<IApplicationSummary.Button>;
|
|
3189
|
+
Text: React$1.FC<IApplicationSummary.Text>;
|
|
3190
|
+
};
|
|
3191
|
+
|
|
3192
|
+
declare const ApplicationButton: React$1.FC<IApplicationSummary.Button>;
|
|
3193
|
+
|
|
3194
|
+
declare const ApplicationSubtitle: React$1.FC<IApplicationSummary.SubTitle>;
|
|
3195
|
+
|
|
3196
|
+
declare const ApplicationText: React$1.FC<IApplicationSummary.Text>;
|
|
3197
|
+
|
|
3198
|
+
declare const ApplicationTitle: React$1.FC<IApplicationSummary.Title>;
|
|
3199
|
+
|
|
3112
3200
|
declare const BrandMenu: React$1.FC<IBrandMenu>;
|
|
3113
3201
|
|
|
3114
3202
|
interface IDatePickerComponent {
|
|
@@ -5403,4 +5491,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
5403
5491
|
wrapperProps: T;
|
|
5404
5492
|
}>;
|
|
5405
5493
|
|
|
5406
|
-
export { Actions, Alert, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlphabetFilter, AnalystTemplate, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, Checkbox, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAlertJobStatus, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, ICheckbox, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterActions, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFiltersRef, IFooterList, IFrequentSearch, IGetOptionsOnSearchProps, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuTab, IMenuCollapseChildren, IMenuDropdownProps, IMenuIcon, IMenuItem, IMenuItems, IMenuSearch, IMenuUser, IMessageProps, IMobileDatePicker, IMobileDrawer, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, IModalAnalyst, IModalAnalystProps, IModalAnalystScreen, IModalProps, IMultiRangeSlider, INavMMenuAnalystRegionModal, INavMenuAnalystIcons, INavMenuAnalystOption, INavMenuAnalystProps, INavMenuAnalystQueryString, INavMenuAnalystRegion, INavMenuAnalystRegionModalProps, INavMenuAnalystSection, INavMenuDrawerAnalystProps, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarCard, ISimilarCardData, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IUserTerm, IVacancies$1 as IVacancies, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, Input, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobRequirementsElement, JobSkillsCard, JobSuggestedDrawer, JobSuggestedHeader, JobSuggestedSimilarJobs, JobVideo, JobsPage, Link, LinkElement, LinkType, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default as SortMenu, SuggestedJobsPage, Switch, TExpandableInfoSize, TExpandableInfoVariant, TMessageType, TToggleButtonList, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuContainer };
|
|
5494
|
+
export { Actions, Alert, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, Checkbox, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertType, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAlertJobStatus, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, ICheckbox, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterActions, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFiltersRef, IFooterList, IFrequentSearch, IGetOptionsOnSearchProps, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuTab, IMenuCollapseChildren, IMenuDropdownProps, IMenuIcon, IMenuItem, IMenuItems, IMenuSearch, IMenuUser, IMessageProps, IMobileDatePicker, IMobileDrawer, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, IModalAnalyst, IModalAnalystProps, IModalAnalystScreen, IModalProps, IMultiRangeSlider, INavMMenuAnalystRegionModal, INavMenuAnalystIcons, INavMenuAnalystOption, INavMenuAnalystProps, INavMenuAnalystQueryString, INavMenuAnalystRegion, INavMenuAnalystRegionModalProps, INavMenuAnalystSection, INavMenuDrawerAnalystProps, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarCard, ISimilarCardData, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IUserTerm, IVacancies$1 as IVacancies, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, Input, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobRequirementsElement, JobSkillsCard, JobSuggestedDrawer, JobSuggestedHeader, JobSuggestedSimilarJobs, JobVideo, JobsPage, Link, LinkElement, LinkType, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default as SortMenu, SuggestedJobsPage, Switch, TExpandableInfoSize, TExpandableInfoVariant, TMessageType, TToggleButtonList, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuContainer };
|
package/package.json
CHANGED