@progress/kendo-angular-pdfviewer 16.0.0-develop.2 → 16.0.0-develop.4
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/loader/loader.component.mjs +4 -4
- package/esm2020/localization/custom-messages.component.mjs +3 -3
- package/esm2020/localization/localized-messages.directive.mjs +3 -3
- package/esm2020/localization/messages.mjs +3 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pdfviewer.component.mjs +9 -10
- package/esm2020/pdfviewer.module.mjs +4 -4
- package/esm2020/toolbar/input-wrapper.component.mjs +3 -4
- package/esm2020/toolbar/search.component.mjs +6 -6
- package/esm2020/toolbar/toolbar-combobox.directive.mjs +3 -3
- package/esm2020/toolbar/toolbar-focusable.directive.mjs +3 -3
- package/esm2020/toolbar/toolbar-navigation.service.mjs +3 -3
- package/esm2020/toolbar/toolbar.component.mjs +6 -6
- package/fesm2015/progress-kendo-angular-pdfviewer.mjs +188 -190
- package/fesm2020/progress-kendo-angular-pdfviewer.mjs +188 -190
- package/loader/loader.component.d.ts +1 -1
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/localization/messages.d.ts +1 -1
- package/package.json +18 -18
- package/pdfviewer.component.d.ts +1 -1
- package/toolbar/input-wrapper.component.d.ts +1 -1
- package/toolbar/search.component.d.ts +1 -1
- package/toolbar/toolbar-combobox.directive.d.ts +1 -1
- package/toolbar/toolbar-focusable.directive.d.ts +1 -1
- package/toolbar/toolbar.component.d.ts +1 -1
- package/progress-kendo-angular-pdfviewer.d.ts +0 -9
@@ -15,8 +15,8 @@ export class LoaderComponent {
|
|
15
15
|
this.loaderPositionClass = true;
|
16
16
|
}
|
17
17
|
}
|
18
|
-
LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19
|
-
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
18
|
+
LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
19
|
+
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: LoaderComponent, selector: "[kendoPDFViewerLoader]", inputs: { settings: "settings" }, host: { properties: { "class.k-loader-container": "this.loaderContainerClass", "class.k-loader-container-md": "this.loaderContainerSizingClass", "class.k-loader-top": "this.loaderPositionClass" } }, ngImport: i0, template: `
|
20
20
|
<div class="k-loader-container-overlay k-overlay-light"></div>
|
21
21
|
<div class="k-loader-container-inner">
|
22
22
|
<kendo-loader
|
@@ -24,8 +24,8 @@ LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
24
24
|
[type]="settings?.type"
|
25
25
|
[themeColor]="settings?.themeColor"></kendo-loader>
|
26
26
|
</div>
|
27
|
-
`, isInline: true,
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
27
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i1.LoaderComponent, selector: "kendo-loader", inputs: ["type", "themeColor", "size"] }] });
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoaderComponent, decorators: [{
|
29
29
|
type: Component,
|
30
30
|
args: [{
|
31
31
|
selector: '[kendoPDFViewerLoader]',
|
@@ -20,12 +20,12 @@ export class PDFViewerCustomMessagesComponent extends Messages {
|
|
20
20
|
return true;
|
21
21
|
}
|
22
22
|
}
|
23
|
-
PDFViewerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
24
|
-
PDFViewerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
23
|
+
PDFViewerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
24
|
+
PDFViewerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: PDFViewerCustomMessagesComponent, selector: "kendo-pdfviewer-messages", providers: [{
|
25
25
|
provide: Messages,
|
26
26
|
useExisting: forwardRef(() => PDFViewerCustomMessagesComponent)
|
27
27
|
}], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerCustomMessagesComponent, decorators: [{
|
29
29
|
type: Component,
|
30
30
|
args: [{
|
31
31
|
providers: [{
|
@@ -16,14 +16,14 @@ export class LocalizedPDFViewerMessagesDirective extends Messages {
|
|
16
16
|
this.service = service;
|
17
17
|
}
|
18
18
|
}
|
19
|
-
LocalizedPDFViewerMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20
|
-
LocalizedPDFViewerMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
19
|
+
LocalizedPDFViewerMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LocalizedPDFViewerMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
20
|
+
LocalizedPDFViewerMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: LocalizedPDFViewerMessagesDirective, selector: "[kendoPDFViewerLocalizedMessages]", providers: [
|
21
21
|
{
|
22
22
|
provide: Messages,
|
23
23
|
useExisting: forwardRef(() => LocalizedPDFViewerMessagesDirective)
|
24
24
|
}
|
25
25
|
], usesInheritance: true, ngImport: i0 });
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LocalizedPDFViewerMessagesDirective, decorators: [{
|
27
27
|
type: Directive,
|
28
28
|
args: [{
|
29
29
|
providers: [
|
@@ -10,9 +10,9 @@ import * as i0 from "@angular/core";
|
|
10
10
|
*/
|
11
11
|
export class Messages extends ComponentMessages {
|
12
12
|
}
|
13
|
-
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13
|
+
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
14
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: Messages, selector: "kendo-pdfviewer-messages-base", inputs: { zoomInTitle: "zoomInTitle", zoomOutTitle: "zoomOutTitle", selectionTitle: "selectionTitle", panningTitle: "panningTitle", searchTitle: "searchTitle", openTitle: "openTitle", downloadTitle: "downloadTitle", printTitle: "printTitle", pagerInputLabel: "pagerInputLabel", pagerInputTitle: "pagerInputTitle", pagerFirstPage: "pagerFirstPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerLastPage: "pagerLastPage", pagerOf: "pagerOf", pagerPage: "pagerPage", fitToPage: "fitToPage", fitToWidth: "fitToWidth", searchInputPlaceholder: "searchInputPlaceholder", searchMatchesOf: "searchMatchesOf", searchPreviousMatchTitle: "searchPreviousMatchTitle", searchNextMatchTitle: "searchNextMatchTitle", searchCloseTitle: "searchCloseTitle", searchMatchCaseTitle: "searchMatchCaseTitle", zoomInputPlaceholder: "zoomInputPlaceholder" }, usesInheritance: true, ngImport: i0 });
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: Messages, decorators: [{
|
16
16
|
type: Directive,
|
17
17
|
args: [{
|
18
18
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
@@ -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: '16.0.0-develop.
|
12
|
+
publishDate: 1714109771,
|
13
|
+
version: '16.0.0-develop.4',
|
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
|
};
|
@@ -15,12 +15,12 @@ import { Subscription } from 'rxjs';
|
|
15
15
|
import 'pdfjs-dist/build/pdf.worker.entry';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "@progress/kendo-angular-l10n";
|
18
|
-
import * as i2 from "
|
19
|
-
import * as i3 from "
|
20
|
-
import * as i4 from "./toolbar/
|
21
|
-
import * as i5 from "
|
18
|
+
import * as i2 from "@angular/common";
|
19
|
+
import * as i3 from "@progress/kendo-angular-common";
|
20
|
+
import * as i4 from "./toolbar/toolbar.component";
|
21
|
+
import * as i5 from "./loader/loader.component";
|
22
22
|
import * as i6 from "./localization/localized-messages.directive";
|
23
|
-
import * as i7 from "
|
23
|
+
import * as i7 from "./toolbar/search.component";
|
24
24
|
let counter = 0;
|
25
25
|
/**
|
26
26
|
* Represents the [Kendo UI PDFViewer component for Angular]({% slug overview_pdfviewer %}).
|
@@ -354,7 +354,6 @@ export class PDFViewerComponent {
|
|
354
354
|
if (hasObservers(this.error)) {
|
355
355
|
this.error.emit(e);
|
356
356
|
}
|
357
|
-
;
|
358
357
|
};
|
359
358
|
const onDone = () => {
|
360
359
|
this.loading = false;
|
@@ -482,8 +481,8 @@ export class PDFViewerComponent {
|
|
482
481
|
return this[source] || (changes[source] && changes[source].currentValue);
|
483
482
|
}
|
484
483
|
}
|
485
|
-
PDFViewerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
486
|
-
PDFViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
484
|
+
PDFViewerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerComponent, deps: [{ token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
485
|
+
PDFViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: PDFViewerComponent, selector: "kendo-pdfviewer", inputs: { tools: "tools", loaderSettings: "loaderSettings", saveFileName: "saveFileName", saveOptions: "saveOptions", url: "url", data: "data", arrayBuffer: "arrayBuffer", typedArray: "typedArray", zoom: "zoom", zoomRate: "zoomRate", minZoom: "minZoom", maxZoom: "maxZoom" }, outputs: { load: "load", error: "error", download: "download", pageChange: "pageChange", zoomLevelChange: "zoomLevelChange" }, host: { properties: { "class.k-pdf-viewer": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
487
486
|
LocalizationService,
|
488
487
|
{
|
489
488
|
provide: L10N_PREFIX,
|
@@ -622,8 +621,8 @@ PDFViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
622
621
|
</div>
|
623
622
|
|
624
623
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
625
|
-
`, isInline: true,
|
626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
624
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }, { kind: "component", type: i4.ToolbarComponent, selector: "[kendoPDFViewerToolbar]", 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"] }, { kind: "component", type: i5.LoaderComponent, selector: "[kendoPDFViewerLoader]", inputs: ["settings"] }, { kind: "directive", type: i6.LocalizedPDFViewerMessagesDirective, selector: "[kendoPDFViewerLocalizedMessages]" }, { kind: "component", type: i7.PDFViewerSearchComponent, selector: "[kendoPDFViewerSearch]", inputs: ["matches", "currentMatch"], outputs: ["searchChange", "prevMatch", "nextMatch", "close"] }] });
|
625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerComponent, decorators: [{
|
627
626
|
type: Component,
|
628
627
|
args: [{
|
629
628
|
exportAs: 'kendo-pdfviewer',
|
@@ -48,8 +48,8 @@ const IMPORTS = [
|
|
48
48
|
*/
|
49
49
|
export class PDFViewerModule {
|
50
50
|
}
|
51
|
-
PDFViewerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
52
|
-
PDFViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
51
|
+
PDFViewerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
52
|
+
PDFViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerModule, declarations: [PDFViewerComponent,
|
53
53
|
ToolbarComponent,
|
54
54
|
LoaderComponent,
|
55
55
|
PDFViewerCustomMessagesComponent,
|
@@ -73,8 +73,8 @@ PDFViewerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
73
73
|
ToolbarFocusableDirective,
|
74
74
|
ToolbarComboBoxDirective,
|
75
75
|
PDFViewerSearchComponent] });
|
76
|
-
PDFViewerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
77
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
76
|
+
PDFViewerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerModule, imports: [IMPORTS] });
|
77
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerModule, decorators: [{
|
78
78
|
type: NgModule,
|
79
79
|
args: [{
|
80
80
|
declarations: DIRECTIVES,
|
@@ -35,7 +35,6 @@ export class ToolbarInputWrapperComponent {
|
|
35
35
|
this.toolbarTool.element.nativeElement.setAttribute('tabindex', '-1');
|
36
36
|
this.toolbarTool.element.nativeElement.blur();
|
37
37
|
}
|
38
|
-
;
|
39
38
|
this.host.nativeElement.focus();
|
40
39
|
}));
|
41
40
|
}
|
@@ -43,11 +42,11 @@ export class ToolbarInputWrapperComponent {
|
|
43
42
|
this.subs.unsubscribe();
|
44
43
|
}
|
45
44
|
}
|
46
|
-
ToolbarInputWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
47
|
-
ToolbarInputWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
45
|
+
ToolbarInputWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarInputWrapperComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
46
|
+
ToolbarInputWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: ToolbarInputWrapperComponent, selector: "kendo-toolbar-input-wrapper", inputs: { toolbarTool: "toolbarTool" }, host: { properties: { "class.k-toolbar-item": "this.hostClass" } }, ngImport: i0, template: `
|
48
47
|
<ng-content></ng-content>
|
49
48
|
`, isInline: true });
|
50
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
49
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarInputWrapperComponent, decorators: [{
|
51
50
|
type: Component,
|
52
51
|
args: [{
|
53
52
|
selector: 'kendo-toolbar-input-wrapper',
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { arrowDownIcon, arrowUpIcon, convertLowercaseIcon, xIcon } from '@progress/kendo-svg-icons';
|
9
9
|
import * as i0 from "@angular/core";
|
10
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
11
|
-
import * as i2 from "@progress/kendo-angular-
|
12
|
-
import * as i3 from "@progress/kendo-angular-
|
11
|
+
import * as i2 from "@progress/kendo-angular-buttons";
|
12
|
+
import * as i3 from "@progress/kendo-angular-inputs";
|
13
13
|
/**
|
14
14
|
* @hidden
|
15
15
|
*/
|
@@ -44,8 +44,8 @@ export class PDFViewerSearchComponent {
|
|
44
44
|
}
|
45
45
|
}
|
46
46
|
}
|
47
|
-
PDFViewerSearchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
48
|
-
PDFViewerSearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
47
|
+
PDFViewerSearchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerSearchComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
48
|
+
PDFViewerSearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: PDFViewerSearchComponent, selector: "[kendoPDFViewerSearch]", inputs: { matches: "matches", currentMatch: "currentMatch" }, outputs: { searchChange: "searchChange", prevMatch: "prevMatch", nextMatch: "nextMatch", close: "close" }, host: { listeners: { "keydown.escape": "onEscape()" }, properties: { "attr.role": "this.ariaRole" } }, viewQueries: [{ propertyName: "textbox", first: true, predicate: ["textbox"], descendants: true }, { propertyName: "closeButton", first: true, predicate: ["closeButton"], descendants: true, read: ElementRef }], ngImport: i0, template: `
|
49
49
|
<kendo-textbox
|
50
50
|
#textbox
|
51
51
|
[placeholder]="messageFor('searchInputPlaceholder')"
|
@@ -95,8 +95,8 @@ PDFViewerSearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
95
95
|
(keydown.tab)="$event.preventDefault(); textbox.focus();"
|
96
96
|
icon='x'
|
97
97
|
[svgIcon]="xIcon"></button>
|
98
|
-
`, isInline: true,
|
99
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
98
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i2.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i3.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: i3.TextBoxSuffixTemplateDirective, selector: "[kendoTextBoxSuffixTemplate]", inputs: ["showSeparator"] }] });
|
99
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PDFViewerSearchComponent, decorators: [{
|
100
100
|
type: Component,
|
101
101
|
args: [{
|
102
102
|
selector: '[kendoPDFViewerSearch]',
|
@@ -35,9 +35,9 @@ export class ToolbarComboBoxDirective {
|
|
35
35
|
this.inputElement.removeEventListener('keydown', this.keydownHandler);
|
36
36
|
}
|
37
37
|
}
|
38
|
-
ToolbarComboBoxDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
39
|
-
ToolbarComboBoxDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
40
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
38
|
+
ToolbarComboBoxDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarComboBoxDirective, deps: [{ token: i1.ComboBoxComponent }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
39
|
+
ToolbarComboBoxDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ToolbarComboBoxDirective, selector: "[kendoPDFViewerComboBox]", ngImport: i0 });
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarComboBoxDirective, decorators: [{
|
41
41
|
type: Directive,
|
42
42
|
args: [{ selector: '[kendoPDFViewerComboBox]' }]
|
43
43
|
}], ctorParameters: function () { return [{ type: i1.ComboBoxComponent }, { type: i0.ElementRef }]; } });
|
@@ -55,9 +55,9 @@ export class ToolbarFocusableDirective {
|
|
55
55
|
element.focus();
|
56
56
|
}
|
57
57
|
}
|
58
|
-
ToolbarFocusableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
59
|
-
ToolbarFocusableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
60
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
58
|
+
ToolbarFocusableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarFocusableDirective, deps: [{ token: i0.ElementRef }, { token: i1.ToolbarNavigationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
59
|
+
ToolbarFocusableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ToolbarFocusableDirective, selector: "[kendoPDFViewerToolbarFocusable]", ngImport: i0 });
|
60
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarFocusableDirective, decorators: [{
|
61
61
|
type: Directive,
|
62
62
|
args: [{ selector: '[kendoPDFViewerToolbarFocusable]' }]
|
63
63
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.ToolbarNavigationService }, { type: i0.Renderer2 }]; } });
|
@@ -45,8 +45,8 @@ export class ToolbarNavigationService {
|
|
45
45
|
this.focusableTools[this.currentFocusIndex].activate();
|
46
46
|
}
|
47
47
|
}
|
48
|
-
ToolbarNavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
49
|
-
ToolbarNavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
50
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
48
|
+
ToolbarNavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarNavigationService, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
49
|
+
ToolbarNavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarNavigationService });
|
50
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarNavigationService, decorators: [{
|
51
51
|
type: Injectable
|
52
52
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
@@ -10,11 +10,11 @@ import { ToolbarNavigationService } from './toolbar-navigation.service';
|
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
import * as i1 from "@progress/kendo-angular-l10n";
|
12
12
|
import * as i2 from "./toolbar-navigation.service";
|
13
|
-
import * as i3 from "
|
13
|
+
import * as i3 from "@angular/common";
|
14
14
|
import * as i4 from "@progress/kendo-angular-pager";
|
15
15
|
import * as i5 from "@progress/kendo-angular-buttons";
|
16
16
|
import * as i6 from "@progress/kendo-angular-dropdowns";
|
17
|
-
import * as i7 from "
|
17
|
+
import * as i7 from "./input-wrapper.component";
|
18
18
|
import * as i8 from "./toolbar-focusable.directive";
|
19
19
|
import * as i9 from "./toolbar-combobox.directive";
|
20
20
|
/**
|
@@ -85,8 +85,8 @@ export class ToolbarComponent {
|
|
85
85
|
this.navigationService.focusableTools[this.navigationService.currentFocusIndex].activate();
|
86
86
|
}
|
87
87
|
}
|
88
|
-
ToolbarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
89
|
-
ToolbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
88
|
+
ToolbarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarComponent, deps: [{ token: i1.LocalizationService }, { token: i2.ToolbarNavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
89
|
+
ToolbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: ToolbarComponent, selector: "[kendoPDFViewerToolbar]", inputs: { zoomLevel: "zoomLevel", calculatedComboBoxValue: "calculatedComboBoxValue", skip: "skip", pageSize: "pageSize", total: "total", zoomInDisabled: "zoomInDisabled", zoomOutDisabled: "zoomOutDisabled", disabledTools: "disabledTools", zoomLevelChooserValue: "zoomLevelChooserValue", zoomOptionsData: "zoomOptionsData", pagesContainerId: "pagesContainerId", tools: "tools" }, outputs: { fileSelect: "fileSelect", fileSelectStart: "fileSelectStart", fileSelectError: "fileSelectError", download: "download", selectionEnabled: "selectionEnabled", panningEnabled: "panningEnabled", pageChange: "pageChange", zoomIn: "zoomIn", zoomOut: "zoomOut", zoomLevelChange: "zoomLevelChange", print: "print", search: "search" }, host: { properties: { "class.k-toolbar": "this.toolbarClass", "class.k-toolbar-md": "this.toolbarSizeClass" } }, providers: [ToolbarNavigationService], viewQueries: [{ propertyName: "fileSelectEl", first: true, predicate: ["fileSelectEl"], descendants: true }], ngImport: i0, template: `
|
90
90
|
<ng-container *ngFor="let tool of tools">
|
91
91
|
<ng-container [ngSwitch]="tool">
|
92
92
|
<kendo-toolbar-input-wrapper
|
@@ -250,8 +250,8 @@ ToolbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
250
250
|
aria-hidden="true"
|
251
251
|
accept=".pdf, .PDF"
|
252
252
|
(change)="onFileSelect($event)" />
|
253
|
-
`, isInline: true,
|
254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
253
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: i4.PagerComponent, selector: "kendo-datapager", inputs: ["total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager"] }, { kind: "component", type: i4.CustomMessagesComponent, selector: "kendo-datapager-messages" }, { kind: "component", type: i5.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { kind: "component", type: i5.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i6.ComboBoxComponent, selector: "kendo-combobox", inputs: ["icon", "svgIcon", "inputAttributes", "showStickyHeader", "focusableId", "allowCustom", "data", "value", "textField", "valueField", "valuePrimitive", "valueNormalizer", "placeholder", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "loading", "suggest", "clearButton", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "selectionChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoComboBox"] }, { kind: "directive", type: i6.ItemTemplateDirective, selector: "[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]" }, { kind: "component", type: i7.ToolbarInputWrapperComponent, selector: "kendo-toolbar-input-wrapper", inputs: ["toolbarTool"] }, { kind: "directive", type: i8.ToolbarFocusableDirective, selector: "[kendoPDFViewerToolbarFocusable]" }, { kind: "directive", type: i9.ToolbarComboBoxDirective, selector: "[kendoPDFViewerComboBox]" }] });
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ToolbarComponent, decorators: [{
|
255
255
|
type: Component,
|
256
256
|
args: [{
|
257
257
|
selector: '[kendoPDFViewerToolbar]',
|