react-hook-core 0.4.12 → 0.4.13

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.
package/lib/index.js CHANGED
@@ -10,6 +10,7 @@ __export(require("./core"))
10
10
  __export(require("./diff"))
11
11
  __export(require("./edit"))
12
12
  __export(require("./formutil"))
13
+ __export(require("./input"))
13
14
  __export(require("./reflect"))
14
15
  __export(require("./route"))
15
16
  __export(require("./search"))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-hook-core",
3
- "version": "0.4.12",
3
+ "version": "0.4.13",
4
4
  "description": "react",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./src/index.ts",
package/src/core.ts CHANGED
@@ -44,8 +44,6 @@ export interface ErrorMessage {
44
44
  message?: string
45
45
  }
46
46
  export interface UIService {
47
- getValue(el: HTMLInputElement, locale?: Locale, currencyCode?: string): string | number | boolean | null | undefined
48
-
49
47
  validateForm(form?: HTMLFormElement, locale?: Locale, focusFirst?: boolean, scroll?: boolean): boolean
50
48
  removeFormError(form: HTMLFormElement): void
51
49
  removeError(el: HTMLInputElement): void
package/src/index.ts CHANGED
@@ -5,6 +5,7 @@ export * from "./core"
5
5
  export * from "./diff"
6
6
  export * from "./edit"
7
7
  export * from "./formutil"
8
+ export * from "./input"
8
9
  export * from "./reflect"
9
10
  export * from "./route"
10
11
  export * from "./search"