arthub-table 0.2.23 → 0.2.25-next.0
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 +0 -13
- package/dist/arthub-table.common.js +1 -1
- package/dist/arthub-table.common.js.map +1 -1
- package/dist/arthub-table.umd.js +1 -1
- package/dist/arthub-table.umd.js.map +1 -1
- package/dist/arthub-table.umd.min.js +1 -1
- package/dist/arthub-table.umd.min.js.map +1 -1
- package/dist/types/core/Body.d.ts +7 -0
- package/dist/types/core/DataGrid.d.ts +158 -3
- package/dist/types/core/Events.d.ts +5 -0
- package/dist/types/core/GroupRow.d.ts +13 -0
- package/dist/types/core/Row.d.ts +1 -1
- package/dist/types/core/types.d.ts +7 -0
- package/dist/types/core/util.d.ts +17 -1
- package/dist/types/core/viewers/ImageViewer.d.ts +11 -0
- package/dist/types/core/viewers/types.d.ts +38 -0
- package/dist/types/testing/TestHooks.d.ts +42 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -507,19 +507,6 @@ datagrid.value?.clearValidations();
|
|
|
507
507
|
|
|
508
508
|
---
|
|
509
509
|
|
|
510
|
-
### 12. Undo / Redo
|
|
511
|
-
|
|
512
|
-
Built-in keyboard shortcuts:
|
|
513
|
-
|
|
514
|
-
| Shortcut | Action |
|
|
515
|
-
| ------------------------ | -------------- |
|
|
516
|
-
| `Ctrl+Z` / `Cmd+Z` | Undo last edit |
|
|
517
|
-
| `Ctrl+Y` / `Cmd+Shift+Z` | Redo last undo |
|
|
518
|
-
|
|
519
|
-
> History is automatically tracked for `doneEdit()`, `pasteData()`, `autofillData()`, and `clearSelectedData()` operations. Max 20 history entries.
|
|
520
|
-
|
|
521
|
-
---
|
|
522
|
-
|
|
523
510
|
### Complete Example
|
|
524
511
|
|
|
525
512
|
See `App.vue` for interactive demonstrations of all these patterns. The toolbar includes buttons for:
|