@vue-pdf-viewer/viewer 3.0.0-alpha.5 → 3.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +120 -120
- package/dist/index.umd.cjs +2 -2
- package/dist/types/assets/pdf-annotations/index.d.ts +2 -0
- package/dist/types/components/AppButton.vue.d.ts +18 -0
- package/dist/types/components/AppFormControl.vue.d.ts +30 -0
- package/dist/types/components/AppIcon.vue.d.ts +15 -0
- package/dist/types/components/AppInput.vue.d.ts +12 -0
- package/dist/types/components/AppLoader.vue.d.ts +19 -0
- package/dist/types/components/AppPopover.vue.d.ts +93 -0
- package/dist/types/components/AppTooltip.vue.d.ts +34 -0
- package/dist/types/components/ColorButton.vue.d.ts +15 -0
- package/dist/types/components/DragFileMask.vue.d.ts +55 -0
- package/dist/types/components/FreeTextPanel.vue.d.ts +16 -0
- package/dist/types/components/FreeTextPanelFontColors.vue.d.ts +2 -0
- package/dist/types/components/FreeTextPanelFontFamilySelector.vue.d.ts +2 -0
- package/dist/types/components/FreeTextPanelFontSizeSelector.vue.d.ts +2 -0
- package/dist/types/components/FreeTextPanelTextStyle.vue.d.ts +2 -0
- package/dist/types/components/HighlightColorPicker.vue.d.ts +2 -0
- package/dist/types/components/LayerAnnotation.vue.d.ts +47 -0
- package/dist/types/components/LayerAnnotationEditor.vue.d.ts +26 -0
- package/dist/types/components/LayerAnnotationEditorFreeText.vue.d.ts +34 -0
- package/dist/types/components/LayerAnnotationEditorFreeTextItem.vue.d.ts +20 -0
- package/dist/types/components/LayerAnnotationEditorHighlight.vue.d.ts +37 -0
- package/dist/types/components/LayerAnnotationEditorHighlightItem.vue.d.ts +26 -0
- package/dist/types/components/LayerAnnotationEditorImage.vue.d.ts +28 -0
- package/dist/types/components/LayerAnnotationStampResizer.vue.d.ts +28 -0
- package/dist/types/components/LayerCanvas.vue.d.ts +25 -0
- package/dist/types/components/LayerText.vue.d.ts +30 -0
- package/dist/types/components/LayerTextHighlight.vue.d.ts +20 -0
- package/dist/types/components/LayerTextSearchHighlight.vue.d.ts +19 -0
- package/dist/types/components/LayerXFA.vue.d.ts +23 -0
- package/dist/types/components/ModalPassword.vue.d.ts +19 -0
- package/dist/types/components/ModalPdfProperties.vue.d.ts +18 -0
- package/dist/types/components/ModalPrintLoadingProgress.vue.d.ts +20 -0
- package/dist/types/components/Signatures.vue.d.ts +2 -0
- package/dist/types/components/SwitchAppearance.vue.d.ts +23 -0
- package/dist/types/components/ToolCommentPanel.vue.d.ts +31 -0
- package/dist/types/components/ToolDownload.vue.d.ts +21 -0
- package/dist/types/components/ToolFullscreen.vue.d.ts +22 -0
- package/dist/types/components/ToolMenuOthers.vue.d.ts +88 -0
- package/dist/types/components/ToolMenuOthersMobile.vue.d.ts +21 -0
- package/dist/types/components/ToolOpenFile.vue.d.ts +21 -0
- package/dist/types/components/ToolOpenFileInput.vue.d.ts +11 -0
- package/dist/types/components/ToolPagination.vue.d.ts +68 -0
- package/dist/types/components/ToolPrint.vue.d.ts +35 -0
- package/dist/types/components/ToolSearch.vue.d.ts +73 -0
- package/dist/types/components/ToolThumbnail.vue.d.ts +43 -0
- package/dist/types/components/ToolZoom.vue.d.ts +55 -0
- package/dist/types/components/ToolZoomPercentageMenu.vue.d.ts +25 -0
- package/dist/types/components/VPdfComments.vue.d.ts +28 -0
- package/dist/types/components/VPdfCommentsDate.vue.d.ts +15 -0
- package/dist/types/components/VPdfCommentsHeader.vue.d.ts +16 -0
- package/dist/types/components/VPdfCommentsIcon.vue.d.ts +16 -0
- package/dist/types/components/VPdfCommentsReplies.vue.d.ts +16 -0
- package/dist/types/components/VPdfCommentsSidebar.vue.d.ts +15 -0
- package/dist/types/components/VPdfCommentsText.vue.d.ts +2 -0
- package/dist/types/components/VPdfPage.vue.d.ts +44 -0
- package/dist/types/components/VPdfSplitter.vue.d.ts +2 -0
- package/dist/types/components/VPdfThumbnail.vue.d.ts +26 -0
- package/dist/types/components/VPdfThumbnails.vue.d.ts +22 -0
- package/dist/types/components/VPdfViewer.vue.d.ts +606 -0
- package/dist/types/components/index.d.ts +4 -0
- package/dist/types/components/ui/button/Button.vue.d.ts +52 -0
- package/dist/types/components/ui/button/index.d.ts +7 -0
- package/dist/types/components/ui/checkbox/Checkbox.vue.d.ts +35 -0
- package/dist/types/components/ui/checkbox/index.d.ts +1 -0
- package/dist/types/components/ui/collapsible/Collapsible.vue.d.ts +30 -0
- package/dist/types/components/ui/collapsible/CollapsibleContent.vue.d.ts +28 -0
- package/dist/types/components/ui/collapsible/CollapsibleTrigger.vue.d.ts +28 -0
- package/dist/types/components/ui/collapsible/index.d.ts +3 -0
- package/dist/types/components/ui/dialog/Dialog.vue.d.ts +28 -0
- package/dist/types/components/ui/dialog/DialogClose.vue.d.ts +28 -0
- package/dist/types/components/ui/dialog/DialogContent.vue.d.ts +35 -0
- package/dist/types/components/ui/dialog/DialogDescription.vue.d.ts +35 -0
- package/dist/types/components/ui/dialog/DialogFooter.vue.d.ts +34 -0
- package/dist/types/components/ui/dialog/DialogHeader.vue.d.ts +34 -0
- package/dist/types/components/ui/dialog/DialogTitle.vue.d.ts +35 -0
- package/dist/types/components/ui/dialog/DialogTrigger.vue.d.ts +28 -0
- package/dist/types/components/ui/dialog/index.d.ts +8 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +28 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +35 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +52 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +28 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +41 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +38 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +28 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +38 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +17 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuShortcut.vue.d.ts +34 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +28 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +35 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +35 -0
- package/dist/types/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +28 -0
- package/dist/types/components/ui/dropdown-menu/index.d.ts +15 -0
- package/dist/types/components/ui/input/Input.vue.d.ts +16 -0
- package/dist/types/components/ui/input/index.d.ts +7 -0
- package/dist/types/components/ui/popover/Popover.vue.d.ts +28 -0
- package/dist/types/components/ui/popover/PopoverContent.vue.d.ts +64 -0
- package/dist/types/components/ui/popover/PopoverTrigger.vue.d.ts +28 -0
- package/dist/types/components/ui/popover/index.d.ts +3 -0
- package/dist/types/components/ui/progress/Progress.vue.d.ts +28 -0
- package/dist/types/components/ui/progress/index.d.ts +1 -0
- package/dist/types/components/ui/select/Select.vue.d.ts +28 -0
- package/dist/types/components/ui/select/SelectContent.vue.d.ts +52 -0
- package/dist/types/components/ui/select/SelectGroup.vue.d.ts +35 -0
- package/dist/types/components/ui/select/SelectItem.vue.d.ts +35 -0
- package/dist/types/components/ui/select/SelectItemText.vue.d.ts +28 -0
- package/dist/types/components/ui/select/SelectLabel.vue.d.ts +35 -0
- package/dist/types/components/ui/select/SelectScrollDownButton.vue.d.ts +35 -0
- package/dist/types/components/ui/select/SelectScrollUpButton.vue.d.ts +35 -0
- package/dist/types/components/ui/select/SelectSeparator.vue.d.ts +17 -0
- package/dist/types/components/ui/select/SelectTrigger.vue.d.ts +35 -0
- package/dist/types/components/ui/select/SelectValue.vue.d.ts +28 -0
- package/dist/types/components/ui/select/index.d.ts +11 -0
- package/dist/types/components/ui/toast/Toast.vue.d.ts +28 -0
- package/dist/types/components/ui/toast/ToastAction.vue.d.ts +35 -0
- package/dist/types/components/ui/toast/ToastClose.vue.d.ts +17 -0
- package/dist/types/components/ui/toast/ToastDescription.vue.d.ts +35 -0
- package/dist/types/components/ui/toast/ToastProvider.vue.d.ts +28 -0
- package/dist/types/components/ui/toast/ToastTitle.vue.d.ts +35 -0
- package/dist/types/components/ui/toast/ToastViewport.vue.d.ts +17 -0
- package/dist/types/components/ui/toast/Toaster.vue.d.ts +2 -0
- package/dist/types/components/ui/toast/index.d.ts +21 -0
- package/dist/types/components/ui/toast/use-toast.d.ts +272 -0
- package/dist/types/components/ui/tooltip/Tooltip.vue.d.ts +28 -0
- package/dist/types/components/ui/tooltip/TooltipContent.vue.d.ts +52 -0
- package/dist/types/components/ui/tooltip/TooltipProvider.vue.d.ts +28 -0
- package/dist/types/components/ui/tooltip/TooltipTrigger.vue.d.ts +28 -0
- package/dist/types/components/ui/tooltip/index.d.ts +4 -0
- package/dist/types/components/utils/annotations.d.ts +5 -0
- package/dist/types/components/utils/destination.d.ts +7 -0
- package/dist/types/components/utils/helpers.d.ts +2 -0
- package/dist/types/components/utils/link_service.d.ts +71 -0
- package/dist/types/components/utils/sanitizeExternalURL.d.ts +1 -0
- package/dist/types/composables/useAnnotationDrag.d.ts +72 -0
- package/dist/types/composables/useAnnotationFreeText.d.ts +462 -0
- package/dist/types/composables/useAnnotationHighlight.d.ts +389 -0
- package/dist/types/composables/useAnnotationStamp.d.ts +493 -0
- package/dist/types/composables/useAnnotationStorage.d.ts +72 -0
- package/dist/types/composables/useDownload.d.ts +13 -0
- package/dist/types/composables/useHighlight.d.ts +11 -0
- package/dist/types/composables/useLicense.d.ts +22 -0
- package/dist/types/composables/usePdf.d.ts +28 -0
- package/dist/types/composables/usePdfComments.d.ts +5 -0
- package/dist/types/composables/usePdfPagesSizes.d.ts +8 -0
- package/dist/types/composables/usePdfProperties.d.ts +10 -0
- package/dist/types/composables/usePinch.d.ts +3 -0
- package/dist/types/composables/usePlugins.d.ts +252 -0
- package/dist/types/composables/usePrintControl.d.ts +22 -0
- package/dist/types/composables/usePrintProcess.d.ts +8 -0
- package/dist/types/composables/useRenderQueue.d.ts +13 -0
- package/dist/types/composables/useRequestAnimationFrame.d.ts +1 -0
- package/dist/types/composables/useRotation.d.ts +7 -0
- package/dist/types/composables/useScale.d.ts +21 -0
- package/dist/types/composables/useSearch.d.ts +5 -0
- package/dist/types/composables/useTextLayers.d.ts +5 -0
- package/dist/types/composables/useVirtualPages.d.ts +32 -0
- package/dist/types/composables/useVisibilities.d.ts +9 -0
- package/dist/types/const.d.ts +149 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/types/utils/annotation-command.d.ts +18 -0
- package/dist/types/utils/annotation-display.d.ts +24 -0
- package/dist/types/utils/annotation-free-text.d.ts +4 -0
- package/dist/types/utils/annotation-highlight.d.ts +69 -0
- package/dist/types/utils/annotation-image.d.ts +111 -0
- package/dist/types/utils/annotation-pdf.d.ts +35 -0
- package/dist/types/utils/appConsole.d.ts +24 -0
- package/dist/types/utils/characters.d.ts +16 -0
- package/dist/types/utils/color.d.ts +4 -0
- package/dist/types/utils/convertPDFDate.d.ts +1 -0
- package/dist/types/utils/enumerators.d.ts +80 -0
- package/dist/types/utils/highlight.d.ts +8 -0
- package/dist/types/utils/promiseWithResolvers.d.ts +7 -0
- package/dist/types/utils/searchHighlight.d.ts +10 -0
- package/dist/types/utils/smoothScroll.d.ts +2 -0
- package/dist/types/utils/types.d.ts +724 -0
- package/dist/types/utils/uiViewer.d.ts +4 -0
- package/dist/types/utils/validators.d.ts +26 -0
- package/dist/types/utils.d.ts +20 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -4296,7 +4296,7 @@ class GZ {
|
|
|
4296
4296
|
}
|
|
4297
4297
|
}
|
|
4298
4298
|
}
|
|
4299
|
-
const al = GZ.getInstance(), AR = /* @__PURE__ */ new Date("2025-08-
|
|
4299
|
+
const al = GZ.getInstance(), AR = /* @__PURE__ */ new Date("2025-08-15T07:50:01.426Z"), _t = "Please visit https://www.vue-pdf-viewer.dev/license-management/ to generate a new license key.", SZ = {
|
|
4300
4300
|
invalidLicense: `You are currently using without a valid license. ${_t}`,
|
|
4301
4301
|
mismatchedDomain: `Your license key is not valid for the current domain / IP. ${_t}`,
|
|
4302
4302
|
expired: `Your license key has expired. ${_t}`,
|
|
@@ -20824,7 +20824,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20824
20824
|
size: "default"
|
|
20825
20825
|
}
|
|
20826
20826
|
}
|
|
20827
|
-
),
|
|
20827
|
+
), l1 = /* @__PURE__ */ j({
|
|
20828
20828
|
__name: "Button",
|
|
20829
20829
|
props: {
|
|
20830
20830
|
variant: {},
|
|
@@ -20846,7 +20846,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20846
20846
|
_: 3
|
|
20847
20847
|
}, 8, ["as", "as-child", "class"]));
|
|
20848
20848
|
}
|
|
20849
|
-
}),
|
|
20849
|
+
}), U1 = /* @__PURE__ */ $(l1, [["__scopeId", "data-v-f4bbd92d"]]), d1 = { class: "vpv-comments__comment-replies-container" }, Z1 = /* @__PURE__ */ j({
|
|
20850
20850
|
__name: "VPdfCommentsReplies",
|
|
20851
20851
|
props: {
|
|
20852
20852
|
replies: {}
|
|
@@ -20856,7 +20856,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20856
20856
|
const t = Z.value > 1 ? "replies" : "reply";
|
|
20857
20857
|
return `${Z.value} ${t}`;
|
|
20858
20858
|
});
|
|
20859
|
-
return (t, c) => (M(), f("div",
|
|
20859
|
+
return (t, c) => (M(), f("div", d1, [
|
|
20860
20860
|
H("div", {
|
|
20861
20861
|
class: El(["vpv-comments__comment-replies", {
|
|
20862
20862
|
"vpv-comments__comment-replies__open": U.value
|
|
@@ -20879,7 +20879,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20879
20879
|
}, 1024)
|
|
20880
20880
|
]))), 128))
|
|
20881
20881
|
], 2),
|
|
20882
|
-
L(
|
|
20882
|
+
L(U1, {
|
|
20883
20883
|
tabindex: "0",
|
|
20884
20884
|
variant: "link",
|
|
20885
20885
|
class: "vpv-comments__comment-replies-button",
|
|
@@ -20893,7 +20893,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20893
20893
|
})
|
|
20894
20894
|
]));
|
|
20895
20895
|
}
|
|
20896
|
-
}),
|
|
20896
|
+
}), F1 = /* @__PURE__ */ $(Z1, [["__scopeId", "data-v-2e278bf5"]]), t1 = /* @__PURE__ */ j({
|
|
20897
20897
|
__name: "VPdfCommentsIcon",
|
|
20898
20898
|
props: {
|
|
20899
20899
|
type: {}
|
|
@@ -20902,7 +20902,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20902
20902
|
const d = l, U = Y(() => d.type ? `annotation-${d.type.toLowerCase()}` : "annotation-highlight");
|
|
20903
20903
|
return (Z, F) => (M(), E(ul, { icon: U.value }, null, 8, ["icon"]));
|
|
20904
20904
|
}
|
|
20905
|
-
}),
|
|
20905
|
+
}), c1 = /* @__PURE__ */ $(t1, [["__scopeId", "data-v-cdc93158"]]), n1 = /* @__PURE__ */ j({
|
|
20906
20906
|
__name: "Collapsible",
|
|
20907
20907
|
props: {
|
|
20908
20908
|
defaultOpen: { type: Boolean },
|
|
@@ -20922,7 +20922,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20922
20922
|
_: 3
|
|
20923
20923
|
}, 16));
|
|
20924
20924
|
}
|
|
20925
|
-
}),
|
|
20925
|
+
}), a1 = /* @__PURE__ */ $(n1, [["__scopeId", "data-v-d1849e61"]]), Q1 = /* @__PURE__ */ j({
|
|
20926
20926
|
__name: "CollapsibleContent",
|
|
20927
20927
|
props: {
|
|
20928
20928
|
forceMount: { type: Boolean },
|
|
@@ -20938,7 +20938,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20938
20938
|
_: 3
|
|
20939
20939
|
}, 16));
|
|
20940
20940
|
}
|
|
20941
|
-
}),
|
|
20941
|
+
}), V1 = /* @__PURE__ */ $(Q1, [["__scopeId", "data-v-33d03713"]]), e1 = /* @__PURE__ */ j({
|
|
20942
20942
|
__name: "CollapsibleTrigger",
|
|
20943
20943
|
props: {
|
|
20944
20944
|
asChild: { type: Boolean },
|
|
@@ -20953,13 +20953,13 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20953
20953
|
_: 3
|
|
20954
20954
|
}, 16));
|
|
20955
20955
|
}
|
|
20956
|
-
}),
|
|
20956
|
+
}), W1 = /* @__PURE__ */ $(e1, [["__scopeId", "data-v-9d68526e"]]), N1 = {
|
|
20957
20957
|
key: 0,
|
|
20958
20958
|
class: "vpv-comments__empty"
|
|
20959
|
-
},
|
|
20959
|
+
}, R1 = { class: "vpv-comments__empty-icon" }, s1 = {
|
|
20960
20960
|
key: 1,
|
|
20961
20961
|
class: "vpv-comments__list"
|
|
20962
|
-
},
|
|
20962
|
+
}, b1 = ["onKeydown"], i1 = { class: "vpv-comments__page-title-start" }, o1 = { class: "vpv-comments__page-title-start-icon" }, m1 = { class: "vpv-comments__page-title-end" }, u1 = ["onClick", "onKeydown"], M1 = { class: "vpv-comments__comment-icon" }, J1 = { class: "vpv-comments__comment-content" }, p1 = /* @__PURE__ */ j({
|
|
20963
20963
|
__name: "VPdfComments",
|
|
20964
20964
|
props: {
|
|
20965
20965
|
height: {},
|
|
@@ -20987,16 +20987,16 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
20987
20987
|
height: U.height
|
|
20988
20988
|
})
|
|
20989
20989
|
}, [
|
|
20990
|
-
U.repliedCommentPages?.length ? (M(), f("div",
|
|
20990
|
+
U.repliedCommentPages?.length ? (M(), f("div", s1, [
|
|
20991
20991
|
(M(!0), f(xl, null, dU(U.repliedCommentPages, (V, W) => (M(), f("div", {
|
|
20992
20992
|
key: `comment-page-${W + 1}`
|
|
20993
20993
|
}, [
|
|
20994
|
-
L(Q(
|
|
20994
|
+
L(Q(a1), {
|
|
20995
20995
|
open: c.value.get(V.page) || !1,
|
|
20996
20996
|
"onUpdate:open": (N) => n(N, V.page)
|
|
20997
20997
|
}, {
|
|
20998
20998
|
default: o(() => [
|
|
20999
|
-
L(Q(
|
|
20999
|
+
L(Q(W1), { "as-child": "" }, {
|
|
21000
21000
|
default: o(() => [
|
|
21001
21001
|
H("div", {
|
|
21002
21002
|
class: "vpv-comments__page-title-container",
|
|
@@ -21004,8 +21004,8 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21004
21004
|
tabindex: "0",
|
|
21005
21005
|
onKeydown: yZ(VU((N) => n(!c.value.get(V.page) || !1, V.page), ["prevent"]), ["space"])
|
|
21006
21006
|
}, [
|
|
21007
|
-
H("div",
|
|
21008
|
-
H("div",
|
|
21007
|
+
H("div", i1, [
|
|
21008
|
+
H("div", o1, [
|
|
21009
21009
|
c.value.get(V.page) ? (M(), E(ul, {
|
|
21010
21010
|
key: 0,
|
|
21011
21011
|
icon: "chevron-down"
|
|
@@ -21017,14 +21017,14 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21017
21017
|
]),
|
|
21018
21018
|
H("span", null, "Page " + dl(V.page), 1)
|
|
21019
21019
|
]),
|
|
21020
|
-
H("div",
|
|
21020
|
+
H("div", m1, [
|
|
21021
21021
|
H("span", null, dl(V.comments.length), 1)
|
|
21022
21022
|
])
|
|
21023
|
-
], 40,
|
|
21023
|
+
], 40, b1)
|
|
21024
21024
|
]),
|
|
21025
21025
|
_: 2
|
|
21026
21026
|
}, 1024),
|
|
21027
|
-
L(Q(
|
|
21027
|
+
L(Q(V1), null, {
|
|
21028
21028
|
default: o(() => [
|
|
21029
21029
|
(M(!0), f(xl, null, dU(V.comments, (N, s) => (M(), f("div", {
|
|
21030
21030
|
class: "vpv-comments__comment-block",
|
|
@@ -21034,12 +21034,12 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21034
21034
|
onClick: (R) => t(N.original),
|
|
21035
21035
|
onKeydown: yZ(VU((R) => t(N.original), ["prevent"]), ["space"])
|
|
21036
21036
|
}, [
|
|
21037
|
-
H("div",
|
|
21038
|
-
L(
|
|
21037
|
+
H("div", M1, [
|
|
21038
|
+
L(c1, {
|
|
21039
21039
|
type: N.original.annotationIconType
|
|
21040
21040
|
}, null, 8, ["type"])
|
|
21041
21041
|
]),
|
|
21042
|
-
H("div",
|
|
21042
|
+
H("div", J1, [
|
|
21043
21043
|
N.original.titleObj?.str || N.original.modificationDate || N.original.creationDate ? (M(), E(aW, {
|
|
21044
21044
|
key: 0,
|
|
21045
21045
|
comment: N.original
|
|
@@ -21050,12 +21050,12 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21050
21050
|
]),
|
|
21051
21051
|
_: 2
|
|
21052
21052
|
}, 1024),
|
|
21053
|
-
N.replies?.length ? (M(), E(
|
|
21053
|
+
N.replies?.length ? (M(), E(F1, {
|
|
21054
21054
|
key: 1,
|
|
21055
21055
|
replies: N.replies
|
|
21056
21056
|
}, null, 8, ["replies"])) : Ql("", !0)
|
|
21057
21057
|
])
|
|
21058
|
-
], 40,
|
|
21058
|
+
], 40, u1))), 128))
|
|
21059
21059
|
]),
|
|
21060
21060
|
_: 2
|
|
21061
21061
|
}, 1024)
|
|
@@ -21063,8 +21063,8 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21063
21063
|
_: 2
|
|
21064
21064
|
}, 1032, ["open", "onUpdate:open"])
|
|
21065
21065
|
]))), 128))
|
|
21066
|
-
])) : (M(), f("div",
|
|
21067
|
-
H("div",
|
|
21066
|
+
])) : (M(), f("div", N1, [
|
|
21067
|
+
H("div", R1, [
|
|
21068
21068
|
Q(Z) ? (M(), E(ul, {
|
|
21069
21069
|
key: 0,
|
|
21070
21070
|
icon: "empty-comment-dark"
|
|
@@ -21077,7 +21077,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21077
21077
|
]))
|
|
21078
21078
|
], 4));
|
|
21079
21079
|
}
|
|
21080
|
-
}),
|
|
21080
|
+
}), G1 = /* @__PURE__ */ $(p1, [["__scopeId", "data-v-dfa20df6"]]), T1 = { class: "vpv-comments__header-title" }, h1 = /* @__PURE__ */ j({
|
|
21081
21081
|
__name: "VPdfCommentsSidebar",
|
|
21082
21082
|
emits: ["close", "navigate"],
|
|
21083
21083
|
setup(l, { emit: d }) {
|
|
@@ -21102,7 +21102,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21102
21102
|
ref: t,
|
|
21103
21103
|
class: "vpv-comments__header"
|
|
21104
21104
|
}, [
|
|
21105
|
-
H("div",
|
|
21105
|
+
H("div", T1, "Comments (" + dl(a.value) + ")", 1),
|
|
21106
21106
|
L(rl, {
|
|
21107
21107
|
class: "vpv-comments__header-close",
|
|
21108
21108
|
onClick: e
|
|
@@ -21113,7 +21113,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21113
21113
|
_: 1
|
|
21114
21114
|
})
|
|
21115
21115
|
], 512),
|
|
21116
|
-
n.value ? (M(), E(
|
|
21116
|
+
n.value ? (M(), E(G1, {
|
|
21117
21117
|
key: 0,
|
|
21118
21118
|
height: n.value,
|
|
21119
21119
|
"replied-comment-pages": Q(U)?.repliedCommentPages,
|
|
@@ -21121,7 +21121,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21121
21121
|
}, null, 8, ["height", "replied-comment-pages"])) : Ql("", !0)
|
|
21122
21122
|
], 512));
|
|
21123
21123
|
}
|
|
21124
|
-
}),
|
|
21124
|
+
}), S1 = /* @__PURE__ */ $(h1, [["__scopeId", "data-v-1fa09c1e"]]), X1 = /* @__PURE__ */ j({
|
|
21125
21125
|
__name: "Tooltip",
|
|
21126
21126
|
props: {
|
|
21127
21127
|
defaultOpen: { type: Boolean },
|
|
@@ -21142,7 +21142,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21142
21142
|
_: 3
|
|
21143
21143
|
}, 16));
|
|
21144
21144
|
}
|
|
21145
|
-
}),
|
|
21145
|
+
}), Y1 = /* @__PURE__ */ $(X1, [["__scopeId", "data-v-6c6385d7"]]), B1 = /* @__PURE__ */ j({
|
|
21146
21146
|
inheritAttrs: !1,
|
|
21147
21147
|
__name: "TooltipContent",
|
|
21148
21148
|
props: {
|
|
@@ -21186,7 +21186,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21186
21186
|
_: 3
|
|
21187
21187
|
}, 8, ["to"]));
|
|
21188
21188
|
}
|
|
21189
|
-
}),
|
|
21189
|
+
}), y1 = /* @__PURE__ */ $(B1, [["__scopeId", "data-v-b3bd5ccf"]]), z1 = /* @__PURE__ */ j({
|
|
21190
21190
|
__name: "TooltipTrigger",
|
|
21191
21191
|
props: {
|
|
21192
21192
|
asChild: { type: Boolean },
|
|
@@ -21201,7 +21201,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21201
21201
|
_: 3
|
|
21202
21202
|
}, 16));
|
|
21203
21203
|
}
|
|
21204
|
-
}),
|
|
21204
|
+
}), L1 = /* @__PURE__ */ $(z1, [["__scopeId", "data-v-68bb85c0"]]), k1 = /* @__PURE__ */ j({
|
|
21205
21205
|
__name: "TooltipProvider",
|
|
21206
21206
|
props: {
|
|
21207
21207
|
delayDuration: {},
|
|
@@ -21220,18 +21220,18 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21220
21220
|
_: 3
|
|
21221
21221
|
}, 16));
|
|
21222
21222
|
}
|
|
21223
|
-
}),
|
|
21223
|
+
}), D1 = /* @__PURE__ */ $(k1, [["__scopeId", "data-v-9c2f2805"]]), I1 = /* @__PURE__ */ j({
|
|
21224
21224
|
__name: "AppTooltip",
|
|
21225
21225
|
props: {
|
|
21226
21226
|
contentSide: {}
|
|
21227
21227
|
},
|
|
21228
21228
|
setup(l) {
|
|
21229
21229
|
const d = l, U = A(dd, void 0), Z = Y(() => d.contentSide ?? "top");
|
|
21230
|
-
return (F, t) => (M(), E(Q(
|
|
21230
|
+
return (F, t) => (M(), E(Q(D1), null, {
|
|
21231
21231
|
default: o(() => [
|
|
21232
|
-
L(Q(
|
|
21232
|
+
L(Q(Y1), null, {
|
|
21233
21233
|
default: o(() => [
|
|
21234
|
-
L(Q(
|
|
21234
|
+
L(Q(L1), { "as-child": "" }, {
|
|
21235
21235
|
default: o(() => [
|
|
21236
21236
|
w(F.$slots, "default", {}, void 0, !0)
|
|
21237
21237
|
]),
|
|
@@ -21239,7 +21239,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21239
21239
|
}),
|
|
21240
21240
|
L(Q(Pe), { to: Q(U) }, {
|
|
21241
21241
|
default: o(() => [
|
|
21242
|
-
L(Q(
|
|
21242
|
+
L(Q(y1), { side: Z.value }, {
|
|
21243
21243
|
default: o(() => [
|
|
21244
21244
|
L(Q(Yy), { class: "tooltip-arrow" }),
|
|
21245
21245
|
w(F.$slots, "content", {}, void 0, !0)
|
|
@@ -21256,7 +21256,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21256
21256
|
_: 3
|
|
21257
21257
|
}));
|
|
21258
21258
|
}
|
|
21259
|
-
}), zl = /* @__PURE__ */ $(
|
|
21259
|
+
}), zl = /* @__PURE__ */ $(I1, [["__scopeId", "data-v-1aad8a5e"]]), E1 = /* @__PURE__ */ j({
|
|
21260
21260
|
__name: "SwitchAppearance",
|
|
21261
21261
|
props: {
|
|
21262
21262
|
modelValue: { type: Boolean, required: !0 },
|
|
@@ -21304,7 +21304,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21304
21304
|
_: 3
|
|
21305
21305
|
}));
|
|
21306
21306
|
}
|
|
21307
|
-
}),
|
|
21307
|
+
}), C1 = /* @__PURE__ */ $(E1, [["__scopeId", "data-v-91fce3b1"]]), w1 = /* @__PURE__ */ j({
|
|
21308
21308
|
__name: "Input",
|
|
21309
21309
|
props: {
|
|
21310
21310
|
defaultValue: {},
|
|
@@ -21324,7 +21324,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21324
21324
|
[FN, Q(F)]
|
|
21325
21325
|
]);
|
|
21326
21326
|
}
|
|
21327
|
-
}),
|
|
21327
|
+
}), r1 = /* @__PURE__ */ $(w1, [["__scopeId", "data-v-ed3aa168"]]), x1 = /* @__PURE__ */ j({
|
|
21328
21328
|
__name: "AppInput",
|
|
21329
21329
|
props: {
|
|
21330
21330
|
defaultValue: {},
|
|
@@ -21333,11 +21333,11 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21333
21333
|
},
|
|
21334
21334
|
setup(l) {
|
|
21335
21335
|
const d = l, U = A(XU);
|
|
21336
|
-
return (Z, F) => (M(), E(Q(
|
|
21336
|
+
return (Z, F) => (M(), E(Q(r1), Ul({ ...d, ...Z.$attrs }, {
|
|
21337
21337
|
class: { "vp-text-white": Q(U) }
|
|
21338
21338
|
}), null, 16, ["class"]));
|
|
21339
21339
|
}
|
|
21340
|
-
}), Fn = /* @__PURE__ */ $(
|
|
21340
|
+
}), Fn = /* @__PURE__ */ $(x1, [["__scopeId", "data-v-f5ce1032"]]), j1 = /* @__PURE__ */ j({
|
|
21341
21341
|
__name: "Checkbox",
|
|
21342
21342
|
props: {
|
|
21343
21343
|
defaultChecked: { type: Boolean },
|
|
@@ -21373,19 +21373,19 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21373
21373
|
_: 3
|
|
21374
21374
|
}, 16, ["class"]));
|
|
21375
21375
|
}
|
|
21376
|
-
}), cQ = /* @__PURE__ */ $(
|
|
21376
|
+
}), cQ = /* @__PURE__ */ $(j1, [["__scopeId", "data-v-73598258"]]), O1 = { class: "vp-flex vp-items-start" }, g1 = { class: "vp-flex vp-flex-col vp-items-start vpv-popover-search-box vp-border-r-0 md:vp-border-r md:vp-pr-2" }, v1 = { class: "vp-flex vp-items-center vp-first-line vp-mb-3" }, K1 = { class: "vp-relative vp-mr-2" }, H1 = { class: "vp-absolute vp-start-0 vp-inset-y-0 vp-flex vp-items-center vp-justify-center vp-px-2" }, P1 = {
|
|
21377
21377
|
key: 0,
|
|
21378
21378
|
class: "vp-px-2"
|
|
21379
|
-
},
|
|
21379
|
+
}, f1 = {
|
|
21380
21380
|
key: 1,
|
|
21381
21381
|
class: "vp-px-2 vp-min-w-[45px]"
|
|
21382
|
-
},
|
|
21382
|
+
}, A1 = { class: "vp-w-5 vp-relative" }, q1 = { class: "md:vp-hidden vp-block vp-pl-2 vp-border-l" }, _1 = { class: "vp-second-line vp-flex vp-items-center vp-justify-between vp-w-full vp-gap-2" }, $1 = { class: "md:vp-hidden vp-block" }, l5 = { class: "vp-flex vp-items-center vp-gap-4 vp-mr-2" }, U5 = { class: "vp-flex vp-items-center vp-space-x-[8px] vp-relative" }, d5 = {
|
|
21383
21383
|
for: "match-case",
|
|
21384
21384
|
class: "vp-cursor-pointer"
|
|
21385
|
-
},
|
|
21385
|
+
}, Z5 = { class: "vp-flex vp-items-center vp-space-x-[8px]" }, F5 = {
|
|
21386
21386
|
for: "whole-words",
|
|
21387
21387
|
class: "vp-cursor-pointer"
|
|
21388
|
-
},
|
|
21388
|
+
}, t5 = { class: "vp-pl-2 vp-hidden md:vp-block" }, c5 = { class: "vp-hidden md:vp-block" }, n5 = /* @__PURE__ */ j({
|
|
21389
21389
|
__name: "ToolSearch",
|
|
21390
21390
|
props: /* @__PURE__ */ KU({
|
|
21391
21391
|
searching: { type: Boolean },
|
|
@@ -21469,10 +21469,10 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21469
21469
|
class: "vp-z-20"
|
|
21470
21470
|
}, {
|
|
21471
21471
|
default: o(() => [
|
|
21472
|
-
H("div",
|
|
21473
|
-
H("div",
|
|
21474
|
-
H("div",
|
|
21475
|
-
H("div",
|
|
21472
|
+
H("div", O1, [
|
|
21473
|
+
H("div", g1, [
|
|
21474
|
+
H("div", v1, [
|
|
21475
|
+
H("div", K1, [
|
|
21476
21476
|
L(zl, null, {
|
|
21477
21477
|
content: o(() => [
|
|
21478
21478
|
bl(dl(Q(U)?.searchInputTooltip), 1)
|
|
@@ -21489,7 +21489,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21489
21489
|
]),
|
|
21490
21490
|
_: 1
|
|
21491
21491
|
}),
|
|
21492
|
-
H("span",
|
|
21492
|
+
H("span", H1, [
|
|
21493
21493
|
L(ul, {
|
|
21494
21494
|
icon: "magnifier",
|
|
21495
21495
|
class: "vp-size-4 vpv-search-icon"
|
|
@@ -21506,12 +21506,12 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21506
21506
|
})
|
|
21507
21507
|
])) : Ql("", !0)
|
|
21508
21508
|
]),
|
|
21509
|
-
b.searching ? (M(), f("div",
|
|
21510
|
-
H("div",
|
|
21509
|
+
b.searching ? (M(), f("div", f1, [
|
|
21510
|
+
H("div", A1, [
|
|
21511
21511
|
w(b.$slots, "loader", {}, void 0, !0)
|
|
21512
21512
|
])
|
|
21513
|
-
])) : (M(), f("span",
|
|
21514
|
-
H("div",
|
|
21513
|
+
])) : (M(), f("span", P1, dl(e.value), 1)),
|
|
21514
|
+
H("div", q1, [
|
|
21515
21515
|
L(zl, null, {
|
|
21516
21516
|
content: o(() => [
|
|
21517
21517
|
bl(dl(Q(U)?.searchCloseButtonTooltip), 1)
|
|
@@ -21535,8 +21535,8 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21535
21535
|
})
|
|
21536
21536
|
])
|
|
21537
21537
|
]),
|
|
21538
|
-
H("div",
|
|
21539
|
-
H("div", $
|
|
21538
|
+
H("div", _1, [
|
|
21539
|
+
H("div", $1, [
|
|
21540
21540
|
L(zl, null, {
|
|
21541
21541
|
content: o(() => [
|
|
21542
21542
|
bl(dl(Q(U)?.searchPrevTooltip), 1)
|
|
@@ -21582,15 +21582,15 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21582
21582
|
_: 1
|
|
21583
21583
|
})
|
|
21584
21584
|
]),
|
|
21585
|
-
H("div",
|
|
21586
|
-
H("div",
|
|
21585
|
+
H("div", l5, [
|
|
21586
|
+
H("div", U5, [
|
|
21587
21587
|
L(Q(cQ), {
|
|
21588
21588
|
id: "match-case",
|
|
21589
21589
|
checked: F.matchCase,
|
|
21590
21590
|
"onUpdate:checked": m[4] || (m[4] = (p) => F.matchCase = p),
|
|
21591
21591
|
tabIndex: 0
|
|
21592
21592
|
}, null, 8, ["checked"]),
|
|
21593
|
-
H("label",
|
|
21593
|
+
H("label", d5, dl(Q(U)?.searchMatchCaseLabel), 1),
|
|
21594
21594
|
L(zl, { "content-side": "bottom" }, {
|
|
21595
21595
|
content: o(() => [
|
|
21596
21596
|
bl(dl(Q(U)?.searchMatchCaseTooltip), 1)
|
|
@@ -21612,14 +21612,14 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21612
21612
|
_: 1
|
|
21613
21613
|
})
|
|
21614
21614
|
]),
|
|
21615
|
-
H("div",
|
|
21615
|
+
H("div", Z5, [
|
|
21616
21616
|
L(Q(cQ), {
|
|
21617
21617
|
id: "whole-words",
|
|
21618
21618
|
checked: F.wholeWords,
|
|
21619
21619
|
"onUpdate:checked": m[5] || (m[5] = (p) => F.wholeWords = p),
|
|
21620
21620
|
tabIndex: 0
|
|
21621
21621
|
}, null, 8, ["checked"]),
|
|
21622
|
-
H("label",
|
|
21622
|
+
H("label", F5, dl(Q(U)?.searchWholeWordsLabel), 1),
|
|
21623
21623
|
L(zl, { "content-side": "bottom" }, {
|
|
21624
21624
|
content: o(() => [
|
|
21625
21625
|
bl(dl(Q(U)?.searchWholeWordsTooltip), 1)
|
|
@@ -21644,7 +21644,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21644
21644
|
])
|
|
21645
21645
|
])
|
|
21646
21646
|
]),
|
|
21647
|
-
H("div",
|
|
21647
|
+
H("div", t5, [
|
|
21648
21648
|
L(zl, null, {
|
|
21649
21649
|
content: o(() => [
|
|
21650
21650
|
bl(dl(Q(U)?.searchPrevTooltip), 1)
|
|
@@ -21690,7 +21690,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21690
21690
|
_: 1
|
|
21691
21691
|
})
|
|
21692
21692
|
]),
|
|
21693
|
-
H("div",
|
|
21693
|
+
H("div", c5, [
|
|
21694
21694
|
L(zl, null, {
|
|
21695
21695
|
content: o(() => [
|
|
21696
21696
|
bl(dl(Q(U)?.searchCloseButtonTooltip), 1)
|
|
@@ -21721,7 +21721,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21721
21721
|
_: 3
|
|
21722
21722
|
}, 8, ["open"]));
|
|
21723
21723
|
}
|
|
21724
|
-
}),
|
|
21724
|
+
}), a5 = /* @__PURE__ */ $(n5, [["__scopeId", "data-v-5412ad58"]]), Q5 = /* @__PURE__ */ j({
|
|
21725
21725
|
__name: "DropdownMenu",
|
|
21726
21726
|
props: {
|
|
21727
21727
|
defaultOpen: { type: Boolean },
|
|
@@ -21739,7 +21739,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21739
21739
|
_: 3
|
|
21740
21740
|
}, 16));
|
|
21741
21741
|
}
|
|
21742
|
-
}), eW = /* @__PURE__ */ $(
|
|
21742
|
+
}), eW = /* @__PURE__ */ $(Q5, [["__scopeId", "data-v-beab5dde"]]), V5 = /* @__PURE__ */ j({
|
|
21743
21743
|
__name: "DropdownMenuTrigger",
|
|
21744
21744
|
props: {
|
|
21745
21745
|
disabled: { type: Boolean },
|
|
@@ -21755,7 +21755,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21755
21755
|
_: 3
|
|
21756
21756
|
}, 16));
|
|
21757
21757
|
}
|
|
21758
|
-
}), WW = /* @__PURE__ */ $(
|
|
21758
|
+
}), WW = /* @__PURE__ */ $(V5, [["__scopeId", "data-v-6bc88dc8"]]), e5 = /* @__PURE__ */ j({
|
|
21759
21759
|
__name: "DropdownMenuContent",
|
|
21760
21760
|
props: {
|
|
21761
21761
|
forceMount: { type: Boolean },
|
|
@@ -21796,7 +21796,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21796
21796
|
_: 3
|
|
21797
21797
|
}, 8, ["to"]));
|
|
21798
21798
|
}
|
|
21799
|
-
}),
|
|
21799
|
+
}), W5 = /* @__PURE__ */ $(e5, [["__scopeId", "data-v-99690793"]]), N5 = /* @__PURE__ */ j({
|
|
21800
21800
|
__name: "DropdownMenuGroup",
|
|
21801
21801
|
props: {
|
|
21802
21802
|
asChild: { type: Boolean },
|
|
@@ -21811,7 +21811,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21811
21811
|
_: 3
|
|
21812
21812
|
}, 16));
|
|
21813
21813
|
}
|
|
21814
|
-
}), dt = /* @__PURE__ */ $(
|
|
21814
|
+
}), dt = /* @__PURE__ */ $(N5, [["__scopeId", "data-v-53940810"]]), R5 = /* @__PURE__ */ j({
|
|
21815
21815
|
__name: "DropdownMenuRadioGroup",
|
|
21816
21816
|
props: {
|
|
21817
21817
|
modelValue: {},
|
|
@@ -21828,7 +21828,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21828
21828
|
_: 3
|
|
21829
21829
|
}, 16));
|
|
21830
21830
|
}
|
|
21831
|
-
}), ic = /* @__PURE__ */ $(
|
|
21831
|
+
}), ic = /* @__PURE__ */ $(R5, [["__scopeId", "data-v-2f090cf3"]]), s5 = /* @__PURE__ */ j({
|
|
21832
21832
|
__name: "DropdownMenuItem",
|
|
21833
21833
|
props: {
|
|
21834
21834
|
disabled: { type: Boolean },
|
|
@@ -21857,7 +21857,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21857
21857
|
_: 3
|
|
21858
21858
|
}, 16, ["class"]));
|
|
21859
21859
|
}
|
|
21860
|
-
}), wU = /* @__PURE__ */ $(
|
|
21860
|
+
}), wU = /* @__PURE__ */ $(s5, [["__scopeId", "data-v-00dcff7e"]]), b5 = /* @__PURE__ */ j({
|
|
21861
21861
|
__name: "DropdownMenuSeparator",
|
|
21862
21862
|
props: {
|
|
21863
21863
|
asChild: { type: Boolean },
|
|
@@ -21874,7 +21874,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21874
21874
|
class: Q(Al)("-vp-mx-1 vp-my-1 vp-h-px", d.class)
|
|
21875
21875
|
}), null, 16, ["class"]));
|
|
21876
21876
|
}
|
|
21877
|
-
}), lZ = /* @__PURE__ */ $(
|
|
21877
|
+
}), lZ = /* @__PURE__ */ $(b5, [["__scopeId", "data-v-bcfcd57e"]]), i5 = { role: "button" }, o5 = { class: "vp-flex vp-items-center vp-mx-1" }, m5 = /* @__PURE__ */ j({
|
|
21878
21878
|
inheritAttrs: !1,
|
|
21879
21879
|
__name: "ToolZoomPercentageMenu",
|
|
21880
21880
|
props: {
|
|
@@ -21901,7 +21901,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21901
21901
|
default: o(() => [
|
|
21902
21902
|
L(Q(WW), { "as-child": "" }, {
|
|
21903
21903
|
default: o(() => [
|
|
21904
|
-
H("div",
|
|
21904
|
+
H("div", i5, [
|
|
21905
21905
|
L(zl, null, {
|
|
21906
21906
|
content: o(() => [
|
|
21907
21907
|
bl(dl(Q(U)?.zoomSelectTooltip), 1)
|
|
@@ -21912,7 +21912,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21912
21912
|
"aria-label": Q(U)?.zoomSelectTooltip
|
|
21913
21913
|
}, {
|
|
21914
21914
|
default: o(() => [
|
|
21915
|
-
H("span",
|
|
21915
|
+
H("span", o5, [
|
|
21916
21916
|
bl(dl(t.currentPercentage) + " ", 1),
|
|
21917
21917
|
L(ul, {
|
|
21918
21918
|
icon: "chevron-down",
|
|
@@ -21984,10 +21984,10 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
21984
21984
|
_: 1
|
|
21985
21985
|
}, 8, ["open"]));
|
|
21986
21986
|
}
|
|
21987
|
-
}),
|
|
21987
|
+
}), u5 = /* @__PURE__ */ $(m5, [["__scopeId", "data-v-8bf64ed4"]]), M5 = {
|
|
21988
21988
|
key: 1,
|
|
21989
21989
|
class: "vp-flex vp-items-center vp-gap-1"
|
|
21990
|
-
},
|
|
21990
|
+
}, J5 = /* @__PURE__ */ j({
|
|
21991
21991
|
__name: "ToolZoom",
|
|
21992
21992
|
props: {
|
|
21993
21993
|
scale: {},
|
|
@@ -22019,7 +22019,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22019
22019
|
return (W, N) => W.$slots.default ? w(W.$slots, "default", {
|
|
22020
22020
|
key: 0,
|
|
22021
22021
|
currentScale: n.value
|
|
22022
|
-
}, void 0, !0) : (M(), f("div",
|
|
22022
|
+
}, void 0, !0) : (M(), f("div", M5, [
|
|
22023
22023
|
L(zl, null, {
|
|
22024
22024
|
content: o(() => [
|
|
22025
22025
|
bl(dl(Q(t)?.zoomOutTooltip), 1)
|
|
@@ -22044,7 +22044,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22044
22044
|
]),
|
|
22045
22045
|
_: 3
|
|
22046
22046
|
}),
|
|
22047
|
-
Q(c) ? Ql("", !0) : (M(), E(
|
|
22047
|
+
Q(c) ? Ql("", !0) : (M(), E(u5, {
|
|
22048
22048
|
key: 0,
|
|
22049
22049
|
"current-percentage": a.value,
|
|
22050
22050
|
"current-page": U.focusedPage,
|
|
@@ -22077,7 +22077,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22077
22077
|
})
|
|
22078
22078
|
]));
|
|
22079
22079
|
}
|
|
22080
|
-
}),
|
|
22080
|
+
}), p5 = /* @__PURE__ */ $(J5, [["__scopeId", "data-v-f3a85709"]]), G5 = /* @__PURE__ */ j({
|
|
22081
22081
|
__name: "ToolPrint",
|
|
22082
22082
|
props: {
|
|
22083
22083
|
print: { type: Function },
|
|
@@ -22112,7 +22112,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22112
22112
|
_: 3
|
|
22113
22113
|
}));
|
|
22114
22114
|
}
|
|
22115
|
-
}),
|
|
22115
|
+
}), T5 = /* @__PURE__ */ $(G5, [["__scopeId", "data-v-7cd62ab3"]]), h5 = /* @__PURE__ */ j({
|
|
22116
22116
|
__name: "Dialog",
|
|
22117
22117
|
props: {
|
|
22118
22118
|
open: { type: Boolean },
|
|
@@ -22129,7 +22129,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22129
22129
|
_: 3
|
|
22130
22130
|
}, 16));
|
|
22131
22131
|
}
|
|
22132
|
-
}), tn = /* @__PURE__ */ $(
|
|
22132
|
+
}), tn = /* @__PURE__ */ $(h5, [["__scopeId", "data-v-482d1c95"]]), S5 = /* @__PURE__ */ j({
|
|
22133
22133
|
__name: "DialogClose",
|
|
22134
22134
|
props: {
|
|
22135
22135
|
asChild: { type: Boolean },
|
|
@@ -22144,7 +22144,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22144
22144
|
_: 3
|
|
22145
22145
|
}, 16));
|
|
22146
22146
|
}
|
|
22147
|
-
}),
|
|
22147
|
+
}), X5 = /* @__PURE__ */ $(S5, [["__scopeId", "data-v-ab4ca206"]]), Y5 = /* @__PURE__ */ j({
|
|
22148
22148
|
__name: "DialogHeader",
|
|
22149
22149
|
props: {
|
|
22150
22150
|
class: {}
|
|
@@ -22157,7 +22157,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22157
22157
|
w(U.$slots, "default", {}, void 0, !0)
|
|
22158
22158
|
], 2));
|
|
22159
22159
|
}
|
|
22160
|
-
}),
|
|
22160
|
+
}), B5 = /* @__PURE__ */ $(Y5, [["__scopeId", "data-v-d858e7f5"]]), y5 = /* @__PURE__ */ j({
|
|
22161
22161
|
__name: "DialogTitle",
|
|
22162
22162
|
props: {
|
|
22163
22163
|
asChild: { type: Boolean },
|
|
@@ -22178,7 +22178,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22178
22178
|
_: 3
|
|
22179
22179
|
}, 16, ["class"]));
|
|
22180
22180
|
}
|
|
22181
|
-
}), NW = /* @__PURE__ */ $(
|
|
22181
|
+
}), NW = /* @__PURE__ */ $(y5, [["__scopeId", "data-v-5a135c54"]]), z5 = /* @__PURE__ */ j({
|
|
22182
22182
|
__name: "DialogDescription",
|
|
22183
22183
|
props: {
|
|
22184
22184
|
asChild: { type: Boolean },
|
|
@@ -22199,7 +22199,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22199
22199
|
_: 3
|
|
22200
22200
|
}, 16, ["class"]));
|
|
22201
22201
|
}
|
|
22202
|
-
}), RW = /* @__PURE__ */ $(
|
|
22202
|
+
}), RW = /* @__PURE__ */ $(z5, [["__scopeId", "data-v-6a49ccf4"]]), L5 = /* @__PURE__ */ j({
|
|
22203
22203
|
__name: "DialogContent",
|
|
22204
22204
|
props: {
|
|
22205
22205
|
forceMount: { type: Boolean },
|
|
@@ -22227,17 +22227,17 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22227
22227
|
_: 3
|
|
22228
22228
|
}, 16, ["class"]));
|
|
22229
22229
|
}
|
|
22230
|
-
}), cn = /* @__PURE__ */ $(
|
|
22230
|
+
}), cn = /* @__PURE__ */ $(L5, [["__scopeId", "data-v-23025d27"]]), k5 = { class: "vp-overflow-auto" }, D5 = {
|
|
22231
22231
|
key: 0,
|
|
22232
22232
|
class: "vp-grid vp-grid-cols-3 vp-gap-4 vp-mb-3"
|
|
22233
|
-
},
|
|
22233
|
+
}, I5 = {
|
|
22234
22234
|
class: "vp-text-left",
|
|
22235
22235
|
style: { color: "var(--vpv-properties-content-secondary-color)" }
|
|
22236
|
-
},
|
|
22236
|
+
}, E5 = { class: "vp-text-left vp-col-span-2" }, C5 = {
|
|
22237
22237
|
key: 1,
|
|
22238
22238
|
class: "vp-w-full vp-h-[1px] vp-my-[16px]",
|
|
22239
22239
|
style: { background: "var(--vpv-properties-separator)" }
|
|
22240
|
-
},
|
|
22240
|
+
}, w5 = /* @__PURE__ */ j({
|
|
22241
22241
|
__name: "ModalPdfProperties",
|
|
22242
22242
|
props: {
|
|
22243
22243
|
open: { type: Boolean }
|
|
@@ -22310,7 +22310,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22310
22310
|
}),
|
|
22311
22311
|
L(Q(cn), { class: "vpv-modal vp-min-h-[400px] vp-grid vp-gap-4 vp-border" }, {
|
|
22312
22312
|
default: o(() => [
|
|
22313
|
-
L(Q(
|
|
22313
|
+
L(Q(X5), {
|
|
22314
22314
|
class: "vpv-modal-close",
|
|
22315
22315
|
"aria-label": "Close"
|
|
22316
22316
|
}, {
|
|
@@ -22320,7 +22320,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22320
22320
|
_: 1
|
|
22321
22321
|
}),
|
|
22322
22322
|
H("div", null, [
|
|
22323
|
-
L(Q(
|
|
22323
|
+
L(Q(B5), { class: "vp-mb-3" }, {
|
|
22324
22324
|
default: o(() => [
|
|
22325
22325
|
L(Q(NW), {
|
|
22326
22326
|
class: "vp-text-left",
|
|
@@ -22340,11 +22340,11 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22340
22340
|
]),
|
|
22341
22341
|
_: 1
|
|
22342
22342
|
}),
|
|
22343
|
-
H("div",
|
|
22343
|
+
H("div", k5, [
|
|
22344
22344
|
(M(!0), f(xl, null, dU(e.value, (N) => (M(), f(xl, null, [
|
|
22345
|
-
N.separate ? (M(), f("div",
|
|
22346
|
-
H("div",
|
|
22347
|
-
H("div",
|
|
22345
|
+
N.separate ? (M(), f("div", C5)) : (M(), f("div", D5, [
|
|
22346
|
+
H("div", I5, dl(N.label) + ": ", 1),
|
|
22347
|
+
H("div", E5, dl(N.value || "-"), 1)
|
|
22348
22348
|
]))
|
|
22349
22349
|
], 64))), 256))
|
|
22350
22350
|
])
|
|
@@ -22360,7 +22360,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22360
22360
|
_: 1
|
|
22361
22361
|
}, 8, ["open"]));
|
|
22362
22362
|
}
|
|
22363
|
-
}),
|
|
22363
|
+
}), r5 = /* @__PURE__ */ $(w5, [["__scopeId", "data-v-0dcee7b6"]]), x5 = { role: "button" }, j5 = { role: "button" }, O5 = { role: "button" }, g5 = { role: "button" }, v5 = /* @__PURE__ */ j({
|
|
22364
22364
|
__name: "ToolMenuOthersMobile",
|
|
22365
22365
|
emits: ["rotateClockwise", "rotateCounterclockwise", "textSelection", "gotoFirstPage", "gotoLastPage", "clickPrint"],
|
|
22366
22366
|
setup(l, { emit: d }) {
|
|
@@ -22380,7 +22380,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22380
22380
|
bl(dl(Q(n)?.openLocalFileTooltip), 1)
|
|
22381
22381
|
]),
|
|
22382
22382
|
default: o(() => [
|
|
22383
|
-
H("div",
|
|
22383
|
+
H("div", x5, [
|
|
22384
22384
|
Q(U)?.newFileOpenable ? (M(), E(Q(wU), {
|
|
22385
22385
|
key: 0,
|
|
22386
22386
|
onClick: i
|
|
@@ -22404,7 +22404,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22404
22404
|
bl(dl(Q(n)?.downloadFileTooltip), 1)
|
|
22405
22405
|
]),
|
|
22406
22406
|
default: o(() => [
|
|
22407
|
-
H("div",
|
|
22407
|
+
H("div", j5, [
|
|
22408
22408
|
Q(U)?.downloadable ? (M(), E(Q(wU), {
|
|
22409
22409
|
key: 0,
|
|
22410
22410
|
onClick: b
|
|
@@ -22428,7 +22428,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22428
22428
|
bl(dl(Q(n)?.printTooltip), 1)
|
|
22429
22429
|
]),
|
|
22430
22430
|
default: o(() => [
|
|
22431
|
-
H("div",
|
|
22431
|
+
H("div", O5, [
|
|
22432
22432
|
Q(U)?.printable ? (M(), E(Q(wU), {
|
|
22433
22433
|
key: 0,
|
|
22434
22434
|
onClick: p
|
|
@@ -22452,7 +22452,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22452
22452
|
bl(dl(Q(n)?.fullScreenTooltip), 1)
|
|
22453
22453
|
]),
|
|
22454
22454
|
default: o(() => [
|
|
22455
|
-
H("div",
|
|
22455
|
+
H("div", g5, [
|
|
22456
22456
|
Q(U)?.fullscreen ? (M(), E(Q(wU), {
|
|
22457
22457
|
key: 0,
|
|
22458
22458
|
disabled: !Q(R),
|
|
@@ -22476,7 +22476,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22476
22476
|
_: 1
|
|
22477
22477
|
}));
|
|
22478
22478
|
}
|
|
22479
|
-
}),
|
|
22479
|
+
}), K5 = /* @__PURE__ */ $(v5, [["__scopeId", "data-v-bc91d1a8"]]), H5 = { role: "button" }, P5 = { role: "button" }, f5 = ["aria-disabled"], A5 = { role: "button" }, q5 = ["aria-disabled"], _5 = { role: "button" }, $5 = { role: "button" }, lk = { role: "button" }, Uk = ["aria-disabled"], dk = { class: "vp-flex vp-items-center" }, Zk = { role: "button" }, Fk = { class: "vp-flex vp-items-center vp-justify-between vp-cursor-pointer vp-select-none vp-items-center vp-rounded-sm vp-py-1.5 vp-px-2 vp-text-sm vp-outline-none vp-transition-colors data-[disabled]:vp-pointer-events-none data-[disabled]:vp-opacity-50" }, tk = { class: "vp-flex vp-items-center" }, ck = { role: "button" }, nk = ["aria-disabled"], ak = { class: "vp-flex vp-items-center" }, Qk = { role: "button" }, Vk = ["aria-disabled"], ek = { class: "vp-flex vp-items-center" }, Wk = { role: "button" }, Nk = /* @__PURE__ */ j({
|
|
22480
22480
|
__name: "ToolMenuOthers",
|
|
22481
22481
|
props: {
|
|
22482
22482
|
rootContainer: {},
|
|
@@ -22591,7 +22591,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22591
22591
|
v && (O.preventDefault(), O.stopPropagation(), await Jl(), i.value = g);
|
|
22592
22592
|
};
|
|
22593
22593
|
return (O, v) => (M(), f(xl, null, [
|
|
22594
|
-
Q(V)?.docPropertiesEnabled ? (M(), E(
|
|
22594
|
+
Q(V)?.docPropertiesEnabled ? (M(), E(r5, {
|
|
22595
22595
|
key: 0,
|
|
22596
22596
|
open: t.value,
|
|
22597
22597
|
"onUpdate:open": v[0] || (v[0] = (g) => t.value = g)
|
|
@@ -22604,7 +22604,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22604
22604
|
default: o(() => [
|
|
22605
22605
|
L(Q(WW), { "as-child": "" }, {
|
|
22606
22606
|
default: o(() => [
|
|
22607
|
-
H("div",
|
|
22607
|
+
H("div", H5, [
|
|
22608
22608
|
L(zl, null, {
|
|
22609
22609
|
content: o(() => [
|
|
22610
22610
|
bl(dl(Q(c)?.moreOptionTooltip), 1)
|
|
@@ -22631,7 +22631,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22631
22631
|
]),
|
|
22632
22632
|
_: 3
|
|
22633
22633
|
}),
|
|
22634
|
-
L(Q(
|
|
22634
|
+
L(Q(W5), {
|
|
22635
22635
|
"collision-boundary": G.value,
|
|
22636
22636
|
"avoid-collisions": "",
|
|
22637
22637
|
side: "bottom",
|
|
@@ -22641,7 +22641,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22641
22641
|
}, {
|
|
22642
22642
|
default: o(() => [
|
|
22643
22643
|
Q(N) ? (M(), f(xl, { key: 0 }, [
|
|
22644
|
-
L(
|
|
22644
|
+
L(K5, {
|
|
22645
22645
|
onClickPrint: v[1] || (v[1] = () => R.value)
|
|
22646
22646
|
}),
|
|
22647
22647
|
C.value && B.value ? (M(), E(Q(lZ), {
|
|
@@ -22656,7 +22656,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22656
22656
|
bl(dl(Q(c)?.firstPageTooltip), 1)
|
|
22657
22657
|
]),
|
|
22658
22658
|
default: o(() => [
|
|
22659
|
-
H("div",
|
|
22659
|
+
H("div", P5, [
|
|
22660
22660
|
L(Q(wU), {
|
|
22661
22661
|
onClick: y,
|
|
22662
22662
|
"as-child": ""
|
|
@@ -22670,7 +22670,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22670
22670
|
})
|
|
22671
22671
|
], !0),
|
|
22672
22672
|
H("span", null, dl(Q(c)?.firstPageLabel), 1)
|
|
22673
|
-
], 8,
|
|
22673
|
+
], 8, f5)
|
|
22674
22674
|
]),
|
|
22675
22675
|
_: 3
|
|
22676
22676
|
})
|
|
@@ -22683,7 +22683,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22683
22683
|
bl(dl(Q(c)?.lastPageTooltip), 1)
|
|
22684
22684
|
]),
|
|
22685
22685
|
default: o(() => [
|
|
22686
|
-
H("div",
|
|
22686
|
+
H("div", A5, [
|
|
22687
22687
|
L(Q(wU), {
|
|
22688
22688
|
onClick: r,
|
|
22689
22689
|
"as-child": ""
|
|
@@ -22697,7 +22697,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22697
22697
|
})
|
|
22698
22698
|
], !0),
|
|
22699
22699
|
H("span", null, dl(Q(c)?.lastPageLabel), 1)
|
|
22700
|
-
], 8,
|
|
22700
|
+
], 8, q5)
|
|
22701
22701
|
]),
|
|
22702
22702
|
_: 3
|
|
22703
22703
|
})
|
|
@@ -22719,7 +22719,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22719
22719
|
bl(dl(Q(c)?.rotateClockwiseTooltip), 1)
|
|
22720
22720
|
]),
|
|
22721
22721
|
default: o(() => [
|
|
22722
|
-
H("div",
|
|
22722
|
+
H("div", _5, [
|
|
22723
22723
|
L(Q(wU), { onClick: X }, {
|
|
22724
22724
|
default: o(() => [
|
|
22725
22725
|
w(O.$slots, "iconRotateClockwise", {}, () => [
|
|
@@ -22741,7 +22741,7 @@ const QW = /* @__PURE__ */ $(AL, [["render", _L], ["__scopeId", "data-v-d1e18146
|
|
|
22741
22741
|
bl(dl(Q(c)?.rotateCounterclockwiseTooltip), 1)
|
|
22742
22742
|
]),
|
|
22743
22743
|
default: o(() => [
|
|
22744
|
-
H("div", $
|
|
22744
|
+
H("div", $5, [
|
|
22745
22745
|
L(Q(wU), { onClick: J }, {
|
|
22746
22746
|
default: o(() => [
|
|
22747
22747
|
w(O.$slots, "iconRotateCounterClockwise", {}, () => [
|
|
@@ -24864,7 +24864,7 @@ const kD = (l, d) => {
|
|
|
24864
24864
|
}), { comments: U, repliedCommentPages: t };
|
|
24865
24865
|
};
|
|
24866
24866
|
let sW = "";
|
|
24867
|
-
sW = "https://unpkg.com/@vue-pdf-viewer/viewer@3.0.0-alpha.
|
|
24867
|
+
sW = "https://unpkg.com/@vue-pdf-viewer/viewer@3.0.0-alpha.6/dist/assets/pdf-annotations/";
|
|
24868
24868
|
const eQ = sW, ED = /* @__PURE__ */ j({
|
|
24869
24869
|
__name: "AppPopover",
|
|
24870
24870
|
props: {
|
|
@@ -25979,7 +25979,7 @@ const _D = { class: "vp-grid vp-gap-1" }, $D = /* @__PURE__ */ j({
|
|
|
25979
25979
|
pl.value ? (M(), f("div", NI, [
|
|
25980
25980
|
H("div", RI, [
|
|
25981
25981
|
H("div", sI, [
|
|
25982
|
-
i.value && pl.value?.searchable ? (M(), E(
|
|
25982
|
+
i.value && pl.value?.searchable ? (M(), E(a5, {
|
|
25983
25983
|
key: 0,
|
|
25984
25984
|
value: Q(RZ),
|
|
25985
25985
|
"onUpdate:value": Zl[2] || (Zl[2] = (ll) => SU(RZ) ? RZ.value = ll : null),
|
|
@@ -26052,7 +26052,7 @@ const _D = { class: "vp-grid vp-gap-1" }, $D = /* @__PURE__ */ j({
|
|
|
26052
26052
|
]), 1032, ["total", "current"])) : Ql("", !0)
|
|
26053
26053
|
]),
|
|
26054
26054
|
H("div", bI, [
|
|
26055
|
-
pl.value?.zoomable && JU.value !== void 0 ? (M(), E(
|
|
26055
|
+
pl.value?.zoomable && JU.value !== void 0 ? (M(), E(p5, {
|
|
26056
26056
|
key: 0,
|
|
26057
26057
|
scale: JU.value,
|
|
26058
26058
|
"focused-page": Q(Vl)[T.value],
|
|
@@ -26107,7 +26107,7 @@ const _D = { class: "vp-grid vp-gap-1" }, $D = /* @__PURE__ */ j({
|
|
|
26107
26107
|
key: "1"
|
|
26108
26108
|
} : void 0
|
|
26109
26109
|
]), 1032, ["modelValue"])) : Ql("", !0),
|
|
26110
|
-
pl.value?.themeSwitchable ? (M(), E(
|
|
26110
|
+
pl.value?.themeSwitchable ? (M(), E(C1, {
|
|
26111
26111
|
key: 1,
|
|
26112
26112
|
modelValue: F.value,
|
|
26113
26113
|
"onUpdate:modelValue": Zl[4] || (Zl[4] = (ll) => F.value = ll)
|
|
@@ -26169,7 +26169,7 @@ const _D = { class: "vp-grid vp-gap-1" }, $D = /* @__PURE__ */ j({
|
|
|
26169
26169
|
key: "1"
|
|
26170
26170
|
} : void 0
|
|
26171
26171
|
]), 1024)) : Ql("", !0),
|
|
26172
|
-
pl.value?.printable && !vd.value ? (M(), E(
|
|
26172
|
+
pl.value?.printable && !vd.value ? (M(), E(T5, {
|
|
26173
26173
|
key: 4,
|
|
26174
26174
|
print: Q(Ot)
|
|
26175
26175
|
}, pU({ _: 2 }, [
|
|
@@ -26401,7 +26401,7 @@ const _D = { class: "vp-grid vp-gap-1" }, $D = /* @__PURE__ */ j({
|
|
|
26401
26401
|
"vpv-sidebar_comment-panel-mobile-container": vd.value
|
|
26402
26402
|
}])
|
|
26403
26403
|
}, [
|
|
26404
|
-
L(
|
|
26404
|
+
L(S1, {
|
|
26405
26405
|
onClose: Zl[5] || (Zl[5] = (ll) => v.value = !1),
|
|
26406
26406
|
onNavigate: KW
|
|
26407
26407
|
})
|