1mpacto-react-ui 0.0.68 → 0.0.69

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,5 @@
1
+ import { default as React } from 'react';
1
2
  import { ITextarea } from '../../interfaces/components/Textarea';
2
3
 
3
- declare const Textarea: import('react').ForwardRefExoticComponent<ITextarea & import('react').RefAttributes<HTMLTextAreaElement>>;
4
+ declare const Textarea: React.ForwardRefExoticComponent<ITextarea & React.RefAttributes<HTMLTextAreaElement>>;
4
5
  export default Textarea;
@@ -1,6 +1,6 @@
1
- import { InputHTMLAttributes } from 'react';
1
+ import { default as React } from 'react';
2
2
 
3
- export interface ITextarea extends InputHTMLAttributes<HTMLTextAreaElement> {
3
+ export interface ITextarea extends React.InputHTMLAttributes<HTMLTextAreaElement> {
4
4
  classNameContainer?: string | undefined;
5
5
  id?: string | undefined;
6
6
  label?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "0.0.68",
4
+ "version": "0.0.69",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",