magneto365.ui 2.63.8 → 2.64.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 (47) hide show
  1. package/dist/assets/40ead0ba61f8ecca.svg +7 -0
  2. package/dist/assets/5724480fa00284be.svg +8 -0
  3. package/dist/assets/d56b874c91887b05.svg +7 -0
  4. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  5. package/dist/cjs/index.js +804 -309
  6. package/dist/cjs/index.js.map +1 -1
  7. package/dist/cjs/types/components/UI/molecules/JobCard/JobCard.interface.d.ts +9 -0
  8. package/dist/cjs/types/components/UI/molecules/JobCard/children/JobCardOption/JobCardOption.component.d.ts +4 -0
  9. package/dist/cjs/types/components/UI/molecules/JobCard/children/JobCardOption/JobCardOption.interface.d.ts +7 -0
  10. package/dist/cjs/types/components/UI/molecules/JobCard/children/JobCardOption/index.d.ts +1 -0
  11. package/dist/cjs/types/components/UI/molecules/JobCard/children/JobCardOptionDrawer/JobCardOptionDrawer.component.d.ts +3 -0
  12. package/dist/cjs/types/components/UI/molecules/JobCard/children/JobCardOptionDrawer/JobCardOptionDrawer.interface.d.ts +19 -0
  13. package/dist/cjs/types/components/UI/molecules/JobCard/children/JobCardOptionDrawer/index.d.ts +1 -0
  14. package/dist/cjs/types/components/UI/molecules/JobCardDesktop/JobCardDesktop.interface.d.ts +5 -1
  15. package/dist/cjs/types/components/UI/molecules/VacantOption/VacantOption.component.d.ts +4 -0
  16. package/dist/cjs/types/components/UI/molecules/VacantOption/VacantOption.interface.d.ts +5 -0
  17. package/dist/cjs/types/components/UI/molecules/VacantOption/children/VacantOptionMobile/VacantOptionMobile.component.d.ts +4 -0
  18. package/dist/cjs/types/components/UI/molecules/VacantOption/children/VacantOptionMobile/VacantOptionMobile.interface.d.ts +6 -0
  19. package/dist/cjs/types/components/UI/molecules/VacantOption/children/VacantOptionMobile/index.d.ts +1 -0
  20. package/dist/cjs/types/components/UI/molecules/VacantOption/index.d.ts +1 -0
  21. package/dist/cjs/types/components/UI/page/JobsPage/JobsPage.interface.d.ts +25 -0
  22. package/dist/cjs/types/components/hooks/useWithElement/index.d.ts +2 -0
  23. package/dist/cjs/types/constants/icons.constants.d.ts +7 -4
  24. package/dist/cjs/types/constants/vacancies.constants.d.ts +18 -0
  25. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  26. package/dist/esm/index.js +804 -309
  27. package/dist/esm/index.js.map +1 -1
  28. package/dist/esm/types/components/UI/molecules/JobCard/JobCard.interface.d.ts +9 -0
  29. package/dist/esm/types/components/UI/molecules/JobCard/children/JobCardOption/JobCardOption.component.d.ts +4 -0
  30. package/dist/esm/types/components/UI/molecules/JobCard/children/JobCardOption/JobCardOption.interface.d.ts +7 -0
  31. package/dist/esm/types/components/UI/molecules/JobCard/children/JobCardOption/index.d.ts +1 -0
  32. package/dist/esm/types/components/UI/molecules/JobCard/children/JobCardOptionDrawer/JobCardOptionDrawer.component.d.ts +3 -0
  33. package/dist/esm/types/components/UI/molecules/JobCard/children/JobCardOptionDrawer/JobCardOptionDrawer.interface.d.ts +19 -0
  34. package/dist/esm/types/components/UI/molecules/JobCard/children/JobCardOptionDrawer/index.d.ts +1 -0
  35. package/dist/esm/types/components/UI/molecules/JobCardDesktop/JobCardDesktop.interface.d.ts +5 -1
  36. package/dist/esm/types/components/UI/molecules/VacantOption/VacantOption.component.d.ts +4 -0
  37. package/dist/esm/types/components/UI/molecules/VacantOption/VacantOption.interface.d.ts +5 -0
  38. package/dist/esm/types/components/UI/molecules/VacantOption/children/VacantOptionMobile/VacantOptionMobile.component.d.ts +4 -0
  39. package/dist/esm/types/components/UI/molecules/VacantOption/children/VacantOptionMobile/VacantOptionMobile.interface.d.ts +6 -0
  40. package/dist/esm/types/components/UI/molecules/VacantOption/children/VacantOptionMobile/index.d.ts +1 -0
  41. package/dist/esm/types/components/UI/molecules/VacantOption/index.d.ts +1 -0
  42. package/dist/esm/types/components/UI/page/JobsPage/JobsPage.interface.d.ts +25 -0
  43. package/dist/esm/types/components/hooks/useWithElement/index.d.ts +2 -0
  44. package/dist/esm/types/constants/icons.constants.d.ts +7 -4
  45. package/dist/esm/types/constants/vacancies.constants.d.ts +18 -0
  46. package/dist/index.d.ts +57 -2
  47. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ import { TVacantOption } from '@components/UI/page';
