@progress/kendo-react-pdf-viewer 9.0.0-develop.1 → 9.0.0-develop.10
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/PDFViewer.mjs +174 -124
- package/README.md +26 -25
- package/package-metadata.mjs +1 -1
- package/package.json +10 -10
package/PDFViewer.mjs
CHANGED
|
@@ -71,42 +71,57 @@ const At = (a, E) => a.priority > E.priority ? -1 : a.priority < E.priority ? 1
|
|
|
71
71
|
minZoom: T = y.minZoom,
|
|
72
72
|
maxZoom: M = y.maxZoom,
|
|
73
73
|
zoomRate: S = y.zoomRate
|
|
74
|
-
} = a, s = dt(), c = e.useRef(null), [pe, x] = e.useState(N), g = O !== void 0 ? O : pe, C = B.slice().sort(At).find((o) => o.value === g) || {
|
|
75
|
-
|
|
74
|
+
} = a, s = dt(), c = e.useRef(null), [pe, x] = e.useState(N), g = O !== void 0 ? O : pe, C = B.slice().sort(At).find((o) => o.value === g) || {
|
|
75
|
+
text: g * 100 + "%",
|
|
76
|
+
value: g,
|
|
77
|
+
id: g,
|
|
78
|
+
locationString: ""
|
|
79
|
+
};
|
|
80
|
+
C.locationString && (C.text = s.toLanguageString(
|
|
81
|
+
C.locationString,
|
|
82
|
+
i[C.locationString]
|
|
83
|
+
));
|
|
76
84
|
const [u, P] = e.useState(!1), [ye, v] = e.useState(!0), [w, A] = e.useState(0), [Z, V] = e.useState(!0), [Ce, W] = e.useState(!1), [b, R] = e.useState(0), [f, k] = e.useState(0), [p, K] = e.useState(!1), [F, U] = e.useState(""), t = e.useMemo(() => ({}), []);
|
|
77
85
|
t.currentZoom = g, t.props = a;
|
|
78
86
|
const j = e.useCallback((o) => {
|
|
79
87
|
c.current && c.current.style.setProperty("--scale-factor", String(o));
|
|
80
88
|
}, []), h = e.useRef(null), L = e.useRef(null);
|
|
81
|
-
e.useImperativeHandle(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
89
|
+
e.useImperativeHandle(
|
|
90
|
+
h,
|
|
91
|
+
() => ({
|
|
92
|
+
get element() {
|
|
93
|
+
return L.current;
|
|
94
|
+
},
|
|
95
|
+
props: a,
|
|
96
|
+
get pages() {
|
|
97
|
+
return t.pages;
|
|
98
|
+
},
|
|
99
|
+
get document() {
|
|
100
|
+
return t.document;
|
|
101
|
+
}
|
|
102
|
+
}),
|
|
103
|
+
[]
|
|
104
|
+
), e.useImperativeHandle(E, () => h.current);
|
|
93
105
|
const Ee = e.useCallback(() => {
|
|
94
106
|
if (t.props.onLoad) {
|
|
95
107
|
const o = { target: h.current };
|
|
96
108
|
t.props.onLoad.call(void 0, o);
|
|
97
109
|
}
|
|
98
|
-
}, []), q = e.useCallback(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
+
}, []), q = e.useCallback(
|
|
111
|
+
(o, n, r) => {
|
|
112
|
+
if (a.onDownload) {
|
|
113
|
+
const m = {
|
|
114
|
+
target: h.current,
|
|
115
|
+
blob: o,
|
|
116
|
+
fileName: n,
|
|
117
|
+
saveOptions: r
|
|
118
|
+
};
|
|
119
|
+
return a.onDownload.call(void 0, m) === !1;
|
|
120
|
+
}
|
|
121
|
+
return !1;
|
|
122
|
+
},
|
|
123
|
+
[a.onDownload]
|
|
124
|
+
), Se = e.useCallback(() => {
|
|
110
125
|
var o;
|
|
111
126
|
t.scroller && t.scroller.destroy(), t.scroller = new wt((o = c.current) == null ? void 0 : o.parentNode, {
|
|
112
127
|
filter: ".k-page",
|
|
@@ -123,15 +138,18 @@ const At = (a, E) => a.priority > E.priority ? -1 : a.priority < E.priority ? 1
|
|
|
123
138
|
}, []);
|
|
124
139
|
t.done = e.useCallback(({ pdfPages: o, pdfDoc: n, zoom: r }) => {
|
|
125
140
|
t.document = n, t.pages = o, t.zoom = r, Se(), v(!1), P(!0), Ee(), c.current && Y(c.current, 0);
|
|
126
|
-
}, []), t.error = e.useCallback(
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
141
|
+
}, []), t.error = e.useCallback(
|
|
142
|
+
(o) => {
|
|
143
|
+
if (t.document = null, t.pages = [], v(!1), P(!1), a.onError) {
|
|
144
|
+
const n = {
|
|
145
|
+
error: typeof o == "string" ? { message: o } : o,
|
|
146
|
+
target: h.current
|
|
147
|
+
};
|
|
148
|
+
a.onError.call(void 0, n);
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
[a.onError]
|
|
152
|
+
), e.useEffect(() => {
|
|
135
153
|
c.current && (a.url || a.data || a.arrayBuffer ? (v(!0), z(c.current), ee({
|
|
136
154
|
url: a.url,
|
|
137
155
|
data: a.data,
|
|
@@ -160,10 +178,13 @@ const At = (a, E) => a.priority > E.priority ? -1 : a.priority < E.priority ? 1
|
|
|
160
178
|
}, []);
|
|
161
179
|
const we = e.useCallback(() => {
|
|
162
180
|
W(!0), xe(c.current);
|
|
163
|
-
}, []), Ze = e.useCallback(
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
181
|
+
}, []), Ze = e.useCallback(
|
|
182
|
+
(o) => {
|
|
183
|
+
const n = o.value, r = t.search.search({ text: n, matchCase: p });
|
|
184
|
+
k(r.length ? 1 : 0), R(r.length), U(n);
|
|
185
|
+
},
|
|
186
|
+
[p]
|
|
187
|
+
), Le = e.useCallback(() => {
|
|
167
188
|
const o = t.search.search({ text: F, matchCase: !p });
|
|
168
189
|
k(o.length ? 1 : 0), R(o.length), K(!p);
|
|
169
190
|
}, [p, F]), ze = e.useCallback(() => {
|
|
@@ -172,101 +193,129 @@ const At = (a, E) => a.priority > E.priority ? -1 : a.priority < E.priority ? 1
|
|
|
172
193
|
zt(t), k(f - 1 < 1 ? b : f - 1);
|
|
173
194
|
}, [f, b]), $ = e.useCallback(() => {
|
|
174
195
|
t.search.destroy(), k(0), R(0), K(!1), U(""), W(!1);
|
|
175
|
-
}, []), Ne = e.useCallback(
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
};
|
|
186
|
-
a.onPageChange && a.onPageChange.call(void 0, r);
|
|
187
|
-
}
|
|
188
|
-
A(o.skip);
|
|
189
|
-
}, [w, a.onPageChange]), Me = e.useCallback((o) => {
|
|
190
|
-
if (L.current) {
|
|
191
|
-
const n = It(L.current);
|
|
192
|
-
if (n !== w) {
|
|
193
|
-
A(n);
|
|
196
|
+
}, []), Ne = e.useCallback(
|
|
197
|
+
(o) => {
|
|
198
|
+
o.key === "Enter" ? (o.preventDefault(), te(t), k(f + 1 > b ? 1 : f + 1)) : o.key === "Escape" && $();
|
|
199
|
+
},
|
|
200
|
+
[f, b]
|
|
201
|
+
), Te = e.useCallback(
|
|
202
|
+
(o) => {
|
|
203
|
+
if (c.current) {
|
|
204
|
+
const n = o.skip;
|
|
205
|
+
Y(c.current, n);
|
|
194
206
|
const r = {
|
|
195
207
|
page: n + 1,
|
|
196
208
|
target: h.current,
|
|
197
|
-
syntheticEvent: o
|
|
209
|
+
syntheticEvent: o.syntheticEvent
|
|
198
210
|
};
|
|
199
211
|
a.onPageChange && a.onPageChange.call(void 0, r);
|
|
200
212
|
}
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
213
|
+
A(o.skip);
|
|
214
|
+
},
|
|
215
|
+
[w, a.onPageChange]
|
|
216
|
+
), Me = e.useCallback(
|
|
217
|
+
(o) => {
|
|
218
|
+
if (L.current) {
|
|
219
|
+
const n = It(L.current);
|
|
220
|
+
if (n !== w) {
|
|
221
|
+
A(n);
|
|
222
|
+
const r = {
|
|
223
|
+
page: n + 1,
|
|
224
|
+
target: h.current,
|
|
225
|
+
syntheticEvent: o
|
|
226
|
+
};
|
|
227
|
+
a.onPageChange && a.onPageChange.call(void 0, r);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
[w, a.onPageChange]
|
|
232
|
+
), Pe = e.useCallback(
|
|
233
|
+
(o) => {
|
|
234
|
+
const n = Math.min(t.currentZoom + S, M);
|
|
235
|
+
if (n !== t.currentZoom && t.document && (x(n), a.onZoom)) {
|
|
236
|
+
const r = {
|
|
237
|
+
zoom: n,
|
|
238
|
+
target: h.current,
|
|
239
|
+
syntheticEvent: o
|
|
240
|
+
};
|
|
241
|
+
a.onZoom.call(void 0, r);
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
[S, M, a.onZoom]
|
|
245
|
+
), Re = e.useCallback(
|
|
246
|
+
(o) => {
|
|
247
|
+
const n = Math.max(t.currentZoom - S, T);
|
|
248
|
+
if (n !== t.currentZoom && t.document && (x(n), a.onZoom)) {
|
|
249
|
+
const r = {
|
|
250
|
+
zoom: n,
|
|
251
|
+
target: h.current,
|
|
252
|
+
syntheticEvent: o
|
|
253
|
+
};
|
|
254
|
+
a.onZoom.call(void 0, r);
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
[S, T, a.onZoom]
|
|
258
|
+
), Fe = e.useCallback(
|
|
259
|
+
(o) => {
|
|
260
|
+
const n = o.value === null ? { text: "100%", value: 1, id: 100 } : { ...o.value };
|
|
261
|
+
if (n.value === void 0) {
|
|
262
|
+
const m = parseFloat(n.text);
|
|
263
|
+
typeof m == "number" && !Number.isNaN(m) ? n.value = m / 100 : n.value = 1;
|
|
264
|
+
}
|
|
265
|
+
let r = n ? Nt(n.value, n.type, t.currentZoom, c.current) : 1;
|
|
266
|
+
if (r = Math.round(r * 100) / 100, t.currentZoom !== r && t.document && (x(r), a.onZoom)) {
|
|
267
|
+
const m = {
|
|
268
|
+
zoom: r,
|
|
269
|
+
target: h.current,
|
|
270
|
+
syntheticEvent: o.syntheticEvent
|
|
271
|
+
};
|
|
272
|
+
a.onZoom.call(void 0, m);
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
[a.onZoom]
|
|
276
|
+
), De = e.useCallback(() => {
|
|
238
277
|
t.scroller.disablePanEventsTracking(), V(!0);
|
|
239
278
|
}, []), Oe = e.useCallback(() => {
|
|
240
279
|
t.scroller.enablePanEventsTracking(), V(!1);
|
|
241
280
|
}, []), Be = e.useCallback(() => {
|
|
242
|
-
Tt(
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
281
|
+
Tt(
|
|
282
|
+
{
|
|
283
|
+
pdf: t.document,
|
|
284
|
+
error: t.error
|
|
285
|
+
},
|
|
286
|
+
a.saveFileName,
|
|
287
|
+
a.saveOptions,
|
|
288
|
+
q
|
|
289
|
+
);
|
|
246
290
|
}, [a.url, a.data, a.arrayBuffer, a.saveFileName, a.saveOptions, q]), Ae = e.useCallback(() => {
|
|
247
291
|
v(!0);
|
|
248
292
|
const o = (r) => {
|
|
249
|
-
t.error(
|
|
293
|
+
t.error(
|
|
294
|
+
typeof (r ? r.message || r : null) == "string" ? r.message || r : s.toLanguageString(fe, i[fe])
|
|
295
|
+
);
|
|
250
296
|
}, n = () => {
|
|
251
297
|
v(!1);
|
|
252
298
|
};
|
|
253
299
|
Mt(t.pages, n, o);
|
|
254
|
-
}, []), Ve = e.useCallback(
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
300
|
+
}, []), Ve = e.useCallback(
|
|
301
|
+
(o) => {
|
|
302
|
+
const n = o.newState;
|
|
303
|
+
n[0] && n[0].getRawFile && n[0].getRawFile().arrayBuffer().then((m) => {
|
|
304
|
+
if (c.current) {
|
|
305
|
+
v(!0), z(c.current);
|
|
306
|
+
const D = t.props.zoom === void 0 ? N : t.props.zoom;
|
|
307
|
+
ee({
|
|
308
|
+
arrayBuffer: m,
|
|
309
|
+
dom: c.current,
|
|
310
|
+
zoom: D,
|
|
311
|
+
done: t.done,
|
|
312
|
+
error: t.error
|
|
313
|
+
}), x(D);
|
|
314
|
+
}
|
|
315
|
+
});
|
|
316
|
+
},
|
|
317
|
+
[N]
|
|
318
|
+
), We = e.useCallback((o) => {
|
|
270
319
|
const n = o.target;
|
|
271
320
|
if (n instanceof Element && n.parentNode) {
|
|
272
321
|
const r = n.closest(".k-toolbar"), m = r && r.querySelector(".k-upload input");
|
|
@@ -301,12 +350,10 @@ const At = (a, E) => a.priority > E.priority ? -1 : a.priority < E.priority ? 1
|
|
|
301
350
|
{
|
|
302
351
|
className: "k-toolbar-combobox",
|
|
303
352
|
disabled: !u,
|
|
304
|
-
data: B.map(
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
})
|
|
309
|
-
),
|
|
353
|
+
data: B.map((o) => ({
|
|
354
|
+
...o,
|
|
355
|
+
text: o.locationString ? s.toLanguageString(o.locationString, i[o.locationString]) : o.text
|
|
356
|
+
})),
|
|
310
357
|
dataItemKey: "id",
|
|
311
358
|
textField: "text",
|
|
312
359
|
value: u ? C : null,
|
|
@@ -422,7 +469,10 @@ const At = (a, E) => a.priority > E.priority ? -1 : a.priority < E.priority ? 1
|
|
|
422
469
|
open: _e,
|
|
423
470
|
download: Ge,
|
|
424
471
|
print: Je
|
|
425
|
-
}, Xe = (a.tools || y.tools).map((o) => ({
|
|
472
|
+
}, Xe = (a.tools || y.tools).map((o) => ({
|
|
473
|
+
...Qe[o],
|
|
474
|
+
key: "toobar-tool-" + o + Bt()
|
|
475
|
+
})), G = /* @__PURE__ */ e.createElement(Ye, { buttons: Ot }, ...Xe), J = /* @__PURE__ */ e.createElement(
|
|
426
476
|
"div",
|
|
427
477
|
{
|
|
428
478
|
className: ut("k-canvas k-pdf-viewer-canvas k-pos-relative k-overflow-auto", {
|
package/README.md
CHANGED
|
@@ -5,10 +5,11 @@
|
|
|
5
5
|
# KendoReact PDF Viewer Library for React
|
|
6
6
|
|
|
7
7
|
> **Important**
|
|
8
|
-
>
|
|
9
|
-
>
|
|
10
|
-
>
|
|
11
|
-
>
|
|
8
|
+
>
|
|
9
|
+
> - This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)—a commercial UI library.
|
|
10
|
+
> - You will need to install a license key when adding the package to your project. For more information, please refer to the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer).
|
|
11
|
+
> - To receive a license key, you need to either [purchase a license](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer) or register for a [free trial](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer). Doing so indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer).
|
|
12
|
+
> - The 30-day free trial gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
|
|
12
13
|
>
|
|
13
14
|
> [Start using KendoReact](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer) and speed up your development process!
|
|
14
15
|
|
|
@@ -18,37 +19,37 @@ The [React PDF Viewer library](https://www.telerik.com/kendo-react-ui/pdfviewer)
|
|
|
18
19
|
|
|
19
20
|
Among the features which the KendoReact PDF Viewer component delivers are:
|
|
20
21
|
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
22
|
+
- Open – opens a PDF file
|
|
23
|
+
- Page – goes to previous/next page or jump to first/last page
|
|
24
|
+
- Download – downloads the currently viewed PDF
|
|
25
|
+
- Enable Selection – selects text within the PDF
|
|
26
|
+
- Print – prints PDF file
|
|
27
|
+
- Open Search – enables search function within the PDF contents
|
|
28
|
+
- Zoom – allows zooming in/out within the document
|
|
28
29
|
|
|
29
30
|
## Support Options
|
|
30
31
|
|
|
31
32
|
For any issues you might encounter while working with the KendoReact PDF Viewer, use any of the available support channels:
|
|
32
33
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
- Industry-leading technical support—KendoReact paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use [the dedicated KendoReact support system](https://www.telerik.com/account/support-tickets?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-listview).
|
|
35
|
+
- Product forums—The [KendoReact forums](https://www.telerik.com/forums/kendo-ui-react?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-listview) are part of the free support you can get from the community and from the KendoReact team.
|
|
36
|
+
- Feedback portal—The [KendoReact feedback portal](https://feedback.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer) is where you can request and vote for new features to be added.
|
|
36
37
|
|
|
37
38
|
## Resources
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
40
|
+
- [Getting Started with KendoReact](https://www.telerik.com/kendo-react-ui/components/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
41
|
+
- [Get Started with the KendoReact PDF Viewer](https://www.telerik.com/kendo-react-ui/components/pdfviewer/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
42
|
+
- [API Reference of the KendoReact PDF Viewer](https://www.telerik.com/kendo-react-ui/components/pdfviewer/api/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
43
|
+
- [KendoReact Roadmap](https://www.telerik.com/support/whats-new/kendo-react-ui/roadmap?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
44
|
+
- [Blogs](https://www.telerik.com/blogs/tag/kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
45
|
+
- [Demos, documentation, and component reference](https://www.telerik.com/kendo-react-ui/components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
46
|
+
- [KendoReact pricing and licensing](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
47
|
+
- [Changelog](https://www.telerik.com/kendo-react-ui/components/changelogs/ui-for-react/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-pdfviewer)
|
|
47
48
|
|
|
48
49
|
High-level component overview pages
|
|
49
50
|
|
|
50
|
-
|
|
51
|
+
- [React PDF Viewer Component](https://www.telerik.com/kendo-react-ui/pdfviewer)
|
|
51
52
|
|
|
52
|
-
|
|
53
|
+
_Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved._
|
|
53
54
|
|
|
54
|
-
|
|
55
|
+
_Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries._
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-pdf-viewer",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1730217574,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-pdf-viewer",
|
|
3
|
-
"version": "9.0.0-develop.
|
|
3
|
+
"version": "9.0.0-develop.10",
|
|
4
4
|
"description": "KendoReact PDFViewer package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@progress/kendo-file-saver": "^1.1.1",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
|
-
"@progress/kendo-pdfviewer-common": "0.
|
|
28
|
-
"@progress/kendo-react-buttons": "9.0.0-develop.
|
|
29
|
-
"@progress/kendo-react-common": "9.0.0-develop.
|
|
30
|
-
"@progress/kendo-react-data-tools": "9.0.0-develop.
|
|
31
|
-
"@progress/kendo-react-dropdowns": "9.0.0-develop.
|
|
32
|
-
"@progress/kendo-react-indicators": "9.0.0-develop.
|
|
33
|
-
"@progress/kendo-react-inputs": "9.0.0-develop.
|
|
34
|
-
"@progress/kendo-react-intl": "9.0.0-develop.
|
|
35
|
-
"@progress/kendo-react-upload": "9.0.0-develop.
|
|
27
|
+
"@progress/kendo-pdfviewer-common": "0.3.3",
|
|
28
|
+
"@progress/kendo-react-buttons": "9.0.0-develop.10",
|
|
29
|
+
"@progress/kendo-react-common": "9.0.0-develop.10",
|
|
30
|
+
"@progress/kendo-react-data-tools": "9.0.0-develop.10",
|
|
31
|
+
"@progress/kendo-react-dropdowns": "9.0.0-develop.10",
|
|
32
|
+
"@progress/kendo-react-indicators": "9.0.0-develop.10",
|
|
33
|
+
"@progress/kendo-react-inputs": "9.0.0-develop.10",
|
|
34
|
+
"@progress/kendo-react-intl": "9.0.0-develop.10",
|
|
35
|
+
"@progress/kendo-react-upload": "9.0.0-develop.10",
|
|
36
36
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
37
37
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
38
38
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|