Skip to content

Releases: dream-num/univer

🎉 Release v0.2.7

10 Aug 04:23
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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)

  1. Install the following packages:
pnpm add @univerjs-pro/pivot-engine @univerjs-pro/sheets-pivot @univerjs-pro/sheets-pivot-ui
  1. Import the plugins:
import '@univerjs-pro/sheets-pivot-ui/lib/index.css';

import { UniverSheetsPivotTablePlugin } from '@univerjs-pro/sheets-pivot'
import { UniverSheetsPivotTableUIPlugin } from '@univerjs-pro/sheets-pivot-ui'
  1. Add locale resources:
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
    ),
  },
});
  1. Register the plugin:
// tip: Please note that the configs in the beta version are not stable, and be mindful of future updates.
univer.registerPlugin(UniverSheetsPivotTablePlugin, {
  notExecuteFormula: true,
  isServer: true,
})
univer.registerPlugin(UniverSheetsPivotTableUIPlugin)

Univer Sheet supports restoration from history.

To use this feature, please refer to the documentation and install version 0.2.7 of the Univer server first.

  1. Install the following packages:
pnpm add @univerjs-pro/edit-history-viewer @univerjs-pro/edit-history-loader
  1. Import the plugins:
import '@univerjs-pro/edit-history-viewer/lib/index.css'

import { UniverEditHistoryLoaderPlugin } from '@univerjs-pro/edit-history-loader'
  1. Add locale resources:
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
    ),
  },
});
  1. Register the plugin:
// need equal to the univer container id, if not set, default is univer-container
const configService = univer.__getInjector().get(IConfigService);
configService.setConfig('UNIVER_CONTAINER_ID', `univer`)
univer.registerPlugin(UniverEditHistoryLoaderPlugin)

Univer Sheet supports comments

  1. Install the following packages:
pnpm add @univerjs/thread-comment-ui @univerjs/sheets-thread-comment
  1. Import the plugins:
import '@univerjs/thread-comment-ui/lib/index.css'

import { UniverSheetsThreadCommentPlugin } from '@univerjs/sheets-thread-comment'
  1. Add locale resources:
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
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverSheetsThreadCommentPlugin);

Univer Doc supports comments

  1. Install the following packages:
pnpm add @univerjs/thread-comment-ui @univerjs/docs-thread-comment-ui
  1. Import the plugins:
import '@univerjs/thread-comment-ui/lib/index.css'

import { UniverDocsThreadCommentUIPlugin } from '@univerjs/docs-thread-comment-ui'
  1. Add locale resources:
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
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverDocsThreadCommentUIPlugin);
  • 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

  • fix DataValidation config ui styles #2991
  • fix formula iseven and isodd #2920
  • fix formula sheet name uppercase bug #2908
  • fix data-validation ref-range error init form snapshot & support hyperlink target #2975
  • fix can not add custom formula #2915

