@extend-ai/react-docx 0.7.1 → 0.7.3
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/dist/index.cjs +354 -122
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +354 -122
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -617,6 +617,7 @@ type DocxImageDropTarget = ParagraphLocation & {
|
|
|
617
617
|
type DocxTrackedChangeKind = "insertion" | "deletion" | "move-from" | "move-to" | "format-change" | "paragraph-format-change";
|
|
618
618
|
interface DocxTrackedChange {
|
|
619
619
|
id: string;
|
|
620
|
+
inlineAnchorId?: string;
|
|
620
621
|
kind: DocxTrackedChangeKind;
|
|
621
622
|
author?: string;
|
|
622
623
|
date?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -617,6 +617,7 @@ type DocxImageDropTarget = ParagraphLocation & {
|
|
|
617
617
|
type DocxTrackedChangeKind = "insertion" | "deletion" | "move-from" | "move-to" | "format-change" | "paragraph-format-change";
|
|
618
618
|
interface DocxTrackedChange {
|
|
619
619
|
id: string;
|
|
620
|
+
inlineAnchorId?: string;
|
|
620
621
|
kind: DocxTrackedChangeKind;
|
|
621
622
|
author?: string;
|
|
622
623
|
date?: string;
|