diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ab5e81eb..099ae1b6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +### Features + +* **common:** add optional `scrollIntoView` to GridService `addItems` ([#1043](https://github.com/ghiscoding/slickgrid-universal/issues/1043)) ([a6d194a](https://github.com/ghiscoding/slickgrid-universal/commit/a6d194a4352f22a23c493250ceef67e5acd86ce4)) - by @ghiscoding + +### Bug Fixes + +* **deps:** update dependency dompurify to ^3.0.5 ([#1030](https://github.com/ghiscoding/slickgrid-universal/issues/1030)) ([728bc58](https://github.com/ghiscoding/slickgrid-universal/commit/728bc58b6844544479695f29984221c9ea099936)) - by @renovate-bot +* **plugins:** RowMoveManager shouldn't add cssClass when not usable ([#1044](https://github.com/ghiscoding/slickgrid-universal/issues/1044)) ([f25eeec](https://github.com/ghiscoding/slickgrid-universal/commit/f25eeec7a277d4b915d1423f12e688ad8ac98e7c)) - by @ghiscoding + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) ### Bug Fixes diff --git a/examples/vite-demo-vanilla-bundle/CHANGELOG.md b/examples/vite-demo-vanilla-bundle/CHANGELOG.md index 866843d5e..2b417d26e 100644 --- a/examples/vite-demo-vanilla-bundle/CHANGELOG.md +++ b/examples/vite-demo-vanilla-bundle/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +### Features + +* **common:** add optional `scrollIntoView` to GridService `addItems` ([#1043](https://github.com/ghiscoding/slickgrid-universal/issues/1043)) ([a6d194a](https://github.com/ghiscoding/slickgrid-universal/commit/a6d194a4352f22a23c493250ceef67e5acd86ce4)) - by @ghiscoding + +### Bug Fixes + +* **deps:** update dependency dompurify to ^3.0.5 ([#1030](https://github.com/ghiscoding/slickgrid-universal/issues/1030)) ([728bc58](https://github.com/ghiscoding/slickgrid-universal/commit/728bc58b6844544479695f29984221c9ea099936)) - by @renovate-bot + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) ### Bug Fixes diff --git a/examples/vite-demo-vanilla-bundle/package.json b/examples/vite-demo-vanilla-bundle/package.json index b9862fc49..80d017d37 100644 --- a/examples/vite-demo-vanilla-bundle/package.json +++ b/examples/vite-demo-vanilla-bundle/package.json @@ -1,7 +1,7 @@ { "name": "slickgrid-universal-vite-demo", "private": true, - "version": "3.0.1", + "version": "3.1.0", "scripts": { "build": "tsc && vite build", "preview": "vite preview", diff --git a/lerna.json b/lerna.json index 70d03a4cb..6ea018cb9 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "3.0.1", + "version": "3.1.0", "npmClient": "pnpm", "loglevel": "info", "command": { diff --git a/packages/binding/CHANGELOG.md b/packages/binding/CHANGELOG.md index 1d1f62f84..be4a7bcbb 100644 --- a/packages/binding/CHANGELOG.md +++ b/packages/binding/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/binding + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/binding diff --git a/packages/binding/package.json b/packages/binding/package.json index 314f11a56..e29a542fe 100644 --- a/packages/binding/package.json +++ b/packages/binding/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/binding", - "version": "3.0.1", + "version": "3.1.0", "description": "Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings", "exports": { ".": { diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 81b4ecd63..2c5f96122 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +### Features + +* **common:** add optional `scrollIntoView` to GridService `addItems` ([#1043](https://github.com/ghiscoding/slickgrid-universal/issues/1043)) ([a6d194a](https://github.com/ghiscoding/slickgrid-universal/commit/a6d194a4352f22a23c493250ceef67e5acd86ce4)) - by @ghiscoding + +### Bug Fixes + +* **deps:** update dependency dompurify to ^3.0.5 ([#1030](https://github.com/ghiscoding/slickgrid-universal/issues/1030)) ([728bc58](https://github.com/ghiscoding/slickgrid-universal/commit/728bc58b6844544479695f29984221c9ea099936)) - by @renovate-bot +* **plugins:** RowMoveManager shouldn't add cssClass when not usable ([#1044](https://github.com/ghiscoding/slickgrid-universal/issues/1044)) ([f25eeec](https://github.com/ghiscoding/slickgrid-universal/commit/f25eeec7a277d4b915d1423f12e688ad8ac98e7c)) - by @ghiscoding + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) ### Bug Fixes diff --git a/packages/common/package.json b/packages/common/package.json index 08d8b584b..1deb85dfe 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/common", - "version": "3.0.1", + "version": "3.1.0", "description": "SlickGrid-Universal Common Code", "exports": { ".": { diff --git a/packages/composite-editor-component/CHANGELOG.md b/packages/composite-editor-component/CHANGELOG.md index 87acd7c70..054864b58 100644 --- a/packages/composite-editor-component/CHANGELOG.md +++ b/packages/composite-editor-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/composite-editor-component + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/composite-editor-component diff --git a/packages/composite-editor-component/package.json b/packages/composite-editor-component/package.json index 446100984..37f0d49bd 100644 --- a/packages/composite-editor-component/package.json +++ b/packages/composite-editor-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/composite-editor-component", - "version": "3.0.1", + "version": "3.1.0", "description": "Slick Composite Editor Component - Vanilla Implementation of a Composite Editor Modal Window Component", "exports": { ".": { diff --git a/packages/custom-footer-component/CHANGELOG.md b/packages/custom-footer-component/CHANGELOG.md index d6d0f4ed0..28973a5d3 100644 --- a/packages/custom-footer-component/CHANGELOG.md +++ b/packages/custom-footer-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/custom-footer-component + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/custom-footer-component diff --git a/packages/custom-footer-component/package.json b/packages/custom-footer-component/package.json index 895ce430a..bab7d78a2 100644 --- a/packages/custom-footer-component/package.json +++ b/packages/custom-footer-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/custom-footer-component", - "version": "3.0.1", + "version": "3.1.0", "description": "Slick Custom Footer Component - Vanilla Implementation of a Custom Footer Component", "exports": { ".": { diff --git a/packages/custom-tooltip-plugin/CHANGELOG.md b/packages/custom-tooltip-plugin/CHANGELOG.md index 33ca43573..f7cb45e28 100644 --- a/packages/custom-tooltip-plugin/CHANGELOG.md +++ b/packages/custom-tooltip-plugin/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +### Bug Fixes + +* **deps:** update dependency dompurify to ^3.0.5 ([#1030](https://github.com/ghiscoding/slickgrid-universal/issues/1030)) ([728bc58](https://github.com/ghiscoding/slickgrid-universal/commit/728bc58b6844544479695f29984221c9ea099936)) - by @renovate-bot + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) ### Bug Fixes diff --git a/packages/custom-tooltip-plugin/package.json b/packages/custom-tooltip-plugin/package.json index 655e107b5..91fa5c80e 100644 --- a/packages/custom-tooltip-plugin/package.json +++ b/packages/custom-tooltip-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/custom-tooltip-plugin", - "version": "3.0.1", + "version": "3.1.0", "description": "A plugin to add Custom Tooltip when hovering a cell, it subscribes to the cell", "exports": { ".": { diff --git a/packages/empty-warning-component/CHANGELOG.md b/packages/empty-warning-component/CHANGELOG.md index 597a61c8d..c01208873 100644 --- a/packages/empty-warning-component/CHANGELOG.md +++ b/packages/empty-warning-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/empty-warning-component + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/empty-warning-component diff --git a/packages/empty-warning-component/package.json b/packages/empty-warning-component/package.json index 4d85e6d60..6723db65d 100644 --- a/packages/empty-warning-component/package.json +++ b/packages/empty-warning-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/empty-warning-component", - "version": "3.0.1", + "version": "3.1.0", "description": "Slick Empty Warning Component - Vanilla Implementation of an Empty Dataset Warning Component", "exports": { ".": { diff --git a/packages/event-pub-sub/CHANGELOG.md b/packages/event-pub-sub/CHANGELOG.md index 1116461b5..7e1bdd608 100644 --- a/packages/event-pub-sub/CHANGELOG.md +++ b/packages/event-pub-sub/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/event-pub-sub + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/event-pub-sub diff --git a/packages/event-pub-sub/package.json b/packages/event-pub-sub/package.json index 615443b60..299a674b2 100644 --- a/packages/event-pub-sub/package.json +++ b/packages/event-pub-sub/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/event-pub-sub", - "version": "3.0.1", + "version": "3.1.0", "description": "Simple Vanilla Implementation of an Event PubSub Service to do simply publish/subscribe inter-communication while optionally providing data in the event", "exports": { ".": { diff --git a/packages/excel-export/CHANGELOG.md b/packages/excel-export/CHANGELOG.md index 1b606fc08..d4a33ba61 100644 --- a/packages/excel-export/CHANGELOG.md +++ b/packages/excel-export/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/excel-export + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/excel-export diff --git a/packages/excel-export/package.json b/packages/excel-export/package.json index 79320b335..b12acf9de 100644 --- a/packages/excel-export/package.json +++ b/packages/excel-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/excel-export", - "version": "3.0.1", + "version": "3.1.0", "description": "Excel Export (xls/xlsx) Service.", "exports": { ".": { diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 609f2aed2..beabdcb9f 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/graphql + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 2045b2365..c280b781a 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/graphql", - "version": "3.0.1", + "version": "3.1.0", "description": "GraphQL Service to sync a grid with a GraphQL backend server", "exports": { ".": { diff --git a/packages/odata/CHANGELOG.md b/packages/odata/CHANGELOG.md index 9864ae9ad..e5e905391 100644 --- a/packages/odata/CHANGELOG.md +++ b/packages/odata/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/odata + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/odata diff --git a/packages/odata/package.json b/packages/odata/package.json index a5175c0c6..525a39db3 100644 --- a/packages/odata/package.json +++ b/packages/odata/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/odata", - "version": "3.0.1", + "version": "3.1.0", "description": "Grid OData Service to sync a grid with an OData backend server", "exports": { ".": { diff --git a/packages/pagination-component/CHANGELOG.md b/packages/pagination-component/CHANGELOG.md index b29a729e5..70d9ea30e 100644 --- a/packages/pagination-component/CHANGELOG.md +++ b/packages/pagination-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/pagination-component + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/pagination-component diff --git a/packages/pagination-component/package.json b/packages/pagination-component/package.json index 0be74915d..14dd14094 100644 --- a/packages/pagination-component/package.json +++ b/packages/pagination-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/pagination-component", - "version": "3.0.1", + "version": "3.1.0", "description": "Slick Pagination Component - Vanilla Implementation of a Pagination Component", "exports": { ".": { diff --git a/packages/row-detail-view-plugin/CHANGELOG.md b/packages/row-detail-view-plugin/CHANGELOG.md index 4fa73f4d9..3ab3935ba 100644 --- a/packages/row-detail-view-plugin/CHANGELOG.md +++ b/packages/row-detail-view-plugin/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/row-detail-view-plugin + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/row-detail-view-plugin diff --git a/packages/row-detail-view-plugin/package.json b/packages/row-detail-view-plugin/package.json index 535f1f65e..a0da753b2 100644 --- a/packages/row-detail-view-plugin/package.json +++ b/packages/row-detail-view-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/row-detail-view-plugin", - "version": "3.0.1", + "version": "3.1.0", "description": "SlickRowDetail plugin - A plugin to add Row Detail Panel", "exports": { ".": { diff --git a/packages/rxjs-observable/CHANGELOG.md b/packages/rxjs-observable/CHANGELOG.md index 434131a5f..8814945be 100644 --- a/packages/rxjs-observable/CHANGELOG.md +++ b/packages/rxjs-observable/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/rxjs-observable + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/rxjs-observable diff --git a/packages/rxjs-observable/package.json b/packages/rxjs-observable/package.json index 93ece54d3..7950f057a 100644 --- a/packages/rxjs-observable/package.json +++ b/packages/rxjs-observable/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/rxjs-observable", - "version": "3.0.1", + "version": "3.1.0", "description": "RxJS Observable Wrapper", "exports": { ".": { diff --git a/packages/text-export/CHANGELOG.md b/packages/text-export/CHANGELOG.md index 5f5682126..6696a01f8 100644 --- a/packages/text-export/CHANGELOG.md +++ b/packages/text-export/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/text-export + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/text-export diff --git a/packages/text-export/package.json b/packages/text-export/package.json index 341aace54..2227b6bad 100644 --- a/packages/text-export/package.json +++ b/packages/text-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/text-export", - "version": "3.0.1", + "version": "3.1.0", "description": "Export to Text File (csv/txt) Service.", "exports": { ".": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 92ab0935a..9541ea411 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/utils + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) **Note:** Version bump only for package @slickgrid-universal/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index a287fbc7b..7755f1a11 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/utils", - "version": "3.0.1", + "version": "3.1.0", "description": "Common set of small utilities", "exports": { ".": { diff --git a/packages/vanilla-bundle/CHANGELOG.md b/packages/vanilla-bundle/CHANGELOG.md index 83f70143c..f9cb3c61c 100644 --- a/packages/vanilla-bundle/CHANGELOG.md +++ b/packages/vanilla-bundle/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/vanilla-bundle + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) ### Bug Fixes diff --git a/packages/vanilla-bundle/package.json b/packages/vanilla-bundle/package.json index 1f877ea73..ce83884fc 100644 --- a/packages/vanilla-bundle/package.json +++ b/packages/vanilla-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/vanilla-bundle", - "version": "3.0.1", + "version": "3.1.0", "description": "Vanilla Slick Grid Bundle - Framework agnostic the output is to be used in vanilla JS/TS - Written in TypeScript and we also use Vite to bundle everything into a single JS file.", "exports": { ".": { diff --git a/packages/vanilla-force-bundle/CHANGELOG.md b/packages/vanilla-force-bundle/CHANGELOG.md index baa907d86..ec2687d35 100644 --- a/packages/vanilla-force-bundle/CHANGELOG.md +++ b/packages/vanilla-force-bundle/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.1...v3.1.0) (2023-07-20) + +**Note:** Version bump only for package @slickgrid-universal/vanilla-force-bundle + ## [3.0.1](https://github.com/ghiscoding/slickgrid-universal/compare/v3.0.0...v3.0.1) (2023-07-01) ### Bug Fixes diff --git a/packages/vanilla-force-bundle/package.json b/packages/vanilla-force-bundle/package.json index 8f3824528..63a9e2e9a 100644 --- a/packages/vanilla-force-bundle/package.json +++ b/packages/vanilla-force-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/vanilla-force-bundle", - "version": "3.0.1", + "version": "3.1.0", "description": "Vanilla Slick Grid Bundle (mostly exist for our Salesforce implementation) - Similar to Vanilla Bundle, the only difference is that it adds extra packages within its bundle (CustomTooltip, CompositeEditor & TextExport)", "exports": { ".": {