magneto365.ui 2.59.4 → 2.59.5

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 (38) hide show
  1. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  2. package/dist/cjs/index.js +520 -450
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/components/UI/molecules/AlertJobModal/AlertJobModal.component.d.ts +10 -0
  5. package/dist/cjs/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +105 -0
  6. package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalBody/AlertJobModalBody.component.d.ts +3 -0
  7. package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalButton/AlertJobModalButton.component.d.ts +3 -0
  8. package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalFooter/AlertJobModalFooter.component.d.ts +3 -0
  9. package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalHeader/AlertJobModalHeader.component.d.ts +3 -0
  10. package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalIcon/AlertJobModalIcon.component.d.ts +3 -0
  11. package/dist/cjs/types/components/UI/molecules/AlertJobModal/children/AlertJobModalTitle/AlertJobModalTitle.component.d.ts +3 -0
  12. package/dist/cjs/types/components/UI/molecules/AlertJobModal/index.d.ts +1 -0
  13. package/dist/cjs/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.component.d.ts +1 -0
  14. package/dist/cjs/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.interface.d.ts +18 -0
  15. package/dist/cjs/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/AlertJobStatusButton.component.d.ts +3 -0
  16. package/dist/cjs/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/index.d.ts +1 -0
  17. package/dist/cjs/types/components/UI/molecules/index.d.ts +1 -0
  18. package/dist/cjs/types/components/UI/organism/JobSuggestedDrawer/JobSuggestedDrawer.component.d.ts +1 -0
  19. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  20. package/dist/esm/index.js +520 -451
  21. package/dist/esm/index.js.map +1 -1
  22. package/dist/esm/types/components/UI/molecules/AlertJobModal/AlertJobModal.component.d.ts +10 -0
  23. package/dist/esm/types/components/UI/molecules/AlertJobModal/AlertJobModal.interface.d.ts +105 -0
  24. package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalBody/AlertJobModalBody.component.d.ts +3 -0
  25. package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalButton/AlertJobModalButton.component.d.ts +3 -0
  26. package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalFooter/AlertJobModalFooter.component.d.ts +3 -0
  27. package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalHeader/AlertJobModalHeader.component.d.ts +3 -0
  28. package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalIcon/AlertJobModalIcon.component.d.ts +3 -0
  29. package/dist/esm/types/components/UI/molecules/AlertJobModal/children/AlertJobModalTitle/AlertJobModalTitle.component.d.ts +3 -0
  30. package/dist/esm/types/components/UI/molecules/AlertJobModal/index.d.ts +1 -0
  31. package/dist/esm/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.component.d.ts +1 -0
  32. package/dist/esm/types/components/UI/molecules/AlertJobStatus/AlertJobStatus.interface.d.ts +18 -0
  33. package/dist/esm/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/AlertJobStatusButton.component.d.ts +3 -0
  34. package/dist/esm/types/components/UI/molecules/AlertJobStatus/children/AlertJobStatusButton/index.d.ts +1 -0
  35. package/dist/esm/types/components/UI/molecules/index.d.ts +1 -0
  36. package/dist/esm/types/components/UI/organism/JobSuggestedDrawer/JobSuggestedDrawer.component.d.ts +1 -0
  37. package/dist/index.d.ts +135 -1
  38. package/package.json +1 -1
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from './AlertJobModal.interface';
3
+ export declare const AlertJobModal: React.FC<IAlertJobModal> & {
4
+ Header: React.FC<IAlertJobModal.Header>;
5
+ Body: React.FC<IAlertJobModal.Body>;
6
+ Footer: React.FC<IAlertJobModal.Footer>;
7
+ Title: React.FC<IAlertJobModal.Title>;
8
+ Icon: React.FC<IAlertJobModal.Icon>;
9
+ Button: React.FC<IAlertJobModal.Button>;
10
+ };
@@ -0,0 +1,105 @@
1
+ /// <reference types="react" />
2
+ export interface IAlertJobModal {
3
+ /**
4
+ * React children to be rendered inside the component.
5
+ */
6
+ children: JSX.Element | JSX.Element[];
7
+ /**
8
+ * Additional class names for custom styling.
9
+ */
10
+ className?: string;
11
+ /**
12
+ * Represents whether the modal is open or closed.
13
+ */
14
+ open: boolean;
15
+ /**
16
+ * Callback function to be executed when the modal is closed.
17
+ */
18
+ onClose: () => void;
19
+ }
20
+ export declare namespace IAlertJobModal {
21
+ interface Header {
22
+ /**
23
+ * React children to be rendered inside the container.
24
+ */
25
+ children?: React.ReactNode;
26
+ /**
27
+ * Additional class names for custom styling.
28
+ */
29
+ className?: string;
30
+ }
31
+ interface Body {
32
+ /**
33
+ * React children to be rendered inside the container.
34
+ */
35
+ children?: React.ReactNode;
36
+ /**
37
+ * Additional class names for custom styling.
38
+ */
39
+ className?: string;
40
+ }
41
+ interface Footer {
42
+ /**
43
+ * React children to be rendered inside the container.
44
+ */
45
+ children?: React.ReactNode;
46
+ /**
47
+ * Additional class names for custom styling.
48
+ */
49
+ className?: string;
50
+ }
51
+ interface Icon {
52
+ /**
53
+ * Additional class names for custom styling.
54
+ */
55
+ className?: string;
56
+ /**
57
+ * Here is the icon component
58
+ */
59
+ src?: string | null;
60
+ /**
61
+ * You can change the size of the icon by adding a numeric value here
62
+ */
63
+ size?: number;
64
+ /**
65
+ * Text alt in the img element
66
+ */
67
+ alt?: string | null;
68
+ }
69
+ interface Title {
70
+ /**
71
+ * Set title text on modal header
72
+ */
73
+ title: string;
74
+ /**
75
+ * Set subtitle text on modal header
76
+ */
77
+ subtitle?: string | null;
78
+ /**
79
+ * React children to be rendered inside the container.
80
+ */
81
+ children?: React.ReactNode;
82
+ /**
83
+ * Additional class names for custom styling.
84
+ */
85
+ className?: string;
86
+ }
87
+ interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
88
+ /**
89
+ * React children to be rendered inside the container.
90
+ */
91
+ children?: React.ReactNode;
92
+ /**
93
+ * Additional class names for custom styling.
94
+ */
95
+ className?: string;
96
+ /**
97
+ * Here is the icon button component
98
+ */
99
+ icon?: string | null;
100
+ /**
101
+ * You can change the size of the icon by adding a numeric value here
102
+ */
103
+ sizeIcon?: number;
104
+ }
105
+ }
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from '../../AlertJobModal.interface';
3
+ export declare const AlertJobModalBody: React.FC<IAlertJobModal.Body>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from '../../AlertJobModal.interface';
3
+ export declare const AlertJobModalButton: React.FC<IAlertJobModal.Button>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from '../../AlertJobModal.interface';
3
+ export declare const AlertJobModalFooter: React.FC<IAlertJobModal.Footer>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from '../../AlertJobModal.interface';
3
+ export declare const AlertJobModalHeader: React.FC<IAlertJobModal.Header>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from '../../AlertJobModal.interface';
3
+ export declare const AlertJobModalIcon: React.FC<IAlertJobModal.Icon>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobModal } from '../../AlertJobModal.interface';
3
+ export declare const AlertJobModalTitle: React.FC<IAlertJobModal.Title>;
@@ -0,0 +1 @@
1
+ export * from './AlertJobModal.component';
@@ -3,5 +3,6 @@ import { IAlertJobStatus } from './AlertJobStatus.interface';
3
3
  export declare const AlertJobStatus: React.FC<IAlertJobStatus> & {
4
4
  Container: React.FC<IAlertJobStatus.Container>;
5
5
  Icon: React.FC<IAlertJobStatus.Icon>;
6
+ Button: React.FC<IAlertJobStatus.Button>;
6
7
  Text: React.FC<import("../../atoms/Text/Text.interface").IText>;
7
8
  };
