@stenajs-webui/input-mask 16.1.0 → 17.0.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v17.0.0 (Fri Jun 17 2022)
2
+
3
+ #### 🔩 Dependency Updates
4
+
5
+ - Update Typescript, React, Jest, etc. [#466](https://github.com/StenaIT/stenajs-webui/pull/466) ([@mattias800](https://github.com/mattias800))
6
+
7
+ #### Authors: 1
8
+
9
+ - Mattias Andersson ([@mattias800](https://github.com/mattias800))
10
+
11
+ ---
12
+
1
13
  # v15.0.1 (Thu Feb 17 2022)
2
14
 
3
15
  #### ⚠️ Pushed to `master`
@@ -1,5 +1,5 @@
1
1
  import { ChangeEvent, RefObject } from "react";
2
2
  import { InputMask, InputMaskPipe, InputMaskProvider } from "../masks/InputMask";
3
- export declare const useMaskedInput: (inputRef: RefObject<HTMLInputElement>, onChange: ((ev: ChangeEvent<HTMLInputElement>) => void) | undefined, onValueChange: ((value: string) => void) | undefined, mask: InputMask | InputMaskProvider, pipe?: InputMaskPipe | undefined, initialValue?: string, guide?: boolean, keepCharPositions?: boolean, placeholderChar?: string, showMask?: boolean) => {
3
+ export declare const useMaskedInput: (inputRef: RefObject<HTMLInputElement>, onChange: ((ev: ChangeEvent<HTMLInputElement>) => void) | undefined, onValueChange: ((value: string) => void) | undefined, mask: InputMask | InputMaskProvider, pipe?: InputMaskPipe, initialValue?: string, guide?: boolean, keepCharPositions?: boolean, placeholderChar?: string, showMask?: boolean) => {
4
4
  onChange: (event: ChangeEvent<HTMLInputElement>) => void;
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stenajs-webui/input-mask",
3
- "version": "16.1.0",
3
+ "version": "17.0.0",
4
4
  "description": "",
5
5
  "author": "mattias800",
6
6
  "license": "MIT",
@@ -27,24 +27,24 @@
27
27
  "deploy": "gh-pages -d example/build"
28
28
  },
29
29
  "dependencies": {
30
- "@stenajs-webui/forms": "16.1.0",
30
+ "@stenajs-webui/forms": "17.0.0",
31
31
  "text-mask-core": "^5.1.2"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "prop-types": ">=15.5.4",
35
- "react": ">=17.0.2",
36
- "react-dom": ">=17.0.2"
35
+ "react": ">=18.2.0",
36
+ "react-dom": ">=18.2.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/jest": "^23.1.5",
40
- "@types/react": "^17.0.5",
41
- "@types/react-dom": "^17.0.3",
40
+ "@types/react": "^18.0.14",
41
+ "@types/react-dom": "^18.0.5",
42
42
  "prop-types": "^15.5.4",
43
- "react": "^17.0.2",
44
- "react-dom": "^17.0.2"
43
+ "react": "^18.2.0",
44
+ "react-dom": "^18.2.0"
45
45
  },
46
46
  "files": [
47
47
  "dist"
48
48
  ],
49
- "gitHead": "dee8022bada52c4c5f81400825548308c2f412cb"
49
+ "gitHead": "d2ef80338559080f4106bb97aa7a9d457615e3fb"
50
50
  }