1
2
  export interface IJobCard {
2
3
  id: number | null;
3
4
  /**
@@ -76,4 +77,12 @@ export interface IJobCard {
76
77
  * This is the string for urgent jobs
77
78
  */
78
79
  urgent?: string;
80
+ /**
81
+ * This property display menu options in vacant card.
82
+ */
83
+ menu?: TVacantOption[];
84
+ /**
85
+ * This property show back action in mobile job card options.
86
+ */
87
+ backText?: string;
79
88
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IJobCardOption } from './JobCardOption.interface';
3
+ declare const _default: React.FC<IJobCardOption>;
4
+ export default _default;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { TVacantOption } from '@components/UI/page';
3
+ export interface IJobCardOption {
4
+ clickOut?: boolean;
5
+ setClickOut?: React.Dispatch<React.SetStateAction<boolean>>;
6
+ menu: TVacantOption[];
7
+ }
@@ -0,0 +1 @@
1
+ export { default as JobCardOption } from './JobCardOption.component';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IJobCardOptionDrawer } from './JobCardOptionDrawer.interface';
3
+ export declare const JobCardOptionDrawer: React.FC<IJobCardOptionDrawer>;
@@ -0,0 +1,19 @@
1
+ import { TVacantOption } from '@components/UI/page';
2
+ export interface IJobCardOptionDrawer {
3
+ /**
4
+ * Vacant Title.
5
+ */
6
+ title?: string | null;
7
+ /**
8
+ * Company name.
9
+ */
10
+ company?: string | null;
11
+ /**
12
+ * Auxiliar text for back action.
13
+ */
14
+ backText?: string;
15
+ /**
16
+ * Menu option to display in drawer.
17
+ */
18
+ menu: TVacantOption[];
19
+ }
@@ -0,0 +1 @@
1
+ export { JobCardOptionDrawer } from './JobCardOptionDrawer.component';
@@ -1,8 +1,12 @@
1
+ import React from 'react';
1
2
  import { IJobCard } from '../JobCard/JobCard.interface';
2
3
  export interface ICardJobDesktop extends IJobCard {
3
- workSeen?: string;
4
4
  /**
5
5
  * this property can change style in the texts when the job is open
6
6
  */
7
7
  jobOpen?: string;
8
+ /**
9
+ *
10
+ */
11
+ renderRight?: () => React.ReactNode;
8
12
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IVacantOption } from './VacantOption.interface';
3
+ declare const VacantOption: React.FC<IVacantOption>;
4
+ export default VacantOption;
@@ -0,0 +1,5 @@
1
+ import { TVacantOption } from '@components/UI/page';
2
+ export interface IVacantOption {
3
+ option: TVacantOption;
4
+ onClick?: VoidFunction;
5
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IVacantOptionMobile } from './VacantOptionMobile.interface';
3
+ declare const VacantOptionMobile: React.FC<IVacantOptionMobile>;
4
+ export default VacantOptionMobile;
@@ -0,0 +1,6 @@
1
+ import { TVacantOption } from '@components/UI/page';
2
+ export interface IVacantOptionMobile {
3
+ option: TVacantOption;
4
+ onClick?: VoidFunction;
5
+ onMenu?: (options: TVacantOption[]) => void;
6
+ }
@@ -0,0 +1 @@
1
+ export { default as VacantOptionMobile } from './VacantOptionMobile.component';
@@ -0,0 +1 @@
1
+ export { default as VacantOption } from './VacantOption.component';
@@ -89,3 +89,28 @@ export interface IDynamicUrl {
89
89
  fullUrl: string;
90
90
  fullJobsUrl: string;
91
91
  }
92
+ /**
93
+ * Different kinds of option. links for anchor tag, button for button tag and menu for dropdown component.
94
+ */
95
+ export declare type TVacantOptionType = {
96
+ type: 'link';
97
+ href: string;
98
+ } | {
99
+ type: 'menu';
100
+ children: TVacantOption[];
101
+ } | {
102
+ type: 'button';
103
+ onClick?: VoidFunction;
104
+ };
105
+ export declare type TVacantOption = {
106
+ className?: string;
107
+ /**
108
+ * Label to display in the option ui.
109
+ */
110
+ label: string;
111
+ /**
112
+ * icon to display in the option ui.
113
+ * @example values in ShareIcons constant like Facebook, X, Sms, Export or custom value as a link.
114
+ */
115
+ icon?: string;
116
+ } & TVacantOptionType;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const useWithElement: <T extends HTMLElement>(ref: React.RefObject<T>) => number | null;
@@ -26,9 +26,10 @@ export { default as BriefcaseBlueBold } from '../assets/briefcaseBlueBold.svg';
26
26
  export { default as BriefcaseWhiteOutline } from '../assets/briefcaseWhiteOutline.svg';
