magneto365.ui 2.52.1 → 2.54.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 (32) hide show
  1. package/dist/assets/58346511fd62e29a.svg +5 -0
  2. package/dist/assets/8a37a9c7b0fd5027.svg +9 -0
  3. package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
  4. package/dist/cjs/index.js +446 -409
  5. package/dist/cjs/index.js.map +1 -1
  6. package/dist/cjs/types/components/UI/atoms/Badge/Badge.component.d.ts +3 -0
  7. package/dist/cjs/types/components/UI/atoms/Badge/Badge.interface.d.ts +10 -0
  8. package/dist/cjs/types/components/UI/atoms/Badge/index.d.ts +1 -0
  9. package/dist/cjs/types/components/UI/atoms/HeaderTab/HeaderTab.interface.d.ts +7 -0
  10. package/dist/cjs/types/components/UI/atoms/index.d.ts +1 -0
  11. package/dist/cjs/types/components/UI/molecules/FraudCardJob/FraudCardJob.component.d.ts +3 -0
  12. package/dist/cjs/types/components/UI/molecules/FraudCardJob/index.d.ts +1 -0
  13. package/dist/cjs/types/components/UI/molecules/index.d.ts +1 -0
  14. package/dist/cjs/types/components/UI/organism/JobDetailsDrawer/JobDetailsDrawer.interface.d.ts +4 -0
  15. package/dist/cjs/types/components/UI/organism/MobileJobDetailsDrawer/MobileJobDetailsDrawer.interface.d.ts +4 -0
  16. package/dist/cjs/types/constants/icons.constants.d.ts +2 -0
  17. package/dist/esm/css/magneto.ui.lib.min.css +1 -1
  18. package/dist/esm/index.js +445 -410
  19. package/dist/esm/index.js.map +1 -1
  20. package/dist/esm/types/components/UI/atoms/Badge/Badge.component.d.ts +3 -0
  21. package/dist/esm/types/components/UI/atoms/Badge/Badge.interface.d.ts +10 -0
  22. package/dist/esm/types/components/UI/atoms/Badge/index.d.ts +1 -0
  23. package/dist/esm/types/components/UI/atoms/HeaderTab/HeaderTab.interface.d.ts +7 -0
  24. package/dist/esm/types/components/UI/atoms/index.d.ts +1 -0
  25. package/dist/esm/types/components/UI/molecules/FraudCardJob/FraudCardJob.component.d.ts +3 -0
  26. package/dist/esm/types/components/UI/molecules/FraudCardJob/index.d.ts +1 -0
  27. package/dist/esm/types/components/UI/molecules/index.d.ts +1 -0
  28. package/dist/esm/types/components/UI/organism/JobDetailsDrawer/JobDetailsDrawer.interface.d.ts +4 -0
  29. package/dist/esm/types/components/UI/organism/MobileJobDetailsDrawer/MobileJobDetailsDrawer.interface.d.ts +4 -0
  30. package/dist/esm/types/constants/icons.constants.d.ts +2 -0
  31. package/dist/index.d.ts +33 -1
  32. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IBadge } from './Badge.interface';
3
+ export declare const Badge: React.FC<IBadge>;
@@ -0,0 +1,10 @@
1
+ export interface IBadge {
2
+ /**
3
+ * this property sets a custom number
4
+ */
5
+ number?: number;
6
+ /**
7
+ * this property sets custom classname
8
+ */
9
+ className?: string;
10
+ }
@@ -0,0 +1 @@
1
+ export * from './Badge.component';
@@ -16,6 +16,13 @@ export interface IHeaderTab {
16
16
  * Sets the active state of tab
17
17
  */
18
18
  isActive: boolean;
19
+ /**
20
+ * Sets custom className
21
+ */
19
22
  className?: string;
23
+ /**
24
+ * Sets badge count
25
+ */
26
+ count?: number;
20
27
  }
21
28
  export {};
@@ -1,4 +1,5 @@
1
1
  export * from './Avatar';
2
+ export * from './Badge';
2
3
  export * from './BarLoader';
3
4
  export * from './Breadcrumb';
4
5
  export * from './Button';
@@ -0,0 +1,3 @@
1
+ export declare const FraudCardJob: ({ fraudLink }: {
2
+ fraudLink: string;
3
+ }) => JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './FraudCardJob.component';
@@ -67,3 +67,4 @@ export * from './Tooltip';
67
67
  export * from './UserMenu';
