@progress/kendo-angular-barcodes 16.5.0-develop.6 → 16.6.0-develop.1
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/barcode.component.d.ts +1 -1
- package/barcode.module.d.ts +1 -2
- package/barcodes.module.d.ts +3 -3
- package/directives.d.ts +18 -0
- package/esm2020/barcode.component.mjs +6 -4
- package/esm2020/barcode.module.mjs +9 -7
- package/esm2020/barcodes.module.mjs +10 -5
- package/esm2020/directives.mjs +25 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/qrcode.component.mjs +6 -4
- package/esm2020/qrcode.module.mjs +9 -7
- package/fesm2015/progress-kendo-angular-barcodes.mjs +52 -24
- package/fesm2020/progress-kendo-angular-barcodes.mjs +52 -24
- package/index.d.ts +1 -0
- package/package.json +3 -3
- package/qrcode.component.d.ts +1 -1
- package/qrcode.module.d.ts +1 -2
- package/schematics/ngAdd/index.js +1 -1
package/barcode.component.d.ts
CHANGED
@@ -311,5 +311,5 @@ export declare class BarcodeComponent extends BaseComponent {
|
|
311
311
|
protected createInstance(element: any, options: any): Barcode;
|
312
312
|
protected onError(error: Error): void;
|
313
313
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarcodeComponent, never>;
|
314
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarcodeComponent, "kendo-barcode", ["kendoBarcode"], { "background": "background"; "border": "border"; "checksum": "checksum"; "color": "color"; "height": "height"; "padding": "padding"; "renderAs": "renderAs"; "text": "text"; "type": "type"; "value": "value"; "width": "width"; "resizeRateLimit": "resizeRateLimit"; }, {}, never, never,
|
314
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarcodeComponent, "kendo-barcode", ["kendoBarcode"], { "background": "background"; "border": "border"; "checksum": "checksum"; "color": "color"; "height": "height"; "padding": "padding"; "renderAs": "renderAs"; "text": "text"; "type": "type"; "value": "value"; "width": "width"; "resizeRateLimit": "resizeRateLimit"; }, {}, never, never, true, never>;
|
315
315
|
}
|
package/barcode.module.d.ts
CHANGED
@@ -4,7 +4,6 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
import * as i1 from "./barcode.component";
|
7
|
-
import * as i2 from "@progress/kendo-angular-common";
|
8
7
|
/**
|
9
8
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
10
9
|
* definition for the Barcode component.
|
@@ -38,6 +37,6 @@ import * as i2 from "@progress/kendo-angular-common";
|
|
38
37
|
*/
|
39
38
|
export declare class BarcodeModule {
|
40
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarcodeModule, never>;
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarcodeModule, [typeof i1.BarcodeComponent], [typeof
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarcodeModule, never, [typeof i1.BarcodeComponent], [typeof i1.BarcodeComponent]>;
|
42
41
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarcodeModule>;
|
43
42
|
}
|
package/barcodes.module.d.ts
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
import * as i1 from "./barcode.
|
7
|
-
import * as i2 from "./qrcode.
|
6
|
+
import * as i1 from "./barcode.component";
|
7
|
+
import * as i2 from "./qrcode.component";
|
8
8
|
/**
|
9
9
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
10
10
|
* definition for the Barcode and QR Code components.
|
@@ -38,6 +38,6 @@ import * as i2 from "./qrcode.module";
|
|
38
38
|
*/
|
39
39
|
export declare class BarcodesModule {
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarcodesModule, never>;
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarcodesModule, never,
|
41
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarcodesModule, never, [typeof i1.BarcodeComponent, typeof i2.QRCodeComponent], [typeof i1.BarcodeComponent, typeof i2.QRCodeComponent]>;
|
42
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarcodesModule>;
|
43
43
|
}
|
package/directives.d.ts
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { BarcodeComponent } from "./barcode.component";
|
6
|
+
import { QRCodeComponent } from "./qrcode.component";
|
7
|
+
/**
|
8
|
+
* Utility array that contains all `Barcode` related components and directives
|
9
|
+
*/
|
10
|
+
export declare const KENDO_BARCODE: readonly [typeof BarcodeComponent];
|
11
|
+
/**
|
12
|
+
* Utility array that contains all `QRCode` related components and directives
|
13
|
+
*/
|
14
|
+
export declare const KENDO_QRCODE: readonly [typeof QRCodeComponent];
|
15
|
+
/**
|
16
|
+
* Utility array that contains all `@progress/kendo-angular-barcodes` related components and directives
|
17
|
+
*/
|
18
|
+
export declare const KENDO_BARCODES: readonly [typeof BarcodeComponent, typeof QRCodeComponent];
|
@@ -6,8 +6,8 @@ import { ChangeDetectionStrategy, Component, ElementRef, Input, NgZone, Renderer
|
|
6
6
|
import { Barcode } from '@progress/kendo-charts';
|
7
7
|
import { BaseComponent } from './base.component';
|
8
8
|
import { packageMetadata } from './package-metadata';
|
9
|
+
import { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
9
10
|
import * as i0 from "@angular/core";
|
10
|
-
import * as i1 from "@progress/kendo-angular-common";
|
11
11
|
/**
|
12
12
|
* Represents the Kendo UI Barcode component for Angular.
|
13
13
|
*
|
@@ -82,9 +82,9 @@ export class BarcodeComponent extends BaseComponent {
|
|
82
82
|
}
|
83
83
|
}
|
84
84
|
BarcodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
85
|
-
BarcodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarcodeComponent, selector: "kendo-barcode", inputs: { background: "background", border: "border", checksum: "checksum", color: "color", height: "height", padding: "padding", renderAs: "renderAs", text: "text", type: "type", value: "value", width: "width", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoBarcode"], usesInheritance: true, ngImport: i0, template: `
|
85
|
+
BarcodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarcodeComponent, isStandalone: true, selector: "kendo-barcode", inputs: { background: "background", border: "border", checksum: "checksum", color: "color", height: "height", padding: "padding", renderAs: "renderAs", text: "text", type: "type", value: "value", width: "width", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoBarcode"], usesInheritance: true, ngImport: i0, template: `
|
86
86
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
87
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
87
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
88
88
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeComponent, decorators: [{
|
89
89
|
type: Component,
|
90
90
|
args: [{
|
@@ -93,7 +93,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
93
93
|
selector: 'kendo-barcode',
|
94
94
|
template: `
|
95
95
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
96
|
-
|
96
|
+
`,
|
97
|
+
standalone: true,
|
98
|
+
imports: [ResizeSensorComponent]
|
97
99
|
}]
|
98
100
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { background: [{
|
99
101
|
type: Input
|
@@ -3,9 +3,11 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { NgModule } from '@angular/core';
|
6
|
-
import {
|
7
|
-
import {
|
6
|
+
import { KENDO_BARCODE } from './directives';
|
7
|
+
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
8
8
|
import * as i0 from "@angular/core";
|
9
|
+
import * as i1 from "./barcode.component";
|
10
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
9
11
|
/**
|
10
12
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
11
13
|
* definition for the Barcode component.
|
@@ -40,13 +42,13 @@ import * as i0 from "@angular/core";
|
|
40
42
|
export class BarcodeModule {
|
41
43
|
}
|
42
44
|
BarcodeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
43
|
-
BarcodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule,
|
44
|
-
BarcodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, imports: [
|
45
|
+
BarcodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, imports: [i1.BarcodeComponent], exports: [i1.BarcodeComponent] });
|
46
|
+
BarcodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, providers: [ResizeBatchService], imports: [KENDO_BARCODE] });
|
45
47
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, decorators: [{
|
46
48
|
type: NgModule,
|
47
49
|
args: [{
|
48
|
-
|
49
|
-
|
50
|
-
|
50
|
+
imports: [...KENDO_BARCODE],
|
51
|
+
exports: [...KENDO_BARCODE],
|
52
|
+
providers: [ResizeBatchService]
|
51
53
|
}]
|
52
54
|
}] });
|
@@ -3,9 +3,12 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { NgModule } from '@angular/core';
|
6
|
-
import {
|
7
|
-
import {
|
6
|
+
import { KENDO_BARCODES } from './directives';
|
7
|
+
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
8
8
|
import * as i0 from "@angular/core";
|
9
|
+
import * as i1 from "./barcode.component";
|
10
|
+
import * as i2 from "./qrcode.component";
|
11
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
9
12
|
/**
|
10
13
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
11
14
|
* definition for the Barcode and QR Code components.
|
@@ -40,11 +43,13 @@ import * as i0 from "@angular/core";
|
|
40
43
|
export class BarcodesModule {
|
41
44
|
}
|
42
45
|
BarcodesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
43
|
-
BarcodesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, exports: [
|
44
|
-
BarcodesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule,
|
46
|
+
BarcodesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, imports: [i1.BarcodeComponent, i2.QRCodeComponent], exports: [i1.BarcodeComponent, i2.QRCodeComponent] });
|
47
|
+
BarcodesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, providers: [ResizeBatchService], imports: [KENDO_BARCODES] });
|
45
48
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, decorators: [{
|
46
49
|
type: NgModule,
|
47
50
|
args: [{
|
48
|
-
|
51
|
+
imports: [...KENDO_BARCODES],
|
52
|
+
exports: [...KENDO_BARCODES],
|
53
|
+
providers: [ResizeBatchService]
|
49
54
|
}]
|
50
55
|
}] });
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { BarcodeComponent } from "./barcode.component";
|
6
|
+
import { QRCodeComponent } from "./qrcode.component";
|
7
|
+
/**
|
8
|
+
* Utility array that contains all `Barcode` related components and directives
|
9
|
+
*/
|
10
|
+
export const KENDO_BARCODE = [
|
11
|
+
BarcodeComponent
|
12
|
+
];
|
13
|
+
/**
|
14
|
+
* Utility array that contains all `QRCode` related components and directives
|
15
|
+
*/
|
16
|
+
export const KENDO_QRCODE = [
|
17
|
+
QRCodeComponent
|
18
|
+
];
|
19
|
+
/**
|
20
|
+
* Utility array that contains all `@progress/kendo-angular-barcodes` related components and directives
|
21
|
+
*/
|
22
|
+
export const KENDO_BARCODES = [
|
23
|
+
...KENDO_BARCODE,
|
24
|
+
...KENDO_QRCODE
|
25
|
+
];
|
package/esm2020/index.mjs
CHANGED
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-barcodes',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '16.
|
12
|
+
publishDate: 1721827992,
|
13
|
+
version: '16.6.0-develop.1',
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
15
15
|
};
|
@@ -6,8 +6,8 @@ import { ChangeDetectionStrategy, Component, ElementRef, Input, NgZone, Renderer
|
|
6
6
|
import { QRCode } from '@progress/kendo-charts';
|
7
7
|
import { BaseComponent } from './base.component';
|
8
8
|
import { packageMetadata } from './package-metadata';
|
9
|
+
import { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
9
10
|
import * as i0 from "@angular/core";
|
10
|
-
import * as i1 from "@progress/kendo-angular-common";
|
11
11
|
const DEFAULT_COLOR = '#000';
|
12
12
|
const DEFAULT_BACKGROUND = '#fff';
|
13
13
|
const DEFAULT_ERROR_CORRECTION = 'L';
|
@@ -84,9 +84,9 @@ export class QRCodeComponent extends BaseComponent {
|
|
84
84
|
}
|
85
85
|
}
|
86
86
|
QRCodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
87
|
-
QRCodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: QRCodeComponent, selector: "kendo-qrcode", inputs: { background: "background", border: "border", color: "color", encoding: "encoding", errorCorrection: "errorCorrection", overlay: "overlay", padding: "padding", renderAs: "renderAs", size: "size", value: "value", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoQRCode"], usesInheritance: true, ngImport: i0, template: `
|
87
|
+
QRCodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: QRCodeComponent, isStandalone: true, selector: "kendo-qrcode", inputs: { background: "background", border: "border", color: "color", encoding: "encoding", errorCorrection: "errorCorrection", overlay: "overlay", padding: "padding", renderAs: "renderAs", size: "size", value: "value", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoQRCode"], usesInheritance: true, ngImport: i0, template: `
|
88
88
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
89
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
89
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
90
90
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeComponent, decorators: [{
|
91
91
|
type: Component,
|
92
92
|
args: [{
|
@@ -95,7 +95,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
95
95
|
exportAs: 'kendoQRCode',
|
96
96
|
template: `
|
97
97
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
98
|
-
|
98
|
+
`,
|
99
|
+
standalone: true,
|
100
|
+
imports: [ResizeSensorComponent]
|
99
101
|
}]
|
100
102
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { background: [{
|
101
103
|
type: Input
|
@@ -3,9 +3,11 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { NgModule } from '@angular/core';
|
6
|
-
import {
|
7
|
-
import {
|
6
|
+
import { KENDO_QRCODE } from './directives';
|
7
|
+
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
8
8
|
import * as i0 from "@angular/core";
|
9
|
+
import * as i1 from "./qrcode.component";
|
10
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
9
11
|
/**
|
10
12
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
11
13
|
* definition for the QR Code component.
|
@@ -40,13 +42,13 @@ import * as i0 from "@angular/core";
|
|
40
42
|
export class QRCodeModule {
|
41
43
|
}
|
42
44
|
QRCodeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
43
|
-
QRCodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule,
|
44
|
-
QRCodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, imports: [
|
45
|
+
QRCodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, imports: [i1.QRCodeComponent], exports: [i1.QRCodeComponent] });
|
46
|
+
QRCodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, providers: [ResizeBatchService], imports: [KENDO_QRCODE] });
|
45
47
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, decorators: [{
|
46
48
|
type: NgModule,
|
47
49
|
args: [{
|
48
|
-
|
49
|
-
|
50
|
-
|
50
|
+
imports: [...KENDO_QRCODE],
|
51
|
+
exports: [...KENDO_QRCODE],
|
52
|
+
providers: [ResizeBatchService]
|
51
53
|
}]
|
52
54
|
}] });
|
@@ -5,8 +5,7 @@
|
|
5
5
|
import * as i0 from '@angular/core';
|
6
6
|
import { isDevMode, Directive, Input, ViewChild, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
7
7
|
import { Barcode, QRCode, barcodeValidator, qrcodeValidator } from '@progress/kendo-charts';
|
8
|
-
import
|
9
|
-
import { isDocumentAvailable, ResizeSensorModule } from '@progress/kendo-angular-common';
|
8
|
+
import { isDocumentAvailable, ResizeSensorComponent, ResizeBatchService } from '@progress/kendo-angular-common';
|
10
9
|
import { exportImage, exportSVG } from '@progress/kendo-drawing';
|
11
10
|
import { validatePackage } from '@progress/kendo-licensing';
|
12
11
|
|
@@ -17,8 +16,8 @@ const packageMetadata = {
|
|
17
16
|
name: '@progress/kendo-angular-barcodes',
|
18
17
|
productName: 'Kendo UI for Angular',
|
19
18
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
20
|
-
publishDate:
|
21
|
-
version: '16.
|
19
|
+
publishDate: 1721827992,
|
20
|
+
version: '16.6.0-develop.1',
|
22
21
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
23
22
|
};
|
24
23
|
|
@@ -194,9 +193,9 @@ class BarcodeComponent extends BaseComponent {
|
|
194
193
|
}
|
195
194
|
}
|
196
195
|
BarcodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
197
|
-
BarcodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarcodeComponent, selector: "kendo-barcode", inputs: { background: "background", border: "border", checksum: "checksum", color: "color", height: "height", padding: "padding", renderAs: "renderAs", text: "text", type: "type", value: "value", width: "width", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoBarcode"], usesInheritance: true, ngImport: i0, template: `
|
196
|
+
BarcodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarcodeComponent, isStandalone: true, selector: "kendo-barcode", inputs: { background: "background", border: "border", checksum: "checksum", color: "color", height: "height", padding: "padding", renderAs: "renderAs", text: "text", type: "type", value: "value", width: "width", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoBarcode"], usesInheritance: true, ngImport: i0, template: `
|
198
197
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
199
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
198
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
200
199
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeComponent, decorators: [{
|
201
200
|
type: Component,
|
202
201
|
args: [{
|
@@ -205,7 +204,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
205
204
|
selector: 'kendo-barcode',
|
206
205
|
template: `
|
207
206
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
208
|
-
|
207
|
+
`,
|
208
|
+
standalone: true,
|
209
|
+
imports: [ResizeSensorComponent]
|
209
210
|
}]
|
210
211
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { background: [{
|
211
212
|
type: Input
|
@@ -309,9 +310,9 @@ class QRCodeComponent extends BaseComponent {
|
|
309
310
|
}
|
310
311
|
}
|
311
312
|
QRCodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
312
|
-
QRCodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: QRCodeComponent, selector: "kendo-qrcode", inputs: { background: "background", border: "border", color: "color", encoding: "encoding", errorCorrection: "errorCorrection", overlay: "overlay", padding: "padding", renderAs: "renderAs", size: "size", value: "value", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoQRCode"], usesInheritance: true, ngImport: i0, template: `
|
313
|
+
QRCodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: QRCodeComponent, isStandalone: true, selector: "kendo-qrcode", inputs: { background: "background", border: "border", color: "color", encoding: "encoding", errorCorrection: "errorCorrection", overlay: "overlay", padding: "padding", renderAs: "renderAs", size: "size", value: "value", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoQRCode"], usesInheritance: true, ngImport: i0, template: `
|
313
314
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
314
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
315
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
315
316
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeComponent, decorators: [{
|
316
317
|
type: Component,
|
317
318
|
args: [{
|
@@ -320,7 +321,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
320
321
|
exportAs: 'kendoQRCode',
|
321
322
|
template: `
|
322
323
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
323
|
-
|
324
|
+
`,
|
325
|
+
standalone: true,
|
326
|
+
imports: [ResizeSensorComponent]
|
324
327
|
}]
|
325
328
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { background: [{
|
326
329
|
type: Input
|
@@ -346,6 +349,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
346
349
|
type: Input
|
347
350
|
}] } });
|
348
351
|
|
352
|
+
/**
|
353
|
+
* Utility array that contains all `Barcode` related components and directives
|
354
|
+
*/
|
355
|
+
const KENDO_BARCODE = [
|
356
|
+
BarcodeComponent
|
357
|
+
];
|
358
|
+
/**
|
359
|
+
* Utility array that contains all `QRCode` related components and directives
|
360
|
+
*/
|
361
|
+
const KENDO_QRCODE = [
|
362
|
+
QRCodeComponent
|
363
|
+
];
|
364
|
+
/**
|
365
|
+
* Utility array that contains all `@progress/kendo-angular-barcodes` related components and directives
|
366
|
+
*/
|
367
|
+
const KENDO_BARCODES = [
|
368
|
+
...KENDO_BARCODE,
|
369
|
+
...KENDO_QRCODE
|
370
|
+
];
|
371
|
+
|
372
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
349
373
|
/**
|
350
374
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
351
375
|
* definition for the Barcode component.
|
@@ -380,17 +404,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
380
404
|
class BarcodeModule {
|
381
405
|
}
|
382
406
|
BarcodeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
383
|
-
BarcodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule,
|
384
|
-
BarcodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, imports: [
|
407
|
+
BarcodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, imports: [BarcodeComponent], exports: [BarcodeComponent] });
|
408
|
+
BarcodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, providers: [ResizeBatchService], imports: [KENDO_BARCODE] });
|
385
409
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, decorators: [{
|
386
410
|
type: NgModule,
|
387
411
|
args: [{
|
388
|
-
|
389
|
-
|
390
|
-
|
412
|
+
imports: [...KENDO_BARCODE],
|
413
|
+
exports: [...KENDO_BARCODE],
|
414
|
+
providers: [ResizeBatchService]
|
391
415
|
}]
|
392
416
|
}] });
|
393
417
|
|
418
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
394
419
|
/**
|
395
420
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
396
421
|
* definition for the QR Code component.
|
@@ -425,17 +450,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
425
450
|
class QRCodeModule {
|
426
451
|
}
|
427
452
|
QRCodeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
428
|
-
QRCodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule,
|
429
|
-
QRCodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, imports: [
|
453
|
+
QRCodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, imports: [QRCodeComponent], exports: [QRCodeComponent] });
|
454
|
+
QRCodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, providers: [ResizeBatchService], imports: [KENDO_QRCODE] });
|
430
455
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, decorators: [{
|
431
456
|
type: NgModule,
|
432
457
|
args: [{
|
433
|
-
|
434
|
-
|
435
|
-
|
458
|
+
imports: [...KENDO_QRCODE],
|
459
|
+
exports: [...KENDO_QRCODE],
|
460
|
+
providers: [ResizeBatchService]
|
436
461
|
}]
|
437
462
|
}] });
|
438
463
|
|
464
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
439
465
|
/**
|
440
466
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
441
467
|
* definition for the Barcode and QR Code components.
|
@@ -470,12 +496,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
470
496
|
class BarcodesModule {
|
471
497
|
}
|
472
498
|
BarcodesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
473
|
-
BarcodesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, exports: [
|
474
|
-
BarcodesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule,
|
499
|
+
BarcodesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, imports: [BarcodeComponent, QRCodeComponent], exports: [BarcodeComponent, QRCodeComponent] });
|
500
|
+
BarcodesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, providers: [ResizeBatchService], imports: [KENDO_BARCODES] });
|
475
501
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, decorators: [{
|
476
502
|
type: NgModule,
|
477
503
|
args: [{
|
478
|
-
|
504
|
+
imports: [...KENDO_BARCODES],
|
505
|
+
exports: [...KENDO_BARCODES],
|
506
|
+
providers: [ResizeBatchService]
|
479
507
|
}]
|
480
508
|
}] });
|
481
509
|
|
@@ -568,5 +596,5 @@ const createQRCodeValidator = (encoding = 'ISO_8859_1') => {
|
|
568
596
|
* Generated bundle index. Do not edit.
|
569
597
|
*/
|
570
598
|
|
571
|
-
export { BarcodeComponent, BarcodeModule, BarcodesModule, QRCodeComponent, QRCodeModule, createBarcodeValidator, createQRCodeValidator };
|
599
|
+
export { BarcodeComponent, BarcodeModule, BarcodesModule, KENDO_BARCODE, KENDO_BARCODES, KENDO_QRCODE, QRCodeComponent, QRCodeModule, createBarcodeValidator, createQRCodeValidator };
|
572
600
|
|
@@ -5,8 +5,7 @@
|
|
5
5
|
import * as i0 from '@angular/core';
|
6
6
|
import { isDevMode, Directive, Input, ViewChild, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
7
7
|
import { Barcode, QRCode, barcodeValidator, qrcodeValidator } from '@progress/kendo-charts';
|
8
|
-
import
|
9
|
-
import { isDocumentAvailable, ResizeSensorModule } from '@progress/kendo-angular-common';
|
8
|
+
import { isDocumentAvailable, ResizeSensorComponent, ResizeBatchService } from '@progress/kendo-angular-common';
|
10
9
|
import { exportImage, exportSVG } from '@progress/kendo-drawing';
|
11
10
|
import { validatePackage } from '@progress/kendo-licensing';
|
12
11
|
|
@@ -17,8 +16,8 @@ const packageMetadata = {
|
|
17
16
|
name: '@progress/kendo-angular-barcodes',
|
18
17
|
productName: 'Kendo UI for Angular',
|
19
18
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
20
|
-
publishDate:
|
21
|
-
version: '16.
|
19
|
+
publishDate: 1721827992,
|
20
|
+
version: '16.6.0-develop.1',
|
22
21
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
23
22
|
};
|
24
23
|
|
@@ -194,9 +193,9 @@ class BarcodeComponent extends BaseComponent {
|
|
194
193
|
}
|
195
194
|
}
|
196
195
|
BarcodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
197
|
-
BarcodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarcodeComponent, selector: "kendo-barcode", inputs: { background: "background", border: "border", checksum: "checksum", color: "color", height: "height", padding: "padding", renderAs: "renderAs", text: "text", type: "type", value: "value", width: "width", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoBarcode"], usesInheritance: true, ngImport: i0, template: `
|
196
|
+
BarcodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BarcodeComponent, isStandalone: true, selector: "kendo-barcode", inputs: { background: "background", border: "border", checksum: "checksum", color: "color", height: "height", padding: "padding", renderAs: "renderAs", text: "text", type: "type", value: "value", width: "width", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoBarcode"], usesInheritance: true, ngImport: i0, template: `
|
198
197
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
199
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
198
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
200
199
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeComponent, decorators: [{
|
201
200
|
type: Component,
|
202
201
|
args: [{
|
@@ -205,7 +204,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
205
204
|
selector: 'kendo-barcode',
|
206
205
|
template: `
|
207
206
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
208
|
-
|
207
|
+
`,
|
208
|
+
standalone: true,
|
209
|
+
imports: [ResizeSensorComponent]
|
209
210
|
}]
|
210
211
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { background: [{
|
211
212
|
type: Input
|
@@ -309,9 +310,9 @@ class QRCodeComponent extends BaseComponent {
|
|
309
310
|
}
|
310
311
|
}
|
311
312
|
QRCodeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
312
|
-
QRCodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: QRCodeComponent, selector: "kendo-qrcode", inputs: { background: "background", border: "border", color: "color", encoding: "encoding", errorCorrection: "errorCorrection", overlay: "overlay", padding: "padding", renderAs: "renderAs", size: "size", value: "value", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoQRCode"], usesInheritance: true, ngImport: i0, template: `
|
313
|
+
QRCodeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: QRCodeComponent, isStandalone: true, selector: "kendo-qrcode", inputs: { background: "background", border: "border", color: "color", encoding: "encoding", errorCorrection: "errorCorrection", overlay: "overlay", padding: "padding", renderAs: "renderAs", size: "size", value: "value", resizeRateLimit: "resizeRateLimit" }, exportAs: ["kendoQRCode"], usesInheritance: true, ngImport: i0, template: `
|
313
314
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
314
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
315
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
315
316
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeComponent, decorators: [{
|
316
317
|
type: Component,
|
317
318
|
args: [{
|
@@ -320,7 +321,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
320
321
|
exportAs: 'kendoQRCode',
|
321
322
|
template: `
|
322
323
|
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="resizeRateLimit"></kendo-resize-sensor>
|
323
|
-
|
324
|
+
`,
|
325
|
+
standalone: true,
|
326
|
+
imports: [ResizeSensorComponent]
|
324
327
|
}]
|
325
328
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { background: [{
|
326
329
|
type: Input
|
@@ -346,6 +349,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
346
349
|
type: Input
|
347
350
|
}] } });
|
348
351
|
|
352
|
+
/**
|
353
|
+
* Utility array that contains all `Barcode` related components and directives
|
354
|
+
*/
|
355
|
+
const KENDO_BARCODE = [
|
356
|
+
BarcodeComponent
|
357
|
+
];
|
358
|
+
/**
|
359
|
+
* Utility array that contains all `QRCode` related components and directives
|
360
|
+
*/
|
361
|
+
const KENDO_QRCODE = [
|
362
|
+
QRCodeComponent
|
363
|
+
];
|
364
|
+
/**
|
365
|
+
* Utility array that contains all `@progress/kendo-angular-barcodes` related components and directives
|
366
|
+
*/
|
367
|
+
const KENDO_BARCODES = [
|
368
|
+
...KENDO_BARCODE,
|
369
|
+
...KENDO_QRCODE
|
370
|
+
];
|
371
|
+
|
372
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
349
373
|
/**
|
350
374
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
351
375
|
* definition for the Barcode component.
|
@@ -380,17 +404,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
380
404
|
class BarcodeModule {
|
381
405
|
}
|
382
406
|
BarcodeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
383
|
-
BarcodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule,
|
384
|
-
BarcodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, imports: [
|
407
|
+
BarcodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, imports: [BarcodeComponent], exports: [BarcodeComponent] });
|
408
|
+
BarcodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, providers: [ResizeBatchService], imports: [KENDO_BARCODE] });
|
385
409
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodeModule, decorators: [{
|
386
410
|
type: NgModule,
|
387
411
|
args: [{
|
388
|
-
|
389
|
-
|
390
|
-
|
412
|
+
imports: [...KENDO_BARCODE],
|
413
|
+
exports: [...KENDO_BARCODE],
|
414
|
+
providers: [ResizeBatchService]
|
391
415
|
}]
|
392
416
|
}] });
|
393
417
|
|
418
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
394
419
|
/**
|
395
420
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
396
421
|
* definition for the QR Code component.
|
@@ -425,17 +450,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
425
450
|
class QRCodeModule {
|
426
451
|
}
|
427
452
|
QRCodeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
428
|
-
QRCodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule,
|
429
|
-
QRCodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, imports: [
|
453
|
+
QRCodeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, imports: [QRCodeComponent], exports: [QRCodeComponent] });
|
454
|
+
QRCodeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, providers: [ResizeBatchService], imports: [KENDO_QRCODE] });
|
430
455
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: QRCodeModule, decorators: [{
|
431
456
|
type: NgModule,
|
432
457
|
args: [{
|
433
|
-
|
434
|
-
|
435
|
-
|
458
|
+
imports: [...KENDO_QRCODE],
|
459
|
+
exports: [...KENDO_QRCODE],
|
460
|
+
providers: [ResizeBatchService]
|
436
461
|
}]
|
437
462
|
}] });
|
438
463
|
|
464
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
439
465
|
/**
|
440
466
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
441
467
|
* definition for the Barcode and QR Code components.
|
@@ -470,12 +496,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
470
496
|
class BarcodesModule {
|
471
497
|
}
|
472
498
|
BarcodesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
473
|
-
BarcodesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, exports: [
|
474
|
-
BarcodesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule,
|
499
|
+
BarcodesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, imports: [BarcodeComponent, QRCodeComponent], exports: [BarcodeComponent, QRCodeComponent] });
|
500
|
+
BarcodesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, providers: [ResizeBatchService], imports: [KENDO_BARCODES] });
|
475
501
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BarcodesModule, decorators: [{
|
476
502
|
type: NgModule,
|
477
503
|
args: [{
|
478
|
-
|
504
|
+
imports: [...KENDO_BARCODES],
|
505
|
+
exports: [...KENDO_BARCODES],
|
506
|
+
providers: [ResizeBatchService]
|
479
507
|
}]
|
480
508
|
}] });
|
481
509
|
|
@@ -568,5 +596,5 @@ const createQRCodeValidator = (encoding = 'ISO_8859_1') => {
|
|
568
596
|
* Generated bundle index. Do not edit.
|
569
597
|
*/
|
570
598
|
|
571
|
-
export { BarcodeComponent, BarcodeModule, BarcodesModule, QRCodeComponent, QRCodeModule, createBarcodeValidator, createQRCodeValidator };
|
599
|
+
export { BarcodeComponent, BarcodeModule, BarcodesModule, KENDO_BARCODE, KENDO_BARCODES, KENDO_QRCODE, QRCodeComponent, QRCodeModule, createBarcodeValidator, createQRCodeValidator };
|
572
600
|
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-barcodes",
|
3
|
-
"version": "16.
|
3
|
+
"version": "16.6.0-develop.1",
|
4
4
|
"description": "Kendo UI Angular Barcodes",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -23,14 +23,14 @@
|
|
23
23
|
"@angular/core": "15 - 18",
|
24
24
|
"@angular/forms": "15 - 18",
|
25
25
|
"@angular/platform-browser": "15 - 18",
|
26
|
-
"@progress/kendo-angular-common": "16.
|
26
|
+
"@progress/kendo-angular-common": "16.6.0-develop.1",
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
29
29
|
"rxjs": "^6.5.3 || ^7.0.0"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
32
|
"tslib": "^2.3.1",
|
33
|
-
"@progress/kendo-angular-schematics": "16.
|
33
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.1",
|
34
34
|
"@progress/kendo-charts": "2.4.1"
|
35
35
|
},
|
36
36
|
"schematics": "./schematics/collection.json",
|
package/qrcode.component.d.ts
CHANGED
@@ -288,5 +288,5 @@ export declare class QRCodeComponent extends BaseComponent {
|
|
288
288
|
protected createInstance(element: any, options: any): QRCode;
|
289
289
|
protected onError(error: Error): void;
|
290
290
|
static ɵfac: i0.ɵɵFactoryDeclaration<QRCodeComponent, never>;
|
291
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QRCodeComponent, "kendo-qrcode", ["kendoQRCode"], { "background": "background"; "border": "border"; "color": "color"; "encoding": "encoding"; "errorCorrection": "errorCorrection"; "overlay": "overlay"; "padding": "padding"; "renderAs": "renderAs"; "size": "size"; "value": "value"; "resizeRateLimit": "resizeRateLimit"; }, {}, never, never,
|
291
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QRCodeComponent, "kendo-qrcode", ["kendoQRCode"], { "background": "background"; "border": "border"; "color": "color"; "encoding": "encoding"; "errorCorrection": "errorCorrection"; "overlay": "overlay"; "padding": "padding"; "renderAs": "renderAs"; "size": "size"; "value": "value"; "resizeRateLimit": "resizeRateLimit"; }, {}, never, never, true, never>;
|
292
292
|
}
|
package/qrcode.module.d.ts
CHANGED
@@ -4,7 +4,6 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
import * as i1 from "./qrcode.component";
|
7
|
-
import * as i2 from "@progress/kendo-angular-common";
|
8
7
|
/**
|
9
8
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
10
9
|
* definition for the QR Code component.
|
@@ -38,6 +37,6 @@ import * as i2 from "@progress/kendo-angular-common";
|
|
38
37
|
*/
|
39
38
|
export declare class QRCodeModule {
|
40
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<QRCodeModule, never>;
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<QRCodeModule, [typeof i1.QRCodeComponent], [typeof
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QRCodeModule, never, [typeof i1.QRCodeComponent], [typeof i1.QRCodeComponent]>;
|
42
41
|
static ɵinj: i0.ɵɵInjectorDeclaration<QRCodeModule>;
|
43
42
|
}
|
@@ -9,7 +9,7 @@ function default_1(options) {
|
|
9
9
|
package: 'barcodes',
|
10
10
|
// Additional dependencies to install (required by npm 6.x)
|
11
11
|
peerDependencies: {
|
12
|
-
// '@progress/kendo-angular-foo': '16.
|
12
|
+
// '@progress/kendo-angular-foo': '16.6.0-develop.1'
|
13
13
|
} });
|
14
14
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
15
15
|
}
|