Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: List > Add sandbox demo titles #4982

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions components/list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ The `add-button` attribute inserts the `d2l-button-add` component above and belo

Adding new items to the list is handled entirely by consumers by listening for the `d2l-list-add-button-click` event. A simple example scenario is below.

<!-- docs: demo code display:block -->
<!-- docs: demo code display:block sandboxTitle:'List - Add Button'-->
```html
<script type="module">
import '@brightspace-ui/core/components/list/list.js';
Expand Down Expand Up @@ -275,7 +275,7 @@ If a `d2l-list-item` is selectable then it should have a `label` attribute that

### Example

<!-- docs: demo code display:block autoSize:false size:medium -->
<!-- docs: demo code display:block autoSize:false size:medium sandboxTitle:'List - Selection'-->
```html
<script type="module">
import '@brightspace-ui/core/components/list/list.js';
Expand Down Expand Up @@ -314,7 +314,7 @@ If a `d2l-list-item` is expandable then it should have a `label` attribute that

### Expandable List Example

<!-- docs: demo code display:block autoSize:false size:medium -->
<!-- docs: demo code display:block autoSize:false size:medium sandboxTitle:'List - Expandable'-->
```html
<script type="module">
import '@brightspace-ui/core/components/list/list.js';
Expand Down Expand Up @@ -383,7 +383,7 @@ If an item is draggable, the `drag-handle-text` attribute should be used to prov

### Example

<!-- docs: demo code display:block autoSize:false size:medium -->
<!-- docs: demo code display:block autoSize:false size:medium sandboxTitle:'List - Drag & Drop'-->
```html
<script type="module">
import '@brightspace-ui/core/components/list/list.js';
Expand Down
Loading