magneto365.ui 2.48.0 → 2.48.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +51 -50
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/MobileDrawer/MobileDrawer.component.d.ts +2 -2
- package/dist/cjs/types/components/UI/molecules/MobileDrawer/MobileDrawer.interface.d.ts +1 -1
- package/dist/cjs/types/components/UI/molecules/SearchButton/SearchButton.component.d.ts +4 -1
- package/dist/cjs/types/components/UI/organism/MobileDrawer/MobileDrawerMenu.interface.d.ts +2 -2
- package/dist/cjs/types/constants/stories/vacancies.constants.d.ts +1 -1
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +51 -50
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/MobileDrawer/MobileDrawer.component.d.ts +2 -2
- package/dist/esm/types/components/UI/molecules/MobileDrawer/MobileDrawer.interface.d.ts +1 -1
- package/dist/esm/types/components/UI/molecules/SearchButton/SearchButton.component.d.ts +4 -1
- package/dist/esm/types/components/UI/organism/MobileDrawer/MobileDrawerMenu.interface.d.ts +2 -2
- package/dist/esm/types/constants/stories/vacancies.constants.d.ts +1 -1
- package/dist/index.d.ts +8 -6
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { IMobileDrawer } from './MobileDrawer.interface';
|
|
3
3
|
/**
|
|
4
4
|
* Molecule UI component for Mobile Drawer
|
|
5
5
|
*/
|
|
6
|
-
export declare const MobileDrawer: React.FC<
|
|
6
|
+
export declare const MobileDrawer: React.FC<IMobileDrawer>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IListMenuIcons,
|
|
2
|
-
export interface IMobileDrawerMenu extends
|
|
1
|
+
import { IListMenuIcons, IMobileDrawer } from '../../molecules';
|
|
2
|
+
export interface IMobileDrawerMenu extends IMobileDrawer {
|
|
3
3
|
/**
|
|
4
4
|
* menu items props
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { IShareLink } from '@components/UI/molecules';
|
|
1
2
|
import { IVacancies } from '@components/UI/page';
|
|
2
|
-
import { IShareLink } from '../../../dist';
|
|
3
3
|
export declare const vacancies: IVacancies[];
|
|
4
4
|
export declare const buttonIconsList: any[];
|
|
5
5
|
export declare const anchorIconList: any[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React$1, { ChangeEvent, FC, ReactNode, SetStateAction } from 'react';
|
|
3
|
-
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$1, ISearchItem as ISearchItem$1, IJobCompanyLogo as IJobCompanyLogo$1, IJobHeader as IJobHeader$1, IShareButton as IShareButton$1, IImage as IImage$1, ILinkProps as ILinkProps$1, ILogoComponent as ILogoComponent$1 } from '@components/UI/atoms';
|
|
3
|
+
import { IDateDropdown as IDateDropdown$1, IconProps as IconProps$1, ISearchItem as ISearchItem$1, IJobCompanyLogo as IJobCompanyLogo$1, IJobHeader as IJobHeader$1, IShareButton as IShareButton$1, IImage as IImage$1, IMainButton as IMainButton$1, ILinkProps as ILinkProps$1, ILogoComponent as ILogoComponent$1 } from '@components/UI/atoms';
|
|
4
4
|
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 } from '@components/UI/atoms/Text/Text.interface';
|
|
@@ -2483,7 +2483,7 @@ declare type TMessageType = 'info' | 'success' | 'warning' | 'error';
|
|
|
2483
2483
|
*/
|
|
2484
2484
|
declare const Message: React$1.FC<IMessageProps>;
|
|
2485
2485
|
|
|
2486
|
-
interface
|
|
2486
|
+
interface IMobileDrawer {
|
|
2487
2487
|
className?: string;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* open drawer
|
|
@@ -2506,7 +2506,7 @@ interface IMoblieDrawer {
|
|
|
2506
2506
|
/**
|
|
2507
2507
|
* Molecule UI component for Mobile Drawer
|
|
2508
2508
|
*/
|
|
2509
|
-
declare const MobileDrawer: React$1.FC<
|
|
2509
|
+
declare const MobileDrawer: React$1.FC<IMobileDrawer>;
|
|
2510
2510
|
|
|
2511
2511
|
interface IMobileJobDetailsHeader {
|
|
2512
2512
|
/**
|
|
@@ -2783,7 +2783,9 @@ interface ISearchbar {
|
|
|
2783
2783
|
*/
|
|
2784
2784
|
declare const Searchbar: React$1.FC<ISearchbar>;
|
|
2785
2785
|
|
|
2786
|
-
declare const SearchButton: React$1.FC<
|
|
2786
|
+
declare const SearchButton: React$1.FC<IMainButton$1 & {
|
|
2787
|
+
searchValue: string;
|
|
2788
|
+
}>;
|
|
2787
2789
|
|
|
2788
2790
|
interface ISimilarJobsCard {
|
|
2789
2791
|
id?: number | null;
|
|
@@ -3310,7 +3312,7 @@ interface IMobileDatePicker {
|
|
|
3310
3312
|
|
|
3311
3313
|
declare const MobileDatePicker: React$1.FC<IMobileDatePicker$2>;
|
|
3312
3314
|
|
|
3313
|
-
interface IMobileDrawerMenu extends
|
|
3315
|
+
interface IMobileDrawerMenu extends IMobileDrawer {
|
|
3314
3316
|
/**
|
|
3315
3317
|
* menu items props
|
|
3316
3318
|
*/
|
|
@@ -4710,4 +4712,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
4710
4712
|
wrapperProps: T;
|
|
4711
4713
|
}>;
|
|
4712
4714
|
|
|
4713
|
-
export { Actions, Alert, 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, 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, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, 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, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu,
|
|
4715
|
+
export { Actions, Alert, 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, 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, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, 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, 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, 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, useMediaQuery, withClickOut, withMegaMenuContainer };
|
package/package.json
CHANGED