magneto365.ui 2.59.6 → 2.61.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.
Files changed (36) hide show
  1. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  2. package/dist/cjs/index.js +1037 -1003
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/components/UI/atoms/ComparativeCounter/ComparativeCounter.interface.d.ts +5 -0
  5. package/dist/cjs/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +4 -0
  6. package/dist/cjs/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +2 -2
  7. package/dist/cjs/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.component.d.ts +2 -1
  8. package/dist/cjs/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface.d.ts +8 -0
  9. package/dist/cjs/types/components/UI/organism/AlertsPanel/AlertsPanel.component.d.ts +6 -0
  10. package/dist/cjs/types/components/UI/organism/AlertsPanel/AlertsPanel.interface.d.ts +41 -0
  11. package/dist/cjs/types/components/UI/organism/AlertsPanel/children/AlertsPanelItem/AlertsPanelItem.component.d.ts +3 -0
  12. package/dist/cjs/types/components/UI/organism/AlertsPanel/children/AlertsPanelList/AlertsPanelList.component.d.ts +3 -0
  13. package/dist/cjs/types/components/UI/organism/AlertsPanel/index.d.ts +2 -0
  14. package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
  15. package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +4 -1
  16. package/dist/cjs/types/constants/stories/alertsPanel.constants.d.ts +4 -0
  17. package/dist/cjs/types/constants/stories/index.d.ts +1 -0
  18. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  19. package/dist/esm/index.js +1037 -1004
  20. package/dist/esm/index.js.map +1 -1
  21. package/dist/esm/types/components/UI/atoms/ComparativeCounter/ComparativeCounter.interface.d.ts +5 -0
  22. package/dist/esm/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +4 -0
  23. package/dist/esm/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +2 -2
  24. package/dist/esm/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.component.d.ts +2 -1
  25. package/dist/esm/types/components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface.d.ts +8 -0
  26. package/dist/esm/types/components/UI/organism/AlertsPanel/AlertsPanel.component.d.ts +6 -0
  27. package/dist/esm/types/components/UI/organism/AlertsPanel/AlertsPanel.interface.d.ts +41 -0
  28. package/dist/esm/types/components/UI/organism/AlertsPanel/children/AlertsPanelItem/AlertsPanelItem.component.d.ts +3 -0
  29. package/dist/esm/types/components/UI/organism/AlertsPanel/children/AlertsPanelList/AlertsPanelList.component.d.ts +3 -0
  30. package/dist/esm/types/components/UI/organism/AlertsPanel/index.d.ts +2 -0
  31. package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
  32. package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +4 -1
  33. package/dist/esm/types/constants/stories/alertsPanel.constants.d.ts +4 -0
  34. package/dist/esm/types/constants/stories/index.d.ts +1 -0
  35. package/dist/index.d.ts +70 -4
  36. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ export declare type TComparativeCounterPosition = 'left' | 'center' | 'right';
1
2
  export interface IComparativeCounter {
2
3
  /**
3
4
  * this property sets the current counter value
@@ -7,4 +8,8 @@ export interface IComparativeCounter {
7
8
  * this property sets the max counter value
8
9
  */
9
10
  max: number;
11
+ /**
12
+ * this property changes the text align
13
+ */
14
+ position?: TComparativeCounterPosition;
10
15
  }
