@a3s-lab/office 0.14.0 → 0.15.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 +13 -1
- package/dist/0~spreadsheet-editor.js +3676 -1902
- package/dist/0~work-office-diagnostics.js +1 -1
- package/dist/{4476.js → 2180.js} +34 -1
- package/dist/4104.js +41 -19
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/dist/internal/features/work/editors/spreadsheet-command-catalog.d.ts +23 -0
- package/dist/internal/features/work/editors/spreadsheet-command-controller.d.ts +18 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation.d.ts +50 -0
- package/dist/internal/features/work/editors/spreadsheet-editor-support.d.ts +1 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink.d.ts +44 -0
- package/dist/internal/features/work/editors/use-spreadsheet-data-validation.d.ts +23 -0
- package/dist/internal/features/work/editors/use-spreadsheet-hyperlink.d.ts +24 -0
- package/dist/internal/features/work/work-spreadsheet-data-validation.d.ts +2 -0
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +297 -0
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -534,7 +534,18 @@ interaction model.
|
|
|
534
534
|
modes, arithmetic operations, Skip blanks, Transpose, translated formula
|
|
535
535
|
references, rich same-editor styles/comments/validation/merges/column widths,
|
|
536
536
|
bounded TSV fallback, one-step Undo, and fail-closed protected or unsafe
|
|
537
|
-
targets,
|
|
537
|
+
targets, an Insert and Links Hyperlink command with grid-scoped `Cmd/Ctrl+K`,
|
|
538
|
+
accessible Web page, cell-range, and worksheet targets, explicit Edit and
|
|
539
|
+
Remove, immutable dense/sparse updates, content/style/comment preservation,
|
|
540
|
+
exact focus restoration, one-step Undo, and fail-closed unsafe, hidden,
|
|
541
|
+
protected, pivot, or out-of-bounds targets, a Data and Data Tools Validation
|
|
542
|
+
command for lists, whole numbers, decimals, dates, and text length across
|
|
543
|
+
multiple ranges, compact rule writes and removal, input messages,
|
|
544
|
+
invalid-input blocking, 1900/1904-aware XLSX date round trips, exact focus
|
|
545
|
+
restoration, one-step Undo, and fail-closed protected, merged, pivot,
|
|
546
|
+
read-only, invalid, out-of-bounds, or over-10,000-cell targets, a WPS-style
|
|
547
|
+
Format Painter with
|
|
548
|
+
single-use and double-click locked
|
|
538
549
|
sessions, cross-sheet range-pattern tiling, Escape cancellation, and native
|
|
539
550
|
style-only writes, a Home and Font cell-border split control with side, all,
|
|
540
551
|
outside, inside, horizontal, vertical, clear, and diagonal targets, ten
|
|
@@ -1484,6 +1495,7 @@ without hard-coded return URLs.
|
|
|
1484
1495
|
|
|
1485
1496
|
- [Live Playground](https://a3s-lab.github.io/Office/)
|
|
1486
1497
|
- [Documentation center](https://a3s-lab.github.io/Office/docs/)
|
|
1498
|
+
- [A3S Office 0.15.0 documentation](https://a3s-lab.github.io/Office/docs/0.15.0/)
|
|
1487
1499
|
- [A3S Office 0.14.0 documentation](https://a3s-lab.github.io/Office/docs/0.14.0/)
|
|
1488
1500
|
- [A3S Office 0.13.1 documentation](https://a3s-lab.github.io/Office/docs/0.13.1/)
|
|
1489
1501
|
- [A3S Office 0.13.0 documentation](https://a3s-lab.github.io/Office/docs/0.13.0/)
|