diff --git a/CHANGELOG.md b/CHANGELOG.md index 966fe34efe..cee242d483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.9.2](https://github.com/dream-num/univer/compare/v0.9.1...v0.9.2) (2025-07-11) + + +### Bug Fixes + +* **doc:** fix some code error ([#5489](https://github.com/dream-num/univer/issues/5489)) ([674fd6e](https://github.com/dream-num/univer/commit/674fd6ebe8e112ef89d18484268bb2f6812eeaf8)) +* **dts:** simplify interface declarations and improve method overrides in event and range modules ([#5516](https://github.com/dream-num/univer/issues/5516)) ([edea4eb](https://github.com/dream-num/univer/commit/edea4ebeae3ec64fde4b692666b746ef52464a8d)) +* fix render of true and false, and TEXT formula error ([#5504](https://github.com/dream-num/univer/issues/5504)) ([ec740ba](https://github.com/dream-num/univer/commit/ec740ba578880a03c5a5ee584815c3ae83c680a7)) +* fix SUBTOTAL formula need ignore other SUBTOTAL formula results ([#5506](https://github.com/dream-num/univer/issues/5506)) ([732bcec](https://github.com/dream-num/univer/commit/732bcec66441e38c84940e6a20093aaac6731dbf)) +* **sheets-filter-ui:** adjust width of filter panel component ([#5518](https://github.com/dream-num/univer/issues/5518)) ([bb719f2](https://github.com/dream-num/univer/commit/bb719f20d5b3a30e9db8b90303ad9172df92d8e8)) +* **sheets-formula-ui:** can't drag selections when edit formula ([#5512](https://github.com/dream-num/univer/issues/5512)) ([cd39795](https://github.com/dream-num/univer/commit/cd3979593285c7cbc79ebfb3c1f7b2e39c38dab1)) +* **sheets-sort-ui:** improve layout and styling of `CustomSortPanel` ([#5507](https://github.com/dream-num/univer/issues/5507)) ([16d234d](https://github.com/dream-num/univer/commit/16d234d8a9745c0eb23d9044b2bee92ed89a3138)) +* **ui-adapter-vue3:** update peerDependencies to require Vue 3.0.0 or higher ([#5495](https://github.com/dream-num/univer/issues/5495)) ([b72b49a](https://github.com/dream-num/univer/commit/b72b49a06d31094f72f39eb461777f30d8e2cea1)) + + +### Features + +* add float-dom update & delete & event api ([#5515](https://github.com/dream-num/univer/issues/5515)) ([a4e177a](https://github.com/dream-num/univer/commit/a4e177a1407c674277e7d95ccccf823795502000)) +* add support for filter by colors ([#5501](https://github.com/dream-num/univer/issues/5501)) ([45f389b](https://github.com/dream-num/univer/commit/45f389b0f73ccad3733666cbe6b4deb136625fa0)) +* **sheets-drawing-ui:** add updateFloatDomProps ([#5517](https://github.com/dream-num/univer/issues/5517)) ([bb051e2](https://github.com/dream-num/univer/commit/bb051e29748c4a5ec57d690432377c3d6386e472)) + ## [0.9.1](https://github.com/dream-num/univer/compare/v0.9.0...v0.9.1) (2025-07-04) diff --git a/common/shared/package.json b/common/shared/package.json index 64eedbc81f..df9aeba52d 100644 --- a/common/shared/package.json +++ b/common/shared/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs-infra/shared", - "version": "0.9.1", + "version": "0.9.2", "private": true, "description": "Some infrastructures for univerjs", "author": "DreamNum ", diff --git a/common/storybook/package.json b/common/storybook/package.json index f8466c8ba8..2754f79161 100644 --- a/common/storybook/package.json +++ b/common/storybook/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/storybook", - "version": "0.9.1", + "version": "0.9.2", "private": true, "description": "Some infrastructures for univerjs", "author": "DreamNum ", diff --git a/package.json b/package.json index 97906b59be..1965936445 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "univer", "type": "module", - "version": "0.9.1", + "version": "0.9.2", "private": true, "packageManager": "pnpm@10.12.4", "author": "DreamNum Co., Ltd. ", diff --git a/packages/action-recorder/package.json b/packages/action-recorder/package.json index d8ce9ae5e9..916ca76142 100644 --- a/packages/action-recorder/package.json +++ b/packages/action-recorder/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/action-recorder", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/core/package.json b/packages/core/package.json index ab066fee89..0a735132d6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/core", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Core library for Univer.", "author": "DreamNum ", diff --git a/packages/data-validation/package.json b/packages/data-validation/package.json index 56a811f513..ffc7f4f67c 100644 --- a/packages/data-validation/package.json +++ b/packages/data-validation/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/data-validation", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Data validation library for Univer", "author": "DreamNum ", diff --git a/packages/design/package.json b/packages/design/package.json index 6bd68466c5..50ab4f2730 100644 --- a/packages/design/package.json +++ b/packages/design/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/design", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UI component library for building exceptional Univer.", "author": "DreamNum ", diff --git a/packages/docs-drawing-ui/package.json b/packages/docs-drawing-ui/package.json index 5887b44f9c..169de3d3d5 100644 --- a/packages/docs-drawing-ui/package.json +++ b/packages/docs-drawing-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-drawing-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/docs-drawing/package.json b/packages/docs-drawing/package.json index 9585a5bf40..11c06435ff 100644 --- a/packages/docs-drawing/package.json +++ b/packages/docs-drawing/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-drawing", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/docs-hyper-link-ui/package.json b/packages/docs-hyper-link-ui/package.json index abd57ccdfa..dbc2be94b5 100644 --- a/packages/docs-hyper-link-ui/package.json +++ b/packages/docs-hyper-link-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-hyper-link-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer thread comment plugin", "author": "DreamNum ", diff --git a/packages/docs-hyper-link/package.json b/packages/docs-hyper-link/package.json index 48d2a8db38..463f711c5e 100644 --- a/packages/docs-hyper-link/package.json +++ b/packages/docs-hyper-link/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-hyper-link", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer thread comment plugin", "author": "DreamNum ", diff --git a/packages/docs-mention-ui/package.json b/packages/docs-mention-ui/package.json index 203b1022f9..afbe925133 100644 --- a/packages/docs-mention-ui/package.json +++ b/packages/docs-mention-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-mention-ui", - "version": "0.9.1", + "version": "0.9.2", "private": true, "description": "Univer normal ui-plugin-docs", "author": "DreamNum ", diff --git a/packages/docs-quick-insert-ui/package.json b/packages/docs-quick-insert-ui/package.json index 01e57f7cee..294decb60a 100644 --- a/packages/docs-quick-insert-ui/package.json +++ b/packages/docs-quick-insert-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-quick-insert-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/docs-thread-comment-ui/package.json b/packages/docs-thread-comment-ui/package.json index 915ed4cd7c..20fac988fa 100644 --- a/packages/docs-thread-comment-ui/package.json +++ b/packages/docs-thread-comment-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-thread-comment-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer thread comment plugin", "author": "DreamNum ", diff --git a/packages/docs-ui/package.json b/packages/docs-ui/package.json index 1f0719580e..b541077004 100644 --- a/packages/docs-ui/package.json +++ b/packages/docs-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer normal ui-plugin-docs", "author": "DreamNum ", diff --git a/packages/docs/package.json b/packages/docs/package.json index 8279d5cd01..600998bde7 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/docs", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal base-docs", "author": "DreamNum ", diff --git a/packages/drawing-ui/package.json b/packages/drawing-ui/package.json index 93605c0792..7a2472519f 100644 --- a/packages/drawing-ui/package.json +++ b/packages/drawing-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/drawing-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/drawing/package.json b/packages/drawing/package.json index 934138e385..1174dc1ff6 100644 --- a/packages/drawing/package.json +++ b/packages/drawing/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/drawing", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/engine-formula/package.json b/packages/engine-formula/package.json index ee4e9283f5..20bdc32cbc 100644 --- a/packages/engine-formula/package.json +++ b/packages/engine-formula/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/engine-formula", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal base-formula-engine", "author": "DreamNum ", diff --git a/packages/engine-numfmt/package.json b/packages/engine-numfmt/package.json index 442afe0a9b..5b7dcd8e71 100644 --- a/packages/engine-numfmt/package.json +++ b/packages/engine-numfmt/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/engine-numfmt", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal plugin UI manager", "author": "DreamNum ", diff --git a/packages/engine-render/package.json b/packages/engine-render/package.json index 3f49a38590..3567eb264b 100644 --- a/packages/engine-render/package.json +++ b/packages/engine-render/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/engine-render", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal base-render", "author": "DreamNum ", diff --git a/packages/find-replace/package.json b/packages/find-replace/package.json index 812a7d302e..89efeddc97 100644 --- a/packages/find-replace/package.json +++ b/packages/find-replace/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/find-replace", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/network/package.json b/packages/network/package.json index d27441fcb8..c446f18b1c 100644 --- a/packages/network/package.json +++ b/packages/network/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/network", - "version": "0.9.1", + "version": "0.9.2", "private": false, "author": "DreamNum ", "license": "Apache-2.0", diff --git a/packages/rpc-node/package.json b/packages/rpc-node/package.json index e171af36c4..3959266b18 100644 --- a/packages/rpc-node/package.json +++ b/packages/rpc-node/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/rpc-node", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/rpc/package.json b/packages/rpc/package.json index bf40c92e56..09089a4a55 100644 --- a/packages/rpc/package.json +++ b/packages/rpc/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/rpc", - "version": "0.9.1", + "version": "0.9.2", "private": false, "author": "DreamNum ", "license": "Apache-2.0", diff --git a/packages/sheets-conditional-formatting-ui/package.json b/packages/sheets-conditional-formatting-ui/package.json index b371afd058..3ae3fbd6ec 100644 --- a/packages/sheets-conditional-formatting-ui/package.json +++ b/packages/sheets-conditional-formatting-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-conditional-formatting-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Conditional formatting plugin for Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-conditional-formatting/package.json b/packages/sheets-conditional-formatting/package.json index 519bdae65a..95880d3ae7 100644 --- a/packages/sheets-conditional-formatting/package.json +++ b/packages/sheets-conditional-formatting/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-conditional-formatting", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Conditional formatting plugin for Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-crosshair-highlight/package.json b/packages/sheets-crosshair-highlight/package.json index 37a277bd14..622836a2cb 100644 --- a/packages/sheets-crosshair-highlight/package.json +++ b/packages/sheets-crosshair-highlight/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-crosshair-highlight", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/sheets-data-validation-ui/package.json b/packages/sheets-data-validation-ui/package.json index db3365e558..0714f35fe9 100644 --- a/packages/sheets-data-validation-ui/package.json +++ b/packages/sheets-data-validation-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-data-validation-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Data validation UI for Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-data-validation/package.json b/packages/sheets-data-validation/package.json index 3054601c28..6dffe83bf3 100644 --- a/packages/sheets-data-validation/package.json +++ b/packages/sheets-data-validation/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-data-validation", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Data validation for Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-drawing-ui/package.json b/packages/sheets-drawing-ui/package.json index 16e7ef388b..466b7416a7 100644 --- a/packages/sheets-drawing-ui/package.json +++ b/packages/sheets-drawing-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-drawing-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/sheets-drawing/package.json b/packages/sheets-drawing/package.json index 754612656b..1beb666513 100644 --- a/packages/sheets-drawing/package.json +++ b/packages/sheets-drawing/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-drawing", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/sheets-filter-ui/package.json b/packages/sheets-filter-ui/package.json index fbb6c4d39a..c048808bbb 100644 --- a/packages/sheets-filter-ui/package.json +++ b/packages/sheets-filter-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-filter-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer Sheets Filter UI", "author": "DreamNum ", diff --git a/packages/sheets-filter/package.json b/packages/sheets-filter/package.json index 3f73035499..6d7cbe9a2b 100644 --- a/packages/sheets-filter/package.json +++ b/packages/sheets-filter/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-filter", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "A library for filtering data in Univer Sheet", "author": "DreamNum ", diff --git a/packages/sheets-find-replace/package.json b/packages/sheets-find-replace/package.json index ba686b6521..f5c430011c 100644 --- a/packages/sheets-find-replace/package.json +++ b/packages/sheets-find-replace/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-find-replace", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet find replace plugin", "author": "DreamNum ", diff --git a/packages/sheets-formula-ui/package.json b/packages/sheets-formula-ui/package.json index 83ef97f20b..6e72769305 100644 --- a/packages/sheets-formula-ui/package.json +++ b/packages/sheets-formula-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-formula-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "author": "DreamNum ", "license": "Apache-2.0", diff --git a/packages/sheets-formula/package.json b/packages/sheets-formula/package.json index 8c535cc190..e389c16996 100644 --- a/packages/sheets-formula/package.json +++ b/packages/sheets-formula/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-formula", - "version": "0.9.1", + "version": "0.9.2", "private": false, "author": "DreamNum ", "license": "Apache-2.0", diff --git a/packages/sheets-graphics/package.json b/packages/sheets-graphics/package.json index 35f1d78514..fffdeb6799 100644 --- a/packages/sheets-graphics/package.json +++ b/packages/sheets-graphics/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-graphics", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Drawing graphics for Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-hyper-link-ui/package.json b/packages/sheets-hyper-link-ui/package.json index 1ea569c357..86bd45086f 100644 --- a/packages/sheets-hyper-link-ui/package.json +++ b/packages/sheets-hyper-link-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-hyper-link-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/sheets-hyper-link/package.json b/packages/sheets-hyper-link/package.json index 2dac79d708..b4a02ed401 100644 --- a/packages/sheets-hyper-link/package.json +++ b/packages/sheets-hyper-link/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-hyper-link", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/sheets-note-ui/package.json b/packages/sheets-note-ui/package.json index d66a421597..16c166464b 100644 --- a/packages/sheets-note-ui/package.json +++ b/packages/sheets-note-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-note-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer sheets note UI plugin", "author": "DreamNum ", diff --git a/packages/sheets-note/package.json b/packages/sheets-note/package.json index d7c725efbb..f9202bd30d 100644 --- a/packages/sheets-note/package.json +++ b/packages/sheets-note/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-note", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer sheets note base plugin", "author": "DreamNum ", diff --git a/packages/sheets-numfmt-ui/package.json b/packages/sheets-numfmt-ui/package.json index 8af19f89df..83b8138fb5 100644 --- a/packages/sheets-numfmt-ui/package.json +++ b/packages/sheets-numfmt-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-numfmt-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet numfmt plugin", "author": "DreamNum ", diff --git a/packages/sheets-numfmt/package.json b/packages/sheets-numfmt/package.json index a82f61a4dd..6355314b37 100644 --- a/packages/sheets-numfmt/package.json +++ b/packages/sheets-numfmt/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-numfmt", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet numfmt plugin", "author": "DreamNum ", diff --git a/packages/sheets-sort-ui/package.json b/packages/sheets-sort-ui/package.json index 00094bc5b5..98d22dd754 100644 --- a/packages/sheets-sort-ui/package.json +++ b/packages/sheets-sort-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-sort-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer Sheets Sort UI", "author": "DreamNum ", diff --git a/packages/sheets-sort/package.json b/packages/sheets-sort/package.json index ede0cbe25f..f2ccb5f64e 100644 --- a/packages/sheets-sort/package.json +++ b/packages/sheets-sort/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-sort", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "A library for sorting data in Univer Sheet", "author": "DreamNum ", diff --git a/packages/sheets-table-ui/package.json b/packages/sheets-table-ui/package.json index 088804b473..4d3696a591 100644 --- a/packages/sheets-table-ui/package.json +++ b/packages/sheets-table-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-table-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "A library for connect and bind data from other sources to Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-table/package.json b/packages/sheets-table/package.json index 60e4098f15..d130384b18 100644 --- a/packages/sheets-table/package.json +++ b/packages/sheets-table/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-table", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "A library for connect and bind data from other sources to Univer Sheets", "author": "DreamNum ", diff --git a/packages/sheets-thread-comment-ui/package.json b/packages/sheets-thread-comment-ui/package.json index fb258a8bb8..b81d418757 100644 --- a/packages/sheets-thread-comment-ui/package.json +++ b/packages/sheets-thread-comment-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-thread-comment-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer thread comment plugin", "author": "DreamNum ", diff --git a/packages/sheets-thread-comment/package.json b/packages/sheets-thread-comment/package.json index 1db996a455..20a669f60d 100644 --- a/packages/sheets-thread-comment/package.json +++ b/packages/sheets-thread-comment/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-thread-comment", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer sheets thread comment base plugin", "author": "DreamNum ", diff --git a/packages/sheets-ui/package.json b/packages/sheets-ui/package.json index 56b0fd095f..8535f537f5 100644 --- a/packages/sheets-ui/package.json +++ b/packages/sheets-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal ui-plugin-sheets", "author": "DreamNum ", diff --git a/packages/sheets-zen-editor/package.json b/packages/sheets-zen-editor/package.json index dd2d76f11b..d1da6d1a78 100644 --- a/packages/sheets-zen-editor/package.json +++ b/packages/sheets-zen-editor/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets-zen-editor", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Zen Editor plugin for Univer Sheets.", "author": "DreamNum ", diff --git a/packages/sheets/package.json b/packages/sheets/package.json index 1cbf8e4d96..b7c861c687 100644 --- a/packages/sheets/package.json +++ b/packages/sheets/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/sheets", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal base-sheets", "author": "DreamNum ", diff --git a/packages/slides-ui/package.json b/packages/slides-ui/package.json index 7edc916a01..01ee00f616 100644 --- a/packages/slides-ui/package.json +++ b/packages/slides-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/slides-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer normal ui-plugin-slides", "author": "DreamNum ", diff --git a/packages/slides/package.json b/packages/slides/package.json index a6eb62f2e7..bd60a6e28d 100644 --- a/packages/slides/package.json +++ b/packages/slides/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/slides", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index e0be331937..48bf629315 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/telemetry", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "", "author": "DreamNum ", diff --git a/packages/themes/package.json b/packages/themes/package.json index 33ff978e5b..dee34957c7 100644 --- a/packages/themes/package.json +++ b/packages/themes/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/themes", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Themes package for Univer", "author": "DreamNum ", diff --git a/packages/thread-comment-ui/package.json b/packages/thread-comment-ui/package.json index 144936065a..fa479403ec 100644 --- a/packages/thread-comment-ui/package.json +++ b/packages/thread-comment-ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/thread-comment-ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer common thread comment UI plugin", "author": "DreamNum ", diff --git a/packages/thread-comment/package.json b/packages/thread-comment/package.json index e496573294..cfa9467524 100644 --- a/packages/thread-comment/package.json +++ b/packages/thread-comment/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/thread-comment", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Univer thread comment core plugin", "author": "DreamNum ", diff --git a/packages/ui-adapter-vue3/package.json b/packages/ui-adapter-vue3/package.json index bc33301cb8..003701e6ab 100644 --- a/packages/ui-adapter-vue3/package.json +++ b/packages/ui-adapter-vue3/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/ui-adapter-vue3", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Vue adapter for Univer UI", "author": "DreamNum ", diff --git a/packages/ui-adapter-web-component/package.json b/packages/ui-adapter-web-component/package.json index 35778a65b9..2794d4fb69 100644 --- a/packages/ui-adapter-web-component/package.json +++ b/packages/ui-adapter-web-component/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/ui-adapter-web-component", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "Web component adapter for Univer UI", "author": "DreamNum ", diff --git a/packages/ui/package.json b/packages/ui/package.json index 9ed0344015..45876974a0 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/ui", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UniverSheet normal plugin UI manager", "author": "DreamNum ", diff --git a/packages/uniscript/package.json b/packages/uniscript/package.json index 79984a22e6..8e7830d8c2 100644 --- a/packages/uniscript/package.json +++ b/packages/uniscript/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/uniscript", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "UI component library for building exceptional Univer.", "author": "DreamNum ", diff --git a/packages/watermark/package.json b/packages/watermark/package.json index bcd5993f6f..26364400ba 100644 --- a/packages/watermark/package.json +++ b/packages/watermark/package.json @@ -1,6 +1,6 @@ { "name": "@univerjs/watermark", - "version": "0.9.1", + "version": "0.9.2", "private": false, "description": "univer watermark plugin", "author": "DreamNum ",