docxodus 3.5.1 → 3.6.1
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.d.ts +176 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +353 -3
- package/dist/index.js.map +1 -1
- package/dist/react.d.ts +207 -2
- package/dist/react.d.ts.map +1 -1
- package/dist/react.js +448 -1
- package/dist/react.js.map +1 -1
- package/dist/types.d.ts +328 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +205 -0
- 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.Collections.wasm +0 -0
- package/dist/wasm/_framework/System.Linq.wasm +0 -0
- package/dist/wasm/_framework/System.Memory.wasm +0 -0
- package/dist/wasm/_framework/System.Net.Http.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.Json.wasm +0 -0
- package/dist/wasm/_framework/System.Text.RegularExpressions.wasm +0 -0
- package/dist/wasm/_framework/blazor.boot.json +13 -13
- package/dist/wasm/_framework/dotnet.native.wasm +0 -0
- package/package.json +1 -1
package/dist/react.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { CSSProperties, ReactElement } from "react";
|
|
3
|
-
import type { ConversionOptions, CompareOptions, Revision } from "./types.js";
|
|
3
|
+
import type { ConversionOptions, CompareOptions, Revision, Annotation, AddAnnotationRequest, AddAnnotationResponse, RemoveAnnotationResponse, DocumentStructure, DocumentElement, TableColumnInfo, AnnotationTarget, AddAnnotationWithTargetRequest } from "./types.js";
|
|
4
|
+
import { AnnotationLabelMode, DocumentElementType, targetElement, targetParagraph, targetParagraphRange, targetRun, targetTable, targetTableRow, targetTableCell, targetTableColumn, targetSearch, targetSearchInElement, findElementById, findElementsByType, getParagraphs, getTables, getTableColumns } from "./types.js";
|
|
4
5
|
import { type PaginationOptions, type PaginationResult } from "./pagination.js";
|
|
5
|
-
export type { ConversionOptions, CompareOptions, Revision, PaginationOptions, PaginationResult };
|
|
6
|
+
export type { ConversionOptions, CompareOptions, Revision, PaginationOptions, PaginationResult, Annotation, AddAnnotationRequest, AddAnnotationResponse, RemoveAnnotationResponse, DocumentStructure, DocumentElement, TableColumnInfo, AnnotationTarget, AddAnnotationWithTargetRequest, };
|
|
7
|
+
export { AnnotationLabelMode, DocumentElementType, targetElement, targetParagraph, targetParagraphRange, targetRun, targetTable, targetTableRow, targetTableCell, targetTableColumn, targetSearch, targetSearchInElement, findElementById, findElementsByType, getParagraphs, getTables, getTableColumns, };
|
|
6
8
|
export interface UseDocxodusResult {
|
|
7
9
|
/** Whether the WASM runtime is loaded and ready */
|
|
8
10
|
isReady: boolean;
|
|
@@ -18,6 +20,18 @@ export interface UseDocxodusResult {
|
|
|
18
20
|
compareToHtml: (original: File | Uint8Array, modified: File | Uint8Array, options?: CompareOptions) => Promise<string>;
|
|
19
21
|
/** Get revisions from a compared document */
|
|
20
22
|
getRevisions: (document: File | Uint8Array) => Promise<Revision[]>;
|
|
23
|
+
/** Get all annotations from a document */
|
|
24
|
+
getAnnotations: (document: File | Uint8Array) => Promise<Annotation[]>;
|
|
25
|
+
/** Add an annotation to a document */
|
|
26
|
+
addAnnotation: (document: File | Uint8Array, request: AddAnnotationRequest) => Promise<AddAnnotationResponse>;
|
|
27
|
+
/** Add an annotation using flexible targeting (element ID, indices, or text search) */
|
|
28
|
+
addAnnotationWithTarget: (document: File | Uint8Array, request: AddAnnotationWithTargetRequest) => Promise<AddAnnotationResponse>;
|
|
29
|
+
/** Remove an annotation from a document */
|
|
30
|
+
removeAnnotation: (document: File | Uint8Array, annotationId: string) => Promise<RemoveAnnotationResponse>;
|
|
31
|
+
/** Check if a document has any annotations */
|
|
32
|
+
hasAnnotations: (document: File | Uint8Array) => Promise<boolean>;
|
|
33
|
+
/** Get the document structure for element-based annotation targeting */
|
|
34
|
+
getDocumentStructure: (document: File | Uint8Array) => Promise<DocumentStructure>;
|
|
21
35
|
}
|
|
22
36
|
/**
|
|
23
37
|
* React hook for using Docxodus WASM functionality.
|
|
@@ -240,4 +254,195 @@ export declare function usePagination(html: string, containerRef: React.RefObjec
|
|
|
240
254
|
* ```
|
|
241
255
|
*/
|
|
242
256
|
export declare function PaginatedDocument({ html, scale, showPageNumbers, pageGap, backgroundColor, cssPrefix, onPaginationComplete, onPageVisible, className, style, }: PaginatedDocumentProps): ReactElement;
|
|
257
|
+
/**
|
|
258
|
+
* Result of the useAnnotations hook.
|
|
259
|
+
*/
|
|
260
|
+
export interface UseAnnotationsResult {
|
|
261
|
+
/** All annotations in the document */
|
|
262
|
+
annotations: Annotation[];
|
|
263
|
+
/** Whether annotations are being loaded or modified */
|
|
264
|
+
isLoading: boolean;
|
|
265
|
+
/** Error from the last operation */
|
|
266
|
+
error: Error | null;
|
|
267
|
+
/** Reload annotations from the document */
|
|
268
|
+
reload: () => Promise<void>;
|
|
269
|
+
/** Add a new annotation */
|
|
270
|
+
add: (request: AddAnnotationRequest) => Promise<AddAnnotationResponse | null>;
|
|
271
|
+
/** Remove an annotation by ID */
|
|
272
|
+
remove: (annotationId: string) => Promise<RemoveAnnotationResponse | null>;
|
|
273
|
+
/** The current document bytes (updated after add/remove) */
|
|
274
|
+
documentBytes: Uint8Array | null;
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* React hook for managing document annotations.
|
|
278
|
+
*
|
|
279
|
+
* @param document - DOCX file as File object or Uint8Array
|
|
280
|
+
* @param wasmBasePath - Optional custom path to WASM files
|
|
281
|
+
* @returns Annotation state and CRUD operations
|
|
282
|
+
*
|
|
283
|
+
* @example
|
|
284
|
+
* ```tsx
|
|
285
|
+
* function AnnotationManager({ docxFile }: { docxFile: File }) {
|
|
286
|
+
* const { annotations, isLoading, add, remove, documentBytes } = useAnnotations(docxFile);
|
|
287
|
+
*
|
|
288
|
+
* const handleAddAnnotation = async () => {
|
|
289
|
+
* await add({
|
|
290
|
+
* id: `annot-${Date.now()}`,
|
|
291
|
+
* labelId: "CLAUSE_A",
|
|
292
|
+
* label: "Important Clause",
|
|
293
|
+
* color: "#FFEB3B",
|
|
294
|
+
* searchText: "shall not be liable"
|
|
295
|
+
* });
|
|
296
|
+
* };
|
|
297
|
+
*
|
|
298
|
+
* return (
|
|
299
|
+
* <div>
|
|
300
|
+
* <h2>Annotations ({annotations.length})</h2>
|
|
301
|
+
* {annotations.map(a => (
|
|
302
|
+
* <div key={a.id} style={{ backgroundColor: a.color }}>
|
|
303
|
+
* <span>{a.label}: {a.annotatedText}</span>
|
|
304
|
+
* <button onClick={() => remove(a.id)}>Remove</button>
|
|
305
|
+
* </div>
|
|
306
|
+
* ))}
|
|
307
|
+
* <button onClick={handleAddAnnotation}>Add Annotation</button>
|
|
308
|
+
* </div>
|
|
309
|
+
* );
|
|
310
|
+
* }
|
|
311
|
+
* ```
|
|
312
|
+
*/
|
|
313
|
+
export declare function useAnnotations(document: File | Uint8Array | null, wasmBasePath?: string): UseAnnotationsResult;
|
|
314
|
+
/**
|
|
315
|
+
* Props for the AnnotatedDocument component.
|
|
316
|
+
*/
|
|
317
|
+
export interface AnnotatedDocumentProps {
|
|
318
|
+
/** HTML string with annotation highlights (from convertDocxToHtml with renderAnnotations: true) */
|
|
319
|
+
html: string;
|
|
320
|
+
/** Callback when an annotation highlight is clicked */
|
|
321
|
+
onAnnotationClick?: (annotationId: string, annotation: Annotation | null) => void;
|
|
322
|
+
/** Callback when an annotation highlight is hovered */
|
|
323
|
+
onAnnotationHover?: (annotationId: string | null, annotation: Annotation | null) => void;
|
|
324
|
+
/** List of annotations for looking up details on click/hover */
|
|
325
|
+
annotations?: Annotation[];
|
|
326
|
+
/** CSS class prefix for annotation elements. Default: "annot-" */
|
|
327
|
+
cssPrefix?: string;
|
|
328
|
+
/** Additional CSS class for the container */
|
|
329
|
+
className?: string;
|
|
330
|
+
/** Additional inline styles for the container */
|
|
331
|
+
style?: CSSProperties;
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* React component for displaying a document with annotation highlights.
|
|
335
|
+
* Handles click and hover events on annotation spans.
|
|
336
|
+
*
|
|
337
|
+
* @example
|
|
338
|
+
* ```tsx
|
|
339
|
+
* import { useState, useEffect } from 'react';
|
|
340
|
+
* import { useDocxodus, useAnnotations, AnnotatedDocument, AnnotationLabelMode } from 'docxodus/react';
|
|
341
|
+
*
|
|
342
|
+
* function DocumentWithAnnotations({ docxFile }: { docxFile: File }) {
|
|
343
|
+
* const { isReady, convertToHtml } = useDocxodus();
|
|
344
|
+
* const { annotations } = useAnnotations(docxFile);
|
|
345
|
+
* const [html, setHtml] = useState<string | null>(null);
|
|
346
|
+
* const [selectedAnnotation, setSelectedAnnotation] = useState<Annotation | null>(null);
|
|
347
|
+
*
|
|
348
|
+
* useEffect(() => {
|
|
349
|
+
* if (isReady) {
|
|
350
|
+
* convertToHtml(docxFile, {
|
|
351
|
+
* renderAnnotations: true,
|
|
352
|
+
* annotationLabelMode: AnnotationLabelMode.Above
|
|
353
|
+
* }).then(setHtml);
|
|
354
|
+
* }
|
|
355
|
+
* }, [isReady, docxFile]);
|
|
356
|
+
*
|
|
357
|
+
* return (
|
|
358
|
+
* <div>
|
|
359
|
+
* {html && (
|
|
360
|
+
* <AnnotatedDocument
|
|
361
|
+
* html={html}
|
|
362
|
+
* annotations={annotations}
|
|
363
|
+
* onAnnotationClick={(id, annot) => setSelectedAnnotation(annot)}
|
|
364
|
+
* />
|
|
365
|
+
* )}
|
|
366
|
+
* {selectedAnnotation && (
|
|
367
|
+
* <div className="sidebar">
|
|
368
|
+
* <h3>{selectedAnnotation.label}</h3>
|
|
369
|
+
* <p>{selectedAnnotation.annotatedText}</p>
|
|
370
|
+
* </div>
|
|
371
|
+
* )}
|
|
372
|
+
* </div>
|
|
373
|
+
* );
|
|
374
|
+
* }
|
|
375
|
+
* ```
|
|
376
|
+
*/
|
|
377
|
+
export declare function AnnotatedDocument({ html, onAnnotationClick, onAnnotationHover, annotations, cssPrefix, className, style, }: AnnotatedDocumentProps): ReactElement;
|
|
378
|
+
/**
|
|
379
|
+
* Result of the useDocumentStructure hook.
|
|
380
|
+
*/
|
|
381
|
+
export interface UseDocumentStructureResult {
|
|
382
|
+
/** The document structure tree */
|
|
383
|
+
structure: DocumentStructure | null;
|
|
384
|
+
/** Whether the structure is being loaded */
|
|
385
|
+
isLoading: boolean;
|
|
386
|
+
/** Error from loading the structure */
|
|
387
|
+
error: Error | null;
|
|
388
|
+
/** Reload the document structure */
|
|
389
|
+
reload: () => Promise<void>;
|
|
390
|
+
/** Find an element by ID */
|
|
391
|
+
findById: (elementId: string) => DocumentElement | undefined;
|
|
392
|
+
/** Find all elements of a specific type */
|
|
393
|
+
findByType: (type: DocumentElementType | string) => DocumentElement[];
|
|
394
|
+
/** Get all paragraphs */
|
|
395
|
+
paragraphs: DocumentElement[];
|
|
396
|
+
/** Get all tables */
|
|
397
|
+
tables: DocumentElement[];
|
|
398
|
+
/** Get columns for a specific table */
|
|
399
|
+
getColumns: (tableId: string) => TableColumnInfo[];
|
|
400
|
+
}
|
|
401
|
+
/**
|
|
402
|
+
* React hook for exploring document structure for element-based annotation targeting.
|
|
403
|
+
*
|
|
404
|
+
* @param document - DOCX file as File object or Uint8Array
|
|
405
|
+
* @param wasmBasePath - Optional custom path to WASM files
|
|
406
|
+
* @returns Document structure state and navigation helpers
|
|
407
|
+
*
|
|
408
|
+
* @example
|
|
409
|
+
* ```tsx
|
|
410
|
+
* function DocumentExplorer({ docxFile }: { docxFile: File }) {
|
|
411
|
+
* const {
|
|
412
|
+
* structure,
|
|
413
|
+
* isLoading,
|
|
414
|
+
* paragraphs,
|
|
415
|
+
* tables,
|
|
416
|
+
* findById,
|
|
417
|
+
* getColumns
|
|
418
|
+
* } = useDocumentStructure(docxFile);
|
|
419
|
+
*
|
|
420
|
+
* if (isLoading || !structure) {
|
|
421
|
+
* return <div>Loading structure...</div>;
|
|
422
|
+
* }
|
|
423
|
+
*
|
|
424
|
+
* return (
|
|
425
|
+
* <div>
|
|
426
|
+
* <h2>Document Structure</h2>
|
|
427
|
+
* <h3>Paragraphs ({paragraphs.length})</h3>
|
|
428
|
+
* <ul>
|
|
429
|
+
* {paragraphs.map(p => (
|
|
430
|
+
* <li key={p.id}>
|
|
431
|
+
* {p.id}: {p.textPreview}
|
|
432
|
+
* </li>
|
|
433
|
+
* ))}
|
|
434
|
+
* </ul>
|
|
435
|
+
* <h3>Tables ({tables.length})</h3>
|
|
436
|
+
* {tables.map(t => (
|
|
437
|
+
* <div key={t.id}>
|
|
438
|
+
* <h4>{t.id}</h4>
|
|
439
|
+
* <p>Columns: {getColumns(t.id).length}</p>
|
|
440
|
+
* </div>
|
|
441
|
+
* ))}
|
|
442
|
+
* </div>
|
|
443
|
+
* );
|
|
444
|
+
* }
|
|
445
|
+
* ```
|
|
446
|
+
*/
|
|
447
|
+
export declare function useDocumentStructure(document: File | Uint8Array | null, wasmBasePath?: string): UseDocumentStructureResult;
|
|
243
448
|
//# sourceMappingURL=react.d.ts.map
|
package/dist/react.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../src/react.ts"],"names":[],"mappings":"AAAA,OAAO,KAA2E,MAAM,OAAO,CAAC;AAChG,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../src/react.ts"],"names":[],"mappings":"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"}
|