@a3s-lab/office 0.39.0 → 0.41.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 +20 -2
- package/dist/{0~7240.js → 0~2330.js} +897 -641
- package/dist/0~5024.js +240 -240
- package/dist/0~document-editor.js +1 -0
- package/dist/0~spreadsheet-editor.js +169 -2
- package/dist/0~work-docx-export.js +1023 -922
- package/dist/0~work-docx-import.js +13 -4
- package/dist/0~work-office-diagnostics.js +96 -94
- package/dist/4174.js +497 -233
- package/dist/internal/features/work/editors/spreadsheet-data-validation-interaction.d.ts +23 -0
- package/dist/internal/features/work/work-document-format-change-tracking.d.ts +1 -1
- package/dist/internal/features/work/work-document-numbering-change-tracking.d.ts +7 -0
- package/dist/internal/features/work/work-document-numbering-changes.d.ts +29 -0
- package/dist/internal/features/work/work-docx-import.d.ts +7 -5
- package/dist/internal/features/work/work-docx-list-export.d.ts +1 -0
- package/dist/internal/features/work/work-docx-numbering-change-export.d.ts +13 -0
- package/dist/internal/features/work/work-docx-numbering-change-import.d.ts +17 -0
- package/dist/internal/features/work/work-types.d.ts +1 -1
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +13 -0
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -309,8 +309,26 @@ and [CLI reference](./docs/latest/en/cli-reference.md).
|
|
|
309
309
|
|
|
310
310
|
## Current release
|
|
311
311
|
|
|
312
|
-
Version `0.
|
|
313
|
-
|
|
312
|
+
Version `0.41.0` aligns Spreadsheet data-validation alerts with the local,
|
|
313
|
+
testable interaction model used by Traditional Office:
|
|
314
|
+
|
|
315
|
+
- Stop blocks an invalid edit with an accessible notice. Warning and
|
|
316
|
+
Information ask whether the invalid value should be kept, using the authored
|
|
317
|
+
title and message plus the current input so the decision is explicit.
|
|
318
|
+
- Keeping a Warning or Information value commits it once through the controlled
|
|
319
|
+
workbook API; cancelling restores the original value. Selection, focus,
|
|
320
|
+
Undo, and collaboration remain on the same bounded edit path, and native
|
|
321
|
+
XLSX `errorStyle` metadata remains lossless on reopen.
|
|
322
|
+
|
|
323
|
+
Version `0.40.0` extends Writer's local, testable review workflow with atomic
|
|
324
|
+
ordered-list numbering revisions:
|
|
325
|
+
|
|
326
|
+
- Tracked numbering-style and starting-number changes now appear as one
|
|
327
|
+
Numbering review card per ordered-list range. Accept keeps the current list;
|
|
328
|
+
reject restores the exact bounded baseline; Undo, Yjs/Yrs collaboration, and
|
|
329
|
+
immutable decisions share the same intent identity. Common single-level
|
|
330
|
+
decimal, letter, and Roman `w:numberingChange` records round-trip through
|
|
331
|
+
DOCX, while malformed or structurally ambiguous records fail closed.
|
|
314
332
|
|
|
315
333
|
- A slide object can now own one entrance and one exit animation. The shared
|
|
316
334
|
object-centric Animation tab authors appear/disappear, fade in/out, fly in/out,
|