@hievilmath/browser-formidavim 1.8.0 → 1.8.1

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.
@@ -13,7 +13,7 @@ export interface AddressProps {
13
13
  zipCode: string;
14
14
  }
15
15
  export interface AddressRef {
16
- reportValidity: () => boolean;
16
+ reportInvalidElements: () => HTMLElement[];
17
17
  }
18
18
  export declare const Address: React.ForwardRefExoticComponent<{
19
19
  value: AddressProps;
@@ -4,7 +4,8 @@ interface TextInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
4
4
  id: string;
5
5
  }
6
6
  export interface TextInputRef {
7
- reportValidity: () => boolean;
7
+ reportInvalidElements: () => HTMLElement[];
8
+ inputElement: HTMLInputElement | null;
8
9
  }
9
10
  export declare const TextInput: import('react').ForwardRefExoticComponent<TextInputProps & import('react').RefAttributes<TextInputRef>>;
10
11
  export {};
@@ -165,5 +165,6 @@ export declare const StyledLink: import('styled-components/dist/types').IStyledC
165
165
  $color?: string;
166
166
  $fontWeight?: string;
167
167
  $fontSize?: string;
168
+ textDecoration?: string;
168
169
  }>> & string;
169
170
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hievilmath/browser-formidavim",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "main": "./index.js",
5
5
  "module": "./index.mjs",
6
6
  "typings": "./index.d.ts",