@a3s-lab/office 0.16.0 → 0.18.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 +10 -1
- package/dist/0~spreadsheet-editor.js +456 -49
- package/dist/0~work-office-diagnostics.js +1 -1
- package/dist/{2180.js → 1992.js} +59 -1
- package/dist/4104.js +10 -11
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/dist/internal/features/work/editors/spreadsheet-cell-format.d.ts +2 -1
- package/dist/internal/features/work/editors/spreadsheet-command-catalog.d.ts +38 -0
- package/dist/internal/features/work/editors/spreadsheet-command-controller.d.ts +2 -0
- package/dist/internal/features/work/editors/spreadsheet-font-size-command.d.ts +18 -0
- package/dist/internal/features/work/editors/spreadsheet-font-size.d.ts +4 -0
- package/dist/internal/features/work/editors/spreadsheet-format-cells-dialog-model.d.ts +3 -2
- package/dist/internal/features/work/editors/spreadsheet-underline-ribbon.d.ts +6 -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 +128 -4
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -558,9 +558,16 @@ interaction model.
|
|
|
558
558
|
Format Painter with
|
|
559
559
|
single-use and double-click locked
|
|
560
560
|
sessions, cross-sheet range-pattern tiling, Escape cancellation, and native
|
|
561
|
-
style-only writes,
|
|
561
|
+
style-only writes, Home and Font Grow/Shrink Font commands with
|
|
562
|
+
`Cmd/Ctrl+Shift+.` / `Cmd/Ctrl+]` and `Cmd/Ctrl+Shift+,` / `Cmd/Ctrl+[` aliases,
|
|
563
|
+
per-cell mixed-size stepping, native rectangle compaction, a 10,000-cell
|
|
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, plus a
|
|
567
|
+
cell-border split control with side, all,
|
|
562
568
|
outside, inside, horizontal, vertical, clear, and diagonal targets, ten
|
|
563
569
|
native line styles, exact color selection, compact overlapping range writes,
|
|
570
|
+
`Cmd/Ctrl+Shift+&` Outside Borders and `Cmd/Ctrl+Shift+_` Clear Borders,
|
|
564
571
|
single-update undo, and grid-focus restoration, Conditional Formatting under
|
|
565
572
|
Home and Styles, executable
|
|
566
573
|
sorting plus WPS-style AutoFilter under Data, finite current-region discovery,
|
|
@@ -1515,6 +1522,8 @@ without hard-coded return URLs.
|
|
|
1515
1522
|
|
|
1516
1523
|
- [Live Playground](https://a3s-lab.github.io/Office/)
|
|
1517
1524
|
- [Documentation center](https://a3s-lab.github.io/Office/docs/)
|
|
1525
|
+
- [A3S Office 0.18.0 documentation](https://a3s-lab.github.io/Office/docs/0.18.0/)
|
|
1526
|
+
- [A3S Office 0.17.0 documentation](https://a3s-lab.github.io/Office/docs/0.17.0/)
|
|
1518
1527
|
- [A3S Office 0.16.0 documentation](https://a3s-lab.github.io/Office/docs/0.16.0/)
|
|
1519
1528
|
- [A3S Office 0.15.0 documentation](https://a3s-lab.github.io/Office/docs/0.15.0/)
|
|
1520
1529
|
- [A3S Office 0.14.0 documentation](https://a3s-lab.github.io/Office/docs/0.14.0/)
|