27
27
  export { default as BrifecaseTick } from '../assets/BrifecaseTick.svg';
28
28
  export { default as Broom } from '../assets/Broom.svg';
29
+ export { default as Building5 } from '../assets/Building5.svg';
30
+ export { default as Buildings2 } from '../assets/Buildings2.svg';
29
31
  export { default as BuildingSlashBlackOutline } from '../assets/buildingSlashDarkBlueOutline.svg';
30
32
  export { default as BuildingWhite } from '../assets/buildingWhite.svg';
31
- export { default as Buildings2 } from '../assets/Buildings2.svg';
32
33
  export { default as Calendar1 } from '../assets/Calendar1.svg';
33
34
  export { default as Checked } from '../assets/Checked.svg';
34
35
  export { default as Checked2 } from '../assets/Checked2.svg';
@@ -79,9 +80,9 @@ export { default as IsoLogoMagnetoDark } from '../assets/logoMagnetoDarkMobile.s
79
80
  export { default as Link } from '../assets/Link.svg';
80
81
  export { default as Link1 } from '../assets/Link1.svg';
81
82
  export { default as LinkDark } from '../assets/Link21.svg';
83
+ export { default as Linkedin } from '../assets/Linkedin.svg';
82
84
  export { default as LinkedInBlue } from '../assets/Linkedin2.svg';
83
85
  export { default as LinkedInDark } from '../assets/Linkedin1.svg';
84
- export { default as Linkedin } from '../assets/Linkedin.svg';
85
86
  export { default as LinkedinSolid } from '../assets/LinkedinSolid.svg';
86
87
  export { default as Location } from '../assets/Location.svg';
87
88
  export { default as Lock } from '../assets/Lock.svg';
@@ -95,9 +96,9 @@ export { default as MagicStarBlackOutline } from '../assets/magicStarBlackOutlin
95
96
  export { default as MailDark } from '../assets/Mail1.svg';
96
97
  export { default as MessageQuestion } from '../assets/MessageQuestion.svg';
97
98
  export { default as Messages2BlackOutline } from '../assets/messages2BlackOutline.svg';
98
- export { default as MinTrabajo } from '../assets/logo-SPE-2024.svg';
99
99
  export { default as MiniArrowGrayDown } from '../assets/miniArrowGrayDown.svg';
100
100
  export { default as MiniArrowGrayUp } from '../assets/miniArrowGrayUp.svg';
101
+ export { default as MinTrabajo } from '../assets/logo-SPE-2024.svg';
101
102
  export { default as Mobile } from '../assets/Mobile.svg';
102
103
  export { default as More } from '../assets/More1.svg';
103
104
  export { default as MouseCircleBlackOutline } from '../assets/mouseCircleDarkBlueOutline.svg';
@@ -110,7 +111,6 @@ export { default as ProfileAdd } from '../assets/ProfileAdd.svg';
110
111
  export { default as QuestionCircle } from '../assets/question-cirlce.svg';
111
112
  export { default as RedoDarkBlue } from '../assets/redoDarkBlue.svg';
112
113
  export { default as Refresh } from '../assets/Refresh.svg';
113
- export { default as SMSBlue } from '../assets/SMS.svg';
114
114
  export { default as SearchIcon } from '../assets/SearchNormal1Gray.svg';
115
115
  export { default as SearchNormal1 } from '../assets/SearchNormal1.svg';
116
116
  export { default as Security } from '../assets/security.svg';
@@ -119,9 +119,12 @@ export { default as Setting4 } from '../assets/Setting4.svg';
119
119
  export { default as SettingBlueBold } from '../assets/settingBlueBold.svg';
120
120
  export { default as SettingWhiteOutline } from '../assets/settingWhiteOutline.svg';
121
121
  export { default as Share } from '../assets/Share.svg';
122
+ export { default as Share2 } from '../assets/Share2.svg';
123
+ export { default as Share2Bold } from '../assets/Share2Bold.svg';
122
124
  export { default as ShareBlue } from '../assets/Share1.svg';
123
125
  export { default as ShoppingCartBlueOutline } from '../assets/shoppingCartBlueOutline.svg';
124
126
  export { default as SmallClose } from '../assets/SmallClose.svg';
127
+ export { default as SMSBlue } from '../assets/SMS.svg';
125
128
  export { default as SpinnerWhite } from '../assets/SpinnerWhite.svg';
