Skip to content

Commit c9a58f6

Browse files
committed
chore: lint
1 parent 0eff3b8 commit c9a58f6

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

docs/reference/glossary.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ title: Glossary
2020
<a href="https://developer.mozilla.org/en-US/docs/Web/Accessibility" target="_blank">
2121
Accessibility
2222
</a>{' '}
23-
(a11y) is the practice of enabling as many people as possible to use the content, even if people have limited abilities. This includes people with disabilities, those using mobile devices, and those with slow network connections. Content should be developed to be as accessible as technology allows.
23+
(a11y) is the practice of enabling as many people as possible to use the content, even if people have limited
24+
abilities. This includes people with disabilities, those using mobile devices, and those with slow network
25+
connections. Content should be developed to be as accessible as technology allows.
2426
</p>
2527
</section>
2628

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
```html
22
<ion-button>Default</ion-button>
3-
<ion-button class="ion-text-wrap" style="max-width: 400px">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
3+
<ion-button class="ion-text-wrap" style="max-width: 400px"
4+
>This is the button that never ends it just goes on and on and on and on and on and on and on and on my
5+
friends</ion-button
6+
>
47
```

static/usage/v7/button/text-wrapping/demo.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
<ion-content>
1616
<div class="container">
1717
<ion-button>Default</ion-button>
18-
<ion-button class="ion-text-wrap" style="max-width: 400px">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
18+
<ion-button class="ion-text-wrap" style="max-width: 400px"
19+
>This is the button that never ends it just goes on and on and on and on and on and on and on and on my
20+
friends</ion-button
21+
>
1922
</div>
2023
</ion-content>
2124
</ion-app>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
```html
22
<ion-button>Default</ion-button>
3-
<ion-button class="ion-text-wrap" style="max-width: 400px">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
3+
<ion-button class="ion-text-wrap" style="max-width: 400px"
4+
>This is the button that never ends it just goes on and on and on and on and on and on and on and on my
5+
friends</ion-button
6+
>
47
```

static/usage/v7/button/text-wrapping/react.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ function Example() {
77
<>
88
<IonButton>Default</IonButton>
99
<IonButton className="ion-text-wrap" style={{ maxWidth: '400px' }}>
10-
This is the button that never ends it just goes on and on and on and on
11-
and on and on and on and on my friends
10+
This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends
1211
</IonButton>
1312
</>
1413
);

static/usage/v7/button/text-wrapping/vue.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
```html
22
<template>
33
<ion-button>Default</ion-button>
4-
<ion-button class="ion-text-wrap" style="max-width: 400px">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
4+
<ion-button class="ion-text-wrap" style="max-width: 400px"
5+
>This is the button that never ends it just goes on and on and on and on and on and on and on and on my
6+
friends</ion-button
7+
>
58
</template>
69

710
<script lang="ts">

0 commit comments

Comments
 (0)