@univerjs/sheets-ui 0.1.1 → 0.1.2
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 +12 -2
- package/lib/cjs/index.js +10 -10
- package/lib/es/index.js +1855 -1823
- package/lib/types/commands/commands/utils/selection-utils.d.ts +6 -0
- package/lib/umd/index.js +10 -10
- package/package.json +19 -19
package/README.md
CHANGED
|
@@ -5,12 +5,22 @@
|
|
|
5
5
|
|
|
6
6
|
## Introduction
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
The `@univerjs/sheets-ui` library provides the user interface (UI) for sheets, including:
|
|
9
|
+
|
|
10
|
+
* Keyboard shortcuts and menu items for basic sheet functions
|
|
11
|
+
* Copy-paste service, allowing customization of copy-paste behavior for specific features via the provided methods
|
|
12
|
+
* Autofill service, enabling customization of autofill behavior for specific features via the provided methods
|
|
13
|
+
* Cell editor and formula editor
|
|
14
|
+
* Rendering spreadsheets in canvas
|
|
9
15
|
|
|
10
16
|
## Usage
|
|
11
17
|
|
|
12
18
|
### Installation
|
|
13
19
|
|
|
14
20
|
```shell
|
|
15
|
-
|
|
21
|
+
# Using npm
|
|
22
|
+
npm install @univerjs/sheets-ui
|
|
23
|
+
|
|
24
|
+
# Using pnpm
|
|
25
|
+
pnpm add @univerjs/sheets-ui
|
|
16
26
|
```
|