magneto365.ui 2.57.4 → 2.58.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 (29) hide show
  1. package/dist/assets/4cf4b85aba741f29.svg +11 -0
  2. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  3. package/dist/cjs/index.js +53 -41
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/cjs/types/components/UI/atoms/Text/Text.interface.d.ts +2 -1
  6. package/dist/cjs/types/components/UI/molecules/Actions/Actions.interface.d.ts +4 -0
  7. package/dist/cjs/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.interface.d.ts +11 -0
  8. package/dist/cjs/types/components/UI/molecules/JobActions/JobActions.interface.d.ts +5 -0
  9. package/dist/cjs/types/components/UI/molecules/JobApplyCard/JobApplyCard.interface.d.ts +4 -0
  10. package/dist/cjs/types/components/UI/molecules/JobCompanyHeader/JobCompanyHeader.interface.d.ts +6 -0
  11. package/dist/cjs/types/components/UI/organism/JobDetailsDrawer/JobDetailsDrawer.interface.d.ts +10 -1
  12. package/dist/cjs/types/components/UI/organism/MobileJobDetailsActionsBar/MobileJobDetailsActionsBar.interface.d.ts +4 -0
  13. package/dist/cjs/types/components/UI/organism/MobileJobDetailsDrawer/MobileJobDetailsDrawer.interface.d.ts +10 -2
  14. package/dist/cjs/types/constants/icons.constants.d.ts +1 -0
  15. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  16. package/dist/esm/index.js +53 -41
  17. package/dist/esm/index.js.map +1 -1
  18. package/dist/esm/types/components/UI/atoms/Text/Text.interface.d.ts +2 -1
  19. package/dist/esm/types/components/UI/molecules/Actions/Actions.interface.d.ts +4 -0
  20. package/dist/esm/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.interface.d.ts +11 -0
  21. package/dist/esm/types/components/UI/molecules/JobActions/JobActions.interface.d.ts +5 -0
  22. package/dist/esm/types/components/UI/molecules/JobApplyCard/JobApplyCard.interface.d.ts +4 -0
  23. package/dist/esm/types/components/UI/molecules/JobCompanyHeader/JobCompanyHeader.interface.d.ts +6 -0
  24. package/dist/esm/types/components/UI/organism/JobDetailsDrawer/JobDetailsDrawer.interface.d.ts +10 -1
  25. package/dist/esm/types/components/UI/organism/MobileJobDetailsActionsBar/MobileJobDetailsActionsBar.interface.d.ts +4 -0
  26. package/dist/esm/types/components/UI/organism/MobileJobDetailsDrawer/MobileJobDetailsDrawer.interface.d.ts +10 -2
  27. package/dist/esm/types/constants/icons.constants.d.ts +1 -0
  28. package/dist/index.d.ts +96 -47
  29. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface IText {
2
3
  /**
3
4
  * This is the main text
@@ -16,7 +17,7 @@ export interface ICustomText {
16
17
  /**
17
18
  * This is the value to the custom text
18
19
  * */
19
- value: string;
20
+ value: string | React.ReactNode;
20
21
  /**
21
22
  * This is the custom font weight to text
22
23
  * */
@@ -52,6 +52,10 @@ export interface IActions {
52
52
  * just a text to inform about back action.
53
53
  */
54
54
  backText?: string;
55
+ /**
56
+ * Props for show apply button
57
+ */
58
+ isApplied?: boolean;
55
59
  }
56
60
  export interface IShareLinksActions {
57
61
  onBack: () => void;
@@ -8,6 +8,11 @@ export interface IAlertJobStatus {
8
8
  * Additional class names for custom styling.
9
9
  */
10
10
  className?: string;
11
+ /**
12
+ * type to background alert 'warning' or 'normal'.
13
+ * default: warning
14
+ */
15
+ type?: EAlertJobStatusType;
11
16
  }
12
17
  export declare namespace IAlertJobStatus {
13
18
  interface Container {
@@ -37,5 +42,11 @@ export declare namespace IAlertJobStatus {
37
42
  * Text alt in the img element
38
43
  */
39
44
  alt?: string | null;
45
+ /**
46
+ * type to icon alert 'warning' or 'success'.
47
+ */
48
+ type?: EAlertJobStatusIcon;
40
49
  }
41
50
  }
51
+ export declare type EAlertJobStatusType = 'warning' | 'normal';
52
+ export declare type EAlertJobStatusIcon = 'success' | 'warning';
@@ -27,4 +27,9 @@ export interface IJobsActions {
27
27
  * Props for the share button component.
28
28
  */
29
29
  shareButtonProps: ISharePopover;
30
+ /**
31
+ * Props for render save button.
32
+ * it's true it will not display save button
33
+ */
34
+ isApplied?: boolean;
30
35
  }
@@ -23,4 +23,8 @@ export interface IJobApplyCard {
23
23
  * Content to be displayed as an external child element.
24
24
  */
25
25
  externalChild: ReactNode | JSX.Element;
26
+ /**
27
+ * Props for show apply button
28
+ */
29
+ isApplied?: boolean;
26
30
  }
@@ -1,4 +1,5 @@
1
1
  import { IJobCompanyLogo, IJobHeader } from '@components/UI/atoms';
2
+ import { IJobsActions } from '@components/UI/molecules/JobActions';
2
3
  export interface IJobCompanyHeader {
3
4
  /**
4
5
  * Props for the company logo in the job company header.
@@ -8,4 +9,9 @@ export interface IJobCompanyHeader {
8
9
  * Props for the header of the job listing in the job company header.
9
10
  */
10
11
  jobHeaderProps: IJobHeader;
12
+ isApplied?: boolean;
13
+ /**
14
+ * Props for the actions section associated with the job details.
15
+ */
16
+ jobActionsProps?: IJobsActions;
11
17
  }
@@ -1,3 +1,4 @@
1
+ import { IAlertJobStatus } from './../../molecules/AlertJobStatus/AlertJobStatus.interface';
1
2
  import { IJobSkillsCard } from '../../molecules/JobSkillsCard';
2
3
  import { IJobApplyCard } from '../../molecules/JobApplyCard';
3
4
  import { IJobFooterCard } from '../../molecules/JobFooterCard';
@@ -77,5 +78,13 @@ export interface IJobDetailsDrawer {
77
78
  /**
78
79
  * Props for the fraud card job.
79
80
  */
80
- fraudCardJobProps: IFraudCardJob;
81
+ fraudCardJobProps?: IFraudCardJob;
82
+ /**
83
+ * Props for show actions buttons or alert
84
+ */
85
+ isApplied?: boolean;
86
+ /**
87
+ * Props for show alert when apply
88
+ */
89
+ alertJobStatusProps?: IAlertJobStatus;
81
90
  }
@@ -14,4 +14,8 @@ export interface IMobileJobDetailsActionsBar {
14
14
  *
15
15
  */
16
16
  onClose?: boolean;
17
+ /**
18
+ * Props for show button apply
19
+ */
20
+ isApplied?: boolean;
17
21
  }
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { IJobApplyCard, IJobCompanyHeader, IJobDetailCard, IJobFooterCard, IJobSkillsCard, ICityDetail } from '@components/UI/molecules';
2
+ import { IJobApplyCard, IJobCompanyHeader, IJobDetailCard, IJobFooterCard, IJobSkillsCard, ICityDetail, IAlertJobStatus } from '@components/UI/molecules';
3
3
  import { IMobileJobDetailsActionsBar } from '../MobileJobDetailsActionsBar';
4
4
  import { IJobVideo } from '@components/UI/molecules/JobVideo';
5
5
  import { ISimilarJobs } from '../SimilarJobs/SimilarJobs.interface';
@@ -87,5 +87,13 @@ export interface IMobileJobDetailsDrawer {
87
87
  /**
88
88
  * Props for the fraud card job.
89
89
  */
90
- fraudCardJobProps: IFraudCardJob;
90
+ fraudCardJobProps?: IFraudCardJob;
91
+ /**
92
+ * Props for show actions buttons or alert
93
+ */
94
+ isApplied?: boolean;
95
+ /**
96
+ * Props for show alert when apply
97
+ */
98
+ alertJobStatusProps?: IAlertJobStatus;
91
99
  }
@@ -31,6 +31,7 @@ export { default as BuildingSlashBlackOutline } from '../assets/buildingSlashDar
31
31
  export { default as BuildingWhite } from '../assets/buildingWhite.svg';
32
32
  export { default as Calendar1 } from '../assets/Calendar1.svg';
33
33
  export { default as Checked } from '../assets/Checked.svg';
34
+ export { default as Checked2 } from '../assets/Checked2.svg';
34
35
  export { default as ClipboardClose } from '../assets/ClipboardClose.svg';
35
36
  export { default as Clock } from '../assets/Clock.svg';
36
37
  export { default as ClockLine } from '../assets/clock-line.svg';
package/dist/index.d.ts CHANGED
@@ -5,15 +5,15 @@ import { IconProps as IconProps$2 } from '@components/UI/atoms/Icon';
5
5
  import { ISaveButton as ISaveButton$1 } from '@components/UI/atoms/SaveButton';
6
6
  import { ICustomText as ICustomText$1 } from '@components/UI/atoms/Text/Text.interface';
7
7
  import { IFilterValue as IFilterValue$1, ISetIsApplied as ISetIsApplied$1, IFilter as IFilter$1, ISearchRenderTypeProps as ISearchRenderTypeProps$1 } from '@components/UI/template/SideFilter';
8
+ import { IJobsActions as IJobsActions$1 } from '@components/UI/molecules/JobActions';
8
9
  import * as _components_UI_molecules from '@components/UI/molecules';
9
- import { IMegaMenuCard as IMegaMenuCard$1, IFiltersRef as IFiltersRef$1, IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IJobCompanyHeader as IJobCompanyHeader$2, IJobDetailCard as IJobDetailCard$1, IJobSkillsCard as IJobSkillsCard$1, IJobApplyCard as IJobApplyCard$1, IJobFooterCard as IJobFooterCard$1, ICityDetail as ICityDetail$1, TimelineEventStatus as TimelineEventStatus$1, IUserMenuAnalystProps as IUserMenuAnalystProps$1, IFrequentSearch as IFrequentSearch$1, IPaginationProps as IPaginationProps$1, IEmptyResults as IEmptyResults$2, IJobCard as IJobCard$2, ISearchbar as ISearchbar$1 } from '@components/UI/molecules';
10
+ import { IMegaMenuCard as IMegaMenuCard$1, IFiltersRef as IFiltersRef$1, IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IJobCompanyHeader as IJobCompanyHeader$2, IJobDetailCard as IJobDetailCard$1, IJobSkillsCard as IJobSkillsCard$1, IJobApplyCard as IJobApplyCard$1, IJobFooterCard as IJobFooterCard$1, ICityDetail as ICityDetail$1, IAlertJobStatus as IAlertJobStatus$1, TimelineEventStatus as TimelineEventStatus$1, IUserMenuAnalystProps as IUserMenuAnalystProps$1, IFrequentSearch as IFrequentSearch$1, IPaginationProps as IPaginationProps$1, IEmptyResults as IEmptyResults$2, IJobCard as IJobCard$2, ISearchbar as ISearchbar$1 } from '@components/UI/molecules';
10
11
  import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
11
12
  import { IToggleButton as IToggleButton$1, IToggleButtonOnchangeValues as IToggleButtonOnchangeValues$1 } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
12
13
  import * as _components_UI_organism from '@components/UI/organism';
13
14
  import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1, IHeaderAnalystProps as IHeaderAnalystProps$1, IModalAnalyst as IModalAnalyst$1, INavMenuAnalystRegion as INavMenuAnalystRegion$1 } from '@components/UI/organism';
14
15
  import { IListMenuText as IListMenuText$1 } from '@components/UI/molecules/ListMenuText/ListMenuText.interface';
15
16
  import { IJobCompanyHeader as IJobCompanyHeader$1 } from '@components/UI/molecules/JobCompanyHeader';
16
- import { IJobsActions as IJobsActions$1 } from '@components/UI/molecules/JobActions';
17
17
  import { ISimilarJobsCard as ISimilarJobsCard$1 } from '@components/UI/molecules/SimilarJobsCard/SimilarJobsCard.interface';
18
18
  import { IJobVideo as IJobVideo$1 } from '@components/UI/molecules/JobVideo';
19
19
  import { IMobileDatePicker as IMobileDatePicker$2 } from '@components/UI/organism/MobileDatePicker/MobileDatePicker.interface';
@@ -1207,6 +1207,10 @@ interface IActions {
1207
1207
  * just a text to inform about back action.
1208
1208
  */
1209
1209
  backText?: string;
1210
+ /**
1211
+ * Props for show apply button
1212
+ */
1213
+ isApplied?: boolean;
1210
1214
  }
1211
1215
  interface IShareLinksActions {
1212
1216
  onBack: () => void;
@@ -1951,6 +1955,11 @@ interface IJobsActions {
1951
1955
  * Props for the share button component.
1952
1956
  */
1953
1957
  shareButtonProps: ISharePopover;
1958
+ /**
1959
+ * Props for render save button.
1960
+ * it's true it will not display save button
1961
+ */
1962
+ isApplied?: boolean;
1954
1963
  }
1955
1964
 
1956
1965
  /**
@@ -1982,6 +1991,10 @@ interface IJobApplyCard {
1982
1991
  * Content to be displayed as an external child element.
1983
1992
  */
1984
1993
  externalChild: ReactNode | JSX.Element;
1994
+ /**
1995
+ * Props for show apply button
1996
+ */
1997
+ isApplied?: boolean;
1985
1998
  }
1986
1999
 
1987
2000
  /**
@@ -2100,6 +2113,11 @@ interface IJobCompanyHeader {
2100
2113
  * Props for the header of the job listing in the job company header.
2101
2114
  */
2102
2115
  jobHeaderProps: IJobHeader$1;
2116
+ isApplied?: boolean;
2117
+ /**
2118
+ * Props for the actions section associated with the job details.
2119
+ */
2120
+ jobActionsProps?: IJobsActions$1;
2103
2121
  }
2104
2122
 
2105
2123
  /**
@@ -3357,6 +3375,58 @@ interface ILogoAnalystProps extends ILogoComponent$1 {
3357
3375
  */
3358
3376
  declare const HeaderAnalyst: React$1.FC<IHeaderAnalystProps>;
3359
3377
 
3378
+ interface IAlertJobStatus {
3379
+ /**
3380
+ * React children to be rendered inside the component.
3381
+ */
3382
+ children?: React.ReactNode;
3383
+ /**
3384
+ * Additional class names for custom styling.
3385
+ */
3386
+ className?: string;
3387
+ /**
3388
+ * type to background alert 'warning' or 'normal'.
3389
+ * default: warning
3390
+ */
3391
+ type?: EAlertJobStatusType;
3392
+ }
3393
+ declare namespace IAlertJobStatus {
3394
+ interface Container {
3395
+ /**
3396
+ * React children to be rendered inside the container.
3397
+ */
3398
+ children?: React.ReactNode;
3399
+ /**
3400
+ * Additional class names for custom styling.
3401
+ */
3402
+ className?: string;
3403
+ }
3404
+ interface Icon {
3405
+ /**
3406
+ * Additional class names for custom styling.
3407
+ */
3408
+ className?: string;
3409
+ /**
3410
+ * Here is the icon component
3411
+ */
3412
+ src?: string | null;
3413
+ /**
3414
+ * You can change the size of the icon by adding a numeric value here
3415
+ */
3416
+ size?: number;
3417
+ /**
3418
+ * Text alt in the img element
3419
+ */
3420
+ alt?: string | null;
3421
+ /**
3422
+ * type to icon alert 'warning' or 'success'.
3423
+ */
3424
+ type?: EAlertJobStatusIcon;
3425
+ }
3426
+ }
3427
+ declare type EAlertJobStatusType = 'warning' | 'normal';
3428
+ declare type EAlertJobStatusIcon = 'success' | 'warning';
3429
+
3360
3430
  interface ISimilarJobs {
3361
3431
  /**
3362
3432
  * this is the title in the top
@@ -3448,7 +3518,15 @@ interface IJobDetailsDrawer {
3448
3518
  /**
3449
3519
  * Props for the fraud card job.
3450
3520
  */
3451
- fraudCardJobProps: IFraudCardJob;
3521
+ fraudCardJobProps?: IFraudCardJob;
3522
+ /**
3523
+ * Props for show actions buttons or alert
3524
+ */
3525
+ isApplied?: boolean;
3526
+ /**
3527
+ * Props for show alert when apply
3528
+ */
3529
+ alertJobStatusProps?: IAlertJobStatus;
3452
3530
  }
3453
3531
 
3454
3532
  /**
@@ -3609,6 +3687,10 @@ interface IMobileJobDetailsActionsBar {
3609
3687
  *
3610
3688
  */
3611
3689
  onClose?: boolean;
3690
+ /**
3691
+ * Props for show button apply
3692
+ */
3693
+ isApplied?: boolean;
3612
3694
  }