68
68
  export * from './UserMenuAnalyst';
69
69
  export * from './UserMenuWrapperAnalyst';
70
+ export * from './FraudCardJob';
@@ -73,4 +73,8 @@ export interface IJobDetailsDrawer {
73
73
  cities: ICityDetail[];
74
74
  isRemote: boolean;
75
75
  textRemote: string;
76
+ /**
77
+ * set link to fraud card
78
+ */
79
+ fraudLink: string;
76
80
  }
@@ -83,4 +83,8 @@ export interface IMobileJobDetailsDrawer {
83
83
  cities: ICityDetail[];
84
84
  isRemote: boolean;
85
85
  textRemote: string;
86
+ /**
87
+ * set link to fraud card
88
+ */
89
+ fraudLink: string;
86
90
  }
@@ -137,6 +137,8 @@ export { default as UserRoundedGray } from '../assets/userRoundedGray.svg';
137
137
  export { default as UserSearchBlueBold } from '../assets/userSearchBlueBold.svg';
138
138
  export { default as UserSearchWhiteOutline } from '../assets/userSearchWhiteOutline.svg';
139
139
  export { default as Warning } from '../assets/warning.svg';
140
+ export { default as WarningHex } from '../assets/warning-hex.svg';
141
+ export { default as Warning3D } from '../assets/warning-3d.svg';
140
142
  export { default as WarningYellowBold } from '../assets/warningYellowBold.svg';
141
143
  export { default as WhatsAppColor } from '../assets/Whatsapp1.svg';
142
144
  export { default as WhatsAppDark } from '../assets/Whatsapp.svg';
package/dist/index.d.ts CHANGED
@@ -65,6 +65,19 @@ interface IAvatar {
65
65
  */
66
66
  declare const Avatar: React$1.FC<IAvatar>;
67
67
 
68
+ interface IBadge {
69
+ /**
70
+ * this property sets a custom number
71
+ */
72
+ number?: number;
73
+ /**
74
+ * this property sets custom classname
75
+ */
76
+ className?: string;
77
+ }
78
+
79
+ declare const Badge: React$1.FC<IBadge>;
80
+
68
81
  interface IBardLoader {
69
82
  /**
70
83
  * Class name of bar loader wrapper
@@ -311,7 +324,14 @@ interface IHeaderTab {
311
324
  * Sets the active state of tab
312
325
  */
313
326
  isActive: boolean;
327
+ /**
328
+ * Sets custom className
329
+ */
314
330
  className?: string;
331
+ /**
332
+ * Sets badge count
333
+ */
334
+ count?: number;
315
335
  }
316
336
 
317
337
  /**
@@ -3278,6 +3298,10 @@ interface IJobDetailsDrawer {
3278
3298
  cities: ICityDetail[];
3279
3299
  isRemote: boolean;
3280
3300
  textRemote: string;
3301
+ /**
3302
+ * set link to fraud card
3303
+ */
3304
+ fraudLink: string;
3281
3305
  }
3282
3306
 
3283
3307
  /**
@@ -3531,6 +3555,10 @@ interface IMobileJobDetailsDrawer {
3531
3555
  cities: ICityDetail$1[];
3532
3556
  isRemote: boolean;
3533
3557
  textRemote: string;
3558
+ /**
3559
+ * set link to fraud card
3560
+ */
3561
+ fraudLink: string;
3534
3562
  }
3535
3563
 
3536
3564
  /**
@@ -4413,6 +4441,10 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
4413
4441
  */
4414
4442
  declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
4415
4443
 
4444
+ declare const FraudCardJob: ({ fraudLink }: {
4445
+ fraudLink: string;
4446
+ }) => JSX.Element;
4447
+
4416
4448
  interface IJobsPage {
4417
4449
  /**
4418
4450
  * Props for the filter bottom header section.
@@ -4948,4 +4980,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
4948
4980
  wrapperProps: T;
4949
4981
  }>;
4950
4982
 
4951
- export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, 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, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, 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, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, 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, 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, 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, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, 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 };
4983
+ export { Actions, Alert, AlphabetFilter, AnalystTemplate, 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, 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, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, 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, 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, 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, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, 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.52.1",
7
+ "version": "2.54.0",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",