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;
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
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/W170/talenta.magneto365.ui.git"
6
6
  },
7
- "version": "2.69.0-beta",
7
+ "version": "2.69.0-beta.2",
8
8
  "description": "Magneto365 UI common components",
9
9
  "scripts": {
10
10
  "lint": "eslint ./src --ext .js,.ts,.jsx,.tsx",