@slickgrid-universal/pagination-component
Advanced tools
Comparing version 1.1.1 to 1.2.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [1.2.0](https://github.com/ghiscoding/slickgrid-universal/compare/v1.1.1...v1.2.0) (2022-01-06) | ||
### Features | ||
* **services:** add extra features to EventPubSub Service ([9bd02b5](https://github.com/ghiscoding/slickgrid-universal/commit/9bd02b5d92bcf6aaf89a828c4e6496a24e795c53)) | ||
## [1.1.1](https://github.com/ghiscoding/slickgrid-universal/compare/v1.1.0...v1.1.1) (2021-12-11) | ||
@@ -8,0 +19,0 @@ |
@@ -38,3 +38,3 @@ "use strict"; | ||
// we'll copy the data into a local object so that we can add binding to this local object | ||
this._subscriptions.push(this.pubSubService.subscribe('onPaginationRefreshed', (paginationChanges) => { | ||
this._subscriptions.push(this.pubSubService.subscribe('onPaginationRefreshed', paginationChanges => { | ||
for (const key of Object.keys(paginationChanges)) { | ||
@@ -41,0 +41,0 @@ this.currentPagination[key] = paginationChanges[key]; |
@@ -35,3 +35,3 @@ import { Constants, createDomElement, getTranslationPrefix, } from '@slickgrid-universal/common'; | ||
// we'll copy the data into a local object so that we can add binding to this local object | ||
this._subscriptions.push(this.pubSubService.subscribe('onPaginationRefreshed', (paginationChanges) => { | ||
this._subscriptions.push(this.pubSubService.subscribe('onPaginationRefreshed', paginationChanges => { | ||
for (const key of Object.keys(paginationChanges)) { | ||
@@ -38,0 +38,0 @@ this.currentPagination[key] = paginationChanges[key]; |
{ | ||
"name": "@slickgrid-universal/pagination-component", | ||
"version": "1.1.1", | ||
"version": "1.2.0", | ||
"description": "Slick Pagination Component - Vanilla Implementation of a Pagination Component", | ||
@@ -54,4 +54,4 @@ "main": "dist/commonjs/index.js", | ||
"dependencies": { | ||
"@slickgrid-universal/binding": "^1.1.0", | ||
"@slickgrid-universal/common": "^1.1.0" | ||
"@slickgrid-universal/binding": "^1.2.0", | ||
"@slickgrid-universal/common": "^1.2.0" | ||
}, | ||
@@ -64,3 +64,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "c73565b875e9df7a4b26613bd0307d75156ef2d1" | ||
"gitHead": "af25eecf8994d5b6ec9eb13bfd266cba71c1cfcb" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
77605