diff --git a/CHANGELOG.md b/CHANGELOG.md index a73732f96..daf7e6006 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +### Bug Fixes + +* add "frozen" class to all slick-pane for easier styling ([#1752](https://github.com/ghiscoding/slickgrid-universal/issues/1752)) ([33a8a38](https://github.com/ghiscoding/slickgrid-universal/commit/33a8a3842bdf2957743f9016614319569cbb414e)) - by @ghiscoding +* Composite Editor should reapply original when exist & form is reset ([#1739](https://github.com/ghiscoding/slickgrid-universal/issues/1739)) ([f709b56](https://github.com/ghiscoding/slickgrid-universal/commit/f709b56ded62bbe9cf4f034b5d84735495439fce)) - by @ghiscoding +* ensure DOM alterations during initialization are always cleaned up ([#1751](https://github.com/ghiscoding/slickgrid-universal/issues/1751)) ([c65466f](https://github.com/ghiscoding/slickgrid-universal/commit/c65466f84f13efac2cf17275a51fffc5ccb325bc)) - by @ghiscoding +* ExternalCopyManager shouldn't change body scroll pos, fixes [#1078](https://github.com/ghiscoding/slickgrid-universal/issues/1078) ([#1741](https://github.com/ghiscoding/slickgrid-universal/issues/1741)) ([5bf633c](https://github.com/ghiscoding/slickgrid-universal/commit/5bf633c5d7b0e2b4ca98c489c7da906286c2c0c8)) - by @ghiscoding +* icons should have default black color instead of inherit ([af9f5db](https://github.com/ghiscoding/slickgrid-universal/commit/af9f5db4bb0bf75215537193472a1c34f292e0e9)) - by @ghiscoding +* input filter loses focus after edit+filtering with `enableExcelCopyBuffer` ([#1750](https://github.com/ghiscoding/slickgrid-universal/issues/1750)) ([b2f4f52](https://github.com/ghiscoding/slickgrid-universal/commit/b2f4f52777b39e6935f2cc2bad5517e6b19590c1)) - by @ghiscoding +* setting filter dynamically shouldn't make body taller ([#1748](https://github.com/ghiscoding/slickgrid-universal/issues/1748)) ([41e4317](https://github.com/ghiscoding/slickgrid-universal/commit/41e4317fe15498ed26cca40ad52f80e560a392d3)) - by @ghiscoding + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) ### Bug Fixes diff --git a/examples/vite-demo-vanilla-bundle/CHANGELOG.md b/examples/vite-demo-vanilla-bundle/CHANGELOG.md index 65f079bb6..02321a1dd 100644 --- a/examples/vite-demo-vanilla-bundle/CHANGELOG.md +++ b/examples/vite-demo-vanilla-bundle/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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +### Bug Fixes + +* setting filter dynamically shouldn't make body taller ([#1748](https://github.com/ghiscoding/slickgrid-universal/issues/1748)) ([41e4317](https://github.com/ghiscoding/slickgrid-universal/commit/41e4317fe15498ed26cca40ad52f80e560a392d3)) - by @ghiscoding + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) ### Bug Fixes diff --git a/examples/vite-demo-vanilla-bundle/package.json b/examples/vite-demo-vanilla-bundle/package.json index 67a6fb617..0b9971268 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": "5.10.1", + "version": "5.10.2", "scripts": { "build": "tsc && vite build", "preview": "vite preview", diff --git a/lerna.json b/lerna.json index 255dd9979..8468820f4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "5.10.1", + "version": "5.10.2", "npmClient": "pnpm", "loglevel": "info", "command": { diff --git a/packages/binding/CHANGELOG.md b/packages/binding/CHANGELOG.md index c32ef0171..d78180999 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/binding + ## [5.9.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.8.0...v5.9.0) (2024-10-19) **Note:** Version bump only for package @slickgrid-universal/binding diff --git a/packages/binding/package.json b/packages/binding/package.json index 338c4ff67..c0ed2fdfe 100644 --- a/packages/binding/package.json +++ b/packages/binding/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/binding", - "version": "5.9.0", + "version": "5.10.2", "description": "Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index bcc067ca9..1a39c5bd1 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +### Bug Fixes + +* add "frozen" class to all slick-pane for easier styling ([#1752](https://github.com/ghiscoding/slickgrid-universal/issues/1752)) ([33a8a38](https://github.com/ghiscoding/slickgrid-universal/commit/33a8a3842bdf2957743f9016614319569cbb414e)) - by @ghiscoding +* Composite Editor should reapply original when exist & form is reset ([#1739](https://github.com/ghiscoding/slickgrid-universal/issues/1739)) ([f709b56](https://github.com/ghiscoding/slickgrid-universal/commit/f709b56ded62bbe9cf4f034b5d84735495439fce)) - by @ghiscoding +* ensure DOM alterations during initialization are always cleaned up ([#1751](https://github.com/ghiscoding/slickgrid-universal/issues/1751)) ([c65466f](https://github.com/ghiscoding/slickgrid-universal/commit/c65466f84f13efac2cf17275a51fffc5ccb325bc)) - by @ghiscoding +* ExternalCopyManager shouldn't change body scroll pos, fixes [#1078](https://github.com/ghiscoding/slickgrid-universal/issues/1078) ([#1741](https://github.com/ghiscoding/slickgrid-universal/issues/1741)) ([5bf633c](https://github.com/ghiscoding/slickgrid-universal/commit/5bf633c5d7b0e2b4ca98c489c7da906286c2c0c8)) - by @ghiscoding +* icons should have default black color instead of inherit ([af9f5db](https://github.com/ghiscoding/slickgrid-universal/commit/af9f5db4bb0bf75215537193472a1c34f292e0e9)) - by @ghiscoding +* input filter loses focus after edit+filtering with `enableExcelCopyBuffer` ([#1750](https://github.com/ghiscoding/slickgrid-universal/issues/1750)) ([b2f4f52](https://github.com/ghiscoding/slickgrid-universal/commit/b2f4f52777b39e6935f2cc2bad5517e6b19590c1)) - by @ghiscoding +* setting filter dynamically shouldn't make body taller ([#1748](https://github.com/ghiscoding/slickgrid-universal/issues/1748)) ([41e4317](https://github.com/ghiscoding/slickgrid-universal/commit/41e4317fe15498ed26cca40ad52f80e560a392d3)) - by @ghiscoding + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) ### Bug Fixes diff --git a/packages/common/package.json b/packages/common/package.json index d075c4535..15e2cef52 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/common", - "version": "5.10.1", + "version": "5.10.2", "description": "SlickGrid-Universal Common Code", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/composite-editor-component/CHANGELOG.md b/packages/composite-editor-component/CHANGELOG.md index 134cd8506..f4eb587cf 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/composite-editor-component + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) ### Bug Fixes diff --git a/packages/composite-editor-component/package.json b/packages/composite-editor-component/package.json index 52a4a0bb7..4bb802c83 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": "5.10.1", + "version": "5.10.2", "description": "Slick Composite Editor Component - Vanilla Implementation of a Composite Editor Modal Window Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/custom-footer-component/CHANGELOG.md b/packages/custom-footer-component/CHANGELOG.md index 9fb34490f..b38748326 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/custom-footer-component + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 13290aa54..a079331d1 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": "5.10.1", + "version": "5.10.2", "description": "Slick Custom Footer Component - Vanilla Implementation of a Custom Footer Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/custom-tooltip-plugin/CHANGELOG.md b/packages/custom-tooltip-plugin/CHANGELOG.md index a9fc34b63..a02ba2b1d 100644 --- a/packages/custom-tooltip-plugin/CHANGELOG.md +++ b/packages/custom-tooltip-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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/custom-tooltip-plugin + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **Note:** Version bump only for package @slickgrid-universal/custom-tooltip-plugin diff --git a/packages/custom-tooltip-plugin/package.json b/packages/custom-tooltip-plugin/package.json index 466c61d0c..017430d38 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": "5.10.1", + "version": "5.10.2", "description": "A plugin to add Custom Tooltip when hovering a cell, it subscribes to the cell", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/empty-warning-component/CHANGELOG.md b/packages/empty-warning-component/CHANGELOG.md index d77af9a2d..eaf99c57c 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/empty-warning-component + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 002cb6f0e..d92548cc1 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": "5.10.1", + "version": "5.10.2", "description": "Slick Empty Warning Component - Vanilla Implementation of an Empty Dataset Warning Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/event-pub-sub/CHANGELOG.md b/packages/event-pub-sub/CHANGELOG.md index 37116066c..eb8db0b77 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/event-pub-sub + ## [5.9.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.8.0...v5.9.0) (2024-10-19) **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 1a5906880..99c10dff8 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": "5.9.0", + "version": "5.10.2", "description": "Simple Vanilla Implementation of an Event PubSub Service to do simply publish/subscribe inter-communication while optionally providing data in the event", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/excel-export/CHANGELOG.md b/packages/excel-export/CHANGELOG.md index f3c56665c..8ec0b89fa 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/excel-export + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 4affe65bb..3694e0fdd 100644 --- a/packages/excel-export/package.json +++ b/packages/excel-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/excel-export", - "version": "5.10.1", + "version": "5.10.2", "description": "Excel Export (xls/xlsx) Service.", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 700323ea5..b0702b787 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/graphql + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **Note:** Version bump only for package @slickgrid-universal/graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 7a5e55e97..f9c866767 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/graphql", - "version": "5.10.1", + "version": "5.10.2", "description": "GraphQL Service to sync a grid with a GraphQL backend server", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/odata/CHANGELOG.md b/packages/odata/CHANGELOG.md index 9379d02c8..566896fbd 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/odata + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **Note:** Version bump only for package @slickgrid-universal/odata diff --git a/packages/odata/package.json b/packages/odata/package.json index bfdc80302..93981a681 100644 --- a/packages/odata/package.json +++ b/packages/odata/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/odata", - "version": "5.10.1", + "version": "5.10.2", "description": "Grid OData Service to sync a grid with an OData backend server", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/pagination-component/CHANGELOG.md b/packages/pagination-component/CHANGELOG.md index 367e1a871..e5938355b 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/pagination-component + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 73f5a7d95..2167723bc 100644 --- a/packages/pagination-component/package.json +++ b/packages/pagination-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/pagination-component", - "version": "5.10.1", + "version": "5.10.2", "description": "Slick Pagination Component - Vanilla Implementation of a Pagination Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/row-detail-view-plugin/CHANGELOG.md b/packages/row-detail-view-plugin/CHANGELOG.md index f833cc19c..b0d809f33 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/row-detail-view-plugin + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 78b6084af..19b4002b5 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": "5.10.1", + "version": "5.10.2", "description": "SlickRowDetail plugin - A plugin to add Row Detail Panel", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/rxjs-observable/CHANGELOG.md b/packages/rxjs-observable/CHANGELOG.md index 1474d9176..cb33be064 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/rxjs-observable + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 5a05423ad..e37c79a08 100644 --- a/packages/rxjs-observable/package.json +++ b/packages/rxjs-observable/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/rxjs-observable", - "version": "5.10.1", + "version": "5.10.2", "description": "RxJS Observable Wrapper", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/text-export/CHANGELOG.md b/packages/text-export/CHANGELOG.md index 82811f01d..5b90e1253 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/text-export + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **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 8f9854eb6..8f8406d91 100644 --- a/packages/text-export/package.json +++ b/packages/text-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/text-export", - "version": "5.10.1", + "version": "5.10.2", "description": "Export to Text File (csv/txt) Service.", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 967599875..db88068d3 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/utils + ## [5.9.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.8.0...v5.9.0) (2024-10-19) **Note:** Version bump only for package @slickgrid-universal/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index ce15dba18..67130970a 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/utils", - "version": "5.9.0", + "version": "5.10.2", "description": "Common set of small utilities", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/vanilla-bundle/CHANGELOG.md b/packages/vanilla-bundle/CHANGELOG.md index 911a1bbbd..be072c882 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/vanilla-bundle + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **Note:** Version bump only for package @slickgrid-universal/vanilla-bundle diff --git a/packages/vanilla-bundle/package.json b/packages/vanilla-bundle/package.json index 921a4a850..679900697 100644 --- a/packages/vanilla-bundle/package.json +++ b/packages/vanilla-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/vanilla-bundle", - "version": "5.10.1", + "version": "5.10.2", "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.", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/vanilla-force-bundle/CHANGELOG.md b/packages/vanilla-force-bundle/CHANGELOG.md index d83431d73..ee717c259 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. +## [5.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.1...v5.10.2) (2024-11-30) + +**Note:** Version bump only for package @slickgrid-universal/vanilla-force-bundle + ## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) **Note:** Version bump only for package @slickgrid-universal/vanilla-force-bundle diff --git a/packages/vanilla-force-bundle/package.json b/packages/vanilla-force-bundle/package.json index ec511bf3e..ee7ce528c 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": "5.10.1", + "version": "5.10.2", "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)", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts",