docxodus 8.0.0 → 9.0.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 +65 -24
- package/dist/editor-headerfooter.d.ts +39 -3
- package/dist/editor-headerfooter.d.ts.map +1 -1
- package/dist/editor-headerfooter.js +118 -2
- package/dist/editor-headerfooter.js.map +1 -1
- package/dist/editor-reconcile.d.ts +75 -0
- package/dist/editor-reconcile.d.ts.map +1 -0
- package/dist/editor-reconcile.js +125 -0
- package/dist/editor-reconcile.js.map +1 -0
- package/dist/editor.bundle.js +799 -42
- package/dist/editor.d.ts +121 -5
- package/dist/editor.d.ts.map +1 -1
- package/dist/editor.js +572 -31
- package/dist/editor.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/page-number-format.d.ts +22 -0
- package/dist/page-number-format.d.ts.map +1 -0
- package/dist/page-number-format.js +60 -0
- package/dist/page-number-format.js.map +1 -0
- package/dist/pagination.bundle.js +158 -21
- package/dist/pagination.d.ts +38 -0
- package/dist/pagination.d.ts.map +1 -1
- package/dist/pagination.js +181 -29
- package/dist/pagination.js.map +1 -1
- package/dist/session.bundle.js +226 -4
- package/dist/session.d.ts +147 -6
- package/dist/session.d.ts.map +1 -1
- package/dist/session.js +187 -4
- package/dist/session.js.map +1 -1
- package/dist/types.d.ts +191 -4
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/wasm/_framework/Docxodus.wasm +0 -0
- package/dist/wasm/_framework/DocxodusWasm.wasm +0 -0
- package/dist/wasm/_framework/System.IO.Compression.wasm +0 -0
- package/dist/wasm/_framework/System.Linq.wasm +0 -0
- package/dist/wasm/_framework/System.Private.CoreLib.wasm +0 -0
- package/dist/wasm/_framework/System.Private.Xml.Linq.wasm +0 -0
- package/dist/wasm/_framework/System.Runtime.wasm +0 -0
- package/dist/wasm/_framework/System.Text.RegularExpressions.wasm +0 -0
- package/dist/wasm/_framework/dotnet.boot.js +10 -10
- package/dist/wasm/_framework/dotnet.native.js.symbols +2102 -2101
- package/dist/wasm/_framework/dotnet.native.wasm +0 -0
- package/package.json +17 -4
package/dist/editor.d.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* full fidelity, and save() is lossless for them.
|
|
18
18
|
*/
|
|
19
19
|
import type { BandWhich } from "./editor-headerfooter.js";
|
|
20
|
-
import type { HeaderFooterKind } from "./types.js";
|
|
20
|
+
import type { HeaderFooterKind, NumberFormat } from "./types.js";
|
|
21
21
|
/** The subset of WASM bridge exports the editor needs (as exposed on `window.Docxodus`). */
|
|
22
22
|
export interface DocxEditorExports {
|
|
23
23
|
DocxSessionBridge: {
|
|
@@ -46,14 +46,28 @@ export interface DocxEditorExports {
|
|
|
46
46
|
/** Session-attached full-document render (optional: older WASM bundles lack it). */
|
|
47
47
|
RenderHtml?: (handle: number, cssPrefix: string, fabricateClasses: boolean, paginated: boolean, scale: number) => string;
|
|
48
48
|
Save: (handle: number) => Uint8Array;
|
|
49
|
+
/** Save keeping the projector's Unid bookkeeping — remount only, never a user download.
|
|
50
|
+
* Optional so a bridge predating it still satisfies this type. */
|
|
51
|
+
SaveWithAnchorIds?: (handle: number) => Uint8Array;
|
|
49
52
|
Undo: (handle: number) => boolean;
|
|
50
53
|
Redo: (handle: number) => boolean;
|
|
51
54
|
/** Header/footer region: the section a body anchor belongs to (kind → part mapping). */
|
|
52
55
|
GetSectionInfo: (handle: number, anchorId: string) => string;
|
|
53
56
|
SetHeaderText: (handle: number, anchor: string, kind: string, markdown: string) => string;
|
|
54
57
|
SetFooterText: (handle: number, anchor: string, kind: string, markdown: string) => string;
|
|
55
|
-
InsertPageNumberField: (handle: number, anchor: string, field: string) => string;
|
|
58
|
+
InsertPageNumberField: (handle: number, anchor: string, field: string, format: string) => string;
|
|
56
59
|
EnsureHeaderFooterVisible: (handle: number, anchor: string, kind: string) => string;
|
|
60
|
+
SetPageNumbering: (handle: number, anchor: string, opJson: string) => string;
|
|
61
|
+
ClearPageNumbering: (handle: number, anchor: string) => string;
|
|
62
|
+
/** Note authoring (optional: older WASM bundles predate it). */
|
|
63
|
+
InsertFootnote?: (handle: number, anchor: string, characterOffset: number, markdown: string) => string;
|
|
64
|
+
InsertEndnote?: (handle: number, anchor: string, characterOffset: number, markdown: string) => string;
|
|
65
|
+
/** Incremental-reconcile endpoints (optional: older WASM bundles predate them;
|
|
66
|
+
* the editor falls back to full remounts / full projections without them). */
|
|
67
|
+
ListBlocks?: (handle: number) => string;
|
|
68
|
+
ListNotes?: (handle: number, endnotes: boolean) => string;
|
|
69
|
+
ListAnchors?: (handle: number) => string;
|
|
70
|
+
RenderBlocksHtml?: (handle: number, anchorIdsJson: string, cssPrefix: string, fabricateClasses: boolean) => string;
|
|
57
71
|
};
|
|
58
72
|
DocumentConverter: {
|
|
59
73
|
ConvertDocxToHtmlComplete: (...args: any[]) => string;
|
|
@@ -127,6 +141,9 @@ export declare class DocxEditor {
|
|
|
127
141
|
private lastSelection;
|
|
128
142
|
/** The docked header/footer bands, when `options.headerFooter` is on. */
|
|
129
143
|
private region;
|
|
144
|
+
/** Why the last reconcile() fell back to a full remount (null = it patched). For
|
|
145
|
+
* diagnostics/specs; not part of the public API. */
|
|
146
|
+
private lastReconcileFallback;
|
|
130
147
|
private constructor();
|
|
131
148
|
/** Track the last meaningful selection so focus-stealing toolbar controls can still target it. */
|
|
132
149
|
private readonly onSelectionChange;
|
|
@@ -145,7 +162,10 @@ export declare class DocxEditor {
|
|
|
145
162
|
/**
|
|
146
163
|
* Repaint after an edit to `block` that would otherwise remount the whole document: a band
|
|
147
164
|
* repaints only itself (a story is one to three paragraphs), leaving the body DOM — and the
|
|
148
|
-
* user's place in it — untouched.
|
|
165
|
+
* user's place in it — untouched; a body edit reconciles incrementally. `forceRemount` is
|
|
166
|
+
* for ops whose repaint provably needs whole-document context the reconciler cannot see:
|
|
167
|
+
* list membership/level changes (sibling numbering shifts without sibling XML changing)
|
|
168
|
+
* and border-div regrouping (HR insert, clearBorders).
|
|
149
169
|
*/
|
|
150
170
|
private refreshAfter;
|
|
151
171
|
/** Open a document, render it into `container`, and wire up editing. */
|
|
@@ -360,13 +380,27 @@ export declare class DocxEditor {
|
|
|
360
380
|
* smoke-test "no block-delete affordance" gap.
|
|
361
381
|
*/
|
|
362
382
|
deleteBlock(): void;
|
|
383
|
+
/**
|
|
384
|
+
* Cite a new footnote from the caret position in the active body block. The note definition is
|
|
385
|
+
* created (writing the whole Word scaffold — part, reserved separator notes, settings
|
|
386
|
+
* declaration, styles — on a document that has none yet) and its body renders as ordinary
|
|
387
|
+
* editable `data-anchor` blocks in the notes section, so editing it afterwards needs no new op.
|
|
388
|
+
*
|
|
389
|
+
* Body blocks only: Word disallows a note reference inside a header/footer story or inside
|
|
390
|
+
* another note, and the session rejects those with `AnchorWrongKind`. Remounts, because a new
|
|
391
|
+
* note renumbers the citations after it and can add a whole part.
|
|
392
|
+
*/
|
|
393
|
+
insertFootnote(markdown?: string): void;
|
|
394
|
+
/** Cite a new endnote from the caret — see {@link insertFootnote}; writes the endnotes part. */
|
|
395
|
+
insertEndnote(markdown?: string): void;
|
|
396
|
+
private insertNote;
|
|
363
397
|
private applyParagraphFormat;
|
|
364
398
|
/** Set the paragraph style of the active block — or of every block in a multi-block selection
|
|
365
399
|
* (e.g. "Heading1", "Heading2", "Normal"). */
|
|
366
400
|
setParagraphStyle(styleId: string): void;
|
|
367
|
-
/** Undo the last edit (re-
|
|
401
|
+
/** Undo the last edit (incremental repaint; falls back to a full re-render). */
|
|
368
402
|
undo(): void;
|
|
369
|
-
/** Redo the last undone edit (re-
|
|
403
|
+
/** Redo the last undone edit (incremental repaint; falls back to a full re-render). */
|
|
370
404
|
redo(): void;
|
|
371
405
|
/**
|
|
372
406
|
* Select which story kind a band edits (`"default"` / `"first"` / `"even"`). A kind with no
|
|
@@ -382,6 +416,29 @@ export declare class DocxEditor {
|
|
|
382
416
|
* band's last paragraph — Word's convention). No-op outside a band.
|
|
383
417
|
*/
|
|
384
418
|
insertPageNumber(field?: "currentPage" | "totalPages"): void;
|
|
419
|
+
/**
|
|
420
|
+
* Set the page numbering of the section the bands describe (`w:pgNumType`) — Word's *Format Page
|
|
421
|
+
* Numbers…*: `start` restarts numbering at that number, `format` chooses `1, 2, 3` vs
|
|
422
|
+
* `i, ii, iii` etc. Omitted fields are left unchanged. Requires the header/footer region
|
|
423
|
+
* (`{ headerFooter: true }`); a no-op otherwise.
|
|
424
|
+
*
|
|
425
|
+
* Inserted page-number fields are plain, so they render through this. The editor's own view still
|
|
426
|
+
* shows each field's cached result — Word recomputes on open — but `{ paginated: true }`
|
|
427
|
+
* substitutes the real per-page number and so reflects the change immediately.
|
|
428
|
+
*/
|
|
429
|
+
setPageNumbering(op: {
|
|
430
|
+
start?: number;
|
|
431
|
+
format?: NumberFormat;
|
|
432
|
+
}): void;
|
|
433
|
+
/** Remove the section's page-numbering start/format: it reverts to continuing the previous
|
|
434
|
+
* section's numbering in Word's default `1, 2, 3`. */
|
|
435
|
+
clearPageNumbering(): void;
|
|
436
|
+
/** This section's page numbering as the document currently states it — `{}` when the section
|
|
437
|
+
* sets neither (it continues the previous section in the default format). */
|
|
438
|
+
pageNumbering(): {
|
|
439
|
+
start?: number;
|
|
440
|
+
format?: NumberFormat;
|
|
441
|
+
};
|
|
385
442
|
/** Which inline formats the current selection carries — for ribbon button highlighting. */
|
|
386
443
|
queryFormatState(): Record<FormatKey, boolean>;
|
|
387
444
|
/** Re-render one block from the live session by EditResult ref, swapping it in place. */
|
|
@@ -403,6 +460,65 @@ export declare class DocxEditor {
|
|
|
403
460
|
* (every item would render as "1."), so such edits re-render the whole document.
|
|
404
461
|
*/
|
|
405
462
|
private affectsList;
|
|
463
|
+
/** True when the bridge carries the reconcile trio and the mode allows patching. */
|
|
464
|
+
private canReconcile;
|
|
465
|
+
/** The body's top-level unit nodes in document order: `[data-anchor]` elements not
|
|
466
|
+
* nested in another unit (cell paragraphs collapse into their table) and not in the
|
|
467
|
+
* notes sections. */
|
|
468
|
+
private bodyUnitNodes;
|
|
469
|
+
/** The DOM diff token for a body unit node (see editor-reconcile.tokenOf). */
|
|
470
|
+
private static domTokenOf;
|
|
471
|
+
/** The kind a body unit node would have in the plan (only 'li'/'tbl' matter to the
|
|
472
|
+
* remount guard). */
|
|
473
|
+
private static domKindOf;
|
|
474
|
+
private static listMarkerText;
|
|
475
|
+
/**
|
|
476
|
+
* Incrementally patch the DOM from the session's render plan; falls back to
|
|
477
|
+
* {@link remount} whenever it cannot prove the patch correct. Same focus contract
|
|
478
|
+
* as remount.
|
|
479
|
+
*/
|
|
480
|
+
private reconcile;
|
|
481
|
+
/** The patch itself. Returns false to request the remount fallback. */
|
|
482
|
+
private reconcileCore;
|
|
483
|
+
private bail;
|
|
484
|
+
/** The generated single-child wrapper chain around a unit node (a table's alignment
|
|
485
|
+
* <div>). Climbs while the parent is an anchor-less DIV whose ONLY element child is
|
|
486
|
+
* the current node — never a section div (multi-child) or the edit root. */
|
|
487
|
+
private unitWrapperOf;
|
|
488
|
+
/** The `[data-anchor]` element of a fresh render root (the root itself for a leaf
|
|
489
|
+
* block, its descendant for a wrapper-shaped render like a table's align div). */
|
|
490
|
+
private static anchorElOf;
|
|
491
|
+
/** Insert/remove/swap body unit nodes per the diff. Returns false to bail (parent
|
|
492
|
+
* ambiguity, order violation, wrapper semantics) — the session is already correct,
|
|
493
|
+
* so bailing just means a full repaint. */
|
|
494
|
+
private applyBodyDiff;
|
|
495
|
+
/** Wire a freshly rendered unit root (and its nested blocks) and stamp the unit's
|
|
496
|
+
* content signature on its `[data-anchor]` element — the element the next
|
|
497
|
+
* reconcile's DOM walk reads tokens from. */
|
|
498
|
+
private wireUnit;
|
|
499
|
+
/** Old-sequence diff state for one notes section. `null` requests remount (DOM not
|
|
500
|
+
* stampable/consistent). */
|
|
501
|
+
private notesDiff;
|
|
502
|
+
/** Apply a notes-section diff: rebuild the `<ol>`'s li list, preserving kept nodes. */
|
|
503
|
+
private applyNotesDiff;
|
|
504
|
+
/** Build a notes-section `<li>` for a freshly rendered note — replicating the
|
|
505
|
+
* converter's chrome (id/value are re-stamped by the renumber pass; the backref
|
|
506
|
+
* goes inside the last paragraph, matching RenderFootnoteItem). */
|
|
507
|
+
private buildNoteLi;
|
|
508
|
+
/**
|
|
509
|
+
* Rewrite position-derived note chrome from the session's citation-ordered note
|
|
510
|
+
* list: the k-th marker in document order IS note k (ids ascend in reference
|
|
511
|
+
* order), so marker sup text, hrefs/ids, li ids/values and backref hrefs are all
|
|
512
|
+
* re-derived positionally. Pure attribute/text patching of generated chrome.
|
|
513
|
+
*/
|
|
514
|
+
private renumberNoteChrome;
|
|
515
|
+
/** After an incremental block swap, stale marker chrome in the swapped node (the
|
|
516
|
+
* throwaway render numbers citations from 1) is repaired in place. */
|
|
517
|
+
private maybeRenumberNotes;
|
|
518
|
+
/** Stamp the DOM state the reconciler diffs against: container signatures on body
|
|
519
|
+
* tables and `data-note-anchor` + signature on notes-section items. Called after
|
|
520
|
+
* every full mount; reconcile stamps its own insertions. */
|
|
521
|
+
private stampPlanState;
|
|
406
522
|
/**
|
|
407
523
|
* Full re-render from current session state (after undo/redo, and after list edits where
|
|
408
524
|
* single-block rendering can't compute numbering). Optionally focus the editable block at
|
package/dist/editor.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor.d.ts","sourceRoot":"","sources":["../src/editor.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAIH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"editor.d.ts","sourceRoot":"","sources":["../src/editor.ts"],"names":[],"mappings":"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"}
|