UNPKG

@progress/kendo-angular-pdf-export

Version:

Kendo UI for Angular PDF Export Component

30 lines (29 loc) 1.21 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PDFExportMarginComponent } from "./pdf-export-margin.component"; import { PDFExportTemplateDirective } from "./pdf-export-template.directive"; import { PDFExportComponent } from "./pdf-export.component"; /** * Use the `KENDO_PDFEXPORT` utility array to add all `@progress/kendo-angular-pdf-export`-related components and directives to a standalone Angular component. * * @example * ```typescript * import { Component } from '@angular/core'; * import { KENDO_PDFEXPORT } from "@progress/kendo-angular-pdf-export"; * * @Component({ * standalone: true, * imports: [KENDO_PDFEXPORT], * selector: 'my-app', * template: `<kendo-pdf-export></kendo-pdf-export>` * }) * export class AppComponent {} * ``` */ export const KENDO_PDFEXPORT = [ PDFExportComponent, PDFExportMarginComponent, PDFExportTemplateDirective ];