@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 +30 -9
- package/lib/cjs/index.js +216 -202
- package/lib/es/index.js +216 -202
- package/lib/index.js +216 -202
- package/lib/umd/index.js +1 -1
- package/package.json +12 -10
- package/LICENSE +0 -176
- package/lib/types/model/filter-util/manual.d.ts +0 -22
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# @univerjs/sheets-table
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://npmjs.com/package/@univerjs/sheets-table)
|
|
4
|
+
[](https://npmjs.com/package/@univerjs/sheets-table)
|
|
5
|
+
[](https://npmjs.com/package/@univerjs/sheets-table)
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
+
|