@mescius/wijmo.angular2.barcode.common 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 +213 -0
- package/es5-esm.js +213 -0
- package/index.d.ts +856 -0
- package/index.js +214 -0
- package/package.json +46 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,856 @@
|
|
|
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.common}
|
|
15
|
+
* Contains Angular 2 components for the <b>wijmo.barcode.common</b> module.
|
|
16
|
+
*
|
|
17
|
+
* <b>wijmo.angular2.barcode.common</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 wjcBarcodeCommon from '@grapecity/wijmo.barcode.common';
|
|
32
|
+
declare var wjBarcodeCodabarMeta: IWjComponentMeta;
|
|
33
|
+
export { wjBarcodeCodabarMeta };
|
|
34
|
+
/**
|
|
35
|
+
* Angular 2 component for the {@link wijmo.barcode.common.Codabar} control.
|
|
36
|
+
*
|
|
37
|
+
* Use the <b>wj-barcode-codabar</b> component to add <b>Codabar</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>WjBarcodeCodabar</b> component is derived from the <b>Codabar</b> control and
|
|
42
|
+
* inherits all its properties, events and methods.
|
|
43
|
+
*/
|
|
44
|
+
export declare class WjBarcodeCodabar extends wjcBarcodeCommon.Codabar 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<WjBarcodeCodabar, [null, null, { optional: true; skipSelf: true; }]>;
|
|
112
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeCodabar, "wj-barcode-codabar", 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"; "labelPosition": "labelPosition"; "nwRatio": "nwRatio"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
113
|
+
}
|
|
114
|
+
declare var wjBarcodeEan8Meta: IWjComponentMeta;
|
|
115
|
+
export { wjBarcodeEan8Meta };
|
|
116
|
+
/**
|
|
117
|
+
* Angular 2 component for the {@link wijmo.barcode.common.Ean8} control.
|
|
118
|
+
*
|
|
119
|
+
* Use the <b>wj-barcode-ean8</b> component to add <b>Ean8</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>WjBarcodeEan8</b> component is derived from the <b>Ean8</b> control and
|
|
124
|
+
* inherits all its properties, events and methods.
|
|
125
|
+
*/
|
|
126
|
+
export declare class WjBarcodeEan8 extends wjcBarcodeCommon.Ean8 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<WjBarcodeEan8, [null, null, { optional: true; skipSelf: true; }]>;
|
|
194
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeEan8, "wj-barcode-ean8", 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>;
|
|
195
|
+
}
|
|
196
|
+
declare var wjBarcodeEan13Meta: IWjComponentMeta;
|
|
197
|
+
export { wjBarcodeEan13Meta };
|
|
198
|
+
/**
|
|
199
|
+
* Angular 2 component for the {@link wijmo.barcode.common.Ean13} control.
|
|
200
|
+
*
|
|
201
|
+
* Use the <b>wj-barcode-ean13</b> component to add <b>Ean13</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>WjBarcodeEan13</b> component is derived from the <b>Ean13</b> control and
|
|
206
|
+
* inherits all its properties, events and methods.
|
|
207
|
+
*/
|
|
208
|
+
export declare class WjBarcodeEan13 extends wjcBarcodeCommon.Ean13 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<WjBarcodeEan13, [null, null, { optional: true; skipSelf: true; }]>;
|
|
276
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeEan13, "wj-barcode-ean13", 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"; "addOn": "addOn"; "addOnHeight": "addOnHeight"; "addOnLabelPosition": "addOnLabelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
277
|
+
}
|
|
278
|
+
declare var wjBarcodeCode39Meta: IWjComponentMeta;
|
|
279
|
+
export { wjBarcodeCode39Meta };
|
|
280
|
+
/**
|
|
281
|
+
* Angular 2 component for the {@link wijmo.barcode.common.Code39} control.
|
|
282
|
+
*
|
|
283
|
+
* Use the <b>wj-barcode-code39</b> component to add <b>Code39</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>WjBarcodeCode39</b> component is derived from the <b>Code39</b> control and
|
|
288
|
+
* inherits all its properties, events and methods.
|
|
289
|
+
*/
|
|
290
|
+
export declare class WjBarcodeCode39 extends wjcBarcodeCommon.Code39 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<WjBarcodeCode39, [null, null, { optional: true; skipSelf: true; }]>;
|
|
358
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeCode39, "wj-barcode-code39", 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"; "nwRatio": "nwRatio"; "labelWithStartAndStopCharacter": "labelWithStartAndStopCharacter"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
359
|
+
}
|
|
360
|
+
declare var wjBarcodeCode128Meta: IWjComponentMeta;
|
|
361
|
+
export { wjBarcodeCode128Meta };
|
|
362
|
+
/**
|
|
363
|
+
* Angular 2 component for the {@link wijmo.barcode.common.Code128} control.
|
|
364
|
+
*
|
|
365
|
+
* Use the <b>wj-barcode-code128</b> component to add <b>Code128</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>WjBarcodeCode128</b> component is derived from the <b>Code128</b> control and
|
|
370
|
+
* inherits all its properties, events and methods.
|
|
371
|
+
*/
|
|
372
|
+
export declare class WjBarcodeCode128 extends wjcBarcodeCommon.Code128 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<WjBarcodeCode128, [null, null, { optional: true; skipSelf: true; }]>;
|
|
440
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeCode128, "wj-barcode-code128", 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"; "codeSet": "codeSet"; "labelPosition": "labelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
441
|
+
}
|
|
442
|
+
declare var wjBarcodeGs1_128Meta: IWjComponentMeta;
|
|
443
|
+
export { wjBarcodeGs1_128Meta };
|
|
444
|
+
/**
|
|
445
|
+
* Angular 2 component for the {@link wijmo.barcode.common.Gs1_128} control.
|
|
446
|
+
*
|
|
447
|
+
* Use the <b>wj-barcode-gs1_128</b> component to add <b>Gs1_128</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>WjBarcodeGs1_128</b> component is derived from the <b>Gs1_128</b> control and
|
|
452
|
+
* inherits all its properties, events and methods.
|
|
453
|
+
*/
|
|
454
|
+
export declare class WjBarcodeGs1_128 extends wjcBarcodeCommon.Gs1_128 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<WjBarcodeGs1_128, [null, null, { optional: true; skipSelf: true; }]>;
|
|
522
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeGs1_128, "wj-barcode-gs1_128", 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"; "labelPosition": "labelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
523
|
+
}
|
|
524
|
+
declare var wjBarcodeUpcAMeta: IWjComponentMeta;
|
|
525
|
+
export { wjBarcodeUpcAMeta };
|
|
526
|
+
/**
|
|
527
|
+
* Angular 2 component for the {@link wijmo.barcode.common.UpcA} control.
|
|
528
|
+
*
|
|
529
|
+
* Use the <b>wj-barcode-upc-a</b> component to add <b>UpcA</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>WjBarcodeUpcA</b> component is derived from the <b>UpcA</b> control and
|
|
534
|
+
* inherits all its properties, events and methods.
|
|
535
|
+
*/
|
|
536
|
+
export declare class WjBarcodeUpcA extends wjcBarcodeCommon.UpcA 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<WjBarcodeUpcA, [null, null, { optional: true; skipSelf: true; }]>;
|
|
604
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeUpcA, "wj-barcode-upc-a", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "showLabel": "showLabel"; "addOn": "addOn"; "labelPosition": "labelPosition"; "addOnHeight": "addOnHeight"; "addOnLabelPosition": "addOnLabelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
605
|
+
}
|
|
606
|
+
declare var wjBarcodeUpcE0Meta: IWjComponentMeta;
|
|
607
|
+
export { wjBarcodeUpcE0Meta };
|
|
608
|
+
/**
|
|
609
|
+
* Angular 2 component for the {@link wijmo.barcode.common.UpcE0} control.
|
|
610
|
+
*
|
|
611
|
+
* Use the <b>wj-barcode-upc-e0</b> component to add <b>UpcE0</b> controls to your
|
|
612
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
613
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
614
|
+
*
|
|
615
|
+
* The <b>WjBarcodeUpcE0</b> component is derived from the <b>UpcE0</b> control and
|
|
616
|
+
* inherits all its properties, events and methods.
|
|
617
|
+
*/
|
|
618
|
+
export declare class WjBarcodeUpcE0 extends wjcBarcodeCommon.UpcE0 implements OnInit, OnDestroy, AfterViewInit {
|
|
619
|
+
static readonly meta: IWjComponentMetadata;
|
|
620
|
+
private _wjBehaviour;
|
|
621
|
+
/**
|
|
622
|
+
* Indicates whether the component has been initialized by Angular.
|
|
623
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
624
|
+
*/
|
|
625
|
+
isInitialized: boolean;
|
|
626
|
+
/**
|
|
627
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
628
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
629
|
+
*/
|
|
630
|
+
initialized: EventEmitter<any>;
|
|
631
|
+
/**
|
|
632
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
633
|
+
* Default value is ''.
|
|
634
|
+
*/
|
|
635
|
+
wjModelProperty: string;
|
|
636
|
+
/**
|
|
637
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
638
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
639
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
640
|
+
*/
|
|
641
|
+
gotFocusNg: EventEmitter<any>;
|
|
642
|
+
/**
|
|
643
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
644
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
645
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
646
|
+
*/
|
|
647
|
+
lostFocusNg: EventEmitter<any>;
|
|
648
|
+
/**
|
|
649
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
650
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
651
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
652
|
+
*/
|
|
653
|
+
refreshingNg: EventEmitter<any>;
|
|
654
|
+
/**
|
|
655
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
656
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
657
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
658
|
+
*/
|
|
659
|
+
refreshedNg: EventEmitter<any>;
|
|
660
|
+
/**
|
|
661
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
662
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
663
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
664
|
+
*/
|
|
665
|
+
invalidInputNg: EventEmitter<any>;
|
|
666
|
+
/**
|
|
667
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
668
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
669
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
670
|
+
*/
|
|
671
|
+
isValidChangedNg: EventEmitter<any>;
|
|
672
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
673
|
+
/**
|
|
674
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
675
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
676
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
677
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
678
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
679
|
+
*/
|
|
680
|
+
created(): void;
|
|
681
|
+
ngOnInit(): void;
|
|
682
|
+
ngAfterViewInit(): void;
|
|
683
|
+
ngOnDestroy(): void;
|
|
684
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
685
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeUpcE0, [null, null, { optional: true; skipSelf: true; }]>;
|
|
686
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeUpcE0, "wj-barcode-upc-e0", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "showLabel": "showLabel"; "addOn": "addOn"; "labelPosition": "labelPosition"; "addOnHeight": "addOnHeight"; "addOnLabelPosition": "addOnLabelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
687
|
+
}
|
|
688
|
+
declare var wjBarcodeUpcE1Meta: IWjComponentMeta;
|
|
689
|
+
export { wjBarcodeUpcE1Meta };
|
|
690
|
+
/**
|
|
691
|
+
* Angular 2 component for the {@link wijmo.barcode.common.UpcE1} control.
|
|
692
|
+
*
|
|
693
|
+
* Use the <b>wj-barcode-upc-e1</b> component to add <b>UpcE1</b> controls to your
|
|
694
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
695
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
696
|
+
*
|
|
697
|
+
* The <b>WjBarcodeUpcE1</b> component is derived from the <b>UpcE1</b> control and
|
|
698
|
+
* inherits all its properties, events and methods.
|
|
699
|
+
*/
|
|
700
|
+
export declare class WjBarcodeUpcE1 extends wjcBarcodeCommon.UpcE1 implements OnInit, OnDestroy, AfterViewInit {
|
|
701
|
+
static readonly meta: IWjComponentMetadata;
|
|
702
|
+
private _wjBehaviour;
|
|
703
|
+
/**
|
|
704
|
+
* Indicates whether the component has been initialized by Angular.
|
|
705
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
706
|
+
*/
|
|
707
|
+
isInitialized: boolean;
|
|
708
|
+
/**
|
|
709
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
710
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
711
|
+
*/
|
|
712
|
+
initialized: EventEmitter<any>;
|
|
713
|
+
/**
|
|
714
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
715
|
+
* Default value is ''.
|
|
716
|
+
*/
|
|
717
|
+
wjModelProperty: string;
|
|
718
|
+
/**
|
|
719
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
720
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
721
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
722
|
+
*/
|
|
723
|
+
gotFocusNg: EventEmitter<any>;
|
|
724
|
+
/**
|
|
725
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
726
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
727
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
728
|
+
*/
|
|
729
|
+
lostFocusNg: EventEmitter<any>;
|
|
730
|
+
/**
|
|
731
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
732
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
733
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
734
|
+
*/
|
|
735
|
+
refreshingNg: EventEmitter<any>;
|
|
736
|
+
/**
|
|
737
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
738
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
739
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
740
|
+
*/
|
|
741
|
+
refreshedNg: EventEmitter<any>;
|
|
742
|
+
/**
|
|
743
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
744
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
745
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
746
|
+
*/
|
|
747
|
+
invalidInputNg: EventEmitter<any>;
|
|
748
|
+
/**
|
|
749
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
750
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
751
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
752
|
+
*/
|
|
753
|
+
isValidChangedNg: EventEmitter<any>;
|
|
754
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
755
|
+
/**
|
|
756
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
757
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
758
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
759
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
760
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
761
|
+
*/
|
|
762
|
+
created(): void;
|
|
763
|
+
ngOnInit(): void;
|
|
764
|
+
ngAfterViewInit(): void;
|
|
765
|
+
ngOnDestroy(): void;
|
|
766
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
767
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeUpcE1, [null, null, { optional: true; skipSelf: true; }]>;
|
|
768
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeUpcE1, "wj-barcode-upc-e1", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "showLabel": "showLabel"; "addOn": "addOn"; "labelPosition": "labelPosition"; "addOnHeight": "addOnHeight"; "addOnLabelPosition": "addOnLabelPosition"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
769
|
+
}
|
|
770
|
+
declare var wjBarcodeQrCodeMeta: IWjComponentMeta;
|
|
771
|
+
export { wjBarcodeQrCodeMeta };
|
|
772
|
+
/**
|
|
773
|
+
* Angular 2 component for the {@link wijmo.barcode.common.QrCode} control.
|
|
774
|
+
*
|
|
775
|
+
* Use the <b>wj-barcode-qr-code</b> component to add <b>QrCode</b> controls to your
|
|
776
|
+
* Angular 2 applications. For details about Angular 2 markup syntax, see
|
|
777
|
+
* <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
|
|
778
|
+
*
|
|
779
|
+
* The <b>WjBarcodeQrCode</b> component is derived from the <b>QrCode</b> control and
|
|
780
|
+
* inherits all its properties, events and methods.
|
|
781
|
+
*/
|
|
782
|
+
export declare class WjBarcodeQrCode extends wjcBarcodeCommon.QrCode implements OnInit, OnDestroy, AfterViewInit {
|
|
783
|
+
static readonly meta: IWjComponentMetadata;
|
|
784
|
+
private _wjBehaviour;
|
|
785
|
+
/**
|
|
786
|
+
* Indicates whether the component has been initialized by Angular.
|
|
787
|
+
* Changes its value from false to true right before triggering the <b>initialized</b> event.
|
|
788
|
+
*/
|
|
789
|
+
isInitialized: boolean;
|
|
790
|
+
/**
|
|
791
|
+
* This event is triggered after the component has been initialized by Angular, that is
|
|
792
|
+
* all bound properties have been assigned and child components (if any) have been initialized.
|
|
793
|
+
*/
|
|
794
|
+
initialized: EventEmitter<any>;
|
|
795
|
+
/**
|
|
796
|
+
* Defines a name of a property represented by [(ngModel)] directive (if specified).
|
|
797
|
+
* Default value is ''.
|
|
798
|
+
*/
|
|
799
|
+
wjModelProperty: string;
|
|
800
|
+
/**
|
|
801
|
+
* Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
|
|
802
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
803
|
+
* In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
|
|
804
|
+
*/
|
|
805
|
+
gotFocusNg: EventEmitter<any>;
|
|
806
|
+
/**
|
|
807
|
+
* Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
|
|
808
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
809
|
+
* In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
|
|
810
|
+
*/
|
|
811
|
+
lostFocusNg: EventEmitter<any>;
|
|
812
|
+
/**
|
|
813
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
|
|
814
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
815
|
+
* In template bindings use the conventional <b>refreshing</b> Wijmo event name.
|
|
816
|
+
*/
|
|
817
|
+
refreshingNg: EventEmitter<any>;
|
|
818
|
+
/**
|
|
819
|
+
* Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
|
|
820
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
821
|
+
* In template bindings use the conventional <b>refreshed</b> Wijmo event name.
|
|
822
|
+
*/
|
|
823
|
+
refreshedNg: EventEmitter<any>;
|
|
824
|
+
/**
|
|
825
|
+
* Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
|
|
826
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
827
|
+
* In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
|
|
828
|
+
*/
|
|
829
|
+
invalidInputNg: EventEmitter<any>;
|
|
830
|
+
/**
|
|
831
|
+
* Angular (EventEmitter) version of the Wijmo <b>isValidChanged</b> event for programmatic access.
|
|
832
|
+
* Use this event name if you want to subscribe to the Angular version of the event in code.
|
|
833
|
+
* In template bindings use the conventional <b>isValidChanged</b> Wijmo event name.
|
|
834
|
+
*/
|
|
835
|
+
isValidChangedNg: EventEmitter<any>;
|
|
836
|
+
constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
|
|
837
|
+
/**
|
|
838
|
+
* If you create a custom component inherited from a Wijmo component, you can override this
|
|
839
|
+
* method and perform necessary initializations that you usually do in a class constructor.
|
|
840
|
+
* This method is called in the last line of a Wijmo component constructor and allows you
|
|
841
|
+
* to not declare your custom component's constructor at all, thus preventing you from a necessity
|
|
842
|
+
* to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
|
|
843
|
+
*/
|
|
844
|
+
created(): void;
|
|
845
|
+
ngOnInit(): void;
|
|
846
|
+
ngAfterViewInit(): void;
|
|
847
|
+
ngOnDestroy(): void;
|
|
848
|
+
addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
|
|
849
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeQrCode, [null, null, { optional: true; skipSelf: true; }]>;
|
|
850
|
+
static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjBarcodeQrCode, "wj-barcode-qr-code", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "value": "value"; "quietZone": "quietZone"; "renderType": "renderType"; "color": "color"; "backgroundColor": "backgroundColor"; "hideExtraChecksum": "hideExtraChecksum"; "font": "font"; "charCode": "charCode"; "charset": "charset"; "model": "model"; "version": "version"; "errorCorrectionLevel": "errorCorrectionLevel"; "mask": "mask"; "connection": "connection"; "connectionIndex": "connectionIndex"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "isValidChangedNg": "isValidChanged"; }, never, never, false, never>;
|
|
851
|
+
}
|
|
852
|
+
export declare class WjBarcodeCommonModule {
|
|
853
|
+
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjBarcodeCommonModule, never>;
|
|
854
|
+
static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjBarcodeCommonModule, [typeof WjBarcodeCodabar, typeof WjBarcodeEan8, typeof WjBarcodeEan13, typeof WjBarcodeCode39, typeof WjBarcodeCode128, typeof WjBarcodeGs1_128, typeof WjBarcodeUpcA, typeof WjBarcodeUpcE0, typeof WjBarcodeUpcE1, typeof WjBarcodeQrCode], [typeof ɵngcc1.CommonModule], [typeof WjBarcodeCodabar, typeof WjBarcodeEan8, typeof WjBarcodeEan13, typeof WjBarcodeCode39, typeof WjBarcodeCode128, typeof WjBarcodeGs1_128, typeof WjBarcodeUpcA, typeof WjBarcodeUpcE0, typeof WjBarcodeUpcE1, typeof WjBarcodeQrCode]>;
|
|
855
|
+
static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjBarcodeCommonModule>;
|
|
856
|
+
}
|