@edvisor/product-language 0.10.21 → 0.10.23

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,6 +27,7 @@ export interface ISelectProps<T = any> {
27
27
  onSearch?(value: string): void;
28
28
  onOpen?(): void;
29
29
  onClose?(): void;
30
+ onInputChange?(value: string): void;
30
31
  }
31
32
  export interface IValueProps {
32
33
  options: ISelectProps['options'];
@@ -50,6 +51,7 @@ export interface IValueProps {
50
51
  onSearchFocus(): void;
51
52
  onSearchBlur(): void;
52
53
  onOptionRemove(value: any): void;
54
+ onInputChange?(value: string): void;
53
55
  }
54
56
  export interface IMenuContainerProps {
55
57
  className?: string;
@@ -2,7 +2,8 @@ import first from 'lodash/first.js';
2
2
  import isString from 'lodash/isString.js';
3
3
  import isFunction from 'lodash/isFunction.js';
4
4
  import uniqueId from 'lodash/uniqueId.js';
5
- export { first, isString, isFunction, uniqueId, };
5
+ import debounce from 'lodash/debounce.js';
6
+ export { first, isString, isFunction, uniqueId, debounce, };
6
7
  /** even though we have null disabled in the repo,
7
8
  * I still would not want isNil to skip checking null
8
9
  * it is for juuuuust in case a third party sends us a null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edvisor/product-language",
3
- "version": "0.10.21",
3
+ "version": "0.10.23",
4
4
  "license": "MIT",
5
5
  "description": "Edvisor.io product-language components",
6
6
  "repository": "https://github.com/edvisor-io/front-end/",