Upgrade to Pro

This guide covers the Univer SDK Pro Slides packages. The model, UI, and feature packages described here are published under the @univerjs-pro scope.

The parts of the documentation related to Univer SDK Pro are marked with .

What to install

Start with the Slides model and UI packages:

Bash
pnpm add @univerjs-pro/slides @univerjs-pro/slides-ui

Then add the shared Univer runtime and Pro license package used by a browser editor:

Bash
pnpm add @univerjs/core @univerjs/engine-render @univerjs/uipnpm add @univerjs/docs @univerjs/docs-ui @univerjs/drawingpnpm add @univerjs-pro/license

Optional Slides capabilities can be added only when the product needs them:

Bash
pnpm add @univerjs-pro/slides-printpnpm add @univerjs-pro/slides-table @univerjs-pro/slides-table-uipnpm add @univerjs-pro/chart-ui @univerjs-pro/slides-chart @univerjs-pro/slides-chart-uipnpm add @univerjs-pro/slides-exchange-client

License plugin

Register UniverLicensePlugin before registering Slides plugins:

TypeScript
import { UniverLicensePlugin } from '@univerjs-pro/license'import { UniverSlidesPlugin } from '@univerjs-pro/slides'import { UniverSlidesUIPlugin } from '@univerjs-pro/slides-ui'univer.registerPlugin(UniverLicensePlugin, {  license: process.env.CLIENT_LICENSE_TEXT,})univer.registerPlugin(UniverSlidesPlugin)univer.registerPlugin(UniverSlidesUIPlugin)

Server integration

Some Pro capabilities require a Univer SDK Pro Server deployment, especially import/export, storage, conversion, and collaboration-related workflows. See Univer SDK Pro Server before connecting these capabilities to production traffic.

Unlicensed limitations

When Univer SDK Pro is not licensed, Slides capabilities may be restricted:

FeatureUnlicensed limitations
Slides editorWatermark
PrintingWatermark
No more than 3 pages per print
ChartsWatermark
Only basic chart types are available
TablesWatermark
Import & ExportWatermark
Server-side conversion and file size limits depend on the Pro deployment

For information on how to license Univer SDK Pro, see the Univer SDK Pro pricing page.

How is this guide?

© 2026 DreamNum Co., Ltd.