@heartlandone/vega-angular 1.50.1 → 2.0.0-preview-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm2020/lib/components-module.mjs +5 -5
- package/dist/esm2020/lib/stencil-generated/components.mjs +448 -304
- 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 +458 -317
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +458 -317
- 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 +370 -41
- 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 +1 -1
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +488 -92
- 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,56 @@ 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
|
|
107
|
+
export declare interface VegaBackdrop extends Components.VegaBackdrop {
|
|
108
|
+
/**
|
|
109
|
+
* An event emitter notifying the click event of the backdrop.
|
|
110
|
+
*/
|
|
111
|
+
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
112
|
+
|
|
113
|
+
}
|
|
94
114
|
|
|
95
115
|
@ProxyCmp({
|
|
96
116
|
defineCustomElementFn: undefined,
|
|
97
|
-
inputs: ['
|
|
117
|
+
inputs: ['color', 'duration', 'visible']
|
|
98
118
|
})
|
|
99
119
|
@Component({
|
|
100
|
-
selector: 'vega-
|
|
120
|
+
selector: 'vega-backdrop',
|
|
101
121
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
122
|
template: '<ng-content></ng-content>',
|
|
103
|
-
inputs: ['
|
|
123
|
+
inputs: ['color', 'duration', 'visible']
|
|
104
124
|
})
|
|
105
|
-
export class
|
|
125
|
+
export class VegaBackdrop {
|
|
106
126
|
protected el: HTMLElement;
|
|
107
127
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
108
128
|
c.detach();
|
|
109
129
|
this.el = r.nativeElement;
|
|
130
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
110
131
|
}
|
|
111
132
|
}
|
|
112
133
|
|
|
113
|
-
import type { VegaBannerViewData as IVegaBannerVegaBannerViewData } from '@heartlandone/vega/dist/types/components/vega-banner/types';
|
|
114
|
-
export declare interface VegaBanner extends Components.VegaBanner {
|
|
115
|
-
/**
|
|
116
|
-
* An event emitter notifying the click event of
|
|
117
|
-
the close button in the banner.
|
|
118
|
-
*/
|
|
119
|
-
vegaClose: EventEmitter<CustomEvent<IVegaBannerVegaBannerViewData>>;
|
|
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>>;
|
|
129
134
|
|
|
130
|
-
}
|
|
135
|
+
export declare interface VegaBadge extends Components.VegaBadge {}
|
|
131
136
|
|
|
132
137
|
@ProxyCmp({
|
|
133
138
|
defineCustomElementFn: undefined,
|
|
134
|
-
inputs: ['
|
|
139
|
+
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
135
140
|
})
|
|
136
141
|
@Component({
|
|
137
|
-
selector: 'vega-
|
|
142
|
+
selector: 'vega-badge',
|
|
138
143
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
139
144
|
template: '<ng-content></ng-content>',
|
|
140
|
-
inputs: ['
|
|
145
|
+
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
141
146
|
})
|
|
142
|
-
export class
|
|
147
|
+
export class VegaBadge {
|
|
143
148
|
protected el: HTMLElement;
|
|
144
149
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
145
150
|
c.detach();
|
|
146
151
|
this.el = r.nativeElement;
|
|
147
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaLoad', 'vegaClickCTA']);
|
|
148
152
|
}
|
|
149
153
|
}
|
|
150
154
|
|
|
@@ -196,6 +200,10 @@ export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
|
|
|
196
200
|
* An event emitter notifying that a breadcrumb item has been clicked.
|
|
197
201
|
*/
|
|
198
202
|
vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
203
|
+
/**
|
|
204
|
+
* An native event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
|
|
205
|
+
*/
|
|
206
|
+
click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
199
207
|
|
|
200
208
|
}
|
|
201
209
|
|
|
@@ -214,7 +222,7 @@ export class VegaBreadcrumb {
|
|
|
214
222
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
215
223
|
c.detach();
|
|
216
224
|
this.el = r.nativeElement;
|
|
217
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
225
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
218
226
|
}
|
|
219
227
|
}
|
|
220
228
|
|
|
@@ -224,6 +232,10 @@ export declare interface VegaButton extends Components.VegaButton {
|
|
|
224
232
|
* An event emitter notifying the click event of the button.
|
|
225
233
|
*/
|
|
226
234
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
235
|
+
/**
|
|
236
|
+
* An native event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
237
|
+
*/
|
|
238
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
227
239
|
|
|
228
240
|
}
|
|
229
241
|
|
|
@@ -242,7 +254,7 @@ export class VegaButton {
|
|
|
242
254
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
243
255
|
c.detach();
|
|
244
256
|
this.el = r.nativeElement;
|
|
245
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
257
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
246
258
|
}
|
|
247
259
|
}
|
|
248
260
|
|
|
@@ -252,6 +264,10 @@ export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
|
|
|
252
264
|
* An event emitter notifying the click event of the circular button.
|
|
253
265
|
*/
|
|
254
266
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
267
|
+
/**
|
|
268
|
+
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
|
|
269
|
+
*/
|
|
270
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
255
271
|
|
|
256
272
|
}
|
|
257
273
|
|
|
@@ -270,7 +286,7 @@ export class VegaButtonCircle {
|
|
|
270
286
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
271
287
|
c.detach();
|
|
272
288
|
this.el = r.nativeElement;
|
|
273
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
289
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
274
290
|
}
|
|
275
291
|
}
|
|
276
292
|
|
|
@@ -280,6 +296,10 @@ export declare interface VegaButtonLink extends Components.VegaButtonLink {
|
|
|
280
296
|
* An event emitter notifying the click event of the button.
|
|
281
297
|
*/
|
|
282
298
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
299
|
+
/**
|
|
300
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
301
|
+
*/
|
|
302
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
283
303
|
|
|
284
304
|
}
|
|
285
305
|
|
|
@@ -298,7 +318,7 @@ export class VegaButtonLink {
|
|
|
298
318
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
299
319
|
c.detach();
|
|
300
320
|
this.el = r.nativeElement;
|
|
301
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
321
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
302
322
|
}
|
|
303
323
|
}
|
|
304
324
|
|
|
@@ -307,13 +327,13 @@ export declare interface VegaCard extends Components.VegaCard {}
|
|
|
307
327
|
|
|
308
328
|
@ProxyCmp({
|
|
309
329
|
defineCustomElementFn: undefined,
|
|
310
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
330
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
311
331
|
})
|
|
312
332
|
@Component({
|
|
313
333
|
selector: 'vega-card',
|
|
314
334
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
315
335
|
template: '<ng-content></ng-content>',
|
|
316
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
336
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
317
337
|
})
|
|
318
338
|
export class VegaCard {
|
|
319
339
|
protected el: HTMLElement;
|
|
@@ -330,6 +350,11 @@ export declare interface VegaCarousel extends Components.VegaCarousel {
|
|
|
330
350
|
whether triggered programmatically or through user interaction.
|
|
331
351
|
*/
|
|
332
352
|
vegaPageUpdate: EventEmitter<CustomEvent<number>>;
|
|
353
|
+
/**
|
|
354
|
+
* A native event emitter notifying the transition of the carousel to another page,
|
|
355
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
356
|
+
*/
|
|
357
|
+
pageUpdate: EventEmitter<CustomEvent<number>>;
|
|
333
358
|
|
|
334
359
|
}
|
|
335
360
|
|
|
@@ -349,7 +374,7 @@ export class VegaCarousel {
|
|
|
349
374
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
350
375
|
c.detach();
|
|
351
376
|
this.el = r.nativeElement;
|
|
352
|
-
proxyOutputs(this, this.el, ['vegaPageUpdate']);
|
|
377
|
+
proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
|
|
353
378
|
}
|
|
354
379
|
}
|
|
355
380
|
|
|
@@ -364,6 +389,11 @@ export declare interface VegaCheckbox extends Components.VegaCheckbox {
|
|
|
364
389
|
whether triggered programmatically or through user interaction.
|
|
365
390
|
*/
|
|
366
391
|
vegaChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
392
|
+
/**
|
|
393
|
+
* An event emitter notifying changes in the value of the checkbox,
|
|
394
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
395
|
+
*/
|
|
396
|
+
change: EventEmitter<CustomEvent<string | boolean>>;
|
|
367
397
|
|
|
368
398
|
}
|
|
369
399
|
|
|
@@ -383,7 +413,7 @@ export class VegaCheckbox {
|
|
|
383
413
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
384
414
|
c.detach();
|
|
385
415
|
this.el = r.nativeElement;
|
|
386
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange']);
|
|
416
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'change']);
|
|
387
417
|
}
|
|
388
418
|
}
|
|
389
419
|
|
|
@@ -396,6 +426,13 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
396
426
|
user interaction.
|
|
397
427
|
*/
|
|
398
428
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
429
|
+
/**
|
|
430
|
+
* An event emitter notifying changes in the value
|
|
431
|
+
of any nested checkbox within the checkbox group,
|
|
432
|
+
whether triggered programmatically or through
|
|
433
|
+
user interaction. @eventSemantics namespace:native
|
|
434
|
+
*/
|
|
435
|
+
change: EventEmitter<CustomEvent<string[]>>;
|
|
399
436
|
/**
|
|
400
437
|
* An event emitter notifying changes in the
|
|
401
438
|
validation result of the checkbox group. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -420,7 +457,7 @@ export class VegaCheckboxGroup {
|
|
|
420
457
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
421
458
|
c.detach();
|
|
422
459
|
this.el = r.nativeElement;
|
|
423
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
460
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
424
461
|
}
|
|
425
462
|
}
|
|
426
463
|
|
|
@@ -432,12 +469,20 @@ export declare interface VegaChip extends Components.VegaChip {
|
|
|
432
469
|
This event is only dispatched when the `showCloseIcon` property is set to `true`.
|
|
433
470
|
*/
|
|
434
471
|
vegaClose: EventEmitter<CustomEvent<void>>;
|
|
472
|
+
/**
|
|
473
|
+
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
|
|
474
|
+
*/
|
|
475
|
+
close: EventEmitter<CustomEvent<void>>;
|
|
435
476
|
/**
|
|
436
477
|
* An event emitter notifying the click event of the chip.
|
|
437
478
|
|
|
438
479
|
This event is only dispatched when the `clickable` property is set to `true`.
|
|
439
480
|
*/
|
|
440
481
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
482
|
+
/**
|
|
483
|
+
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native
|
|
484
|
+
*/
|
|
485
|
+
click: EventEmitter<CustomEvent<void>>;
|
|
441
486
|
|
|
442
487
|
}
|
|
443
488
|
|
|
@@ -456,7 +501,7 @@ export class VegaChip {
|
|
|
456
501
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
457
502
|
c.detach();
|
|
458
503
|
this.el = r.nativeElement;
|
|
459
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaClick']);
|
|
504
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
|
|
460
505
|
}
|
|
461
506
|
}
|
|
462
507
|
|
|
@@ -467,6 +512,11 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
|
|
|
467
512
|
whether triggered programmatically or through user interaction.
|
|
468
513
|
*/
|
|
469
514
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
515
|
+
/**
|
|
516
|
+
* An event emitter notifying changes in the value of the color picker,
|
|
517
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
518
|
+
*/
|
|
519
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
470
520
|
/**
|
|
471
521
|
* An event emitter notifying changes in the validation result of the color picker. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
472
522
|
*/
|
|
@@ -490,7 +540,7 @@ export class VegaColorPicker {
|
|
|
490
540
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
491
541
|
c.detach();
|
|
492
542
|
this.el = r.nativeElement;
|
|
493
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
543
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
494
544
|
}
|
|
495
545
|
}
|
|
496
546
|
|
|
@@ -501,6 +551,11 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
501
551
|
whether triggered programmatically or through user interaction.
|
|
502
552
|
*/
|
|
503
553
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
554
|
+
/**
|
|
555
|
+
* An native event emitter notifying changes in the items of the combo box value,
|
|
556
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
557
|
+
*/
|
|
558
|
+
change: EventEmitter<CustomEvent<string[]>>;
|
|
504
559
|
/**
|
|
505
560
|
* An event emitter notifying changes in the validation result of the combo box. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
506
561
|
*/
|
|
@@ -514,11 +569,25 @@ The event's `detail` property contains the new value.
|
|
|
514
569
|
The combo box _does not_ automatically add the new value to its `source` and `value`.
|
|
515
570
|
*/
|
|
516
571
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
572
|
+
/**
|
|
573
|
+
* An native event emitter notifying when the user has chosen to add a new value
|
|
574
|
+
to the source and value of the combo box.
|
|
575
|
+
|
|
576
|
+
The event's `detail` property contains the new value.
|
|
577
|
+
|
|
578
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
|
|
579
|
+
*/
|
|
580
|
+
create: EventEmitter<CustomEvent<string>>;
|
|
517
581
|
/**
|
|
518
582
|
* An event emitter notifying the user's search action in the combo box,
|
|
519
583
|
but only if the `useDefaultFilter` property is set to `false`.
|
|
520
584
|
*/
|
|
521
585
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
586
|
+
/**
|
|
587
|
+
* An native event emitter notifying the user's search action in the combo box,
|
|
588
|
+
but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native
|
|
589
|
+
*/
|
|
590
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
522
591
|
|
|
523
592
|
}
|
|
524
593
|
|
|
@@ -538,7 +607,7 @@ export class VegaComboBox {
|
|
|
538
607
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
539
608
|
c.detach();
|
|
540
609
|
this.el = r.nativeElement;
|
|
541
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaCreate', 'vegaSearch']);
|
|
610
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaCreate', 'create', 'vegaSearch', 'search']);
|
|
542
611
|
}
|
|
543
612
|
}
|
|
544
613
|
|
|
@@ -570,6 +639,11 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
|
570
639
|
whether triggered programmatically or through user interaction.
|
|
571
640
|
*/
|
|
572
641
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
642
|
+
/**
|
|
643
|
+
* A native event emitter notifying the change of the value in the date picker,
|
|
644
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
645
|
+
*/
|
|
646
|
+
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
573
647
|
/**
|
|
574
648
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
575
649
|
*/
|
|
@@ -593,7 +667,26 @@ export class VegaDatePicker {
|
|
|
593
667
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
594
668
|
c.detach();
|
|
595
669
|
this.el = r.nativeElement;
|
|
596
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
670
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {}
|
|
676
|
+
|
|
677
|
+
@ProxyCmp({
|
|
678
|
+
defineCustomElementFn: undefined
|
|
679
|
+
})
|
|
680
|
+
@Component({
|
|
681
|
+
selector: 'vega-date-picker-calendar',
|
|
682
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
683
|
+
template: '<ng-content></ng-content>'
|
|
684
|
+
})
|
|
685
|
+
export class VegaDatePickerCalendar {
|
|
686
|
+
protected el: HTMLElement;
|
|
687
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
688
|
+
c.detach();
|
|
689
|
+
this.el = r.nativeElement;
|
|
597
690
|
}
|
|
598
691
|
}
|
|
599
692
|
|
|
@@ -620,26 +713,38 @@ export class VegaDialog {
|
|
|
620
713
|
|
|
621
714
|
|
|
622
715
|
export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
623
|
-
/**
|
|
624
|
-
* @deprecated This property will be removed soon *
|
|
625
|
-
*/
|
|
626
|
-
vegaClick: EventEmitter<CustomEvent<string | string[]>>;
|
|
627
716
|
/**
|
|
628
717
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
629
718
|
|
|
630
719
|
The event's `detail` property contains the key of the clicked item.
|
|
631
720
|
*/
|
|
632
721
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
722
|
+
/**
|
|
723
|
+
* An event emitter notifying that a dropdown item has been clicked.
|
|
724
|
+
|
|
725
|
+
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
|
|
726
|
+
*/
|
|
727
|
+
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
633
728
|
/**
|
|
634
729
|
* An event emitter notifying that the dropdown has been displayed,
|
|
635
730
|
either programmatically or via user interaction.
|
|
636
731
|
*/
|
|
637
732
|
vegaShow: EventEmitter<CustomEvent<string>>;
|
|
733
|
+
/**
|
|
734
|
+
* An native event emitter notifying that the dropdown has been displayed,
|
|
735
|
+
either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native
|
|
736
|
+
*/
|
|
737
|
+
dropdownShow: EventEmitter<CustomEvent<string>>;
|
|
638
738
|
/**
|
|
639
739
|
* Event emitter notifying that the dropdown has been dismissed,
|
|
640
740
|
either programmatically or via user interaction.
|
|
641
741
|
*/
|
|
642
742
|
vegaHide: EventEmitter<CustomEvent<string>>;
|
|
743
|
+
/**
|
|
744
|
+
* An native event emitter notifying that the dropdown has been dismissed,
|
|
745
|
+
either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native
|
|
746
|
+
*/
|
|
747
|
+
dropdownHide: EventEmitter<CustomEvent<string>>;
|
|
643
748
|
/**
|
|
644
749
|
* An event emitter notifying the addition of a new value
|
|
645
750
|
to the dropdown source list.
|
|
@@ -649,11 +754,25 @@ The event's `detail` property contains the new value.
|
|
|
649
754
|
The dropdown _does not_ automatically add the new value to the source list.
|
|
650
755
|
*/
|
|
651
756
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
757
|
+
/**
|
|
758
|
+
* An event emitter notifying the addition of a new value
|
|
759
|
+
to the dropdown source list.
|
|
760
|
+
|
|
761
|
+
The event's `detail` property contains the new value.
|
|
762
|
+
|
|
763
|
+
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
|
|
764
|
+
*/
|
|
765
|
+
create: EventEmitter<CustomEvent<string>>;
|
|
652
766
|
/**
|
|
653
767
|
* An event emitter notifying the search event in the dropdown,
|
|
654
768
|
but only if `useDefaultFilter` is set to `false`.
|
|
655
769
|
*/
|
|
656
770
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
771
|
+
/**
|
|
772
|
+
* An event emitter notifying the search event in the dropdown,
|
|
773
|
+
but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native
|
|
774
|
+
*/
|
|
775
|
+
dropdownSearch: EventEmitter<CustomEvent<string>>;
|
|
657
776
|
|
|
658
777
|
}
|
|
659
778
|
|
|
@@ -673,7 +792,26 @@ export class VegaDropdown {
|
|
|
673
792
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
674
793
|
c.detach();
|
|
675
794
|
this.el = r.nativeElement;
|
|
676
|
-
proxyOutputs(this, this.el, ['
|
|
795
|
+
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch']);
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
export declare interface VegaDropdownContentBox extends Components.VegaDropdownContentBox {}
|
|
801
|
+
|
|
802
|
+
@ProxyCmp({
|
|
803
|
+
defineCustomElementFn: undefined
|
|
804
|
+
})
|
|
805
|
+
@Component({
|
|
806
|
+
selector: 'vega-dropdown-content-box',
|
|
807
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
808
|
+
template: '<ng-content></ng-content>'
|
|
809
|
+
})
|
|
810
|
+
export class VegaDropdownContentBox {
|
|
811
|
+
protected el: HTMLElement;
|
|
812
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
813
|
+
c.detach();
|
|
814
|
+
this.el = r.nativeElement;
|
|
677
815
|
}
|
|
678
816
|
}
|
|
679
817
|
|
|
@@ -704,6 +842,10 @@ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
|
|
|
704
842
|
* An event emitter notifying the dropdown item has been clicked.
|
|
705
843
|
*/
|
|
706
844
|
vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
845
|
+
/**
|
|
846
|
+
* An native event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
|
|
847
|
+
*/
|
|
848
|
+
click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
707
849
|
|
|
708
850
|
}
|
|
709
851
|
|
|
@@ -722,7 +864,7 @@ export class VegaDropdownItem {
|
|
|
722
864
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
723
865
|
c.detach();
|
|
724
866
|
this.el = r.nativeElement;
|
|
725
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
867
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
726
868
|
}
|
|
727
869
|
}
|
|
728
870
|
|
|
@@ -780,13 +922,13 @@ export declare interface VegaFlex extends Components.VegaFlex {}
|
|
|
780
922
|
|
|
781
923
|
@ProxyCmp({
|
|
782
924
|
defineCustomElementFn: undefined,
|
|
783
|
-
inputs: ['
|
|
925
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
784
926
|
})
|
|
785
927
|
@Component({
|
|
786
928
|
selector: 'vega-flex',
|
|
787
929
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
788
930
|
template: '<ng-content></ng-content>',
|
|
789
|
-
inputs: ['
|
|
931
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
790
932
|
})
|
|
791
933
|
export class VegaFlex {
|
|
792
934
|
protected el: HTMLElement;
|
|
@@ -844,14 +986,26 @@ export declare interface VegaForm extends Components.VegaForm {
|
|
|
844
986
|
* An event emitter notifying the change in the validation result.
|
|
845
987
|
*/
|
|
846
988
|
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
989
|
+
/**
|
|
990
|
+
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native
|
|
991
|
+
*/
|
|
992
|
+
validate: EventEmitter<CustomEvent<boolean>>;
|
|
847
993
|
/**
|
|
848
994
|
* An event emitter notifying the submission of the form.
|
|
849
995
|
*/
|
|
850
996
|
vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
997
|
+
/**
|
|
998
|
+
* An event emitter notifying the submission of the form. @eventSemantics namespace:native
|
|
999
|
+
*/
|
|
1000
|
+
formSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
851
1001
|
/**
|
|
852
1002
|
* An event emitter notifying the reset of the form.
|
|
853
1003
|
*/
|
|
854
1004
|
vegaFormReset: EventEmitter<CustomEvent<any>>;
|
|
1005
|
+
/**
|
|
1006
|
+
* An event emitter notifying the reset of the form. @eventSemantics namespace:native
|
|
1007
|
+
*/
|
|
1008
|
+
formReset: EventEmitter<CustomEvent<any>>;
|
|
855
1009
|
|
|
856
1010
|
}
|
|
857
1011
|
|
|
@@ -871,7 +1025,7 @@ export class VegaForm {
|
|
|
871
1025
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
872
1026
|
c.detach();
|
|
873
1027
|
this.el = r.nativeElement;
|
|
874
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaFormSubmit', 'vegaFormReset']);
|
|
1028
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
|
|
875
1029
|
}
|
|
876
1030
|
}
|
|
877
1031
|
|
|
@@ -942,14 +1096,26 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
|
|
|
942
1096
|
* An event emitter notifying a value change.
|
|
943
1097
|
*/
|
|
944
1098
|
vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
|
|
1099
|
+
/**
|
|
1100
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
1101
|
+
*/
|
|
1102
|
+
change: EventEmitter<CustomEvent<any>>;
|
|
945
1103
|
/**
|
|
946
1104
|
* An event emitter notifying the removal of a value.
|
|
947
1105
|
*/
|
|
948
1106
|
vegaRemove: EventEmitter<CustomEvent<any>>;
|
|
1107
|
+
/**
|
|
1108
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
1109
|
+
*/
|
|
1110
|
+
remove: EventEmitter<CustomEvent<any>>;
|
|
949
1111
|
/**
|
|
950
1112
|
* An event emitter notifying the cancellation of an uploading event.
|
|
951
1113
|
*/
|
|
952
1114
|
vegaCancel: EventEmitter<CustomEvent<any>>;
|
|
1115
|
+
/**
|
|
1116
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
1117
|
+
*/
|
|
1118
|
+
cancel: EventEmitter<CustomEvent<any>>;
|
|
953
1119
|
/**
|
|
954
1120
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
955
1121
|
*/
|
|
@@ -973,7 +1139,7 @@ export class VegaImageUploader {
|
|
|
973
1139
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
974
1140
|
c.detach();
|
|
975
1141
|
this.el = r.nativeElement;
|
|
976
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRemove', 'vegaCancel', 'vegaValidate']);
|
|
1142
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel', 'vegaValidate']);
|
|
977
1143
|
}
|
|
978
1144
|
}
|
|
979
1145
|
|
|
@@ -983,6 +1149,10 @@ export declare interface VegaInput extends Components.VegaInput {
|
|
|
983
1149
|
* An event emitter notifying a value change.
|
|
984
1150
|
*/
|
|
985
1151
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1152
|
+
/**
|
|
1153
|
+
* An native event emitter notifying a value change. @eventSemantics namespace:native
|
|
1154
|
+
*/
|
|
1155
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
986
1156
|
/**
|
|
987
1157
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
988
1158
|
*/
|
|
@@ -991,10 +1161,18 @@ export declare interface VegaInput extends Components.VegaInput {
|
|
|
991
1161
|
* An event emitter notifying the blur of the inner input element.
|
|
992
1162
|
*/
|
|
993
1163
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1164
|
+
/**
|
|
1165
|
+
* An native event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
|
|
1166
|
+
*/
|
|
1167
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
994
1168
|
/**
|
|
995
1169
|
* An event emitter notifying the focus of the inner input element.
|
|
996
1170
|
*/
|
|
997
1171
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
1172
|
+
/**
|
|
1173
|
+
* An native event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
|
|
1174
|
+
*/
|
|
1175
|
+
focus: EventEmitter<CustomEvent<undefined>>;
|
|
998
1176
|
|
|
999
1177
|
}
|
|
1000
1178
|
|
|
@@ -1014,7 +1192,7 @@ export class VegaInput {
|
|
|
1014
1192
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1015
1193
|
c.detach();
|
|
1016
1194
|
this.el = r.nativeElement;
|
|
1017
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur', 'vegaFocus']);
|
|
1195
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1018
1196
|
}
|
|
1019
1197
|
}
|
|
1020
1198
|
|
|
@@ -1028,14 +1206,26 @@ export declare interface VegaInputCreditCard extends Components.VegaInputCreditC
|
|
|
1028
1206
|
* An event emitter notifying a value change.
|
|
1029
1207
|
*/
|
|
1030
1208
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1209
|
+
/**
|
|
1210
|
+
* A native change event emitter notifying a value change. @eventSemantics namespace:native
|
|
1211
|
+
*/
|
|
1212
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1031
1213
|
/**
|
|
1032
1214
|
* An event emitter notifying the blur event of the credit card element.
|
|
1033
1215
|
*/
|
|
1034
1216
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1217
|
+
/**
|
|
1218
|
+
* A native event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
|
|
1219
|
+
*/
|
|
1220
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1035
1221
|
/**
|
|
1036
1222
|
* An event emitter notifying the focus of the credit card element.
|
|
1037
1223
|
*/
|
|
1038
1224
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
1225
|
+
/**
|
|
1226
|
+
* A native event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
|
|
1227
|
+
*/
|
|
1228
|
+
focus: EventEmitter<CustomEvent<undefined>>;
|
|
1039
1229
|
|
|
1040
1230
|
}
|
|
1041
1231
|
|
|
@@ -1055,7 +1245,7 @@ export class VegaInputCreditCard {
|
|
|
1055
1245
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1056
1246
|
c.detach();
|
|
1057
1247
|
this.el = r.nativeElement;
|
|
1058
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'vegaBlur', 'vegaFocus']);
|
|
1248
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1059
1249
|
}
|
|
1060
1250
|
}
|
|
1061
1251
|
|
|
@@ -1066,6 +1256,10 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
|
1066
1256
|
* An event emitter notifying the change of the select value.
|
|
1067
1257
|
*/
|
|
1068
1258
|
vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
1259
|
+
/**
|
|
1260
|
+
* An native event emitter notifying the change of the select value. @eventSemantics namespace:native
|
|
1261
|
+
*/
|
|
1262
|
+
change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
1069
1263
|
/**
|
|
1070
1264
|
* An event emitter notifying the change in the validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
1071
1265
|
*/
|
|
@@ -1074,6 +1268,10 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
|
1074
1268
|
* An event emitter notifying the search of the dropdown.
|
|
1075
1269
|
*/
|
|
1076
1270
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
1271
|
+
/**
|
|
1272
|
+
* An event emitter notifying the search of the dropdown. @eventSemantics namespace:native
|
|
1273
|
+
*/
|
|
1274
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
1077
1275
|
|
|
1078
1276
|
}
|
|
1079
1277
|
|
|
@@ -1093,7 +1291,7 @@ export class VegaInputSelect {
|
|
|
1093
1291
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1094
1292
|
c.detach();
|
|
1095
1293
|
this.el = r.nativeElement;
|
|
1096
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaSearch']);
|
|
1294
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaSearch', 'search']);
|
|
1097
1295
|
}
|
|
1098
1296
|
}
|
|
1099
1297
|
|
|
@@ -1103,6 +1301,10 @@ export declare interface VegaItemToggle extends Components.VegaItemToggle {
|
|
|
1103
1301
|
* An event emitter notifying an item toggle event.
|
|
1104
1302
|
*/
|
|
1105
1303
|
vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
1304
|
+
/**
|
|
1305
|
+
* A native event emitter notifying an item toggle event. @eventSemantics namespace:native
|
|
1306
|
+
*/
|
|
1307
|
+
toggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
1106
1308
|
|
|
1107
1309
|
}
|
|
1108
1310
|
|
|
@@ -1121,7 +1323,7 @@ export class VegaItemToggle {
|
|
|
1121
1323
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1122
1324
|
c.detach();
|
|
1123
1325
|
this.el = r.nativeElement;
|
|
1124
|
-
proxyOutputs(this, this.el, ['vegaToggleStatus']);
|
|
1326
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
|
|
1125
1327
|
}
|
|
1126
1328
|
}
|
|
1127
1329
|
|
|
@@ -1131,6 +1333,10 @@ export declare interface VegaLeftNav extends Components.VegaLeftNav {
|
|
|
1131
1333
|
* An event emitter notifying that the left-nav's open state has changed.
|
|
1132
1334
|
*/
|
|
1133
1335
|
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1336
|
+
/**
|
|
1337
|
+
* A native event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
|
|
1338
|
+
*/
|
|
1339
|
+
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1134
1340
|
|
|
1135
1341
|
}
|
|
1136
1342
|
|
|
@@ -1150,7 +1356,7 @@ export class VegaLeftNav {
|
|
|
1150
1356
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1151
1357
|
c.detach();
|
|
1152
1358
|
this.el = r.nativeElement;
|
|
1153
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1359
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
|
1154
1360
|
}
|
|
1155
1361
|
}
|
|
1156
1362
|
|
|
@@ -1160,6 +1366,10 @@ export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
|
|
|
1160
1366
|
* event emitter used for notifying consumers the click event
|
|
1161
1367
|
*/
|
|
1162
1368
|
vegaGroupClick: EventEmitter<CustomEvent<string>>;
|
|
1369
|
+
/**
|
|
1370
|
+
* A native event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
1371
|
+
*/
|
|
1372
|
+
groupClick: EventEmitter<CustomEvent<string>>;
|
|
1163
1373
|
|
|
1164
1374
|
}
|
|
1165
1375
|
|
|
@@ -1178,7 +1388,7 @@ export class VegaLeftNavGroup {
|
|
|
1178
1388
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1179
1389
|
c.detach();
|
|
1180
1390
|
this.el = r.nativeElement;
|
|
1181
|
-
proxyOutputs(this, this.el, ['vegaGroupClick']);
|
|
1391
|
+
proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
|
|
1182
1392
|
}
|
|
1183
1393
|
}
|
|
1184
1394
|
|
|
@@ -1188,6 +1398,10 @@ export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
|
|
|
1188
1398
|
* event emitter used for notifying consumers the click event
|
|
1189
1399
|
*/
|
|
1190
1400
|
vegaMenuClick: EventEmitter<CustomEvent<any>>;
|
|
1401
|
+
/**
|
|
1402
|
+
* event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
1403
|
+
*/
|
|
1404
|
+
menuClick: EventEmitter<CustomEvent<any>>;
|
|
1191
1405
|
|
|
1192
1406
|
}
|
|
1193
1407
|
|
|
@@ -1206,7 +1420,7 @@ export class VegaLeftNavLink {
|
|
|
1206
1420
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1207
1421
|
c.detach();
|
|
1208
1422
|
this.el = r.nativeElement;
|
|
1209
|
-
proxyOutputs(this, this.el, ['vegaMenuClick']);
|
|
1423
|
+
proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
|
|
1210
1424
|
}
|
|
1211
1425
|
}
|
|
1212
1426
|
|
|
@@ -1254,6 +1468,25 @@ export class VegaLineChart {
|
|
|
1254
1468
|
}
|
|
1255
1469
|
|
|
1256
1470
|
|
|
1471
|
+
export declare interface VegaLoaderWrapper extends Components.VegaLoaderWrapper {}
|
|
1472
|
+
|
|
1473
|
+
@ProxyCmp({
|
|
1474
|
+
defineCustomElementFn: undefined
|
|
1475
|
+
})
|
|
1476
|
+
@Component({
|
|
1477
|
+
selector: 'vega-loader-wrapper',
|
|
1478
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1479
|
+
template: '<ng-content></ng-content>'
|
|
1480
|
+
})
|
|
1481
|
+
export class VegaLoaderWrapper {
|
|
1482
|
+
protected el: HTMLElement;
|
|
1483
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1484
|
+
c.detach();
|
|
1485
|
+
this.el = r.nativeElement;
|
|
1486
|
+
}
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
|
|
1257
1490
|
export declare interface VegaLoadingIndicator extends Components.VegaLoadingIndicator {}
|
|
1258
1491
|
|
|
1259
1492
|
@ProxyCmp({
|
|
@@ -1280,10 +1513,18 @@ export declare interface VegaModal extends Components.VegaModal {
|
|
|
1280
1513
|
* An event emitter notifying the modal close event.
|
|
1281
1514
|
*/
|
|
1282
1515
|
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
1516
|
+
/**
|
|
1517
|
+
* An event emitter notifying the modal close event. @eventSemantics namespace:native
|
|
1518
|
+
*/
|
|
1519
|
+
close: EventEmitter<CustomEvent<any>>;
|
|
1283
1520
|
/**
|
|
1284
1521
|
* An event emitter notifying the modal open event.
|
|
1285
1522
|
*/
|
|
1286
1523
|
vegaOpen: EventEmitter<CustomEvent<any>>;
|
|
1524
|
+
/**
|
|
1525
|
+
* An native event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
|
|
1526
|
+
*/
|
|
1527
|
+
modalOpen: EventEmitter<CustomEvent<any>>;
|
|
1287
1528
|
|
|
1288
1529
|
}
|
|
1289
1530
|
|
|
@@ -1303,7 +1544,7 @@ export class VegaModal {
|
|
|
1303
1544
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1304
1545
|
c.detach();
|
|
1305
1546
|
this.el = r.nativeElement;
|
|
1306
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);
|
|
1547
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
|
|
1307
1548
|
}
|
|
1308
1549
|
}
|
|
1309
1550
|
|
|
@@ -1329,19 +1570,20 @@ export class VegaNavCard {
|
|
|
1329
1570
|
}
|
|
1330
1571
|
|
|
1331
1572
|
|
|
1332
|
-
export declare interface
|
|
1573
|
+
export declare interface VegaPageNotification extends Components.VegaPageNotification {}
|
|
1333
1574
|
|
|
1334
1575
|
@ProxyCmp({
|
|
1335
1576
|
defineCustomElementFn: undefined,
|
|
1336
|
-
inputs: ['
|
|
1577
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1578
|
+
methods: ['close']
|
|
1337
1579
|
})
|
|
1338
1580
|
@Component({
|
|
1339
|
-
selector: 'vega-
|
|
1581
|
+
selector: 'vega-page-notification',
|
|
1340
1582
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1341
1583
|
template: '<ng-content></ng-content>',
|
|
1342
|
-
inputs: ['
|
|
1584
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1343
1585
|
})
|
|
1344
|
-
export class
|
|
1586
|
+
export class VegaPageNotification {
|
|
1345
1587
|
protected el: HTMLElement;
|
|
1346
1588
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1347
1589
|
c.detach();
|
|
@@ -1350,20 +1592,17 @@ export class VegaOption {
|
|
|
1350
1592
|
}
|
|
1351
1593
|
|
|
1352
1594
|
|
|
1353
|
-
export declare interface
|
|
1595
|
+
export declare interface VegaPageNotificationList extends Components.VegaPageNotificationList {}
|
|
1354
1596
|
|
|
1355
1597
|
@ProxyCmp({
|
|
1356
|
-
defineCustomElementFn: undefined
|
|
1357
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1358
|
-
methods: ['close']
|
|
1598
|
+
defineCustomElementFn: undefined
|
|
1359
1599
|
})
|
|
1360
1600
|
@Component({
|
|
1361
|
-
selector: 'vega-page-notification',
|
|
1601
|
+
selector: 'vega-page-notification-list',
|
|
1362
1602
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1363
|
-
template: '<ng-content></ng-content>'
|
|
1364
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1603
|
+
template: '<ng-content></ng-content>'
|
|
1365
1604
|
})
|
|
1366
|
-
export class
|
|
1605
|
+
export class VegaPageNotificationList {
|
|
1367
1606
|
protected el: HTMLElement;
|
|
1368
1607
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1369
1608
|
c.detach();
|
|
@@ -1377,11 +1616,20 @@ export declare interface VegaPagination extends Components.VegaPagination {
|
|
|
1377
1616
|
* An event emitter notifying the current page change.
|
|
1378
1617
|
*/
|
|
1379
1618
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1619
|
+
/**
|
|
1620
|
+
* An event emitter notifying the current page change. @eventSemantics namespace:native
|
|
1621
|
+
*/
|
|
1622
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
1380
1623
|
/**
|
|
1381
1624
|
* An event emitter notifying a change in the number of
|
|
1382
1625
|
data items displayed per page.
|
|
1383
1626
|
*/
|
|
1384
1627
|
vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
1628
|
+
/**
|
|
1629
|
+
* An event emitter notifying a change in the number of
|
|
1630
|
+
data items displayed per page. @eventSemantics namespace:native
|
|
1631
|
+
*/
|
|
1632
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
1385
1633
|
|
|
1386
1634
|
}
|
|
1387
1635
|
|
|
@@ -1400,7 +1648,7 @@ export class VegaPagination {
|
|
|
1400
1648
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1401
1649
|
c.detach();
|
|
1402
1650
|
this.el = r.nativeElement;
|
|
1403
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaPageSizeChange']);
|
|
1651
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
|
|
1404
1652
|
}
|
|
1405
1653
|
}
|
|
1406
1654
|
|
|
@@ -1432,10 +1680,18 @@ export declare interface VegaPopover extends Components.VegaPopover {
|
|
|
1432
1680
|
* An event emitter notifying the popover show event.
|
|
1433
1681
|
*/
|
|
1434
1682
|
vegaPopoverShow: EventEmitter<CustomEvent<string>>;
|
|
1683
|
+
/**
|
|
1684
|
+
* A native event emitter notifying the popover show event. @eventSemantics namespace:native
|
|
1685
|
+
*/
|
|
1686
|
+
popoverShow: EventEmitter<CustomEvent<string>>;
|
|
1435
1687
|
/**
|
|
1436
1688
|
* An event emitter notifying the popover hide event.
|
|
1437
1689
|
*/
|
|
1438
1690
|
vegaPopoverHide: EventEmitter<CustomEvent<string>>;
|
|
1691
|
+
/**
|
|
1692
|
+
* A native event emitter notifying the popover hide event. @eventSemantics namespace:native
|
|
1693
|
+
*/
|
|
1694
|
+
popoverHide: EventEmitter<CustomEvent<string>>;
|
|
1439
1695
|
|
|
1440
1696
|
}
|
|
1441
1697
|
|
|
@@ -1455,7 +1711,26 @@ export class VegaPopover {
|
|
|
1455
1711
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1456
1712
|
c.detach();
|
|
1457
1713
|
this.el = r.nativeElement;
|
|
1458
|
-
proxyOutputs(this, this.el, ['vegaPopoverShow', 'vegaPopoverHide']);
|
|
1714
|
+
proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
|
|
1719
|
+
export declare interface VegaPopoverContentBox extends Components.VegaPopoverContentBox {}
|
|
1720
|
+
|
|
1721
|
+
@ProxyCmp({
|
|
1722
|
+
defineCustomElementFn: undefined
|
|
1723
|
+
})
|
|
1724
|
+
@Component({
|
|
1725
|
+
selector: 'vega-popover-content-box',
|
|
1726
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1727
|
+
template: '<ng-content></ng-content>'
|
|
1728
|
+
})
|
|
1729
|
+
export class VegaPopoverContentBox {
|
|
1730
|
+
protected el: HTMLElement;
|
|
1731
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1732
|
+
c.detach();
|
|
1733
|
+
this.el = r.nativeElement;
|
|
1459
1734
|
}
|
|
1460
1735
|
}
|
|
1461
1736
|
|
|
@@ -1465,6 +1740,10 @@ export declare interface VegaProgressTracker extends Components.VegaProgressTrac
|
|
|
1465
1740
|
* An event emitter notifying that the current step has changed.
|
|
1466
1741
|
*/
|
|
1467
1742
|
vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
1743
|
+
/**
|
|
1744
|
+
* A native event emitter notifying that the current step has changed. @eventSemantics namespace:native
|
|
1745
|
+
*/
|
|
1746
|
+
currentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
1468
1747
|
|
|
1469
1748
|
}
|
|
1470
1749
|
|
|
@@ -1484,7 +1763,7 @@ export class VegaProgressTracker {
|
|
|
1484
1763
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1485
1764
|
c.detach();
|
|
1486
1765
|
this.el = r.nativeElement;
|
|
1487
|
-
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);
|
|
1766
|
+
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
|
|
1488
1767
|
}
|
|
1489
1768
|
}
|
|
1490
1769
|
|
|
@@ -1494,15 +1773,28 @@ export declare interface VegaRadio extends Components.VegaRadio {
|
|
|
1494
1773
|
* An event emitter notifying the focus event of the radio input.
|
|
1495
1774
|
*/
|
|
1496
1775
|
vegaFocus: EventEmitter<CustomEvent<any>>;
|
|
1776
|
+
/**
|
|
1777
|
+
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
|
|
1778
|
+
*/
|
|
1779
|
+
focus: EventEmitter<CustomEvent<any>>;
|
|
1497
1780
|
/**
|
|
1498
1781
|
* An event emitter notifying the blur event of the radio input.
|
|
1499
1782
|
*/
|
|
1500
1783
|
vegaBlur: EventEmitter<CustomEvent<any>>;
|
|
1784
|
+
/**
|
|
1785
|
+
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
|
|
1786
|
+
*/
|
|
1787
|
+
blur: EventEmitter<CustomEvent<any>>;
|
|
1501
1788
|
/**
|
|
1502
1789
|
* An event emitter notifying the change in the check status
|
|
1503
1790
|
of the radio input.
|
|
1504
1791
|
*/
|
|
1505
1792
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
1793
|
+
/**
|
|
1794
|
+
* An event emitter notifying the change in the check status
|
|
1795
|
+
of the radio input. @eventSemantics namespace:native
|
|
1796
|
+
*/
|
|
1797
|
+
change: EventEmitter<CustomEvent<boolean>>;
|
|
1506
1798
|
|
|
1507
1799
|
}
|
|
1508
1800
|
|
|
@@ -1521,7 +1813,7 @@ export class VegaRadio {
|
|
|
1521
1813
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1522
1814
|
c.detach();
|
|
1523
1815
|
this.el = r.nativeElement;
|
|
1524
|
-
proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);
|
|
1816
|
+
proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
|
|
1525
1817
|
}
|
|
1526
1818
|
}
|
|
1527
1819
|
|
|
@@ -1532,6 +1824,11 @@ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
|
|
|
1532
1824
|
checked radio button in the radio group.
|
|
1533
1825
|
*/
|
|
1534
1826
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1827
|
+
/**
|
|
1828
|
+
* An event emitter notifying the change of the
|
|
1829
|
+
checked radio button in the radio group. @eventSemantics namespace:native
|
|
1830
|
+
*/
|
|
1831
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1535
1832
|
/**
|
|
1536
1833
|
* An event emitter notifying the change in the
|
|
1537
1834
|
validation result. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -1556,7 +1853,7 @@ export class VegaRadioGroup {
|
|
|
1556
1853
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1557
1854
|
c.detach();
|
|
1558
1855
|
this.el = r.nativeElement;
|
|
1559
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1856
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
1560
1857
|
}
|
|
1561
1858
|
}
|
|
1562
1859
|
|
|
@@ -1660,10 +1957,13 @@ export class VegaSlotContainer {
|
|
|
1660
1957
|
|
|
1661
1958
|
export declare interface VegaStepper extends Components.VegaStepper {
|
|
1662
1959
|
/**
|
|
1663
|
-
* An event emitter notifying changes in the value of
|
|
1664
|
-
the stepper component.
|
|
1960
|
+
* An event emitter notifying changes in the value of the stepper component.
|
|
1665
1961
|
*/
|
|
1666
1962
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1963
|
+
/**
|
|
1964
|
+
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
|
|
1965
|
+
*/
|
|
1966
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
1667
1967
|
/**
|
|
1668
1968
|
* An event emitter notifying changes in the validation
|
|
1669
1969
|
result of the stepper component. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -1688,7 +1988,7 @@ export class VegaStepper {
|
|
|
1688
1988
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1689
1989
|
c.detach();
|
|
1690
1990
|
this.el = r.nativeElement;
|
|
1691
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1991
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
1692
1992
|
}
|
|
1693
1993
|
}
|
|
1694
1994
|
|
|
@@ -1699,6 +1999,11 @@ export declare interface VegaTabGroup extends Components.VegaTabGroup {
|
|
|
1699
1999
|
in the tab group.
|
|
1700
2000
|
*/
|
|
1701
2001
|
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
2002
|
+
/**
|
|
2003
|
+
* A native event emitter notifying the click event of a tab
|
|
2004
|
+
in the tab group. @eventSemantics namespace:native
|
|
2005
|
+
*/
|
|
2006
|
+
click: EventEmitter<CustomEvent<string>>;
|
|
1702
2007
|
|
|
1703
2008
|
}
|
|
1704
2009
|
|
|
@@ -1717,7 +2022,7 @@ export class VegaTabGroup {
|
|
|
1717
2022
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1718
2023
|
c.detach();
|
|
1719
2024
|
this.el = r.nativeElement;
|
|
1720
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
2025
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1721
2026
|
}
|
|
1722
2027
|
}
|
|
1723
2028
|
|
|
@@ -1751,21 +2056,40 @@ export declare interface VegaTable extends Components.VegaTable {
|
|
|
1751
2056
|
* An event emitter notifying changes in the table data.
|
|
1752
2057
|
*/
|
|
1753
2058
|
vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
2059
|
+
/**
|
|
2060
|
+
* An event emitter notifying changes in the table data. @eventSemantics namespace:native
|
|
2061
|
+
*/
|
|
2062
|
+
change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1754
2063
|
/**
|
|
1755
2064
|
* An event emitter notifying the click event of a row
|
|
1756
2065
|
in the table.
|
|
1757
2066
|
*/
|
|
1758
2067
|
vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
2068
|
+
/**
|
|
2069
|
+
* An event emitter notifying the click event of a row
|
|
2070
|
+
in the table. @eventSemantics namespace:native
|
|
2071
|
+
*/
|
|
2072
|
+
rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1759
2073
|
/**
|
|
1760
2074
|
* An event emitter notifying the selection or deselection
|
|
1761
2075
|
of a row in the table.
|
|
1762
2076
|
*/
|
|
1763
2077
|
vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
2078
|
+
/**
|
|
2079
|
+
* An event emitter notifying the selection or deselection
|
|
2080
|
+
of a row in the table. @eventSemantics namespace:native
|
|
2081
|
+
*/
|
|
2082
|
+
selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1764
2083
|
/**
|
|
1765
2084
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
1766
2085
|
particularly the "Select All" checkbox in the table header.
|
|
1767
2086
|
*/
|
|
1768
2087
|
vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
2088
|
+
/**
|
|
2089
|
+
* An event emitter notifying changes in the selection of checkboxes,
|
|
2090
|
+
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
|
|
2091
|
+
*/
|
|
2092
|
+
selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1769
2093
|
|
|
1770
2094
|
}
|
|
1771
2095
|
|
|
@@ -1785,7 +2109,7 @@ export class VegaTable {
|
|
|
1785
2109
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1786
2110
|
c.detach();
|
|
1787
2111
|
this.el = r.nativeElement;
|
|
1788
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick', 'vegaSelectChange', 'vegaSelectAllChange']);
|
|
2112
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange']);
|
|
1789
2113
|
}
|
|
1790
2114
|
}
|
|
1791
2115
|
|
|
@@ -1813,13 +2137,13 @@ export declare interface VegaTableCell extends Components.VegaTableCell {}
|
|
|
1813
2137
|
|
|
1814
2138
|
@ProxyCmp({
|
|
1815
2139
|
defineCustomElementFn: undefined,
|
|
1816
|
-
inputs: ['breakpoint', '
|
|
2140
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1817
2141
|
})
|
|
1818
2142
|
@Component({
|
|
1819
2143
|
selector: 'vega-table-cell',
|
|
1820
2144
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1821
2145
|
template: '<ng-content></ng-content>',
|
|
1822
|
-
inputs: ['breakpoint', '
|
|
2146
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1823
2147
|
})
|
|
1824
2148
|
export class VegaTableCell {
|
|
1825
2149
|
protected el: HTMLElement;
|
|
@@ -1875,6 +2199,10 @@ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell
|
|
|
1875
2199
|
* An event emitter notifying that the head cell has been clicked.
|
|
1876
2200
|
*/
|
|
1877
2201
|
vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
2202
|
+
/**
|
|
2203
|
+
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
|
|
2204
|
+
*/
|
|
2205
|
+
click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
1878
2206
|
|
|
1879
2207
|
}
|
|
1880
2208
|
|
|
@@ -1893,7 +2221,7 @@ export class VegaTableHeadCell {
|
|
|
1893
2221
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1894
2222
|
c.detach();
|
|
1895
2223
|
this.el = r.nativeElement;
|
|
1896
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
2224
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1897
2225
|
}
|
|
1898
2226
|
}
|
|
1899
2227
|
|
|
@@ -1924,6 +2252,10 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
|
|
|
1924
2252
|
* An event emitter notifying that the row has been clicked.
|
|
1925
2253
|
*/
|
|
1926
2254
|
vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
2255
|
+
/**
|
|
2256
|
+
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
|
|
2257
|
+
*/
|
|
2258
|
+
click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
1927
2259
|
|
|
1928
2260
|
}
|
|
1929
2261
|
|
|
@@ -1942,7 +2274,7 @@ export class VegaTableRow {
|
|
|
1942
2274
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1943
2275
|
c.detach();
|
|
1944
2276
|
this.el = r.nativeElement;
|
|
1945
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
2277
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1946
2278
|
}
|
|
1947
2279
|
}
|
|
1948
2280
|
|
|
@@ -1974,6 +2306,11 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
|
1974
2306
|
of the text area.
|
|
1975
2307
|
*/
|
|
1976
2308
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2309
|
+
/**
|
|
2310
|
+
* An event emitter notifying about changes in the value
|
|
2311
|
+
of the text area. @eventSemantics namespace:native
|
|
2312
|
+
*/
|
|
2313
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1977
2314
|
/**
|
|
1978
2315
|
* An event emitter notifying changes in the validation result
|
|
1979
2316
|
of the text area. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -1984,6 +2321,11 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
|
1984
2321
|
textarea element within the text area.
|
|
1985
2322
|
*/
|
|
1986
2323
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
2324
|
+
/**
|
|
2325
|
+
* An event emitter notifying the blur event of the inner
|
|
2326
|
+
textarea element within the text area. @eventSemantics namespace:native
|
|
2327
|
+
*/
|
|
2328
|
+
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1987
2329
|
|
|
1988
2330
|
}
|
|
1989
2331
|
|
|
@@ -2003,7 +2345,7 @@ export class VegaTextarea {
|
|
|
2003
2345
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2004
2346
|
c.detach();
|
|
2005
2347
|
this.el = r.nativeElement;
|
|
2006
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur']);
|
|
2348
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaBlur', 'blur']);
|
|
2007
2349
|
}
|
|
2008
2350
|
}
|
|
2009
2351
|
|
|
@@ -2013,6 +2355,10 @@ export declare interface VegaTimePicker extends Components.VegaTimePicker {
|
|
|
2013
2355
|
* An event emitter notifying changes in the value of the time picker.
|
|
2014
2356
|
*/
|
|
2015
2357
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
2358
|
+
/**
|
|
2359
|
+
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
|
|
2360
|
+
*/
|
|
2361
|
+
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
2016
2362
|
/**
|
|
2017
2363
|
* An event emitter notifying changes in the validation result
|
|
2018
2364
|
of the time picker. @deprecated vegaValidate is only used to listen on the vega-form component.
|
|
@@ -2037,7 +2383,26 @@ export class VegaTimePicker {
|
|
|
2037
2383
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2038
2384
|
c.detach();
|
|
2039
2385
|
this.el = r.nativeElement;
|
|
2040
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
2386
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
2387
|
+
}
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
|
|
2391
|
+
export declare interface VegaTimePickerDropdown extends Components.VegaTimePickerDropdown {}
|
|
2392
|
+
|
|
2393
|
+
@ProxyCmp({
|
|
2394
|
+
defineCustomElementFn: undefined
|
|
2395
|
+
})
|
|
2396
|
+
@Component({
|
|
2397
|
+
selector: 'vega-time-picker-dropdown',
|
|
2398
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2399
|
+
template: '<ng-content></ng-content>'
|
|
2400
|
+
})
|
|
2401
|
+
export class VegaTimePickerDropdown {
|
|
2402
|
+
protected el: HTMLElement;
|
|
2403
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2404
|
+
c.detach();
|
|
2405
|
+
this.el = r.nativeElement;
|
|
2041
2406
|
}
|
|
2042
2407
|
}
|
|
2043
2408
|
|
|
@@ -2047,6 +2412,10 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
|
2047
2412
|
* An event emitter notifying changes in the toggle switch.
|
|
2048
2413
|
*/
|
|
2049
2414
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
2415
|
+
/**
|
|
2416
|
+
* An native event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
|
|
2417
|
+
*/
|
|
2418
|
+
change: EventEmitter<CustomEvent<boolean>>;
|
|
2050
2419
|
|
|
2051
2420
|
}
|
|
2052
2421
|
|
|
@@ -2065,7 +2434,7 @@ export class VegaToggleSwitch {
|
|
|
2065
2434
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2066
2435
|
c.detach();
|
|
2067
2436
|
this.el = r.nativeElement;
|
|
2068
|
-
proxyOutputs(this, this.el, ['vegaChange']);
|
|
2437
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2069
2438
|
}
|
|
2070
2439
|
}
|
|
2071
2440
|
|
|
@@ -2091,6 +2460,27 @@ export class VegaTooltip {
|
|
|
2091
2460
|
}
|
|
2092
2461
|
|
|
2093
2462
|
|
|
2463
|
+
export declare interface VegaTooltipContentBox extends Components.VegaTooltipContentBox {}
|
|
2464
|
+
|
|
2465
|
+
@ProxyCmp({
|
|
2466
|
+
defineCustomElementFn: undefined,
|
|
2467
|
+
inputs: ['content']
|
|
2468
|
+
})
|
|
2469
|
+
@Component({
|
|
2470
|
+
selector: 'vega-tooltip-content-box',
|
|
2471
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2472
|
+
template: '<ng-content></ng-content>',
|
|
2473
|
+
inputs: ['content']
|
|
2474
|
+
})
|
|
2475
|
+
export class VegaTooltipContentBox {
|
|
2476
|
+
protected el: HTMLElement;
|
|
2477
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2478
|
+
c.detach();
|
|
2479
|
+
this.el = r.nativeElement;
|
|
2480
|
+
}
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
|
|
2094
2484
|
export declare interface VegaVirtualScroll extends Components.VegaVirtualScroll {}
|
|
2095
2485
|
|
|
2096
2486
|
@ProxyCmp({
|
|
@@ -2116,8 +2506,8 @@ export default [
|
|
|
2116
2506
|
VegaAccordion,
|
|
2117
2507
|
VegaAppFooter,
|
|
2118
2508
|
VegaAppHeaderButton,
|
|
2509
|
+
VegaBackdrop,
|
|
2119
2510
|
VegaBadge,
|
|
2120
|
-
VegaBanner,
|
|
2121
2511
|
VegaBarChart,
|
|
2122
2512
|
VegaBox,
|
|
2123
2513
|
VegaBreadcrumb,
|
|
@@ -2133,8 +2523,10 @@ export default [
|
|
|
2133
2523
|
VegaComboBox,
|
|
2134
2524
|
VegaCounterBadge,
|
|
2135
2525
|
VegaDatePicker,
|
|
2526
|
+
VegaDatePickerCalendar,
|
|
2136
2527
|
VegaDialog,
|
|
2137
2528
|
VegaDropdown,
|
|
2529
|
+
VegaDropdownContentBox,
|
|
2138
2530
|
VegaDropdownGroup,
|
|
2139
2531
|
VegaDropdownItem,
|
|
2140
2532
|
VegaFieldError,
|
|
@@ -2156,14 +2548,16 @@ export default [
|
|
|
2156
2548
|
VegaLeftNavLink,
|
|
2157
2549
|
VegaLeftNavSection,
|
|
2158
2550
|
VegaLineChart,
|
|
2551
|
+
VegaLoaderWrapper,
|
|
2159
2552
|
VegaLoadingIndicator,
|
|
2160
2553
|
VegaModal,
|
|
2161
2554
|
VegaNavCard,
|
|
2162
|
-
VegaOption,
|
|
2163
2555
|
VegaPageNotification,
|
|
2556
|
+
VegaPageNotificationList,
|
|
2164
2557
|
VegaPagination,
|
|
2165
2558
|
VegaPieChart,
|
|
2166
2559
|
VegaPopover,
|
|
2560
|
+
VegaPopoverContentBox,
|
|
2167
2561
|
VegaProgressTracker,
|
|
2168
2562
|
VegaRadio,
|
|
2169
2563
|
VegaRadioGroup,
|
|
@@ -2185,7 +2579,9 @@ export default [
|
|
|
2185
2579
|
VegaText,
|
|
2186
2580
|
VegaTextarea,
|
|
2187
2581
|
VegaTimePicker,
|
|
2582
|
+
VegaTimePickerDropdown,
|
|
2188
2583
|
VegaToggleSwitch,
|
|
2189
2584
|
VegaTooltip,
|
|
2585
|
+
VegaTooltipContentBox,
|
|
2190
2586
|
VegaVirtualScroll,
|
|
2191
2587
|
];
|