Skip to content

Commit

Permalink
npm update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
titou10titou10 committed Apr 8, 2020
1 parent 82f91a4 commit 88df3f2
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion dist/directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function componentUpdated(el, binding, vnode, oldVnode) {
if (data && data.value === oldData.value) {
return;
}
var realEl = = getInput(el);
var realEl = getInput(el);
realEl.value = data ? data.value : realEl.value;
run(realEl, 'input', getConfig(binding), vnode);
}
Expand Down
8 changes: 4 additions & 4 deletions dist/masker.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ export default function (value: string, mask: string, masked?: boolean, tokens?:
'#': {
pattern: RegExp;
};
'X': {
X: {
pattern: RegExp;
};
'S': {
S: {
pattern: RegExp;
};
'A': {
A: {
pattern: RegExp;
transform: (v: string) => string;
};
'a': {
a: {
pattern: RegExp;
transform: (v: string) => string;
};
Expand Down
8 changes: 4 additions & 4 deletions dist/tokens.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ declare const _default: {
'#': {
pattern: RegExp;
};
'X': {
X: {
pattern: RegExp;
};
'S': {
S: {
pattern: RegExp;
};
'A': {
A: {
pattern: RegExp;
transform: (v: string) => string;
};
'a': {
a: {
pattern: RegExp;
transform: (v: string) => string;
};
Expand Down
104 changes: 52 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@titou10/v-mask",
"description": "mask directive for vue.js that exposes the unmasked value",
"version": "1.0.5",
"version": "1.0.6",
"author": "Denis Forveille <titou10.titou10@gmail.com>",
"license": "MIT",
"keywords": [
Expand Down Expand Up @@ -31,10 +31,10 @@
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.5",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"vue": "^2.6.10"
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.34",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"vue": "^2.6.11"
}
}

0 comments on commit 88df3f2

Please sign in to comment.