@@ -47,6 +47,24 @@ export declare namespace IAlertJobStatus {
47
47
  */
48
48
  type?: EAlertJobStatusIcon;
49
49
  }
50
+ interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
51
+ /**
52
+ * React children to be rendered inside the container.
53
+ */
54
+ children?: React.ReactNode;
55
+ /**
56
+ * Additional class names for custom styling.
57
+ */
58
+ className?: string;
59
+ /**
60
+ * Here is the icon button component
61
+ */
62
+ icon?: string | null;
63
+ /**
64
+ * You can change the size of the icon by adding a numeric value here
65
+ */
66
+ sizeIcon?: number;
67
+ }
50
68
  }
51
69
  export declare type EAlertJobStatusType = 'warning' | 'normal';
52
70
  export declare type EAlertJobStatusIcon = 'success' | 'warning';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IAlertJobStatus } from '../../AlertJobStatus.interface';
3
+ export declare const AlertJobStatusButton: React.FC<IAlertJobStatus.Button>;
@@ -0,0 +1 @@
1
+ export * from './AlertJobStatusButton.component';
@@ -74,3 +74,4 @@ export * from './SimilarCard';
74
74
  export * from './MegaMenuDrawerItem';
75
75
  export * from './MegaMenuEmpty';
76
76
  export * from './Notification';
