@mindly/ui-components 0.1.30 → 0.1.31

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.
@@ -7,6 +7,6 @@ export interface DatePickerProps {
7
7
  date?: string;
8
8
  month?: string;
9
9
  isActive: boolean;
10
- onClick: React.MouseEventHandler;
10
+ onClick: () => void;
11
11
  }
12
12
  export declare const DatePicker: React.FC<DatePickerProps>;
@@ -7,7 +7,7 @@ export interface InputProps {
7
7
  placeholder: string;
8
8
  value: string;
9
9
  ['data-cy']: string;
10
- onIonChange: (e: any) => void;
10
+ onIonChange: (e: unknown) => void;
11
11
  icon: string;
12
12
  }
13
13
  export declare const Input: React.FC<InputProps>;
package/dist/index.d.ts CHANGED
@@ -98,7 +98,7 @@ interface DatePickerProps {
98
98
  date?: string;
99
99
  month?: string;
100
100
  isActive: boolean;
101
- onClick: React.MouseEventHandler;
101
+ onClick: () => void;
102
102
  }
103
103
  declare const DatePicker: React.FC<DatePickerProps>;
104
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "@babel/polyfill": "^7.12.1",