@@ -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;
@@ -226,6 +227,7 @@ interface IButtonLink {
226
227
  */
227
228
  declare const ButtonLink: React$1.FC<IButtonLink>;
228
229
 
230
+ declare type TComparativeCounterPosition = 'left' | 'center' | 'right';
229
231
  interface IComparativeCounter {
230
232
  /**
231
233
  * this property sets the current counter value
@@ -235,6 +237,10 @@ interface IComparativeCounter {
235
237
  * this property sets the max counter value
236
238
  */
237
239
  max: number;
240
+ /**
241
+ * this property changes the text align
242
+ */
243
+ position?: TComparativeCounterPosition;
238
244
  }
239
245
 
240
246
  declare const ComparativeCounter: React$1.FC<IComparativeCounter>;
@@ -2420,8 +2426,8 @@ interface IListMenuIcons {
2420
2426
  logout: ILogout;
2421
2427
  settings: ISettings;
2422
2428
  haveGif?: boolean;
2423
- profileImage: IAvatar$1;
2424
- isAuthenticated: boolean;
2429
+ profileImage?: IAvatar$1;
2430
+ isAuthenticated?: boolean;
2425
2431
  }
2426
2432
  interface IMenuItems {
2427
2433
  title?: string;
@@ -2571,7 +2577,15 @@ declare const MegaMenuCard: React$1.FC<IMegaMenuCard>;
2571
2577
 
2572
2578
  declare const MegaMenuJobsTabs: React$1.FC;
2573
2579
 
2574
- declare const MegaMenuPopover: React$1.FC;
2580
+ interface IMegaMenuPopover {
2581
+ children: ReactNode;
2582
+ popoverRef?: React.Ref<IPopoverRef>;
2583
+ }
2584
+ interface IPopoverRef {
2585
+ setShow: (show: boolean) => void;
2586
+ }
2587
+
2588
+ declare const MegaMenuPopover: React$1.FC<IMegaMenuPopover>;
2575
2589
 
2576
2590
  interface IMegaMenuSideCards {
2577
2591
  /**
@@ -4756,6 +4770,52 @@ declare const JobSuggestedHeader: React$1.FC<IJobSuggestedDrawer.Header>;
4756
4770
 
4757
4771
  declare const JobSuggestedSimilarJobs: React$1.FC<IJobSuggestedDrawer.SimilarJobCards>;
4758
4772
 
4773
+ interface IAlertsPanel {
4774
+ /**
4775
+ * This is the title on the top
4776
+ */
4777
+ title: string;
4778
+ /**
4779
+ * React children to be rendered inside the component.
4780
+ */
4781
+ children?: React.ReactNode;
4782
+ /**
4783
+ * Additional class names for custom styling.
4784
+ */
4785
+ className?: string;
4786
+ }
4787
+ declare namespace IAlertsPanel {
4788
+ interface List {
4789
+ /**
4790
+ * React children to be rendered inside the component.
4791
+ */
4792
+ children?: React.ReactNode;
4793
+ /**
4794
+ * Additional class names for custom styling.
4795
+ */
4796
+ className?: string;
4797
+ }
4798
+ interface Item {
4799
+ /**
4800
+ * Additional class names for custom styling.
4801
+ */
4802
+ className?: string;
4803
+ /**
4804
+ * This is the custom text
4805
+ */
4806
+ text: string;
4807
+ /**
4808
+ * React children to be rendered inside the component.
4809
+ */
4810
+ onDelete: () => void;
4811
+ }
4812
+ }
4813
+
4814
+ declare const AlertsPanel: React$1.FC<IAlertsPanel> & {
4815
+ List: React$1.FC<IAlertsPanel.List>;
4816
+ Item: React$1.FC<IAlertsPanel.Item>;
4817
+ };
4818
+
4759
4819
  interface IMenuUser {
4760
4820
  /**
4761
4821
  * menu items props
@@ -5211,6 +5271,10 @@ interface IAlertJobModal {
5211
5271
  * Additional class names for custom styling.
5212
5272
  */
5213
5273
  className?: string;
5274
+ /**
5275
+ * Additional class names for custom styling.
5276
+ */
5277
+ mobileClassName?: string;
5214
5278
  /**
5215
5279
  * Represents whether the modal is open or closed.
5216
5280
  */
@@ -5794,6 +5858,7 @@ interface IMegaMenu {
5794
5858
  interface IMegaMenuLink {
5795
5859
  label: string;
5796
5860
  url: string;
5861
+ onClick?: () => void;
5797
5862
  target?: string;
5798
5863
  icon?: string | undefined;
5799
5864
  }
@@ -5828,6 +5893,7 @@ interface IMegaMenuJobs {
5828
5893
  onChangeTab?: (index: number) => void;
5829
5894
  jobAction?: IMegaMenuAction;
5830
5895
  allJobsAction?: IMegaMenuLink;
5896
+ popoverRef?: React$1.Ref<IPopoverRef$1>;
5831
5897
  }
5832
5898
  interface IMegaMenuContext {
5833
5899
  socialHeaderProps: IMegaMenuSocialHeader;
@@ -5856,4 +5922,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
5856
5922
  showContent?: boolean | undefined;
5857
5923
  }>;
5858
5924
 
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 };
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, 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.61.0",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",