77
+ export * from './AlertJobModal';
@@ -5,6 +5,7 @@ export declare const JobSuggestedDrawer: React.FC<IJobSuggestedDrawer> & {
5
5
  Alert: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus> & {
6
6
  Container: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus.Container>;
7
7
  Icon: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus.Icon>;
8
+ Button: React.FC<import("@components/UI/molecules/AlertJobStatus").IAlertJobStatus.Button>;
8
9
  Text: React.FC<import("../../atoms/Text/Text.interface").IText>;
9
10
  };
10
11
  SimilarJobs: React.FC<IJobSuggestedDrawer.SimilarJobCards>;
package/dist/index.d.ts CHANGED
@@ -3494,6 +3494,24 @@ declare namespace IAlertJobStatus {
3494
3494
  */
3495
3495
  type?: EAlertJobStatusIcon;
3496
3496
  }
3497
+ interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
3498
+ /**
3499
+ * React children to be rendered inside the container.
3500
+ */
3501
+ children?: React.ReactNode;
3502
+ /**
3503
+ * Additional class names for custom styling.
3504
+ */
3505
+ className?: string;
3506
+ /**
3507
+ * Here is the icon button component
3508
+ */
3509
+ icon?: string | null;
3510
+ /**
3511
+ * You can change the size of the icon by adding a numeric value here
3512
+ */
3513
+ sizeIcon?: number;
3514
+ }
3497
3515
  }
3498
3516
  declare type EAlertJobStatusType = 'warning' | 'normal';
3499
3517
  declare type EAlertJobStatusIcon = 'success' | 'warning';
