Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 40117fa

Browse files
committed
docs: fix by passing
1 parent da4cac7 commit 40117fa

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

website/pages/accordion.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Pressing **`space`** or **`enter`** when the focus is on the `CAccordionHeader`
256256

257257
### Props
258258
`CAccordionHeader` renders a `button` and composes `CPseudoBox`, this means you can
259-
style it bypassing the pseudo style props `_expanded`, `_disabled`, `_hover`,
259+
style it by passing the pseudo style props `_expanded`, `_disabled`, `_hover`,
260260
etc.
261261

262262
## `CAccordionPanel`

website/pages/badge.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ different style.
7070

7171
<br />
7272

73-
You can also change the size of the badge bypassing `fontSize` prop.
73+
You can also change the size of the badge by passing `fontSize` prop.
7474

7575
```vue live=true
7676
<c-text font-weight="bold">

website/pages/breadcrumb.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ on the `CBreadcrumb` to `false`, and manually add the `CBreadcrumbSeparator` as
8686
`CBreadcrumbItem`.
8787

8888
You can then pass style props to change the styling of the `CBreadcrumbSeparator`. You can also override
89-
the content of the `CBreadcrumbSeparator` bypassing its default slot.
89+
the content of the `CBreadcrumbSeparator` by passing its default slot.
9090

9191
```vue live=true
9292
<c-breadcrumb :add-separator="false">

website/pages/checkbox.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ it's children.
148148
</c-checkbox-group>
149149
```
150150

151-
You can also make checkbox group appear horizontally bypassing the `isInline`
151+
You can also make checkbox group appear horizontally by passing the `isInline`
152152
prop.
153153

154154
```vue live=true

website/pages/code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { CCode } from '@chakra-ui/vue';
2727

2828
### Colors
2929

30-
You can change the color scheme of the component bypassing the `variantColor`
30+
You can change the color scheme of the component by passing the `variantColor`
3131
prop.
3232

3333
```vue live=true

website/pages/heading.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Pass the `isTruncated` prop to render an ellipsis when the headings exceed
6767

6868
### Override style
6969

70-
You can override the size of the Heading component bypassing the `fontSize`
70+
You can override the size of the Heading component by passing the `fontSize`
7171
prop.
7272

7373
<br />

website/pages/icon.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ basic interface icons, to add your icons,
2424
import { CIcon } from "@chakra-ui/vue";
2525
```
2626

27-
Use an icon bypassing the `name` props. This name must match an icon key in
27+
Use an icon by passing the `name` props. This name must match an icon key in
2828
`theme.icons`. By default, the icon inherits the fontSize and color of its
2929
parent.
3030

website/pages/image.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Below is the correct way to `require` relative assets for the `CImage` and `CAva
8484
## Fallback support
8585

8686
You can provide a fallback image for when there is an error loading the `src` of
87-
the image. You can also opt-out of this behavior bypassing the `ignoreFallback`
87+
the image. You can also opt-out of this behavior by passing the `ignoreFallback`
8888
prop.
8989

9090
```vue live=true

website/pages/switch.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Pass the size prop to change the `size` of the switch.
4242

4343
## Switch background color
4444

45-
You can change the checked background color of the switch bypassing the `color` prop.
45+
You can change the checked background color of the switch by passing the `color` prop.
4646

4747
```vue live=true
4848
<c-stack is-inline>

website/pages/tabs.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Tabs come in 6 different variants to style the tabs: `line`,`enclosed`,
8888
</c-box>
8989
```
9090

91-
You can also change the color for any specific variant bypassing the
91+
You can also change the color for any specific variant by passing the
9292
`variantColor`.
9393

9494
> The value of `variantColor` must exist in the theme object and must be a key
@@ -120,7 +120,7 @@ You can also change the color for any specific variant bypassing the
120120

121121
### Tab sizes
122122

123-
You can change the size of the tab bypassing `size` prop. We support three sizes
123+
You can change the size of the tab by passing `size` prop. We support three sizes
124124
`sm`, `md`, `lg`
125125

126126
```vue live=true
@@ -149,7 +149,7 @@ You can change the size of the tab bypassing `size` prop. We support three sizes
149149

150150
## Change the tabs alignment
151151

152-
You can change the alignment of the `TabList` bypassing `align` prop. We
152+
You can change the alignment of the `TabList` by passing `align` prop. We
153153
support 3 sizes `start`, `center`, `end`.
154154

155155
```vue live=true

0 commit comments

Comments
 (0)