3613
3695
 
3614
3696
  interface SwipeProps {
@@ -3705,7 +3787,15 @@ interface IMobileJobDetailsDrawer {
3705
3787
  /**
3706
3788
  * Props for the fraud card job.
3707
3789
  */
3708
- fraudCardJobProps: IFraudCardJob;
3790
+ fraudCardJobProps?: IFraudCardJob;
3791
+ /**
3792
+ * Props for show actions buttons or alert
3793
+ */
3794
+ isApplied?: boolean;
3795
+ /**
3796
+ * Props for show alert when apply
3797
+ */
3798
+ alertJobStatusProps?: IAlertJobStatus$1;
3709
3799
  }
3710
3800
 
3711
3801
  /**
@@ -4548,7 +4638,7 @@ interface ICustomText {
4548
4638
  /**
4549
4639
  * This is the value to the custom text
4550
4640
  * */
4551
- value: string;
4641
+ value: string | React.ReactNode;
4552
4642
  /**
4553
4643
  * This is the custom font weight to text
4554
4644
  * */
@@ -4785,47 +4875,6 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
4785
4875
  */
4786
4876
  declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
4787
4877
 
4788
- interface IAlertJobStatus {
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
- declare namespace IAlertJobStatus {
4799
- interface Container {
4800
- /**
4801
- * React children to be rendered inside the container.
4802
- */
4803
- children?: React.ReactNode;
4804
- /**
4805
- * Additional class names for custom styling.
4806
- */
4807
- className?: string;
4808
- }
4809
- interface Icon {
4810
- /**
4811
- * Additional class names for custom styling.
4812
- */
4813
- className?: string;
4814
- /**
4815
- * Here is the icon component
4816
- */
4817
- src?: string | null;
4818
- /**
4819
- * You can change the size of the icon by adding a numeric value here
4820
- */
4821
- size?: number;
4822
- /**
4823
- * Text alt in the img element
4824
- */
4825
- alt?: string | null;
4826
- }
4827
- }
4828
-
4829
4878
  declare const AlertJobStatus: React$1.FC<IAlertJobStatus> & {
4830
4879
  Container: React$1.FC<IAlertJobStatus.Container>;
4831
4880
  Icon: React$1.FC<IAlertJobStatus.Icon>;
@@ -5545,4 +5594,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
5545
5594
  wrapperProps: T;
5546
5595
  }>;
5547
5596
 
5548
- 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, IMegaMenuDrawer, IMegaMenuDrawerItem, IMegaMenuDrawerItemContent, 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, MegaMenuDrawer, MegaMenuDrawerItem, 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 };
5597
+ 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, 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, 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, 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, MegaMenuDrawer, MegaMenuDrawerItem, 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
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/W170/talenta.magneto365.ui.git"
6
6
  },
7
- "version": "2.57.4",
7
+ "version": "2.58.1",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",