├── .eslintrc.js ├── .github └── workflows │ ├── artifact.yml │ └── node.js.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── _unionpdf_engines.EngineRunner.html │ ├── _unionpdf_engines.PdfiumEngine.html │ ├── _unionpdf_engines.PdfiumEngineRunner.html │ ├── _unionpdf_engines.WebWorkerEngine.html │ ├── _unionpdf_engines.WorkerTask.html │ ├── _unionpdf_models.AllLogger.html │ ├── _unionpdf_models.ConsoleLogger.html │ ├── _unionpdf_models.LevelLogger.html │ ├── _unionpdf_models.NoopLogger.html │ ├── _unionpdf_models.PdfTaskHelper.html │ ├── _unionpdf_models.PerfLogger.html │ ├── _unionpdf_models.Task.html │ ├── _unionpdf_react.ErrorBoundary.html │ ├── _unionpdf_react.MemoryPdfApplicationConfigurationProvider.html │ ├── _unionpdf_react.PdfApplicationConfigurationProviderBase.html │ └── _unionpdf_react.StoragePdfApplicationConfigurationProvider.html ├── enums │ ├── _unionpdf_engines.BitmapFormat.html │ ├── _unionpdf_engines.PdfiumErrorCode.html │ ├── _unionpdf_engines.RenderFlag.html │ ├── _unionpdf_models.AppearanceMode.html │ ├── _unionpdf_models.LogLevel.html │ ├── _unionpdf_models.MatchFlag.html │ ├── _unionpdf_models.PDF_FORM_FIELD_FLAG.html │ ├── _unionpdf_models.PDF_FORM_FIELD_TYPE.html │ ├── _unionpdf_models.PdfActionType.html │ ├── _unionpdf_models.PdfAnnotationObjectStatus.html │ ├── _unionpdf_models.PdfAnnotationSubtype.html │ ├── _unionpdf_models.PdfEngineFeature.html │ ├── _unionpdf_models.PdfEngineOperation.html │ ├── _unionpdf_models.PdfErrorCode.html │ ├── _unionpdf_models.PdfPageObjectType.html │ ├── _unionpdf_models.PdfPermission.html │ ├── _unionpdf_models.PdfSegmentObjectType.html │ ├── _unionpdf_models.PdfZoomMode.html │ ├── _unionpdf_models.Rotation.html │ ├── _unionpdf_models.TaskStage.html │ ├── _unionpdf_react.MergeStep.html │ ├── _unionpdf_react.PdfAnnotationMarker.html │ ├── _unionpdf_react.PdfAnnotationTool.html │ ├── _unionpdf_react.PdfApplicatinPluginKey.html │ ├── _unionpdf_react.PdfApplicationMode.html │ ├── _unionpdf_react.PdfEditorTool.html │ ├── _unionpdf_react.PrinterMethod.html │ ├── _unionpdf_react.ResizerPosition.html │ └── _unionpdf_react.StackStatus.html ├── functions │ ├── _unionpdf_engines.createMockPdfDocument.html │ ├── _unionpdf_engines.createMockPdfEngine.html │ ├── _unionpdf_engines.createMockPdfFile.html │ ├── _unionpdf_engines.readArrayBuffer.html │ ├── _unionpdf_engines.readString.html │ ├── _unionpdf_models.calculateAngle.html │ ├── _unionpdf_models.calculateDegree.html │ ├── _unionpdf_models.compareSearchTarget.html │ ├── _unionpdf_models.ignore.html │ ├── _unionpdf_models.restoreOffset.html │ ├── _unionpdf_models.restorePosition.html │ ├── _unionpdf_models.restoreRect.html │ ├── _unionpdf_models.rotatePosition.html │ ├── _unionpdf_models.rotateRect.html │ ├── _unionpdf_models.scalePosition.html │ ├── _unionpdf_models.scaleRect.html │ ├── _unionpdf_models.swap.html │ ├── _unionpdf_models.transformPosition.html │ ├── _unionpdf_models.transformRect.html │ ├── _unionpdf_models.transformSize.html │ ├── _unionpdf_models.unionFlags.html │ ├── _unionpdf_pdfium.init.html │ ├── _unionpdf_react.Button.html │ ├── _unionpdf_react.Checkbox.html │ ├── _unionpdf_react.Dialog.html │ ├── _unionpdf_react.Downloader.html │ ├── _unionpdf_react.Drawable.html │ ├── _unionpdf_react.Field.html │ ├── _unionpdf_react.Form.html │ ├── _unionpdf_react.FormField.html │ ├── _unionpdf_react.Icon.html │ ├── _unionpdf_react.Input.html │ ├── _unionpdf_react.IntersectionObserverContextProvider.html │ ├── _unionpdf_react.IntersectionObserverEntry.html │ ├── _unionpdf_react.Label.html │ ├── _unionpdf_react.Link.html │ ├── _unionpdf_react.LoggerContextProvider.html │ ├── _unionpdf_react.Panel.html │ ├── _unionpdf_react.PanelMountPointContextProvider.html │ ├── _unionpdf_react.PdfApplication.html │ ├── _unionpdf_react.PdfApplicationContextProvider.html │ ├── _unionpdf_react.PdfAttachments.html │ ├── _unionpdf_react.PdfAttachmentsContent.html │ ├── _unionpdf_react.PdfBookmarkEntry.html │ ├── _unionpdf_react.PdfBookmarks.html │ ├── _unionpdf_react.PdfBookmarksContent.html │ ├── _unionpdf_react.PdfDocument.html │ ├── _unionpdf_react.PdfDocumentContextProvider.html │ ├── _unionpdf_react.PdfDownloader.html │ ├── _unionpdf_react.PdfDownloaderContent.html │ ├── _unionpdf_react.PdfEditor.html │ ├── _unionpdf_react.PdfEditorContent.html │ ├── _unionpdf_react.PdfEditorContextProvider.html │ ├── _unionpdf_react.PdfEditorExtractor.html │ ├── _unionpdf_react.PdfEditorPanel.html │ ├── _unionpdf_react.PdfEditorStamp.html │ ├── _unionpdf_react.PdfEditorStamps.html │ ├── _unionpdf_react.PdfEditorStampsContextProvider.html │ ├── _unionpdf_react.PdfEngineContextProvider.html │ ├── _unionpdf_react.PdfLinkAnnoContextProvider.html │ ├── _unionpdf_react.PdfMergeTask.html │ ├── _unionpdf_react.PdfMerger.html │ ├── _unionpdf_react.PdfMetadata.html │ ├── _unionpdf_react.PdfMetadataContent.html │ ├── _unionpdf_react.PdfNativeAdapterProvider.html │ ├── _unionpdf_react.PdfNavigatorContextProvider.html │ ├── _unionpdf_react.PdfPage-1.html │ ├── _unionpdf_react.PdfPageAnnotation.html │ ├── _unionpdf_react.PdfPageAnnotationComponentContextProvider.html │ ├── _unionpdf_react.PdfPageAnnotationMover.html │ ├── _unionpdf_react.PdfPageAnnotationResizer.html │ ├── _unionpdf_react.PdfPageAnnotations.html │ ├── _unionpdf_react.PdfPageAnnotationsLayer.html │ ├── _unionpdf_react.PdfPageCanvasLayer.html │ ├── _unionpdf_react.PdfPageCaretAnnotation.html │ ├── _unionpdf_react.PdfPageCircleAnnotation.html │ ├── _unionpdf_react.PdfPageDefaultAnnotation.html │ ├── _unionpdf_react.PdfPageEditableAnnotations.html │ ├── _unionpdf_react.PdfPageEditorAnnotation.html │ ├── _unionpdf_react.PdfPageEditorAnnotations.html │ ├── _unionpdf_react.PdfPageEditorCanvas.html │ ├── _unionpdf_react.PdfPageEditorLayer.html │ ├── _unionpdf_react.PdfPageFreeTextAnnotation.html │ ├── _unionpdf_react.PdfPageHighlightAnnotation.html │ ├── _unionpdf_react.PdfPageInkAnnotation.html │ ├── _unionpdf_react.PdfPageLineAnnotation.html │ ├── _unionpdf_react.PdfPageLinkAnnotation.html │ ├── _unionpdf_react.PdfPagePolygonAnnotation.html │ ├── _unionpdf_react.PdfPagePolylineAnnotation.html │ ├── _unionpdf_react.PdfPagePopupAnnotation.html │ ├── _unionpdf_react.PdfPageSquareAnnotation.html │ ├── _unionpdf_react.PdfPageSquigglyAnnotation.html │ ├── _unionpdf_react.PdfPageStampAnnotation.html │ ├── _unionpdf_react.PdfPageStrikeOutAnnotation.html │ ├── _unionpdf_react.PdfPageTextAnnotation.html │ ├── _unionpdf_react.PdfPageTextLayer.html │ ├── _unionpdf_react.PdfPageUnderlineAnnotation.html │ ├── _unionpdf_react.PdfPageWidgetAnnotation.html │ ├── _unionpdf_react.PdfPages.html │ ├── _unionpdf_react.PdfPagesContent.html │ ├── _unionpdf_react.PdfPlugin.html │ ├── _unionpdf_react.PdfPluginDialog.html │ ├── _unionpdf_react.PdfPluginPanel.html │ ├── _unionpdf_react.PdfPrinter.html │ ├── _unionpdf_react.PdfPrinterContent.html │ ├── _unionpdf_react.PdfSearch.html │ ├── _unionpdf_react.PdfSearchContent.html │ ├── _unionpdf_react.PdfSignatures.html │ ├── _unionpdf_react.PdfSignaturesContent.html │ ├── _unionpdf_react.PdfThumbnail.html │ ├── _unionpdf_react.PdfThumbnails.html │ ├── _unionpdf_react.PdfThumbnailsContent.html │ ├── _unionpdf_react.PdfThumbnailsGrid.html │ ├── _unionpdf_react.PdfToolbar.html │ ├── _unionpdf_react.PdfToolbarEditorFileItemGroup.html │ ├── _unionpdf_react.PdfToolbarEditorOperationItemGroup.html │ ├── _unionpdf_react.PdfToolbarFileItemGroup.html │ ├── _unionpdf_react.PdfToolbarPagesItemGroup.html │ ├── _unionpdf_react.PdfToolbarPluginItem.html │ ├── _unionpdf_react.PdfToolbarPluginItemGroup.html │ ├── _unionpdf_react.RadioButton.html │ ├── _unionpdf_react.Select.html │ ├── _unionpdf_react.TextArea.html │ ├── _unionpdf_react.ThemeContextProvider.html │ ├── _unionpdf_react.Toolbar.html │ ├── _unionpdf_react.ToolbarItemGroup.html │ ├── _unionpdf_react.UIComponentsContextProvider.html │ ├── _unionpdf_react.UIStringsContextProvider.html │ ├── _unionpdf_react.renderObject.html │ ├── _unionpdf_react.transform.html │ ├── _unionpdf_react.useAnnotationsContext.html │ ├── _unionpdf_react.useIntersectionObserver.html │ ├── _unionpdf_react.useLogger.html │ ├── _unionpdf_react.usePdfApplication.html │ ├── _unionpdf_react.usePdfDocument.html │ ├── _unionpdf_react.usePdfEditor.html │ ├── _unionpdf_react.usePdfEditorStamps.html │ ├── _unionpdf_react.usePdfEngine.html │ ├── _unionpdf_react.usePdfLinkAnnoContext.html │ ├── _unionpdf_react.usePdfNavigator.html │ ├── _unionpdf_react.usePdfPageAnnotationComponent.html │ ├── _unionpdf_react.useTheme.html │ ├── _unionpdf_react.useUIComponents.html │ ├── _unionpdf_react.useUIStrings.html │ └── _unionpdf_react.userUrl.html ├── hierarchy.html ├── index.html ├── interfaces │ ├── _unionpdf_engines.AbortRequest.html │ ├── _unionpdf_engines.ExecuteRequest.html │ ├── _unionpdf_engines.ExecuteResponse.html │ ├── _unionpdf_engines.ReadyResponse.html │ ├── _unionpdf_engines.SearchContext.html │ ├── _unionpdf_models.Logger.html │ ├── _unionpdf_models.PdfAnnotationObjectBase.html │ ├── _unionpdf_models.PdfAnnotationTransformation.html │ ├── _unionpdf_models.PdfAttachmentObject.html │ ├── _unionpdf_models.PdfBookmarkObject.html │ ├── _unionpdf_models.PdfBookmarksObject.html │ ├── _unionpdf_models.PdfCaretAnnoObject.html │ ├── _unionpdf_models.PdfCircleAnnoObject.html │ ├── _unionpdf_models.PdfDestinationObject.html │ ├── _unionpdf_models.PdfDocumentObject.html │ ├── _unionpdf_models.PdfEngine.html │ ├── _unionpdf_models.PdfErrorReason.html │ ├── _unionpdf_models.PdfFile.html │ ├── _unionpdf_models.PdfFileAttachmentAnnoObject.html │ ├── _unionpdf_models.PdfFormObject.html │ ├── _unionpdf_models.PdfFreeTextAnnoObject.html │ ├── _unionpdf_models.PdfHighlightAnnoObject.html │ ├── _unionpdf_models.PdfImageObject.html │ ├── _unionpdf_models.PdfInkAnnoObject.html │ ├── _unionpdf_models.PdfInkListObject.html │ ├── _unionpdf_models.PdfLineAnnoObject.html │ ├── _unionpdf_models.PdfLinkAnnoObject.html │ ├── _unionpdf_models.PdfMetadataObject.html │ ├── _unionpdf_models.PdfPageObject.html │ ├── _unionpdf_models.PdfPathObject.html │ ├── _unionpdf_models.PdfPolygonAnnoObject.html │ ├── _unionpdf_models.PdfPolylineAnnoObject.html │ ├── _unionpdf_models.PdfPopupAnnoObject.html │ ├── _unionpdf_models.PdfRenderOptions.html │ ├── _unionpdf_models.PdfSegmentObject.html │ ├── _unionpdf_models.PdfSignatureObject.html │ ├── _unionpdf_models.PdfSquareAnnoObject.html │ ├── _unionpdf_models.PdfSquigglyAnnoObject.html │ ├── _unionpdf_models.PdfStampAnnoObject.html │ ├── _unionpdf_models.PdfStrikeOutAnnoObject.html │ ├── _unionpdf_models.PdfTextAnnoObject.html │ ├── _unionpdf_models.PdfTextRectObject.html │ ├── _unionpdf_models.PdfTransformMatrix.html │ ├── _unionpdf_models.PdfUnderlineAnnoObject.html │ ├── _unionpdf_models.PdfUnsupportedAnnoObject.html │ ├── _unionpdf_models.PdfWidgetAnnoField.html │ ├── _unionpdf_models.PdfWidgetAnnoObject.html │ ├── _unionpdf_models.PdfWidgetAnnoOption.html │ ├── _unionpdf_models.Position.html │ ├── _unionpdf_models.Rect.html │ ├── _unionpdf_models.SearchResult.html │ ├── _unionpdf_models.SearchTarget.html │ ├── _unionpdf_models.Size.html │ ├── _unionpdf_models.TaskError.html │ ├── _unionpdf_pdfium.PdfiumModule.html │ ├── _unionpdf_pdfium.PdfiumRuntimeMethods.html │ ├── _unionpdf_react.AdaptableComponent.html │ ├── _unionpdf_react.AnnotationsContextValue.html │ ├── _unionpdf_react.ButtonProps.html │ ├── _unionpdf_react.CheckboxProps.html │ ├── _unionpdf_react.DialogProps.html │ ├── _unionpdf_react.DownloaderProps.html │ ├── _unionpdf_react.DraggableData.html │ ├── _unionpdf_react.DraggableStampData.html │ ├── _unionpdf_react.DrawableHandle.html │ ├── _unionpdf_react.DrawablePath.html │ ├── _unionpdf_react.DrawableProps.html │ ├── _unionpdf_react.ErrorBoundaryProps.html │ ├── _unionpdf_react.ErrorBoundaryState.html │ ├── _unionpdf_react.FieldCommonProps.html │ ├── _unionpdf_react.FieldProps.html │ ├── _unionpdf_react.FormFieldProps.html │ ├── _unionpdf_react.FormProps.html │ ├── _unionpdf_react.IconProps.html │ ├── _unionpdf_react.InputProps.html │ ├── _unionpdf_react.IntersectionObserverContextProviderProps.html │ ├── _unionpdf_react.IntersectionObserverContextValue.html │ ├── _unionpdf_react.IntersectionObserverEntryProps.html │ ├── _unionpdf_react.LabelProps.html │ ├── _unionpdf_react.Layout.html │ ├── _unionpdf_react.LinkProps.html │ ├── _unionpdf_react.LoggerContextProviderProps.html │ ├── _unionpdf_react.PanelMountPointContextProviderProps.html │ ├── _unionpdf_react.PanelMountPointContextValue.html │ ├── _unionpdf_react.PanelProps.html │ ├── _unionpdf_react.PdfApplicatinPluginConfiguration.html │ ├── _unionpdf_react.PdfApplicationConfiguration.html │ ├── _unionpdf_react.PdfApplicationConfigurationProvider.html │ ├── _unionpdf_react.PdfApplicationContextProviderProps.html │ ├── _unionpdf_react.PdfApplicationContextValue.html │ ├── _unionpdf_react.PdfApplicationProps.html │ ├── _unionpdf_react.PdfAttachmentsProps.html │ ├── _unionpdf_react.PdfBookmarkEntryProps.html │ ├── _unionpdf_react.PdfBookmarksProps.html │ ├── _unionpdf_react.PdfDocumentContextProviderProps.html │ ├── _unionpdf_react.PdfDocumentContextValue.html │ ├── _unionpdf_react.PdfDocumentProps.html │ ├── _unionpdf_react.PdfDownloaderProps.html │ ├── _unionpdf_react.PdfDraggableMoverOption.html │ ├── _unionpdf_react.PdfDraggableResizerOption.html │ ├── _unionpdf_react.PdfEditorContextProviderProps.html │ ├── _unionpdf_react.PdfEditorContextValue.html │ ├── _unionpdf_react.PdfEditorPanelProps.html │ ├── _unionpdf_react.PdfEditorProps.html │ ├── _unionpdf_react.PdfEditorStacks.html │ ├── _unionpdf_react.PdfEditorStampProps.html │ ├── _unionpdf_react.PdfEditorStampsContextProviderProps.html │ ├── _unionpdf_react.PdfEditorStampsContextValue.html │ ├── _unionpdf_react.PdfEidtorStampsProps.html │ ├── _unionpdf_react.PdfEngineContextProviderProps.html │ ├── _unionpdf_react.PdfFormFieldConfig.html │ ├── _unionpdf_react.PdfLinkAnnoContextProviderProps.html │ ├── _unionpdf_react.PdfLinkAnnoContextValue.html │ ├── _unionpdf_react.PdfMergeTaskProps.html │ ├── _unionpdf_react.PdfMergerProps.html │ ├── _unionpdf_react.PdfMetadataProps.html │ ├── _unionpdf_react.PdfNativeAdapterProviderProps.html │ ├── _unionpdf_react.PdfNavigator.html │ ├── _unionpdf_react.PdfNavigatorContextProviderProps.html │ ├── _unionpdf_react.PdfNavigatorGotoPageEvent.html │ ├── _unionpdf_react.PdfPage.html │ ├── _unionpdf_react.PdfPageAnnotationComponentContexProviderProps.html │ ├── _unionpdf_react.PdfPageAnnotationComponentProps.html │ ├── _unionpdf_react.PdfPageAnnotationMoverProps.html │ ├── _unionpdf_react.PdfPageAnnotationProps.html │ ├── _unionpdf_react.PdfPageAnnotationResizerProps.html │ ├── _unionpdf_react.PdfPageAnnotationsProps.html │ ├── _unionpdf_react.PdfPageCanvasLayerProps.html │ ├── _unionpdf_react.PdfPageCaretAnnotationProps.html │ ├── _unionpdf_react.PdfPageCircleAnnotationProps.html │ ├── _unionpdf_react.PdfPageEditableAnnotationsProps.html │ ├── _unionpdf_react.PdfPageEditorAnnotationProps.html │ ├── _unionpdf_react.PdfPageEditorAnnotationsProps.html │ ├── _unionpdf_react.PdfPageEditorCanvasProps.html │ ├── _unionpdf_react.PdfPageEditorLayerProps.html │ ├── _unionpdf_react.PdfPageFreeTextAnnotationProps.html │ ├── _unionpdf_react.PdfPageHighlightAnnotationProps.html │ ├── _unionpdf_react.PdfPageInkAnnotationProps.html │ ├── _unionpdf_react.PdfPageLayerComponentProps.html │ ├── _unionpdf_react.PdfPageLineAnnotationProps.html │ ├── _unionpdf_react.PdfPageLinkAnnotationProps.html │ ├── _unionpdf_react.PdfPagePolygonAnnotationProps.html │ ├── _unionpdf_react.PdfPagePolylineAnnotationProps.html │ ├── _unionpdf_react.PdfPagePopupAnnotationProps.html │ ├── _unionpdf_react.PdfPageProps.html │ ├── _unionpdf_react.PdfPageSquareAnnotationProps.html │ ├── _unionpdf_react.PdfPageSquigglyAnnotationProps.html │ ├── _unionpdf_react.PdfPageStampAnnotationProps.html │ ├── _unionpdf_react.PdfPageStrikeOutAnnotationProps.html │ ├── _unionpdf_react.PdfPageTextAnnotationProps.html │ ├── _unionpdf_react.PdfPageTextLayerProps.html │ ├── _unionpdf_react.PdfPageUnderlineAnnotationProps.html │ ├── _unionpdf_react.PdfPageWidgetAnnotationProps.html │ ├── _unionpdf_react.PdfPagesContentProps.html │ ├── _unionpdf_react.PdfPagesProps.html │ ├── _unionpdf_react.PdfPluginDialogProps.html │ ├── _unionpdf_react.PdfPluginPanelProps.html │ ├── _unionpdf_react.PdfPluginProps.html │ ├── _unionpdf_react.PdfPrinterProps.html │ ├── _unionpdf_react.PdfSearchProps.html │ ├── _unionpdf_react.PdfSignaturesProps.html │ ├── _unionpdf_react.PdfThumbnailProps.html │ ├── _unionpdf_react.PdfThumbnailsGridProps.html │ ├── _unionpdf_react.PdfThumbnailsProps.html │ ├── _unionpdf_react.PdfToolbarEditorFileItemGroupProps.html │ ├── _unionpdf_react.PdfToolbarEditorOperationItemGroupProps.html │ ├── _unionpdf_react.PdfToolbarFileItemGroupProps.html │ ├── _unionpdf_react.PdfToolbarPagesItemGroupProps.html │ ├── _unionpdf_react.PdfToolbarPluginItemGroupProps.html │ ├── _unionpdf_react.PdfToolbarPluginItemProps.html │ ├── _unionpdf_react.PdfToolbarProps.html │ ├── _unionpdf_react.RadioButtonProps.html │ ├── _unionpdf_react.SelectProps.html │ ├── _unionpdf_react.Stamp.html │ ├── _unionpdf_react.TextAreaProps.html │ ├── _unionpdf_react.Theme.html │ ├── _unionpdf_react.ThemeContextProviderProps.html │ ├── _unionpdf_react.ToolbarItemGroupProps.html │ ├── _unionpdf_react.ToolbarProps.html │ ├── _unionpdf_react.UIComponents.html │ ├── _unionpdf_react.UIComponentsContextProviderProps.html │ ├── _unionpdf_react.UIStrings.html │ └── _unionpdf_react.UIStringsContextProviderProps.html ├── modules │ ├── _unionpdf_engines.html │ ├── _unionpdf_models.html │ ├── _unionpdf_pdfium.html │ └── _unionpdf_react.html ├── types │ ├── _unionpdf_engines.PdfEngineMethodRequestBody.html │ ├── _unionpdf_engines.PdfEngineMethodResponseBody.html │ ├── _unionpdf_engines.Request.html │ ├── _unionpdf_engines.Response.html │ ├── _unionpdf_models.FormFieldValue.html │ ├── _unionpdf_models.PdfActionObject.html │ ├── _unionpdf_models.PdfAnnotationObject.html │ ├── _unionpdf_models.PdfEngineError.html │ ├── _unionpdf_models.PdfEngineMethodArgs.html │ ├── _unionpdf_models.PdfEngineMethodName.html │ ├── _unionpdf_models.PdfEngineMethodReturnType.html │ ├── _unionpdf_models.PdfFileContent.html │ ├── _unionpdf_models.PdfLinkTarget.html │ ├── _unionpdf_models.PdfStampAnnoObjectContents.html │ ├── _unionpdf_models.PdfSupportedAnnoObject.html │ ├── _unionpdf_models.PdfTask.html │ ├── _unionpdf_models.RejectedCallback.html │ ├── _unionpdf_models.ResolvedCallback.html │ ├── _unionpdf_models.TaskReturn.html │ ├── _unionpdf_models.TaskState.html │ ├── _unionpdf_pdfium.CWrappedFunc.html │ ├── _unionpdf_pdfium.Functions.html │ ├── _unionpdf_pdfium.Methods.html │ ├── _unionpdf_pdfium.NameToType.html │ ├── _unionpdf_pdfium.NamesToType.html │ ├── _unionpdf_pdfium.Type.html │ ├── _unionpdf_pdfium.Wrapped.html │ ├── _unionpdf_pdfium.WrappedPdfiumModule.html │ ├── _unionpdf_react.ButtonScenario.html │ ├── _unionpdf_react.DialogScenario.html │ ├── _unionpdf_react.Direction.html │ ├── _unionpdf_react.DraggableOption.html │ ├── _unionpdf_react.FormFieldScenario.html │ ├── _unionpdf_react.FormScenario.html │ ├── _unionpdf_react.LinkScenario.html │ ├── _unionpdf_react.Operation.html │ ├── _unionpdf_react.PanelScenario.html │ ├── _unionpdf_react.PdfNavigatorEvent.html │ ├── _unionpdf_react.PdfNavigatorListener.html │ ├── _unionpdf_react.PdfPageAnnotationComponent.html │ ├── _unionpdf_react.PdfPageLayerComponent.html │ ├── _unionpdf_react.ToolbarItemGroupScenario.html │ ├── _unionpdf_react.ToolbarScenario.html │ └── _unionpdf_react.UIComponent.html └── variables │ ├── _unionpdf_models.PdfAnnotationSubtypeName.html │ ├── _unionpdf_react.ALL_PDF_APPLICATION_PLUGIN_KEYS.html │ ├── _unionpdf_react.AnnotationsContext.html │ ├── _unionpdf_react.DEFAULT_PLUGIN_CONFIGURATIONS.html │ ├── _unionpdf_react.EDITOR_ANNOTATIONS_LOG_SOURCE.html │ ├── _unionpdf_react.EDITOR_CONTEXT_LOG_SOURCE.html │ ├── _unionpdf_react.IntersectionObserverContext.html │ ├── _unionpdf_react.LoggerContext.html │ ├── _unionpdf_react.PAGES_LOG_SOURCE.html │ ├── _unionpdf_react.PDF_NAVIGATOR_ATTACHMENTS_PANEL.html │ ├── _unionpdf_react.PDF_NAVIGATOR_SIGNATURES_PANEL.html │ ├── _unionpdf_react.PDF_NAVIGATOR_SOURCE_BOOKMARKS.html │ ├── _unionpdf_react.PDF_NAVIGATOR_SOURCE_PAGES.html │ ├── _unionpdf_react.PDF_NAVIGATOR_SOURCE_PAGES_TOOLBAR.html │ ├── _unionpdf_react.PDF_NAVIGATOR_SOURCE_SEARCH.html │ ├── _unionpdf_react.PDF_NAVIGATOR_SOURCE_THUMBNAILS.html │ ├── _unionpdf_react.PDF_PAGE_DEFAULT_GAP.html │ ├── _unionpdf_react.PanelMountPointContext.html │ ├── _unionpdf_react.PdfApplicationContext.html │ ├── _unionpdf_react.PdfDocumentContext.html │ ├── _unionpdf_react.PdfEditorContext.html │ ├── _unionpdf_react.PdfEditorStampsContext.html │ ├── _unionpdf_react.PdfEngineContext.html │ ├── _unionpdf_react.PdfLinkAnnoContext.html │ ├── _unionpdf_react.PdfNavigatorContext.html │ ├── _unionpdf_react.PdfPageAnnotationComponentContext.html │ ├── _unionpdf_react.ResizablePdfAnnotationSubTypes.html │ ├── _unionpdf_react.ResizerPositionClassName.html │ ├── _unionpdf_react.ThemeContext.html │ ├── _unionpdf_react.UIComponentsContext.html │ ├── _unionpdf_react.UIStringsContext.html │ ├── _unionpdf_react.components.html │ ├── _unionpdf_react.defaultTheme.html │ └── _unionpdf_react.strings.html ├── package.json ├── packages ├── engines │ ├── .gitignore │ ├── README.md │ ├── demo │ │ ├── index.html │ │ ├── main.tsx │ │ ├── styles.css │ │ ├── url.d.ts │ │ └── webworker.ts │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── mock │ │ │ └── index.ts │ │ ├── pdfium │ │ │ ├── engine.test.ts │ │ │ ├── engine.ts │ │ │ ├── helper.test.ts │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ └── runner.ts │ │ └── webworker │ │ │ ├── engine.ts │ │ │ ├── index.ts │ │ │ └── runner.ts │ ├── tsconfig.json │ └── typedoc.json ├── models │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── geometry.test.ts │ │ ├── geometry.ts │ │ ├── index.ts │ │ ├── logger.test.ts │ │ ├── logger.ts │ │ ├── pdf.ts │ │ ├── task.test.ts │ │ └── task.ts │ ├── tsconfig.json │ └── typedoc.json ├── pdfium │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── build │ │ ├── code │ │ │ └── cpp │ │ │ │ ├── filewriter.cpp │ │ │ │ ├── filewriter.h │ │ │ │ └── main.cpp │ │ ├── compile.sh │ │ └── patch │ │ │ ├── BUILD.gn │ │ │ ├── build │ │ │ └── config │ │ │ │ └── BUILDCONFIG.gn │ │ │ └── core │ │ │ └── fxge │ │ │ └── BUILD.gn │ ├── jest.config.js │ ├── package.json │ ├── scripts │ │ ├── exported-functions.js │ │ ├── exported-runtime-methods.js │ │ ├── generate-exported-functions.js │ │ └── generate-exported-runtime-methods.js │ ├── src │ │ ├── functions.ts │ │ ├── index.ts │ │ ├── pdfium.d.ts │ │ ├── pdfium.js │ │ ├── pdfium.wasm │ │ └── runtime.ts │ ├── tsconfig.json │ └── typedoc.json └── react │ ├── .gitignore │ ├── README.md │ ├── demo │ ├── index.html │ ├── main.tsx │ ├── styles.css │ ├── url.d.ts │ └── webworker.ts │ ├── jest.config.js │ ├── package.json │ ├── playwright.config.js │ ├── src │ ├── adapters │ │ ├── index.ts │ │ ├── native │ │ │ ├── components.css │ │ │ ├── components.test.tsx │ │ │ ├── components.tsx │ │ │ ├── index.tsx │ │ │ └── strings.tsx │ │ ├── testing │ │ │ └── index.tsx │ │ ├── uicomponents.context.tes.tsx │ │ ├── uicomponents.context.tsx │ │ ├── uistrings.context.test.tsx │ │ └── uistrings.context.tsx │ ├── components │ │ ├── annotations │ │ │ ├── caret.css │ │ │ ├── caret.tsx │ │ │ ├── circle.css │ │ │ ├── circle.tsx │ │ │ ├── freetext.css │ │ │ ├── freetext.test.tsx │ │ │ ├── freetext.tsx │ │ │ ├── highlight.css │ │ │ ├── highlight.tsx │ │ │ ├── index.ts │ │ │ ├── ink.css │ │ │ ├── ink.tsx │ │ │ ├── line.css │ │ │ ├── line.tsx │ │ │ ├── link.context.test.tsx │ │ │ ├── link.context.tsx │ │ │ ├── link.css │ │ │ ├── link.test.tsx │ │ │ ├── link.tsx │ │ │ ├── polygon.css │ │ │ ├── polygon.tsx │ │ │ ├── polyline.css │ │ │ ├── polyline.tsx │ │ │ ├── popup.css │ │ │ ├── popup.test.tsx │ │ │ ├── popup.tsx │ │ │ ├── square.css │ │ │ ├── square.tsx │ │ │ ├── squiggly.css │ │ │ ├── squiggly.tsx │ │ │ ├── stamp.css │ │ │ ├── stamp.tsx │ │ │ ├── strikeout.css │ │ │ ├── strikeout.tsx │ │ │ ├── text.css │ │ │ ├── text.test.tsx │ │ │ ├── text.tsx │ │ │ ├── underline.css │ │ │ ├── underline.tsx │ │ │ ├── widget.css │ │ │ ├── widget.test.tsx │ │ │ └── widget.tsx │ │ ├── common │ │ │ ├── annotation.css │ │ │ ├── annotation.default.tsx │ │ │ ├── annotation.test.tsx │ │ │ ├── annotation.tsx │ │ │ ├── annotations.context.test.tsx │ │ │ ├── annotations.context.tsx │ │ │ ├── annotations.tsx │ │ │ ├── downloader.css │ │ │ ├── downloader.tsx │ │ │ ├── drawable.css │ │ │ ├── drawable.tsx │ │ │ └── index.ts │ │ ├── editor │ │ │ ├── annotation.css │ │ │ ├── annotation.test.tsx │ │ │ ├── annotation.tsx │ │ │ ├── annotations.context.tsx │ │ │ ├── annotations.css │ │ │ ├── annotations.tsx │ │ │ ├── canvas.css │ │ │ ├── canvas.test.tsx │ │ │ ├── canvas.tsx │ │ │ ├── editor.context.test.tsx │ │ │ ├── editor.context.tsx │ │ │ ├── extractor.css │ │ │ ├── extractor.test.tsx │ │ │ ├── extractor.tsx │ │ │ ├── index.ts │ │ │ ├── panel.css │ │ │ ├── panel.test.tsx │ │ │ ├── panel.tsx │ │ │ ├── stamps.context.test.tsx │ │ │ ├── stamps.context.tsx │ │ │ ├── stamps.css │ │ │ ├── stamps.test.tsx │ │ │ ├── stamps.tsx │ │ │ ├── toolbar.css │ │ │ └── toolbar.tsx │ │ ├── form │ │ │ ├── checkbox.tsx │ │ │ ├── combobox.tsx │ │ │ ├── common.tsx │ │ │ ├── field.css │ │ │ ├── field.tsx │ │ │ ├── index.ts │ │ │ ├── pushbutton.tsx │ │ │ ├── radiobutton.tsx │ │ │ └── textfield.tsx │ │ ├── helpers │ │ │ ├── clone.ts │ │ │ ├── editor.test.ts │ │ │ ├── editor.ts │ │ │ ├── file.ts │ │ │ ├── image.ts │ │ │ └── scrollable.ts │ │ ├── index.ts │ │ ├── merger │ │ │ ├── index.tsx │ │ │ ├── merger.css │ │ │ └── merger.tsx │ │ ├── pageLayers │ │ │ ├── annotations.css │ │ │ ├── annotations.test.tsx │ │ │ ├── annotations.tsx │ │ │ ├── canvas.css │ │ │ ├── canvas.test.tsx │ │ │ ├── canvas.tsx │ │ │ ├── decorations.css │ │ │ ├── decorations.test.tsx │ │ │ ├── decorations.tsx │ │ │ ├── editor.css │ │ │ ├── editor.test.tsx │ │ │ ├── editor.tsx │ │ │ ├── index.tsx │ │ │ ├── layer.ts │ │ │ ├── text.css │ │ │ ├── text.test.tsx │ │ │ └── text.tsx │ │ └── plugins │ │ │ ├── attachments.css │ │ │ ├── attachments.test.tsx │ │ │ ├── attachments.tsx │ │ │ ├── bookmarks.css │ │ │ ├── bookmarks.test.tsx │ │ │ ├── bookmarks.tsx │ │ │ ├── downloader.css │ │ │ ├── downloader.tsx │ │ │ ├── editor.css │ │ │ ├── editor.test.tsx │ │ │ ├── editor.tsx │ │ │ ├── index.ts │ │ │ ├── metadata.css │ │ │ ├── metadata.test.tsx │ │ │ ├── metadata.tsx │ │ │ ├── pages.css │ │ │ ├── pages.test.tsx │ │ │ ├── pages.toolbar.css │ │ │ ├── pages.toolbar.test.tsx │ │ │ ├── pages.toolbar.tsx │ │ │ ├── pages.tsx │ │ │ ├── printer.css │ │ │ ├── printer.tsx │ │ │ ├── search.css │ │ │ ├── search.test.tsx │ │ │ ├── search.tsx │ │ │ ├── signatures.css │ │ │ ├── signatures.test.tsx │ │ │ ├── signatures.tsx │ │ │ ├── thumbnails.css │ │ │ ├── thumbnails.test.tsx │ │ │ ├── thumbnails.tsx │ │ │ ├── toolbar.css │ │ │ ├── toolbar.test.tsx │ │ │ └── toolbar.tsx │ ├── core │ │ ├── application.configuration.ts │ │ ├── application.context.test.tsx │ │ ├── application.context.tsx │ │ ├── application.test.tsx │ │ ├── application.tsx │ │ ├── decorations.context.tsx │ │ ├── decoratons.context.test.tsx │ │ ├── document.context.test.tsx │ │ ├── document.context.tsx │ │ ├── document.css │ │ ├── document.test.tsx │ │ ├── document.tsx │ │ ├── engine.context.test.tsx │ │ ├── engine.context.tsx │ │ ├── errorboundary.test.tsx │ │ ├── errorboundary.tsx │ │ ├── index.ts │ │ ├── intersectionobserver.context.test.tsx │ │ ├── intersectionobserver.context.tsx │ │ ├── intersectionobserver.entry.test.tsx │ │ ├── intersectionobserver.entry.tsx │ │ ├── logger.context.test.tsx │ │ ├── logger.context.tsx │ │ ├── navigator.context.test.tsx │ │ ├── navigator.context.tsx │ │ ├── plugin.tsx │ │ ├── theme.context.test.tsx │ │ └── theme.context.tsx │ ├── hooks │ │ ├── index.ts │ │ └── useUrl.tsx │ ├── index.ts │ └── mocks │ │ └── intersectionObserver.ts │ ├── tests │ ├── edit.spec.ts │ ├── prolog.pdf │ └── view.spec.ts │ ├── tsconfig.json │ └── typedoc.json ├── typedoc.base.json └── typedoc.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.github/workflows/artifact.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | .parcel-cache -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/_unionpdf_engines.EngineRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_engines.EngineRunner.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_engines.PdfiumEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_engines.PdfiumEngine.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_engines.PdfiumEngineRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_engines.PdfiumEngineRunner.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_engines.WebWorkerEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_engines.WebWorkerEngine.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_engines.WorkerTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_engines.WorkerTask.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.AllLogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.AllLogger.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.ConsoleLogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.ConsoleLogger.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.LevelLogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.LevelLogger.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.NoopLogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.NoopLogger.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.PdfTaskHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.PdfTaskHelper.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.PerfLogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.PerfLogger.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_models.Task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_models.Task.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_react.ErrorBoundary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_react.ErrorBoundary.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_react.MemoryPdfApplicationConfigurationProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_react.MemoryPdfApplicationConfigurationProvider.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_react.PdfApplicationConfigurationProviderBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_react.PdfApplicationConfigurationProviderBase.html -------------------------------------------------------------------------------- /docs/classes/_unionpdf_react.StoragePdfApplicationConfigurationProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/classes/_unionpdf_react.StoragePdfApplicationConfigurationProvider.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_engines.BitmapFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_engines.BitmapFormat.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_engines.PdfiumErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_engines.PdfiumErrorCode.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_engines.RenderFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_engines.RenderFlag.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.AppearanceMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.AppearanceMode.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.LogLevel.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.MatchFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.MatchFlag.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PDF_FORM_FIELD_FLAG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PDF_FORM_FIELD_FLAG.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PDF_FORM_FIELD_TYPE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PDF_FORM_FIELD_TYPE.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfActionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfActionType.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfAnnotationObjectStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfAnnotationObjectStatus.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfAnnotationSubtype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfAnnotationSubtype.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfEngineFeature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfEngineFeature.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfEngineOperation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfEngineOperation.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfErrorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfErrorCode.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfPageObjectType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfPageObjectType.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfPermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfPermission.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfSegmentObjectType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfSegmentObjectType.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.PdfZoomMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.PdfZoomMode.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.Rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.Rotation.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_models.TaskStage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_models.TaskStage.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.MergeStep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.MergeStep.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.PdfAnnotationMarker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.PdfAnnotationMarker.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.PdfAnnotationTool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.PdfAnnotationTool.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.PdfApplicatinPluginKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.PdfApplicatinPluginKey.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.PdfApplicationMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.PdfApplicationMode.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.PdfEditorTool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.PdfEditorTool.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.PrinterMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.PrinterMethod.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.ResizerPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.ResizerPosition.html -------------------------------------------------------------------------------- /docs/enums/_unionpdf_react.StackStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/enums/_unionpdf_react.StackStatus.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_engines.createMockPdfDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_engines.createMockPdfDocument.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_engines.createMockPdfEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_engines.createMockPdfEngine.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_engines.createMockPdfFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_engines.createMockPdfFile.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_engines.readArrayBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_engines.readArrayBuffer.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_engines.readString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_engines.readString.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.calculateAngle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.calculateAngle.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.calculateDegree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.calculateDegree.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.compareSearchTarget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.compareSearchTarget.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.ignore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.ignore.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.restoreOffset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.restoreOffset.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.restorePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.restorePosition.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.restoreRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.restoreRect.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.rotatePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.rotatePosition.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.rotateRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.rotateRect.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.scalePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.scalePosition.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.scaleRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.scaleRect.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.swap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.swap.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.transformPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.transformPosition.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.transformRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.transformRect.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.transformSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.transformSize.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_models.unionFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_models.unionFlags.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_pdfium.init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_pdfium.init.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Button.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Checkbox.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Dialog.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Downloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Downloader.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Drawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Drawable.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Field.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Form.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.FormField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.FormField.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Icon.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Input.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.IntersectionObserverContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.IntersectionObserverContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.IntersectionObserverEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.IntersectionObserverEntry.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Label.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Link.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.LoggerContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.LoggerContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Panel.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PanelMountPointContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PanelMountPointContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfApplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfApplication.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfApplicationContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfApplicationContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfAttachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfAttachments.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfAttachmentsContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfAttachmentsContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfBookmarkEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfBookmarkEntry.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfBookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfBookmarks.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfBookmarksContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfBookmarksContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfDocument.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfDocumentContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfDocumentContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfDownloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfDownloader.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfDownloaderContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfDownloaderContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditor.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorExtractor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorExtractor.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorPanel.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorStamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorStamp.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorStamps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorStamps.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEditorStampsContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEditorStampsContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfEngineContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfEngineContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfLinkAnnoContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfLinkAnnoContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfMergeTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfMergeTask.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfMerger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfMerger.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfMetadata.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfMetadataContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfMetadataContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfNativeAdapterProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfNativeAdapterProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfNavigatorContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfNavigatorContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPage-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPage-1.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageAnnotationComponentContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageAnnotationComponentContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageAnnotationMover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageAnnotationMover.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageAnnotationResizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageAnnotationResizer.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageAnnotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageAnnotations.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageAnnotationsLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageAnnotationsLayer.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageCanvasLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageCanvasLayer.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageCaretAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageCaretAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageCircleAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageCircleAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageDefaultAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageDefaultAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageEditableAnnotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageEditableAnnotations.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageEditorAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageEditorAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageEditorAnnotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageEditorAnnotations.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageEditorCanvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageEditorCanvas.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageEditorLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageEditorLayer.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageFreeTextAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageFreeTextAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageHighlightAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageHighlightAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageInkAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageInkAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageLineAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageLineAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageLinkAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageLinkAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPagePolygonAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPagePolygonAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPagePolylineAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPagePolylineAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPagePopupAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPagePopupAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageSquareAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageSquareAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageSquigglyAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageSquigglyAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageStampAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageStampAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageStrikeOutAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageStrikeOutAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageTextAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageTextAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageTextLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageTextLayer.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageUnderlineAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageUnderlineAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPageWidgetAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPageWidgetAnnotation.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPages.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPagesContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPagesContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPlugin.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPluginDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPluginDialog.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPluginPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPluginPanel.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPrinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPrinter.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfPrinterContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfPrinterContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfSearch.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfSearchContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfSearchContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfSignatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfSignatures.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfSignaturesContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfSignaturesContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfThumbnail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfThumbnail.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfThumbnails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfThumbnails.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfThumbnailsContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfThumbnailsContent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfThumbnailsGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfThumbnailsGrid.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbar.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbarEditorFileItemGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbarEditorFileItemGroup.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbarEditorOperationItemGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbarEditorOperationItemGroup.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbarFileItemGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbarFileItemGroup.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbarPagesItemGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbarPagesItemGroup.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbarPluginItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbarPluginItem.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.PdfToolbarPluginItemGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.PdfToolbarPluginItemGroup.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.RadioButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.RadioButton.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Select.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.TextArea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.TextArea.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.ThemeContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.ThemeContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.Toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.Toolbar.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.ToolbarItemGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.ToolbarItemGroup.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.UIComponentsContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.UIComponentsContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.UIStringsContextProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.UIStringsContextProvider.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.renderObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.renderObject.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.transform.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.useAnnotationsContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.useAnnotationsContext.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.useIntersectionObserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.useIntersectionObserver.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.useLogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.useLogger.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfApplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfApplication.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfDocument.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfEditor.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfEditorStamps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfEditorStamps.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfEngine.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfLinkAnnoContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfLinkAnnoContext.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfNavigator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfNavigator.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.usePdfPageAnnotationComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.usePdfPageAnnotationComponent.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.useTheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.useTheme.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.useUIComponents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.useUIComponents.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.useUIStrings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.useUIStrings.html -------------------------------------------------------------------------------- /docs/functions/_unionpdf_react.userUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/functions/_unionpdf_react.userUrl.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_engines.AbortRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_engines.AbortRequest.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_engines.ExecuteRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_engines.ExecuteRequest.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_engines.ExecuteResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_engines.ExecuteResponse.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_engines.ReadyResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_engines.ReadyResponse.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_engines.SearchContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_engines.SearchContext.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.Logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.Logger.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfAnnotationObjectBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfAnnotationObjectBase.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfAnnotationTransformation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfAnnotationTransformation.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfAttachmentObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfAttachmentObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfBookmarkObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfBookmarkObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfBookmarksObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfBookmarksObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfCaretAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfCaretAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfCircleAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfCircleAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfDestinationObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfDestinationObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfDocumentObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfDocumentObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfEngine.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfErrorReason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfErrorReason.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfFile.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfFileAttachmentAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfFileAttachmentAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfFormObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfFormObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfFreeTextAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfFreeTextAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfHighlightAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfHighlightAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfImageObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfImageObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfInkAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfInkAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfInkListObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfInkListObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfLineAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfLineAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfLinkAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfLinkAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfMetadataObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfMetadataObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfPageObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfPageObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfPathObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfPathObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfPolygonAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfPolygonAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfPolylineAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfPolylineAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfPopupAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfPopupAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfRenderOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfRenderOptions.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfSegmentObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfSegmentObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfSignatureObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfSignatureObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfSquareAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfSquareAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfSquigglyAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfSquigglyAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfStampAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfStampAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfStrikeOutAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfStrikeOutAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfTextAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfTextAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfTextRectObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfTextRectObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfTransformMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfTransformMatrix.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfUnderlineAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfUnderlineAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfUnsupportedAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfUnsupportedAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfWidgetAnnoField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfWidgetAnnoField.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfWidgetAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfWidgetAnnoObject.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.PdfWidgetAnnoOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.PdfWidgetAnnoOption.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.Position.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.Rect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.Rect.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.SearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.SearchResult.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.SearchTarget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.SearchTarget.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.Size.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_models.TaskError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_models.TaskError.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_pdfium.PdfiumModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_pdfium.PdfiumModule.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_pdfium.PdfiumRuntimeMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_pdfium.PdfiumRuntimeMethods.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.AdaptableComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.AdaptableComponent.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.AnnotationsContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.AnnotationsContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.ButtonProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.ButtonProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.CheckboxProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.CheckboxProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DialogProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DialogProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DownloaderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DownloaderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DraggableData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DraggableData.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DraggableStampData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DraggableStampData.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DrawableHandle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DrawableHandle.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DrawablePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DrawablePath.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.DrawableProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.DrawableProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.ErrorBoundaryProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.ErrorBoundaryProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.ErrorBoundaryState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.ErrorBoundaryState.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.FieldCommonProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.FieldCommonProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.FieldProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.FieldProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.FormFieldProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.FormFieldProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.FormProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.FormProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.IconProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.IconProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.InputProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.InputProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.IntersectionObserverContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.IntersectionObserverContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.IntersectionObserverContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.IntersectionObserverContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.IntersectionObserverEntryProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.IntersectionObserverEntryProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.LabelProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.LabelProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.Layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.Layout.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.LinkProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.LinkProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.LoggerContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.LoggerContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PanelMountPointContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PanelMountPointContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PanelMountPointContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PanelMountPointContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PanelProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PanelProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfApplicatinPluginConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfApplicatinPluginConfiguration.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfApplicationConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfApplicationConfiguration.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfApplicationConfigurationProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfApplicationConfigurationProvider.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfApplicationContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfApplicationContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfApplicationContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfApplicationContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfApplicationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfApplicationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfAttachmentsProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfAttachmentsProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfBookmarkEntryProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfBookmarkEntryProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfBookmarksProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfBookmarksProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfDocumentContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfDocumentContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfDocumentContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfDocumentContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfDocumentProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfDocumentProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfDownloaderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfDownloaderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfDraggableMoverOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfDraggableMoverOption.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfDraggableResizerOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfDraggableResizerOption.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorPanelProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorPanelProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorStacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorStacks.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorStampProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorStampProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorStampsContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorStampsContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEditorStampsContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEditorStampsContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEidtorStampsProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEidtorStampsProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfEngineContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfEngineContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfFormFieldConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfFormFieldConfig.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfLinkAnnoContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfLinkAnnoContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfLinkAnnoContextValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfLinkAnnoContextValue.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfMergeTaskProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfMergeTaskProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfMergerProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfMergerProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfMetadataProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfMetadataProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfNativeAdapterProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfNativeAdapterProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfNavigator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfNavigator.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfNavigatorContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfNavigatorContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfNavigatorGotoPageEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfNavigatorGotoPageEvent.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPage.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageAnnotationComponentContexProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageAnnotationComponentContexProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageAnnotationComponentProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageAnnotationComponentProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageAnnotationMoverProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageAnnotationMoverProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageAnnotationResizerProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageAnnotationResizerProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageAnnotationsProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageAnnotationsProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageCanvasLayerProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageCanvasLayerProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageCaretAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageCaretAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageCircleAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageCircleAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageEditableAnnotationsProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageEditableAnnotationsProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageEditorAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageEditorAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageEditorAnnotationsProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageEditorAnnotationsProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageEditorCanvasProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageEditorCanvasProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageEditorLayerProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageEditorLayerProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageFreeTextAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageFreeTextAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageHighlightAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageHighlightAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageInkAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageInkAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageLayerComponentProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageLayerComponentProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageLineAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageLineAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageLinkAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageLinkAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPagePolygonAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPagePolygonAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPagePolylineAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPagePolylineAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPagePopupAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPagePopupAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageSquareAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageSquareAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageSquigglyAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageSquigglyAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageStampAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageStampAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageStrikeOutAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageStrikeOutAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageTextAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageTextAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageTextLayerProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageTextLayerProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageUnderlineAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageUnderlineAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPageWidgetAnnotationProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPageWidgetAnnotationProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPagesContentProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPagesContentProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPagesProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPagesProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPluginDialogProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPluginDialogProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPluginPanelProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPluginPanelProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPluginProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPluginProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfPrinterProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfPrinterProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfSearchProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfSearchProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfSignaturesProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfSignaturesProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfThumbnailProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfThumbnailProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfThumbnailsGridProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfThumbnailsGridProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfThumbnailsProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfThumbnailsProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarEditorFileItemGroupProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarEditorFileItemGroupProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarEditorOperationItemGroupProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarEditorOperationItemGroupProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarFileItemGroupProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarFileItemGroupProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarPagesItemGroupProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarPagesItemGroupProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarPluginItemGroupProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarPluginItemGroupProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarPluginItemProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarPluginItemProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.PdfToolbarProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.PdfToolbarProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.RadioButtonProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.RadioButtonProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.SelectProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.SelectProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.Stamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.Stamp.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.TextAreaProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.TextAreaProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.Theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.Theme.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.ThemeContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.ThemeContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.ToolbarItemGroupProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.ToolbarItemGroupProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.ToolbarProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.ToolbarProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.UIComponents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.UIComponents.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.UIComponentsContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.UIComponentsContextProviderProps.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.UIStrings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.UIStrings.html -------------------------------------------------------------------------------- /docs/interfaces/_unionpdf_react.UIStringsContextProviderProps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/interfaces/_unionpdf_react.UIStringsContextProviderProps.html -------------------------------------------------------------------------------- /docs/modules/_unionpdf_engines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/modules/_unionpdf_engines.html -------------------------------------------------------------------------------- /docs/modules/_unionpdf_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/modules/_unionpdf_models.html -------------------------------------------------------------------------------- /docs/modules/_unionpdf_pdfium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/modules/_unionpdf_pdfium.html -------------------------------------------------------------------------------- /docs/modules/_unionpdf_react.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/modules/_unionpdf_react.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_engines.PdfEngineMethodRequestBody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_engines.PdfEngineMethodRequestBody.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_engines.PdfEngineMethodResponseBody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_engines.PdfEngineMethodResponseBody.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_engines.Request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_engines.Request.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_engines.Response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_engines.Response.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.FormFieldValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.FormFieldValue.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfActionObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfActionObject.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfAnnotationObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfAnnotationObject.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfEngineError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfEngineError.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfEngineMethodArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfEngineMethodArgs.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfEngineMethodName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfEngineMethodName.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfEngineMethodReturnType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfEngineMethodReturnType.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfFileContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfFileContent.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfLinkTarget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfLinkTarget.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfStampAnnoObjectContents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfStampAnnoObjectContents.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfSupportedAnnoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfSupportedAnnoObject.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.PdfTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.PdfTask.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.RejectedCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.RejectedCallback.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.ResolvedCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.ResolvedCallback.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.TaskReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.TaskReturn.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_models.TaskState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_models.TaskState.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.CWrappedFunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.CWrappedFunc.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.Functions.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.Methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.Methods.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.NameToType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.NameToType.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.NamesToType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.NamesToType.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.Type.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.Wrapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.Wrapped.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_pdfium.WrappedPdfiumModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_pdfium.WrappedPdfiumModule.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.ButtonScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.ButtonScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.DialogScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.DialogScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.Direction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.Direction.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.DraggableOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.DraggableOption.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.FormFieldScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.FormFieldScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.FormScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.FormScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.LinkScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.LinkScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.Operation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.Operation.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.PanelScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.PanelScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.PdfNavigatorEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.PdfNavigatorEvent.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.PdfNavigatorListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.PdfNavigatorListener.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.PdfPageAnnotationComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.PdfPageAnnotationComponent.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.PdfPageLayerComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.PdfPageLayerComponent.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.ToolbarItemGroupScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.ToolbarItemGroupScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.ToolbarScenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.ToolbarScenario.html -------------------------------------------------------------------------------- /docs/types/_unionpdf_react.UIComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/types/_unionpdf_react.UIComponent.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_models.PdfAnnotationSubtypeName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_models.PdfAnnotationSubtypeName.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.ALL_PDF_APPLICATION_PLUGIN_KEYS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.ALL_PDF_APPLICATION_PLUGIN_KEYS.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.AnnotationsContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.AnnotationsContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.DEFAULT_PLUGIN_CONFIGURATIONS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.DEFAULT_PLUGIN_CONFIGURATIONS.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.EDITOR_ANNOTATIONS_LOG_SOURCE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.EDITOR_ANNOTATIONS_LOG_SOURCE.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.EDITOR_CONTEXT_LOG_SOURCE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.EDITOR_CONTEXT_LOG_SOURCE.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.IntersectionObserverContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.IntersectionObserverContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.LoggerContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.LoggerContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PAGES_LOG_SOURCE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PAGES_LOG_SOURCE.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_ATTACHMENTS_PANEL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_ATTACHMENTS_PANEL.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_SIGNATURES_PANEL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_SIGNATURES_PANEL.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_BOOKMARKS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_BOOKMARKS.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_PAGES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_PAGES.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_PAGES_TOOLBAR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_PAGES_TOOLBAR.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_SEARCH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_SEARCH.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_THUMBNAILS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_NAVIGATOR_SOURCE_THUMBNAILS.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PDF_PAGE_DEFAULT_GAP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PDF_PAGE_DEFAULT_GAP.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PanelMountPointContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PanelMountPointContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfApplicationContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfApplicationContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfDocumentContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfDocumentContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfEditorContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfEditorContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfEditorStampsContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfEditorStampsContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfEngineContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfEngineContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfLinkAnnoContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfLinkAnnoContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfNavigatorContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfNavigatorContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.PdfPageAnnotationComponentContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.PdfPageAnnotationComponentContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.ResizablePdfAnnotationSubTypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.ResizablePdfAnnotationSubTypes.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.ResizerPositionClassName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.ResizerPositionClassName.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.ThemeContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.ThemeContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.UIComponentsContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.UIComponentsContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.UIStringsContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.UIStringsContext.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.components.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.defaultTheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.defaultTheme.html -------------------------------------------------------------------------------- /docs/variables/_unionpdf_react.strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/docs/variables/_unionpdf_react.strings.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/package.json -------------------------------------------------------------------------------- /packages/engines/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/.gitignore -------------------------------------------------------------------------------- /packages/engines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/README.md -------------------------------------------------------------------------------- /packages/engines/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/demo/index.html -------------------------------------------------------------------------------- /packages/engines/demo/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/demo/main.tsx -------------------------------------------------------------------------------- /packages/engines/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/demo/styles.css -------------------------------------------------------------------------------- /packages/engines/demo/url.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/demo/url.d.ts -------------------------------------------------------------------------------- /packages/engines/demo/webworker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/demo/webworker.ts -------------------------------------------------------------------------------- /packages/engines/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/jest.config.js -------------------------------------------------------------------------------- /packages/engines/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/package.json -------------------------------------------------------------------------------- /packages/engines/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/index.ts -------------------------------------------------------------------------------- /packages/engines/src/mock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/mock/index.ts -------------------------------------------------------------------------------- /packages/engines/src/pdfium/engine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/pdfium/engine.test.ts -------------------------------------------------------------------------------- /packages/engines/src/pdfium/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/pdfium/engine.ts -------------------------------------------------------------------------------- /packages/engines/src/pdfium/helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/pdfium/helper.test.ts -------------------------------------------------------------------------------- /packages/engines/src/pdfium/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/pdfium/helper.ts -------------------------------------------------------------------------------- /packages/engines/src/pdfium/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/pdfium/index.ts -------------------------------------------------------------------------------- /packages/engines/src/pdfium/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/pdfium/runner.ts -------------------------------------------------------------------------------- /packages/engines/src/webworker/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/webworker/engine.ts -------------------------------------------------------------------------------- /packages/engines/src/webworker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/webworker/index.ts -------------------------------------------------------------------------------- /packages/engines/src/webworker/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/src/webworker/runner.ts -------------------------------------------------------------------------------- /packages/engines/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/tsconfig.json -------------------------------------------------------------------------------- /packages/engines/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/engines/typedoc.json -------------------------------------------------------------------------------- /packages/models/.gitignore: -------------------------------------------------------------------------------- 1 | .parcel-cache 2 | node_modules/ 3 | src/**/*.js 4 | dist 5 | temp -------------------------------------------------------------------------------- /packages/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/README.md -------------------------------------------------------------------------------- /packages/models/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/jest.config.js -------------------------------------------------------------------------------- /packages/models/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/package.json -------------------------------------------------------------------------------- /packages/models/src/geometry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/geometry.test.ts -------------------------------------------------------------------------------- /packages/models/src/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/geometry.ts -------------------------------------------------------------------------------- /packages/models/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/index.ts -------------------------------------------------------------------------------- /packages/models/src/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/logger.test.ts -------------------------------------------------------------------------------- /packages/models/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/logger.ts -------------------------------------------------------------------------------- /packages/models/src/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/pdf.ts -------------------------------------------------------------------------------- /packages/models/src/task.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/task.test.ts -------------------------------------------------------------------------------- /packages/models/src/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/src/task.ts -------------------------------------------------------------------------------- /packages/models/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/tsconfig.json -------------------------------------------------------------------------------- /packages/models/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/models/typedoc.json -------------------------------------------------------------------------------- /packages/pdfium/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/.gitignore -------------------------------------------------------------------------------- /packages/pdfium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/Dockerfile -------------------------------------------------------------------------------- /packages/pdfium/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/LICENSE -------------------------------------------------------------------------------- /packages/pdfium/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/Makefile -------------------------------------------------------------------------------- /packages/pdfium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/README.md -------------------------------------------------------------------------------- /packages/pdfium/build/code/cpp/filewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/code/cpp/filewriter.cpp -------------------------------------------------------------------------------- /packages/pdfium/build/code/cpp/filewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/code/cpp/filewriter.h -------------------------------------------------------------------------------- /packages/pdfium/build/code/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/code/cpp/main.cpp -------------------------------------------------------------------------------- /packages/pdfium/build/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/compile.sh -------------------------------------------------------------------------------- /packages/pdfium/build/patch/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/patch/BUILD.gn -------------------------------------------------------------------------------- /packages/pdfium/build/patch/build/config/BUILDCONFIG.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/patch/build/config/BUILDCONFIG.gn -------------------------------------------------------------------------------- /packages/pdfium/build/patch/core/fxge/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/build/patch/core/fxge/BUILD.gn -------------------------------------------------------------------------------- /packages/pdfium/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/jest.config.js -------------------------------------------------------------------------------- /packages/pdfium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/package.json -------------------------------------------------------------------------------- /packages/pdfium/scripts/exported-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/scripts/exported-functions.js -------------------------------------------------------------------------------- /packages/pdfium/scripts/exported-runtime-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/scripts/exported-runtime-methods.js -------------------------------------------------------------------------------- /packages/pdfium/scripts/generate-exported-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/scripts/generate-exported-functions.js -------------------------------------------------------------------------------- /packages/pdfium/scripts/generate-exported-runtime-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/scripts/generate-exported-runtime-methods.js -------------------------------------------------------------------------------- /packages/pdfium/src/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/src/functions.ts -------------------------------------------------------------------------------- /packages/pdfium/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/src/index.ts -------------------------------------------------------------------------------- /packages/pdfium/src/pdfium.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/src/pdfium.d.ts -------------------------------------------------------------------------------- /packages/pdfium/src/pdfium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/src/pdfium.js -------------------------------------------------------------------------------- /packages/pdfium/src/pdfium.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/src/pdfium.wasm -------------------------------------------------------------------------------- /packages/pdfium/src/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/src/runtime.ts -------------------------------------------------------------------------------- /packages/pdfium/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/tsconfig.json -------------------------------------------------------------------------------- /packages/pdfium/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/pdfium/typedoc.json -------------------------------------------------------------------------------- /packages/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/.gitignore -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/demo/index.html -------------------------------------------------------------------------------- /packages/react/demo/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/demo/main.tsx -------------------------------------------------------------------------------- /packages/react/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/demo/styles.css -------------------------------------------------------------------------------- /packages/react/demo/url.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/demo/url.d.ts -------------------------------------------------------------------------------- /packages/react/demo/webworker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/demo/webworker.ts -------------------------------------------------------------------------------- /packages/react/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/jest.config.js -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/playwright.config.js -------------------------------------------------------------------------------- /packages/react/src/adapters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/index.ts -------------------------------------------------------------------------------- /packages/react/src/adapters/native/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/native/components.css -------------------------------------------------------------------------------- /packages/react/src/adapters/native/components.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/native/components.test.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/native/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/native/components.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/native/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/native/index.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/native/strings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/native/strings.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/testing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/testing/index.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/uicomponents.context.tes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/uicomponents.context.tes.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/uicomponents.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/uicomponents.context.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/uistrings.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/uistrings.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/adapters/uistrings.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/adapters/uistrings.context.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/caret.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/caret.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/caret.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/caret.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/circle.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/circle.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/freetext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/freetext.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/freetext.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/freetext.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/freetext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/freetext.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/highlight.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/highlight.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/annotations/ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/ink.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/ink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/ink.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/line.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/line.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/link.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/link.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/link.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/link.context.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/link.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/link.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/link.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/link.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/polygon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/polygon.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/polygon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/polygon.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/polyline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/polyline.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/polyline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/polyline.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/popup.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/popup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/popup.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/popup.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/square.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/square.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/square.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/squiggly.css: -------------------------------------------------------------------------------- 1 | .pdf__page__annotation__squiggly { 2 | border-bottom: 1px solid black; 3 | } 4 | -------------------------------------------------------------------------------- /packages/react/src/components/annotations/squiggly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/squiggly.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/stamp.css: -------------------------------------------------------------------------------- 1 | .pdf__page__annotation__stamp { 2 | background: transparent; 3 | } 4 | -------------------------------------------------------------------------------- /packages/react/src/components/annotations/stamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/stamp.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/strikeout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/strikeout.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/strikeout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/strikeout.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/text.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/text.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/text.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/underline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/underline.css -------------------------------------------------------------------------------- /packages/react/src/components/annotations/underline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/underline.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/widget.css: -------------------------------------------------------------------------------- 1 | .pdf__page__annotation[data-subtype='20'] { 2 | position: absolute; 3 | } 4 | -------------------------------------------------------------------------------- /packages/react/src/components/annotations/widget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/widget.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/annotations/widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/annotations/widget.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/annotation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotation.css -------------------------------------------------------------------------------- /packages/react/src/components/common/annotation.default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotation.default.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/annotation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotation.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/annotation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotation.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/annotations.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotations.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/annotations.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotations.context.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/annotations.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/downloader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/downloader.css -------------------------------------------------------------------------------- /packages/react/src/components/common/downloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/downloader.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/drawable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/drawable.css -------------------------------------------------------------------------------- /packages/react/src/components/common/drawable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/drawable.tsx -------------------------------------------------------------------------------- /packages/react/src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/common/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/editor/annotation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/annotation.css -------------------------------------------------------------------------------- /packages/react/src/components/editor/annotation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/annotation.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/annotation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/annotation.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/annotations.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/annotations.context.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/annotations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/annotations.css -------------------------------------------------------------------------------- /packages/react/src/components/editor/annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/annotations.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/canvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/canvas.css -------------------------------------------------------------------------------- /packages/react/src/components/editor/canvas.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/canvas.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/canvas.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/editor.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/editor.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/editor.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/editor.context.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/extractor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/extractor.css -------------------------------------------------------------------------------- /packages/react/src/components/editor/extractor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/extractor.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/extractor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/extractor.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/editor/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/panel.css -------------------------------------------------------------------------------- /packages/react/src/components/editor/panel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/panel.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/panel.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/stamps.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/stamps.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/stamps.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/stamps.context.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/stamps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/stamps.css -------------------------------------------------------------------------------- /packages/react/src/components/editor/stamps.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/stamps.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/stamps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/stamps.tsx -------------------------------------------------------------------------------- /packages/react/src/components/editor/toolbar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/components/editor/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/editor/toolbar.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/checkbox.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/combobox.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/common.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/field.css -------------------------------------------------------------------------------- /packages/react/src/components/form/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/field.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/form/pushbutton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/pushbutton.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/radiobutton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/radiobutton.tsx -------------------------------------------------------------------------------- /packages/react/src/components/form/textfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/form/textfield.tsx -------------------------------------------------------------------------------- /packages/react/src/components/helpers/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/helpers/clone.ts -------------------------------------------------------------------------------- /packages/react/src/components/helpers/editor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/helpers/editor.test.ts -------------------------------------------------------------------------------- /packages/react/src/components/helpers/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/helpers/editor.ts -------------------------------------------------------------------------------- /packages/react/src/components/helpers/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/helpers/file.ts -------------------------------------------------------------------------------- /packages/react/src/components/helpers/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/helpers/image.ts -------------------------------------------------------------------------------- /packages/react/src/components/helpers/scrollable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/helpers/scrollable.ts -------------------------------------------------------------------------------- /packages/react/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/merger/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './merger'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/merger/merger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/merger/merger.css -------------------------------------------------------------------------------- /packages/react/src/components/merger/merger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/merger/merger.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/annotations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/annotations.css -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/annotations.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/annotations.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/annotations.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/canvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/canvas.css -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/canvas.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/canvas.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/canvas.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/decorations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/decorations.css -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/decorations.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/decorations.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/decorations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/decorations.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/editor.css -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/editor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/editor.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/editor.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/layer.ts -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/text.css -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/text.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/pageLayers/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/pageLayers/text.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/attachments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/attachments.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/attachments.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/attachments.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/attachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/attachments.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/bookmarks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/bookmarks.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/bookmarks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/bookmarks.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/bookmarks.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/downloader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/downloader.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/downloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/downloader.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/editor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/components/plugins/editor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/editor.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/editor.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/plugins/metadata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/metadata.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/metadata.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/metadata.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/metadata.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/pages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/pages.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/pages.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/pages.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/pages.toolbar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/components/plugins/pages.toolbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/pages.toolbar.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/pages.toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/pages.toolbar.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/pages.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/printer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/printer.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/printer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/printer.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/search.css: -------------------------------------------------------------------------------- 1 | .pdf__search { 2 | background-color: white; 3 | } 4 | -------------------------------------------------------------------------------- /packages/react/src/components/plugins/search.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/search.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/search.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/signatures.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/signatures.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/signatures.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/signatures.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/signatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/signatures.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/thumbnails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/thumbnails.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/thumbnails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/thumbnails.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/thumbnails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/thumbnails.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/toolbar.css -------------------------------------------------------------------------------- /packages/react/src/components/plugins/toolbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/toolbar.test.tsx -------------------------------------------------------------------------------- /packages/react/src/components/plugins/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/components/plugins/toolbar.tsx -------------------------------------------------------------------------------- /packages/react/src/core/application.configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/application.configuration.ts -------------------------------------------------------------------------------- /packages/react/src/core/application.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/application.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/application.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/application.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/application.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/application.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/application.tsx -------------------------------------------------------------------------------- /packages/react/src/core/decorations.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/decorations.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/decoratons.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/decoratons.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/document.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/document.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/document.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/document.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/document.css: -------------------------------------------------------------------------------- 1 | .pdf__document { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /packages/react/src/core/document.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/document.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/document.tsx -------------------------------------------------------------------------------- /packages/react/src/core/engine.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/engine.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/engine.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/engine.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/errorboundary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/errorboundary.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/errorboundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/errorboundary.tsx -------------------------------------------------------------------------------- /packages/react/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/index.ts -------------------------------------------------------------------------------- /packages/react/src/core/intersectionobserver.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/intersectionobserver.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/intersectionobserver.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/intersectionobserver.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/intersectionobserver.entry.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/intersectionobserver.entry.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/intersectionobserver.entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/intersectionobserver.entry.tsx -------------------------------------------------------------------------------- /packages/react/src/core/logger.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/logger.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/logger.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/logger.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/navigator.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/navigator.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/navigator.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/navigator.context.tsx -------------------------------------------------------------------------------- /packages/react/src/core/plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/plugin.tsx -------------------------------------------------------------------------------- /packages/react/src/core/theme.context.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/theme.context.test.tsx -------------------------------------------------------------------------------- /packages/react/src/core/theme.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/core/theme.context.tsx -------------------------------------------------------------------------------- /packages/react/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useUrl'; 2 | -------------------------------------------------------------------------------- /packages/react/src/hooks/useUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/hooks/useUrl.tsx -------------------------------------------------------------------------------- /packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/index.ts -------------------------------------------------------------------------------- /packages/react/src/mocks/intersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/src/mocks/intersectionObserver.ts -------------------------------------------------------------------------------- /packages/react/tests/edit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/tests/edit.spec.ts -------------------------------------------------------------------------------- /packages/react/tests/prolog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/tests/prolog.pdf -------------------------------------------------------------------------------- /packages/react/tests/view.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/tests/view.spec.ts -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/packages/react/typedoc.json -------------------------------------------------------------------------------- /typedoc.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/typedoc.base.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jichang/unionpdf/HEAD/typedoc.json --------------------------------------------------------------------------------