Skip to content

Commit 7777a37

Browse files
committed
chore: phone number casing
1 parent 43da931 commit 7777a37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<ion-input id="card" label="Card number" placeholder="0000 0000 0000 0000"></ion-input>
1313
</ion-item>
1414
<ion-item>
15-
<ion-input id="phone" label="US Phone number" placeholder="+1 (xxx) xxx-xxxx"></ion-input>
15+
<ion-input id="phone" label="US phone number" placeholder="+1 (xxx) xxx-xxxx"></ion-input>
1616
</ion-item>
1717
</ion-list>
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function Example() {
3030
<IonInput ref={cardRef} label="Card number" placeholder="0000 0000 0000 0000"></IonInput>
3131
</IonItem>
3232
<IonItem>
33-
<IonInput ref={phoneRef} label="US Phone number" placeholder="+1 (xxx) xxx-xxxx"></IonInput>
33+
<IonInput ref={phoneRef} label="US phone number" placeholder="+1 (xxx) xxx-xxxx"></IonInput>
3434
</IonItem>
3535
</IonList>
3636
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ion-input label="Card number" placeholder="0000 0000 0000 0000" v-maskito="cardOptions"></ion-input>
66
</ion-item>
77
<ion-item>
8-
<ion-input label="US Phone number" placeholder="+1 (xxx) xxx-xxxx" v-maskito="phoneOptions"></ion-input>
8+
<ion-input label="US phone number" placeholder="+1 (xxx) xxx-xxxx" v-maskito="phoneOptions"></ion-input>
99
</ion-item>
1010
</ion-list>
1111
</template>

0 commit comments

Comments
 (0)