@a3s-lab/office 0.18.0 → 0.19.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.
Files changed (26) hide show
  1. package/README.md +11 -4
  2. package/dist/0~spreadsheet-editor.js +4434 -4015
  3. package/dist/0~work-office-diagnostics.js +1 -1
  4. package/dist/4104.js +18 -9
  5. package/dist/{1992.js → 6164.js} +107 -1
  6. package/dist/core.js +1 -1
  7. package/dist/index.js +1 -1
  8. package/dist/internal/features/work/editors/spreadsheet-alignment-ribbon.d.ts +7 -0
  9. package/dist/internal/features/work/editors/spreadsheet-cell-format.d.ts +2 -0
  10. package/dist/internal/features/work/editors/spreadsheet-clipboard-ribbon.d.ts +7 -0
  11. package/dist/internal/features/work/editors/spreadsheet-command-catalog.d.ts +110 -0
  12. package/dist/internal/features/work/editors/spreadsheet-command-controller.d.ts +4 -2
  13. package/dist/internal/features/work/editors/spreadsheet-command-selection.d.ts +3 -0
  14. package/dist/internal/features/work/editors/spreadsheet-editing-ribbon.d.ts +6 -0
  15. package/dist/internal/features/work/editors/spreadsheet-keyboard-shortcut-runners.d.ts +16 -0
  16. package/dist/internal/features/work/editors/spreadsheet-keyboard-shortcuts.d.ts +3 -0
  17. package/dist/internal/features/work/editors/spreadsheet-rows-columns-ribbon.d.ts +5 -0
  18. package/dist/internal/features/work/editors/spreadsheet-selection-navigation-command.d.ts +3 -0
  19. package/dist/internal/features/work/editors/spreadsheet-structure-command.d.ts +5 -0
  20. package/dist/internal/features/work/editors/spreadsheet-text-orientation-command.d.ts +18 -0
  21. package/dist/internal/features/work/editors/spreadsheet-view-ribbon.d.ts +8 -0
  22. package/dist/internal/features/work/editors/spreadsheet-visibility-shortcuts.d.ts +3 -0
  23. package/dist/internal/features/work/work-spreadsheet-text-orientation.d.ts +21 -0
  24. package/dist/office-kernel.wasm +0 -0
  25. package/dist/styles.css +48 -0
  26. package/package.json +3 -1
package/README.md CHANGED
@@ -563,8 +563,11 @@ interaction model.
563
563
  per-cell mixed-size stepping, native rectangle compaction, a 10,000-cell
564
564
  bound, and one-step Undo, a WPS-style Underline split control with single,
565
565
  double, single-accounting, and double-accounting styles, exact Format Cells
566
- and XLSX round trips, and active-style-aware `Cmd/Ctrl+U` toggling, plus a
567
- cell-border split control with side, all,
566
+ and XLSX round trips, and active-style-aware `Cmd/Ctrl+U` toggling, a
567
+ keyboard-accessible WPS Text Orientation menu with horizontal, both 45-degree
568
+ angles, stacked vertical, rotate-up, and rotate-down choices, exact Fortune
569
+ `rt` / `tr='3'` and OOXML 0–180 / 255 round trips, a 10,000-cell guard, and
570
+ one-batch Undo, plus a cell-border split control with side, all,
568
571
  outside, inside, horizontal, vertical, clear, and diagonal targets, ten
569
572
  native line styles, exact color selection, compact overlapping range writes,
570
573
  `Cmd/Ctrl+Shift+&` Outside Borders and `Cmd/Ctrl+Shift+_` Clear Borders,
@@ -573,8 +576,11 @@ interaction model.
573
576
  sorting plus WPS-style AutoFilter under Data, finite current-region discovery,
574
577
  `Cmd/Ctrl+Shift+L` toggling, an `Alt+ArrowDown` keyboard filter menu,
575
578
  a Home and Cells Rows and Columns menu for inserting above, below, left, or
576
- right and deleting selected rows or columns through the shared structure
577
- command port, a Home and Alignment Merge and Center split control with
579
+ right, deleting selected rows or columns, and hiding or unhiding rows and
580
+ columns through the shared structure command port, including grid-scoped
581
+ `Cmd/Ctrl+9`, `Cmd/Ctrl+0`, `Cmd/Ctrl+Shift+9`, and `Cmd/Ctrl+Shift+0`
582
+ shortcuts with 10,000-row and 1,000-column allocation guards, a Home and
583
+ Alignment Merge and Center split control with
578
584
  Merge Cells, Merge Across, Unmerge Cells, Unmerge and Fill, and the WPS
579
585
  `Ctrl+M` shortcut through one controlled native workbook batch,
580
586
  a Home and Editing Clear menu for independently removing content, formats,
@@ -1522,6 +1528,7 @@ without hard-coded return URLs.
1522
1528
 
1523
1529
  - [Live Playground](https://a3s-lab.github.io/Office/)
1524
1530
  - [Documentation center](https://a3s-lab.github.io/Office/docs/)
1531
+ - [A3S Office 0.19.0 documentation](https://a3s-lab.github.io/Office/docs/0.19.0/)
1525
1532
  - [A3S Office 0.18.0 documentation](https://a3s-lab.github.io/Office/docs/0.18.0/)
1526
1533
  - [A3S Office 0.17.0 documentation](https://a3s-lab.github.io/Office/docs/0.17.0/)
1527
1534
  - [A3S Office 0.16.0 documentation](https://a3s-lab.github.io/Office/docs/0.16.0/)