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.
@@ -27,4 +27,8 @@ export interface IInputPlus {
27
27
  * this fn get the input value
28
28
  */
29
29
  getValue?: (value: string) => void;
30
+ /**
31
+ * this property sets the max length
32
+ */
33
+ maxLength?: number;
30
34
  }
@@ -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;