-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix accessibility errors from markdown stories
- Loading branch information
1 parent
35dd260
commit 914678e
Showing
14 changed files
with
141 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,12 @@ You may find [Base/Forms](/docs/base-forms--fieldset) more informative. | |
<Canvas isColumn> | ||
<Story name="Input - text"> | ||
{` | ||
<input type="text" placeholder="Jelly cake marshmallow"> | ||
<label>label <input type="text" placeholder="Jelly cake marshmallow"></label> | ||
`} | ||
</Story> | ||
<Story name="Input - text (disabled)"> | ||
{` | ||
<input type="text" placeholder="Jelly cake marshmallow" disabled> | ||
<label>label <input type="text" placeholder="Jelly cake marshmallow" disabled></label> | ||
`} | ||
</Story> | ||
</Canvas> | ||
|
@@ -28,12 +28,12 @@ You may find [Base/Forms](/docs/base-forms--fieldset) more informative. | |
<Canvas isColumn> | ||
<Story name="Input - email"> | ||
{` | ||
<input type="email" placeholder="[email protected]"> | ||
<label>label <input type="email" placeholder="[email protected]"></label> | ||
`} | ||
</Story> | ||
<Story name="Input - email (disabled)"> | ||
{` | ||
<input type="email" placeholder="[email protected]" disabled> | ||
<label>label <input type="email" placeholder="[email protected]" disabled></label> | ||
`} | ||
</Story> | ||
</Canvas> | ||
|
@@ -43,12 +43,12 @@ You may find [Base/Forms](/docs/base-forms--fieldset) more informative. | |
<Canvas isColumn> | ||
<Story name="Input - number"> | ||
{` | ||
<input type="number" placeholder="123456789"> | ||
<label>label <input type="number" placeholder="123456789"></label> | ||
`} | ||
</Story> | ||
<Story name="Input - number (disabled)"> | ||
{` | ||
<input type="number" placeholder="123456789" disabled> | ||
<label>label <input type="number" placeholder="123456789" disabled></label> | ||
`} | ||
</Story> | ||
</Canvas> | ||
|
@@ -58,12 +58,12 @@ You may find [Base/Forms](/docs/base-forms--fieldset) more informative. | |
<Canvas isColumn> | ||
<Story name="Input - range"> | ||
{` | ||
<input type="range" min="0" max="10" step="1"> | ||
<label>label <input type="range" min="0" max="10" step="1"></label> | ||
`} | ||
</Story> | ||
<Story name="Input - range (disabled)"> | ||
{` | ||
<input type="range" min="0" max="10" step="1" disabled> | ||
<label>label <input type="range" min="0" max="10" step="1" disabled></label> | ||
`} | ||
</Story> | ||
</Canvas> | ||
|
@@ -73,12 +73,12 @@ You may find [Base/Forms](/docs/base-forms--fieldset) more informative. | |
<Canvas isColumn> | ||
<Story name="Textarea"> | ||
{` | ||
<textarea rows="5" cols="30" placeholder="Placeholder text">Jelly cake marshmallow. Pie cotton candy chupa chups marzipan liquorice cheesecake wafer.</textarea> | ||
<label>label <textarea rows="5" cols="30" placeholder="Placeholder text">Jelly cake marshmallow. Pie cotton candy chupa chups marzipan liquorice cheesecake wafer.</textarea></label> | ||
`} | ||
</Story> | ||
<Story name="Textarea (disabled)"> | ||
{` | ||
<textarea rows="5" cols="30" placeholder="Placeholder text" disabled>Jelly cake marshmallow. Pie cotton candy chupa chups marzipan liquorice cheesecake wafer.</textarea> | ||
<label>label <textarea rows="5" cols="30" placeholder="Placeholder text" disabled>Jelly cake marshmallow. Pie cotton candy chupa chups marzipan liquorice cheesecake wafer.</textarea></label> | ||
`} | ||
</Story> | ||
</Canvas> |
Oops, something went wrong.