@univerjs/sheets-table 0.21.1 → 0.22.0-insiders.20260513-09bbeca

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,12 +1,28 @@
1
1
  # @univerjs/sheets-table
2
2
 
3
- ### Installation
3
+ [![npm version](https://img.shields.io/npm/v/@univerjs/sheets-table?style=flat-square)](https://npmjs.com/package/@univerjs/sheets-table)
4
+ [![license](https://img.shields.io/npm/l/@univerjs/sheets-table?style=flat-square)](https://npmjs.com/package/@univerjs/sheets-table)
5
+ [![downloads](https://img.shields.io/npm/dm/@univerjs/sheets-table?style=flat-square)](https://npmjs.com/package/@univerjs/sheets-table)
4
6
 
5
- ```shell
6
- npm i @univerjs/sheets-table
7
+ `@univerjs/sheets-table` adds the core table model and commands for binding structured table data in Univer Sheets.
8
+
9
+ ## Package Overview
10
+
11
+ | Package | UMD global | CSS | Locales | Facade entry |
12
+ | --- | --- | :---: | :---: | :---: |
13
+ | `@univerjs/sheets-table` | `UniverSheetsTable` | No | No | Yes |
14
+
15
+ ## Installation
16
+
17
+ ```sh
18
+ pnpm add @univerjs/sheets-table
19
+ # or
20
+ npm install @univerjs/sheets-table
7
21
  ```
8
22
 
9
- ### Import
23
+ Keep all `@univerjs/*` packages on the same version.
24
+
25
+ ## Usage
10
26
 
11
27
  ```ts
12
28
  import { UniverSheetsTablePlugin } from '@univerjs/sheets-table';
@@ -14,8 +30,13 @@ import { UniverSheetsTablePlugin } from '@univerjs/sheets-table';
14
30
  univer.registerPlugin(UniverSheetsTablePlugin);
15
31
  ```
16
32
 
17
- <!-- Links -->
18
- [npm-version-shield]: https://img.shields.io/npm/v/@univerjs/sheets-table?style=flat-square
19
- [npm-version-link]: https://npmjs.com/package/@univerjs/sheets-table
20
- [npm-license-shield]: https://img.shields.io/npm/l/@univerjs/sheets-table?style=flat-square
21
- [npm-downloads-shield]: https://img.shields.io/npm/dm/@univerjs/sheets-table?style=flat-square
33
+ ## Integration Notes
34
+
35
+ Use this package with `@univerjs/sheets-table-ui` when users need table controls in the sheet UI.
36
+
37
+ ## Resources
38
+
39
+ - [Documentation](https://docs.univer.ai)
40
+ - [NPM package](https://npmjs.com/package/@univerjs/sheets-table)
41
+ - [GitHub repository](https://github.com/dream-num/univer)
42
+