@@ -4728,6 +4746,7 @@ declare const JobSuggestedDrawer: React$1.FC<IJobSuggestedDrawer> & {
4728
4746
  Alert: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus> & {
4729
4747
  Container: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Container>;
4730
4748
  Icon: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Icon>;
4749
+ Button: React$1.FC<_components_UI_molecules_AlertJobStatus.IAlertJobStatus.Button>;
4731
4750
  Text: React$1.FC<IText>;
4732
4751
  };
4733
4752
  SimilarJobs: React$1.FC<IJobSuggestedDrawer.SimilarJobCards>;
@@ -4951,6 +4970,7 @@ declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
4951
4970
  declare const AlertJobStatus: React$1.FC<IAlertJobStatus> & {
4952
4971
  Container: React$1.FC<IAlertJobStatus.Container>;
4953
4972
  Icon: React$1.FC<IAlertJobStatus.Icon>;
4973
+ Button: React$1.FC<IAlertJobStatus.Button>;
4954
4974
  Text: React$1.FC<IText>;
4955
4975
  };
4956
4976
 
@@ -5182,6 +5202,120 @@ interface INotification {
5182
5202
 
5183
5203
  declare const Notification: React$1.FC<INotification>;
5184
5204
 
5205
+ interface IAlertJobModal {
5206
+ /**
5207
+ * React children to be rendered inside the component.
5208
+ */
5209
+ children: JSX.Element | JSX.Element[];
5210
+ /**
5211
+ * Additional class names for custom styling.
5212
+ */
5213
+ className?: string;
5214
+ /**
5215
+ * Represents whether the modal is open or closed.
5216
+ */
5217
+ open: boolean;
5218
+ /**
5219
+ * Callback function to be executed when the modal is closed.
5220
+ */
5221
+ onClose: () => void;
5222
+ }
5223
+ declare namespace IAlertJobModal {
5224
+ interface Header {
5225
+ /**
5226
+ * React children to be rendered inside the container.
5227
+ */
5228
+ children?: React.ReactNode;
5229
+ /**
5230
+ * Additional class names for custom styling.
5231
+ */
5232
+ className?: string;
5233
+ }
5234
+ interface Body {
5235
+ /**
5236
+ * React children to be rendered inside the container.
5237
+ */
5238
+ children?: React.ReactNode;
5239
+ /**
5240
+ * Additional class names for custom styling.
5241
+ */
5242
+ className?: string;
5243
+ }
5244
+ interface Footer {
5245
+ /**
5246
+ * React children to be rendered inside the container.
5247
+ */
5248
+ children?: React.ReactNode;
5249
+ /**
5250
+ * Additional class names for custom styling.
5251
+ */
5252
+ className?: string;
5253
+ }
5254
+ interface Icon {
5255
+ /**
5256
+ * Additional class names for custom styling.
5257
+ */
5258
+ className?: string;
5259
+ /**
5260
+ * Here is the icon component
5261
+ */
5262
+ src?: string | null;
5263
+ /**
5264
+ * You can change the size of the icon by adding a numeric value here
5265
+ */
5266
+ size?: number;
5267
+ /**
5268
+ * Text alt in the img element
5269
+ */
5270
+ alt?: string | null;
5271
+ }
5272
+ interface Title {
5273
+ /**
5274
+ * Set title text on modal header
5275
+ */
5276
+ title: string;
5277
+ /**
5278
+ * Set subtitle text on modal header
5279
+ */
5280
+ subtitle?: string | null;
5281
+ /**
5282
+ * React children to be rendered inside the container.
5283
+ */
5284
+ children?: React.ReactNode;
5285
+ /**
5286
+ * Additional class names for custom styling.
5287
+ */
5288
+ className?: string;
5289
+ }
5290
+ interface Button extends React.ButtonHTMLAttributes<HTMLButtonElement> {
5291
+ /**
5292
+ * React children to be rendered inside the container.
5293
+ */
5294
+ children?: React.ReactNode;
5295
+ /**
5296
+ * Additional class names for custom styling.
5297
+ */
5298
+ className?: string;
5299
+ /**
5300
+ * Here is the icon button component
5301
+ */
5302
+ icon?: string | null;
5303
+ /**
5304
+ * You can change the size of the icon by adding a numeric value here
5305
+ */
5306
+ sizeIcon?: number;
5307
+ }
5308
+ }
5309
+
5310
+ declare const AlertJobModal: React$1.FC<IAlertJobModal> & {
5311
+ Header: React$1.FC<IAlertJobModal.Header>;
5312
+ Body: React$1.FC<IAlertJobModal.Body>;
5313
+ Footer: React$1.FC<IAlertJobModal.Footer>;
5314
+ Title: React$1.FC<IAlertJobModal.Title>;
5315
+ Icon: React$1.FC<IAlertJobModal.Icon>;
5316
+ Button: React$1.FC<IAlertJobModal.Button>;
5317
+ };
5318
+
5185
5319
  interface IJobsPage {
5186
5320
  /**
5187
5321
  * Props for the filter bottom header section.
@@ -5722,4 +5856,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
5722
5856
  showContent?: boolean | undefined;
5723
5857
  }>;
5724
5858
 
5725
- 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, 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 };
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 };
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.4",
7
+ "version": "2.59.5",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",