Skip to content

Commit 806851b

Browse files
authored
docs(maskito): update credit card mask format (#3007)
1 parent 7d9e1fe commit 806851b

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

static/usage/v7/input/mask/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class ExampleComponent {
2222
' ',
2323
...Array(4).fill(/\d/),
2424
' ',
25-
...Array(4).fill(/\d/),
25+
...Array(3).fill(/\d/),
2626
],
2727
};
2828

static/usage/v7/input/mask/demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
' ',
6060
...Array(4).fill(/\d/),
6161
' ',
62-
...Array(4).fill(/\d/),
62+
...Array(3).fill(/\d/),
6363
],
6464
});
6565
}

static/usage/v7/input/mask/javascript/index_html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
' ',
4343
...Array(4).fill(/\d/),
4444
' ',
45-
...Array(4).fill(/\d/),
45+
...Array(3).fill(/\d/),
4646
],
4747
});
4848
}

static/usage/v7/input/mask/react.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ function Example() {
1414
...Array(4).fill(/\d/),
1515
' ',
1616
...Array(4).fill(/\d/),
17+
' ',
18+
...Array(3).fill(/\d/),
1719
],
1820
},
1921
});

static/usage/v7/input/mask/vue.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
...Array(4).fill(/\d/),
2424
' ',
2525
...Array(4).fill(/\d/),
26+
' ',
27+
...Array(3).fill(/\d/),
2628
],
2729
elementPredicate: (el: HTMLIonInputElement) => {
2830
return new Promise((resolve) => {

0 commit comments

Comments
 (0)