@a3s-lab/office 0.38.1 → 0.40.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 +18 -4
- package/dist/{0~7240.js → 0~2330.js} +897 -641
- package/dist/0~5024.js +240 -240
- package/dist/0~7828.js +51 -29
- package/dist/0~document-editor.js +1 -0
- package/dist/0~presentation-editor.js +264 -118
- 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/0~work-pptx-import.js +1 -1
- package/dist/0~work-presentation-transition.js +38 -0
- package/dist/4121.js +42 -9
- package/dist/4174.js +497 -233
- package/dist/4560.js +124 -9
- package/dist/internal/features/work/editors/presentation-animation-panel.d.ts +9 -7
- package/dist/internal/features/work/editors/presentation-command-types.d.ts +10 -10
- package/dist/internal/features/work/editors/presentation-slide-canvas.d.ts +6 -4
- package/dist/internal/features/work/editors/use-presentation-animation-commands.d.ts +7 -7
- 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-presentation-animation.d.ts +6 -2
- package/dist/internal/features/work/work-presentation-clipboard.d.ts +0 -5
- package/dist/internal/features/work/work-types.d.ts +8 -4
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +162 -26
- package/package.json +8 -5
- package/dist/0~5809.js +0 -123
package/README.md
CHANGED
|
@@ -116,8 +116,8 @@ package and one set of bounded contracts.
|
|
|
116
116
|
formulas, tables, formatting, sort/filter, validation, pivots, charts, and
|
|
117
117
|
print workflows.
|
|
118
118
|
- **Presentation** (`PPTX`) — slides, typed scene objects, masters/layouts,
|
|
119
|
-
transitions, bounded entrance animations, notes, slideshow, and
|
|
120
|
-
view.
|
|
119
|
+
transitions, bounded entrance/exit animations, notes, slideshow, and
|
|
120
|
+
presenter view.
|
|
121
121
|
- **Markdown** (`MD`) — GFM source, visual mode, split preview, direct round
|
|
122
122
|
trips, and native automation.
|
|
123
123
|
- **PDF** — PDFium rendering, search, forms, annotations, history, save, and
|
|
@@ -309,8 +309,22 @@ and [CLI reference](./docs/latest/en/cli-reference.md).
|
|
|
309
309
|
|
|
310
310
|
## Current release
|
|
311
311
|
|
|
312
|
-
Version `0.
|
|
313
|
-
|
|
312
|
+
Version `0.40.0` extends Writer's local, testable review workflow with atomic
|
|
313
|
+
ordered-list numbering revisions:
|
|
314
|
+
|
|
315
|
+
- Tracked numbering-style and starting-number changes now appear as one
|
|
316
|
+
Numbering review card per ordered-list range. Accept keeps the current list;
|
|
317
|
+
reject restores the exact bounded baseline; Undo, Yjs/Yrs collaboration, and
|
|
318
|
+
immutable decisions share the same intent identity. Common single-level
|
|
319
|
+
decimal, letter, and Roman `w:numberingChange` records round-trip through
|
|
320
|
+
DOCX, while malformed or structurally ambiguous records fail closed.
|
|
321
|
+
|
|
322
|
+
- A slide object can now own one entrance and one exit animation. The shared
|
|
323
|
+
object-centric Animation tab authors appear/disappear, fade in/out, fly in/out,
|
|
324
|
+
and zoom in/out effects with one ordered trigger, timing, direction, preview,
|
|
325
|
+
collaboration, clipboard, and Undo model. Browser playback and native PPTX
|
|
326
|
+
timing-tree import/export retain both classes, while malformed or overlapping
|
|
327
|
+
sequences fail closed with diagnostics.
|
|
314
328
|
|
|
315
329
|
- The documentation now includes a first-class bilingual, version-aware
|
|
316
330
|
[What's new](https://a3s-lab.github.io/Office/docs/changelog.html) timeline.
|