Skip to content

Commit

Permalink
docs(maskito): update credit card mask format (#3007)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-perkins authored Jul 6, 2023
1 parent 7d9e1fe commit 806851b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion static/usage/v7/input/mask/angular/example_component_ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class ExampleComponent {
' ',
...Array(4).fill(/\d/),
' ',
...Array(4).fill(/\d/),
...Array(3).fill(/\d/),
],
};

Expand Down
2 changes: 1 addition & 1 deletion static/usage/v7/input/mask/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
' ',
...Array(4).fill(/\d/),
' ',
...Array(4).fill(/\d/),
...Array(3).fill(/\d/),
],
});
}
Expand Down
2 changes: 1 addition & 1 deletion static/usage/v7/input/mask/javascript/index_html.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
' ',
...Array(4).fill(/\d/),
' ',
...Array(4).fill(/\d/),
...Array(3).fill(/\d/),
],
});
}
Expand Down
2 changes: 2 additions & 0 deletions static/usage/v7/input/mask/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ function Example() {
...Array(4).fill(/\d/),
' ',
...Array(4).fill(/\d/),
' ',
...Array(3).fill(/\d/),
],
},
});
Expand Down
2 changes: 2 additions & 0 deletions static/usage/v7/input/mask/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
...Array(4).fill(/\d/),
' ',
...Array(4).fill(/\d/),
' ',
...Array(3).fill(/\d/),
],
elementPredicate: (el: HTMLIonInputElement) => {
return new Promise((resolve) => {
Expand Down

1 comment on commit 806851b

@vercel
Copy link

@vercel vercel bot commented on 806851b Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ionic-docs – ./

ionic-docs-git-main-ionic1.vercel.app
ionic-docs-gqykycf8t.vercel.app
ionic-docs-ionic1.vercel.app

Please sign in to comment.