magneto365.ui 2.69.0-beta → 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 +18 -18
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/InputPlus/InputPlus.interface.d.ts +4 -0
- 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 +18 -18
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/InputPlus/InputPlus.interface.d.ts +4 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/index.d.ts +6 -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
|
|
|
@@ -2651,6 +2652,10 @@ interface IInputPlus {
|
|
|
2651
2652
|
* this fn get the input value
|
|
2652
2653
|
*/
|
|
2653
2654
|
getValue?: (value: string) => void;
|
|
2655
|
+
/**
|
|
2656
|
+
* this property sets the max length
|
|
2657
|
+
*/
|
|
2658
|
+
maxLength?: number;
|
|
2654
2659
|
}
|
|
2655
2660
|
|
|
2656
2661
|
declare const InputPlus: React__default.FC<IInputPlus>;
|
|
@@ -6413,6 +6418,7 @@ interface IMegaMenuMainHeader {
|
|
|
6413
6418
|
signUpText: string;
|
|
6414
6419
|
onClickSignUp: (event: Event) => Promise<void>;
|
|
6415
6420
|
};
|
|
6421
|
+
selectCountry?: ISelectOptions$1<unknown>;
|
|
6416
6422
|
searchBarProps?: ISearchbar$1;
|
|
6417
6423
|
homeUrl?: string;
|
|
6418
6424
|
homeText?: string;
|
package/package.json
CHANGED