Skip to content

Commit

Permalink
docs(data-table): Fixed incorrect Event name (#5272)
Browse files Browse the repository at this point in the history
  • Loading branch information
neotje authored and abhiomkar committed Nov 25, 2019
1 parent ee1a68c commit 5abe8bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/mdc-data-table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ const {events} from '@material/data-table/constants';

Event constant | Event name | Description
-- | -- | --
`ROW_SELECTION_CHANGED` | `MDCDataTable:changed` | Event emitted when row checkbox is checked or unchecked.
`ROW_SELECTION_CHANGED` | `MDCDataTable:rowSelectionChanged` | Event emitted when row checkbox is checked or unchecked.
`SELECTED_ALL` | `MDCDataTable:selectedAll` | Event emitted when header row checkbox is checked.
`UNSELECTED_ALL` | `MDCDataTable:unselectedAll` | Event emitted when header row checkbox is unchecked.

Expand Down
6 changes: 3 additions & 3 deletions packages/mdc-drawer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ In the following example, the `mdc-drawer__content` and `main-content` elements
<header class="mdc-top-app-bar app-bar" id="app-bar">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<a href="#" class="demo-menu material-icons mdc-top-app-bar__navigation-icon">menu</a>
<button class="material-icons mdc-top-app-bar__navigation-icon mdc-icon-button">menu</button>
<span class="mdc-top-app-bar__title">Dismissible Drawer</span>
</section>
</div>
Expand All @@ -250,7 +250,7 @@ In cases where the drawer appears below the top app bar you will want to follow
<header class="mdc-top-app-bar app-bar" id="app-bar">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<a href="#" class="demo-menu material-icons mdc-top-app-bar__navigation-icon">menu</a>
<button class="material-icons mdc-top-app-bar__navigation-icon mdc-icon-button">menu</button>
<span class="mdc-top-app-bar__title">Dismissible Drawer</span>
</section>
</div>
Expand Down Expand Up @@ -514,4 +514,4 @@ Signature | Description
`opened_() => void` | Called when drawer finishes open animation.


<!-- docgen-tsdoc-replacer:end -->
<!-- docgen-tsdoc-replacer:end -->

0 comments on commit 5abe8bf

Please sign in to comment.