@mescius/wijmo.angular2.barcode.specialized 5.20232.939
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/COMMERCIAL-LICENSE.html +485 -0
- package/README.md +363 -0
- package/es2015-commonjs.js +14 -0
- package/es2015-esm.js +156 -0
- package/es5-esm.js +156 -0
- package/index.d.ts +610 -0
- package/index.js +157 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,610 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
*
|
|
3
|
+
* Wijmo Library 5.20232.939
|
|
4
|
+
* https://developer.mescius.com/wijmo
|
|
5
|
+
*
|
|
6
|
+
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
|
|
9
|
+
* us.sales@mescius.com
|
|
10
|
+
* https://developer.mescius.com/wijmo/licensing
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* {@module wijmo.angular2.barcode.specialized}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.barcode.specialized</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2.barcode.specialized</b> is an external TypeScript module that can be imported to your code
|
|
18
|
+
* using its ambient module name. For example:
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
import * as ɵngcc0 from '@angular/core';
|
|
27
|
+
import * as ɵngcc1 from '@angular/common';
|
|
28
|
+
export declare var ___keepComment: any;
|
|
29
|
+
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
30
|
+
import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
|
|
31
|
+
import * as wjcBarcodeSpecialized from '@grapecity/wijmo.barcode.specialized';
|
|
32
|
+
declare var wjBarcodeDataMatrixEcc000Meta: IWjComponentMeta;
|
|
33
|
+
export { wjBarcodeDataMatrixEcc000Meta };
|
|
34
|
+
/**
|
|
35
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.DataMatrixEcc000} control.
|
|
36
|
+
*
|
|
37
|
+
* Use the <b>wj-barcode-data-matrix-ecc000</b> component to add <b>DataMatrixEcc000</b> controls to your
|
|
38
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
39
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
40
|
+
*
|
|
41
|
+
* The <b>WjBarcodeDataMatrixEcc000</b> component is derived from the <b>DataMatrixEcc000</b> control and
|
|
42
|
+
* inherits all its properties, events and methods.
|
|
43
|
+
*/
|
|
44
|
+
export declare class WjBarcodeDataMatrixEcc000 extends wjcBarcodeSpecialized.DataMatrixEcc000 implements OnInit, OnDestroy, AfterViewInit {
|
|
45
|
+
static readonly meta: IWjComponentMetadata;
|
|
46
|
+
private _wjBehaviour;
|
|
47
|
+
/**
|
|
48
|
+
* Indicates whether the component has been initialized by Angular.
|
|
49
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
50
|
+
*/
|
|
51
|
+
isInitialized: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
54
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
55
|
+
*/
|
|
56
|
+
initialized: EventEmitter<any>;
|
|
57
|
+
/**
|
|
58
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
59
|
+
* Default value is ''.
|
|
60
|
+
*/
|
|
61
|
+
wjModelProperty: string;
|
|
62
|
+
/**
|
|
63
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
64
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
65
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
66
|
+
*/
|
|
67
|
+
gotFocusNg: EventEmitter<any>;
|
|
68
|
+
/**
|
|
69
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
70
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
71
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
72
|
+
*/
|
|
73
|
+
lostFocusNg: EventEmitter<any>;
|
|
74
|
+
/**
|
|
75
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
76
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
77
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
78
|
+
*/
|
|
79
|
+
refreshingNg: EventEmitter<any>;
|
|
80
|
+
/**
|
|
81
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
82
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
83
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
84
|
+
*/
|
|
85
|
+
refreshedNg: EventEmitter<any>;
|
|
86
|
+
/**
|
|
87
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
88
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
89
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
90
|
+
*/
|
|
91
|
+
invalidInputNg: EventEmitter<any>;
|
|
92
|
+
/**
|
|
93
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
94
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
95
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
96
|
+
*/
|
|
97
|
+
isValidChangedNg: EventEmitter<any>;
|
|
98
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
99
|
+
/**
|
|
100
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
101
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
102
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
103
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
104
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
105
|
+
*/
|
|
106
|
+
created(): void;
|
|
107
|
+
ngOnInit(): void;
|
|
108
|
+
ngAfterViewInit(): void;
|
|
109
|
+
ngOnDestroy(): void;
|
|
110
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
111
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeDataMatrixEcc000, [null, null, { optional: true; skipSelf: true; }]>;
|
|
112
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeDataMatrixEcc000, "wj-barcode-data-matrix-ecc000", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "version": "version"; "symbolSize": "symbolSize"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
113
|
+
}
|
|
114
|
+
declare var wjBarcodeDataMatrixEcc200Meta: IWjComponentMeta;
|
|
115
|
+
export { wjBarcodeDataMatrixEcc200Meta };
|
|
116
|
+
/**
|
|
117
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.DataMatrixEcc200} control.
|
|
118
|
+
*
|
|
119
|
+
* Use the <b>wj-barcode-data-matrix-ecc200</b> component to add <b>DataMatrixEcc200</b> controls to your
|
|
120
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
121
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
122
|
+
*
|
|
123
|
+
* The <b>WjBarcodeDataMatrixEcc200</b> component is derived from the <b>DataMatrixEcc200</b> control and
|
|
124
|
+
* inherits all its properties, events and methods.
|
|
125
|
+
*/
|
|
126
|
+
export declare class WjBarcodeDataMatrixEcc200 extends wjcBarcodeSpecialized.DataMatrixEcc200 implements OnInit, OnDestroy, AfterViewInit {
|
|
127
|
+
static readonly meta: IWjComponentMetadata;
|
|
128
|
+
private _wjBehaviour;
|
|
129
|
+
/**
|
|
130
|
+
* Indicates whether the component has been initialized by Angular.
|
|
131
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
132
|
+
*/
|
|
133
|
+
isInitialized: boolean;
|
|
134
|
+
/**
|
|
135
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
136
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
137
|
+
*/
|
|
138
|
+
initialized: EventEmitter<any>;
|
|
139
|
+
/**
|
|
140
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
141
|
+
* Default value is ''.
|
|
142
|
+
*/
|
|
143
|
+
wjModelProperty: string;
|
|
144
|
+
/**
|
|
145
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
146
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
147
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
148
|
+
*/
|
|
149
|
+
gotFocusNg: EventEmitter<any>;
|
|
150
|
+
/**
|
|
151
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
152
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
153
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
154
|
+
*/
|
|
155
|
+
lostFocusNg: EventEmitter<any>;
|
|
156
|
+
/**
|
|
157
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
158
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
159
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
160
|
+
*/
|
|
161
|
+
refreshingNg: EventEmitter<any>;
|
|
162
|
+
/**
|
|
163
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
164
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
165
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
166
|
+
*/
|
|
167
|
+
refreshedNg: EventEmitter<any>;
|
|
168
|
+
/**
|
|
169
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
170
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
171
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
172
|
+
*/
|
|
173
|
+
invalidInputNg: EventEmitter<any>;
|
|
174
|
+
/**
|
|
175
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
176
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
177
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
178
|
+
*/
|
|
179
|
+
isValidChangedNg: EventEmitter<any>;
|
|
180
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
181
|
+
/**
|
|
182
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
183
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
184
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
185
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
186
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
187
|
+
*/
|
|
188
|
+
created(): void;
|
|
189
|
+
ngOnInit(): void;
|
|
190
|
+
ngAfterViewInit(): void;
|
|
191
|
+
ngOnDestroy(): void;
|
|
192
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
193
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeDataMatrixEcc200, [null, null, { optional: true; skipSelf: true; }]>;
|
|
194
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeDataMatrixEcc200, "wj-barcode-data-matrix-ecc200", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "symbolSize": "symbolSize"; "encodingMode": "encodingMode"; "structuredAppend": "structuredAppend"; "structureNumber": "structureNumber"; "fileIdentifier": "fileIdentifier"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
195
|
+
}
|
|
196
|
+
declare var wjBarcodeCode49Meta: IWjComponentMeta;
|
|
197
|
+
export { wjBarcodeCode49Meta };
|
|
198
|
+
/**
|
|
199
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.Code49} control.
|
|
200
|
+
*
|
|
201
|
+
* Use the <b>wj-barcode-code49</b> component to add <b>Code49</b> controls to your
|
|
202
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
203
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
204
|
+
*
|
|
205
|
+
* The <b>WjBarcodeCode49</b> component is derived from the <b>Code49</b> control and
|
|
206
|
+
* inherits all its properties, events and methods.
|
|
207
|
+
*/
|
|
208
|
+
export declare class WjBarcodeCode49 extends wjcBarcodeSpecialized.Code49 implements OnInit, OnDestroy, AfterViewInit {
|
|
209
|
+
static readonly meta: IWjComponentMetadata;
|
|
210
|
+
private _wjBehaviour;
|
|
211
|
+
/**
|
|
212
|
+
* Indicates whether the component has been initialized by Angular.
|
|
213
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
214
|
+
*/
|
|
215
|
+
isInitialized: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
218
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
219
|
+
*/
|
|
220
|
+
initialized: EventEmitter<any>;
|
|
221
|
+
/**
|
|
222
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
223
|
+
* Default value is ''.
|
|
224
|
+
*/
|
|
225
|
+
wjModelProperty: string;
|
|
226
|
+
/**
|
|
227
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
228
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
229
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
230
|
+
*/
|
|
231
|
+
gotFocusNg: EventEmitter<any>;
|
|
232
|
+
/**
|
|
233
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
234
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
235
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
236
|
+
*/
|
|
237
|
+
lostFocusNg: EventEmitter<any>;
|
|
238
|
+
/**
|
|
239
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
240
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
241
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
242
|
+
*/
|
|
243
|
+
refreshingNg: EventEmitter<any>;
|
|
244
|
+
/**
|
|
245
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
246
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
247
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
248
|
+
*/
|
|
249
|
+
refreshedNg: EventEmitter<any>;
|
|
250
|
+
/**
|
|
251
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
252
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
253
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
254
|
+
*/
|
|
255
|
+
invalidInputNg: EventEmitter<any>;
|
|
256
|
+
/**
|
|
257
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
258
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
259
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
260
|
+
*/
|
|
261
|
+
isValidChangedNg: EventEmitter<any>;
|
|
262
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
263
|
+
/**
|
|
264
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
265
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
266
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
267
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
268
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
269
|
+
*/
|
|
270
|
+
created(): void;
|
|
271
|
+
ngOnInit(): void;
|
|
272
|
+
ngAfterViewInit(): void;
|
|
273
|
+
ngOnDestroy(): void;
|
|
274
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
275
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeCode49, [null, null, { optional: true; skipSelf: true; }]>;
|
|
276
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeCode49, "wj-barcode-code49", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "showLabel": "showLabel"; "grouping": "grouping"; "groupIndex": "groupIndex"; "labelPosition": "labelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
277
|
+
}
|
|
278
|
+
declare var wjBarcodeCode93Meta: IWjComponentMeta;
|
|
279
|
+
export { wjBarcodeCode93Meta };
|
|
280
|
+
/**
|
|
281
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.Code93} control.
|
|
282
|
+
*
|
|
283
|
+
* Use the <b>wj-barcode-code93</b> component to add <b>Code93</b> controls to your
|
|
284
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
285
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
286
|
+
*
|
|
287
|
+
* The <b>WjBarcodeCode93</b> component is derived from the <b>Code93</b> control and
|
|
288
|
+
* inherits all its properties, events and methods.
|
|
289
|
+
*/
|
|
290
|
+
export declare class WjBarcodeCode93 extends wjcBarcodeSpecialized.Code93 implements OnInit, OnDestroy, AfterViewInit {
|
|
291
|
+
static readonly meta: IWjComponentMetadata;
|
|
292
|
+
private _wjBehaviour;
|
|
293
|
+
/**
|
|
294
|
+
* Indicates whether the component has been initialized by Angular.
|
|
295
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
296
|
+
*/
|
|
297
|
+
isInitialized: boolean;
|
|
298
|
+
/**
|
|
299
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
300
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
301
|
+
*/
|
|
302
|
+
initialized: EventEmitter<any>;
|
|
303
|
+
/**
|
|
304
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
305
|
+
* Default value is ''.
|
|
306
|
+
*/
|
|
307
|
+
wjModelProperty: string;
|
|
308
|
+
/**
|
|
309
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
310
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
311
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
312
|
+
*/
|
|
313
|
+
gotFocusNg: EventEmitter<any>;
|
|
314
|
+
/**
|
|
315
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
316
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
317
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
318
|
+
*/
|
|
319
|
+
lostFocusNg: EventEmitter<any>;
|
|
320
|
+
/**
|
|
321
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
322
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
323
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
324
|
+
*/
|
|
325
|
+
refreshingNg: EventEmitter<any>;
|
|
326
|
+
/**
|
|
327
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
328
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
329
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
330
|
+
*/
|
|
331
|
+
refreshedNg: EventEmitter<any>;
|
|
332
|
+
/**
|
|
333
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
334
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
335
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
336
|
+
*/
|
|
337
|
+
invalidInputNg: EventEmitter<any>;
|
|
338
|
+
/**
|
|
339
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
340
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
341
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
342
|
+
*/
|
|
343
|
+
isValidChangedNg: EventEmitter<any>;
|
|
344
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
345
|
+
/**
|
|
346
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
347
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
348
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
349
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
350
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
351
|
+
*/
|
|
352
|
+
created(): void;
|
|
353
|
+
ngOnInit(): void;
|
|
354
|
+
ngAfterViewInit(): void;
|
|
355
|
+
ngOnDestroy(): void;
|
|
356
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
357
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeCode93, [null, null, { optional: true; skipSelf: true; }]>;
|
|
358
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeCode93, "wj-barcode-code93", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "autoWidth": "autoWidth"; "autoWidthZoom": "autoWidthZoom"; "showLabel": "showLabel"; "checkDigit": "checkDigit"; "fullAscii": "fullAscii"; "labelPosition": "labelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
359
|
+
}
|
|
360
|
+
declare var wjBarcodeItf14Meta: IWjComponentMeta;
|
|
361
|
+
export { wjBarcodeItf14Meta };
|
|
362
|
+
/**
|
|
363
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.Itf14} control.
|
|
364
|
+
*
|
|
365
|
+
* Use the <b>wj-barcode-itf14</b> component to add <b>Itf14</b> controls to your
|
|
366
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
367
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
368
|
+
*
|
|
369
|
+
* The <b>WjBarcodeItf14</b> component is derived from the <b>Itf14</b> control and
|
|
370
|
+
* inherits all its properties, events and methods.
|
|
371
|
+
*/
|
|
372
|
+
export declare class WjBarcodeItf14 extends wjcBarcodeSpecialized.Itf14 implements OnInit, OnDestroy, AfterViewInit {
|
|
373
|
+
static readonly meta: IWjComponentMetadata;
|
|
374
|
+
private _wjBehaviour;
|
|
375
|
+
/**
|
|
376
|
+
* Indicates whether the component has been initialized by Angular.
|
|
377
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
378
|
+
*/
|
|
379
|
+
isInitialized: boolean;
|
|
380
|
+
/**
|
|
381
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
382
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
383
|
+
*/
|
|
384
|
+
initialized: EventEmitter<any>;
|
|
385
|
+
/**
|
|
386
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
387
|
+
* Default value is ''.
|
|
388
|
+
*/
|
|
389
|
+
wjModelProperty: string;
|
|
390
|
+
/**
|
|
391
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
392
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
393
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
394
|
+
*/
|
|
395
|
+
gotFocusNg: EventEmitter<any>;
|
|
396
|
+
/**
|
|
397
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
398
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
399
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
400
|
+
*/
|
|
401
|
+
lostFocusNg: EventEmitter<any>;
|
|
402
|
+
/**
|
|
403
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
404
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
405
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
406
|
+
*/
|
|
407
|
+
refreshingNg: EventEmitter<any>;
|
|
408
|
+
/**
|
|
409
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
410
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
411
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
412
|
+
*/
|
|
413
|
+
refreshedNg: EventEmitter<any>;
|
|
414
|
+
/**
|
|
415
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
416
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
417
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
418
|
+
*/
|
|
419
|
+
invalidInputNg: EventEmitter<any>;
|
|
420
|
+
/**
|
|
421
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
422
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
423
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
424
|
+
*/
|
|
425
|
+
isValidChangedNg: EventEmitter<any>;
|
|
426
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
427
|
+
/**
|
|
428
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
429
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
430
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
431
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
432
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
433
|
+
*/
|
|
434
|
+
created(): void;
|
|
435
|
+
ngOnInit(): void;
|
|
436
|
+
ngAfterViewInit(): void;
|
|
437
|
+
ngOnDestroy(): void;
|
|
438
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
439
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeItf14, [null, null, { optional: true; skipSelf: true; }]>;
|
|
440
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeItf14, "wj-barcode-itf14", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "showLabel": "showLabel"; "nwRatio": "nwRatio"; "bearerBar": "bearerBar"; "labelPosition": "labelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
441
|
+
}
|
|
442
|
+
declare var wjBarcodeInterleaved2of5Meta: IWjComponentMeta;
|
|
443
|
+
export { wjBarcodeInterleaved2of5Meta };
|
|
444
|
+
/**
|
|
445
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.Interleaved2of5} control.
|
|
446
|
+
*
|
|
447
|
+
* Use the <b>wj-barcode-interleaved2of5</b> component to add <b>Interleaved2of5</b> controls to your
|
|
448
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
449
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
450
|
+
*
|
|
451
|
+
* The <b>WjBarcodeInterleaved2of5</b> component is derived from the <b>Interleaved2of5</b> control and
|
|
452
|
+
* inherits all its properties, events and methods.
|
|
453
|
+
*/
|
|
454
|
+
export declare class WjBarcodeInterleaved2of5 extends wjcBarcodeSpecialized.Interleaved2of5 implements OnInit, OnDestroy, AfterViewInit {
|
|
455
|
+
static readonly meta: IWjComponentMetadata;
|
|
456
|
+
private _wjBehaviour;
|
|
457
|
+
/**
|
|
458
|
+
* Indicates whether the component has been initialized by Angular.
|
|
459
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
460
|
+
*/
|
|
461
|
+
isInitialized: boolean;
|
|
462
|
+
/**
|
|
463
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
464
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
465
|
+
*/
|
|
466
|
+
initialized: EventEmitter<any>;
|
|
467
|
+
/**
|
|
468
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
469
|
+
* Default value is ''.
|
|
470
|
+
*/
|
|
471
|
+
wjModelProperty: string;
|
|
472
|
+
/**
|
|
473
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
474
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
475
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
476
|
+
*/
|
|
477
|
+
gotFocusNg: EventEmitter<any>;
|
|
478
|
+
/**
|
|
479
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
480
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
481
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
482
|
+
*/
|
|
483
|
+
lostFocusNg: EventEmitter<any>;
|
|
484
|
+
/**
|
|
485
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
486
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
487
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
488
|
+
*/
|
|
489
|
+
refreshingNg: EventEmitter<any>;
|
|
490
|
+
/**
|
|
491
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
492
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
493
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
494
|
+
*/
|
|
495
|
+
refreshedNg: EventEmitter<any>;
|
|
496
|
+
/**
|
|
497
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
498
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
499
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
500
|
+
*/
|
|
501
|
+
invalidInputNg: EventEmitter<any>;
|
|
502
|
+
/**
|
|
503
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
504
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
505
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
506
|
+
*/
|
|
507
|
+
isValidChangedNg: EventEmitter<any>;
|
|
508
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
509
|
+
/**
|
|
510
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
511
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
512
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
513
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
514
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
515
|
+
*/
|
|
516
|
+
created(): void;
|
|
517
|
+
ngOnInit(): void;
|
|
518
|
+
ngAfterViewInit(): void;
|
|
519
|
+
ngOnDestroy(): void;
|
|
520
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
521
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeInterleaved2of5, [null, null, { optional: true; skipSelf: true; }]>;
|
|
522
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeInterleaved2of5, "wj-barcode-interleaved2of5", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "autoWidth": "autoWidth"; "autoWidthZoom": "autoWidthZoom"; "showLabel": "showLabel"; "nwRatio": "nwRatio"; "bearerBar": "bearerBar"; "labelPosition": "labelPosition"; "checkCharacter": "checkCharacter"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
523
|
+
}
|
|
524
|
+
declare var wjBarcodeJapanesePostalMeta: IWjComponentMeta;
|
|
525
|
+
export { wjBarcodeJapanesePostalMeta };
|
|
526
|
+
/**
|
|
527
|
+
* Angular 2 component for the {@link wijmo.barcode.specialized.JapanesePostal} control.
|
|
528
|
+
*
|
|
529
|
+
* Use the <b>wj-barcode-japanese-postal</b> component to add <b>JapanesePostal</b> controls to your
|
|
530
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
531
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
532
|
+
*
|
|
533
|
+
* The <b>WjBarcodeJapanesePostal</b> component is derived from the <b>JapanesePostal</b> control and
|
|
534
|
+
* inherits all its properties, events and methods.
|
|
535
|
+
*/
|
|
536
|
+
export declare class WjBarcodeJapanesePostal extends wjcBarcodeSpecialized.JapanesePostal implements OnInit, OnDestroy, AfterViewInit {
|
|
537
|
+
static readonly meta: IWjComponentMetadata;
|
|
538
|
+
private _wjBehaviour;
|
|
539
|
+
/**
|
|
540
|
+
* Indicates whether the component has been initialized by Angular.
|
|
541
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
542
|
+
*/
|
|
543
|
+
isInitialized: boolean;
|
|
544
|
+
/**
|
|
545
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
546
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
547
|
+
*/
|
|
548
|
+
initialized: EventEmitter<any>;
|
|
549
|
+
/**
|
|
550
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
551
|
+
* Default value is ''.
|
|
552
|
+
*/
|
|
553
|
+
wjModelProperty: string;
|
|
554
|
+
/**
|
|
555
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
556
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
557
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
558
|
+
*/
|
|
559
|
+
gotFocusNg: EventEmitter<any>;
|
|
560
|
+
/**
|
|
561
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
562
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
563
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
564
|
+
*/
|
|
565
|
+
lostFocusNg: EventEmitter<any>;
|
|
566
|
+
/**
|
|
567
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
568
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
569
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
570
|
+
*/
|
|
571
|
+
refreshingNg: EventEmitter<any>;
|
|
572
|
+
/**
|
|
573
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
574
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
575
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
576
|
+
*/
|
|
577
|
+
refreshedNg: EventEmitter<any>;
|
|
578
|
+
/**
|
|
579
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
580
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
581
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
582
|
+
*/
|
|
583
|
+
invalidInputNg: EventEmitter<any>;
|
|
584
|
+
/**
|
|
585
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
586
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
587
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
588
|
+
*/
|
|
589
|
+
isValidChangedNg: EventEmitter<any>;
|
|
590
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
591
|
+
/**
|
|
592
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
593
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
594
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
595
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
596
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
597
|
+
*/
|
|
598
|
+
created(): void;
|
|
599
|
+
ngOnInit(): void;
|
|
600
|
+
ngAfterViewInit(): void;
|
|
601
|
+
ngOnDestroy(): void;
|
|
602
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
603
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeJapanesePostal, [null, null, { optional: true; skipSelf: true; }]>;
|
|
604
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeJapanesePostal, "wj-barcode-japanese-postal", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "showLabel": "showLabel"; "labelPosition": "labelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
605
|
+
}
|
|
606
|
+
export declare class WjBarcodeSpecializedModule {
|
|
607
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeSpecializedModule, never>;
|
|
608
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjBarcodeSpecializedModule, [typeof WjBarcodeDataMatrixEcc000, typeof WjBarcodeDataMatrixEcc200, typeof WjBarcodeCode49, typeof WjBarcodeCode93, typeof WjBarcodeItf14, typeof WjBarcodeInterleaved2of5, typeof WjBarcodeJapanesePostal], [typeof ɵngcc1.CommonModule], [typeof WjBarcodeDataMatrixEcc000, typeof WjBarcodeDataMatrixEcc200, typeof WjBarcodeCode49, typeof WjBarcodeCode93, typeof WjBarcodeItf14, typeof WjBarcodeInterleaved2of5, typeof WjBarcodeJapanesePostal]>;
|
|
609
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjBarcodeSpecializedModule>;
|
|
610
|
+
}
|