You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@progress/kendo-angular-pdf-export

Package Overview
Dependencies
Maintainers
1
Versions
655
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3-flatmeta.2 to 1.0.3

10

dist/es/pdf-export.component.js

@@ -39,3 +39,3 @@ import { Component, ContentChild, ElementRef, Input } from '@angular/core';

/**
* Specifies the file name of the exported PDF file.
* Specifies the name of the exported PDF file.
* @default "Export.pdf"

@@ -58,4 +58,4 @@ */

/**
* Saves the content as a PDF file with the specified name
* @param fileName The name of the exported file name
* Saves the content as a PDF file with the specified name.
* @param fileName - The name of the exported file.
*/

@@ -67,5 +67,5 @@ PDFExportComponent.prototype.saveAs = function (fileName) {

/**
* Exports the content as a Group for further processing
* Exports the content as a `Group` for further processing.
*
* @return The root group of the exported scene
* @return - The root group of the exported scene.
*/

@@ -72,0 +72,0 @@ PDFExportComponent.prototype.export = function () {

import { Component, Input } from '@angular/core';
var FIELDS = ['bottom', 'left', 'right', 'top'];
/**
* Represents the Kendo UI PDFMargin component for Angular.
*/
var PDFMarginComponent = /** @class */ (function () {

@@ -4,0 +7,0 @@ function PDFMarginComponent() {

@@ -60,3 +60,2 @@ import { ElementRef } from '@angular/core';

* The forced resolution of the images in the exported PDF document.
*
* By default, the images are exported at their full resolution.

@@ -66,3 +65,3 @@ */

/**
* Specifies the file name of the exported PDF file.
* Specifies the name of the exported PDF file.
* @default "Export.pdf"

@@ -72,3 +71,4 @@ */

/**
* If set to `true`, the content is forwarded to `proxyURL` even if the browser supports the saving of files locally.
* If set to `true`, the content is forwarded to `proxyURL` even if the
* browser supports local saving of files.
*/

@@ -81,3 +81,3 @@ forceProxy: boolean;

/**
* A flag that indicates if the page should be in a landscape orientation.
* A flag that indicates if the page will be in a landscape orientation.
* By default, the page is in a portrait orientation.

@@ -97,3 +97,3 @@ *

*
* Numbers are considered to be points (`"pt"`).
* > Numbers are considered to be points (`"pt"`).
*/

@@ -106,12 +106,12 @@ margin: string | number | PageMargin;

* If set, the content will be split across multiple pages.
* This enables the `repeatHeaders` and `scale` options and allows you to specify a template.
* This enables the `repeatHeaders` and `scale` options, and allows you to specify a template.
*
* The supported values are:
* * A predefined size. The supported paper sizes are: `A0-A10`, `B0-B10`, `C0-C10`, `Executive`, `Folio`, `Legal`, `Letter`, `Tabloid`.
* * An array of two numbers specifying the width and height in points (1pt = 1/72in).
* * An array of two strings specifying the width and height in units. The supported units are `"mm"`, `"cm"`, `"in"`, and `"pt"`.
* * An array of two numbers which specify the width and height in points (1pt = 1/72in).
* * An array of two strings which specify the width and height in units. The supported units are `"mm"`, `"cm"`, `"in"`, and `"pt"`.
*/
paperSize: PaperSize;
/**
* Specifies if the `<thead>` elements of the tables should be repeated on each page.
* Specifies if the `<thead>` elements of the tables will be repeated on each page.
*/

@@ -121,4 +121,3 @@ repeatHeaders: boolean;

* A scale factor.
*
* The text size on the screen might be too big for print.
* The text size on the screen might be too big for printing.
* To scale down the output in PDF, use this option.

@@ -130,3 +129,3 @@ *

/**
* A key/value dictionary of form values to send to the proxy.
* A key/value dictionary of form values which will be sent to the proxy.
* Can be used to submit Anti-Forgery tokens and other metadata.

@@ -140,3 +139,3 @@ */

* You need to use a proxy if the browser is not capable of saving files locally&mdash;for example, Internet Explorer 9 and Safari.
* The responsibility for implementing the server-side proxy is yours.
* It is your responsibility to implement the server-side proxy.
*

@@ -153,5 +152,5 @@ * In the request body, the proxy receives a POST request with the following parameters:

/**
* A name or keyword that indicates where to display the document that is returned from the proxy.
* A name or keyword which indicates where to display the document that is returned from the proxy.
* To display the document in a new window or iframe,
* the proxy has to set the `"Content-Disposition"` header to `inline; filename="<fileName.pdf>"`.
* the proxy has to have the `"Content-Disposition"` header set to `inline; filename="<fileName.pdf>"`.
* @default "_self"

@@ -184,10 +183,10 @@ */

/**
* Saves the content as a PDF file with the specified name
* @param fileName The name of the exported file name
* Saves the content as a PDF file with the specified name.
* @param fileName - The name of the exported file.
*/
saveAs(fileName?: string): void;
/**
* Exports the content as a Group for further processing
* Exports the content as a `Group` for further processing.
*
* @return The root group of the exported scene
* @return - The root group of the exported scene.
*/

@@ -194,0 +193,0 @@ export(): Promise<Group>;

@@ -39,3 +39,3 @@ import { Component, ContentChild, ElementRef, Input } from '@angular/core';

/**
* Specifies the file name of the exported PDF file.
* Specifies the name of the exported PDF file.
* @default "Export.pdf"

@@ -54,4 +54,4 @@ */

/**
* Saves the content as a PDF file with the specified name
* @param fileName The name of the exported file name
* Saves the content as a PDF file with the specified name.
* @param fileName - The name of the exported file.
*/

@@ -62,5 +62,5 @@ saveAs(fileName = this.fileName) {

/**
* Exports the content as a Group for further processing
* Exports the content as a `Group` for further processing.
*
* @return The root group of the exported scene
* @return - The root group of the exported scene.
*/

@@ -67,0 +67,0 @@ export() {

import { PageMargin } from '@progress/kendo-drawing/pdf';
/**
* Represents the Kendo UI PDFMargin component for Angular.
*/
export declare class PDFMarginComponent implements PageMargin {

@@ -12,3 +15,3 @@ /**

*
* Numbers are considered to be points (`"pt"`).
* > Numbers are considered to be points (`"pt"`).
*/

@@ -25,3 +28,3 @@ left?: number | string;

*
* Numbers are considered to be points (`"pt"`).
* > Numbers are considered to be points (`"pt"`).
*/

@@ -38,3 +41,3 @@ top?: number | string;

*
* Numbers are considered to be points (`"pt"`).
* > Numbers are considered to be points (`"pt"`).
*/

@@ -51,3 +54,3 @@ right?: number | string;

*
* Numbers are considered to be points (`"pt"`).
* > Numbers are considered to be points (`"pt"`).
*/

@@ -54,0 +57,0 @@ bottom?: number | string;

import { Component, Input } from '@angular/core';
const FIELDS = ['bottom', 'left', 'right', 'top'];
/**
* Represents the Kendo UI PDFMargin component for Angular.
*/
export class PDFMarginComponent {

@@ -4,0 +7,0 @@ /**

@@ -41,3 +41,3 @@ "use strict";

/**
* Specifies the file name of the exported PDF file.
* Specifies the name of the exported PDF file.
* @default "Export.pdf"

@@ -60,4 +60,4 @@ */

/**
* Saves the content as a PDF file with the specified name
* @param fileName The name of the exported file name
* Saves the content as a PDF file with the specified name.
* @param fileName - The name of the exported file.
*/

@@ -69,5 +69,5 @@ PDFExportComponent.prototype.saveAs = function (fileName) {

/**
* Exports the content as a Group for further processing
* Exports the content as a `Group` for further processing.
*
* @return The root group of the exported scene
* @return - The root group of the exported scene.
*/

@@ -74,0 +74,0 @@ PDFExportComponent.prototype.export = function () {

@@ -5,2 +5,5 @@ "use strict";

var FIELDS = ['bottom', 'left', 'right', 'top'];
/**
* Represents the Kendo UI PDFMargin component for Angular.
*/
var PDFMarginComponent = /** @class */ (function () {

@@ -7,0 +10,0 @@ function PDFMarginComponent() {

@@ -1,1 +0,1 @@

System.register("@progress/kendo-angular-pdf-export",["@angular/core","@progress/kendo-drawing","@progress/kendo-file-saver","tslib"],function(e){var t,o,r,a;function n(e){return e.__useDefault?e.default:e}return{setters:[function(e){t=n(e)},function(e){o=n(e)},function(e){r=n(e)},function(e){a=n(e)}],execute:function(){!function(e){var t={};function o(r){if(t[r])return t[r].exports;var a=t[r]={exports:{},id:r,loaded:!1};return e[r].call(a.exports,a,a.exports,o),a.loaded=!0,a.exports}o.m=e,o.c=t,o.p="",o(0)}([function(t,o,r){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var a=r(1);o.PDFExportComponent=a.PDFExportComponent;var n=r(9);o.PDFExportModule=n.PDFExportModule;var p=r(7);o.PDFMarginComponent=p.PDFMarginComponent;var i=r(6);o.PDFTemplateDirective=i.PDFTemplateDirective;var d=r(8);o.compileTemplate=d.compileTemplate,function(t){for(var o in t)e(o,t[o])}(o)},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=o(4),p=o(5),i=o(6),d=o(7),s=o(8),c=function(){function e(e){this.element=e,this.creator="Kendo UI PDF Generator",this.fileName="export.pdf"}return Object.defineProperty(e.prototype,"drawMargin",{get:function(){var e=this.marginComponent,t=this.margin;return e&&(t=Object.assign(t||{},e.options)),t},enumerable:!0,configurable:!0}),e.prototype.saveAs=function(e){void 0===e&&(e=this.fileName),this.save(this.element.nativeElement,e)},e.prototype.export=function(){return this.exportElement(this.element.nativeElement)},e.prototype.save=function(e,t){var o=this;this.exportElement(e).then(function(e){return o.exportGroup(e,o.pdfOptions())}).then(function(e){return o.saveDataUri(e,t,o.saveOptions())})},e.prototype.exportElement=function(e){var t=this.drawElement(e,this.drawOptions()),o=this.cleanup.bind(this);return t.then(o,o),t},e.prototype.cleanup=function(){this.pageTemplate&&(this.pageTemplate.destroy(),delete this.pageTemplate)},e.prototype.drawOptions=function(){return this.pageTemplateDirective&&(this.pageTemplate=s.compileTemplate(this.pageTemplateDirective.templateRef)),{avoidLinks:this.avoidLinks,forcePageBreak:this.forcePageBreak,keepTogether:this.keepTogether,margin:this.drawMargin,paperSize:this.paperSize,landscape:this.landscape,repeatHeaders:this.repeatHeaders,scale:this.scale,template:this.pageTemplate}},e.prototype.pdfOptions=function(){return{author:this.author,creator:this.creator,date:this.date,imgDPI:this.imageResolution,keywords:this.keywords,landscape:this.landscape,margin:this.drawMargin,multiPage:!0,paperSize:this.paperSize,producer:this.producer,subject:this.subject,title:this.title}},e.prototype.saveOptions=function(){return{forceProxy:this.forceProxy,proxyData:this.proxyData,proxyTarget:this.proxyTarget,proxyURL:this.proxyURL}},e.prototype.drawElement=function(e,t){return n.drawDOM(e,t)},e.prototype.exportGroup=function(e,t){return n.exportPDF(e,t)},e.prototype.saveDataUri=function(e,t,o){p.saveAs(e,t,o)},r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"author",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"avoidLinks",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"forcePageBreak",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"keepTogether",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"creator",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Date)],e.prototype,"date",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Number)],e.prototype,"imageResolution",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"fileName",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Boolean)],e.prototype,"forceProxy",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"keywords",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Boolean)],e.prototype,"landscape",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"margin",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"paperSize",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Boolean)],e.prototype,"repeatHeaders",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Number)],e.prototype,"scale",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"proxyData",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"proxyURL",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"proxyTarget",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"producer",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"subject",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"title",void 0),r.__decorate([a.ContentChild(i.PDFTemplateDirective),r.__metadata("design:type",i.PDFTemplateDirective)],e.prototype,"pageTemplateDirective",void 0),r.__decorate([a.ContentChild(d.PDFMarginComponent),r.__metadata("design:type",d.PDFMarginComponent)],e.prototype,"marginComponent",void 0),e=r.__decorate([a.Component({selector:"kendo-pdf-export",template:"<div><ng-content></ng-content></div>"}),r.__metadata("design:paramtypes",[a.ElementRef])],e)}();t.PDFExportComponent=c},function(e,t){e.exports=a},function(e,o){e.exports=t},function(e,t){e.exports=o},function(e,t){e.exports=r},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=function(){function e(e){this.templateRef=e}return e=r.__decorate([a.Directive({selector:"[kendoPDFTemplate]"}),r.__param(0,a.Optional()),r.__metadata("design:paramtypes",[a.TemplateRef])],e)}();t.PDFTemplateDirective=n},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=["bottom","left","right","top"],p=function(){function e(){}return Object.defineProperty(e.prototype,"options",{get:function(){for(var e={},t=0;t<n.length;t++){var o=n[t],r=this[o];void 0!==r&&(e[o]=r)}return e},enumerable:!0,configurable:!0}),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"left",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"top",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"right",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"bottom",void 0),e=r.__decorate([a.Component({selector:"kendo-pdf-export-margin",template:""})],e)}();t.PDFMarginComponent=p},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.compileTemplate=function(e){var t={},o=e.createEmbeddedView(t),r=function(e){Object.assign(t,e),o.detectChanges();var r=document.createElement("span");return o.rootNodes.forEach(function(e){r.appendChild(e.cloneNode(!0))}),r};return r.destroy=function(){o.destroy(),o=null},r}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=o(1),p=o(7),i=o(6),d=[n.PDFExportComponent,p.PDFMarginComponent,i.PDFTemplateDirective],s=function(){function e(){}return e=r.__decorate([a.NgModule({declarations:[d],exports:[d]})],e)}();t.PDFExportModule=s}])}}});
System.register("@progress/kendo-angular-pdf-export",["tslib","@progress/kendo-drawing","@progress/kendo-file-saver","@angular/core"],function(e){var t,o,r,a;function n(e){return e.__useDefault?e.default:e}return{setters:[function(e){t=n(e)},function(e){o=n(e)},function(e){r=n(e)},function(e){a=n(e)}],execute:function(){!function(e){var t={};function o(r){if(t[r])return t[r].exports;var a=t[r]={exports:{},id:r,loaded:!1};return e[r].call(a.exports,a,a.exports,o),a.loaded=!0,a.exports}o.m=e,o.c=t,o.p="",o(0)}([function(t,o,r){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var a=r(1);o.PDFExportComponent=a.PDFExportComponent;var n=r(9);o.PDFExportModule=n.PDFExportModule;var p=r(7);o.PDFMarginComponent=p.PDFMarginComponent;var i=r(6);o.PDFTemplateDirective=i.PDFTemplateDirective;var d=r(8);o.compileTemplate=d.compileTemplate,function(t){for(var o in t)e(o,t[o])}(o)},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=o(4),p=o(5),i=o(6),d=o(7),s=o(8),c=function(){function e(e){this.element=e,this.creator="Kendo UI PDF Generator",this.fileName="export.pdf"}return Object.defineProperty(e.prototype,"drawMargin",{get:function(){var e=this.marginComponent,t=this.margin;return e&&(t=Object.assign(t||{},e.options)),t},enumerable:!0,configurable:!0}),e.prototype.saveAs=function(e){void 0===e&&(e=this.fileName),this.save(this.element.nativeElement,e)},e.prototype.export=function(){return this.exportElement(this.element.nativeElement)},e.prototype.save=function(e,t){var o=this;this.exportElement(e).then(function(e){return o.exportGroup(e,o.pdfOptions())}).then(function(e){return o.saveDataUri(e,t,o.saveOptions())})},e.prototype.exportElement=function(e){var t=this.drawElement(e,this.drawOptions()),o=this.cleanup.bind(this);return t.then(o,o),t},e.prototype.cleanup=function(){this.pageTemplate&&(this.pageTemplate.destroy(),delete this.pageTemplate)},e.prototype.drawOptions=function(){return this.pageTemplateDirective&&(this.pageTemplate=s.compileTemplate(this.pageTemplateDirective.templateRef)),{avoidLinks:this.avoidLinks,forcePageBreak:this.forcePageBreak,keepTogether:this.keepTogether,margin:this.drawMargin,paperSize:this.paperSize,landscape:this.landscape,repeatHeaders:this.repeatHeaders,scale:this.scale,template:this.pageTemplate}},e.prototype.pdfOptions=function(){return{author:this.author,creator:this.creator,date:this.date,imgDPI:this.imageResolution,keywords:this.keywords,landscape:this.landscape,margin:this.drawMargin,multiPage:!0,paperSize:this.paperSize,producer:this.producer,subject:this.subject,title:this.title}},e.prototype.saveOptions=function(){return{forceProxy:this.forceProxy,proxyData:this.proxyData,proxyTarget:this.proxyTarget,proxyURL:this.proxyURL}},e.prototype.drawElement=function(e,t){return n.drawDOM(e,t)},e.prototype.exportGroup=function(e,t){return n.exportPDF(e,t)},e.prototype.saveDataUri=function(e,t,o){p.saveAs(e,t,o)},r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"author",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"avoidLinks",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"forcePageBreak",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"keepTogether",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"creator",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Date)],e.prototype,"date",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Number)],e.prototype,"imageResolution",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"fileName",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Boolean)],e.prototype,"forceProxy",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"keywords",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Boolean)],e.prototype,"landscape",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"margin",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"paperSize",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Boolean)],e.prototype,"repeatHeaders",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Number)],e.prototype,"scale",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"proxyData",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"proxyURL",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"proxyTarget",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"producer",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"subject",void 0),r.__decorate([a.Input(),r.__metadata("design:type",String)],e.prototype,"title",void 0),r.__decorate([a.ContentChild(i.PDFTemplateDirective),r.__metadata("design:type",i.PDFTemplateDirective)],e.prototype,"pageTemplateDirective",void 0),r.__decorate([a.ContentChild(d.PDFMarginComponent),r.__metadata("design:type",d.PDFMarginComponent)],e.prototype,"marginComponent",void 0),e=r.__decorate([a.Component({selector:"kendo-pdf-export",template:"<div><ng-content></ng-content></div>"}),r.__metadata("design:paramtypes",[a.ElementRef])],e)}();t.PDFExportComponent=c},function(e,o){e.exports=t},function(e,t){e.exports=a},function(e,t){e.exports=o},function(e,t){e.exports=r},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=function(){function e(e){this.templateRef=e}return e=r.__decorate([a.Directive({selector:"[kendoPDFTemplate]"}),r.__param(0,a.Optional()),r.__metadata("design:paramtypes",[a.TemplateRef])],e)}();t.PDFTemplateDirective=n},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=["bottom","left","right","top"],p=function(){function e(){}return Object.defineProperty(e.prototype,"options",{get:function(){for(var e={},t=0;t<n.length;t++){var o=n[t],r=this[o];void 0!==r&&(e[o]=r)}return e},enumerable:!0,configurable:!0}),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"left",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"top",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"right",void 0),r.__decorate([a.Input(),r.__metadata("design:type",Object)],e.prototype,"bottom",void 0),e=r.__decorate([a.Component({selector:"kendo-pdf-export-margin",template:""})],e)}();t.PDFMarginComponent=p},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.compileTemplate=function(e){var t={},o=e.createEmbeddedView(t),r=function(e){Object.assign(t,e),o.detectChanges();var r=document.createElement("span");return o.rootNodes.forEach(function(e){r.appendChild(e.cloneNode(!0))}),r};return r.destroy=function(){o.destroy(),o=null},r}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(2),a=o(3),n=o(1),p=o(7),i=o(6),d=[n.PDFExportComponent,p.PDFMarginComponent,i.PDFTemplateDirective],s=function(){function e(){}return e=r.__decorate([a.NgModule({declarations:[d],exports:[d]})],e)}();t.PDFExportModule=s}])}}});

@@ -6,3 +6,3 @@ {

"license": "SEE LICENSE IN LICENSE.md",
"version": "1.0.3-flatmeta.2",
"version": "1.0.3",
"main": "dist/npm/index.js",

@@ -57,3 +57,3 @@ "module": "dist/es/index.js",

"@progress/kendo-angular-l10n": "^1.0.1",
"@progress/kendo-angular-tasks": "^10.1.1",
"@progress/kendo-angular-tasks": "^10.1.0",
"@progress/kendo-data-query": "^1.0.5",

@@ -125,2 +125,2 @@ "@progress/kendo-drawing": "^1.2.0",

}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc