@heartlandone/vega-angular 1.51.0 → 2.0.0-preview-2
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/dist/esm2020/lib/components-module.mjs +5 -5
- package/dist/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +2 -3
- package/dist/esm2020/lib/stencil-generated/components.mjs +451 -471
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +7 -6
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +11 -8
- package/dist/fesm2015/heartlandone-vega-angular.mjs +463 -480
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +463 -480
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/components-module.d.ts +1 -1
- package/dist/lib/stencil-generated/components.d.ts +351 -141
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- package/dist/lib/stencil-generated/value-accessor.d.ts +1 -1
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/angular-component-lib/utils.ts +1 -2
- package/src/lib/stencil-generated/components.ts +485 -298
- package/src/lib/stencil-generated/text-value-accessor.ts +3 -2
- package/src/lib/stencil-generated/value-accessor.ts +7 -4
- package/src/scripts/stencil-post-build-script.js +37 -11
|
@@ -13,6 +13,11 @@ export declare interface VegaAccordion extends Components.VegaAccordion {
|
|
|
13
13
|
* An event emitter notifying the expand event of the accordion.
|
|
14
14
|
*/
|
|
15
15
|
vegaExpand: EventEmitter<CustomEvent<boolean>>;
|
|
16
|
+
/**
|
|
17
|
+
* An event emitter notifying the expand event of the accordion.
|
|
18
|
+
expand is an attribute, so the event name here uses accordionExpand @eventSemantics namespace:native
|
|
19
|
+
*/
|
|
20
|
+
accordionExpand: EventEmitter<CustomEvent<boolean>>;
|
|
16
21
|
|
|
17
22
|
}
|
|
18
23
|
|
|
@@ -31,7 +36,7 @@ export class VegaAccordion {
|
|
|
31
36
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
32
37
|
c.detach();
|
|
33
38
|
this.el = r.nativeElement;
|
|
34
|
-
proxyOutputs(this, this.el, ['vegaExpand']);
|
|
39
|
+
proxyOutputs(this, this.el, ['vegaExpand', 'accordionExpand']);
|
|
35
40
|
}
|
|
36
41
|
}
|
|
37
42
|
|
|
@@ -62,11 +67,20 @@ export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderBut
|
|
|
62
67
|
* An event emitter notifying the click event of an app header button.
|
|
63
68
|
*/
|
|
64
69
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
70
|
+
/**
|
|
71
|
+
* An event emitter notifying the click event of an app header button. @eventSemantics namespace:native
|
|
72
|
+
*/
|
|
73
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
65
74
|
/**
|
|
66
75
|
* An event emitter notifying the click event of a dropdown item
|
|
67
76
|
in the app header.
|
|
68
77
|
*/
|
|
69
78
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
79
|
+
/**
|
|
80
|
+
* An event emitter notifying the click event of a dropdown item
|
|
81
|
+
in the app header. @eventSemantics namespace:native
|
|
82
|
+
*/
|
|
83
|
+
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
70
84
|
|
|
71
85
|
}
|
|
72
86
|
|
|
@@ -85,66 +99,35 @@ export class VegaAppHeaderButton {
|
|
|
85
99
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
86
100
|
c.detach();
|
|
87
101
|
this.el = r.nativeElement;
|
|
88
|
-
proxyOutputs(this, this.el, ['vegaClick', 'vegaDropdownClick']);
|
|
102
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaDropdownClick', 'dropdownClick']);
|
|
89
103
|
}
|
|
90
104
|
}
|
|
91
105
|
|
|
92
106
|
|
|
93
|
-
export declare interface
|
|
94
|
-
|
|
95
|
-
@ProxyCmp({
|
|
96
|
-
defineCustomElementFn: undefined,
|
|
97
|
-
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
98
|
-
})
|
|
99
|
-
@Component({
|
|
100
|
-
selector: 'vega-badge',
|
|
101
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
|
-
template: '<ng-content></ng-content>',
|
|
103
|
-
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
104
|
-
})
|
|
105
|
-
export class VegaBadge {
|
|
106
|
-
protected el: HTMLElement;
|
|
107
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
108
|
-
c.detach();
|
|
109
|
-
this.el = r.nativeElement;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
import type { VegaBannerViewData as IVegaBannerVegaBannerViewData } from '@heartlandone/vega/dist/types/components/vega-banner/types';
|
|
114
|
-
export declare interface VegaBanner extends Components.VegaBanner {
|
|
107
|
+
export declare interface VegaBackdrop extends Components.VegaBackdrop {
|
|
115
108
|
/**
|
|
116
|
-
* An event emitter notifying the click event of
|
|
117
|
-
the close button in the banner.
|
|
109
|
+
* An event emitter notifying the click event of the backdrop.
|
|
118
110
|
*/
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* An event emitter notifying the completion of the banner loading.
|
|
122
|
-
*/
|
|
123
|
-
vegaLoad: EventEmitter<CustomEvent<any>>;
|
|
124
|
-
/**
|
|
125
|
-
* An event emitter notifying the click event of
|
|
126
|
-
the Call to Action link.
|
|
127
|
-
*/
|
|
128
|
-
vegaClickCTA: EventEmitter<CustomEvent<IVegaBannerVegaBannerViewData>>;
|
|
111
|
+
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
129
112
|
|
|
130
113
|
}
|
|
131
114
|
|
|
132
115
|
@ProxyCmp({
|
|
133
116
|
defineCustomElementFn: undefined,
|
|
134
|
-
inputs: ['
|
|
117
|
+
inputs: ['color', 'duration', 'visible']
|
|
135
118
|
})
|
|
136
119
|
@Component({
|
|
137
|
-
selector: 'vega-
|
|
120
|
+
selector: 'vega-backdrop',
|
|
138
121
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
139
122
|
template: '<ng-content></ng-content>',
|
|
140
|
-
inputs: ['
|
|
123
|
+
inputs: ['color', 'duration', 'visible']
|
|
141
124
|
})
|
|
142
|
-
export class
|
|
125
|
+
export class VegaBackdrop {
|
|
143
126
|
protected el: HTMLElement;
|
|
144
127
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
145
128
|
c.detach();
|
|
146
129
|
this.el = r.nativeElement;
|
|
147
|
-
proxyOutputs(this, this.el, ['
|
|
130
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
148
131
|
}
|
|
149
132
|
}
|
|
150
133
|
|
|
@@ -174,13 +157,13 @@ export declare interface VegaBox extends Components.VegaBox {}
|
|
|
174
157
|
|
|
175
158
|
@ProxyCmp({
|
|
176
159
|
defineCustomElementFn: undefined,
|
|
177
|
-
inputs: ['display', 'margin', 'padding']
|
|
160
|
+
inputs: ['backgroundColor', 'borderColor', 'display', 'margin', 'padding', 'shadow']
|
|
178
161
|
})
|
|
179
162
|
@Component({
|
|
180
163
|
selector: 'vega-box',
|
|
181
164
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
182
165
|
template: '<ng-content></ng-content>',
|
|
183
|
-
inputs: ['display', 'margin', 'padding']
|
|
166
|
+
inputs: ['backgroundColor', 'borderColor', 'display', 'margin', 'padding', 'shadow']
|
|
184
167
|
})
|
|
185
168
|
export class VegaBox {
|
|
186
169
|
protected el: HTMLElement;
|
|
@@ -196,6 +179,10 @@ export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
|
|
|
196
179
|
* An event emitter notifying that a breadcrumb item has been clicked.
|
|
197
180
|
*/
|
|
198
181
|
vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
182
|
+
/**
|
|
183
|
+
* An native event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
|
|
184
|
+
*/
|
|
185
|
+
click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
199
186
|
|
|
200
187
|
}
|
|
201
188
|
|
|
@@ -214,7 +201,7 @@ export class VegaBreadcrumb {
|
|
|
214
201
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
215
202
|
c.detach();
|
|
216
203
|
this.el = r.nativeElement;
|
|
217
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
204
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
218
205
|
}
|
|
219
206
|
}
|
|
220
207
|
|
|
@@ -224,6 +211,10 @@ export declare interface VegaButton extends Components.VegaButton {
|
|
|
224
211
|
* An event emitter notifying the click event of the button.
|
|
225
212
|
*/
|
|
226
213
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
214
|
+
/**
|
|
215
|
+
* An native event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
216
|
+
*/
|
|
217
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
227
218
|
|
|
228
219
|
}
|
|
229
220
|
|
|
@@ -242,7 +233,7 @@ export class VegaButton {
|
|
|
242
233
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
243
234
|
c.detach();
|
|
244
235
|
this.el = r.nativeElement;
|
|
245
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
236
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
246
237
|
}
|
|
247
238
|
}
|
|
248
239
|
|
|
@@ -252,25 +243,29 @@ export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
|
|
|
252
243
|
* An event emitter notifying the click event of the circular button.
|
|
253
244
|
*/
|
|
254
245
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
246
|
+
/**
|
|
247
|
+
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
|
|
248
|
+
*/
|
|
249
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
255
250
|
|
|
256
251
|
}
|
|
257
252
|
|
|
258
253
|
@ProxyCmp({
|
|
259
254
|
defineCustomElementFn: undefined,
|
|
260
|
-
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'size', 'type', 'variant']
|
|
255
|
+
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'type', 'variant']
|
|
261
256
|
})
|
|
262
257
|
@Component({
|
|
263
258
|
selector: 'vega-button-circle',
|
|
264
259
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
265
260
|
template: '<ng-content></ng-content>',
|
|
266
|
-
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'size', 'type', 'variant']
|
|
261
|
+
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'type', 'variant']
|
|
267
262
|
})
|
|
268
263
|
export class VegaButtonCircle {
|
|
269
264
|
protected el: HTMLElement;
|
|
270
265
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
271
266
|
c.detach();
|
|
272
267
|
this.el = r.nativeElement;
|
|
273
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
268
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
274
269
|
}
|
|
275
270
|
}
|
|
276
271
|
|
|
@@ -280,6 +275,10 @@ export declare interface VegaButtonLink extends Components.VegaButtonLink {
|
|
|
280
275
|
* An event emitter notifying the click event of the button.
|
|
281
276
|
*/
|
|
282
277
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
278
|
+
/**
|
|
279
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
280
|
+
*/
|
|
281
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
283
282
|
|
|
284
283
|
}
|
|
285
284
|
|
|
@@ -298,7 +297,7 @@ export class VegaButtonLink {
|
|
|
298
297
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
299
298
|
c.detach();
|
|
300
299
|
this.el = r.nativeElement;
|
|
301
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
300
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
302
301
|
}
|
|
303
302
|
}
|
|
304
303
|
|
|
@@ -307,13 +306,13 @@ export declare interface VegaCard extends Components.VegaCard {}
|
|
|
307
306
|
|
|
308
307
|
@ProxyCmp({
|
|
309
308
|
defineCustomElementFn: undefined,
|
|
310
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
309
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
311
310
|
})
|
|
312
311
|
@Component({
|
|
313
312
|
selector: 'vega-card',
|
|
314
313
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
315
314
|
template: '<ng-content></ng-content>',
|
|
316
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
315
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
317
316
|
})
|
|
318
317
|
export class VegaCard {
|
|
319
318
|
protected el: HTMLElement;
|
|
@@ -330,6 +329,11 @@ export declare interface VegaCarousel extends Components.VegaCarousel {
|
|
|
330
329
|
whether triggered programmatically or through user interaction.
|
|
331
330
|
*/
|
|
332
331
|
vegaPageUpdate: EventEmitter<CustomEvent<number>>;
|
|
332
|
+
/**
|
|
333
|
+
* A native event emitter notifying the transition of the carousel to another page,
|
|
334
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
335
|
+
*/
|
|
336
|
+
pageUpdate: EventEmitter<CustomEvent<number>>;
|
|
333
337
|
|
|
334
338
|
}
|
|
335
339
|
|
|
@@ -349,28 +353,29 @@ export class VegaCarousel {
|
|
|
349
353
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
350
354
|
c.detach();
|
|
351
355
|
this.el = r.nativeElement;
|
|
352
|
-
proxyOutputs(this, this.el, ['vegaPageUpdate']);
|
|
356
|
+
proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
|
|
353
357
|
}
|
|
354
358
|
}
|
|
355
359
|
|
|
356
360
|
|
|
357
361
|
export declare interface VegaCheckbox extends Components.VegaCheckbox {
|
|
358
|
-
/**
|
|
359
|
-
* An event emitter notifying changes in the validation result of the checkbox. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
360
|
-
*/
|
|
361
|
-
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
362
362
|
/**
|
|
363
363
|
* An event emitter notifying changes in the value of the checkbox,
|
|
364
364
|
whether triggered programmatically or through user interaction.
|
|
365
365
|
*/
|
|
366
366
|
vegaChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
367
|
+
/**
|
|
368
|
+
* An event emitter notifying changes in the value of the checkbox,
|
|
369
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
370
|
+
*/
|
|
371
|
+
change: EventEmitter<CustomEvent<string | boolean>>;
|
|
367
372
|
|
|
368
373
|
}
|
|
369
374
|
|
|
370
375
|
@ProxyCmp({
|
|
371
376
|
defineCustomElementFn: undefined,
|
|
372
377
|
inputs: ['checked', 'disabled', 'identifier', 'isValid', 'required', 'size', 'value'],
|
|
373
|
-
methods: ['
|
|
378
|
+
methods: ['setValue']
|
|
374
379
|
})
|
|
375
380
|
@Component({
|
|
376
381
|
selector: 'vega-checkbox',
|
|
@@ -383,7 +388,7 @@ export class VegaCheckbox {
|
|
|
383
388
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
384
389
|
c.detach();
|
|
385
390
|
this.el = r.nativeElement;
|
|
386
|
-
proxyOutputs(this, this.el, ['
|
|
391
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
387
392
|
}
|
|
388
393
|
}
|
|
389
394
|
|
|
@@ -397,30 +402,31 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
397
402
|
*/
|
|
398
403
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
399
404
|
/**
|
|
400
|
-
* An event emitter notifying changes in the
|
|
401
|
-
|
|
405
|
+
* An event emitter notifying changes in the value
|
|
406
|
+
of any nested checkbox within the checkbox group,
|
|
407
|
+
whether triggered programmatically or through
|
|
408
|
+
user interaction. @eventSemantics namespace:native
|
|
402
409
|
*/
|
|
403
|
-
|
|
410
|
+
change: EventEmitter<CustomEvent<string[]>>;
|
|
404
411
|
|
|
405
412
|
}
|
|
406
413
|
|
|
407
414
|
@ProxyCmp({
|
|
408
415
|
defineCustomElementFn: undefined,
|
|
409
|
-
inputs: ['disabled', '
|
|
410
|
-
methods: ['valid']
|
|
416
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
411
417
|
})
|
|
412
418
|
@Component({
|
|
413
419
|
selector: 'vega-checkbox-group',
|
|
414
420
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
415
421
|
template: '<ng-content></ng-content>',
|
|
416
|
-
inputs: ['disabled', '
|
|
422
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
417
423
|
})
|
|
418
424
|
export class VegaCheckboxGroup {
|
|
419
425
|
protected el: HTMLElement;
|
|
420
426
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
421
427
|
c.detach();
|
|
422
428
|
this.el = r.nativeElement;
|
|
423
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
429
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
424
430
|
}
|
|
425
431
|
}
|
|
426
432
|
|
|
@@ -432,12 +438,20 @@ export declare interface VegaChip extends Components.VegaChip {
|
|
|
432
438
|
This event is only dispatched when the `showCloseIcon` property is set to `true`.
|
|
433
439
|
*/
|
|
434
440
|
vegaClose: EventEmitter<CustomEvent<void>>;
|
|
441
|
+
/**
|
|
442
|
+
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
|
|
443
|
+
*/
|
|
444
|
+
close: EventEmitter<CustomEvent<void>>;
|
|
435
445
|
/**
|
|
436
446
|
* An event emitter notifying the click event of the chip.
|
|
437
447
|
|
|
438
448
|
This event is only dispatched when the `clickable` property is set to `true`.
|
|
439
449
|
*/
|
|
440
450
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
451
|
+
/**
|
|
452
|
+
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native
|
|
453
|
+
*/
|
|
454
|
+
click: EventEmitter<CustomEvent<void>>;
|
|
441
455
|
|
|
442
456
|
}
|
|
443
457
|
|
|
@@ -456,7 +470,7 @@ export class VegaChip {
|
|
|
456
470
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
457
471
|
c.detach();
|
|
458
472
|
this.el = r.nativeElement;
|
|
459
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaClick']);
|
|
473
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
|
|
460
474
|
}
|
|
461
475
|
}
|
|
462
476
|
|
|
@@ -468,16 +482,16 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
|
|
|
468
482
|
*/
|
|
469
483
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
470
484
|
/**
|
|
471
|
-
* An event emitter notifying changes in the
|
|
485
|
+
* An event emitter notifying changes in the value of the color picker,
|
|
486
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
472
487
|
*/
|
|
473
|
-
|
|
488
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
474
489
|
|
|
475
490
|
}
|
|
476
491
|
|
|
477
492
|
@ProxyCmp({
|
|
478
493
|
defineCustomElementFn: undefined,
|
|
479
|
-
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
480
|
-
methods: ['valid']
|
|
494
|
+
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
481
495
|
})
|
|
482
496
|
@Component({
|
|
483
497
|
selector: 'vega-color-picker',
|
|
@@ -490,7 +504,7 @@ export class VegaColorPicker {
|
|
|
490
504
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
491
505
|
c.detach();
|
|
492
506
|
this.el = r.nativeElement;
|
|
493
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
507
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
494
508
|
}
|
|
495
509
|
}
|
|
496
510
|
|
|
@@ -502,9 +516,10 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
502
516
|
*/
|
|
503
517
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
504
518
|
/**
|
|
505
|
-
* An event emitter notifying changes in the
|
|
519
|
+
* An native event emitter notifying changes in the items of the combo box value,
|
|
520
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
506
521
|
*/
|
|
507
|
-
|
|
522
|
+
change: EventEmitter<CustomEvent<string[]>>;
|
|
508
523
|
/**
|
|
509
524
|
* An event emitter notifying when the user has chosen to add a new value
|
|
510
525
|
to the source and value of the combo box.
|
|
@@ -514,18 +529,32 @@ The event's `detail` property contains the new value.
|
|
|
514
529
|
The combo box _does not_ automatically add the new value to its `source` and `value`.
|
|
515
530
|
*/
|
|
516
531
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
532
|
+
/**
|
|
533
|
+
* An native event emitter notifying when the user has chosen to add a new value
|
|
534
|
+
to the source and value of the combo box.
|
|
535
|
+
|
|
536
|
+
The event's `detail` property contains the new value.
|
|
537
|
+
|
|
538
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
|
|
539
|
+
*/
|
|
540
|
+
create: EventEmitter<CustomEvent<string>>;
|
|
517
541
|
/**
|
|
518
542
|
* An event emitter notifying the user's search action in the combo box,
|
|
519
543
|
but only if the `useDefaultFilter` property is set to `false`.
|
|
520
544
|
*/
|
|
521
545
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
546
|
+
/**
|
|
547
|
+
* An native event emitter notifying the user's search action in the combo box,
|
|
548
|
+
but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native
|
|
549
|
+
*/
|
|
550
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
522
551
|
|
|
523
552
|
}
|
|
524
553
|
|
|
525
554
|
@ProxyCmp({
|
|
526
555
|
defineCustomElementFn: undefined,
|
|
527
556
|
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
528
|
-
methods: ['close', 'open'
|
|
557
|
+
methods: ['close', 'open']
|
|
529
558
|
})
|
|
530
559
|
@Component({
|
|
531
560
|
selector: 'vega-combo-box',
|
|
@@ -538,7 +567,7 @@ export class VegaComboBox {
|
|
|
538
567
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
539
568
|
c.detach();
|
|
540
569
|
this.el = r.nativeElement;
|
|
541
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
570
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCreate', 'create', 'vegaSearch', 'search']);
|
|
542
571
|
}
|
|
543
572
|
}
|
|
544
573
|
|
|
@@ -571,29 +600,49 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
|
571
600
|
*/
|
|
572
601
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
573
602
|
/**
|
|
574
|
-
*
|
|
603
|
+
* A native event emitter notifying the change of the value in the date picker,
|
|
604
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
575
605
|
*/
|
|
576
|
-
|
|
606
|
+
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
577
607
|
|
|
578
608
|
}
|
|
579
609
|
|
|
580
610
|
@ProxyCmp({
|
|
581
611
|
defineCustomElementFn: undefined,
|
|
582
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', '
|
|
583
|
-
methods: ['
|
|
612
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value'],
|
|
613
|
+
methods: ['doClose', 'doOpen']
|
|
584
614
|
})
|
|
585
615
|
@Component({
|
|
586
616
|
selector: 'vega-date-picker',
|
|
587
617
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
588
618
|
template: '<ng-content></ng-content>',
|
|
589
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', '
|
|
619
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value']
|
|
590
620
|
})
|
|
591
621
|
export class VegaDatePicker {
|
|
592
622
|
protected el: HTMLElement;
|
|
593
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
594
624
|
c.detach();
|
|
595
625
|
this.el = r.nativeElement;
|
|
596
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
626
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {}
|
|
632
|
+
|
|
633
|
+
@ProxyCmp({
|
|
634
|
+
defineCustomElementFn: undefined
|
|
635
|
+
})
|
|
636
|
+
@Component({
|
|
637
|
+
selector: 'vega-date-picker-calendar',
|
|
638
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
639
|
+
template: '<ng-content></ng-content>'
|
|
640
|
+
})
|
|
641
|
+
export class VegaDatePickerCalendar {
|
|
642
|
+
protected el: HTMLElement;
|
|
643
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
644
|
+
c.detach();
|
|
645
|
+
this.el = r.nativeElement;
|
|
597
646
|
}
|
|
598
647
|
}
|
|
599
648
|
|
|
@@ -620,26 +669,38 @@ export class VegaDialog {
|
|
|
620
669
|
|
|
621
670
|
|
|
622
671
|
export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
623
|
-
/**
|
|
624
|
-
* @deprecated This property will be removed soon *
|
|
625
|
-
*/
|
|
626
|
-
vegaClick: EventEmitter<CustomEvent<string | string[]>>;
|
|
627
672
|
/**
|
|
628
673
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
629
674
|
|
|
630
675
|
The event's `detail` property contains the key of the clicked item.
|
|
631
676
|
*/
|
|
632
677
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
678
|
+
/**
|
|
679
|
+
* An event emitter notifying that a dropdown item has been clicked.
|
|
680
|
+
|
|
681
|
+
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
|
|
682
|
+
*/
|
|
683
|
+
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
633
684
|
/**
|
|
634
685
|
* An event emitter notifying that the dropdown has been displayed,
|
|
635
686
|
either programmatically or via user interaction.
|
|
636
687
|
*/
|
|
637
688
|
vegaShow: EventEmitter<CustomEvent<string>>;
|
|
689
|
+
/**
|
|
690
|
+
* An native event emitter notifying that the dropdown has been displayed,
|
|
691
|
+
either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native
|
|
692
|
+
*/
|
|
693
|
+
dropdownShow: EventEmitter<CustomEvent<string>>;
|
|
638
694
|
/**
|
|
639
695
|
* Event emitter notifying that the dropdown has been dismissed,
|
|
640
696
|
either programmatically or via user interaction.
|
|
641
697
|
*/
|
|
642
698
|
vegaHide: EventEmitter<CustomEvent<string>>;
|
|
699
|
+
/**
|
|
700
|
+
* An native event emitter notifying that the dropdown has been dismissed,
|
|
701
|
+
either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native
|
|
702
|
+
*/
|
|
703
|
+
dropdownHide: EventEmitter<CustomEvent<string>>;
|
|
643
704
|
/**
|
|
644
705
|
* An event emitter notifying the addition of a new value
|
|
645
706
|
to the dropdown source list.
|
|
@@ -649,11 +710,25 @@ The event's `detail` property contains the new value.
|
|
|
649
710
|
The dropdown _does not_ automatically add the new value to the source list.
|
|
650
711
|
*/
|
|
651
712
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
713
|
+
/**
|
|
714
|
+
* An event emitter notifying the addition of a new value
|
|
715
|
+
to the dropdown source list.
|
|
716
|
+
|
|
717
|
+
The event's `detail` property contains the new value.
|
|
718
|
+
|
|
719
|
+
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
|
|
720
|
+
*/
|
|
721
|
+
create: EventEmitter<CustomEvent<string>>;
|
|
652
722
|
/**
|
|
653
723
|
* An event emitter notifying the search event in the dropdown,
|
|
654
724
|
but only if `useDefaultFilter` is set to `false`.
|
|
655
725
|
*/
|
|
656
726
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
727
|
+
/**
|
|
728
|
+
* An event emitter notifying the search event in the dropdown,
|
|
729
|
+
but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native
|
|
730
|
+
*/
|
|
731
|
+
dropdownSearch: EventEmitter<CustomEvent<string>>;
|
|
657
732
|
|
|
658
733
|
}
|
|
659
734
|
|
|
@@ -673,7 +748,26 @@ export class VegaDropdown {
|
|
|
673
748
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
674
749
|
c.detach();
|
|
675
750
|
this.el = r.nativeElement;
|
|
676
|
-
proxyOutputs(this, this.el, ['
|
|
751
|
+
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch']);
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
export declare interface VegaDropdownContentBox extends Components.VegaDropdownContentBox {}
|
|
757
|
+
|
|
758
|
+
@ProxyCmp({
|
|
759
|
+
defineCustomElementFn: undefined
|
|
760
|
+
})
|
|
761
|
+
@Component({
|
|
762
|
+
selector: 'vega-dropdown-content-box',
|
|
763
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
764
|
+
template: '<ng-content></ng-content>'
|
|
765
|
+
})
|
|
766
|
+
export class VegaDropdownContentBox {
|
|
767
|
+
protected el: HTMLElement;
|
|
768
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
769
|
+
c.detach();
|
|
770
|
+
this.el = r.nativeElement;
|
|
677
771
|
}
|
|
678
772
|
}
|
|
679
773
|
|
|
@@ -704,6 +798,10 @@ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
|
|
|
704
798
|
* An event emitter notifying the dropdown item has been clicked.
|
|
705
799
|
*/
|
|
706
800
|
vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
801
|
+
/**
|
|
802
|
+
* An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
|
|
803
|
+
*/
|
|
804
|
+
click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
707
805
|
|
|
708
806
|
}
|
|
709
807
|
|
|
@@ -722,7 +820,7 @@ export class VegaDropdownItem {
|
|
|
722
820
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
723
821
|
c.detach();
|
|
724
822
|
this.el = r.nativeElement;
|
|
725
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
823
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
726
824
|
}
|
|
727
825
|
}
|
|
728
826
|
|
|
@@ -780,13 +878,13 @@ export declare interface VegaFlex extends Components.VegaFlex {}
|
|
|
780
878
|
|
|
781
879
|
@ProxyCmp({
|
|
782
880
|
defineCustomElementFn: undefined,
|
|
783
|
-
inputs: ['
|
|
881
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
784
882
|
})
|
|
785
883
|
@Component({
|
|
786
884
|
selector: 'vega-flex',
|
|
787
885
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
788
886
|
template: '<ng-content></ng-content>',
|
|
789
|
-
inputs: ['
|
|
887
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
790
888
|
})
|
|
791
889
|
export class VegaFlex {
|
|
792
890
|
protected el: HTMLElement;
|
|
@@ -818,40 +916,31 @@ export class VegaFont {
|
|
|
818
916
|
}
|
|
819
917
|
|
|
820
918
|
|
|
821
|
-
export declare interface VegaFooter extends Components.VegaFooter {}
|
|
822
|
-
|
|
823
|
-
@ProxyCmp({
|
|
824
|
-
defineCustomElementFn: undefined,
|
|
825
|
-
inputs: ['privacyUrl', 'tosUrl']
|
|
826
|
-
})
|
|
827
|
-
@Component({
|
|
828
|
-
selector: 'vega-footer',
|
|
829
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
|
-
template: '<ng-content></ng-content>',
|
|
831
|
-
inputs: ['privacyUrl', 'tosUrl']
|
|
832
|
-
})
|
|
833
|
-
export class VegaFooter {
|
|
834
|
-
protected el: HTMLElement;
|
|
835
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
836
|
-
c.detach();
|
|
837
|
-
this.el = r.nativeElement;
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
|
|
842
919
|
export declare interface VegaForm extends Components.VegaForm {
|
|
843
920
|
/**
|
|
844
921
|
* An event emitter notifying the change in the validation result.
|
|
845
922
|
*/
|
|
846
923
|
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
924
|
+
/**
|
|
925
|
+
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native
|
|
926
|
+
*/
|
|
927
|
+
validate: EventEmitter<CustomEvent<boolean>>;
|
|
847
928
|
/**
|
|
848
929
|
* An event emitter notifying the submission of the form.
|
|
849
930
|
*/
|
|
850
931
|
vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
932
|
+
/**
|
|
933
|
+
* An event emitter notifying the submission of the form. @eventSemantics namespace:native
|
|
934
|
+
*/
|
|
935
|
+
formSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
851
936
|
/**
|
|
852
937
|
* An event emitter notifying the reset of the form.
|
|
853
938
|
*/
|
|
854
939
|
vegaFormReset: EventEmitter<CustomEvent<any>>;
|
|
940
|
+
/**
|
|
941
|
+
* An event emitter notifying the reset of the form. @eventSemantics namespace:native
|
|
942
|
+
*/
|
|
943
|
+
formReset: EventEmitter<CustomEvent<any>>;
|
|
855
944
|
|
|
856
945
|
}
|
|
857
946
|
|
|
@@ -871,7 +960,7 @@ export class VegaForm {
|
|
|
871
960
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
872
961
|
c.detach();
|
|
873
962
|
this.el = r.nativeElement;
|
|
874
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaFormSubmit', 'vegaFormReset']);
|
|
963
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
|
|
875
964
|
}
|
|
876
965
|
}
|
|
877
966
|
|
|
@@ -897,25 +986,6 @@ export class VegaGrid {
|
|
|
897
986
|
}
|
|
898
987
|
|
|
899
988
|
|
|
900
|
-
export declare interface VegaHeader extends Components.VegaHeader {}
|
|
901
|
-
|
|
902
|
-
@ProxyCmp({
|
|
903
|
-
defineCustomElementFn: undefined
|
|
904
|
-
})
|
|
905
|
-
@Component({
|
|
906
|
-
selector: 'vega-header',
|
|
907
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
908
|
-
template: '<ng-content></ng-content>'
|
|
909
|
-
})
|
|
910
|
-
export class VegaHeader {
|
|
911
|
-
protected el: HTMLElement;
|
|
912
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
913
|
-
c.detach();
|
|
914
|
-
this.el = r.nativeElement;
|
|
915
|
-
}
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
|
|
919
989
|
export declare interface VegaIcon extends Components.VegaIcon {}
|
|
920
990
|
|
|
921
991
|
@ProxyCmp({
|
|
@@ -942,25 +1012,33 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
|
|
|
942
1012
|
* An event emitter notifying a value change.
|
|
943
1013
|
*/
|
|
944
1014
|
vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
|
|
1015
|
+
/**
|
|
1016
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
1017
|
+
*/
|
|
1018
|
+
change: EventEmitter<CustomEvent<any>>;
|
|
945
1019
|
/**
|
|
946
1020
|
* An event emitter notifying the removal of a value.
|
|
947
1021
|
*/
|
|
948
1022
|
vegaRemove: EventEmitter<CustomEvent<any>>;
|
|
1023
|
+
/**
|
|
1024
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
1025
|
+
*/
|
|
1026
|
+
remove: EventEmitter<CustomEvent<any>>;
|
|
949
1027
|
/**
|
|
950
1028
|
* An event emitter notifying the cancellation of an uploading event.
|
|
951
1029
|
*/
|
|
952
1030
|
vegaCancel: EventEmitter<CustomEvent<any>>;
|
|
953
1031
|
/**
|
|
954
|
-
* An event emitter notifying the
|
|
1032
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
955
1033
|
*/
|
|
956
|
-
|
|
1034
|
+
cancel: EventEmitter<CustomEvent<any>>;
|
|
957
1035
|
|
|
958
1036
|
}
|
|
959
1037
|
|
|
960
1038
|
@ProxyCmp({
|
|
961
1039
|
defineCustomElementFn: undefined,
|
|
962
1040
|
inputs: ['accept', 'autoValidation', 'disabled', 'isValid', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value'],
|
|
963
|
-
methods: ['
|
|
1041
|
+
methods: ['getContentURL']
|
|
964
1042
|
})
|
|
965
1043
|
@Component({
|
|
966
1044
|
selector: 'vega-image-uploader',
|
|
@@ -973,7 +1051,7 @@ export class VegaImageUploader {
|
|
|
973
1051
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
974
1052
|
c.detach();
|
|
975
1053
|
this.el = r.nativeElement;
|
|
976
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRemove', 'vegaCancel', '
|
|
1054
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel']);
|
|
977
1055
|
}
|
|
978
1056
|
}
|
|
979
1057
|
|
|
@@ -984,65 +1062,80 @@ export declare interface VegaInput extends Components.VegaInput {
|
|
|
984
1062
|
*/
|
|
985
1063
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
986
1064
|
/**
|
|
987
|
-
* An event emitter notifying
|
|
1065
|
+
* An native event emitter notifying a value change. @eventSemantics namespace:native
|
|
988
1066
|
*/
|
|
989
|
-
|
|
1067
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
990
1068
|
/**
|
|
991
1069
|
* An event emitter notifying the blur of the inner input element.
|
|
992
1070
|
*/
|
|
993
1071
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1072
|
+
/**
|
|
1073
|
+
* An native event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
|
|
1074
|
+
*/
|
|
1075
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
994
1076
|
/**
|
|
995
1077
|
* An event emitter notifying the focus of the inner input element.
|
|
996
1078
|
*/
|
|
997
1079
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
1080
|
+
/**
|
|
1081
|
+
* An native event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
|
|
1082
|
+
*/
|
|
1083
|
+
focus: EventEmitter<CustomEvent<undefined>>;
|
|
998
1084
|
|
|
999
1085
|
}
|
|
1000
1086
|
|
|
1001
1087
|
@ProxyCmp({
|
|
1002
1088
|
defineCustomElementFn: undefined,
|
|
1003
|
-
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', '
|
|
1004
|
-
methods: ['
|
|
1089
|
+
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'hint', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value'],
|
|
1090
|
+
methods: ['doFocus', 'doBlur']
|
|
1005
1091
|
})
|
|
1006
1092
|
@Component({
|
|
1007
1093
|
selector: 'vega-input',
|
|
1008
1094
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1009
1095
|
template: '<ng-content></ng-content>',
|
|
1010
|
-
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', '
|
|
1096
|
+
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'hint', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value']
|
|
1011
1097
|
})
|
|
1012
1098
|
export class VegaInput {
|
|
1013
1099
|
protected el: HTMLElement;
|
|
1014
1100
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1015
1101
|
c.detach();
|
|
1016
1102
|
this.el = r.nativeElement;
|
|
1017
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1103
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1018
1104
|
}
|
|
1019
1105
|
}
|
|
1020
1106
|
|
|
1021
1107
|
|
|
1022
1108
|
export declare interface VegaInputCreditCard extends Components.VegaInputCreditCard {
|
|
1023
|
-
/**
|
|
1024
|
-
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
1025
|
-
*/
|
|
1026
|
-
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
1027
1109
|
/**
|
|
1028
1110
|
* An event emitter notifying a value change.
|
|
1029
1111
|
*/
|
|
1030
1112
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1113
|
+
/**
|
|
1114
|
+
* A native change event emitter notifying a value change. @eventSemantics namespace:native
|
|
1115
|
+
*/
|
|
1116
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1031
1117
|
/**
|
|
1032
1118
|
* An event emitter notifying the blur event of the credit card element.
|
|
1033
1119
|
*/
|
|
1034
1120
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1121
|
+
/**
|
|
1122
|
+
* A native event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
|
|
1123
|
+
*/
|
|
1124
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1035
1125
|
/**
|
|
1036
1126
|
* An event emitter notifying the focus of the credit card element.
|
|
1037
1127
|
*/
|
|
1038
1128
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
1129
|
+
/**
|
|
1130
|
+
* A native event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
|
|
1131
|
+
*/
|
|
1132
|
+
focus: EventEmitter<CustomEvent<undefined>>;
|
|
1039
1133
|
|
|
1040
1134
|
}
|
|
1041
1135
|
|
|
1042
1136
|
@ProxyCmp({
|
|
1043
1137
|
defineCustomElementFn: undefined,
|
|
1044
|
-
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1045
|
-
methods: ['valid']
|
|
1138
|
+
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1046
1139
|
})
|
|
1047
1140
|
@Component({
|
|
1048
1141
|
selector: 'vega-input-credit-card',
|
|
@@ -1055,7 +1148,7 @@ export class VegaInputCreditCard {
|
|
|
1055
1148
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1056
1149
|
c.detach();
|
|
1057
1150
|
this.el = r.nativeElement;
|
|
1058
|
-
proxyOutputs(this, this.el, ['
|
|
1151
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1059
1152
|
}
|
|
1060
1153
|
}
|
|
1061
1154
|
|
|
@@ -1067,33 +1160,37 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
|
1067
1160
|
*/
|
|
1068
1161
|
vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
1069
1162
|
/**
|
|
1070
|
-
* An event emitter notifying the change
|
|
1163
|
+
* An native event emitter notifying the change of the select value. @eventSemantics namespace:native
|
|
1071
1164
|
*/
|
|
1072
|
-
|
|
1165
|
+
change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
1073
1166
|
/**
|
|
1074
1167
|
* An event emitter notifying the search of the dropdown.
|
|
1075
1168
|
*/
|
|
1076
1169
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
1170
|
+
/**
|
|
1171
|
+
* An event emitter notifying the search of the dropdown. @eventSemantics namespace:native
|
|
1172
|
+
*/
|
|
1173
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
1077
1174
|
|
|
1078
1175
|
}
|
|
1079
1176
|
|
|
1080
1177
|
@ProxyCmp({
|
|
1081
1178
|
defineCustomElementFn: undefined,
|
|
1082
|
-
inputs: ['autoValidation', 'disabled', '
|
|
1083
|
-
methods: ['doClose', 'doOpen', 'doChange'
|
|
1179
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1180
|
+
methods: ['doClose', 'doOpen', 'doChange']
|
|
1084
1181
|
})
|
|
1085
1182
|
@Component({
|
|
1086
1183
|
selector: 'vega-input-select',
|
|
1087
1184
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1088
1185
|
template: '<ng-content></ng-content>',
|
|
1089
|
-
inputs: ['autoValidation', 'disabled', '
|
|
1186
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1090
1187
|
})
|
|
1091
1188
|
export class VegaInputSelect {
|
|
1092
1189
|
protected el: HTMLElement;
|
|
1093
1190
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1094
1191
|
c.detach();
|
|
1095
1192
|
this.el = r.nativeElement;
|
|
1096
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1193
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search']);
|
|
1097
1194
|
}
|
|
1098
1195
|
}
|
|
1099
1196
|
|
|
@@ -1103,25 +1200,29 @@ export declare interface VegaItemToggle extends Components.VegaItemToggle {
|
|
|
1103
1200
|
* An event emitter notifying an item toggle event.
|
|
1104
1201
|
*/
|
|
1105
1202
|
vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
1203
|
+
/**
|
|
1204
|
+
* A native event emitter notifying an item toggle event. @eventSemantics namespace:native
|
|
1205
|
+
*/
|
|
1206
|
+
toggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
1106
1207
|
|
|
1107
1208
|
}
|
|
1108
1209
|
|
|
1109
1210
|
@ProxyCmp({
|
|
1110
1211
|
defineCustomElementFn: undefined,
|
|
1111
|
-
inputs: ['
|
|
1212
|
+
inputs: ['isToggled', 'itemToggleStatusMap']
|
|
1112
1213
|
})
|
|
1113
1214
|
@Component({
|
|
1114
1215
|
selector: 'vega-item-toggle',
|
|
1115
1216
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1116
1217
|
template: '<ng-content></ng-content>',
|
|
1117
|
-
inputs: ['
|
|
1218
|
+
inputs: ['isToggled', 'itemToggleStatusMap']
|
|
1118
1219
|
})
|
|
1119
1220
|
export class VegaItemToggle {
|
|
1120
1221
|
protected el: HTMLElement;
|
|
1121
1222
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1122
1223
|
c.detach();
|
|
1123
1224
|
this.el = r.nativeElement;
|
|
1124
|
-
proxyOutputs(this, this.el, ['vegaToggleStatus']);
|
|
1225
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
|
|
1125
1226
|
}
|
|
1126
1227
|
}
|
|
1127
1228
|
|
|
@@ -1131,6 +1232,10 @@ export declare interface VegaLeftNav extends Components.VegaLeftNav {
|
|
|
1131
1232
|
* An event emitter notifying that the left-nav's open state has changed.
|
|
1132
1233
|
*/
|
|
1133
1234
|
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1235
|
+
/**
|
|
1236
|
+
* A native event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
|
|
1237
|
+
*/
|
|
1238
|
+
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1134
1239
|
|
|
1135
1240
|
}
|
|
1136
1241
|
|
|
@@ -1150,7 +1255,7 @@ export class VegaLeftNav {
|
|
|
1150
1255
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1151
1256
|
c.detach();
|
|
1152
1257
|
this.el = r.nativeElement;
|
|
1153
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1258
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
|
1154
1259
|
}
|
|
1155
1260
|
}
|
|
1156
1261
|
|
|
@@ -1160,6 +1265,10 @@ export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
|
|
|
1160
1265
|
* event emitter used for notifying consumers the click event
|
|
1161
1266
|
*/
|
|
1162
1267
|
vegaGroupClick: EventEmitter<CustomEvent<string>>;
|
|
1268
|
+
/**
|
|
1269
|
+
* A native event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
1270
|
+
*/
|
|
1271
|
+
groupClick: EventEmitter<CustomEvent<string>>;
|
|
1163
1272
|
|
|
1164
1273
|
}
|
|
1165
1274
|
|
|
@@ -1178,7 +1287,7 @@ export class VegaLeftNavGroup {
|
|
|
1178
1287
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1179
1288
|
c.detach();
|
|
1180
1289
|
this.el = r.nativeElement;
|
|
1181
|
-
proxyOutputs(this, this.el, ['vegaGroupClick']);
|
|
1290
|
+
proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
|
|
1182
1291
|
}
|
|
1183
1292
|
}
|
|
1184
1293
|
|
|
@@ -1188,6 +1297,10 @@ export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
|
|
|
1188
1297
|
* event emitter used for notifying consumers the click event
|
|
1189
1298
|
*/
|
|
1190
1299
|
vegaMenuClick: EventEmitter<CustomEvent<any>>;
|
|
1300
|
+
/**
|
|
1301
|
+
* event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
1302
|
+
*/
|
|
1303
|
+
menuClick: EventEmitter<CustomEvent<any>>;
|
|
1191
1304
|
|
|
1192
1305
|
}
|
|
1193
1306
|
|
|
@@ -1206,7 +1319,7 @@ export class VegaLeftNavLink {
|
|
|
1206
1319
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1207
1320
|
c.detach();
|
|
1208
1321
|
this.el = r.nativeElement;
|
|
1209
|
-
proxyOutputs(this, this.el, ['vegaMenuClick']);
|
|
1322
|
+
proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
|
|
1210
1323
|
}
|
|
1211
1324
|
}
|
|
1212
1325
|
|
|
@@ -1254,6 +1367,25 @@ export class VegaLineChart {
|
|
|
1254
1367
|
}
|
|
1255
1368
|
|
|
1256
1369
|
|
|
1370
|
+
export declare interface VegaLoaderWrapper extends Components.VegaLoaderWrapper {}
|
|
1371
|
+
|
|
1372
|
+
@ProxyCmp({
|
|
1373
|
+
defineCustomElementFn: undefined
|
|
1374
|
+
})
|
|
1375
|
+
@Component({
|
|
1376
|
+
selector: 'vega-loader-wrapper',
|
|
1377
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1378
|
+
template: '<ng-content></ng-content>'
|
|
1379
|
+
})
|
|
1380
|
+
export class VegaLoaderWrapper {
|
|
1381
|
+
protected el: HTMLElement;
|
|
1382
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1383
|
+
c.detach();
|
|
1384
|
+
this.el = r.nativeElement;
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
|
|
1257
1389
|
export declare interface VegaLoadingIndicator extends Components.VegaLoadingIndicator {}
|
|
1258
1390
|
|
|
1259
1391
|
@ProxyCmp({
|
|
@@ -1280,10 +1412,18 @@ export declare interface VegaModal extends Components.VegaModal {
|
|
|
1280
1412
|
* An event emitter notifying the modal close event.
|
|
1281
1413
|
*/
|
|
1282
1414
|
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
1415
|
+
/**
|
|
1416
|
+
* An event emitter notifying the modal close event. @eventSemantics namespace:native
|
|
1417
|
+
*/
|
|
1418
|
+
close: EventEmitter<CustomEvent<any>>;
|
|
1283
1419
|
/**
|
|
1284
1420
|
* An event emitter notifying the modal open event.
|
|
1285
1421
|
*/
|
|
1286
1422
|
vegaOpen: EventEmitter<CustomEvent<any>>;
|
|
1423
|
+
/**
|
|
1424
|
+
* An native event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
|
|
1425
|
+
*/
|
|
1426
|
+
modalOpen: EventEmitter<CustomEvent<any>>;
|
|
1287
1427
|
|
|
1288
1428
|
}
|
|
1289
1429
|
|
|
@@ -1303,7 +1443,7 @@ export class VegaModal {
|
|
|
1303
1443
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1304
1444
|
c.detach();
|
|
1305
1445
|
this.el = r.nativeElement;
|
|
1306
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);
|
|
1446
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
|
|
1307
1447
|
}
|
|
1308
1448
|
}
|
|
1309
1449
|
|
|
@@ -1329,19 +1469,20 @@ export class VegaNavCard {
|
|
|
1329
1469
|
}
|
|
1330
1470
|
|
|
1331
1471
|
|
|
1332
|
-
export declare interface
|
|
1472
|
+
export declare interface VegaPageNotification extends Components.VegaPageNotification {}
|
|
1333
1473
|
|
|
1334
1474
|
@ProxyCmp({
|
|
1335
1475
|
defineCustomElementFn: undefined,
|
|
1336
|
-
inputs: ['
|
|
1476
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1477
|
+
methods: ['close']
|
|
1337
1478
|
})
|
|
1338
1479
|
@Component({
|
|
1339
|
-
selector: 'vega-
|
|
1480
|
+
selector: 'vega-page-notification',
|
|
1340
1481
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1341
1482
|
template: '<ng-content></ng-content>',
|
|
1342
|
-
inputs: ['
|
|
1483
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1343
1484
|
})
|
|
1344
|
-
export class
|
|
1485
|
+
export class VegaPageNotification {
|
|
1345
1486
|
protected el: HTMLElement;
|
|
1346
1487
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1347
1488
|
c.detach();
|
|
@@ -1350,20 +1491,17 @@ export class VegaOption {
|
|
|
1350
1491
|
}
|
|
1351
1492
|
|
|
1352
1493
|
|
|
1353
|
-
export declare interface
|
|
1494
|
+
export declare interface VegaPageNotificationList extends Components.VegaPageNotificationList {}
|
|
1354
1495
|
|
|
1355
1496
|
@ProxyCmp({
|
|
1356
|
-
defineCustomElementFn: undefined
|
|
1357
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1358
|
-
methods: ['close']
|
|
1497
|
+
defineCustomElementFn: undefined
|
|
1359
1498
|
})
|
|
1360
1499
|
@Component({
|
|
1361
|
-
selector: 'vega-page-notification',
|
|
1500
|
+
selector: 'vega-page-notification-list',
|
|
1362
1501
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1363
|
-
template: '<ng-content></ng-content>'
|
|
1364
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1502
|
+
template: '<ng-content></ng-content>'
|
|
1365
1503
|
})
|
|
1366
|
-
export class
|
|
1504
|
+
export class VegaPageNotificationList {
|
|
1367
1505
|
protected el: HTMLElement;
|
|
1368
1506
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1369
1507
|
c.detach();
|
|
@@ -1377,11 +1515,20 @@ export declare interface VegaPagination extends Components.VegaPagination {
|
|
|
1377
1515
|
* An event emitter notifying the current page change.
|
|
1378
1516
|
*/
|
|
1379
1517
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1518
|
+
/**
|
|
1519
|
+
* An event emitter notifying the current page change. @eventSemantics namespace:native
|
|
1520
|
+
*/
|
|
1521
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
1380
1522
|
/**
|
|
1381
1523
|
* An event emitter notifying a change in the number of
|
|
1382
1524
|
data items displayed per page.
|
|
1383
1525
|
*/
|
|
1384
1526
|
vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
1527
|
+
/**
|
|
1528
|
+
* An event emitter notifying a change in the number of
|
|
1529
|
+
data items displayed per page. @eventSemantics namespace:native
|
|
1530
|
+
*/
|
|
1531
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
1385
1532
|
|
|
1386
1533
|
}
|
|
1387
1534
|
|
|
@@ -1400,7 +1547,7 @@ export class VegaPagination {
|
|
|
1400
1547
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1401
1548
|
c.detach();
|
|
1402
1549
|
this.el = r.nativeElement;
|
|
1403
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaPageSizeChange']);
|
|
1550
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
|
|
1404
1551
|
}
|
|
1405
1552
|
}
|
|
1406
1553
|
|
|
@@ -1432,10 +1579,18 @@ export declare interface VegaPopover extends Components.VegaPopover {
|
|
|
1432
1579
|
* An event emitter notifying the popover show event.
|
|
1433
1580
|
*/
|
|
1434
1581
|
vegaPopoverShow: EventEmitter<CustomEvent<string>>;
|
|
1582
|
+
/**
|
|
1583
|
+
* A native event emitter notifying the popover show event. @eventSemantics namespace:native
|
|
1584
|
+
*/
|
|
1585
|
+
popoverShow: EventEmitter<CustomEvent<string>>;
|
|
1435
1586
|
/**
|
|
1436
1587
|
* An event emitter notifying the popover hide event.
|
|
1437
1588
|
*/
|
|
1438
1589
|
vegaPopoverHide: EventEmitter<CustomEvent<string>>;
|
|
1590
|
+
/**
|
|
1591
|
+
* A native event emitter notifying the popover hide event. @eventSemantics namespace:native
|
|
1592
|
+
*/
|
|
1593
|
+
popoverHide: EventEmitter<CustomEvent<string>>;
|
|
1439
1594
|
|
|
1440
1595
|
}
|
|
1441
1596
|
|
|
@@ -1455,7 +1610,26 @@ export class VegaPopover {
|
|
|
1455
1610
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1456
1611
|
c.detach();
|
|
1457
1612
|
this.el = r.nativeElement;
|
|
1458
|
-
proxyOutputs(this, this.el, ['vegaPopoverShow', 'vegaPopoverHide']);
|
|
1613
|
+
proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
|
|
1614
|
+
}
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
export declare interface VegaPopoverContentBox extends Components.VegaPopoverContentBox {}
|
|
1619
|
+
|
|
1620
|
+
@ProxyCmp({
|
|
1621
|
+
defineCustomElementFn: undefined
|
|
1622
|
+
})
|
|
1623
|
+
@Component({
|
|
1624
|
+
selector: 'vega-popover-content-box',
|
|
1625
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1626
|
+
template: '<ng-content></ng-content>'
|
|
1627
|
+
})
|
|
1628
|
+
export class VegaPopoverContentBox {
|
|
1629
|
+
protected el: HTMLElement;
|
|
1630
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1631
|
+
c.detach();
|
|
1632
|
+
this.el = r.nativeElement;
|
|
1459
1633
|
}
|
|
1460
1634
|
}
|
|
1461
1635
|
|
|
@@ -1465,6 +1639,10 @@ export declare interface VegaProgressTracker extends Components.VegaProgressTrac
|
|
|
1465
1639
|
* An event emitter notifying that the current step has changed.
|
|
1466
1640
|
*/
|
|
1467
1641
|
vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
1642
|
+
/**
|
|
1643
|
+
* A native event emitter notifying that the current step has changed. @eventSemantics namespace:native
|
|
1644
|
+
*/
|
|
1645
|
+
currentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
1468
1646
|
|
|
1469
1647
|
}
|
|
1470
1648
|
|
|
@@ -1484,7 +1662,7 @@ export class VegaProgressTracker {
|
|
|
1484
1662
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1485
1663
|
c.detach();
|
|
1486
1664
|
this.el = r.nativeElement;
|
|
1487
|
-
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);
|
|
1665
|
+
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
|
|
1488
1666
|
}
|
|
1489
1667
|
}
|
|
1490
1668
|
|
|
@@ -1494,15 +1672,28 @@ export declare interface VegaRadio extends Components.VegaRadio {
|
|
|
1494
1672
|
* An event emitter notifying the focus event of the radio input.
|
|
1495
1673
|
*/
|
|
1496
1674
|
vegaFocus: EventEmitter<CustomEvent<any>>;
|
|
1675
|
+
/**
|
|
1676
|
+
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
|
|
1677
|
+
*/
|
|
1678
|
+
focus: EventEmitter<CustomEvent<any>>;
|
|
1497
1679
|
/**
|
|
1498
1680
|
* An event emitter notifying the blur event of the radio input.
|
|
1499
1681
|
*/
|
|
1500
1682
|
vegaBlur: EventEmitter<CustomEvent<any>>;
|
|
1683
|
+
/**
|
|
1684
|
+
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
|
|
1685
|
+
*/
|
|
1686
|
+
blur: EventEmitter<CustomEvent<any>>;
|
|
1501
1687
|
/**
|
|
1502
1688
|
* An event emitter notifying the change in the check status
|
|
1503
1689
|
of the radio input.
|
|
1504
1690
|
*/
|
|
1505
1691
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
1692
|
+
/**
|
|
1693
|
+
* An event emitter notifying the change in the check status
|
|
1694
|
+
of the radio input. @eventSemantics namespace:native
|
|
1695
|
+
*/
|
|
1696
|
+
change: EventEmitter<CustomEvent<boolean>>;
|
|
1506
1697
|
|
|
1507
1698
|
}
|
|
1508
1699
|
|
|
@@ -1521,7 +1712,7 @@ export class VegaRadio {
|
|
|
1521
1712
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1522
1713
|
c.detach();
|
|
1523
1714
|
this.el = r.nativeElement;
|
|
1524
|
-
proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);
|
|
1715
|
+
proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
|
|
1525
1716
|
}
|
|
1526
1717
|
}
|
|
1527
1718
|
|
|
@@ -1533,108 +1724,29 @@ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
|
|
|
1533
1724
|
*/
|
|
1534
1725
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1535
1726
|
/**
|
|
1536
|
-
* An event emitter notifying the change
|
|
1537
|
-
|
|
1727
|
+
* An event emitter notifying the change of the
|
|
1728
|
+
checked radio button in the radio group. @eventSemantics namespace:native
|
|
1538
1729
|
*/
|
|
1539
|
-
|
|
1730
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1540
1731
|
|
|
1541
1732
|
}
|
|
1542
1733
|
|
|
1543
1734
|
@ProxyCmp({
|
|
1544
1735
|
defineCustomElementFn: undefined,
|
|
1545
|
-
inputs: ['disabled', '
|
|
1546
|
-
methods: ['valid']
|
|
1736
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
1547
1737
|
})
|
|
1548
1738
|
@Component({
|
|
1549
1739
|
selector: 'vega-radio-group',
|
|
1550
1740
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1551
1741
|
template: '<ng-content></ng-content>',
|
|
1552
|
-
inputs: ['disabled', '
|
|
1742
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
1553
1743
|
})
|
|
1554
1744
|
export class VegaRadioGroup {
|
|
1555
1745
|
protected el: HTMLElement;
|
|
1556
1746
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1557
1747
|
c.detach();
|
|
1558
1748
|
this.el = r.nativeElement;
|
|
1559
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1560
|
-
}
|
|
1561
|
-
}
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
export declare interface VegaSidenav extends Components.VegaSidenav {
|
|
1565
|
-
/**
|
|
1566
|
-
* An event emitter notifying the completion of a navigation menu close operation.
|
|
1567
|
-
*/
|
|
1568
|
-
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1569
|
-
|
|
1570
|
-
}
|
|
1571
|
-
|
|
1572
|
-
@ProxyCmp({
|
|
1573
|
-
defineCustomElementFn: undefined,
|
|
1574
|
-
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],
|
|
1575
|
-
methods: ['toggle']
|
|
1576
|
-
})
|
|
1577
|
-
@Component({
|
|
1578
|
-
selector: 'vega-sidenav',
|
|
1579
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1580
|
-
template: '<ng-content></ng-content>',
|
|
1581
|
-
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']
|
|
1582
|
-
})
|
|
1583
|
-
export class VegaSidenav {
|
|
1584
|
-
protected el: HTMLElement;
|
|
1585
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1586
|
-
c.detach();
|
|
1587
|
-
this.el = r.nativeElement;
|
|
1588
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1589
|
-
}
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
export declare interface VegaSidenavGroup extends Components.VegaSidenavGroup {}
|
|
1594
|
-
|
|
1595
|
-
@ProxyCmp({
|
|
1596
|
-
defineCustomElementFn: undefined,
|
|
1597
|
-
inputs: ['icon', 'label']
|
|
1598
|
-
})
|
|
1599
|
-
@Component({
|
|
1600
|
-
selector: 'vega-sidenav-group',
|
|
1601
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1602
|
-
template: '<ng-content></ng-content>',
|
|
1603
|
-
inputs: ['icon', 'label']
|
|
1604
|
-
})
|
|
1605
|
-
export class VegaSidenavGroup {
|
|
1606
|
-
protected el: HTMLElement;
|
|
1607
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1608
|
-
c.detach();
|
|
1609
|
-
this.el = r.nativeElement;
|
|
1610
|
-
}
|
|
1611
|
-
}
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
export declare interface VegaSidenavLink extends Components.VegaSidenavLink {
|
|
1615
|
-
/**
|
|
1616
|
-
* An event emitter notifying about the occurrence of a click event.
|
|
1617
|
-
*/
|
|
1618
|
-
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
1619
|
-
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
@ProxyCmp({
|
|
1623
|
-
defineCustomElementFn: undefined,
|
|
1624
|
-
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
|
1625
|
-
})
|
|
1626
|
-
@Component({
|
|
1627
|
-
selector: 'vega-sidenav-link',
|
|
1628
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1629
|
-
template: '<ng-content></ng-content>',
|
|
1630
|
-
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
|
1631
|
-
})
|
|
1632
|
-
export class VegaSidenavLink {
|
|
1633
|
-
protected el: HTMLElement;
|
|
1634
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1635
|
-
c.detach();
|
|
1636
|
-
this.el = r.nativeElement;
|
|
1637
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1749
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1638
1750
|
}
|
|
1639
1751
|
}
|
|
1640
1752
|
|
|
@@ -1660,35 +1772,32 @@ export class VegaSlotContainer {
|
|
|
1660
1772
|
|
|
1661
1773
|
export declare interface VegaStepper extends Components.VegaStepper {
|
|
1662
1774
|
/**
|
|
1663
|
-
* An event emitter notifying changes in the value of
|
|
1664
|
-
the stepper component.
|
|
1775
|
+
* An event emitter notifying changes in the value of the stepper component.
|
|
1665
1776
|
*/
|
|
1666
1777
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1667
1778
|
/**
|
|
1668
|
-
* An event emitter notifying changes in the
|
|
1669
|
-
result of the stepper component. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
1779
|
+
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
|
|
1670
1780
|
*/
|
|
1671
|
-
|
|
1781
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
1672
1782
|
|
|
1673
1783
|
}
|
|
1674
1784
|
|
|
1675
1785
|
@ProxyCmp({
|
|
1676
1786
|
defineCustomElementFn: undefined,
|
|
1677
|
-
inputs: ['autoValidation', 'buttonVariant', 'disabled', '
|
|
1678
|
-
methods: ['valid']
|
|
1787
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
|
1679
1788
|
})
|
|
1680
1789
|
@Component({
|
|
1681
1790
|
selector: 'vega-stepper',
|
|
1682
1791
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1683
1792
|
template: '<ng-content></ng-content>',
|
|
1684
|
-
inputs: ['autoValidation', 'buttonVariant', 'disabled', '
|
|
1793
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
|
1685
1794
|
})
|
|
1686
1795
|
export class VegaStepper {
|
|
1687
1796
|
protected el: HTMLElement;
|
|
1688
1797
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1689
1798
|
c.detach();
|
|
1690
1799
|
this.el = r.nativeElement;
|
|
1691
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1800
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1692
1801
|
}
|
|
1693
1802
|
}
|
|
1694
1803
|
|
|
@@ -1699,6 +1808,11 @@ export declare interface VegaTabGroup extends Components.VegaTabGroup {
|
|
|
1699
1808
|
in the tab group.
|
|
1700
1809
|
*/
|
|
1701
1810
|
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
1811
|
+
/**
|
|
1812
|
+
* A native event emitter notifying the click event of a tab
|
|
1813
|
+
in the tab group. @eventSemantics namespace:native
|
|
1814
|
+
*/
|
|
1815
|
+
click: EventEmitter<CustomEvent<string>>;
|
|
1702
1816
|
|
|
1703
1817
|
}
|
|
1704
1818
|
|
|
@@ -1717,7 +1831,7 @@ export class VegaTabGroup {
|
|
|
1717
1831
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1718
1832
|
c.detach();
|
|
1719
1833
|
this.el = r.nativeElement;
|
|
1720
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1834
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1721
1835
|
}
|
|
1722
1836
|
}
|
|
1723
1837
|
|
|
@@ -1751,21 +1865,40 @@ export declare interface VegaTable extends Components.VegaTable {
|
|
|
1751
1865
|
* An event emitter notifying changes in the table data.
|
|
1752
1866
|
*/
|
|
1753
1867
|
vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1868
|
+
/**
|
|
1869
|
+
* An event emitter notifying changes in the table data. @eventSemantics namespace:native
|
|
1870
|
+
*/
|
|
1871
|
+
change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1754
1872
|
/**
|
|
1755
1873
|
* An event emitter notifying the click event of a row
|
|
1756
1874
|
in the table.
|
|
1757
1875
|
*/
|
|
1758
1876
|
vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1877
|
+
/**
|
|
1878
|
+
* An event emitter notifying the click event of a row
|
|
1879
|
+
in the table. @eventSemantics namespace:native
|
|
1880
|
+
*/
|
|
1881
|
+
rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1759
1882
|
/**
|
|
1760
1883
|
* An event emitter notifying the selection or deselection
|
|
1761
1884
|
of a row in the table.
|
|
1762
1885
|
*/
|
|
1763
1886
|
vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1887
|
+
/**
|
|
1888
|
+
* An event emitter notifying the selection or deselection
|
|
1889
|
+
of a row in the table. @eventSemantics namespace:native
|
|
1890
|
+
*/
|
|
1891
|
+
selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1764
1892
|
/**
|
|
1765
1893
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
1766
1894
|
particularly the "Select All" checkbox in the table header.
|
|
1767
1895
|
*/
|
|
1768
1896
|
vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1897
|
+
/**
|
|
1898
|
+
* An event emitter notifying changes in the selection of checkboxes,
|
|
1899
|
+
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
|
|
1900
|
+
*/
|
|
1901
|
+
selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1769
1902
|
|
|
1770
1903
|
}
|
|
1771
1904
|
|
|
@@ -1785,7 +1918,7 @@ export class VegaTable {
|
|
|
1785
1918
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1786
1919
|
c.detach();
|
|
1787
1920
|
this.el = r.nativeElement;
|
|
1788
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick', 'vegaSelectChange', 'vegaSelectAllChange']);
|
|
1921
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange']);
|
|
1789
1922
|
}
|
|
1790
1923
|
}
|
|
1791
1924
|
|
|
@@ -1813,13 +1946,13 @@ export declare interface VegaTableCell extends Components.VegaTableCell {}
|
|
|
1813
1946
|
|
|
1814
1947
|
@ProxyCmp({
|
|
1815
1948
|
defineCustomElementFn: undefined,
|
|
1816
|
-
inputs: ['breakpoint', '
|
|
1949
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1817
1950
|
})
|
|
1818
1951
|
@Component({
|
|
1819
1952
|
selector: 'vega-table-cell',
|
|
1820
1953
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1821
1954
|
template: '<ng-content></ng-content>',
|
|
1822
|
-
inputs: ['breakpoint', '
|
|
1955
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1823
1956
|
})
|
|
1824
1957
|
export class VegaTableCell {
|
|
1825
1958
|
protected el: HTMLElement;
|
|
@@ -1875,6 +2008,10 @@ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell
|
|
|
1875
2008
|
* An event emitter notifying that the head cell has been clicked.
|
|
1876
2009
|
*/
|
|
1877
2010
|
vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
2011
|
+
/**
|
|
2012
|
+
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
|
|
2013
|
+
*/
|
|
2014
|
+
click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
1878
2015
|
|
|
1879
2016
|
}
|
|
1880
2017
|
|
|
@@ -1893,7 +2030,7 @@ export class VegaTableHeadCell {
|
|
|
1893
2030
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1894
2031
|
c.detach();
|
|
1895
2032
|
this.el = r.nativeElement;
|
|
1896
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
2033
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1897
2034
|
}
|
|
1898
2035
|
}
|
|
1899
2036
|
|
|
@@ -1924,6 +2061,10 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
|
|
|
1924
2061
|
* An event emitter notifying that the row has been clicked.
|
|
1925
2062
|
*/
|
|
1926
2063
|
vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
2064
|
+
/**
|
|
2065
|
+
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
|
|
2066
|
+
*/
|
|
2067
|
+
click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
1927
2068
|
|
|
1928
2069
|
}
|
|
1929
2070
|
|
|
@@ -1942,7 +2083,7 @@ export class VegaTableRow {
|
|
|
1942
2083
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1943
2084
|
c.detach();
|
|
1944
2085
|
this.el = r.nativeElement;
|
|
1945
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
2086
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1946
2087
|
}
|
|
1947
2088
|
}
|
|
1948
2089
|
|
|
@@ -1975,22 +2116,26 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
|
1975
2116
|
*/
|
|
1976
2117
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1977
2118
|
/**
|
|
1978
|
-
* An event emitter notifying changes in the
|
|
1979
|
-
of the text area. @
|
|
2119
|
+
* An event emitter notifying about changes in the value
|
|
2120
|
+
of the text area. @eventSemantics namespace:native
|
|
1980
2121
|
*/
|
|
1981
|
-
|
|
2122
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1982
2123
|
/**
|
|
1983
2124
|
* An event emitter notifying the blur event of the inner
|
|
1984
2125
|
textarea element within the text area.
|
|
1985
2126
|
*/
|
|
1986
2127
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
2128
|
+
/**
|
|
2129
|
+
* An event emitter notifying the blur event of the inner
|
|
2130
|
+
textarea element within the text area. @eventSemantics namespace:native
|
|
2131
|
+
*/
|
|
2132
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1987
2133
|
|
|
1988
2134
|
}
|
|
1989
2135
|
|
|
1990
2136
|
@ProxyCmp({
|
|
1991
2137
|
defineCustomElementFn: undefined,
|
|
1992
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'showCounter', 'validationRules', 'value']
|
|
1993
|
-
methods: ['valid']
|
|
2138
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'showCounter', 'validationRules', 'value']
|
|
1994
2139
|
})
|
|
1995
2140
|
@Component({
|
|
1996
2141
|
selector: 'vega-textarea',
|
|
@@ -2003,7 +2148,7 @@ export class VegaTextarea {
|
|
|
2003
2148
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2004
2149
|
c.detach();
|
|
2005
2150
|
this.el = r.nativeElement;
|
|
2006
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
2151
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur']);
|
|
2007
2152
|
}
|
|
2008
2153
|
}
|
|
2009
2154
|
|
|
@@ -2014,17 +2159,15 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
|
|
|
2014
2159
|
*/
|
|
2015
2160
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
2016
2161
|
/**
|
|
2017
|
-
* An event emitter notifying changes in the
|
|
2018
|
-
of the time picker. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
2162
|
+
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
|
|
2019
2163
|
*/
|
|
2020
|
-
|
|
2164
|
+
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
2021
2165
|
|
|
2022
2166
|
}
|
|
2023
2167
|
|
|
2024
2168
|
@ProxyCmp({
|
|
2025
2169
|
defineCustomElementFn: undefined,
|
|
2026
|
-
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
2027
|
-
methods: ['valid']
|
|
2170
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
2028
2171
|
})
|
|
2029
2172
|
@Component({
|
|
2030
2173
|
selector: 'vega-time-picker',
|
|
@@ -2037,7 +2180,26 @@ export class VegaTimePicker {
|
|
|
2037
2180
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2038
2181
|
c.detach();
|
|
2039
2182
|
this.el = r.nativeElement;
|
|
2040
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
2183
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
|
|
2188
|
+
export declare interface VegaTimePickerDropdown extends Components.VegaTimePickerDropdown {}
|
|
2189
|
+
|
|
2190
|
+
@ProxyCmp({
|
|
2191
|
+
defineCustomElementFn: undefined
|
|
2192
|
+
})
|
|
2193
|
+
@Component({
|
|
2194
|
+
selector: 'vega-time-picker-dropdown',
|
|
2195
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2196
|
+
template: '<ng-content></ng-content>'
|
|
2197
|
+
})
|
|
2198
|
+
export class VegaTimePickerDropdown {
|
|
2199
|
+
protected el: HTMLElement;
|
|
2200
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2201
|
+
c.detach();
|
|
2202
|
+
this.el = r.nativeElement;
|
|
2041
2203
|
}
|
|
2042
2204
|
}
|
|
2043
2205
|
|
|
@@ -2047,6 +2209,10 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
|
2047
2209
|
* An event emitter notifying changes in the toggle switch.
|
|
2048
2210
|
*/
|
|
2049
2211
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
2212
|
+
/**
|
|
2213
|
+
* An native event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
|
|
2214
|
+
*/
|
|
2215
|
+
change: EventEmitter<CustomEvent<boolean>>;
|
|
2050
2216
|
|
|
2051
2217
|
}
|
|
2052
2218
|
|
|
@@ -2065,7 +2231,7 @@ export class VegaToggleSwitch {
|
|
|
2065
2231
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2066
2232
|
c.detach();
|
|
2067
2233
|
this.el = r.nativeElement;
|
|
2068
|
-
proxyOutputs(this, this.el, ['vegaChange']);
|
|
2234
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2069
2235
|
}
|
|
2070
2236
|
}
|
|
2071
2237
|
|
|
@@ -2091,6 +2257,27 @@ export class VegaTooltip {
|
|
|
2091
2257
|
}
|
|
2092
2258
|
|
|
2093
2259
|
|
|
2260
|
+
export declare interface VegaTooltipContentBox extends Components.VegaTooltipContentBox {}
|
|
2261
|
+
|
|
2262
|
+
@ProxyCmp({
|
|
2263
|
+
defineCustomElementFn: undefined,
|
|
2264
|
+
inputs: ['content']
|
|
2265
|
+
})
|
|
2266
|
+
@Component({
|
|
2267
|
+
selector: 'vega-tooltip-content-box',
|
|
2268
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2269
|
+
template: '<ng-content></ng-content>',
|
|
2270
|
+
inputs: ['content']
|
|
2271
|
+
})
|
|
2272
|
+
export class VegaTooltipContentBox {
|
|
2273
|
+
protected el: HTMLElement;
|
|
2274
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2275
|
+
c.detach();
|
|
2276
|
+
this.el = r.nativeElement;
|
|
2277
|
+
}
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
|
|
2094
2281
|
export declare interface VegaVirtualScroll extends Components.VegaVirtualScroll {}
|
|
2095
2282
|
|
|
2096
2283
|
@ProxyCmp({
|
|
@@ -2116,8 +2303,7 @@ export default [
|
|
|
2116
2303
|
VegaAccordion,
|
|
2117
2304
|
VegaAppFooter,
|
|
2118
2305
|
VegaAppHeaderButton,
|
|
2119
|
-
|
|
2120
|
-
VegaBanner,
|
|
2306
|
+
VegaBackdrop,
|
|
2121
2307
|
VegaBarChart,
|
|
2122
2308
|
VegaBox,
|
|
2123
2309
|
VegaBreadcrumb,
|
|
@@ -2133,18 +2319,18 @@ export default [
|
|
|
2133
2319
|
VegaComboBox,
|
|
2134
2320
|
VegaCounterBadge,
|
|
2135
2321
|
VegaDatePicker,
|
|
2322
|
+
VegaDatePickerCalendar,
|
|
2136
2323
|
VegaDialog,
|
|
2137
2324
|
VegaDropdown,
|
|
2325
|
+
VegaDropdownContentBox,
|
|
2138
2326
|
VegaDropdownGroup,
|
|
2139
2327
|
VegaDropdownItem,
|
|
2140
2328
|
VegaFieldError,
|
|
2141
2329
|
VegaFieldLabel,
|
|
2142
2330
|
VegaFlex,
|
|
2143
2331
|
VegaFont,
|
|
2144
|
-
VegaFooter,
|
|
2145
2332
|
VegaForm,
|
|
2146
2333
|
VegaGrid,
|
|
2147
|
-
VegaHeader,
|
|
2148
2334
|
VegaIcon,
|
|
2149
2335
|
VegaImageUploader,
|
|
2150
2336
|
VegaInput,
|
|
@@ -2156,20 +2342,19 @@ export default [
|
|
|
2156
2342
|
VegaLeftNavLink,
|
|
2157
2343
|
VegaLeftNavSection,
|
|
2158
2344
|
VegaLineChart,
|
|
2345
|
+
VegaLoaderWrapper,
|
|
2159
2346
|
VegaLoadingIndicator,
|
|
2160
2347
|
VegaModal,
|
|
2161
2348
|
VegaNavCard,
|
|
2162
|
-
VegaOption,
|
|
2163
2349
|
VegaPageNotification,
|
|
2350
|
+
VegaPageNotificationList,
|
|
2164
2351
|
VegaPagination,
|
|
2165
2352
|
VegaPieChart,
|
|
2166
2353
|
VegaPopover,
|
|
2354
|
+
VegaPopoverContentBox,
|
|
2167
2355
|
VegaProgressTracker,
|
|
2168
2356
|
VegaRadio,
|
|
2169
2357
|
VegaRadioGroup,
|
|
2170
|
-
VegaSidenav,
|
|
2171
|
-
VegaSidenavGroup,
|
|
2172
|
-
VegaSidenavLink,
|
|
2173
2358
|
VegaSlotContainer,
|
|
2174
2359
|
VegaStepper,
|
|
2175
2360
|
VegaTabGroup,
|
|
@@ -2185,7 +2370,9 @@ export default [
|
|
|
2185
2370
|
VegaText,
|
|
2186
2371
|
VegaTextarea,
|
|
2187
2372
|
VegaTimePicker,
|
|
2373
|
+
VegaTimePickerDropdown,
|
|
2188
2374
|
VegaToggleSwitch,
|
|
2189
2375
|
VegaTooltip,
|
|
2376
|
+
VegaTooltipContentBox,
|
|
2190
2377
|
VegaVirtualScroll,
|
|
2191
2378
|
];
|