🎢 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

  • add range type when create selection (#2965) (ff6a667)
  • add rect ranges to share cursor (#2942) (1d5d42f)
  • add table create row col limit to 20 (#2967) (04accd2)
  • adjust toolbar item position in uni-mode (#2987) (285cdf5)
  • can not edit in footer (#2956) (28c951b)
  • can not insert table in link (#2960) (7448724)
  • can not select text when the last page ends with table (#2954) (d5d3b39)
  • change element to save editing state & update doc sk after resize (#2950) (35b0bac)
  • col visible (#2981) (184ffdd)
  • conditional-formatting: can not add custom formula (#2915) (e9435ee)
  • conditional-formatting: fixed a performance issue during the initialization phase of the conditional format (#2919) (8ddc701)
  • context menu disable status (#2943) (510c178)
  • context menu should not clear selections (#2949) (b5fcb55)
  • core: fix editor set focus element by mistake (9b0ba21)
  • core: fix resource loader not work for created units (#2996) (9df348d)
  • core: fix resource manager get unrelated data (#2989) (b29cf76)
  • data-validation ref-range error init form snapshot & support hyperlink target ([#2975](#2...
Read more

🎉 Release v0.2.6

02 Aug 08:47
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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:

  • Added 4 text formulas, 1 math formulas, and 10 find reference formulas. (169/508 formulas supported) #2842
  • Support for custom number formats #2888
  • @univerjs-pro/sheets-print now supports screenshots, with a right-click menu option to copy as an image.

🐞 Bug Fixes

  • When destroying a Univer instance, leftover DOM from custom Vue3 components will be cleaned up #2892
  • Fix error occurring after input cancellation #2907

💔 Breaking Changes

  • Adjustments to the import and export plugin @univerjs-pro/sheets-exchange-client introduction
  1. Install the following packages:
-pnpm add @univerjs-pro/sheets-exchange-client
+pnpm add @univerjs-pro/exchange-client @univerjs-pro/sheets-exchange-client
  1. Import the plugins:
-import '@univerjs-pro/sheets-exchange-client/lib/index.css';
+import '@univerjs-pro/exchange-client/lib/index.css';
  1. Add locale resources:
-import SheetsExchangeClientEnUS from '@univerjs-pro/sheets-exchange-client/locale/en-US';
+import ExchangeClientEnUS from '@univerjs-pro/exchange-client/locale/en-US';

const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
-     SheetsExchangeClientEnUS
+     ExchangeClientEnUS
    ),
  },
});
  • Plugin developers should be aware that the Injector parameter in onStarting will be deprecated in upcoming versions. Please transition to using class properties promptly #2903
export class UniverXXXPlugin extends Plugin {
    static override type = UniverInstanceType.UNIVER_DOC;
    static override pluginName = PLUGIN_NAME;

    constructor(
        private _config: unknown,
        @Inject(Injector) protected override _injector: Injector
    ) {
        super();
    }

-    override onStarting(injector: Injector): void {
+    override onStarting(): void {
-        injector.add(dep);
+        this._injector.add(dep);
    }
}

📢 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-02)

Bug Fixes

  • doc: list update (#2862) (b045042)
  • docs-drawing: formula ts error & docs-drawing load error (#2879) (1182bee)
  • drawing: update (#2871) (1880552)
  • formula: fix formula parameter assignment (#2905) (8fb9655)
  • ref selection should call updateSelection after skelenton change (#2839) (d37f669)
  • sheet: fix expand range performance (#2882) (0de3488)
  • sheet: parse snapshot string (#2897) (f4fe38d)
  • ui: ensure container DOM is removed when destroying Vue 3 components (#2892) (5c38528)
  • unitId type error in handle editor invisible (#2907) (5e09017)
  • use new selectionData not workbook._worksheetSelections (#2909) (b597194)

Features

Performance Improvements

  • skip hidden row & col in sheet's extension drawing process (#2899) (5dcfaa3)

🎉 Release v0.2.5

26 Jul 07:15
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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:

  • Univer Doc supports context menus and zooming #2830
  • Added 30+ math formulas, 7 date formulas, and 3 information formulas #2761 #2798
  • Optimized table scrolling #2779
  • Enhanced formula input experience #2772

🐞 Bug Fixes

  • Improved URL recognition #2845

💔 Breaking Changes

  • The Inject related imports from redi have been moved to @univerjs/core #2801

Before:

import type { Dependency } from '@wendellhu/redi';
import { Inject, Injector } from '@wendellhu/redi';

Now:

import type { Dependency } from '@univerjs/core';
import { Inject, Injector } from '@univerjs/core';

📢 Join the Conversation

We welcome your input and insights as we embark on this exciting journey. Connect with us on:

📝 Changelog

Full changelog (2024-07-26)

Bug Fixes

Features

🎉 Release v0.2.4

19 Jul 09:46
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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:

  • Univer Doc supports headers and footers, as well as image insertion.

docs-drawing-ui

Allows you to insert images in Univer Doc.

  1. Install the following packages:
pnpm add @univerjs/docs-drawing-ui
  1. Import the plugins:
import '@univerjs/docs-drawing-ui/lib/index.css';

import { UniverDocsDrawingUIPlugin } from '@univerjs/docs-drawing-ui';
  1. Add locale resources:
import { LocaleType, Tools } from '@univerjs/core'
+ import DocsDrawingUiEnUs from '@univerjs/docs-drawing-ui/locale/en-US';


const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
+     DocsDrawingUiEnUs
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverDocsDrawingUIPlugin);
  • Added some date-related formulas #2729
  • Enhanced the ability to configure protection range pop-up #2603

🐞 Bug Fixes

  • FRange.generateHTML fix, copy-paste enhancement #2773

💔 Breaking Changes

  • Adjustments made to the unit property data structure in IParagraphStyle within IDocumentBody of Univer Doc #2760

🎢 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-07-19)

Bug Fixes

Features

🎉 Release v0.2.3

12 Jul 11:36
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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:

  • Support for formula calculation pause #2661
  • Formula: added 6 more functions #2701
  • Added Traditional Chinese(zh-TW) and Vietnamese languages (vi-VN) #2694

🐞 Bug Fixes

  • Fixed document white screen bug #2704
  • Fixed internationalization display error in the UMD version date picker #2719
  • React 16 compatibility improvements #2739 #2755

🎢 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-07-12)

Bug Fixes

  • backspace in header and footer (#2704) (749b407)
  • docs-hyper-link: hyper link resource (#2732) (1b17ec5)
  • docs: fix blank screen (#2720) (fbed267)
  • failed to get scene in scroll render controller (#2737) (987c5d2)
  • fix replace content params options (c2bbaaf)
  • formula: len counts displayed value (#2702) (ce887b0)
  • load resource (#2752) (9606194)
  • sheet: keep text formatting when setting range value (#2711) (a1a3dbc)
  • sheets-hyper-link-ui: popup observable error on react16 (#2755) (f0edc5b)
  • tons of memory leak (#2754) (3f3dcff)
  • ui: fix issue where context menu item cannot be selected in React 16 (#2739) (d971be9)
  • umd: fix issue with datepicker localization not working in UMD bundle (#2719) (962e057)

Features

Reverts

  • "chore: image menu show on insert position" (#2714) (2965f28)

🔥 Release v0.2.2

09 Jul 07:07
Compare
Choose a tag to compare

📝 Changelog

Full changelog (2024-07-09)

Bug Fixes

🔥 Release v0.2.1

08 Jul 03:00
Compare
Choose a tag to compare

📝 Changelog

Full changelog (2024-07-08)

Reverts

  • "chore: image menu show on insert position" (#2714) (c077cb3)

🎉 Release v0.2.0

06 Jul 08:50
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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!

🆕 What's new

Important

The MVP version of Univer Doc is here!
We are thrilled to announce the release of the MVP version of Univer Doc. Now, you can explore and utilize the document editing features with Univer. We welcome community members to test it out and share their feedback to help us refine and enhance the platform.

🎉 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:

Improvements

  • Added support for document headers and footers #2589
  • Introduced a new toolbar configuration option in UniverUIPlugin #2634
  • Refined the structure for command export #2642
  • Improved the functionality of copying and pasting #2631
  • Introduced new formulas: 4 time functions (e.g., NOW, TIME), 9 statistical - functions (e.g., MINIFS, AVERAGEIF), and 8 mathematical functions (e.g., SIN, COS) #2598, #2561, #2620
  • Implemented restrictions on workbook names for Excel compatibility #2660
  • Added a setEditable method to the Facade API to set the workbook to read-only #2604
  • Provided support to disable the context menu for the sheets bar #2654

docs-thread-comment

Our latest update introduces a docs thread comment feature, allowing you to comment on specific sections of a document.

  1. Install the following packages:
pnpm add @univerjs/docs-thread-comment-ui @univerjs/thread-comment @univerjs/thread-comment-ui
  1. Import the plugins:
import '@univerjs/docs-thread-comment-ui/lib/index.css';

import { UniverThreadCommentPlugin } from '@univerjs/thread-comment';
import { UniverThreadCommentUIPlugin } from '@univerjs/thread-comment-ui';
import { UniverDocsThreadCommentUIPlugin } from '@univerjs/docs-thread-comment-ui';
  1. Add locale resources:
import { LocaleType, Tools } from '@univerjs/core'
+ import DocsThreadCommentUIEnUS from '@univerjs/docs-thread-comment-ui/locale/en-US';

const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
+     DocsThreadCommentUIEnUS
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverThreadCommentPlugin);
univer.registerPlugin(UniverThreadCommentUIPlugin);
univer.registerPlugin(UniverDocsThreadCommentUIPlugin);

docs-hyper-link

Our latest update introduces a docs hyper link feature, allowing you to link to specific sections of a document.

  1. Install the following packages:
pnpm add @univerjs/docs-hyper-link @univerjs/docs-hyper-link-ui
  1. Import the plugins:
import '@univerjs/docs-hyper-link-ui/lib/index.css';

import { UniverDocsHyperLinkPlugin } from '@univerjs/docs-hyper-link';
import { UniverDocsHyperLinkUIPlugin } from '@univerjs/docs-hyper-link-ui';
  1. Add locale resources:
import { LocaleType, Tools } from '@univerjs/core'
+ import UniverDocsHyperLinkUIEnUS from '@univerjs/docs-hyper-link-ui/locale/en-US';

const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
+     UniverDocsHyperLinkUIEnUS
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverDocsHyperLinkPlugin);
univer.registerPlugin(UniverDocsHyperLinkUIPlugin);

🐞 Bug Fixes

  • Resolved the problem with the auto-fill feature #2638
  • Addressed the display issue when renaming workbooks in certain versions of React #2662
  • Corrected the positioning of formula displays #2667
  • Enhanced the copying functionality #2678
  • Improved various aspects of the formula system #2649 #2646 #2650 #2666
  • Fixed issues related to image handling #2639

💔 Breaking Changes

  • AddDataValidationCommand will be remove in the feature #2637

From v0.2.0, we have changed the package name of the conditional formatting plugin, developers need to modify the import path:

- import { SheetsConditionalFormattingPlugin } from '@univerjs/sheets-conditional-formatting'

+ import { UniverSheetsConditionalFormattingPlugin } from '@univerjs/sheets-conditional-formatting'

🎢 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-07-06)

Bug Fixes

  • add correct RU translation in Sort and Hyperlink plugins (#2685) (9616c44)
  • docs-ui: disable link & comment on header footer (#2700) (f93a229)
  • docs: backspace in header (#2703) (000e88d)
  • drawing issues (#2639) (7d35091)
  • drawing: regster by sheet transform (#2672) (59a117a)
  • editor: fix the wrong position of validate messages on initialization when the sidebar is open (#2676) (749dd74)
  • facade: fix implementation of getWrap and remove redundant getWraps method (#2675) (6e2ef32)
  • formula: ref a1:a gets name error (#2666) (692b30c)
  • formula: row range calculation error (#2649) (3dcedc2)
  • formula: ts error in averageif (#2656) (6179726)
  • optimize the the menu and prefer apply-type of auto-fill (#2638) (b1e1ef4)
  • shees-ui: add missing menu configs (#2635) (31c7dbf)
  • sheet: dependency error (#2650) (4ec356d)
  • sheet: drawing load (#2692) (2c5011e), closes #2683 #2685
  • sheet: drawing switch tab position error (#2686) (bd5293c)
  • sheet: freeze invalid (#2658) (03982b7)
  • sheet: line default error (#2641) (01c1b32)
  • sheet: pasting plain text with newline and tab characters (#2678) (de987cc)
  • sheets-ui: ensure context menu does not open on sheets tab when contextMenu is set to false (#2654) (a5ecccc)
  • sheets-ui: fix focusout issue with rename input box in lower version of React (#2662) (6f74450)
  • sheets-ui: fix formula editor's position issue in lower version of React (#2667) ([e5...
Read more

🎉 Release v0.1.17

28 Jun 08:58
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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!

🆕 What's new

🎉 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:

  • sheets-formula: Add AVERAGEA, CONCAT, and CHOOSE formulas #2606 #2613

🐞 Bug Fixes

  • Fix the issue where the format is lost when copying from Excel to univer #2612
  • Fix bugs related to conditional formatting #2608 #2601 #2605

🎢 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-06-28)

Bug Fixes

  • conditional-formatting: disable clear cf (#2601) (cf60994)
  • conditional-formatting: distinguish between settings and purges when padding down (#2605) (6dd8bbe)
  • conditional-formatting: reopen panel and update panel (#2608) (b4460ca)
  • fix some paste bugs (#2612) (cfd3227)
  • formula: remove non-existent formula ids (#2531) (656c337)
  • formula: subtotal count (#2452) (61de312)
  • icon set dropdown style (#2602) (c6e23cd)
  • move-range: add move range controller (#2609) (3950878)
  • numfmt: numfmt not render after auto fill (#2617) (111bc9f)
  • numfmt: reselect item and throw error (#2611) (9902edb)
  • range-selector: placeholder flush (#2607) (2dc7ce0)
  • sheet: duplicate sheet name copy (#2544) (50f8f4d)
  • sheet: get unhidden sheets (#2616) (bcc4034)
  • sheets-drawing: fix crash when editing text after inserting images and opening the sidebar (#2586) (5536b05)

Features

🎉 Release v0.1.16

21 Jun 07:05
Compare
Choose a tag to compare

🎊 [email protected]

Univer Banner

🚧 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!

🆕 What's new

🎉 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:

sheets-sort

Our latest update introduces a sorting feature, allowing you to easily sort and organize data within your spreadsheets.

  1. Install the following packages:
pnpm add @univerjs/sheets-sort @univerjs/sheets-sort-ui
  1. Import the plugins:
import '@univerjs/sheets-sort-ui/lib/index.css';

import { UniverSheetsSortPlugin } from '@univerjs/sheets-sort';
import { UniverSheetsSortUIPlugin } from '@univerjs/sheets-sort-ui';
  1. Add locale resources:
import { LocaleType, Tools } from '@univerjs/core'
+ import SheetsSortUIEnUS from '@univerjs/sheets-sort-ui/locale/en-US';

 
const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
+     SheetsSortUIEnUS
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverSheetsSortPlugin);
univer.registerPlugin(UniverSheetsSortUIPlugin);

🐞 Bug Fixes

  • Fixed the bug when deleting formulas. #2389
  • Corrected the import location of useObservable. #2456
  • Resolved the issue with inserting rows when columns are frozen. #2492
  • Fixed critical permission bugs affecting user collaboration and access control. #2522 #2528
  • Resolved issues with data-validation and hyperlink functionalities, improving the overall stability of the sheets module. #2527

🎢 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-06-21)

Bug Fixes

Features