@progress/kendo-angular-pdfviewer 21.4.1-develop.1 → 22.0.0-develop.1

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/esm2022/util.mjs DELETED
@@ -1,83 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export const INITIAL_ZOOM_LEVEL = 1.25;
9
- /**
10
- * @hidden
11
- */
12
- export const MIN_ZOOM_LEVEL = 0.5;
13
- /**
14
- * @hidden
15
- */
16
- export const MAX_ZOOM_LEVEL = 4;
17
- /**
18
- * @hidden
19
- */
20
- export const zoomOptionsData = [{
21
- id: 1,
22
- text: 'Fit to width',
23
- type: 'FitToWidth',
24
- displayValue: 'Fit to width',
25
- value: 1
26
- }, {
27
- id: 2,
28
- text: 'Fit to page',
29
- type: 'FitToPage',
30
- displayValue: 'Fit to page',
31
- value: 1
32
- }, {
33
- id: 3,
34
- text: '50%',
35
- displayValue: '50%',
36
- value: 0.5
37
- }, {
38
- id: 4,
39
- text: '75%',
40
- displayValue: '75%',
41
- value: 0.75
42
- }, {
43
- id: 5,
44
- text: '100%',
45
- displayValue: '100%',
46
- value: 1
47
- }, {
48
- id: 6,
49
- text: '125%',
50
- displayValue: '125%',
51
- value: 1.25
52
- }, {
53
- id: 7,
54
- text: '150%',
55
- displayValue: '150%',
56
- value: 1.5
57
- }, {
58
- id: 8,
59
- text: '200%',
60
- displayValue: '200%',
61
- value: 2
62
- }, {
63
- id: 9,
64
- text: '300%',
65
- displayValue: '300%',
66
- value: 3
67
- }, {
68
- id: 10,
69
- text: '400%',
70
- displayValue: '400%',
71
- value: 4
72
- }];
73
- /**
74
- * @hidden
75
- */
76
- export const zoomToFitOptions = {
77
- 'fitToPage': 'FitToPage',
78
- 'fitToWidth': 'FitToWidth'
79
- };
80
- /**
81
- * @hidden
82
- */
83
- export const fontSizes = [8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72];