magneto365.ui 2.69.0-beta.1 → 2.69.0-beta.2
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 +3 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +3 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import { ISearchbar } from '@components/UI/molecules';
|
|
|
3
3
|
import { IPopoverRef } from '@components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface';
|
|
4
4
|
import { IlistMenuUserProps } from '@components/UI/organism';
|
|
5
5
|
import React, { ReactNode } from 'react';
|
|
6
|
+
import { ISelectOptions } from '@components/UI/organism/Select2/Select2.interface';
|
|
6
7
|
export interface IMegaMenuLink {
|
|
7
8
|
label: string;
|
|
8
9
|
url: string;
|
|
@@ -27,6 +28,7 @@ export interface IMegaMenuMainHeader {
|
|
|
27
28
|
signUpText: string;
|
|
28
29
|
onClickSignUp: (event: Event) => Promise<void>;
|
|
29
30
|
};
|
|
31
|
+
selectCountry?: ISelectOptions<unknown>;
|
|
30
32
|
searchBarProps?: ISearchbar;
|
|
31
33
|
homeUrl?: string;
|
|
32
34
|
homeText?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ import { IRightsReservedText as IRightsReservedText$1 } from '@components/UI/mol
|
|
|
39
39
|
import { IFooterMenuLinks as IFooterMenuLinks$1 } from '@components/UI/organism/FooterMenuLinks/FooterMenuLinks.interface';
|
|
40
40
|
import { IMegaMenuTab as IMegaMenuTab$1 } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
|
|
41
41
|
import { IPopoverRef as IPopoverRef$1 } from '@components/UI/molecules/MegaMenuPopover/MegaMenuPopover.interface';
|
|
42
|
+
import { ISelectOptions as ISelectOptions$1 } from '@components/UI/organism/Select2/Select2.interface';
|
|
42
43
|
import { ERenderType } from '@constants/stories';
|
|
43
44
|
import { IAlphabetFilter as IAlphabetFilter$1 } from '@components/UI/organism/AlphabetFilter/AlphabetFilter.interface';
|
|
44
45
|
|
|
@@ -6417,6 +6418,7 @@ interface IMegaMenuMainHeader {
|
|
|
6417
6418
|
signUpText: string;
|
|
6418
6419
|
onClickSignUp: (event: Event) => Promise<void>;
|
|
6419
6420
|
};
|
|
6421
|
+
selectCountry?: ISelectOptions$1<unknown>;
|
|
6420
6422
|
searchBarProps?: ISearchbar$1;
|
|
6421
6423
|
homeUrl?: string;
|
|
6422
6424
|
homeText?: string;
|
package/package.json
CHANGED