diff --git a/src/components/pagination/pagination.tsx b/src/components/pagination/pagination.tsx index 96db0446632..559402e8b3b 100644 --- a/src/components/pagination/pagination.tsx +++ b/src/components/pagination/pagination.tsx @@ -106,13 +106,6 @@ export class Pagination implements LocalizedComponent { // //-------------------------------------------------------------------------- - /** - * Emits when the selected page changes. - * - * @deprecated use calcitePaginationChange instead - */ - @Event({ cancelable: false }) calcitePaginationUpdate: EventEmitter; - /** * Emits when the selected page changes. * @@ -190,7 +183,6 @@ export class Pagination implements LocalizedComponent { }; this.calcitePaginationChange.emit(changePayload); - this.calcitePaginationUpdate.emit(changePayload); } //-------------------------------------------------------------------------- diff --git a/src/components/pagination/readme.md b/src/components/pagination/readme.md index 7c734c87043..feb09789a12 100644 --- a/src/components/pagination/readme.md +++ b/src/components/pagination/readme.md @@ -40,10 +40,9 @@ For example, after querying the search API, you'll get back a response similar t ## Events -| Event | Description | Type | -| ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | -| `calcitePaginationChange` | Emits when the selected page changes. | `CustomEvent` | -| `calcitePaginationUpdate` | **[DEPRECATED]** use calcitePaginationChange instead

Emits when the selected page changes. | `CustomEvent` | +| Event | Description | Type | +| ------------------------- | ------------------------------------- | ------------------------------- | +| `calcitePaginationChange` | Emits when the selected page changes. | `CustomEvent` | ## Methods