magneto365.ui 2.50.4 → 2.52.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.
@@ -1,3 +1,7 @@
1
+ export interface IToggleButtonOnchangeValues {
2
+ name?: string;
3
+ id: string | number;
4
+ }
1
5
  export interface IToggleButton {
2
6
  /**
3
7
  * You can extend the style properties with class names
@@ -26,8 +30,9 @@ export interface IToggleButton {
26
30
  /**
27
31
  * this function returns the name and id value of the button when clicked on
28
32
  */
29
- onChange: ({ name, id }: {
30
- name?: string;
31
- id?: string | number;
32
- }) => void;
33
+ onChange?: (value: IToggleButtonOnchangeValues) => void;
34
+ /**
35
+ * this property sets custom Icon
36
+ */
37
+ customIcon?: string;
33
38
  }
@@ -1,6 +1,9 @@
1
1
  export * from './Avatar';
2
2
  export * from './BarLoader';
3
3
  export * from './Breadcrumb';
4
+ export * from './Button';
5
+ export * from './ComparativeCounter';
6
+ export * from './Checkbox';
4
7
  export * from './DateDropdown';
5
8
  export * from './DateInput';
6
9
  export * from './Divider';
@@ -15,6 +18,7 @@ export * from './Link';
15
18
  export * from './Loading';
16
19
  export * from './Logo';
17
20
  export * from './MainButton';
21
+ export * from './MegaMenuTab';
18
22
  export * from './MenuDropdown';
19
23
  export * from './MenuItem';
20
24
  export * from './MultiRangeSlider';
@@ -29,6 +33,3 @@ export * from './Switch';
29
33
  export * from './Tag';
30
34
  export * from './ToggleButton';
31
35
  export * from './UserMenuButtonAnalyst';
32
- export * from './ComparativeCounter';
33
- export * from './MegaMenuTab';
34
- export * from './Button';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { TToggleButtonList } from './ToggleButtonList.interface';
3
+ export declare const ToggleButtonList: React.FC<TToggleButtonList>;
@@ -0,0 +1,19 @@
1
+ import { IToggleButton, IToggleButtonOnchangeValues } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
2
+ export declare type TToggleButtonList = {
3
+ /**
4
+ * this property sets the list of toggle buttons
5
+ */
6
+ list: Partial<Pick<IToggleButton, 'id' | 'name' | 'customIcon'>>[];
7
+ /**
8
+ * this property sets the props of toggle buttons
9
+ */
10
+ toggleButtonProps?: IToggleButton;
11
+ /**
12
+ * this property returns the values of the toggle button selected
13
+ */
14
+ onChange?: (value: IToggleButtonOnchangeValues | null) => void;
15
+ /**
16
+ * this property sets customs className for toggle buttons
17
+ */
18
+ className?: string;
19
+ };
@@ -0,0 +1,2 @@
1
+ export * from './ToggleButtonList.component';
2
+ export * from './ToggleButtonList.interface';
@@ -9,6 +9,7 @@ export * from './DatePicker';
9
9
  export * from './Drawer';
10
10
  export * from './EmptyResults';
11
11
  export * from './ExpandableInfo';
12
+ export * from './FilterActions';
12
13
  export * from './FilterContainerMenu';
13
14
  export * from './FilterMenuItem';
14
15
  export * from './FilterSearchItem';
@@ -39,6 +40,7 @@ export * from './MagnetoResolution';
39
40
  export * from './MegaMenuCard';
40
41
  export * from './MegaMenuJobsTabs';
41
42
  export * from './MegaMenuPopover';
43
+ export * from './MegaMenuSideCards';
42
44
  export * from './MenuCollapse/children/MenuCollapseChildren.interface';
43
45
  export * from './MenuIcon';
44
46
  export * from './MenuSearch';
@@ -60,9 +62,8 @@ export * from './Tab';
60
62
  export * from './TabButton';
61
63
  export * from './TextArea';
62
64
  export * from './TimelineEvent';
65
+ export * from './ToggleButtonList';
63
66
  export * from './Tooltip';
64
67
  export * from './UserMenu';
