@pdf-viewer/react 1.17.0-beta.0 → 1.17.0-beta.2
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/ToolbarLayout.module-60ee3cc4.js +3747 -0
- package/dist/assets/style.css +1 -1
- package/dist/assets/style.js +5 -5
- package/dist/components/RPController.js +4 -3
- package/dist/components/RPPages.js +3 -2
- package/dist/components/RPProvider.js +4 -3
- package/dist/components/layout/LayoutContainer.js +3 -2
- package/dist/components/layout/RPDefaultLayout.js +3 -2
- package/dist/components/layout/RPLayout.js +25 -22
- package/dist/components/layout/SkipLink.js +28 -0
- package/dist/components/layout/sidebar/RPSidebar.js +3 -2
- package/dist/components/layout/sidebar/Thumbnail.js +3 -2
- package/dist/components/layout/sidebar/Thumbnails.js +3 -2
- package/dist/components/layout/toolbar/DocumentDialog.js +3 -2
- package/dist/components/layout/toolbar/FileDownloadTool.js +3 -2
- package/dist/components/layout/toolbar/MostPageTool.js +3 -2
- package/dist/components/layout/toolbar/OtherTool.js +3 -2
- package/dist/components/layout/toolbar/Paginate.js +3 -2
- package/dist/components/layout/toolbar/PrintTool.js +3 -2
- package/dist/components/layout/toolbar/RPMoreOptions.js +14 -13
- package/dist/components/layout/toolbar/RPToolbar.js +3 -2
- package/dist/components/layout/toolbar/RPToolbarEnd.js +3 -2
- package/dist/components/layout/toolbar/SearchResultNavigator.js +3 -2
- package/dist/components/layout/toolbar/SearchTool.js +3 -2
- package/dist/components/layout/toolbar/ThumbnailTool.js +4 -3
- package/dist/components/layout/toolbar/ToolbarCustom.js +39 -23
- package/dist/components/layout/toolbar/ToolbarDefault.js +33 -25
- package/dist/components/layout/toolbar/ToolbarLayout.js +4 -3
- package/dist/components/layout/toolbar/ZoomTool.js +3 -2
- package/dist/components/layout/toolbar/tools/DocumentPropertiesTool.js +4 -3
- package/dist/components/layout/toolbar/tools/DualPageTool.js +14 -21
- package/dist/components/layout/toolbar/tools/DualPageWithCoverTool.js +4 -3
- package/dist/components/layout/toolbar/tools/FileDownloadTool.js +8 -7
- package/dist/components/layout/toolbar/tools/FileUploadTool.js +4 -4
- package/dist/components/layout/toolbar/tools/FullScreenTool.js +16 -15
- package/dist/components/layout/toolbar/tools/InputPageTool.js +37 -29
- package/dist/components/layout/toolbar/tools/NextPageTool.js +12 -10
- package/dist/components/layout/toolbar/tools/PreviousPageTool.js +15 -13
- package/dist/components/layout/toolbar/tools/PrintTool.js +6 -5
- package/dist/components/layout/toolbar/tools/RotateClockwiseTool.js +11 -4
- package/dist/components/layout/toolbar/tools/RotateCounterclockwiseTool.js +8 -8
- package/dist/components/layout/toolbar/tools/SelectionModeSwitcherTool.js +16 -8
- package/dist/components/layout/toolbar/tools/SinglePageTool.js +5 -4
- package/dist/components/layout/toolbar/tools/ThemeSwitcherTool.js +10 -2
- package/dist/components/layout/toolbar/tools/ThumbnailTool.js +15 -13
- package/dist/components/layout/toolbar/tools/ZoomInTool.js +14 -13
- package/dist/components/layout/toolbar/tools/ZoomLevelDisplay.js +3 -2
- package/dist/components/layout/toolbar/tools/ZoomLevelTool.js +73 -38
- package/dist/components/layout/toolbar/tools/ZoomOutTool.js +11 -10
- package/dist/components/layout/toolbar/tools/defaults/RPHorizontalBar.js +4 -3
- package/dist/components/layout/toolbar/tools/defaults/RPVerticalBar.js +4 -3
- package/dist/components/layout/toolbar/tools/more-options/DocumentProperties.js +8 -8
- package/dist/components/layout/toolbar/tools/more-options/FileDownloadTool.js +22 -14
- package/dist/components/layout/toolbar/tools/more-options/FileUploadTool.js +21 -13
- package/dist/components/layout/toolbar/tools/more-options/FullScreenTool.js +19 -11
- package/dist/components/layout/toolbar/tools/more-options/MostPageTool.js +35 -18
- package/dist/components/layout/toolbar/tools/more-options/PrintTool.js +22 -14
- package/dist/components/layout/toolbar/tools/more-options/RotateTool.js +30 -16
- package/dist/components/layout/toolbar/tools/more-options/ScrollModeTool.js +45 -27
- package/dist/components/layout/toolbar/tools/more-options/SelectionModeTool.js +38 -22
- package/dist/components/layout/toolbar/tools/more-options/ViewModeTool.js +46 -29
- package/dist/components/page/AnnotationLayer.js +3 -2
- package/dist/components/page/CanvasLayer.js +3 -2
- package/dist/components/page/DualPage.js +3 -2
- package/dist/components/page/DualPageWithCover.js +3 -2
- package/dist/components/page/RPPage.js +3 -2
- package/dist/components/page/SinglePage.js +3 -2
- package/dist/components/page/TextHighlightLayer.js +3 -2
- package/dist/components/page/TextLayer.js +3 -2
- package/dist/components/ui/Button.js +14 -12
- package/dist/components/ui/Checkbox.js +75 -68
- package/dist/components/ui/Input.js +12 -11
- package/dist/components/ui/LoadingIndicator.js +3 -2
- package/dist/components/ui/PasswordModal.js +43 -29
- package/dist/contexts/PaginationContext.js +5 -4
- package/dist/contexts/PrintContext.js +5 -4
- package/dist/contexts/RenderQueueProvider.js +5 -4
- package/dist/contexts/SearchContext.js +5 -4
- package/dist/contexts/ThumbnailsContext.js +5 -4
- package/dist/main.js +88 -87
- package/dist/types/components/layout/SkipLink.d.ts +7 -0
- package/dist/types/components/ui/Checkbox.d.ts +1 -0
- package/dist/types/utils/annotations.d.ts +10 -0
- package/dist/utils/annotations.js +184 -158
- package/dist/utils/hooks/useFileDownload.js +3 -2
- package/dist/utils/hooks/useLicense.js +1 -1
- package/dist/utils/hooks/usePaginate.js +3 -2
- package/dist/utils/hooks/usePresentPage.js +3 -2
- package/dist/utils/hooks/usePrint.js +3 -2
- package/dist/utils/hooks/useScrollToPage.js +3 -2
- package/dist/utils/hooks/useSearch.js +3 -2
- package/dist/utils/hooks/useThumbnail.js +3 -2
- package/dist/utils/hooks/useVirtualReactWindow.js +3 -2
- package/package.json +1 -1
- package/dist/ToolbarLayout.module-0245d511.js +0 -3653
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsxs as p, jsx as
|
|
1
|
+
import { jsxs as p, jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import { MenuItem as a } from "../../MenuItem.js";
|
|
3
|
-
import
|
|
4
|
-
import { u as C, s as G } from "../../../../../ToolbarLayout.module-
|
|
3
|
+
import l from "../../../../ui/RPTooltip.js";
|
|
4
|
+
import { u as C, s as G } from "../../../../../ToolbarLayout.module-60ee3cc4.js";
|
|
5
5
|
import { G as L } from "../../../../../index-f563c6f0.js";
|
|
6
|
-
import { useMemo as
|
|
6
|
+
import { useMemo as d, useCallback as s } from "react";
|
|
7
7
|
import "../../../../../contexts/RPDocumentContext.js";
|
|
8
8
|
import "../../../../../contexts/DocumentPasswordContext.js";
|
|
9
9
|
import "../../../../../contexts/DarkModeContext.js";
|
|
@@ -44,6 +44,7 @@ import "../../../sidebar/RPSplitter.js";
|
|
|
44
44
|
import "../../../WrapperLayout.js";
|
|
45
45
|
import "../../../../RPDropFileZone.js";
|
|
46
46
|
import "../../../../../LayoutWrapper-3f4d0a19.js";
|
|
47
|
+
import "../../../SkipLink.js";
|
|
47
48
|
import "../../../../ui/Button.js";
|
|
48
49
|
import "../../../../../SearchCloseButton-08d57275.js";
|
|
49
50
|
import "../../../../ui/Input.js";
|
|
@@ -55,7 +56,7 @@ import { MenuSeparator as v } from "../../MenuSeparator.js";
|
|
|
55
56
|
import "../../../../../utils/dateFormatter.js";
|
|
56
57
|
import "../../PropertyItem.js";
|
|
57
58
|
import "../../../../../RotateTool.module-67946714.js";
|
|
58
|
-
import { GoToDownIcon as
|
|
59
|
+
import { GoToDownIcon as c } from "../../../../icons/GoToDownIcon.js";
|
|
59
60
|
import "../../../../../clsx-0c6e471a.js";
|
|
60
61
|
import "../../../../../index-35c7f4a2.js";
|
|
61
62
|
import "react-dom";
|
|
@@ -135,24 +136,40 @@ import "../../../../icons/ClearIcon.js";
|
|
|
135
136
|
import "../../../../../utils/hooks/useHighlight.js";
|
|
136
137
|
import "../../../../icons/LightPdfIcon.js";
|
|
137
138
|
import "../../../../icons/DarkPdfIcon.js";
|
|
138
|
-
const u = { width: "100%" },
|
|
139
|
-
const { icons:
|
|
139
|
+
const u = { width: "100%" }, ri = (P) => {
|
|
140
|
+
const { icons: f, isToolVisible: h = !0 } = P, { firstPageIcon: n, lastPageIcon: e } = f ?? {}, { goToPage: i, totalPages: r, focusedPage: m } = C(), { localeMessages: t } = N(), T = d(() => m === 1, [m]), b = d(() => m === r, [m, r]), g = s(() => {
|
|
140
141
|
i(1);
|
|
141
|
-
}, [i]), x =
|
|
142
|
+
}, [i]), x = s(() => {
|
|
142
143
|
i(r);
|
|
143
144
|
}, [i, r]);
|
|
144
145
|
return h ? /* @__PURE__ */ p(L, { children: [
|
|
145
|
-
/* @__PURE__ */
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
146
|
+
/* @__PURE__ */ o(
|
|
147
|
+
a,
|
|
148
|
+
{
|
|
149
|
+
onClick: g,
|
|
150
|
+
disabled: T,
|
|
151
|
+
"aria-label": t == null ? void 0 : t.firstPageTooltip,
|
|
152
|
+
children: /* @__PURE__ */ o(l, { content: t == null ? void 0 : t.firstPageTooltip, style: u, children: /* @__PURE__ */ p("div", { className: "rp-menu-item", children: [
|
|
153
|
+
/* @__PURE__ */ o("div", { className: "rp-menu-item-left", children: n || /* @__PURE__ */ o(c, { className: G["rp-go-to-Top"], "aria-hidden": "true" }) }),
|
|
154
|
+
/* @__PURE__ */ o("span", { children: t == null ? void 0 : t.firstPageLabel })
|
|
155
|
+
] }) })
|
|
156
|
+
}
|
|
157
|
+
),
|
|
158
|
+
/* @__PURE__ */ o(
|
|
159
|
+
a,
|
|
160
|
+
{
|
|
161
|
+
onClick: x,
|
|
162
|
+
disabled: b,
|
|
163
|
+
"aria-label": t == null ? void 0 : t.lastPageTooltip,
|
|
164
|
+
children: /* @__PURE__ */ o(l, { content: t == null ? void 0 : t.lastPageTooltip, style: u, children: /* @__PURE__ */ p("div", { className: "rp-menu-item", children: [
|
|
165
|
+
/* @__PURE__ */ o("div", { className: "rp-menu-item-left", children: e || /* @__PURE__ */ o(c, { "aria-hidden": "true" }) }),
|
|
166
|
+
/* @__PURE__ */ o("span", { children: t == null ? void 0 : t.lastPageLabel })
|
|
167
|
+
] }) })
|
|
168
|
+
}
|
|
169
|
+
),
|
|
170
|
+
/* @__PURE__ */ o(v, {})
|
|
154
171
|
] }) : null;
|
|
155
172
|
};
|
|
156
173
|
export {
|
|
157
|
-
|
|
174
|
+
ri as MostPageTool
|
|
158
175
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as i, jsxs as e } from "react/jsx-runtime";
|
|
2
2
|
import { PrintDefaultTool as l } from "../../../../icons/PrintDefaultIcon.js";
|
|
3
|
-
import { c } from "../../../../../ToolbarLayout.module-
|
|
4
|
-
import { useViewportContext as
|
|
5
|
-
import { useLocalizationContext as
|
|
6
|
-
import { MenuItem as
|
|
3
|
+
import { c as u } from "../../../../../ToolbarLayout.module-60ee3cc4.js";
|
|
4
|
+
import { useViewportContext as c } from "../../../../../contexts/ViewportContext.js";
|
|
5
|
+
import { useLocalizationContext as f } from "../../../../../contexts/LocalizationContext.js";
|
|
6
|
+
import { MenuItem as d } from "../../MenuItem.js";
|
|
7
7
|
import x from "../../../../ui/RPTooltip.js";
|
|
8
8
|
import "react";
|
|
9
9
|
import "../../../../icons/ChevronUpIcon.js";
|
|
@@ -75,6 +75,7 @@ import "../../../../RPDropFileZone.js";
|
|
|
75
75
|
import "../../../../icons/LightPdfIcon.js";
|
|
76
76
|
import "../../../../icons/DarkPdfIcon.js";
|
|
77
77
|
import "../../../../../LayoutWrapper-3f4d0a19.js";
|
|
78
|
+
import "../../../SkipLink.js";
|
|
78
79
|
import "../../../../../SearchCloseButton-08d57275.js";
|
|
79
80
|
import "../../../../icons/CloseIcon.js";
|
|
80
81
|
import "../../../../ui/Checkbox.js";
|
|
@@ -135,16 +136,23 @@ import "../../../../icons/ZoomOutIcon.js";
|
|
|
135
136
|
import "../../../../../utils/zoom.js";
|
|
136
137
|
import "../../../../icons/SearchIcon.js";
|
|
137
138
|
import "../../../../icons/ClearIcon.js";
|
|
138
|
-
const
|
|
139
|
-
const { icon: r, isToolVisible: p = !0 } = m, { print: n } =
|
|
140
|
-
if (!p || !
|
|
139
|
+
const Qi = (m) => {
|
|
140
|
+
const { icon: r, isToolVisible: p = !0 } = m, { print: n } = u(), { isSmallScreen: o } = c(), { localeMessages: t } = f();
|
|
141
|
+
if (!p || !o)
|
|
141
142
|
return null;
|
|
142
|
-
if (
|
|
143
|
-
return /* @__PURE__ */
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
143
|
+
if (o)
|
|
144
|
+
return /* @__PURE__ */ i(
|
|
145
|
+
d,
|
|
146
|
+
{
|
|
147
|
+
onClick: n,
|
|
148
|
+
"aria-label": t == null ? void 0 : t.printTooltip,
|
|
149
|
+
children: /* @__PURE__ */ e(x, { className: "rp-menu-item", content: t == null ? void 0 : t.printTooltip, children: [
|
|
150
|
+
/* @__PURE__ */ i("div", { className: "rp-menu-item-left", children: r || /* @__PURE__ */ i(l, { "aria-hidden": "true" }) }),
|
|
151
|
+
t == null ? void 0 : t.printLabel
|
|
152
|
+
] })
|
|
153
|
+
}
|
|
154
|
+
);
|
|
147
155
|
};
|
|
148
156
|
export {
|
|
149
|
-
|
|
157
|
+
Qi as PrintTool
|
|
150
158
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { c as
|
|
1
|
+
import { jsx as o, Fragment as C, jsxs as r } from "react/jsx-runtime";
|
|
2
|
+
import { c as k } from "../../../../../RotateTool.module-67946714.js";
|
|
3
3
|
import { MenuItem as e } from "../../MenuItem.js";
|
|
4
4
|
import n from "../../../../ui/RPTooltip.js";
|
|
5
5
|
import { G as f } from "../../../../../index-f563c6f0.js";
|
|
6
6
|
import { ClockwiseIcon as p } from "../../../../icons/ClockwiseIcon.js";
|
|
7
|
-
import { MenuSeparator as
|
|
8
|
-
import { useRotate as
|
|
9
|
-
import { useLocalizationContext as
|
|
7
|
+
import { MenuSeparator as h } from "../../MenuSeparator.js";
|
|
8
|
+
import { useRotate as w } from "../../../../../utils/hooks/useRotate.js";
|
|
9
|
+
import { useLocalizationContext as s } from "../../../../../contexts/LocalizationContext.js";
|
|
10
10
|
import "../../../../../clsx-0c6e471a.js";
|
|
11
11
|
import "react";
|
|
12
12
|
import "../../../../../index-35c7f4a2.js";
|
|
@@ -29,17 +29,31 @@ import "../../../../../utils/convertPdfDate.js";
|
|
|
29
29
|
import "../../../../../utils/formatFileSize.js";
|
|
30
30
|
import "../../../../../utils/hooks/useLocalization.js";
|
|
31
31
|
const Z = (c) => {
|
|
32
|
-
const { icons: l, isToolVisible: a = !0 } = c, { rotateClockwiseIcon: i, rotateCounterClockwiseIcon: m } = l ?? {}, { handleRotateClockwise: u, handleRotateCounterclockwise:
|
|
33
|
-
return a ? /* @__PURE__ */
|
|
34
|
-
/* @__PURE__ */
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
32
|
+
const { icons: l, isToolVisible: a = !0 } = c, { rotateClockwiseIcon: i, rotateCounterClockwiseIcon: m } = l ?? {}, { handleRotateClockwise: u, handleRotateCounterclockwise: d } = w(), { localeMessages: t } = s();
|
|
33
|
+
return a ? /* @__PURE__ */ o(C, { children: /* @__PURE__ */ r(f, { children: [
|
|
34
|
+
/* @__PURE__ */ o(
|
|
35
|
+
e,
|
|
36
|
+
{
|
|
37
|
+
onClick: u,
|
|
38
|
+
"aria-label": t == null ? void 0 : t.rotateClockwiseTooltip,
|
|
39
|
+
children: /* @__PURE__ */ r(n, { className: "rp-menu-item", content: t == null ? void 0 : t.rotateClockwiseTooltip, children: [
|
|
40
|
+
/* @__PURE__ */ o("div", { className: "rp-menu-item-left", children: i || /* @__PURE__ */ o(p, { "aria-hidden": "true" }) }),
|
|
41
|
+
t == null ? void 0 : t.rotateClockwiseLabel
|
|
42
|
+
] })
|
|
43
|
+
}
|
|
44
|
+
),
|
|
45
|
+
/* @__PURE__ */ o(
|
|
46
|
+
e,
|
|
47
|
+
{
|
|
48
|
+
onClick: d,
|
|
49
|
+
"aria-label": t == null ? void 0 : t.rotateCounterclockwiseTooltip,
|
|
50
|
+
children: /* @__PURE__ */ r(n, { className: "rp-menu-item", content: t == null ? void 0 : t.rotateCounterclockwiseTooltip, children: [
|
|
51
|
+
/* @__PURE__ */ o("div", { className: "rp-menu-item-left", children: m || /* @__PURE__ */ o(p, { className: k["rp-rotate-counterclockwise"], "aria-hidden": "true" }) }),
|
|
52
|
+
t == null ? void 0 : t.rotateCounterclockwiseLabel
|
|
53
|
+
] })
|
|
54
|
+
}
|
|
55
|
+
),
|
|
56
|
+
/* @__PURE__ */ o(h, {})
|
|
43
57
|
] }) }) : null;
|
|
44
58
|
};
|
|
45
59
|
export {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useMemo as
|
|
1
|
+
import { jsx as i, Fragment as C, jsxs as n } from "react/jsx-runtime";
|
|
2
|
+
import { useMemo as f } from "react";
|
|
3
3
|
import e from "../../../../ui/RPTooltip.js";
|
|
4
|
-
import { G } from "../../../../../index-f563c6f0.js";
|
|
4
|
+
import { G as R } from "../../../../../index-f563c6f0.js";
|
|
5
5
|
import { MenuItem as c } from "../../MenuItem.js";
|
|
6
|
-
import { PageScrollingIcon as
|
|
6
|
+
import { PageScrollingIcon as G } from "../../../../icons/PageScrollingIcon.js";
|
|
7
7
|
import { VerticalScrollingIcon as O } from "../../../../icons/VerticalScrollingIcon.js";
|
|
8
8
|
import { HorizontalScrollingIcon as T } from "../../../../icons/HorizontalScrollingIcon.js";
|
|
9
9
|
import { useScrollModeContext as A } from "../../../../../contexts/ScrollModeContext.js";
|
|
10
|
-
import { ViewMode as
|
|
10
|
+
import { ViewMode as L, ScrollMode as o } from "../../../../../utils/types.js";
|
|
11
11
|
import { CheckIcon as p } from "../../../../icons/CheckIcon.js";
|
|
12
12
|
import { useViewModeContext as _ } from "../../../../../contexts/ViewModeContext.js";
|
|
13
|
-
import { useLocalizationContext as
|
|
13
|
+
import { useLocalizationContext as E } from "../../../../../contexts/LocalizationContext.js";
|
|
14
14
|
import "../../../../../index-35c7f4a2.js";
|
|
15
15
|
import "react-dom";
|
|
16
16
|
import "../../../../../floating-ui.react-dom-6b2fe0df.js";
|
|
@@ -20,33 +20,51 @@ import "../../../../../utils/appConsole.js";
|
|
|
20
20
|
import "../../../../../contexts/InitialStateContext.js";
|
|
21
21
|
import "../../../../../th_TH-d1686d95.js";
|
|
22
22
|
import "../../../../../utils/hooks/useLocalization.js";
|
|
23
|
-
const
|
|
24
|
-
const { icons:
|
|
25
|
-
return
|
|
26
|
-
/* @__PURE__ */
|
|
27
|
-
/* @__PURE__ */ r("div", { className: "rp-menu-item-left", children: d || /* @__PURE__ */ r(R, {}) }),
|
|
28
|
-
o == null ? void 0 : o.pageScrollingLabel,
|
|
29
|
-
m === i.PAGE_SCROLLING ? /* @__PURE__ */ r(p, { className: "rp-menu-item-right" }) : null
|
|
30
|
-
] }) }),
|
|
31
|
-
/* @__PURE__ */ r(c, { onClick: () => l(i.VERTICAL_SCROLLING), children: /* @__PURE__ */ t(e, { className: "rp-menu-item", content: o == null ? void 0 : o.verticalScrollingTooltip, children: [
|
|
32
|
-
/* @__PURE__ */ r("div", { className: "rp-menu-item-left", children: u || /* @__PURE__ */ r(O, {}) }),
|
|
33
|
-
o == null ? void 0 : o.verticalScrollingLabel,
|
|
34
|
-
m === i.VERTICAL_SCROLLING ? /* @__PURE__ */ r(p, { className: "rp-menu-item-right" }) : null
|
|
35
|
-
] }) }),
|
|
36
|
-
/* @__PURE__ */ r(
|
|
23
|
+
const X = (h) => {
|
|
24
|
+
const { icons: S, isToolVisible: I = !0 } = h, { pageScrollIcon: d, verticalScrollIcon: a, horizontalScrollIcon: u } = S ?? {}, { viewMode: l } = _(), { scrollMode: t, setScrollMode: m } = A(), { localeMessages: r } = E(), N = f(() => l === L.DUAL_PAGE || l === L.DUAL_PAGE_WITH_COVER, [l]);
|
|
25
|
+
return I ? /* @__PURE__ */ i(C, { children: /* @__PURE__ */ n(R, { children: [
|
|
26
|
+
/* @__PURE__ */ i(
|
|
37
27
|
c,
|
|
38
28
|
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
29
|
+
onClick: () => m(o.PAGE_SCROLLING),
|
|
30
|
+
"aria-label": r == null ? void 0 : r.pageScrollingTooltip,
|
|
31
|
+
"aria-checked": t === o.PAGE_SCROLLING,
|
|
32
|
+
children: /* @__PURE__ */ n(e, { className: "rp-menu-item", content: r == null ? void 0 : r.pageScrollingTooltip, children: [
|
|
33
|
+
/* @__PURE__ */ i("div", { className: "rp-menu-item-left", children: d || /* @__PURE__ */ i(G, { "aria-hidden": "true" }) }),
|
|
34
|
+
r == null ? void 0 : r.pageScrollingLabel,
|
|
35
|
+
t === o.PAGE_SCROLLING ? /* @__PURE__ */ i(p, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
36
|
+
] })
|
|
37
|
+
}
|
|
38
|
+
),
|
|
39
|
+
/* @__PURE__ */ i(
|
|
40
|
+
c,
|
|
41
|
+
{
|
|
42
|
+
onClick: () => m(o.VERTICAL_SCROLLING),
|
|
43
|
+
"aria-label": r == null ? void 0 : r.verticalScrollingTooltip,
|
|
44
|
+
"aria-checked": t === o.VERTICAL_SCROLLING,
|
|
45
|
+
children: /* @__PURE__ */ n(e, { className: "rp-menu-item", content: r == null ? void 0 : r.verticalScrollingTooltip, children: [
|
|
46
|
+
/* @__PURE__ */ i("div", { className: "rp-menu-item-left", children: a || /* @__PURE__ */ i(O, { "aria-hidden": "true" }) }),
|
|
47
|
+
r == null ? void 0 : r.verticalScrollingLabel,
|
|
48
|
+
t === o.VERTICAL_SCROLLING ? /* @__PURE__ */ i(p, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
49
|
+
] })
|
|
50
|
+
}
|
|
51
|
+
),
|
|
52
|
+
/* @__PURE__ */ i(
|
|
53
|
+
c,
|
|
54
|
+
{
|
|
55
|
+
disabled: N,
|
|
56
|
+
onClick: () => m(o.HORIZONTAL_SCROLLING),
|
|
57
|
+
"aria-label": r == null ? void 0 : r.horizontalTooltip,
|
|
58
|
+
"aria-checked": t === o.HORIZONTAL_SCROLLING,
|
|
59
|
+
children: /* @__PURE__ */ n(e, { className: "rp-menu-item", content: r == null ? void 0 : r.horizontalTooltip, children: [
|
|
60
|
+
/* @__PURE__ */ i("div", { className: "rp-menu-item-left", children: u || /* @__PURE__ */ i(T, { "aria-hidden": "true" }) }),
|
|
61
|
+
r == null ? void 0 : r.horizontalLabel,
|
|
62
|
+
t === o.HORIZONTAL_SCROLLING ? /* @__PURE__ */ i(p, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
45
63
|
] })
|
|
46
64
|
}
|
|
47
65
|
)
|
|
48
66
|
] }) }) : null;
|
|
49
67
|
};
|
|
50
68
|
export {
|
|
51
|
-
|
|
69
|
+
X as ScrollModeTool
|
|
52
70
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import { G as
|
|
1
|
+
import { jsx as o, Fragment as T, jsxs as e } from "react/jsx-runtime";
|
|
2
|
+
import p from "../../../../ui/RPTooltip.js";
|
|
3
|
+
import { G as f } from "../../../../../index-f563c6f0.js";
|
|
4
4
|
import { TextSelectionDefaultIcon as x } from "../../../../icons/TextSelectionDefaultIcon.js";
|
|
5
5
|
import { HandModeDefaultIcon as S } from "../../../../icons/HandModeDefaultIcon.js";
|
|
6
|
-
import { CheckIcon as
|
|
7
|
-
import { MenuItem as
|
|
6
|
+
import { CheckIcon as d } from "../../../../icons/CheckIcon.js";
|
|
7
|
+
import { MenuItem as l } from "../../MenuItem.js";
|
|
8
8
|
import { SelectionMode as i } from "../../../../../utils/types.js";
|
|
9
9
|
import { MenuSeparator as N } from "../../MenuSeparator.js";
|
|
10
|
-
import { useSelectionModeContext as
|
|
11
|
-
import { useLocalizationContext as
|
|
10
|
+
import { useSelectionModeContext as I } from "../../../../../contexts/SelectionModeContext.js";
|
|
11
|
+
import { useLocalizationContext as b } from "../../../../../contexts/LocalizationContext.js";
|
|
12
12
|
import "react";
|
|
13
13
|
import "../../../../../index-35c7f4a2.js";
|
|
14
14
|
import "react-dom";
|
|
@@ -18,22 +18,38 @@ import "../../../../../clsx-0c6e471a.js";
|
|
|
18
18
|
import "../../../../../th_TH-d1686d95.js";
|
|
19
19
|
import "../../../../../utils/appConsole.js";
|
|
20
20
|
import "../../../../../utils/hooks/useLocalization.js";
|
|
21
|
-
const
|
|
22
|
-
const { icons:
|
|
23
|
-
return h ? /* @__PURE__ */
|
|
24
|
-
/* @__PURE__ */
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
21
|
+
const J = (a) => {
|
|
22
|
+
const { icons: u, isToolVisible: h = !0 } = a, { textSelectionIcon: n, handModeIcon: m } = u ?? {}, { selectionMode: r, setSelectionMode: c } = I(), { localeMessages: t } = b();
|
|
23
|
+
return h ? /* @__PURE__ */ o(T, { children: /* @__PURE__ */ e(f, { children: [
|
|
24
|
+
/* @__PURE__ */ o(
|
|
25
|
+
l,
|
|
26
|
+
{
|
|
27
|
+
onClick: () => c(i.TEXT),
|
|
28
|
+
"aria-label": t == null ? void 0 : t.textSelectionTooltip,
|
|
29
|
+
"aria-checked": r === i.TEXT,
|
|
30
|
+
children: /* @__PURE__ */ e(p, { className: "rp-menu-item", content: t == null ? void 0 : t.textSelectionTooltip, children: [
|
|
31
|
+
/* @__PURE__ */ o("div", { className: "rp-menu-item-left", children: n || /* @__PURE__ */ o(x, { "aria-hidden": "true" }) }),
|
|
32
|
+
t == null ? void 0 : t.textSelectionLabel,
|
|
33
|
+
r === i.TEXT ? /* @__PURE__ */ o(d, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
34
|
+
] })
|
|
35
|
+
}
|
|
36
|
+
),
|
|
37
|
+
/* @__PURE__ */ o(
|
|
38
|
+
l,
|
|
39
|
+
{
|
|
40
|
+
onClick: () => c(i.HAND),
|
|
41
|
+
"aria-label": t == null ? void 0 : t.handToolTooltip,
|
|
42
|
+
"aria-checked": r === i.HAND,
|
|
43
|
+
children: /* @__PURE__ */ e(p, { className: "rp-menu-item", content: t == null ? void 0 : t.handToolTooltip, children: [
|
|
44
|
+
/* @__PURE__ */ o("div", { className: "rp-menu-item-left", children: m || /* @__PURE__ */ o(S, { "aria-hidden": "true" }) }),
|
|
45
|
+
t == null ? void 0 : t.handToolLabel,
|
|
46
|
+
r === i.HAND ? /* @__PURE__ */ o(d, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
47
|
+
] })
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ o(N, {})
|
|
35
51
|
] }) }) : null;
|
|
36
52
|
};
|
|
37
53
|
export {
|
|
38
|
-
|
|
54
|
+
J as SelectionModeTool
|
|
39
55
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useMemo as
|
|
3
|
-
import
|
|
4
|
-
import { G
|
|
5
|
-
import { MenuSeparator as
|
|
1
|
+
import { jsx as r, Fragment as g, jsxs as e } from "react/jsx-runtime";
|
|
2
|
+
import { useMemo as L } from "react";
|
|
3
|
+
import n from "../../../../ui/RPTooltip.js";
|
|
4
|
+
import { G } from "../../../../../index-f563c6f0.js";
|
|
5
|
+
import { MenuSeparator as T } from "../../MenuSeparator.js";
|
|
6
6
|
import { MenuItem as m } from "../../MenuItem.js";
|
|
7
|
-
import { DualPageIcon as
|
|
8
|
-
import { DualPageWithCoverIcon as
|
|
9
|
-
import { SinglePageIcon as
|
|
10
|
-
import { useViewModeContext as
|
|
11
|
-
import { ScrollMode as
|
|
7
|
+
import { DualPageIcon as b } from "../../../../icons/DualPageIcon.js";
|
|
8
|
+
import { DualPageWithCoverIcon as v } from "../../../../icons/DualPageWithCoverIcon.js";
|
|
9
|
+
import { SinglePageIcon as A } from "../../../../icons/SinglePageIcon.js";
|
|
10
|
+
import { useViewModeContext as D } from "../../../../../contexts/ViewModeContext.js";
|
|
11
|
+
import { ScrollMode as E, ViewMode as o } from "../../../../../utils/types.js";
|
|
12
12
|
import { CheckIcon as l } from "../../../../icons/CheckIcon.js";
|
|
13
|
-
import { useScrollModeContext as
|
|
14
|
-
import { useLocalizationContext as
|
|
13
|
+
import { useScrollModeContext as S } from "../../../../../contexts/ScrollModeContext.js";
|
|
14
|
+
import { useLocalizationContext as _ } from "../../../../../contexts/LocalizationContext.js";
|
|
15
15
|
import "../../../../../index-35c7f4a2.js";
|
|
16
16
|
import "react-dom";
|
|
17
17
|
import "../../../../../floating-ui.react-dom-6b2fe0df.js";
|
|
@@ -22,24 +22,41 @@ import "../../../../../contexts/InitialStateContext.js";
|
|
|
22
22
|
import "../../../../../th_TH-d1686d95.js";
|
|
23
23
|
import "../../../../../utils/hooks/useLocalization.js";
|
|
24
24
|
const M = (h) => {
|
|
25
|
-
const { icons: P, isToolVisible: f = !0 } = h, { singlePageIcon:
|
|
26
|
-
return f ? /* @__PURE__ */
|
|
27
|
-
/* @__PURE__ */
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
const { icons: P, isToolVisible: f = !0 } = h, { singlePageIcon: a, dualPageIcon: d, dualPageWithCoverIcon: p } = P ?? {}, { viewMode: t, setDualPage: C, setDualPageWithCover: I, setSinglePage: N } = D(), { scrollMode: u } = S(), { localeMessages: i } = _(), c = L(() => [E.HORIZONTAL_SCROLLING].includes(u), [u]);
|
|
26
|
+
return f ? /* @__PURE__ */ r(g, { children: /* @__PURE__ */ e(G, { children: [
|
|
27
|
+
/* @__PURE__ */ r(
|
|
28
|
+
m,
|
|
29
|
+
{
|
|
30
|
+
onClick: N,
|
|
31
|
+
"aria-label": i == null ? void 0 : i.singlePageTooltip,
|
|
32
|
+
"aria-checked": t === o.SINGLE_PAGE,
|
|
33
|
+
children: /* @__PURE__ */ e(n, { className: "rp-menu-item", content: i == null ? void 0 : i.singlePageTooltip, children: [
|
|
34
|
+
/* @__PURE__ */ r("div", { className: "rp-menu-item-left", children: a || /* @__PURE__ */ r(A, { "aria-hidden": "true" }) }),
|
|
35
|
+
i == null ? void 0 : i.singlePageLabel,
|
|
36
|
+
t === o.SINGLE_PAGE ? /* @__PURE__ */ r(l, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
37
|
+
] })
|
|
38
|
+
}
|
|
39
|
+
),
|
|
40
|
+
/* @__PURE__ */ r(
|
|
41
|
+
m,
|
|
42
|
+
{
|
|
43
|
+
disabled: c,
|
|
44
|
+
onClick: C,
|
|
45
|
+
"aria-label": i == null ? void 0 : i.dualPageTooltip,
|
|
46
|
+
"aria-checked": t === o.DUAL_PAGE,
|
|
47
|
+
children: /* @__PURE__ */ e(n, { className: "rp-menu-item", content: i == null ? void 0 : i.dualPageTooltip, children: [
|
|
48
|
+
/* @__PURE__ */ r("div", { className: "rp-menu-item-left", children: d || /* @__PURE__ */ r(b, { "aria-hidden": "true" }) }),
|
|
49
|
+
i == null ? void 0 : i.dualPageLabel,
|
|
50
|
+
t === o.DUAL_PAGE ? /* @__PURE__ */ r(l, { className: "rp-menu-item-right", "aria-hidden": "true" }) : null
|
|
51
|
+
] })
|
|
52
|
+
}
|
|
53
|
+
),
|
|
54
|
+
/* @__PURE__ */ r(m, { disabled: c, onClick: I, children: /* @__PURE__ */ e(n, { className: "rp-menu-item", content: i == null ? void 0 : i.dualPageWithCoverTooltip, children: [
|
|
55
|
+
/* @__PURE__ */ r("div", { className: "rp-menu-item-left", children: p || /* @__PURE__ */ r(v, {}) }),
|
|
56
|
+
i == null ? void 0 : i.dualPageWithCoverLabel,
|
|
57
|
+
t === o.DUAL_PAGE_WITH_COVER ? /* @__PURE__ */ r(l, { className: "rp-menu-item-right" }) : null
|
|
31
58
|
] }) }),
|
|
32
|
-
/* @__PURE__ */
|
|
33
|
-
/* @__PURE__ */ i("div", { className: "rp-menu-item-left", children: c || /* @__PURE__ */ i(T, {}) }),
|
|
34
|
-
o == null ? void 0 : o.dualPageLabel,
|
|
35
|
-
t === n.DUAL_PAGE ? /* @__PURE__ */ i(l, { className: "rp-menu-item-right" }) : null
|
|
36
|
-
] }) }),
|
|
37
|
-
/* @__PURE__ */ i(m, { disabled: d, onClick: C, children: /* @__PURE__ */ r(e, { className: "rp-menu-item", content: o == null ? void 0 : o.dualPageWithCoverTooltip, children: [
|
|
38
|
-
/* @__PURE__ */ i("div", { className: "rp-menu-item-left", children: u || /* @__PURE__ */ i(b, {}) }),
|
|
39
|
-
o == null ? void 0 : o.dualPageWithCoverLabel,
|
|
40
|
-
t === n.DUAL_PAGE_WITH_COVER ? /* @__PURE__ */ i(l, { className: "rp-menu-item-right" }) : null
|
|
41
|
-
] }) }),
|
|
42
|
-
/* @__PURE__ */ i(v, {})
|
|
59
|
+
/* @__PURE__ */ r(T, {})
|
|
43
60
|
] }) }) : null;
|
|
44
61
|
};
|
|
45
62
|
export {
|
|
@@ -2,7 +2,7 @@ import "react/jsx-runtime";
|
|
|
2
2
|
import "react";
|
|
3
3
|
import "../../contexts/RPDocumentContext.js";
|
|
4
4
|
import "../../contexts/DocumentPasswordContext.js";
|
|
5
|
-
import { I as
|
|
5
|
+
import { I as Er } from "../../ToolbarLayout.module-60ee3cc4.js";
|
|
6
6
|
import "../../contexts/DarkModeContext.js";
|
|
7
7
|
import "../../utils/types.js";
|
|
8
8
|
import "../../contexts/RotationContext.js";
|
|
@@ -42,6 +42,7 @@ import "../layout/sidebar/RPSplitter.js";
|
|
|
42
42
|
import "../layout/WrapperLayout.js";
|
|
43
43
|
import "../RPDropFileZone.js";
|
|
44
44
|
import "../../LayoutWrapper-3f4d0a19.js";
|
|
45
|
+
import "../layout/SkipLink.js";
|
|
45
46
|
import "../ui/Button.js";
|
|
46
47
|
import "../../SearchCloseButton-08d57275.js";
|
|
47
48
|
import "../ui/Input.js";
|
|
@@ -136,5 +137,5 @@ import "../icons/LightPdfIcon.js";
|
|
|
136
137
|
import "../icons/DarkPdfIcon.js";
|
|
137
138
|
import "../../utils/sanitizeExternalUrl.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
+
Er as AnnotationLayer
|
|
140
141
|
};
|
|
@@ -2,7 +2,7 @@ import "react/jsx-runtime";
|
|
|
2
2
|
import "react";
|
|
3
3
|
import "../../contexts/RPDocumentContext.js";
|
|
4
4
|
import "../../contexts/DocumentPasswordContext.js";
|
|
5
|
-
import { G as
|
|
5
|
+
import { G as Eo } from "../../ToolbarLayout.module-60ee3cc4.js";
|
|
6
6
|
import "../../contexts/DarkModeContext.js";
|
|
7
7
|
import "../../contexts/RotationContext.js";
|
|
8
8
|
import "../../contexts/LayerContext.js";
|
|
@@ -41,6 +41,7 @@ import "../layout/sidebar/RPSplitter.js";
|
|
|
41
41
|
import "../layout/WrapperLayout.js";
|
|
42
42
|
import "../RPDropFileZone.js";
|
|
43
43
|
import "../../LayoutWrapper-3f4d0a19.js";
|
|
44
|
+
import "../layout/SkipLink.js";
|
|
44
45
|
import "../ui/Button.js";
|
|
45
46
|
import "../../SearchCloseButton-08d57275.js";
|
|
46
47
|
import "../ui/Input.js";
|
|
@@ -136,5 +137,5 @@ import "../../utils/hooks/useHighlight.js";
|
|
|
136
137
|
import "../icons/LightPdfIcon.js";
|
|
137
138
|
import "../icons/DarkPdfIcon.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
+
Eo as CanvasLayer
|
|
140
141
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { N as
|
|
3
|
+
import { N as Er } from "../../ToolbarLayout.module-60ee3cc4.js";
|
|
4
4
|
import "../icons/ChevronUpIcon.js";
|
|
5
5
|
import "../ui/Button.js";
|
|
6
6
|
import "../../clsx-0c6e471a.js";
|
|
@@ -73,6 +73,7 @@ import "../RPDropFileZone.js";
|
|
|
73
73
|
import "../icons/LightPdfIcon.js";
|
|
74
74
|
import "../icons/DarkPdfIcon.js";
|
|
75
75
|
import "../../LayoutWrapper-3f4d0a19.js";
|
|
76
|
+
import "../layout/SkipLink.js";
|
|
76
77
|
import "../../SearchCloseButton-08d57275.js";
|
|
77
78
|
import "../ui/RPTooltip.js";
|
|
78
79
|
import "../../index-35c7f4a2.js";
|
|
@@ -136,5 +137,5 @@ import "../../utils/zoom.js";
|
|
|
136
137
|
import "../icons/SearchIcon.js";
|
|
137
138
|
import "../icons/ClearIcon.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
+
Er as DualPage
|
|
140
141
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { O as
|
|
3
|
+
import { O as Br } from "../../ToolbarLayout.module-60ee3cc4.js";
|
|
4
4
|
import "../icons/ChevronUpIcon.js";
|
|
5
5
|
import "../ui/Button.js";
|
|
6
6
|
import "../../clsx-0c6e471a.js";
|
|
@@ -73,6 +73,7 @@ import "../RPDropFileZone.js";
|
|
|
73
73
|
import "../icons/LightPdfIcon.js";
|
|
74
74
|
import "../icons/DarkPdfIcon.js";
|
|
75
75
|
import "../../LayoutWrapper-3f4d0a19.js";
|
|
76
|
+
import "../layout/SkipLink.js";
|
|
76
77
|
import "../../SearchCloseButton-08d57275.js";
|
|
77
78
|
import "../ui/RPTooltip.js";
|
|
78
79
|
import "../../index-35c7f4a2.js";
|
|
@@ -136,5 +137,5 @@ import "../../utils/zoom.js";
|
|
|
136
137
|
import "../icons/SearchIcon.js";
|
|
137
138
|
import "../icons/ClearIcon.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
+
Br as DualPageWithCover
|
|
140
141
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { K as
|
|
3
|
+
import { K as Dr } from "../../ToolbarLayout.module-60ee3cc4.js";
|
|
4
4
|
import "../../contexts/RPDocumentContext.js";
|
|
5
5
|
import "../../contexts/DocumentPasswordContext.js";
|
|
6
6
|
import "../../contexts/DarkModeContext.js";
|
|
@@ -41,6 +41,7 @@ import "../layout/sidebar/RPSplitter.js";
|
|
|
41
41
|
import "../layout/WrapperLayout.js";
|
|
42
42
|
import "../RPDropFileZone.js";
|
|
43
43
|
import "../../LayoutWrapper-3f4d0a19.js";
|
|
44
|
+
import "../layout/SkipLink.js";
|
|
44
45
|
import "../ui/Button.js";
|
|
45
46
|
import "../../SearchCloseButton-08d57275.js";
|
|
46
47
|
import "../ui/Input.js";
|
|
@@ -136,5 +137,5 @@ import "../../utils/getElementPositionInPage.js";
|
|
|
136
137
|
import "../icons/LightPdfIcon.js";
|
|
137
138
|
import "../icons/DarkPdfIcon.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
+
Dr as RPPage
|
|
140
141
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { Q as
|
|
3
|
+
import { Q as Dr } from "../../ToolbarLayout.module-60ee3cc4.js";
|
|
4
4
|
import "../icons/ChevronUpIcon.js";
|
|
5
5
|
import "../ui/Button.js";
|
|
6
6
|
import "../../clsx-0c6e471a.js";
|
|
@@ -73,6 +73,7 @@ import "../RPDropFileZone.js";
|
|
|
73
73
|
import "../icons/LightPdfIcon.js";
|
|
74
74
|
import "../icons/DarkPdfIcon.js";
|
|
75
75
|
import "../../LayoutWrapper-3f4d0a19.js";
|
|
76
|
+
import "../layout/SkipLink.js";
|
|
76
77
|
import "../../SearchCloseButton-08d57275.js";
|
|
77
78
|
import "../ui/RPTooltip.js";
|
|
78
79
|
import "../../index-35c7f4a2.js";
|
|
@@ -136,5 +137,5 @@ import "../../utils/zoom.js";
|
|
|
136
137
|
import "../icons/SearchIcon.js";
|
|
137
138
|
import "../icons/ClearIcon.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
+
Dr as SinglePage
|
|
140
141
|
};
|