@progress/kendo-angular-pdfviewer 13.4.1-develop.4 → 13.5.0-develop.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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pdfviewer.component.mjs +15 -5
- package/esm2020/pdfviewer.module.mjs +5 -2
- package/fesm2015/progress-kendo-angular-pdfviewer.mjs +19 -7
- package/fesm2020/progress-kendo-angular-pdfviewer.mjs +19 -7
- package/package.json +12 -12
- package/pdfviewer.component.d.ts +4 -0
- package/pdfviewer.module.d.ts +2 -1
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-pdfviewer',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.
|
|
12
|
+
publishDate: 1694427053,
|
|
13
|
+
version: '13.5.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
|
15
15
|
};
|
|
@@ -7,7 +7,7 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
7
7
|
import { packageMetadata } from './package-metadata';
|
|
8
8
|
import { INITIAL_ZOOM_LEVEL, zoomOptionsData } from './util';
|
|
9
9
|
import { scrollToPage, Scroller, SearchService, goToNextSearchMatch, goToPreviousSearchMatch, calculateZoomLevel, removeChildren, print, loadPDF, reloadDocument, currentPage } from '@progress/kendo-pdfviewer-common';
|
|
10
|
-
import { hasObservers } from '@progress/kendo-angular-common';
|
|
10
|
+
import { hasObservers, shouldShowValidationUI } from '@progress/kendo-angular-common';
|
|
11
11
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
12
12
|
import { PDFViewerDownloadEvent } from './models/events';
|
|
13
13
|
import { saveAs } from '@progress/kendo-file-saver';
|
|
@@ -18,8 +18,9 @@ import * as i1 from "@progress/kendo-angular-l10n";
|
|
|
18
18
|
import * as i2 from "./loader/loader.component";
|
|
19
19
|
import * as i3 from "./toolbar/toolbar.component";
|
|
20
20
|
import * as i4 from "./toolbar/search.component";
|
|
21
|
-
import * as i5 from "
|
|
22
|
-
import * as i6 from "
|
|
21
|
+
import * as i5 from "@progress/kendo-angular-common";
|
|
22
|
+
import * as i6 from "./localization/localized-messages.directive";
|
|
23
|
+
import * as i7 from "@angular/common";
|
|
23
24
|
let counter = 0;
|
|
24
25
|
/**
|
|
25
26
|
* Represents the [Kendo UI PDFViewer component for Angular]({% slug overview_pdfviewer %}).
|
|
@@ -110,6 +111,10 @@ export class PDFViewerComponent {
|
|
|
110
111
|
this.searchActive = false;
|
|
111
112
|
this.matchCase = false;
|
|
112
113
|
this.currentMatches = [];
|
|
114
|
+
/**
|
|
115
|
+
* @hidden
|
|
116
|
+
*/
|
|
117
|
+
this.showLicenseWatermark = false;
|
|
113
118
|
this.skip = 0;
|
|
114
119
|
this.zoomOptionsData = zoomOptionsData;
|
|
115
120
|
this.zoomLevel = this.zoomOptionsData[5];
|
|
@@ -128,7 +133,8 @@ export class PDFViewerComponent {
|
|
|
128
133
|
});
|
|
129
134
|
}
|
|
130
135
|
};
|
|
131
|
-
validatePackage(packageMetadata);
|
|
136
|
+
const isValid = validatePackage(packageMetadata);
|
|
137
|
+
this.showLicenseWatermark = shouldShowValidationUI(isValid);
|
|
132
138
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
133
139
|
counter++;
|
|
134
140
|
}
|
|
@@ -614,7 +620,9 @@ PDFViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
614
620
|
</div>
|
|
615
621
|
</div>
|
|
616
622
|
</div>
|
|
617
|
-
|
|
623
|
+
|
|
624
|
+
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
625
|
+
`, isInline: true, components: [{ type: i2.LoaderComponent, selector: "[loader]", inputs: ["settings"] }, { type: i3.ToolbarComponent, selector: "[toolbar]", inputs: ["zoomLevel", "calculatedComboBoxValue", "skip", "pageSize", "total", "zoomInDisabled", "zoomOutDisabled", "disabledTools", "zoomLevelChooserValue", "zoomOptionsData", "pagesContainerId", "tools"], outputs: ["fileSelect", "fileSelectStart", "fileSelectError", "download", "selectionEnabled", "panningEnabled", "pageChange", "zoomIn", "zoomOut", "zoomLevelChange", "print", "search"] }, { type: i4.PDFViewerSearchComponent, selector: "[kendoPDFViewerSearch]", inputs: ["matches", "currentMatch"], outputs: ["searchChange", "prevMatch", "nextMatch", "close"] }, { type: i5.WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], directives: [{ type: i6.LocalizedPDFViewerMessagesDirective, selector: "[kendoPDFViewerLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
618
626
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFViewerComponent, decorators: [{
|
|
619
627
|
type: Component,
|
|
620
628
|
args: [{
|
|
@@ -758,6 +766,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
758
766
|
</div>
|
|
759
767
|
</div>
|
|
760
768
|
</div>
|
|
769
|
+
|
|
770
|
+
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
761
771
|
`,
|
|
762
772
|
}]
|
|
763
773
|
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
@@ -19,6 +19,7 @@ import { ToolbarFocusableDirective } from './toolbar/toolbar-focusable.directive
|
|
|
19
19
|
import { ToolbarComboBoxDirective } from './toolbar/toolbar-combobox.directive';
|
|
20
20
|
import { PDFViewerSearchComponent } from './toolbar/search.component';
|
|
21
21
|
import { TextBoxModule } from '@progress/kendo-angular-inputs';
|
|
22
|
+
import { WatermarkModule } from '@progress/kendo-angular-common';
|
|
22
23
|
import * as i0 from "@angular/core";
|
|
23
24
|
const DIRECTIVES = [
|
|
24
25
|
PDFViewerComponent,
|
|
@@ -38,7 +39,8 @@ const IMPORTS = [
|
|
|
38
39
|
ButtonsModule,
|
|
39
40
|
TextBoxModule,
|
|
40
41
|
ComboBoxModule,
|
|
41
|
-
LoaderModule
|
|
42
|
+
LoaderModule,
|
|
43
|
+
WatermarkModule
|
|
42
44
|
];
|
|
43
45
|
/**
|
|
44
46
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -61,7 +63,8 @@ PDFViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
61
63
|
ButtonsModule,
|
|
62
64
|
TextBoxModule,
|
|
63
65
|
ComboBoxModule,
|
|
64
|
-
LoaderModule
|
|
66
|
+
LoaderModule,
|
|
67
|
+
WatermarkModule], exports: [PDFViewerComponent,
|
|
65
68
|
ToolbarComponent,
|
|
66
69
|
LoaderComponent,
|
|
67
70
|
PDFViewerCustomMessagesComponent,
|
|
@@ -8,7 +8,8 @@ import * as i7 from '@angular/common';
|
|
|
8
8
|
import { CommonModule } from '@angular/common';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import { currentPage, removeChildren, scrollToPage, calculateZoomLevel, SearchService, print, goToNextSearchMatch, goToPreviousSearchMatch, loadPDF, Scroller, reloadDocument } from '@progress/kendo-pdfviewer-common';
|
|
11
|
-
import
|
|
11
|
+
import * as i5$1 from '@progress/kendo-angular-common';
|
|
12
|
+
import { PreventableEvent, focusableSelector, Keys, hasObservers, shouldShowValidationUI, WatermarkModule } from '@progress/kendo-angular-common';
|
|
12
13
|
import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
13
14
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
14
15
|
import { saveAs } from '@progress/kendo-file-saver';
|
|
@@ -34,8 +35,8 @@ const packageMetadata = {
|
|
|
34
35
|
name: '@progress/kendo-angular-pdfviewer',
|
|
35
36
|
productName: 'Kendo UI for Angular',
|
|
36
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
37
|
-
publishDate:
|
|
38
|
-
version: '13.
|
|
38
|
+
publishDate: 1694427053,
|
|
39
|
+
version: '13.5.0-develop.2',
|
|
39
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
|
40
41
|
};
|
|
41
42
|
|
|
@@ -1156,6 +1157,10 @@ class PDFViewerComponent {
|
|
|
1156
1157
|
this.searchActive = false;
|
|
1157
1158
|
this.matchCase = false;
|
|
1158
1159
|
this.currentMatches = [];
|
|
1160
|
+
/**
|
|
1161
|
+
* @hidden
|
|
1162
|
+
*/
|
|
1163
|
+
this.showLicenseWatermark = false;
|
|
1159
1164
|
this.skip = 0;
|
|
1160
1165
|
this.zoomOptionsData = zoomOptionsData;
|
|
1161
1166
|
this.zoomLevel = this.zoomOptionsData[5];
|
|
@@ -1174,7 +1179,8 @@ class PDFViewerComponent {
|
|
|
1174
1179
|
});
|
|
1175
1180
|
}
|
|
1176
1181
|
};
|
|
1177
|
-
validatePackage(packageMetadata);
|
|
1182
|
+
const isValid = validatePackage(packageMetadata);
|
|
1183
|
+
this.showLicenseWatermark = shouldShowValidationUI(isValid);
|
|
1178
1184
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
1179
1185
|
counter++;
|
|
1180
1186
|
}
|
|
@@ -1665,7 +1671,9 @@ PDFViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
1665
1671
|
</div>
|
|
1666
1672
|
</div>
|
|
1667
1673
|
</div>
|
|
1668
|
-
|
|
1674
|
+
|
|
1675
|
+
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
1676
|
+
`, isInline: true, components: [{ type: LoaderComponent, selector: "[loader]", inputs: ["settings"] }, { type: ToolbarComponent, selector: "[toolbar]", inputs: ["zoomLevel", "calculatedComboBoxValue", "skip", "pageSize", "total", "zoomInDisabled", "zoomOutDisabled", "disabledTools", "zoomLevelChooserValue", "zoomOptionsData", "pagesContainerId", "tools"], outputs: ["fileSelect", "fileSelectStart", "fileSelectError", "download", "selectionEnabled", "panningEnabled", "pageChange", "zoomIn", "zoomOut", "zoomLevelChange", "print", "search"] }, { type: PDFViewerSearchComponent, selector: "[kendoPDFViewerSearch]", inputs: ["matches", "currentMatch"], outputs: ["searchChange", "prevMatch", "nextMatch", "close"] }, { type: i5$1.WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], directives: [{ type: LocalizedPDFViewerMessagesDirective, selector: "[kendoPDFViewerLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1669
1677
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFViewerComponent, decorators: [{
|
|
1670
1678
|
type: Component,
|
|
1671
1679
|
args: [{
|
|
@@ -1809,6 +1817,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1809
1817
|
</div>
|
|
1810
1818
|
</div>
|
|
1811
1819
|
</div>
|
|
1820
|
+
|
|
1821
|
+
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
1812
1822
|
`,
|
|
1813
1823
|
}]
|
|
1814
1824
|
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1$1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
@@ -1904,7 +1914,8 @@ const IMPORTS = [
|
|
|
1904
1914
|
ButtonsModule,
|
|
1905
1915
|
TextBoxModule,
|
|
1906
1916
|
ComboBoxModule,
|
|
1907
|
-
LoaderModule
|
|
1917
|
+
LoaderModule,
|
|
1918
|
+
WatermarkModule
|
|
1908
1919
|
];
|
|
1909
1920
|
/**
|
|
1910
1921
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -1927,7 +1938,8 @@ PDFViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
1927
1938
|
ButtonsModule,
|
|
1928
1939
|
TextBoxModule,
|
|
1929
1940
|
ComboBoxModule,
|
|
1930
|
-
LoaderModule
|
|
1941
|
+
LoaderModule,
|
|
1942
|
+
WatermarkModule], exports: [PDFViewerComponent,
|
|
1931
1943
|
ToolbarComponent,
|
|
1932
1944
|
LoaderComponent,
|
|
1933
1945
|
PDFViewerCustomMessagesComponent,
|
|
@@ -8,7 +8,8 @@ import * as i7 from '@angular/common';
|
|
|
8
8
|
import { CommonModule } from '@angular/common';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import { currentPage, removeChildren, scrollToPage, calculateZoomLevel, SearchService, print, goToNextSearchMatch, goToPreviousSearchMatch, loadPDF, Scroller, reloadDocument } from '@progress/kendo-pdfviewer-common';
|
|
11
|
-
import
|
|
11
|
+
import * as i5$1 from '@progress/kendo-angular-common';
|
|
12
|
+
import { PreventableEvent, focusableSelector, Keys, hasObservers, shouldShowValidationUI, WatermarkModule } from '@progress/kendo-angular-common';
|
|
12
13
|
import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
13
14
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
14
15
|
import { saveAs } from '@progress/kendo-file-saver';
|
|
@@ -34,8 +35,8 @@ const packageMetadata = {
|
|
|
34
35
|
name: '@progress/kendo-angular-pdfviewer',
|
|
35
36
|
productName: 'Kendo UI for Angular',
|
|
36
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
37
|
-
publishDate:
|
|
38
|
-
version: '13.
|
|
38
|
+
publishDate: 1694427053,
|
|
39
|
+
version: '13.5.0-develop.2',
|
|
39
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
|
40
41
|
};
|
|
41
42
|
|
|
@@ -1156,6 +1157,10 @@ class PDFViewerComponent {
|
|
|
1156
1157
|
this.searchActive = false;
|
|
1157
1158
|
this.matchCase = false;
|
|
1158
1159
|
this.currentMatches = [];
|
|
1160
|
+
/**
|
|
1161
|
+
* @hidden
|
|
1162
|
+
*/
|
|
1163
|
+
this.showLicenseWatermark = false;
|
|
1159
1164
|
this.skip = 0;
|
|
1160
1165
|
this.zoomOptionsData = zoomOptionsData;
|
|
1161
1166
|
this.zoomLevel = this.zoomOptionsData[5];
|
|
@@ -1174,7 +1179,8 @@ class PDFViewerComponent {
|
|
|
1174
1179
|
});
|
|
1175
1180
|
}
|
|
1176
1181
|
};
|
|
1177
|
-
validatePackage(packageMetadata);
|
|
1182
|
+
const isValid = validatePackage(packageMetadata);
|
|
1183
|
+
this.showLicenseWatermark = shouldShowValidationUI(isValid);
|
|
1178
1184
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
1179
1185
|
counter++;
|
|
1180
1186
|
}
|
|
@@ -1660,7 +1666,9 @@ PDFViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
1660
1666
|
</div>
|
|
1661
1667
|
</div>
|
|
1662
1668
|
</div>
|
|
1663
|
-
|
|
1669
|
+
|
|
1670
|
+
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
1671
|
+
`, isInline: true, components: [{ type: LoaderComponent, selector: "[loader]", inputs: ["settings"] }, { type: ToolbarComponent, selector: "[toolbar]", inputs: ["zoomLevel", "calculatedComboBoxValue", "skip", "pageSize", "total", "zoomInDisabled", "zoomOutDisabled", "disabledTools", "zoomLevelChooserValue", "zoomOptionsData", "pagesContainerId", "tools"], outputs: ["fileSelect", "fileSelectStart", "fileSelectError", "download", "selectionEnabled", "panningEnabled", "pageChange", "zoomIn", "zoomOut", "zoomLevelChange", "print", "search"] }, { type: PDFViewerSearchComponent, selector: "[kendoPDFViewerSearch]", inputs: ["matches", "currentMatch"], outputs: ["searchChange", "prevMatch", "nextMatch", "close"] }, { type: i5$1.WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], directives: [{ type: LocalizedPDFViewerMessagesDirective, selector: "[kendoPDFViewerLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1664
1672
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFViewerComponent, decorators: [{
|
|
1665
1673
|
type: Component,
|
|
1666
1674
|
args: [{
|
|
@@ -1804,6 +1812,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1804
1812
|
</div>
|
|
1805
1813
|
</div>
|
|
1806
1814
|
</div>
|
|
1815
|
+
|
|
1816
|
+
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
1807
1817
|
`,
|
|
1808
1818
|
}]
|
|
1809
1819
|
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1$1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
@@ -1899,7 +1909,8 @@ const IMPORTS = [
|
|
|
1899
1909
|
ButtonsModule,
|
|
1900
1910
|
TextBoxModule,
|
|
1901
1911
|
ComboBoxModule,
|
|
1902
|
-
LoaderModule
|
|
1912
|
+
LoaderModule,
|
|
1913
|
+
WatermarkModule
|
|
1903
1914
|
];
|
|
1904
1915
|
/**
|
|
1905
1916
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -1922,7 +1933,8 @@ PDFViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
1922
1933
|
ButtonsModule,
|
|
1923
1934
|
TextBoxModule,
|
|
1924
1935
|
ComboBoxModule,
|
|
1925
|
-
LoaderModule
|
|
1936
|
+
LoaderModule,
|
|
1937
|
+
WatermarkModule], exports: [PDFViewerComponent,
|
|
1926
1938
|
ToolbarComponent,
|
|
1927
1939
|
LoaderComponent,
|
|
1928
1940
|
PDFViewerCustomMessagesComponent,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-pdfviewer",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.5.0-develop.2",
|
|
4
4
|
"description": "Kendo UI PDFViewer for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
"@angular/core": "13 - 16",
|
|
24
24
|
"@angular/platform-browser": "13 - 16",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-buttons": "13.
|
|
27
|
-
"@progress/kendo-angular-common": "13.
|
|
28
|
-
"@progress/kendo-angular-dropdowns": "13.
|
|
29
|
-
"@progress/kendo-angular-inputs": "13.
|
|
30
|
-
"@progress/kendo-angular-intl": "13.
|
|
31
|
-
"@progress/kendo-angular-l10n": "13.
|
|
32
|
-
"@progress/kendo-angular-icons": "13.
|
|
33
|
-
"@progress/kendo-angular-indicators": "13.
|
|
34
|
-
"@progress/kendo-angular-pager": "13.
|
|
35
|
-
"@progress/kendo-angular-popup": "13.
|
|
26
|
+
"@progress/kendo-angular-buttons": "13.5.0-develop.2",
|
|
27
|
+
"@progress/kendo-angular-common": "13.5.0-develop.2",
|
|
28
|
+
"@progress/kendo-angular-dropdowns": "13.5.0-develop.2",
|
|
29
|
+
"@progress/kendo-angular-inputs": "13.5.0-develop.2",
|
|
30
|
+
"@progress/kendo-angular-intl": "13.5.0-develop.2",
|
|
31
|
+
"@progress/kendo-angular-l10n": "13.5.0-develop.2",
|
|
32
|
+
"@progress/kendo-angular-icons": "13.5.0-develop.2",
|
|
33
|
+
"@progress/kendo-angular-indicators": "13.5.0-develop.2",
|
|
34
|
+
"@progress/kendo-angular-pager": "13.5.0-develop.2",
|
|
35
|
+
"@progress/kendo-angular-popup": "13.5.0-develop.2",
|
|
36
36
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"tslib": "^2.3.1",
|
|
40
|
-
"@progress/kendo-angular-schematics": "13.
|
|
40
|
+
"@progress/kendo-angular-schematics": "13.5.0-develop.2",
|
|
41
41
|
"@progress/kendo-pdfviewer-common": "0.2.2"
|
|
42
42
|
},
|
|
43
43
|
"schematics": "./schematics/collection.json",
|
package/pdfviewer.component.d.ts
CHANGED
|
@@ -132,6 +132,10 @@ export declare class PDFViewerComponent implements OnInit, AfterViewInit, OnDest
|
|
|
132
132
|
* @hidden
|
|
133
133
|
*/
|
|
134
134
|
get enabledSelection(): boolean;
|
|
135
|
+
/**
|
|
136
|
+
* @hidden
|
|
137
|
+
*/
|
|
138
|
+
showLicenseWatermark: boolean;
|
|
135
139
|
skip: number;
|
|
136
140
|
zoomOptionsData: ({
|
|
137
141
|
id: number;
|
package/pdfviewer.module.d.ts
CHANGED
|
@@ -19,12 +19,13 @@ import * as i13 from "@progress/kendo-angular-buttons";
|
|
|
19
19
|
import * as i14 from "@progress/kendo-angular-inputs";
|
|
20
20
|
import * as i15 from "@progress/kendo-angular-dropdowns";
|
|
21
21
|
import * as i16 from "@progress/kendo-angular-indicators";
|
|
22
|
+
import * as i17 from "@progress/kendo-angular-common";
|
|
22
23
|
/**
|
|
23
24
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
24
25
|
* definition for the PDFViewer component.
|
|
25
26
|
*/
|
|
26
27
|
export declare class PDFViewerModule {
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDFViewerModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PDFViewerModule, [typeof i1.PDFViewerComponent, typeof i2.ToolbarComponent, typeof i3.LoaderComponent, typeof i4.PDFViewerCustomMessagesComponent, typeof i5.LocalizedPDFViewerMessagesDirective, typeof i6.ToolbarInputWrapperComponent, typeof i7.ToolbarFocusableDirective, typeof i8.ToolbarComboBoxDirective, typeof i9.PDFViewerSearchComponent], [typeof i10.CommonModule, typeof i11.IconsModule, typeof i12.PagerModule, typeof i13.ButtonsModule, typeof i14.TextBoxModule, typeof i15.ComboBoxModule, typeof i16.LoaderModule], [typeof i1.PDFViewerComponent, typeof i2.ToolbarComponent, typeof i3.LoaderComponent, typeof i4.PDFViewerCustomMessagesComponent, typeof i5.LocalizedPDFViewerMessagesDirective, typeof i6.ToolbarInputWrapperComponent, typeof i7.ToolbarFocusableDirective, typeof i8.ToolbarComboBoxDirective, typeof i9.PDFViewerSearchComponent]>;
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PDFViewerModule, [typeof i1.PDFViewerComponent, typeof i2.ToolbarComponent, typeof i3.LoaderComponent, typeof i4.PDFViewerCustomMessagesComponent, typeof i5.LocalizedPDFViewerMessagesDirective, typeof i6.ToolbarInputWrapperComponent, typeof i7.ToolbarFocusableDirective, typeof i8.ToolbarComboBoxDirective, typeof i9.PDFViewerSearchComponent], [typeof i10.CommonModule, typeof i11.IconsModule, typeof i12.PagerModule, typeof i13.ButtonsModule, typeof i14.TextBoxModule, typeof i15.ComboBoxModule, typeof i16.LoaderModule, typeof i17.WatermarkModule], [typeof i1.PDFViewerComponent, typeof i2.ToolbarComponent, typeof i3.LoaderComponent, typeof i4.PDFViewerCustomMessagesComponent, typeof i5.LocalizedPDFViewerMessagesDirective, typeof i6.ToolbarInputWrapperComponent, typeof i7.ToolbarFocusableDirective, typeof i8.ToolbarComboBoxDirective, typeof i9.PDFViewerSearchComponent]>;
|
|
29
30
|
static ɵinj: i0.ɵɵInjectorDeclaration<PDFViewerModule>;
|
|
30
31
|
}
|