shekel-fe-shared-lib 1.0.33 → 1.0.34

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,9 +1,8 @@
1
1
  import { default as React } from 'react';
2
- import { InputProps as AntInputProps, InputRef } from 'antd';
2
+ import { InputProps as AntInputProps } from 'antd';
3
3
  export interface InputProps extends AntInputProps {
4
4
  label?: string;
5
5
  error?: string;
6
6
  helperText?: string;
7
- control?: any;
8
7
  }
9
- export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>;
8
+ export declare const Input: React.FC<InputProps>;
@@ -1,10 +1,8 @@
1
1
  import { default as React } from 'react';
2
- import { InputRef } from 'antd';
3
2
  import { PasswordProps as AntPasswordProps } from 'antd/es/input';
4
3
  export interface PasswordInputProps extends AntPasswordProps {
5
4
  label?: string;
6
5
  error?: string;
7
6
  helperText?: string;
8
- control?: any;
9
7
  }
10
- export declare const PasswordInput: React.ForwardRefExoticComponent<PasswordInputProps & React.RefAttributes<InputRef>>;
8
+ export declare const PasswordInput: React.FC<PasswordInputProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shekel-fe-shared-lib",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Shared component library built with React and Tailwind CSS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",