nectiasw 0.0.198 → 0.0.200

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.
@@ -32,6 +32,7 @@ export type InputProps = {
32
32
  onEdit?: () => void;
33
33
  onDelete?: () => void;
34
34
  onChange?: (value: string) => void;
35
+ onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
35
36
  type?: "text" | "password";
36
37
  allow?: "text" | "number" | "date" | "decimals";
37
38
  zeros?: boolean;
@@ -11,3 +11,4 @@ export declare const CustomSize: Story;
11
11
  export declare const CustomVariant: Story;
12
12
  export declare const YearSelect: Story;
13
13
  export declare const Multi: Story;
14
+ export declare const MaxSelect: Story;
@@ -39,6 +39,7 @@ export type SelectProps = {
39
39
  handleKeyDown?: React.KeyboardEventHandler<HTMLDivElement>;
40
40
  isMulti?: boolean;
41
41
  isClearable?: boolean;
42
+ maxSelectedOptions?: number;
42
43
  };
43
44
  export type OptionListProps = {
44
45
  active?: boolean;