126
129
  export { default as Success } from '../assets/success.svg';
127
130
  export { default as SuggestedJobs } from '../assets/suggested-jobs.svg';
@@ -14,4 +14,22 @@ export declare const ShareIcons: {
14
14
  Sms: {
15
15
  icon: any;
16
16
  };
17
+ Share: {
18
+ icon: any;
19
+ };
20
+ ShareBold: {
21
+ icon: any;
22
+ };
23
+ ArchiveAdd: {
24
+ icon: any;
25
+ };
26
+ ArchiveRemove: {
27
+ icon: any;
28
+ };
29
+ Export: {
30
+ icon: any;
31
+ };
32
+ Building: {
33
+ icon: any;
34
+ };
17
35
  };
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ 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 { TVacantOption as TVacantOption$1 } from '@components/UI/page';
8
9
  import { IJobsActions as IJobsActions$1 } from '@components/UI/molecules/JobActions';
9
10
  import * as _components_UI_molecules from '@components/UI/molecules';
10
11
  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, IMegaMenuSideCards as IMegaMenuSideCards$1 } from '@components/UI/molecules';
@@ -1219,6 +1220,24 @@ declare const ShareIcons: {
1219
1220
  Sms: {
1220
1221
  icon: any;
1221
1222
  };
1223
+ Share: {
1224
+ icon: any;
1225
+ };
1226
+ ShareBold: {
1227
+ icon: any;
1228
+ };
1229
+ ArchiveAdd: {
1230
+ icon: any;
1231
+ };
1232
+ ArchiveRemove: {
1233
+ icon: any;
1234
+ };
1235
+ Export: {
1236
+ icon: any;
1237
+ };
1238
+ Building: {
1239
+ icon: any;
1240
+ };
1222
1241
  };
1223
1242
 
1224
1243
  interface IShareLink {
@@ -2201,16 +2220,27 @@ interface IJobCard {
2201
2220
  * This is the string for urgent jobs
2202
2221
  */
2203
2222
  urgent?: string;
2223
+ /**
2224
+ * This property display menu options in vacant card.
2225
+ */
2226
+ menu?: TVacantOption$1[];
2227
+ /**
2228
+ * This property show back action in mobile job card options.
2229
+ */
2230
+ backText?: string;
2204
2231
  }
2205
2232
 
2206
2233
  declare const JobCard: React$1.FC<IJobCard>;
2207
2234
 
2208
2235
  interface ICardJobDesktop extends IJobCard {
2209
- workSeen?: string;
2210
2236
  /**
2211
2237
  * this property can change style in the texts when the job is open
2212
2238
  */
2213
2239
  jobOpen?: string;
2240
+ /**
2241
+ *
2242
+ */
2243
+ renderRight?: () => React$1.ReactNode;
2214
2244
  }
2215
2245
 
2216
2246
  declare const JobCardDesktop: React$1.FC<ICardJobDesktop>;
@@ -5523,6 +5553,31 @@ interface IDynamicUrl {
5523
5553
  fullUrl: string;
5524
5554
  fullJobsUrl: string;
5525
5555
  }
5556
+ /**
5557
+ * Different kinds of option. links for anchor tag, button for button tag and menu for dropdown component.
5558
+ */
5559
+ declare type TVacantOptionType = {
5560
+ type: 'link';
5561
+ href: string;
5562
+ } | {
5563
+ type: 'menu';
5564
+ children: TVacantOption[];
5565
+ } | {
5566
+ type: 'button';
5567
+ onClick?: VoidFunction;
5568
+ };
5569
+ declare type TVacantOption = {
5570
+ className?: string;
5571
+ /**
5572
+ * Label to display in the option ui.
5573
+ */
5574
+ label: string;
5575
+ /**
5576
+ * icon to display in the option ui.
5577
+ * @example values in ShareIcons constant like Facebook, X, Sms, Export or custom value as a link.
5578
+ */
5579
+ icon?: string;
5580
+ } & TVacantOptionType;
5526
5581
 
5527
5582
  declare const JobsPage: React$1.FC<IJobsPage>;
5528
5583
 
@@ -5990,4 +6045,4 @@ declare const withMegaMenuSideCards: <T>(WrappedComponent: React$1.FC<T>) => Rea
5990
6045
  showContent?: boolean | undefined;
5991
6046
  }>;
5992
6047
 
5993
- 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, CreateAccountCTA, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, DotsLoader, 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, ICanApply, 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, IHeaderAnalyst, 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, ILogoAnalyst, 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, TextCustom, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuSideCards };
6048
+ 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, CreateAccountCTA, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, DotsLoader, 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, ICanApply, 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, IHeaderAnalyst, 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, ILogoAnalyst, 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, TVacantOption, TVacantOptionType, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, TextCustom, 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.63.8",
7
+ "version": "2.64.0",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",