@extend-ai/react-docx 0.6.1 → 0.6.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.d.cts CHANGED
@@ -712,6 +712,7 @@ interface DocxEditorController {
712
712
  documentLoadNonce: number;
713
713
  fileName: string;
714
714
  status: string;
715
+ importError?: Error;
715
716
  isImporting: boolean;
716
717
  documentTheme: DocxDocumentTheme;
717
718
  selection: DocxEditorSelection;
@@ -1011,10 +1012,10 @@ interface DocxEditorViewerProps {
1011
1012
  /**
1012
1013
  * Hides the document behind `loadingState` until initial pagination settles.
1013
1014
  *
1014
- * Leave enabled when you prefer stable first paint over immediate approximate
1015
- * layout. Disable when you want the first visible page as soon as possible.
1015
+ * Enable only when you prefer stable first paint over immediate approximate
1016
+ * layout.
1016
1017
  *
1017
- * @defaultValue `true`
1018
+ * @defaultValue `false`
1018
1019
  */
1019
1020
  deferInitialPaginationPaint?: boolean;
1020
1021
  /**
package/dist/index.d.ts CHANGED
@@ -712,6 +712,7 @@ interface DocxEditorController {
712
712
  documentLoadNonce: number;
713
713
  fileName: string;
714
714
  status: string;
715
+ importError?: Error;
715
716
  isImporting: boolean;
716
717
  documentTheme: DocxDocumentTheme;
717
718
  selection: DocxEditorSelection;
@@ -1011,10 +1012,10 @@ interface DocxEditorViewerProps {
1011
1012
  /**
1012
1013
  * Hides the document behind `loadingState` until initial pagination settles.
1013
1014
  *
1014
- * Leave enabled when you prefer stable first paint over immediate approximate
1015
- * layout. Disable when you want the first visible page as soon as possible.
1015
+ * Enable only when you prefer stable first paint over immediate approximate
1016
+ * layout.
1016
1017
  *
1017
- * @defaultValue `true`
1018
+ * @defaultValue `false`
1018
1019
  */
1019
1020
  deferInitialPaginationPaint?: boolean;
1020
1021
  /**