diff --git a/CHANGELOG.md b/CHANGELOG.md index 68aec3116..a73732f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) + +### Bug Fixes + +* date editor clear/reset not working in composite editor ([#1735](https://github.com/ghiscoding/slickgrid-universal/issues/1735)) ([976bd23](https://github.com/ghiscoding/slickgrid-universal/commit/976bd232c42170230ca367dd667bad37b33aea09)) - by @ghiscoding +* **editor:** add missing `changeEditorOption()` for Composite Editor ([#1733](https://github.com/ghiscoding/slickgrid-universal/issues/1733)) ([b43b53b](https://github.com/ghiscoding/slickgrid-universal/commit/b43b53b04ead731816cdc40f8df53a6c9c0b0f6b)) - by @ghiscoding +* hideColumnByIds wasn't hiding columns properly ([#1738](https://github.com/ghiscoding/slickgrid-universal/issues/1738)) ([da89db4](https://github.com/ghiscoding/slickgrid-universal/commit/da89db4e25b2be9e50f27ead290b998059a3b069)) - by @ghiscoding +* hideColumnByIds() should call setColumn() only once ([#1736](https://github.com/ghiscoding/slickgrid-universal/issues/1736)) ([0ba1a93](https://github.com/ghiscoding/slickgrid-universal/commit/0ba1a93c833b3fb36e9b8926d13de58471b37c23)) - by @ghiscoding +* hiding column(s) returned incorrect Grid State changes data ([#1737](https://github.com/ghiscoding/slickgrid-universal/issues/1737)) ([59a47b8](https://github.com/ghiscoding/slickgrid-universal/commit/59a47b8067c6015a221de459d3e0fb99a5113f04)) - by @ghiscoding +* Material Theme primary color should be reassigned & forwarded ([a786038](https://github.com/ghiscoding/slickgrid-universal/commit/a786038e7e5dc95ba7114889cffda9422fc966bf)) - by @ghiscoding +* Material Theme primary color should be reassigned & forwarded ([b3f4a23](https://github.com/ghiscoding/slickgrid-universal/commit/b3f4a232b679df9aabcf6e26351b139879ea85f7)) - by @ghiscoding +* more ms-select Dark Mode styling fixes ([810ce40](https://github.com/ghiscoding/slickgrid-universal/commit/810ce40eaa0b40c2576aecb61dd20fab1a377b78)) - by @ghiscoding +* remove `$primary-color` & fix more styling issues for ms-select ([2841dbc](https://github.com/ghiscoding/slickgrid-universal/commit/2841dbca855a029a0ff301a2e33e8acc292893cc)) - by @ghiscoding +* small box-shadow fix on ms-select filter in focus ([23ec036](https://github.com/ghiscoding/slickgrid-universal/commit/23ec036bb44e3c76498648b19592a58d20824f76)) - by @ghiscoding + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) ### Features diff --git a/examples/vite-demo-vanilla-bundle/CHANGELOG.md b/examples/vite-demo-vanilla-bundle/CHANGELOG.md index 7352c21c8..65f079bb6 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. +## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) + +### Bug Fixes + +* **editor:** add missing `changeEditorOption()` for Composite Editor ([#1733](https://github.com/ghiscoding/slickgrid-universal/issues/1733)) ([b43b53b](https://github.com/ghiscoding/slickgrid-universal/commit/b43b53b04ead731816cdc40f8df53a6c9c0b0f6b)) - by @ghiscoding +* hideColumnByIds() should call setColumn() only once ([#1736](https://github.com/ghiscoding/slickgrid-universal/issues/1736)) ([0ba1a93](https://github.com/ghiscoding/slickgrid-universal/commit/0ba1a93c833b3fb36e9b8926d13de58471b37c23)) - by @ghiscoding +* hiding column(s) returned incorrect Grid State changes data ([#1737](https://github.com/ghiscoding/slickgrid-universal/issues/1737)) ([59a47b8](https://github.com/ghiscoding/slickgrid-universal/commit/59a47b8067c6015a221de459d3e0fb99a5113f04)) - by @ghiscoding +* more ms-select Dark Mode styling fixes ([810ce40](https://github.com/ghiscoding/slickgrid-universal/commit/810ce40eaa0b40c2576aecb61dd20fab1a377b78)) - by @ghiscoding +* remove `$primary-color` & fix more styling issues for ms-select ([2841dbc](https://github.com/ghiscoding/slickgrid-universal/commit/2841dbca855a029a0ff301a2e33e8acc292893cc)) - by @ghiscoding + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) ### Features diff --git a/examples/vite-demo-vanilla-bundle/package.json b/examples/vite-demo-vanilla-bundle/package.json index 6caa6f34a..66d9217fc 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.0", + "version": "5.10.1", "scripts": { "build": "tsc && vite build", "preview": "vite preview", diff --git a/lerna.json b/lerna.json index eaaba2e53..255dd9979 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "5.10.0", + "version": "5.10.1", "npmClient": "pnpm", "loglevel": "info", "command": { diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 46a945f23..bcc067ca9 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) + +### Bug Fixes + +* date editor clear/reset not working in composite editor ([#1735](https://github.com/ghiscoding/slickgrid-universal/issues/1735)) ([976bd23](https://github.com/ghiscoding/slickgrid-universal/commit/976bd232c42170230ca367dd667bad37b33aea09)) - by @ghiscoding +* **editor:** add missing `changeEditorOption()` for Composite Editor ([#1733](https://github.com/ghiscoding/slickgrid-universal/issues/1733)) ([b43b53b](https://github.com/ghiscoding/slickgrid-universal/commit/b43b53b04ead731816cdc40f8df53a6c9c0b0f6b)) - by @ghiscoding +* hideColumnByIds wasn't hiding columns properly ([#1738](https://github.com/ghiscoding/slickgrid-universal/issues/1738)) ([da89db4](https://github.com/ghiscoding/slickgrid-universal/commit/da89db4e25b2be9e50f27ead290b998059a3b069)) - by @ghiscoding +* hideColumnByIds() should call setColumn() only once ([#1736](https://github.com/ghiscoding/slickgrid-universal/issues/1736)) ([0ba1a93](https://github.com/ghiscoding/slickgrid-universal/commit/0ba1a93c833b3fb36e9b8926d13de58471b37c23)) - by @ghiscoding +* hiding column(s) returned incorrect Grid State changes data ([#1737](https://github.com/ghiscoding/slickgrid-universal/issues/1737)) ([59a47b8](https://github.com/ghiscoding/slickgrid-universal/commit/59a47b8067c6015a221de459d3e0fb99a5113f04)) - by @ghiscoding +* Material Theme primary color should be reassigned & forwarded ([a786038](https://github.com/ghiscoding/slickgrid-universal/commit/a786038e7e5dc95ba7114889cffda9422fc966bf)) - by @ghiscoding +* Material Theme primary color should be reassigned & forwarded ([b3f4a23](https://github.com/ghiscoding/slickgrid-universal/commit/b3f4a232b679df9aabcf6e26351b139879ea85f7)) - by @ghiscoding +* more ms-select Dark Mode styling fixes ([810ce40](https://github.com/ghiscoding/slickgrid-universal/commit/810ce40eaa0b40c2576aecb61dd20fab1a377b78)) - by @ghiscoding +* remove `$primary-color` & fix more styling issues for ms-select ([2841dbc](https://github.com/ghiscoding/slickgrid-universal/commit/2841dbca855a029a0ff301a2e33e8acc292893cc)) - by @ghiscoding +* small box-shadow fix on ms-select filter in focus ([23ec036](https://github.com/ghiscoding/slickgrid-universal/commit/23ec036bb44e3c76498648b19592a58d20824f76)) - by @ghiscoding + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) ### Features diff --git a/packages/common/package.json b/packages/common/package.json index 4f16a05c2..b497beb9d 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/common", - "version": "5.10.0", + "version": "5.10.1", "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 9457d5b98..134cd8506 100644 --- a/packages/composite-editor-component/CHANGELOG.md +++ b/packages/composite-editor-component/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.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.10.0...v5.10.1) (2024-11-09) + +### Bug Fixes + +* **editor:** add missing `changeEditorOption()` for Composite Editor ([#1733](https://github.com/ghiscoding/slickgrid-universal/issues/1733)) ([b43b53b](https://github.com/ghiscoding/slickgrid-universal/commit/b43b53b04ead731816cdc40f8df53a6c9c0b0f6b)) - by @ghiscoding + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 4c36fef11..53e2599ae 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.0", + "version": "5.10.1", "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 e51ecaa86..9fb34490f 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 950762721..6e4505316 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.0", + "version": "5.10.1", "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 35f03db4e..a9fc34b63 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 3fa95f832..7462fd8e2 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.0", + "version": "5.10.1", "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 f2b92f964..d77af9a2d 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 c8d8a9092..0b3bf8864 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.0", + "version": "5.10.1", "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/excel-export/CHANGELOG.md b/packages/excel-export/CHANGELOG.md index 3ffbd53bb..f3c56665c 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 9d8896325..9bc890003 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.0", + "version": "5.10.1", "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 feefe6b8a..700323ea5 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **Note:** Version bump only for package @slickgrid-universal/graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index dc5516cba..0acdc8ee1 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/graphql", - "version": "5.10.0", + "version": "5.10.1", "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 dc312c76e..9379d02c8 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **Note:** Version bump only for package @slickgrid-universal/odata diff --git a/packages/odata/package.json b/packages/odata/package.json index 5e433c237..a1333926f 100644 --- a/packages/odata/package.json +++ b/packages/odata/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/odata", - "version": "5.10.0", + "version": "5.10.1", "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 2828fe005..367e1a871 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 c0bc949c9..97ffe5016 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.0", + "version": "5.10.1", "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 3cba0288d..f833cc19c 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 472e9b7c8..84cd88165 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.0", + "version": "5.10.1", "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 1045c20c9..1474d9176 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 749398a17..9ceeaaef1 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.0", + "version": "5.10.1", "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 aeb837f01..82811f01d 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 d545ed9ad..4264cef49 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.0", + "version": "5.10.1", "description": "Export to Text File (csv/txt) Service.", "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 78fddc833..911a1bbbd 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 5e238a897..80ce73a8e 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.0", + "version": "5.10.1", "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 21119aa66..d83431d73 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.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 + ## [5.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.9.0...v5.10.0) (2024-11-02) **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 880962e84..8cb044045 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.0", + "version": "5.10.1", "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",