magneto365.ui 2.59.6 → 2.60.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  2. package/dist/cjs/index.js +1036 -1002
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +4 -0
  5. package/dist/cjs/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +2 -2
  6. package/dist/cjs/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.component.d.ts +2 -1
  7. package/dist/cjs/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface.d.ts +8 -0
  8. package/dist/cjs/types/components/UI/organism/AlertsPanel/AlertsPanel.component.d.ts +6 -0
  9. package/dist/cjs/types/components/UI/organism/AlertsPanel/AlertsPanel.interface.d.ts +41 -0
  10. package/dist/cjs/types/components/UI/organism/AlertsPanel/children/AlertsPanelItem/AlertsPanelItem.component.d.ts +3 -0
  11. package/dist/cjs/types/components/UI/organism/AlertsPanel/children/AlertsPanelList/AlertsPanelList.component.d.ts +3 -0
  12. package/dist/cjs/types/components/UI/organism/AlertsPanel/index.d.ts +2 -0
  13. package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
  14. package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +4 -1
  15. package/dist/cjs/types/constants/stories/alertsPanel.constants.d.ts +4 -0
  16. package/dist/cjs/types/constants/stories/index.d.ts +1 -0
  17. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  18. package/dist/esm/index.js +1036 -1003
  19. package/dist/esm/index.js.map +1 -1
  20. package/dist/esm/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +4 -0
  21. package/dist/esm/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +2 -2
  22. package/dist/esm/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.component.d.ts +2 -1
  23. package/dist/esm/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface.d.ts +8 -0
  24. package/dist/esm/types/components/UI/organism/AlertsPanel/AlertsPanel.component.d.ts +6 -0
  25. package/dist/esm/types/components/UI/organism/AlertsPanel/AlertsPanel.interface.d.ts +41 -0
  26. package/dist/esm/types/components/UI/organism/AlertsPanel/children/AlertsPanelItem/AlertsPanelItem.component.d.ts +3 -0
  27. package/dist/esm/types/components/UI/organism/AlertsPanel/children/AlertsPanelList/AlertsPanelList.component.d.ts +3 -0
  28. package/dist/esm/types/components/UI/organism/AlertsPanel/index.d.ts +2 -0
  29. package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
  30. package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +4 -1
  31. package/dist/esm/types/constants/stories/alertsPanel.constants.d.ts +4 -0
  32. package/dist/esm/types/constants/stories/index.d.ts +1 -0
  33. package/dist/index.d.ts +65 -4
  34. package/package.json +1 -1
@@ -8,6 +8,10 @@ export interface IAlertJobModal {
8
8
  * Additional class names for custom styling.
9
9
  */
10
10
  className?: string;
11
+ /**
12
+ * Additional class names for custom styling.
13
+ */
14
+ mobileClassName?: string;
11
15
  /**
12
16
  * Represents whether the modal is open or closed.
13
17
  */
@@ -7,8 +7,8 @@ export interface IListMenuIcons {
7
7
  logout: ILogout;
8
8
  settings: ISettings;
9
9
  haveGif?: boolean;
10
- profileImage: IAvatar;
11
- isAuthenticated: boolean;
10
+ profileImage?: IAvatar;
11
+ isAuthenticated?: boolean;
12
12
  }
13
13
  export interface IMenuItems {
14
14
  title?: string;
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
- declare const MegaMenuPopover: React.FC;
2
+ import { IMegaMenuPopover } from './MegaMenuPopover.interface';
3
+ declare const MegaMenuPopover: React.FC<IMegaMenuPopover>;
3
4
  export default MegaMenuPopover;
@@ -0,0 +1,8 @@
1
+ import { ReactNode } from 'react';
2
+ export interface IMegaMenuPopover {
3
+ children: ReactNode;
4
+ popoverRef?: React.Ref<IPopoverRef>;
5
+ }
6
+ export interface IPopoverRef {
7
+ setShow: (show: boolean) => void;
8
+ }
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { IAlertsPanel } from './AlertsPanel.interface';
3
+ export declare const AlertsPanel: React.FC<IAlertsPanel> & {
4
+ List: React.FC<IAlertsPanel.List>;
5
+ Item: React.FC<IAlertsPanel.Item>;
6
+ };
@@ -0,0 +1,41 @@
1
+ /// <reference types="react" />
2
+ export interface IAlertsPanel {
3
+ /**
4
+ * This is the title on the top
5
+ */
6
+ title: string;
7
+ /**
8
+ * React children to be rendered inside the component.
9
+ */
10
+ children?: React.ReactNode;
11
+ /**
12
+ * Additional class names for custom styling.
13
+ */
14
+ className?: string;
15
+ }
16
+ export declare namespace IAlertsPanel {
17
+ interface List {
18
+ /**
19
+ * React children to be rendered inside the component.
20
+ */
21
+ children?: React.ReactNode;
22
+ /**
23
+ * Additional class names for custom styling.
24
+ */
25
+ className?: string;
26
+ }
27
+ interface Item {
28
+ /**
29
+ * Additional class names for custom styling.
30
+ */
31
+ className?: string;
32
+ /**
33
+ * This is the custom text
34
+ */
35
+ text: string;
36
+ /**
37
+ * React children to be rendered inside the component.
38
+ */
39
+ onDelete: () => void;
40
+ }
41
+ }
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertsPanel } from '../../AlertsPanel.interface';
3
+ export declare const AlertsPanelItem: React.FC<IAlertsPanel.Item>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertsPanel } from '../../AlertsPanel.interface';
3
+ export declare const AlertsPanelList: React.FC<IAlertsPanel.List>;
@@ -0,0 +1,2 @@
1
+ export * from './AlertsPanel.interface';
2
+ export { AlertsPanel } from './AlertsPanel.component';
@@ -32,3 +32,4 @@ export * from './Timeline';
32
32
  export * from './UserTerms';
33
33
  export * from './MegaMenuDrawer';
34
34
  export * from './JobSuggestedDrawer';
35
+ export * from './AlertsPanel';
@@ -1,10 +1,12 @@
1
1
  import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
2
2
  import { ISearchbar } from '@components/UI/molecules';
3
+ import { IPopoverRef } from '@components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface';
3
4
  import { IlistMenuUserProps } from '@components/UI/organism';
4
- import { ReactNode } from 'react';
5
+ import React, { ReactNode } from 'react';
5
6
  export interface IMegaMenuLink {
6
7
  label: string;
7
8
  url: string;
9
+ onClick?: () => void;
8
10
  target?: string;
9
11
  icon?: string | undefined;
10
12
  }
@@ -39,6 +41,7 @@ export interface IMegaMenuJobs {
39
41
  onChangeTab?: (index: number) => void;
40
42
  jobAction?: IMegaMenuAction;
41
43
  allJobsAction?: IMegaMenuLink;
44
+ popoverRef?: React.Ref<IPopoverRef>;
42
45
  }
43
46
  export interface IMegaMenuContext {
44
47
  socialHeaderProps: IMegaMenuSocialHeader;
@@ -0,0 +1,4 @@
1
+ export declare const alerts: {
2
+ id: number;
3
+ text: string;
4
+ }[];
@@ -23,3 +23,4 @@ export * from './alertJob.constants';
23
23
  export * from './similarCard.constants';
24
24
  export * from './jobSuggestedDrawer.constants';
25
25
  export * from './notification.constants';
26
+ export * from './alertsPanel.constants';
package/dist/index.d.ts CHANGED
@@ -33,6 +33,7 @@ import { IRightsReservedText as IRightsReservedText$1 } from '@components/UI/mol
33
33
  import { IFooterMenuLinks as IFooterMenuLinks$1 } from '@components/UI/organism/FooterMenuLinks/FooterMenuLinks.interface';
34
34
  import { ERenderType } from '@constants/stories';
35
35
  import { IMegaMenuTab as IMegaMenuTab$1 } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
36
+ import { IPopoverRef as IPopoverRef$1 } from '@components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface';
36
37
 
37
38
  interface IContextAppProvider {
38
39
  children: React.ReactNode;
@@ -2420,8 +2421,8 @@ interface IListMenuIcons {
2420
2421
  logout: ILogout;
2421
2422
  settings: ISettings;
2422
2423
  haveGif?: boolean;
2423
- profileImage: IAvatar$1;
2424
- isAuthenticated: boolean;
2424
+ profileImage?: IAvatar$1;
2425
+ isAuthenticated?: boolean;
2425
2426
  }
2426
2427
  interface IMenuItems {
2427
2428
  title?: string;
@@ -2571,7 +2572,15 @@ declare const MegaMenuCard: React$1.FC<IMegaMenuCard>;
2571
2572
 
2572
2573
  declare const MegaMenuJobsTabs: React$1.FC;
2573
2574
 
2574
- declare const MegaMenuPopover: React$1.FC;
2575
+ interface IMegaMenuPopover {
2576
+ children: ReactNode;
2577
+ popoverRef?: React.Ref<IPopoverRef>;
2578
+ }
2579
+ interface IPopoverRef {
2580
+ setShow: (show: boolean) => void;
2581
+ }
2582
+
2583
+ declare const MegaMenuPopover: React$1.FC<IMegaMenuPopover>;
2575
2584
 
2576
2585
  interface IMegaMenuSideCards {
2577
2586
  /**
@@ -4756,6 +4765,52 @@ declare const JobSuggestedHeader: React$1.FC<IJobSuggestedDrawer.Header>;
4756
4765
 
4757
4766
  declare const JobSuggestedSimilarJobs: React$1.FC<IJobSuggestedDrawer.SimilarJobCards>;
4758
4767
 
4768
+ interface IAlertsPanel {
4769
+ /**
4770
+ * This is the title on the top
4771
+ */
4772
+ title: string;
4773
+ /**
4774
+ * React children to be rendered inside the component.
4775
+ */
4776
+ children?: React.ReactNode;
4777
+ /**
4778
+ * Additional class names for custom styling.
4779
+ */
4780
+ className?: string;
4781
+ }
4782
+ declare namespace IAlertsPanel {
4783
+ interface List {
4784
+ /**
4785
+ * React children to be rendered inside the component.
4786
+ */
4787
+ children?: React.ReactNode;
4788
+ /**
4789
+ * Additional class names for custom styling.
4790
+ */
4791
+ className?: string;
4792
+ }
4793
+ interface Item {
4794
+ /**
4795
+ * Additional class names for custom styling.
4796
+ */
4797
+ className?: string;
4798
+ /**
4799
+ * This is the custom text
4800
+ */
4801
+ text: string;
4802
+ /**
4803
+ * React children to be rendered inside the component.
4804
+ */
4805
+ onDelete: () => void;
4806
+ }
4807
+ }
4808
+
4809
+ declare const AlertsPanel: React$1.FC<IAlertsPanel> & {
4810
+ List: React$1.FC<IAlertsPanel.List>;
4811
+ Item: React$1.FC<IAlertsPanel.Item>;
4812
+ };
4813
+
4759
4814
  interface IMenuUser {
4760
4815
  /**
4761
4816
  * menu items props
@@ -5211,6 +5266,10 @@ interface IAlertJobModal {
5211
5266
  * Additional class names for custom styling.
5212
5267
  */
5213
5268
  className?: string;
5269
+ /**
5270
+ * Additional class names for custom styling.
5271
+ */
5272
+ mobileClassName?: string;
5214
5273
  /**
5215
5274
  * Represents whether the modal is open or closed.
5216
5275
  */
@@ -5794,6 +5853,7 @@ interface IMegaMenu {
5794
5853
  interface IMegaMenuLink {
5795
5854
  label: string;
5796
5855
  url: string;
5856
+ onClick?: () => void;
5797
5857
  target?: string;
5798
5858
  icon?: string | undefined;
5799
5859
  }
@@ -5828,6 +5888,7 @@ interface IMegaMenuJobs {
5828
5888
  onChangeTab?: (index: number) => void;
5829
5889
  jobAction?: IMegaMenuAction;
5830
5890
  allJobsAction?: IMegaMenuLink;
5891
+ popoverRef?: React$1.Ref<IPopoverRef$1>;
5831
5892
  }
5832
5893
  interface IMegaMenuContext {
5833
5894
  socialHeaderProps: IMegaMenuSocialHeader;
@@ -5856,4 +5917,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
5856
5917
  showContent?: boolean | undefined;
5857
5918
  }>;
5858
5919
 
5859
- export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, 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, 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, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuDrawer, IMegaMenuDrawerItem, IMegaMenuDrawerItemContent, 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, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuSideCards };
5920
+ 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, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobSuggestedDrawer, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuDrawer, IMegaMenuDrawerItem, IMegaMenuDrawerItemContent, 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, 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
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/W170/talenta.magneto365.ui.git"
6
6
  },
7
- "version": "2.59.6",
7
+ "version": "2.60.1",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",