@univerjs/ui-adapter-web-component
v1.0.0
Published
Web Component adapter for Univer UI services.
Downloads
107,056
Readme
@univerjs/ui-adapter-web-component
@univerjs/ui-adapter-web-component adapts Univer UI services for Web Component integrations.
Package Overview
| Package | UMD global | CSS | Locales | Facade entry |
| --- | --- | :---: | :---: | :---: |
| @univerjs/ui-adapter-web-component | UniverUiAdapterWebComponent | No | No | No |
Installation
pnpm add @univerjs/ui-adapter-web-component
# or
npm install @univerjs/ui-adapter-web-componentKeep all @univerjs/* packages on the same version.
Usage
import { UniverWebComponentAdapterPlugin } from '@univerjs/ui-adapter-web-component';
univer.registerPlugin(UniverWebComponentAdapterPlugin);Register custom elements with the web-component framework option. Runtime props are assigned to the created element as DOM properties, which supports object values such as data and extraProps.
class MyPopup extends HTMLElement {
set data(value: { label?: string } | undefined) {
this.textContent = value?.label ?? '';
}
}
univerAPI.registerComponent('my-popup', MyPopup, { framework: 'web-component' });