@mindly/ui-components 8.2.6 → 8.2.7
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.
- package/dist/cjs/deprecated/input/Input.d.ts +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/lib2/shared/ui/InputSearch/types.d.ts +1 -1
- package/dist/esm/deprecated/input/Input.d.ts +1 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/shared/ui/InputSearch/types.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { WithTranslation } from 'react-i18next';
|
|
|
3
3
|
export type FieldSearchType = {
|
|
4
4
|
className?: string;
|
|
5
5
|
onCancelClick?: () => void;
|
|
6
|
-
|
|
6
|
+
onIonInput: (event: IonSearchbarCustomEvent<SearchbarChangeEventDetail>) => void;
|
|
7
7
|
value: string;
|
|
8
8
|
debounce?: number;
|
|
9
9
|
placeholder?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ interface InputProps {
|
|
|
62
62
|
placeholder: string;
|
|
63
63
|
value: string;
|
|
64
64
|
['data-testid']?: string;
|
|
65
|
-
|
|
65
|
+
onIonInput: (e: CustomEvent) => void;
|
|
66
66
|
icon: string;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
@@ -1701,7 +1701,7 @@ declare const CheckBoxItem: React__default.ForwardRefExoticComponent<Props$a & R
|
|
|
1701
1701
|
type FieldSearchType = {
|
|
1702
1702
|
className?: string;
|
|
1703
1703
|
onCancelClick?: () => void;
|
|
1704
|
-
|
|
1704
|
+
onIonInput: (event: IonSearchbarCustomEvent<SearchbarChangeEventDetail>) => void;
|
|
1705
1705
|
value: string;
|
|
1706
1706
|
debounce?: number;
|
|
1707
1707
|
placeholder?: string;
|