@stenajs-webui/input-mask 20.6.11 → 20.7.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.
@@ -1,6 +1,6 @@
1
- export declare type InputMask = Array<string | RegExp> | boolean;
2
- export declare type InputMaskProvider = (value: string) => InputMask;
3
- export declare type InputMaskPipe = (conformedValue: string, config: any) => false | string | {
1
+ export type InputMask = Array<string | RegExp> | boolean;
2
+ export type InputMaskProvider = (value: string) => InputMask;
3
+ export type InputMaskPipe = (conformedValue: string, config: any) => false | string | {
4
4
  value: string;
5
5
  indexesOfPipedChars: number[];
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stenajs-webui/input-mask",
3
- "version": "20.6.11",
3
+ "version": "20.7.0",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "author": "mattias800",
@@ -33,7 +33,7 @@
33
33
  "deploy": "gh-pages -d example/build"
34
34
  },
35
35
  "dependencies": {
36
- "@stenajs-webui/forms": "20.6.11",
36
+ "@stenajs-webui/forms": "20.7.0",
37
37
  "text-mask-core": "^5.1.2"
38
38
  },
39
39
  "peerDependencies": {
@@ -52,5 +52,5 @@
52
52
  "files": [
53
53
  "dist"
54
54
  ],
55
- "gitHead": "1879d752a636a9e220a822171bb4ae74bce42f47"
55
+ "gitHead": "8dc9fe226a0ae212caa675f867b9d9bce3bbb7e6"
56
56
  }