@univerjs/core 0.6.3 → 0.6.4-nightly.202503101606
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/lib/cjs/index.js +8 -8
- package/lib/es/facade.js +2 -2
- package/lib/es/index.js +1369 -1341
- package/lib/types/facade/f-univer.d.ts +2 -2
- package/lib/types/services/undoredo/undoredo.service.d.ts +6 -0
- package/lib/types/shared/rectangle.d.ts +19 -0
- package/lib/types/sheets/sheet-skeleton.d.ts +2 -1
- package/lib/types/sheets/worksheet.d.ts +1 -1
- package/lib/umd/index.js +9 -9
- package/package.json +6 -6
- package/LICENSE +0 -176
package/lib/es/facade.js
CHANGED
|
@@ -1155,7 +1155,7 @@ let U = class extends V {
|
|
|
1155
1155
|
*
|
|
1156
1156
|
* @example
|
|
1157
1157
|
* ```ts
|
|
1158
|
-
* univerAPI.undo();
|
|
1158
|
+
* await univerAPI.undo();
|
|
1159
1159
|
* ```
|
|
1160
1160
|
*/
|
|
1161
1161
|
undo() {
|
|
@@ -1167,7 +1167,7 @@ let U = class extends V {
|
|
|
1167
1167
|
*
|
|
1168
1168
|
* @example
|
|
1169
1169
|
* ```ts
|
|
1170
|
-
* univerAPI.redo();
|
|
1170
|
+
* await univerAPI.redo();
|
|
1171
1171
|
* ```
|
|
1172
1172
|
*/
|
|
1173
1173
|
redo() {
|