react-asc 19.0.2 → 19.0.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.
@@ -7,5 +7,6 @@ export interface IButtonProps extends React.ComponentProps<"button"> {
7
7
  variant?: VARIANT;
8
8
  startIcon?: React.SVGProps<SVGSVGElement>;
9
9
  endIcon?: React.SVGProps<SVGSVGElement>;
10
+ shadow?: boolean;
10
11
  }
11
12
  export declare const Button: React.FunctionComponent<IButtonProps>;
@@ -2,12 +2,12 @@ import React from 'react';
2
2
  import { IFormInputOptions, IFormTextAreaOptions, IFormSelectOptions, IFormAutoCompleteOptions } from '../form.interfaces';
3
3
  import { IFormControlType } from '../form.types';
4
4
  export interface IFormInputEvent {
5
- value: string | number | readonly string[] | undefined;
5
+ value: any;
6
6
  type?: string;
7
7
  name?: string;
8
8
  }
9
9
  export interface IFormInputProps {
10
- value: string | number | boolean | readonly string[] | undefined;
10
+ value: any;
11
11
  name: string;
12
12
  type: IFormControlType;
13
13
  placeholder?: string;
@@ -1,2 +1,2 @@
1
- import { RefObject } from 'react';
2
- export declare function useHover<T extends HTMLElement = HTMLElement>(elementRef: RefObject<T>): boolean;
1
+ /// <reference types="react" />
2
+ export declare function useHover(): (boolean | import("react").MutableRefObject<null>)[];