65
68
  export * from './UserMenuAnalyst';
66
69
  export * from './UserMenuWrapperAnalyst';
67
- export * from './FilterActions';
68
- export * from './MegaMenuSideCards';
@@ -0,0 +1,2 @@
1
+ import { IToggleButton } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
2
+ export declare const toggleButtonList: IToggleButton[];
package/dist/index.d.ts CHANGED
@@ -6,8 +6,9 @@ import { ISaveButton as ISaveButton$1 } from '@components/UI/atoms/SaveButton';
6
6
  import { ICustomText } 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
8
  import * as _components_UI_molecules from '@components/UI/molecules';
9
- import { IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IMegaMenuCard as IMegaMenuCard$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';
9
+ import { IMegaMenuCard as IMegaMenuCard$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
10
  import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
11
+ import { IToggleButton as IToggleButton$1, IToggleButtonOnchangeValues as IToggleButtonOnchangeValues$1 } from '@components/UI/atoms/ToggleButton/ToggleButton.interface';
11
12
  import * as _components_UI_organism from '@components/UI/organism';
12
13
  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';
13
14
  import { IListMenuText as IListMenuText$1 } from '@components/UI/molecules/ListMenuText/ListMenuText.interface';
@@ -124,6 +125,89 @@ interface IBreadcrumb {
124
125
  */
125
126
  declare const Breadcrumb: React$1.FC<IBreadcrumb>;
126
127
 
128
+ interface IButton {
129
+ /**
130
+ * Optional text to be displayed on the save button.
131
+ * (Optional property)
132
+ */
133
+ buttonText?: string;
134
+ /**
135
+ * Callback function to be executed when the save button is clicked.
136
+ */
137
+ onClick: () => void;
138
+ /**
139
+ * Button classname
140
+ */
141
+ className?: string;
142
+ /**
143
+ * Specifies whether a hover effect should be added to the button.
144
+ * (Optional property)
145
+ */
146
+ addHover?: boolean;
147
+ /**
148
+ * The title or label associated with the button.
149
+ */
150
+ buttonTitle?: string;
151
+ /**
152
+ * Suffix icon
153
+ */
154
+ suffixIcon?: string;
155
+ /**
156
+ * Preffix icon
157
+ */
158
+ prefixIcon?: string;
159
+ /**
160
+ * Icon size
161
+ */
162
+ iconSize?: number;
163
+ }
164
+
165
+ /**
166
+ * UI Atom Component of Save Button
167
+ */
168
+ declare const Button: React$1.FC<IButton>;
169
+
170
+ interface IComparativeCounter {
171
+ /**
172
+ * this property sets the current counter value
173
+ */
174
+ current: number;
175
+ /**
176
+ * this property sets the max counter value
177
+ */
178
+ max: number;
179
+ }
180
+
181
+ declare const ComparativeCounter: React$1.FC<IComparativeCounter>;
182
+
183
+ interface ICheckbox extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
184
+ /**
185
+ * event to controll the change value component.
186
+ * @param checked
187
+ * @returns
188
+ */
189
+ onChange?: (checked: boolean) => void;
190
+ /**
191
+ * change UI behavior with this prop.
192
+ */
193
+ type?: 'box' | 'background';
194
+ /**
195
+ * change display behavior for checkbox.
196
+ */
197
+ display?: 'inline' | 'block';
198
+ /**
199
+ * renderProp to create check component.
200
+ * @param props
201
+ * @returns
202
+ */
203
+ renderCheck?: (props: {
204
+ checked: ICheckbox['checked'];
205
+ type: ICheckbox['type'];
206
+ }) => React.ReactNode;
207
+ }
208
+
209
+ declare const Checkbox: React$1.FC<ICheckbox>;
210
+
127
211
  interface IDateDropdown {
128
212
  /**
129
213
  * An array of option values for the dropdown.
@@ -529,6 +613,14 @@ interface IMainButton {
529
613
  */
530
614
  declare const MainButton: React$1.FC<IMainButton>;
531
615
 
616
+ interface IMegaMenuTab {
617
+ label: string;
618
+ url: string;
619
+ selected: boolean;
620
+ }
621
+
622
+ declare const MegaMenuTab: React$1.FC<IMegaMenuTab>;
623
+
532
624
  interface IMenuDropdownProps {
533
625
  /**
534
626
  * Children of the dropdown list
@@ -921,6 +1013,10 @@ interface ITag {
921
1013
 
922
1014
  declare const Tags: React$1.FC<ITag>;
923
1015
 
1016
+ interface IToggleButtonOnchangeValues {
1017
+ name?: string;
1018
+ id: string | number;
1019
+ }
924
1020
  interface IToggleButton {
925
1021
  /**
926
1022
  * You can extend the style properties with class names
@@ -949,10 +1045,11 @@ interface IToggleButton {
949
1045
  /**
950
1046
  * this function returns the name and id value of the button when clicked on
951
1047
  */
952
- onChange: ({ name, id }: {
953
- name?: string;
954
- id?: string | number;
955
- }) => void;
1048
+ onChange?: (value: IToggleButtonOnchangeValues) => void;
1049
+ /**
1050
+ * this property sets custom Icon
1051
+ */
1052
+ customIcon?: string;
956
1053
  }
957
1054
 
958
1055
  declare const ToggleButton: React$1.FC<IToggleButton>;
@@ -981,69 +1078,6 @@ interface IUserMenuButtonAnalystProps {
981
1078
  */
982
1079
  declare const UserMenuButtonAnalyst: React$1.FC<IUserMenuButtonAnalystProps>;
983
1080
 
984
- interface IComparativeCounter {
985
- /**
986
- * this property sets the current counter value
987
- */
988
- current: number;
989
- /**
990
- * this property sets the max counter value
991
- */
992
- max: number;
993
- }
994
-
995
- declare const ComparativeCounter: React$1.FC<IComparativeCounter>;
996
-
997
- interface IMegaMenuTab {
998
- label: string;
999
- url: string;
1000
- selected: boolean;
1001
- }
1002
-
1003
- declare const MegaMenuTab: React$1.FC<IMegaMenuTab>;
1004
-
1005
- interface IButton {
1006
- /**
1007
- * Optional text to be displayed on the save button.
1008
- * (Optional property)
1009
- */
1010
- buttonText?: string;
1011
- /**
1012
- * Callback function to be executed when the save button is clicked.
1013
- */
1014
- onClick: () => void;
1015
- /**
1016
- * Button classname
1017
- */
1018
- className?: string;
1019
- /**
1020
- * Specifies whether a hover effect should be added to the button.
1021
- * (Optional property)
1022
- */
1023
- addHover?: boolean;
1024
- /**
1025
- * The title or label associated with the button.
1026
- */
1027
- buttonTitle?: string;
1028
- /**
1029
- * Suffix icon
1030
- */
1031
- suffixIcon?: string;
1032
- /**
1033
- * Preffix icon
1034
- */
1035
- prefixIcon?: string;
1036
- /**
1037
- * Icon size
1038
- */
1039
- iconSize?: number;
1040
- }
1041
-
1042
- /**
1043
- * UI Atom Component of Save Button
1044
- */
1045
- declare const Button: React$1.FC<IButton>;
1046
-
1047
1081
  declare const ShareIcons: {
1048
1082
  Facebook: {
1049
1083
  icon: any;
@@ -1538,6 +1572,29 @@ declare enum EExpandableInfoSize {
1538
1572
  */
1539
1573
  declare const ExpandableInfo: React$1.FC<IExpandableInfoProps>;
1540
1574
 
1575
+ interface IFilterActions {
1576
+ /**
1577
+ * Text that shows when all option is clicked
1578
+ */
1579
+ allAction: string;
1580
+ /**
1581
+ * Callback when select an option
1582
+ */
1583
+ onClickAction: (index: number, value: string) => void;
1584
+ /**
1585
+ * Optional reference for imperative behaviour
1586
+ */
1587
+ filtersRef?: Ref<IFiltersRef>;
1588
+ }
1589
+ interface IFiltersRef {
1590
+ /**
1591
+ * CallBack to restart filters
1592
+ */
1593
+ restartFilters: () => void;
1594
+ }
1595
+
1596
+ declare const FilterActions: FC<IFilterActions>;
1597
+
1541
1598
  interface IFilterContainerMenu {
1542
1599
  /**
1543
1600
  * you must add jsx elements
@@ -2405,6 +2462,15 @@ declare const MegaMenuJobsTabs: React$1.FC;
2405
2462
 
2406
2463
  declare const MegaMenuPopover: React$1.FC;
2407
2464
 
2465
+ interface IMegaMenuSideCards {
2466
+ jobs: IMegaMenuCard$1[];
2467
+ onSelectCard?: (index: number) => void;
2468
+ action?: IMegaMenuLink$1;
2469
+ maxCards?: number;
2470
+ }
2471
+
2472
+ declare const MegaMenuSideCards: React$1.FC<IMegaMenuSideCards>;
2473
+
2408
2474
  interface IMenuCollapseChildren extends IListMenuText {
2409
2475
  isOpen: boolean;
2410
2476
  onClick: () => void;
@@ -2913,6 +2979,27 @@ declare type TimelineEventStatus = 'checked' | 'current' | 'blocked';
2913
2979
 
2914
2980
  declare const TimelineEvent: React$1.FC<TimelineEventProps>;
2915
2981
 
2982
+ declare type TToggleButtonList = {
2983
+ /**
2984
+ * this property sets the list of toggle buttons
2985
+ */
2986
+ list: Partial<Pick<IToggleButton$1, 'id' | 'name' | 'customIcon'>>[];
2987
+ /**
2988
+ * this property sets the props of toggle buttons
2989
+ */
2990
+ toggleButtonProps?: IToggleButton$1;
2991
+ /**
2992
+ * this property returns the values of the toggle button selected
2993
+ */
2994
+ onChange?: (value: IToggleButtonOnchangeValues$1 | null) => void;
2995
+ /**
2996
+ * this property sets customs className for toggle buttons
2997
+ */
2998
+ className?: string;
2999
+ };
3000
+
3001
+ declare const ToggleButtonList: React$1.FC<TToggleButtonList>;
3002
+
2916
3003
  declare type TPosition = 'top' | 'bottom' | 'left' | 'right';
2917
3004
  interface ITooltipProps {
2918
3005
  /**
@@ -4322,38 +4409,6 @@ interface IUserMenuWrapperAnalystProps extends IUserMenuAnalystProps$1 {
4322
4409
  */
4323
4410
  declare const UserMenuWrapperAnalyst: React$1.FC<IUserMenuWrapperAnalystProps>;
4324
4411
 
4325
- interface IFilterActions {
4326
- /**
4327
- * Text that shows when all option is clicked
4328
- */
4329
- allAction: string;
4330
- /**
4331
- * Callback when select an option
4332
- */
4333
- onClickAction: (index: number, value: string) => void;
4334
- /**
4335
- * Optional reference for imperative behaviour
4336
- */
4337
- filtersRef?: Ref<IFiltersRef>;
4338
- }
4339
- interface IFiltersRef {
4340
- /**
4341
- * CallBack to restart filters
4342
- */
4343
- restartFilters: () => void;
4344
- }
4345
-
4346
- declare const FilterActions: FC<IFilterActions>;
4347
-
4348
- interface IMegaMenuSideCards {
4349
- jobs: IMegaMenuCard$1[];
4350
- onSelectCard?: (index: number) => void;
4351
- action?: IMegaMenuLink$1;
4352
- maxCards?: number;
4353
- }
4354
-
4355
- declare const MegaMenuSideCards: React$1.FC<IMegaMenuSideCards>;
4356
-
4357
4412
  interface IJobsPage {
4358
4413
  /**
4359
4414
  * Props for the filter bottom header section.
@@ -4889,4 +4944,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
4889
4944
  wrapperProps: T;
4890
4945
  }>;
4891
4946
 
4892
- export { Actions, Alert, AlphabetFilter, AnalystTemplate, Avatar, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, 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, 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, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuContainer };
4947
+ 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 };
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.50.4",
7
+ "version": "2.52.0",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",