@progress/kendo-angular-pdf-export 19.1.2-develop.3 → 19.1.2-develop.5
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/package-metadata.mjs +2 -2
- package/esm2022/pdf-export-margin.component.mjs +4 -2
- package/esm2022/pdf-export.component.mjs +3 -0
- package/fesm2022/progress-kendo-angular-pdf-export.mjs +9 -4
- package/package.json +4 -4
- package/pdf-export-margin.component.d.ts +4 -2
- package/pdf-export.component.d.ts +3 -0
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
13
|
-
publishDate:
|
14
|
-
version: '19.1.2-develop.
|
13
|
+
publishDate: 1750430916,
|
14
|
+
version: '19.1.2-develop.5',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
@@ -10,8 +10,10 @@ const FIELDS = ['bottom', 'left', 'right', 'top'];
|
|
10
10
|
*
|
11
11
|
* @example
|
12
12
|
* ```html
|
13
|
-
* <kendo-pdf-export
|
14
|
-
*
|
13
|
+
* <kendo-pdf-export paperSize="A4">
|
14
|
+
* <kendo-pdf-export-margin top="2cm" left="1cm" right="1cm" bottom="2cm">
|
15
|
+
* </kendo-pdf-export-margin>
|
16
|
+
* </kendo-pdf-export>
|
15
17
|
* ```
|
16
18
|
*/
|
17
19
|
export class PDFExportMarginComponent {
|
@@ -16,8 +16,8 @@ const packageMetadata = {
|
|
16
16
|
productName: 'Kendo UI for Angular',
|
17
17
|
productCode: 'KENDOUIANGULAR',
|
18
18
|
productCodes: ['KENDOUIANGULAR'],
|
19
|
-
publishDate:
|
20
|
-
version: '19.1.2-develop.
|
19
|
+
publishDate: 1750430916,
|
20
|
+
version: '19.1.2-develop.5',
|
21
21
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
22
22
|
};
|
23
23
|
|
@@ -57,8 +57,10 @@ const FIELDS = ['bottom', 'left', 'right', 'top'];
|
|
57
57
|
*
|
58
58
|
* @example
|
59
59
|
* ```html
|
60
|
-
* <kendo-pdf-export
|
61
|
-
*
|
60
|
+
* <kendo-pdf-export paperSize="A4">
|
61
|
+
* <kendo-pdf-export-margin top="2cm" left="1cm" right="1cm" bottom="2cm">
|
62
|
+
* </kendo-pdf-export-margin>
|
63
|
+
* </kendo-pdf-export>
|
62
64
|
* ```
|
63
65
|
*/
|
64
66
|
class PDFExportMarginComponent {
|
@@ -159,6 +161,9 @@ const compileTemplate = (templateRef) => {
|
|
159
161
|
* Content goes here
|
160
162
|
* </kendo-pdf-export>
|
161
163
|
* ```
|
164
|
+
*
|
165
|
+
* @remarks
|
166
|
+
* Supported children components are: {@link PDFExportMarginComponent}
|
162
167
|
*/
|
163
168
|
class PDFExportComponent {
|
164
169
|
element;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-pdf-export",
|
3
|
-
"version": "19.1.2-develop.
|
3
|
+
"version": "19.1.2-develop.5",
|
4
4
|
"description": "Kendo UI for Angular PDF Export Component",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"package": {
|
18
18
|
"productName": "Kendo UI for Angular",
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
20
|
-
"publishDate":
|
20
|
+
"publishDate": 1750430916,
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
22
22
|
}
|
23
23
|
},
|
@@ -28,12 +28,12 @@
|
|
28
28
|
"@angular/platform-browser": "16 - 20",
|
29
29
|
"@progress/kendo-drawing": "^1.21.0",
|
30
30
|
"@progress/kendo-licensing": "^1.5.0",
|
31
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
31
|
+
"@progress/kendo-angular-common": "19.1.2-develop.5",
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"tslib": "^2.3.1",
|
36
|
-
"@progress/kendo-angular-schematics": "19.1.2-develop.
|
36
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.5",
|
37
37
|
"@progress/kendo-file-saver": "^1.0.1"
|
38
38
|
},
|
39
39
|
"schematics": "./schematics/collection.json",
|
@@ -9,8 +9,10 @@ import * as i0 from "@angular/core";
|
|
9
9
|
*
|
10
10
|
* @example
|
11
11
|
* ```html
|
12
|
-
* <kendo-pdf-export
|
13
|
-
*
|
12
|
+
* <kendo-pdf-export paperSize="A4">
|
13
|
+
* <kendo-pdf-export-margin top="2cm" left="1cm" right="1cm" bottom="2cm">
|
14
|
+
* </kendo-pdf-export-margin>
|
15
|
+
* </kendo-pdf-export>
|
14
16
|
* ```
|
15
17
|
*/
|
16
18
|
export declare class PDFExportMarginComponent implements pdf.PageMargin {
|
@@ -30,6 +30,9 @@ export type PaperSize = pdf.PaperSize;
|
|
30
30
|
* Content goes here
|
31
31
|
* </kendo-pdf-export>
|
32
32
|
* ```
|
33
|
+
*
|
34
|
+
* @remarks
|
35
|
+
* Supported children components are: {@link PDFExportMarginComponent}
|
33
36
|
*/
|
34
37
|
export declare class PDFExportComponent implements pdf.PDFOptions {
|
35
38
|
protected element: ElementRef;
|