@datability/8ui 1.1.4 → 1.1.6

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.
@@ -1,4 +1,4 @@
1
1
  import { default as React } from 'react';
2
2
  import { PropsInputAsyncAutoComplete } from './index.type';
3
- declare const InputAutoCompleteAsync: React.FC<PropsInputAsyncAutoComplete>;
4
- export default InputAutoCompleteAsync;
3
+ declare const InputAsyncAutoComplete: React.FC<PropsInputAsyncAutoComplete>;
4
+ export default InputAsyncAutoComplete;
@@ -33,6 +33,10 @@ export { default as InputAutoComplete } from './components/input/input-auto-comp
33
33
  export type { PropsInputAutoComplete } from './components/input/input-auto-complete/index.type';
34
34
  export { default as InputSwitch } from './components/input/input-switch';
35
35
  export type { PropsInputSwitch } from './components/input/input-switch/index.type';
36
+ export { default as InputAsyncSelect } from './components/input/input-async-select';
37
+ export type { PropsInputAsyncSelect } from './components/input/input-async-select/index.type';
38
+ export { default as InputAutoCompleteAsync } from './components/input/input-async-auto-complete';
39
+ export type { PropsInputAsyncAutoComplete } from './components/input/input-async-auto-complete/index.type';
36
40
  export type TValueOption = string | number;
37
41
  export type TOption = {
38
42
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datability/8ui",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {