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.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { IMoblieDrawer } from './MobileDrawer.interface';
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<IMoblieDrawer>;
6
+ export declare const MobileDrawer: React.FC<IMobileDrawer>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export interface IMoblieDrawer {
2
+ export interface IMobileDrawer {
3
3
  className?: string;
4
4
  /**
5
5
  * open drawer
@@ -1,2 +1,5 @@
1
1
  import React from 'react';
2
- export declare const SearchButton: React.FC<any>;
2
+ import { IMainButton } from '@components/UI/atoms';
3
+ export declare const SearchButton: React.FC<IMainButton & {
4
+ searchValue: string;
5
+ }>;
@@ -1,5 +1,5 @@
1
- import { IListMenuIcons, IMoblieDrawer } from '../../molecules';
2
- export interface IMobileDrawerMenu extends IMoblieDrawer {
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[];