@a3s-lab/office 0.17.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.
- package/README.md +14 -3
- package/dist/0~spreadsheet-editor.js +4567 -4014
- package/dist/0~work-office-diagnostics.js +1 -1
- package/dist/4104.js +27 -19
- package/dist/{2180.js → 6164.js} +165 -1
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/dist/internal/features/work/editors/spreadsheet-alignment-ribbon.d.ts +7 -0
- package/dist/internal/features/work/editors/spreadsheet-cell-format.d.ts +4 -1
- package/dist/internal/features/work/editors/spreadsheet-clipboard-ribbon.d.ts +7 -0
- package/dist/internal/features/work/editors/spreadsheet-command-catalog.d.ts +110 -0
- package/dist/internal/features/work/editors/spreadsheet-command-controller.d.ts +4 -2
- package/dist/internal/features/work/editors/spreadsheet-command-selection.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-editing-ribbon.d.ts +6 -0
- package/dist/internal/features/work/editors/spreadsheet-format-cells-dialog-model.d.ts +3 -2
- package/dist/internal/features/work/editors/spreadsheet-keyboard-shortcut-runners.d.ts +16 -0
- package/dist/internal/features/work/editors/spreadsheet-keyboard-shortcuts.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-rows-columns-ribbon.d.ts +5 -0
- package/dist/internal/features/work/editors/spreadsheet-selection-navigation-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-structure-command.d.ts +5 -0
- package/dist/internal/features/work/editors/spreadsheet-text-orientation-command.d.ts +18 -0
- package/dist/internal/features/work/editors/spreadsheet-underline-ribbon.d.ts +6 -0
- package/dist/internal/features/work/editors/spreadsheet-view-ribbon.d.ts +8 -0
- package/dist/internal/features/work/editors/spreadsheet-visibility-shortcuts.d.ts +3 -0
- package/dist/internal/features/work/work-spreadsheet-text-orientation.d.ts +21 -0
- package/dist/internal/features/work/work-spreadsheet-underline.d.ts +8 -0
- package/dist/internal/features/work/work-xlsx-cell-style-xml.d.ts +2 -1
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +161 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -561,7 +561,13 @@ interaction model.
|
|
|
561
561
|
style-only writes, Home and Font Grow/Shrink Font commands with
|
|
562
562
|
`Cmd/Ctrl+Shift+.` / `Cmd/Ctrl+]` and `Cmd/Ctrl+Shift+,` / `Cmd/Ctrl+[` aliases,
|
|
563
563
|
per-cell mixed-size stepping, native rectangle compaction, a 10,000-cell
|
|
564
|
-
bound, and one-step Undo,
|
|
564
|
+
bound, and one-step Undo, a WPS-style Underline split control with single,
|
|
565
|
+
double, single-accounting, and double-accounting styles, exact Format Cells
|
|
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,
|
|
565
571
|
outside, inside, horizontal, vertical, clear, and diagonal targets, ten
|
|
566
572
|
native line styles, exact color selection, compact overlapping range writes,
|
|
567
573
|
`Cmd/Ctrl+Shift+&` Outside Borders and `Cmd/Ctrl+Shift+_` Clear Borders,
|
|
@@ -570,8 +576,11 @@ interaction model.
|
|
|
570
576
|
sorting plus WPS-style AutoFilter under Data, finite current-region discovery,
|
|
571
577
|
`Cmd/Ctrl+Shift+L` toggling, an `Alt+ArrowDown` keyboard filter menu,
|
|
572
578
|
a Home and Cells Rows and Columns menu for inserting above, below, left, or
|
|
573
|
-
right
|
|
574
|
-
|
|
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
|
|
575
584
|
Merge Cells, Merge Across, Unmerge Cells, Unmerge and Fill, and the WPS
|
|
576
585
|
`Ctrl+M` shortcut through one controlled native workbook batch,
|
|
577
586
|
a Home and Editing Clear menu for independently removing content, formats,
|
|
@@ -1519,6 +1528,8 @@ without hard-coded return URLs.
|
|
|
1519
1528
|
|
|
1520
1529
|
- [Live Playground](https://a3s-lab.github.io/Office/)
|
|
1521
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/)
|
|
1532
|
+
- [A3S Office 0.18.0 documentation](https://a3s-lab.github.io/Office/docs/0.18.0/)
|
|
1522
1533
|
- [A3S Office 0.17.0 documentation](https://a3s-lab.github.io/Office/docs/0.17.0/)
|
|
1523
1534
|
- [A3S Office 0.16.0 documentation](https://a3s-lab.github.io/Office/docs/0.16.0/)
|
|
1524
1535
|
- [A3S Office 0.15.0 documentation](https://a3s-lab.github.io/Office/docs/0.15.0/)
|