🎉 Release v0.2.7 #3007
Closed
hexf00
announced in
Announcements | 公告
Replies: 1 comment
-
🎊 [email protected]🚧 重要提示该项目仍在积极开发中,预计会有重大 API 更改。您的反馈至关重要!请提交 issues 和建议,帮助我们塑造 Univer 的未来。 🚀 快速开始如果您希望了解 Univer,请查看我们的入门文档。 🎉 新功能
pnpm add @univerjs-pro/pivot-engine @univerjs-pro/sheets-pivot @univerjs-pro/sheets-pivot-ui
import '@univerjs-pro/sheets-pivot-ui/lib/index.css';
import { UniverSheetsPivotTablePlugin } from '@univerjs-pro/sheets-pivot'
import { UniverSheetsPivotTableUIPlugin } from '@univerjs-pro/sheets-pivot-ui'
import { LocaleType, Tools } from '@univerjs/core'
+ import UniverSheetsPivotEnUs from '@univerjs-pro/sheets-pivot/locale/en-US';
+ import UniverSheetsPivotUiEnUs from '@univerjs-pro/sheets-pivot-ui/locale/en-US';
const univer = new Univer({
theme: defaultTheme,
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: Tools.deepMerge(
+ UniverSheetsPivotEnUs,
+ UniverSheetsPivotUiEnUs
),
},
});
// 提示:配置项尚不稳定,请留意未来版本的更新
univer.registerPlugin(UniverSheetsPivotTablePlugin, {
notExecuteFormula: true,
isServer: true,
})
univer.registerPlugin(UniverSheetsPivotTableUIPlugin)
如需要启用此功能,请参考文档并首先安装最新的 Univer 服务器版本,已安装的用户需要更新至服务器版本到最新版本。
pnpm add @univerjs-pro/edit-history-viewer @univerjs-pro/edit-history-loader
import '@univerjs-pro/edit-history-viewer/lib/index.css'
import { UniverEditHistoryLoaderPlugin } from '@univerjs-pro/edit-history-loader'
import { LocaleType, Tools } from '@univerjs/core'
+ import EditHistoryViewerEnUS from '@univerjs-pro/edit-history-viewer/locale/en-US'
const univer = new Univer({
theme: defaultTheme,
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: Tools.deepMerge(
+ EditHistoryViewerEnUS
),
},
});
// 需要配置为 Univer 挂载的 DOM id,如果未设置,默认为univer-container
const configService = univer.__getInjector().get(IConfigService);
configService.setConfig('UNIVER_CONTAINER_ID', `univer`)
univer.registerPlugin(UniverEditHistoryLoaderPlugin)
pnpm add @univerjs/thread-comment-ui @univerjs/sheets-thread-comment
import '@univerjs/thread-comment-ui/lib/index.css'
import { UniverSheetsThreadCommentPlugin } from '@univerjs/sheets-thread-comment'
import { LocaleType, Tools } from '@univerjs/core'
+ import UniverThreadCommentUiEnUs from '@univerjs/thread-comment-ui/locale/en-US';
+ import UniverSheetsThreadCommentEnUs from '@univerjs/sheets-thread-comment/locale/en-US';
const univer = new Univer({
theme: defaultTheme,
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: Tools.deepMerge(
+ UniverThreadCommentUiEnUs
+ UniverSheetsThreadCommentEnUs
),
},
});
univer.registerPlugin(UniverSheetsThreadCommentPlugin);
pnpm add @univerjs/thread-comment-ui @univerjs/docs-thread-comment-ui
import '@univerjs/thread-comment-ui/lib/index.css'
import { UniverDocsThreadCommentUIPlugin } from '@univerjs/docs-thread-comment-ui'
import { LocaleType, Tools } from '@univerjs/core'
+ import UniverThreadCommentUiEnUs from '@univerjs/thread-comment-ui/locale/en-US';
const univer = new Univer({
theme: defaultTheme,
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: Tools.deepMerge(
+ UniverThreadCommentUiEnUs
),
},
});
univer.registerPlugin(UniverDocsThreadCommentUIPlugin);
更多详细使用方式请查阅官方文档。 🐞 Bug 修复
🎢 特别感谢感谢以下社区用户为本次发布做出的杰出贡献: 📢 加入讨论我们欢迎您的参与和见解,一起踏上这个激动人心的旅程。请通过以下方式与我们联系: 📝 更新日志完整的更新日志 (2024-08-10) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
🎊 [email protected]
🚧 Important Note
This project is still in heavy development, and major API changes are expected. Your feedback is crucial! Please submit issues and suggestions to help us shape the future of Univer.
🚀 Getting Started
If you're eager to explore Univer, check out our getting started documentation.
Dive into the world of collaborative document, spreadsheet, and presentation editing powered by Univer!
🎉 Highlights
In this release, we are excited to introduce a new set of features and improvements to enhance your Univer experience. Here are the highlights:
pivot table (beta) and restoration from history in Univer Sheet
custom style lists, to-do lists, and table insertion in Univer Doc
commenting in both documents and spreadsheets
new server APIs for querying, document deletion, and USIP, and expands formula support to 176 with a goal of over 500 formulas.
Univer Sheet Supports Pivot Table(beta)
Pivot Table
To use this feature, please refer to the documentation and install version
0.2.7
of the Univer server first.docs-thread-comment
Univer Doc supports custom styles for ordered and unordered lists, to-do lists, table insertion with nested content, and paragraph panel settings.
Univer Server adds document query API, document deletion API, and USIP API.
Formula expansion: Now supports 176 formulas with a target to support over 500 formulas.
For more information, please visit the official website documentation.
🐞 Bug Fixes
iseven
andisodd
fix(formula): fix some bugs #2920🎢 Special Thanks
Special thanks to the following contributors who have made this release possible:
📢 Join the Conversation
We welcome your input and insights as we embark on this exciting journey. Connect with us on:
📝 Changelog
Full changelog (2024-08-10)
Bug Fixes
Features
This discussion was created from the release 🎉 Release v0.2.7.
Beta Was this translation helpful? Give feedback.
All reactions