@heartlandone/vega-angular 2.2.0 → 2.4.0-RTE-preview
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 +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +769 -70
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +3 -3
- package/dist/esm2020/testing/heartlandone-vega-angular-testing.mjs +5 -0
- package/dist/esm2020/testing/index.mjs +84 -0
- package/dist/esm2020/testing/public-api.mjs +5 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs +97 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2015/heartlandone-vega-angular.mjs +746 -73
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs +94 -0
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2020/heartlandone-vega-angular.mjs +746 -73
- 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 +729 -156
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- package/dist/package.json +10 -2
- package/dist/testing/heartlandone-vega-angular-testing.d.ts +5 -0
- package/dist/testing/index.d.ts +7 -0
- package/dist/testing/package.json +10 -0
- package/dist/testing/public-api.d.ts +1 -0
- package/package.json +5 -4
- package/src/lib/stencil-generated/components.ts +1175 -212
- package/src/lib/stencil-generated/text-value-accessor.ts +1 -1
- package/src/scripts/stencil-post-build-script.js +20 -3
- package/testing/index.ts +115 -0
- package/testing/ng-package.json +8 -0
- package/testing/public-api.ts +4 -0
|
@@ -10,12 +10,12 @@ import { Components } from '@heartlandone/vega';
|
|
|
10
10
|
|
|
11
11
|
export declare interface VegaAccordion extends Components.VegaAccordion {
|
|
12
12
|
/**
|
|
13
|
-
* An event emitter notifying the expand event of the accordion.
|
|
13
|
+
* An event emitter notifying the expand event of the accordion. @vegaVersion 1.3.0
|
|
14
14
|
*/
|
|
15
15
|
vegaExpand: EventEmitter<CustomEvent<boolean>>;
|
|
16
16
|
/**
|
|
17
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
|
|
18
|
+
expand is an attribute, so the event name here uses accordionExpand @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
19
19
|
*/
|
|
20
20
|
accordionExpand: EventEmitter<CustomEvent<boolean>>;
|
|
21
21
|
|
|
@@ -64,21 +64,21 @@ export class VegaAppFooter {
|
|
|
64
64
|
|
|
65
65
|
export declare interface VegaAppHeaderButton extends Components.VegaAppHeaderButton {
|
|
66
66
|
/**
|
|
67
|
-
* An event emitter notifying the click event of an app header button.
|
|
67
|
+
* An event emitter notifying the click event of an app header button. @vegaVersion 1.11.0
|
|
68
68
|
*/
|
|
69
69
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
70
70
|
/**
|
|
71
|
-
* An event emitter notifying the click event of an app header button. @eventSemantics namespace:native
|
|
71
|
+
* An event emitter notifying the click event of an app header button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
72
72
|
*/
|
|
73
73
|
click: EventEmitter<CustomEvent<any>>;
|
|
74
74
|
/**
|
|
75
75
|
* An event emitter notifying the click event of a dropdown item
|
|
76
|
-
in the app header.
|
|
76
|
+
in the app header. @vegaVersion 1.23.0
|
|
77
77
|
*/
|
|
78
78
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
79
79
|
/**
|
|
80
80
|
* An event emitter notifying the click event of a dropdown item
|
|
81
|
-
in the app header. @eventSemantics namespace:native
|
|
81
|
+
in the app header. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
82
82
|
*/
|
|
83
83
|
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
84
84
|
|
|
@@ -106,7 +106,7 @@ export class VegaAppHeaderButton {
|
|
|
106
106
|
|
|
107
107
|
export declare interface VegaBackdrop extends Components.VegaBackdrop {
|
|
108
108
|
/**
|
|
109
|
-
* An event emitter notifying the click event of the backdrop.
|
|
109
|
+
* An event emitter notifying the click event of the backdrop. @vegaVersion 2.0.0
|
|
110
110
|
*/
|
|
111
111
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
112
112
|
|
|
@@ -131,6 +131,47 @@ export class VegaBackdrop {
|
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
import type { VegaBannerActionButtonType as IVegaBannerVegaBannerActionButtonType } from '@heartlandone/vega/dist/types/components/vega-banner/types';
|
|
135
|
+
export declare interface VegaBanner extends Components.VegaBanner {
|
|
136
|
+
/**
|
|
137
|
+
* An event emitter notifying the banner close event. @vegaVersion 1.13.0
|
|
138
|
+
*/
|
|
139
|
+
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
140
|
+
/**
|
|
141
|
+
* An event emitter notifying the banner close event. @eventSemantics namespace:native,@vegaVersion 2.8.0
|
|
142
|
+
*/
|
|
143
|
+
close: EventEmitter<CustomEvent<any>>;
|
|
144
|
+
/**
|
|
145
|
+
* An event emitter notifying the banner action button has been clicked. @vegaVersion 2.18.0
|
|
146
|
+
*/
|
|
147
|
+
vegaActionButtonClick: EventEmitter<CustomEvent<IVegaBannerVegaBannerActionButtonType>>;
|
|
148
|
+
/**
|
|
149
|
+
* An event emitter notifying the banner action button has been clicked. @eventSemantics namespace:native,@vegaVersion 2.18.0
|
|
150
|
+
*/
|
|
151
|
+
actionButtonClick: EventEmitter<CustomEvent<IVegaBannerVegaBannerActionButtonType>>;
|
|
152
|
+
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
@ProxyCmp({
|
|
156
|
+
defineCustomElementFn: undefined,
|
|
157
|
+
inputs: ['actionButtons', 'bannerTitle', 'content', 'isOpen', 'showCloseButton', 'type'],
|
|
158
|
+
methods: ['doClose']
|
|
159
|
+
})
|
|
160
|
+
@Component({
|
|
161
|
+
selector: 'vega-banner',
|
|
162
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
163
|
+
template: '<ng-content></ng-content>',
|
|
164
|
+
inputs: ['actionButtons', 'bannerTitle', 'content', 'isOpen', 'showCloseButton', 'type']
|
|
165
|
+
})
|
|
166
|
+
export class VegaBanner {
|
|
167
|
+
protected el: HTMLElement;
|
|
168
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
169
|
+
c.detach();
|
|
170
|
+
this.el = r.nativeElement;
|
|
171
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaActionButtonClick', 'actionButtonClick']);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
134
175
|
|
|
135
176
|
export declare interface VegaBarChart extends Components.VegaBarChart {}
|
|
136
177
|
|
|
@@ -157,13 +198,13 @@ export declare interface VegaBox extends Components.VegaBox {}
|
|
|
157
198
|
|
|
158
199
|
@ProxyCmp({
|
|
159
200
|
defineCustomElementFn: undefined,
|
|
160
|
-
inputs: ['backgroundColor', 'border', 'borderColor', 'corners', 'display', 'height', 'margin', 'padding', 'responsiveClass', 'shadow', 'width']
|
|
201
|
+
inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'borderStyle', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'maxHeight', 'minHeight', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
|
|
161
202
|
})
|
|
162
203
|
@Component({
|
|
163
204
|
selector: 'vega-box',
|
|
164
205
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
165
206
|
template: '<ng-content></ng-content>',
|
|
166
|
-
inputs: ['backgroundColor', 'border', 'borderColor', 'corners', 'display', 'height', 'margin', 'padding', 'responsiveClass', 'shadow', 'width']
|
|
207
|
+
inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'borderStyle', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'maxHeight', 'minHeight', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
|
|
167
208
|
})
|
|
168
209
|
export class VegaBox {
|
|
169
210
|
protected el: HTMLElement;
|
|
@@ -176,11 +217,11 @@ export class VegaBox {
|
|
|
176
217
|
import type { VegaBreadcrumbItemType as IVegaBreadcrumbVegaBreadcrumbItemType } from '@heartlandone/vega/dist/types/components/vega-breadcrumb/types';
|
|
177
218
|
export declare interface VegaBreadcrumb extends Components.VegaBreadcrumb {
|
|
178
219
|
/**
|
|
179
|
-
* An event emitter notifying that a breadcrumb item has been clicked.
|
|
220
|
+
* An event emitter notifying that a breadcrumb item has been clicked. @vegaVersion 1.41.0
|
|
180
221
|
*/
|
|
181
222
|
vegaClick: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
182
223
|
/**
|
|
183
|
-
* An event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native
|
|
224
|
+
* An event emitter notifying that a breadcrumb item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
184
225
|
*/
|
|
185
226
|
click: EventEmitter<CustomEvent<IVegaBreadcrumbVegaBreadcrumbItemType>>;
|
|
186
227
|
|
|
@@ -208,11 +249,11 @@ export class VegaBreadcrumb {
|
|
|
208
249
|
|
|
209
250
|
export declare interface VegaButton extends Components.VegaButton {
|
|
210
251
|
/**
|
|
211
|
-
* An event emitter notifying the click event of the button.
|
|
252
|
+
* An event emitter notifying the click event of the button. @vegaVersion 1.0.11
|
|
212
253
|
*/
|
|
213
254
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
214
255
|
/**
|
|
215
|
-
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
256
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
216
257
|
*/
|
|
217
258
|
click: EventEmitter<CustomEvent<any>>;
|
|
218
259
|
|
|
@@ -220,13 +261,13 @@ export declare interface VegaButton extends Components.VegaButton {
|
|
|
220
261
|
|
|
221
262
|
@ProxyCmp({
|
|
222
263
|
defineCustomElementFn: undefined,
|
|
223
|
-
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'type', 'variant']
|
|
264
|
+
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'loading', 'size', 'type', 'variant']
|
|
224
265
|
})
|
|
225
266
|
@Component({
|
|
226
267
|
selector: 'vega-button',
|
|
227
268
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
228
269
|
template: '<ng-content></ng-content>',
|
|
229
|
-
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'type', 'variant']
|
|
270
|
+
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'loading', 'size', 'type', 'variant']
|
|
230
271
|
})
|
|
231
272
|
export class VegaButton {
|
|
232
273
|
protected el: HTMLElement;
|
|
@@ -240,11 +281,11 @@ export class VegaButton {
|
|
|
240
281
|
|
|
241
282
|
export declare interface VegaButtonCircle extends Components.VegaButtonCircle {
|
|
242
283
|
/**
|
|
243
|
-
* An event emitter notifying the click event of the circular button.
|
|
284
|
+
* An event emitter notifying the click event of the circular button. @vegaVersion 1.0.11
|
|
244
285
|
*/
|
|
245
286
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
246
287
|
/**
|
|
247
|
-
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native
|
|
288
|
+
* An event emitter notifying the click event of the circular button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
248
289
|
*/
|
|
249
290
|
click: EventEmitter<CustomEvent<any>>;
|
|
250
291
|
|
|
@@ -270,13 +311,66 @@ export class VegaButtonCircle {
|
|
|
270
311
|
}
|
|
271
312
|
|
|
272
313
|
|
|
314
|
+
export declare interface VegaButtonGroup extends Components.VegaButtonGroup {
|
|
315
|
+
/**
|
|
316
|
+
* An event emitter notifying the click event of the button group. @vegaVersion 2.5.0
|
|
317
|
+
*/
|
|
318
|
+
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
319
|
+
/**
|
|
320
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.5.0
|
|
321
|
+
*/
|
|
322
|
+
click: EventEmitter<CustomEvent<string>>;
|
|
323
|
+
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
@ProxyCmp({
|
|
327
|
+
defineCustomElementFn: undefined,
|
|
328
|
+
inputs: ['iconAlign', 'size', 'variant']
|
|
329
|
+
})
|
|
330
|
+
@Component({
|
|
331
|
+
selector: 'vega-button-group',
|
|
332
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
333
|
+
template: '<ng-content></ng-content>',
|
|
334
|
+
inputs: ['iconAlign', 'size', 'variant']
|
|
335
|
+
})
|
|
336
|
+
export class VegaButtonGroup {
|
|
337
|
+
protected el: HTMLElement;
|
|
338
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
339
|
+
c.detach();
|
|
340
|
+
this.el = r.nativeElement;
|
|
341
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
export declare interface VegaButtonGroupItem extends Components.VegaButtonGroupItem {}
|
|
347
|
+
|
|
348
|
+
@ProxyCmp({
|
|
349
|
+
defineCustomElementFn: undefined,
|
|
350
|
+
inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
|
351
|
+
})
|
|
352
|
+
@Component({
|
|
353
|
+
selector: 'vega-button-group-item',
|
|
354
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
355
|
+
template: '<ng-content></ng-content>',
|
|
356
|
+
inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
|
357
|
+
})
|
|
358
|
+
export class VegaButtonGroupItem {
|
|
359
|
+
protected el: HTMLElement;
|
|
360
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
361
|
+
c.detach();
|
|
362
|
+
this.el = r.nativeElement;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
|
|
273
367
|
export declare interface VegaButtonLink extends Components.VegaButtonLink {
|
|
274
368
|
/**
|
|
275
|
-
* An event emitter notifying the click event of the button.
|
|
369
|
+
* An event emitter notifying the click event of the button. @vegaVersion 1.0.11
|
|
276
370
|
*/
|
|
277
371
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
278
372
|
/**
|
|
279
|
-
* An event emitter notifying the click event of the button. @eventSemantics namespace:native
|
|
373
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
280
374
|
*/
|
|
281
375
|
click: EventEmitter<CustomEvent<any>>;
|
|
282
376
|
|
|
@@ -301,6 +395,106 @@ export class VegaButtonLink {
|
|
|
301
395
|
}
|
|
302
396
|
}
|
|
303
397
|
|
|
398
|
+
import type { VegaCalendarChangeEventType as IVegaCalendarVegaCalendarChangeEventType } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
399
|
+
import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
400
|
+
import type { VegaCalendarDateClickInfo as IVegaCalendarVegaCalendarDateClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
401
|
+
export declare interface VegaCalendar extends Components.VegaCalendar {
|
|
402
|
+
/**
|
|
403
|
+
* An event emitter notifying the component view content change after a switch panel click. @vegaVersion 2.14.0
|
|
404
|
+
*/
|
|
405
|
+
vegaChange: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarChangeEventType>>;
|
|
406
|
+
/**
|
|
407
|
+
* An event emitter notifying the component view content change after a switch panel click. @eventSemantics namespace:native,@vegaVersion 2.14.0
|
|
408
|
+
*/
|
|
409
|
+
change: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarChangeEventType>>;
|
|
410
|
+
/**
|
|
411
|
+
* An event emitter notifying that a component event item is clicked. @vegaVersion 2.14.0
|
|
412
|
+
*/
|
|
413
|
+
vegaEventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
|
|
414
|
+
/**
|
|
415
|
+
* An event emitter notifying that a component event item is clicked. @eventSemantics namespace:native,@vegaVersion 2.14.0
|
|
416
|
+
*/
|
|
417
|
+
eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
|
|
418
|
+
/**
|
|
419
|
+
* An event emitter notifying that a calendar date item has been double-clicked. @vegaVersion 2.17.0
|
|
420
|
+
*/
|
|
421
|
+
vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
422
|
+
/**
|
|
423
|
+
* An event emitter notifying that a calendar date item has been double-clicked. @eventSemantics namespace:native,@vegaVersion 2.17.0
|
|
424
|
+
*/
|
|
425
|
+
dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
426
|
+
/**
|
|
427
|
+
* An event emitter notifying that a calendar more action menu item has been clicked. @vegaVersion 2.20.0
|
|
428
|
+
*/
|
|
429
|
+
vegaMoreActionClick: EventEmitter<CustomEvent<string>>;
|
|
430
|
+
/**
|
|
431
|
+
* An event emitter notifying that a calendar more action menu item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.20.0
|
|
432
|
+
*/
|
|
433
|
+
moreActionClick: EventEmitter<CustomEvent<string>>;
|
|
434
|
+
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
@ProxyCmp({
|
|
438
|
+
defineCustomElementFn: undefined,
|
|
439
|
+
inputs: ['events', 'moreActionDropdownProps', 'showEventColorBar', 'showWeekends', 'timeFormat', 'viewMode']
|
|
440
|
+
})
|
|
441
|
+
@Component({
|
|
442
|
+
selector: 'vega-calendar',
|
|
443
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
444
|
+
template: '<ng-content></ng-content>',
|
|
445
|
+
inputs: ['events', 'moreActionDropdownProps', 'showEventColorBar', 'showWeekends', 'timeFormat', 'viewMode']
|
|
446
|
+
})
|
|
447
|
+
export class VegaCalendar {
|
|
448
|
+
protected el: HTMLElement;
|
|
449
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
450
|
+
c.detach();
|
|
451
|
+
this.el = r.nativeElement;
|
|
452
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick', 'vegaMoreActionClick', 'moreActionClick']);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
export declare interface VegaCalendarEvent extends Components.VegaCalendarEvent {}
|
|
458
|
+
|
|
459
|
+
@ProxyCmp({
|
|
460
|
+
defineCustomElementFn: undefined,
|
|
461
|
+
inputs: ['calendarEvent']
|
|
462
|
+
})
|
|
463
|
+
@Component({
|
|
464
|
+
selector: 'vega-calendar-event',
|
|
465
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
466
|
+
template: '<ng-content></ng-content>',
|
|
467
|
+
inputs: ['calendarEvent']
|
|
468
|
+
})
|
|
469
|
+
export class VegaCalendarEvent {
|
|
470
|
+
protected el: HTMLElement;
|
|
471
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
472
|
+
c.detach();
|
|
473
|
+
this.el = r.nativeElement;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
export declare interface VegaCalendarEventSlot extends Components.VegaCalendarEventSlot {}
|
|
479
|
+
|
|
480
|
+
@ProxyCmp({
|
|
481
|
+
defineCustomElementFn: undefined,
|
|
482
|
+
inputs: ['eventKey']
|
|
483
|
+
})
|
|
484
|
+
@Component({
|
|
485
|
+
selector: 'vega-calendar-event-slot',
|
|
486
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
487
|
+
template: '<ng-content></ng-content>',
|
|
488
|
+
inputs: ['eventKey']
|
|
489
|
+
})
|
|
490
|
+
export class VegaCalendarEventSlot {
|
|
491
|
+
protected el: HTMLElement;
|
|
492
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
493
|
+
c.detach();
|
|
494
|
+
this.el = r.nativeElement;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
304
498
|
|
|
305
499
|
export declare interface VegaCard extends Components.VegaCard {}
|
|
306
500
|
|
|
@@ -326,12 +520,12 @@ export class VegaCard {
|
|
|
326
520
|
export declare interface VegaCarousel extends Components.VegaCarousel {
|
|
327
521
|
/**
|
|
328
522
|
* An event emitter notifying the transition of the carousel to another page,
|
|
329
|
-
whether triggered programmatically or through user interaction.
|
|
523
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.3.0
|
|
330
524
|
*/
|
|
331
525
|
vegaPageUpdate: EventEmitter<CustomEvent<number>>;
|
|
332
526
|
/**
|
|
333
527
|
* An event emitter notifying the transition of the carousel to another page,
|
|
334
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
528
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
335
529
|
*/
|
|
336
530
|
pageUpdate: EventEmitter<CustomEvent<number>>;
|
|
337
531
|
|
|
@@ -361,12 +555,12 @@ export class VegaCarousel {
|
|
|
361
555
|
export declare interface VegaCheckbox extends Components.VegaCheckbox {
|
|
362
556
|
/**
|
|
363
557
|
* An event emitter notifying changes in the value of the checkbox,
|
|
364
|
-
whether triggered programmatically or through user interaction.
|
|
558
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.0.10
|
|
365
559
|
*/
|
|
366
560
|
vegaChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
367
561
|
/**
|
|
368
562
|
* An event emitter notifying changes in the value of the checkbox,
|
|
369
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
563
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
370
564
|
*/
|
|
371
565
|
change: EventEmitter<CustomEvent<string | boolean>>;
|
|
372
566
|
|
|
@@ -398,14 +592,14 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
398
592
|
* An event emitter notifying changes in the value
|
|
399
593
|
of any nested checkbox within the checkbox group,
|
|
400
594
|
whether triggered programmatically or through
|
|
401
|
-
user interaction.
|
|
595
|
+
user interaction. @vegaVersion 1.0.10
|
|
402
596
|
*/
|
|
403
597
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
404
598
|
/**
|
|
405
599
|
* An event emitter notifying changes in the value
|
|
406
600
|
of any nested checkbox within the checkbox group,
|
|
407
601
|
whether triggered programmatically or through
|
|
408
|
-
user interaction. @eventSemantics namespace:native
|
|
602
|
+
user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
409
603
|
*/
|
|
410
604
|
change: EventEmitter<CustomEvent<string[]>>;
|
|
411
605
|
|
|
@@ -413,13 +607,13 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
413
607
|
|
|
414
608
|
@ProxyCmp({
|
|
415
609
|
defineCustomElementFn: undefined,
|
|
416
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
610
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
417
611
|
})
|
|
418
612
|
@Component({
|
|
419
613
|
selector: 'vega-checkbox-group',
|
|
420
614
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
421
615
|
template: '<ng-content></ng-content>',
|
|
422
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
616
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
423
617
|
})
|
|
424
618
|
export class VegaCheckboxGroup {
|
|
425
619
|
protected el: HTMLElement;
|
|
@@ -435,21 +629,21 @@ export declare interface VegaChip extends Components.VegaChip {
|
|
|
435
629
|
/**
|
|
436
630
|
* An event emitter notifying the click event of the close button of the chip.
|
|
437
631
|
|
|
438
|
-
This event is only dispatched when the `showCloseIcon` property is set to `true`.
|
|
632
|
+
This event is only dispatched when the `showCloseIcon` property is set to `true`. @vegaVersion 1.11.0
|
|
439
633
|
*/
|
|
440
634
|
vegaClose: EventEmitter<CustomEvent<void>>;
|
|
441
635
|
/**
|
|
442
|
-
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native
|
|
636
|
+
* An event emitter notifying the click event of the close button of the chip. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
443
637
|
*/
|
|
444
638
|
close: EventEmitter<CustomEvent<void>>;
|
|
445
639
|
/**
|
|
446
640
|
* An event emitter notifying the click event of the chip.
|
|
447
641
|
|
|
448
|
-
This event is only dispatched when the `clickable` property is set to `true`.
|
|
642
|
+
This event is only dispatched when the `clickable` property is set to `true`. @vegaVersion 1.11.0
|
|
449
643
|
*/
|
|
450
644
|
vegaClick: EventEmitter<CustomEvent<void>>;
|
|
451
645
|
/**
|
|
452
|
-
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native
|
|
646
|
+
* An event emitter notifying the click event of the chip. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
453
647
|
*/
|
|
454
648
|
click: EventEmitter<CustomEvent<void>>;
|
|
455
649
|
|
|
@@ -478,12 +672,12 @@ export class VegaChip {
|
|
|
478
672
|
export declare interface VegaColorPicker extends Components.VegaColorPicker {
|
|
479
673
|
/**
|
|
480
674
|
* An event emitter notifying changes in the value of the color picker,
|
|
481
|
-
whether triggered programmatically or through user interaction.
|
|
675
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.13.0
|
|
482
676
|
*/
|
|
483
677
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
484
678
|
/**
|
|
485
679
|
* An event emitter notifying changes in the value of the color picker,
|
|
486
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
680
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
487
681
|
*/
|
|
488
682
|
change: EventEmitter<CustomEvent<string>>;
|
|
489
683
|
|
|
@@ -491,13 +685,13 @@ export declare interface VegaColorPicker extends Components.VegaColorPicker {
|
|
|
491
685
|
|
|
492
686
|
@ProxyCmp({
|
|
493
687
|
defineCustomElementFn: undefined,
|
|
494
|
-
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
688
|
+
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
495
689
|
})
|
|
496
690
|
@Component({
|
|
497
691
|
selector: 'vega-color-picker',
|
|
498
692
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
499
693
|
template: '<ng-content></ng-content>',
|
|
500
|
-
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
694
|
+
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
501
695
|
})
|
|
502
696
|
export class VegaColorPicker {
|
|
503
697
|
protected el: HTMLElement;
|
|
@@ -512,12 +706,12 @@ export class VegaColorPicker {
|
|
|
512
706
|
export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
513
707
|
/**
|
|
514
708
|
* An event emitter notifying changes in the items of the combo box value,
|
|
515
|
-
whether triggered programmatically or through user interaction.
|
|
709
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.11.0
|
|
516
710
|
*/
|
|
517
711
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
518
712
|
/**
|
|
519
713
|
* An event emitter notifying changes in the items of the combo box value,
|
|
520
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
714
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
521
715
|
*/
|
|
522
716
|
change: EventEmitter<CustomEvent<string[]>>;
|
|
523
717
|
/**
|
|
@@ -526,7 +720,7 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
|
|
|
526
720
|
|
|
527
721
|
The event's `detail` property contains the new value.
|
|
528
722
|
|
|
529
|
-
The combo box _does not_ automatically add the new value to its `source` and `value`.
|
|
723
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @vegaVersion 1.14.0
|
|
530
724
|
*/
|
|
531
725
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
532
726
|
/**
|
|
@@ -535,17 +729,17 @@ The combo box _does not_ automatically add the new value to its `source` and `va
|
|
|
535
729
|
|
|
536
730
|
The event's `detail` property contains the new value.
|
|
537
731
|
|
|
538
|
-
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native
|
|
732
|
+
The combo box _does not_ automatically add the new value to its `source` and `value`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
539
733
|
*/
|
|
540
734
|
create: EventEmitter<CustomEvent<string>>;
|
|
541
735
|
/**
|
|
542
736
|
* An event emitter notifying the user's search action in the combo box,
|
|
543
|
-
but only if the `useDefaultFilter` property is set to `false`.
|
|
737
|
+
but only if the `useDefaultFilter` property is set to `false`. @vegaVersion 1.24.0
|
|
544
738
|
*/
|
|
545
739
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
546
740
|
/**
|
|
547
741
|
* An 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
|
|
742
|
+
but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
549
743
|
*/
|
|
550
744
|
search: EventEmitter<CustomEvent<string>>;
|
|
551
745
|
|
|
@@ -596,12 +790,12 @@ export class VegaCounterBadge {
|
|
|
596
790
|
export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
597
791
|
/**
|
|
598
792
|
* An event emitter notifying the change of the value in the date picker,
|
|
599
|
-
whether triggered programmatically or through user interaction.
|
|
793
|
+
whether triggered programmatically or through user interaction. @vegaVersion 1.3.0
|
|
600
794
|
*/
|
|
601
795
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
602
796
|
/**
|
|
603
797
|
* An event emitter notifying the change of the value in the date picker,
|
|
604
|
-
whether triggered programmatically or through user interaction. @eventSemantics namespace:native
|
|
798
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
605
799
|
*/
|
|
606
800
|
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
607
801
|
|
|
@@ -668,37 +862,58 @@ export class VegaDialog {
|
|
|
668
862
|
}
|
|
669
863
|
|
|
670
864
|
|
|
865
|
+
export declare interface VegaDivider extends Components.VegaDivider {}
|
|
866
|
+
|
|
867
|
+
@ProxyCmp({
|
|
868
|
+
defineCustomElementFn: undefined,
|
|
869
|
+
inputs: ['direction', 'margin', 'variant']
|
|
870
|
+
})
|
|
871
|
+
@Component({
|
|
872
|
+
selector: 'vega-divider',
|
|
873
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
874
|
+
template: '<ng-content></ng-content>',
|
|
875
|
+
inputs: ['direction', 'margin', 'variant']
|
|
876
|
+
})
|
|
877
|
+
export class VegaDivider {
|
|
878
|
+
protected el: HTMLElement;
|
|
879
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
880
|
+
c.detach();
|
|
881
|
+
this.el = r.nativeElement;
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
|
|
671
886
|
export declare interface VegaDropdown extends Components.VegaDropdown {
|
|
672
887
|
/**
|
|
673
888
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
674
889
|
|
|
675
|
-
The event's `detail` property contains the key of the clicked item.
|
|
890
|
+
The event's `detail` property contains the key of the clicked item. @vegaVersion 1.11.0
|
|
676
891
|
*/
|
|
677
892
|
vegaDropdownClick: EventEmitter<CustomEvent<string>>;
|
|
678
893
|
/**
|
|
679
894
|
* An event emitter notifying that a dropdown item has been clicked.
|
|
680
895
|
|
|
681
|
-
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native
|
|
896
|
+
The event's `detail` property contains the key of the clicked item. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
682
897
|
*/
|
|
683
898
|
dropdownClick: EventEmitter<CustomEvent<string>>;
|
|
684
899
|
/**
|
|
685
900
|
* An event emitter notifying that the dropdown has been displayed,
|
|
686
|
-
either programmatically or via user interaction.
|
|
901
|
+
either programmatically or via user interaction. @vegaVersion 1.3.0
|
|
687
902
|
*/
|
|
688
903
|
vegaShow: EventEmitter<CustomEvent<string>>;
|
|
689
904
|
/**
|
|
690
905
|
* An 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
|
|
906
|
+
either programmatically or via user interaction. The name is not `show` because already has a method `show`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
692
907
|
*/
|
|
693
908
|
dropdownShow: EventEmitter<CustomEvent<string>>;
|
|
694
909
|
/**
|
|
695
910
|
* Event emitter notifying that the dropdown has been dismissed,
|
|
696
|
-
either programmatically or via user interaction.
|
|
911
|
+
either programmatically or via user interaction. @vegaVersion 1.3.0
|
|
697
912
|
*/
|
|
698
913
|
vegaHide: EventEmitter<CustomEvent<string>>;
|
|
699
914
|
/**
|
|
700
915
|
* An 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
|
|
916
|
+
either programmatically or via user interaction. The name is not `hide` because already has a method `hide`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
702
917
|
*/
|
|
703
918
|
dropdownHide: EventEmitter<CustomEvent<string>>;
|
|
704
919
|
/**
|
|
@@ -707,7 +922,7 @@ The event's `detail` property contains the key of the clicked item. @eventSemant
|
|
|
707
922
|
|
|
708
923
|
The event's `detail` property contains the new value.
|
|
709
924
|
|
|
710
|
-
The dropdown _does not_ automatically add the new value to the source list.
|
|
925
|
+
The dropdown _does not_ automatically add the new value to the source list. @vegaVersion 1.14.0
|
|
711
926
|
*/
|
|
712
927
|
vegaCreate: EventEmitter<CustomEvent<string>>;
|
|
713
928
|
/**
|
|
@@ -716,39 +931,53 @@ The dropdown _does not_ automatically add the new value to the source list.
|
|
|
716
931
|
|
|
717
932
|
The event's `detail` property contains the new value.
|
|
718
933
|
|
|
719
|
-
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native
|
|
934
|
+
The dropdown _does not_ automatically add the new value to the source list. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
720
935
|
*/
|
|
721
936
|
create: EventEmitter<CustomEvent<string>>;
|
|
722
937
|
/**
|
|
723
938
|
* An event emitter notifying the search event in the dropdown,
|
|
724
|
-
but only if `useDefaultFilter` is set to `false`.
|
|
939
|
+
but only if `useDefaultFilter` is set to `false`. @vegaVersion 1.24.0
|
|
725
940
|
*/
|
|
726
941
|
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
727
942
|
/**
|
|
728
943
|
* 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
|
|
944
|
+
but only if `useDefaultFilter` is set to `false`. The name is not `search` because already has a method `search`. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
730
945
|
*/
|
|
731
946
|
dropdownSearch: EventEmitter<CustomEvent<string>>;
|
|
947
|
+
/**
|
|
948
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
949
|
+
but only if `useDefaultFilter` is set to `false`.
|
|
950
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
951
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @vegaVersion 2.30.0
|
|
952
|
+
*/
|
|
953
|
+
vegaSearchTrigger: EventEmitter<CustomEvent<IVegaDropdownVegaDropdownSearchTriggerEventDetail>>;
|
|
954
|
+
/**
|
|
955
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
956
|
+
but only if `useDefaultFilter` is set to `false`.
|
|
957
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
958
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
|
|
959
|
+
*/
|
|
960
|
+
searchTrigger: EventEmitter<CustomEvent<IVegaDropdownVegaDropdownSearchTriggerEventDetail>>;
|
|
732
961
|
|
|
733
962
|
}
|
|
734
963
|
|
|
735
964
|
@ProxyCmp({
|
|
736
965
|
defineCustomElementFn: undefined,
|
|
737
|
-
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter'],
|
|
966
|
+
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter'],
|
|
738
967
|
methods: ['show', 'hide', 'search', 'clearSelection', 'getSelection', 'setSelection']
|
|
739
968
|
})
|
|
740
969
|
@Component({
|
|
741
970
|
selector: 'vega-dropdown',
|
|
742
971
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
743
972
|
template: '<ng-content></ng-content>',
|
|
744
|
-
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter']
|
|
973
|
+
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter']
|
|
745
974
|
})
|
|
746
975
|
export class VegaDropdown {
|
|
747
976
|
protected el: HTMLElement;
|
|
748
977
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
749
978
|
c.detach();
|
|
750
979
|
this.el = r.nativeElement;
|
|
751
|
-
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch']);
|
|
980
|
+
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch', 'vegaSearchTrigger', 'searchTrigger']);
|
|
752
981
|
}
|
|
753
982
|
}
|
|
754
983
|
|
|
@@ -795,11 +1024,11 @@ export class VegaDropdownGroup {
|
|
|
795
1024
|
import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
|
|
796
1025
|
export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
|
|
797
1026
|
/**
|
|
798
|
-
* An event emitter notifying the dropdown item has been clicked.
|
|
1027
|
+
* An event emitter notifying the dropdown item has been clicked. @vegaVersion 1.47.0
|
|
799
1028
|
*/
|
|
800
1029
|
vegaClick: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
801
1030
|
/**
|
|
802
|
-
* An event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native
|
|
1031
|
+
* An event emitter notifying the dropdown item has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
803
1032
|
*/
|
|
804
1033
|
click: EventEmitter<CustomEvent<IVegaDropdownItemVegaDropdownItemClickEvent>>;
|
|
805
1034
|
|
|
@@ -807,13 +1036,13 @@ export declare interface VegaDropdownItem extends Components.VegaDropdownItem {
|
|
|
807
1036
|
|
|
808
1037
|
@ProxyCmp({
|
|
809
1038
|
defineCustomElementFn: undefined,
|
|
810
|
-
inputs: ['count', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
|
1039
|
+
inputs: ['count', 'danger', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
|
811
1040
|
})
|
|
812
1041
|
@Component({
|
|
813
1042
|
selector: 'vega-dropdown-item',
|
|
814
1043
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
815
1044
|
template: '<ng-content></ng-content>',
|
|
816
|
-
inputs: ['count', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
|
1045
|
+
inputs: ['count', 'danger', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
|
817
1046
|
})
|
|
818
1047
|
export class VegaDropdownItem {
|
|
819
1048
|
protected el: HTMLElement;
|
|
@@ -848,28 +1077,105 @@ export class VegaFieldError {
|
|
|
848
1077
|
|
|
849
1078
|
export declare interface VegaFieldLabel extends Components.VegaFieldLabel {
|
|
850
1079
|
/**
|
|
851
|
-
* An event emitter notifying that the field label has been clicked.
|
|
1080
|
+
* An event emitter notifying that the field label has been clicked. @vegaVersion 1.43.0
|
|
852
1081
|
*/
|
|
853
1082
|
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
1083
|
+
/**
|
|
1084
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
|
|
1085
|
+
*/
|
|
1086
|
+
vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
1087
|
+
/**
|
|
1088
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1089
|
+
*/
|
|
1090
|
+
labelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
854
1091
|
|
|
855
1092
|
}
|
|
856
1093
|
|
|
857
1094
|
@ProxyCmp({
|
|
858
1095
|
defineCustomElementFn: undefined,
|
|
859
|
-
inputs: ['disabled', 'isFieldRequired', 'label']
|
|
1096
|
+
inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
|
|
860
1097
|
})
|
|
861
1098
|
@Component({
|
|
862
1099
|
selector: 'vega-field-label',
|
|
863
1100
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
864
1101
|
template: '<ng-content></ng-content>',
|
|
865
|
-
inputs: ['disabled', 'isFieldRequired', 'label']
|
|
1102
|
+
inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
|
|
866
1103
|
})
|
|
867
1104
|
export class VegaFieldLabel {
|
|
868
1105
|
protected el: HTMLElement;
|
|
869
1106
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
870
1107
|
c.detach();
|
|
871
1108
|
this.el = r.nativeElement;
|
|
872
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1109
|
+
proxyOutputs(this, this.el, ['vegaClick', 'vegaLabelButtonClick', 'labelButtonClick']);
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
|
|
1114
|
+
import type { VegaFileUploaderFile as IVegaFileUploaderVegaFileUploaderFile } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
|
|
1115
|
+
export declare interface VegaFileUploader extends Components.VegaFileUploader {
|
|
1116
|
+
/**
|
|
1117
|
+
* An event emitter notifying a change in the file list. @vegaVersion 2.25.0
|
|
1118
|
+
*/
|
|
1119
|
+
vegaChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
1120
|
+
/**
|
|
1121
|
+
* An event emitter notifying a change in the file list. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1122
|
+
*/
|
|
1123
|
+
change: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
1124
|
+
/**
|
|
1125
|
+
* An event emitter notifying a file selection change. By default, the component value
|
|
1126
|
+
is updated, but this behavior can be prevented. @vegaVersion 2.25.0
|
|
1127
|
+
*/
|
|
1128
|
+
vegaSelectedFileChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
1129
|
+
/**
|
|
1130
|
+
* An event emitter notifying a file selection change. By default, the component value
|
|
1131
|
+
is updated, but this behavior can be prevented. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1132
|
+
*/
|
|
1133
|
+
selectedFileChange: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFiles>>;
|
|
1134
|
+
/**
|
|
1135
|
+
* An event emitter notifying that a selected file will be removed. By default, the component value
|
|
1136
|
+
is updated, but this behavior can be prevented. @vegaVersion 2.25.0
|
|
1137
|
+
*/
|
|
1138
|
+
vegaRemove: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
1139
|
+
/**
|
|
1140
|
+
* An event emitter notifying that a selected file will be removed. By default, the component value
|
|
1141
|
+
is updated, but this behavior can be prevented. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1142
|
+
*/
|
|
1143
|
+
remove: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
1144
|
+
/**
|
|
1145
|
+
* An event emitter notifying that a file will be re-uploaded. @vegaVersion 2.25.0
|
|
1146
|
+
*/
|
|
1147
|
+
vegaRetry: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
1148
|
+
/**
|
|
1149
|
+
* An event emitter notifying that a file will be re-uploaded. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1150
|
+
*/
|
|
1151
|
+
retry: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
1152
|
+
/**
|
|
1153
|
+
* An event emitter notifying that a file will be opened for preview. @vegaVersion 2.25.0
|
|
1154
|
+
*/
|
|
1155
|
+
vegaPreview: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
1156
|
+
/**
|
|
1157
|
+
* An event emitter notifying that a file will be opened for preview. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1158
|
+
*/
|
|
1159
|
+
preview: EventEmitter<CustomEvent<IVegaFileUploaderVegaFileUploaderFile>>;
|
|
1160
|
+
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
@ProxyCmp({
|
|
1164
|
+
defineCustomElementFn: undefined,
|
|
1165
|
+
inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'variant']
|
|
1166
|
+
})
|
|
1167
|
+
@Component({
|
|
1168
|
+
selector: 'vega-file-uploader',
|
|
1169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1170
|
+
template: '<ng-content></ng-content>',
|
|
1171
|
+
inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'variant']
|
|
1172
|
+
})
|
|
1173
|
+
export class VegaFileUploader {
|
|
1174
|
+
protected el: HTMLElement;
|
|
1175
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1176
|
+
c.detach();
|
|
1177
|
+
this.el = r.nativeElement;
|
|
1178
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSelectedFileChange', 'selectedFileChange', 'vegaRemove', 'remove', 'vegaRetry', 'retry', 'vegaPreview', 'preview']);
|
|
873
1179
|
}
|
|
874
1180
|
}
|
|
875
1181
|
|
|
@@ -878,13 +1184,13 @@ export declare interface VegaFlex extends Components.VegaFlex {}
|
|
|
878
1184
|
|
|
879
1185
|
@ProxyCmp({
|
|
880
1186
|
defineCustomElementFn: undefined,
|
|
881
|
-
inputs: ['alignItems', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
1187
|
+
inputs: ['alignItems', 'breakpoint', 'direction', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
882
1188
|
})
|
|
883
1189
|
@Component({
|
|
884
1190
|
selector: 'vega-flex',
|
|
885
1191
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
886
1192
|
template: '<ng-content></ng-content>',
|
|
887
|
-
inputs: ['alignItems', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
1193
|
+
inputs: ['alignItems', 'breakpoint', 'direction', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
888
1194
|
})
|
|
889
1195
|
export class VegaFlex {
|
|
890
1196
|
protected el: HTMLElement;
|
|
@@ -899,13 +1205,13 @@ export declare interface VegaFont extends Components.VegaFont {}
|
|
|
899
1205
|
|
|
900
1206
|
@ProxyCmp({
|
|
901
1207
|
defineCustomElementFn: undefined,
|
|
902
|
-
inputs: ['as', 'color', 'disableResponsive', 'variant']
|
|
1208
|
+
inputs: ['as', 'color', 'disableResponsive', 'textAlign', 'variant']
|
|
903
1209
|
})
|
|
904
1210
|
@Component({
|
|
905
1211
|
selector: 'vega-font',
|
|
906
1212
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
907
1213
|
template: '<ng-content></ng-content>',
|
|
908
|
-
inputs: ['as', 'color', 'disableResponsive', 'variant']
|
|
1214
|
+
inputs: ['as', 'color', 'disableResponsive', 'textAlign', 'variant']
|
|
909
1215
|
})
|
|
910
1216
|
export class VegaFont {
|
|
911
1217
|
protected el: HTMLElement;
|
|
@@ -918,27 +1224,27 @@ export class VegaFont {
|
|
|
918
1224
|
|
|
919
1225
|
export declare interface VegaForm extends Components.VegaForm {
|
|
920
1226
|
/**
|
|
921
|
-
* An event emitter notifying the change in the validation result.
|
|
1227
|
+
* An event emitter notifying the change in the validation result. @vegaVersion 1.9.1
|
|
922
1228
|
*/
|
|
923
1229
|
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
924
1230
|
/**
|
|
925
|
-
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native
|
|
1231
|
+
* An event emitter notifying the change in the validation result. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
926
1232
|
*/
|
|
927
1233
|
validate: EventEmitter<CustomEvent<boolean>>;
|
|
928
1234
|
/**
|
|
929
|
-
* An event emitter notifying the submission of the form.
|
|
1235
|
+
* An event emitter notifying the submission of the form. @vegaVersion 1.24.0
|
|
930
1236
|
*/
|
|
931
1237
|
vegaFormSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
932
1238
|
/**
|
|
933
|
-
* An event emitter notifying the submission of the form. @eventSemantics namespace:native
|
|
1239
|
+
* An event emitter notifying the submission of the form. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
934
1240
|
*/
|
|
935
1241
|
formSubmit: EventEmitter<CustomEvent<unknown>>;
|
|
936
1242
|
/**
|
|
937
|
-
* An event emitter notifying the reset of the form.
|
|
1243
|
+
* An event emitter notifying the reset of the form. @vegaVersion 1.24.0
|
|
938
1244
|
*/
|
|
939
1245
|
vegaFormReset: EventEmitter<CustomEvent<any>>;
|
|
940
1246
|
/**
|
|
941
|
-
* An event emitter notifying the reset of the form. @eventSemantics namespace:native
|
|
1247
|
+
* An event emitter notifying the reset of the form. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
942
1248
|
*/
|
|
943
1249
|
formReset: EventEmitter<CustomEvent<any>>;
|
|
944
1250
|
|
|
@@ -986,6 +1292,25 @@ export class VegaGrid {
|
|
|
986
1292
|
}
|
|
987
1293
|
|
|
988
1294
|
|
|
1295
|
+
export declare interface VegaHint extends Components.VegaHint {}
|
|
1296
|
+
|
|
1297
|
+
@ProxyCmp({
|
|
1298
|
+
defineCustomElementFn: undefined
|
|
1299
|
+
})
|
|
1300
|
+
@Component({
|
|
1301
|
+
selector: 'vega-hint',
|
|
1302
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1303
|
+
template: '<ng-content></ng-content>'
|
|
1304
|
+
})
|
|
1305
|
+
export class VegaHint {
|
|
1306
|
+
protected el: HTMLElement;
|
|
1307
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1308
|
+
c.detach();
|
|
1309
|
+
this.el = r.nativeElement;
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
|
|
989
1314
|
export declare interface VegaIcon extends Components.VegaIcon {}
|
|
990
1315
|
|
|
991
1316
|
@ProxyCmp({
|
|
@@ -1009,27 +1334,27 @@ export class VegaIcon {
|
|
|
1009
1334
|
import type { VegaFileOptional as IVegaImageUploaderVegaFileOptional } from '@heartlandone/vega/dist/types/components/vega-image-uploader/types';
|
|
1010
1335
|
export declare interface VegaImageUploader extends Components.VegaImageUploader {
|
|
1011
1336
|
/**
|
|
1012
|
-
* An event emitter notifying a value change.
|
|
1337
|
+
* An event emitter notifying a value change. @vegaVersion 1.14.0
|
|
1013
1338
|
*/
|
|
1014
1339
|
vegaChange: EventEmitter<CustomEvent<IVegaImageUploaderVegaFileOptional>>;
|
|
1015
1340
|
/**
|
|
1016
|
-
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
1341
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1017
1342
|
*/
|
|
1018
1343
|
change: EventEmitter<CustomEvent<any>>;
|
|
1019
1344
|
/**
|
|
1020
|
-
* An event emitter notifying the removal of a value.
|
|
1345
|
+
* An event emitter notifying the removal of a value. @vegaVersion 1.14.0
|
|
1021
1346
|
*/
|
|
1022
1347
|
vegaRemove: EventEmitter<CustomEvent<any>>;
|
|
1023
1348
|
/**
|
|
1024
|
-
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
1349
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1025
1350
|
*/
|
|
1026
1351
|
remove: EventEmitter<CustomEvent<any>>;
|
|
1027
1352
|
/**
|
|
1028
|
-
* An event emitter notifying the cancellation of an uploading event.
|
|
1353
|
+
* An event emitter notifying the cancellation of an uploading event. @vegaVersion 1.14.0
|
|
1029
1354
|
*/
|
|
1030
1355
|
vegaCancel: EventEmitter<CustomEvent<any>>;
|
|
1031
1356
|
/**
|
|
1032
|
-
* An event emitter notifying the removal of a value. @eventSemantics namespace:native
|
|
1357
|
+
* An event emitter notifying the removal of a value. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1033
1358
|
*/
|
|
1034
1359
|
cancel: EventEmitter<CustomEvent<any>>;
|
|
1035
1360
|
|
|
@@ -1037,14 +1362,14 @@ export declare interface VegaImageUploader extends Components.VegaImageUploader
|
|
|
1037
1362
|
|
|
1038
1363
|
@ProxyCmp({
|
|
1039
1364
|
defineCustomElementFn: undefined,
|
|
1040
|
-
inputs: ['accept', 'autoValidation', 'disabled', 'isValid', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value'],
|
|
1365
|
+
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
|
|
1041
1366
|
methods: ['getContentURL']
|
|
1042
1367
|
})
|
|
1043
1368
|
@Component({
|
|
1044
1369
|
selector: 'vega-image-uploader',
|
|
1045
1370
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1046
1371
|
template: '<ng-content></ng-content>',
|
|
1047
|
-
inputs: ['accept', 'autoValidation', 'disabled', 'isValid', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value']
|
|
1372
|
+
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
|
|
1048
1373
|
})
|
|
1049
1374
|
export class VegaImageUploader {
|
|
1050
1375
|
protected el: HTMLElement;
|
|
@@ -1058,76 +1383,84 @@ export class VegaImageUploader {
|
|
|
1058
1383
|
|
|
1059
1384
|
export declare interface VegaInput extends Components.VegaInput {
|
|
1060
1385
|
/**
|
|
1061
|
-
* An event emitter notifying a value change.
|
|
1386
|
+
* An event emitter notifying a value change. @vegaVersion 1.0.10
|
|
1062
1387
|
*/
|
|
1063
1388
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1064
1389
|
/**
|
|
1065
|
-
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
1390
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1066
1391
|
*/
|
|
1067
1392
|
change: EventEmitter<CustomEvent<string>>;
|
|
1068
1393
|
/**
|
|
1069
|
-
* An event emitter notifying the blur of the inner input element.
|
|
1394
|
+
* An event emitter notifying the blur of the inner input element. @vegaVersion 1.3.0
|
|
1070
1395
|
*/
|
|
1071
1396
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1072
1397
|
/**
|
|
1073
|
-
* An event emitter notifying the blur of the inner input element. @eventSemantics namespace:native
|
|
1398
|
+
* An event emitter notifying the blur of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1074
1399
|
*/
|
|
1075
1400
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1076
1401
|
/**
|
|
1077
|
-
* An event emitter notifying the focus of the inner input element.
|
|
1402
|
+
* An event emitter notifying the focus of the inner input element. @vegaVersion 1.12.0
|
|
1078
1403
|
*/
|
|
1079
1404
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
1080
1405
|
/**
|
|
1081
|
-
* An event emitter notifying the focus of the inner input element. @eventSemantics namespace:native
|
|
1406
|
+
* An event emitter notifying the focus of the inner input element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1082
1407
|
*/
|
|
1083
1408
|
focus: EventEmitter<CustomEvent<undefined>>;
|
|
1409
|
+
/**
|
|
1410
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @vegaVersion 2.25.0
|
|
1411
|
+
*/
|
|
1412
|
+
vegaLabelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
1413
|
+
/**
|
|
1414
|
+
* An event emitter notifying that the suffix button associated with the field label has been clicked. @eventSemantics namespace:native,@vegaVersion 2.25.0
|
|
1415
|
+
*/
|
|
1416
|
+
labelButtonClick: EventEmitter<CustomEvent<any>>;
|
|
1084
1417
|
|
|
1085
1418
|
}
|
|
1086
1419
|
|
|
1087
1420
|
@ProxyCmp({
|
|
1088
1421
|
defineCustomElementFn: undefined,
|
|
1089
|
-
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value'],
|
|
1422
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
|
|
1090
1423
|
methods: ['doFocus', 'doBlur']
|
|
1091
1424
|
})
|
|
1092
1425
|
@Component({
|
|
1093
1426
|
selector: 'vega-input',
|
|
1094
1427
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1095
1428
|
template: '<ng-content></ng-content>',
|
|
1096
|
-
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value']
|
|
1429
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
|
|
1097
1430
|
})
|
|
1098
1431
|
export class VegaInput {
|
|
1099
1432
|
protected el: HTMLElement;
|
|
1100
1433
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1101
1434
|
c.detach();
|
|
1102
1435
|
this.el = r.nativeElement;
|
|
1103
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1436
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus', 'vegaLabelButtonClick', 'labelButtonClick']);
|
|
1104
1437
|
}
|
|
1105
1438
|
}
|
|
1106
1439
|
|
|
1107
1440
|
|
|
1108
1441
|
export declare interface VegaInputCreditCard extends Components.VegaInputCreditCard {
|
|
1109
1442
|
/**
|
|
1110
|
-
* An event emitter notifying a value change.
|
|
1443
|
+
* An event emitter notifying a value change. @vegaVersion 1.26.0
|
|
1111
1444
|
*/
|
|
1112
1445
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1113
1446
|
/**
|
|
1114
|
-
* A native change event emitter notifying a value change. @eventSemantics namespace:native
|
|
1447
|
+
* A native change event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1115
1448
|
*/
|
|
1116
1449
|
change: EventEmitter<CustomEvent<string>>;
|
|
1117
1450
|
/**
|
|
1118
|
-
* An event emitter notifying the blur event of the credit card element.
|
|
1451
|
+
* An event emitter notifying the blur event of the credit card element. @vegaVersion 1.26.0
|
|
1119
1452
|
*/
|
|
1120
1453
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
1121
1454
|
/**
|
|
1122
|
-
* An event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native
|
|
1455
|
+
* An event emitter notifying the blur event of the credit card element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1123
1456
|
*/
|
|
1124
1457
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
1125
1458
|
/**
|
|
1126
|
-
* An event emitter notifying the focus of the credit card element.
|
|
1459
|
+
* An event emitter notifying the focus of the credit card element. @vegaVersion 1.26.0
|
|
1127
1460
|
*/
|
|
1128
1461
|
vegaFocus: EventEmitter<CustomEvent<undefined>>;
|
|
1129
1462
|
/**
|
|
1130
|
-
* An event emitter notifying the focus of the credit card element. @eventSemantics namespace:native
|
|
1463
|
+
* An event emitter notifying the focus of the credit card element. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1131
1464
|
*/
|
|
1132
1465
|
focus: EventEmitter<CustomEvent<undefined>>;
|
|
1133
1466
|
|
|
@@ -1153,29 +1486,29 @@ export class VegaInputCreditCard {
|
|
|
1153
1486
|
}
|
|
1154
1487
|
|
|
1155
1488
|
|
|
1156
|
-
export declare interface
|
|
1489
|
+
export declare interface VegaInputNumeric extends Components.VegaInputNumeric {
|
|
1157
1490
|
/**
|
|
1158
|
-
* An event emitter notifying a value change.
|
|
1491
|
+
* An event emitter notifying a value change. @vegaVersion 2.29.0
|
|
1159
1492
|
*/
|
|
1160
|
-
vegaChange: EventEmitter<CustomEvent<
|
|
1493
|
+
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1161
1494
|
/**
|
|
1162
|
-
* An event emitter notifying a value change. @eventSemantics namespace:native
|
|
1495
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.29.0
|
|
1163
1496
|
*/
|
|
1164
|
-
change: EventEmitter<CustomEvent<
|
|
1497
|
+
change: EventEmitter<CustomEvent<number>>;
|
|
1165
1498
|
|
|
1166
1499
|
}
|
|
1167
1500
|
|
|
1168
1501
|
@ProxyCmp({
|
|
1169
1502
|
defineCustomElementFn: undefined,
|
|
1170
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', '
|
|
1503
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
|
1171
1504
|
})
|
|
1172
1505
|
@Component({
|
|
1173
|
-
selector: 'vega-input-
|
|
1506
|
+
selector: 'vega-input-numeric',
|
|
1174
1507
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1175
1508
|
template: '<ng-content></ng-content>',
|
|
1176
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', '
|
|
1509
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
|
1177
1510
|
})
|
|
1178
|
-
export class
|
|
1511
|
+
export class VegaInputNumeric {
|
|
1179
1512
|
protected el: HTMLElement;
|
|
1180
1513
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1181
1514
|
c.detach();
|
|
@@ -1184,88 +1517,174 @@ export class VegaInputRange {
|
|
|
1184
1517
|
}
|
|
1185
1518
|
}
|
|
1186
1519
|
|
|
1187
|
-
import type {
|
|
1188
|
-
|
|
1189
|
-
export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
1520
|
+
import type { VegaCountryType as IVegaInputPhoneNumberVegaCountryType } from '@heartlandone/vega/dist/types/components/vega-input-phone-number/types';
|
|
1521
|
+
export declare interface VegaInputPhoneNumber extends Components.VegaInputPhoneNumber {
|
|
1190
1522
|
/**
|
|
1191
|
-
* An event emitter notifying
|
|
1523
|
+
* An event emitter notifying a value change. @vegaVersion 2.18.0
|
|
1192
1524
|
*/
|
|
1193
|
-
vegaChange: EventEmitter<CustomEvent<
|
|
1525
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1194
1526
|
/**
|
|
1195
|
-
* An event emitter notifying
|
|
1527
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.18.0
|
|
1196
1528
|
*/
|
|
1197
|
-
change: EventEmitter<CustomEvent<
|
|
1529
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
1198
1530
|
/**
|
|
1199
|
-
* An event emitter notifying
|
|
1531
|
+
* An event emitter notifying a country change. @vegaVersion 2.18.0
|
|
1200
1532
|
*/
|
|
1201
|
-
|
|
1533
|
+
vegaCountryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
|
|
1202
1534
|
/**
|
|
1203
|
-
* An event emitter notifying
|
|
1535
|
+
* An event emitter notifying a country change. @eventSemantics namespace:native,@vegaVersion 2.18.0
|
|
1204
1536
|
*/
|
|
1205
|
-
|
|
1537
|
+
countryChange: EventEmitter<CustomEvent<IVegaInputPhoneNumberVegaCountryType>>;
|
|
1206
1538
|
|
|
1207
1539
|
}
|
|
1208
1540
|
|
|
1209
1541
|
@ProxyCmp({
|
|
1210
1542
|
defineCustomElementFn: undefined,
|
|
1211
|
-
inputs: ['
|
|
1212
|
-
methods: ['doClose', 'doOpen', 'doChange']
|
|
1543
|
+
inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1213
1544
|
})
|
|
1214
1545
|
@Component({
|
|
1215
|
-
selector: 'vega-input-
|
|
1546
|
+
selector: 'vega-input-phone-number',
|
|
1216
1547
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1217
1548
|
template: '<ng-content></ng-content>',
|
|
1218
|
-
inputs: ['
|
|
1549
|
+
inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1219
1550
|
})
|
|
1220
|
-
export class
|
|
1551
|
+
export class VegaInputPhoneNumber {
|
|
1221
1552
|
protected el: HTMLElement;
|
|
1222
1553
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1223
1554
|
c.detach();
|
|
1224
1555
|
this.el = r.nativeElement;
|
|
1225
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change', '
|
|
1556
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCountryChange', 'countryChange']);
|
|
1226
1557
|
}
|
|
1227
1558
|
}
|
|
1228
1559
|
|
|
1229
1560
|
|
|
1230
|
-
export declare interface
|
|
1561
|
+
export declare interface VegaInputRange extends Components.VegaInputRange {
|
|
1231
1562
|
/**
|
|
1232
|
-
* An event emitter notifying
|
|
1563
|
+
* An event emitter notifying a value change. @vegaVersion 2.2.0
|
|
1233
1564
|
*/
|
|
1234
|
-
|
|
1565
|
+
vegaChange: EventEmitter<CustomEvent<[number, number]>>;
|
|
1235
1566
|
/**
|
|
1236
|
-
* An event emitter notifying
|
|
1567
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.2.0
|
|
1237
1568
|
*/
|
|
1238
|
-
|
|
1569
|
+
change: EventEmitter<CustomEvent<[number, number]>>;
|
|
1239
1570
|
|
|
1240
1571
|
}
|
|
1241
1572
|
|
|
1242
1573
|
@ProxyCmp({
|
|
1243
1574
|
defineCustomElementFn: undefined,
|
|
1244
|
-
inputs: ['
|
|
1575
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
|
1245
1576
|
})
|
|
1246
1577
|
@Component({
|
|
1247
|
-
selector: 'vega-
|
|
1578
|
+
selector: 'vega-input-range',
|
|
1248
1579
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1249
1580
|
template: '<ng-content></ng-content>',
|
|
1250
|
-
inputs: ['
|
|
1581
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
|
1251
1582
|
})
|
|
1252
|
-
export class
|
|
1583
|
+
export class VegaInputRange {
|
|
1253
1584
|
protected el: HTMLElement;
|
|
1254
1585
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1255
1586
|
c.detach();
|
|
1256
1587
|
this.el = r.nativeElement;
|
|
1257
|
-
proxyOutputs(this, this.el, ['
|
|
1588
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1258
1589
|
}
|
|
1259
1590
|
}
|
|
1260
1591
|
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1592
|
+
import type { SelectValueType as IVegaInputSelectSelectValueType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
|
|
1593
|
+
import type { SelectType as IVegaInputSelectSelectType } from '@heartlandone/vega/dist/types/components/vega-input-select/types';
|
|
1594
|
+
import type { VegaDropdownSearchTriggerEventDetail as IVegaInputSelectVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
|
|
1595
|
+
export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
1596
|
+
/**
|
|
1597
|
+
* An event emitter notifying the change of the select value. @vegaVersion 1.0.11
|
|
1598
|
+
*/
|
|
1599
|
+
vegaChange: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
1600
|
+
/**
|
|
1601
|
+
* An event emitter notifying the change of the select value. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1602
|
+
*/
|
|
1603
|
+
change: EventEmitter<CustomEvent<IVegaInputSelectSelectValueType<IVegaInputSelectSelectType>>>;
|
|
1604
|
+
/**
|
|
1605
|
+
* An event emitter notifying the search of the dropdown. @vegaVersion 1.50.0
|
|
1606
|
+
*/
|
|
1607
|
+
vegaSearch: EventEmitter<CustomEvent<string>>;
|
|
1608
|
+
/**
|
|
1609
|
+
* An event emitter notifying the search of the dropdown. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1610
|
+
*/
|
|
1611
|
+
search: EventEmitter<CustomEvent<string>>;
|
|
1612
|
+
/**
|
|
1613
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
1614
|
+
but only if `useDefaultFilter` is set to `false`.
|
|
1615
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
1616
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @vegaVersion 2.30.0
|
|
1617
|
+
*/
|
|
1618
|
+
vegaSearchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
|
|
1619
|
+
/**
|
|
1620
|
+
* An event emitter notifying the search event triggered within the dropdown,
|
|
1621
|
+
Unlike the Vegasearch event, this event includes the details of the user who triggered it.
|
|
1622
|
+
It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
|
|
1623
|
+
*/
|
|
1624
|
+
searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
|
|
1625
|
+
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
@ProxyCmp({
|
|
1629
|
+
defineCustomElementFn: undefined,
|
|
1630
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1631
|
+
methods: ['doClose', 'doOpen', 'doChange']
|
|
1632
|
+
})
|
|
1633
|
+
@Component({
|
|
1634
|
+
selector: 'vega-input-select',
|
|
1635
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1636
|
+
template: '<ng-content></ng-content>',
|
|
1637
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1638
|
+
})
|
|
1639
|
+
export class VegaInputSelect {
|
|
1640
|
+
protected el: HTMLElement;
|
|
1641
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1642
|
+
c.detach();
|
|
1643
|
+
this.el = r.nativeElement;
|
|
1644
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger']);
|
|
1645
|
+
}
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
|
|
1649
|
+
export declare interface VegaItemToggle extends Components.VegaItemToggle {
|
|
1650
|
+
/**
|
|
1651
|
+
* An event emitter notifying an item toggle event. @vegaVersion 1.3.0
|
|
1652
|
+
*/
|
|
1653
|
+
vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
1654
|
+
/**
|
|
1655
|
+
* An event emitter notifying an item toggle event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1656
|
+
*/
|
|
1657
|
+
toggleStatus: EventEmitter<CustomEvent<boolean>>;
|
|
1658
|
+
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
@ProxyCmp({
|
|
1662
|
+
defineCustomElementFn: undefined,
|
|
1663
|
+
inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
|
|
1664
|
+
})
|
|
1665
|
+
@Component({
|
|
1666
|
+
selector: 'vega-item-toggle',
|
|
1667
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1668
|
+
template: '<ng-content></ng-content>',
|
|
1669
|
+
inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
|
|
1670
|
+
})
|
|
1671
|
+
export class VegaItemToggle {
|
|
1672
|
+
protected el: HTMLElement;
|
|
1673
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1674
|
+
c.detach();
|
|
1675
|
+
this.el = r.nativeElement;
|
|
1676
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
export declare interface VegaLeftNav extends Components.VegaLeftNav {
|
|
1682
|
+
/**
|
|
1683
|
+
* An event emitter notifying that the left-nav's open state has changed. @vegaVersion 1.31.0
|
|
1684
|
+
*/
|
|
1266
1685
|
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1267
1686
|
/**
|
|
1268
|
-
* An event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native
|
|
1687
|
+
* An event emitter notifying that the left-nav's open state has changed. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1269
1688
|
*/
|
|
1270
1689
|
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
1271
1690
|
|
|
@@ -1273,14 +1692,14 @@ export declare interface VegaLeftNav extends Components.VegaLeftNav {
|
|
|
1273
1692
|
|
|
1274
1693
|
@ProxyCmp({
|
|
1275
1694
|
defineCustomElementFn: undefined,
|
|
1276
|
-
inputs: ['footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
|
|
1695
|
+
inputs: ['autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
|
|
1277
1696
|
methods: ['toggle']
|
|
1278
1697
|
})
|
|
1279
1698
|
@Component({
|
|
1280
1699
|
selector: 'vega-left-nav',
|
|
1281
1700
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1282
1701
|
template: '<ng-content></ng-content>',
|
|
1283
|
-
inputs: ['footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
|
|
1702
|
+
inputs: ['autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
|
|
1284
1703
|
})
|
|
1285
1704
|
export class VegaLeftNav {
|
|
1286
1705
|
protected el: HTMLElement;
|
|
@@ -1294,11 +1713,11 @@ export class VegaLeftNav {
|
|
|
1294
1713
|
|
|
1295
1714
|
export declare interface VegaLeftNavGroup extends Components.VegaLeftNavGroup {
|
|
1296
1715
|
/**
|
|
1297
|
-
* event emitter used for notifying consumers the click event
|
|
1716
|
+
* event emitter used for notifying consumers the click event * @vegaVersion 1.41.0
|
|
1298
1717
|
*/
|
|
1299
1718
|
vegaGroupClick: EventEmitter<CustomEvent<string>>;
|
|
1300
1719
|
/**
|
|
1301
|
-
* An event emitter used for notifying consumers the click event @eventSemantics namespace:native
|
|
1720
|
+
* An event emitter used for notifying consumers the click event @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1302
1721
|
*/
|
|
1303
1722
|
groupClick: EventEmitter<CustomEvent<string>>;
|
|
1304
1723
|
|
|
@@ -1326,11 +1745,11 @@ export class VegaLeftNavGroup {
|
|
|
1326
1745
|
|
|
1327
1746
|
export declare interface VegaLeftNavLink extends Components.VegaLeftNavLink {
|
|
1328
1747
|
/**
|
|
1329
|
-
* event emitter
|
|
1748
|
+
* An event emitter notifying the link click event. * @vegaVersion 1.31.0
|
|
1330
1749
|
*/
|
|
1331
1750
|
vegaMenuClick: EventEmitter<CustomEvent<any>>;
|
|
1332
1751
|
/**
|
|
1333
|
-
* event emitter
|
|
1752
|
+
* An event emitter notifying the link click event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1334
1753
|
*/
|
|
1335
1754
|
menuClick: EventEmitter<CustomEvent<any>>;
|
|
1336
1755
|
|
|
@@ -1356,7 +1775,17 @@ export class VegaLeftNavLink {
|
|
|
1356
1775
|
}
|
|
1357
1776
|
|
|
1358
1777
|
|
|
1359
|
-
export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {
|
|
1778
|
+
export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {
|
|
1779
|
+
/**
|
|
1780
|
+
* An event emitter notifying the action click event when the action link is not configured. @vegaVersion 2.11.0
|
|
1781
|
+
*/
|
|
1782
|
+
vegaActionClick: EventEmitter<CustomEvent<string>>;
|
|
1783
|
+
/**
|
|
1784
|
+
* An event emitter notifying the action click event when the action link is not configured. @eventSemantics namespace:native,@vegaVersion 2.11.0
|
|
1785
|
+
*/
|
|
1786
|
+
actionClick: EventEmitter<CustomEvent<any>>;
|
|
1787
|
+
|
|
1788
|
+
}
|
|
1360
1789
|
|
|
1361
1790
|
@ProxyCmp({
|
|
1362
1791
|
defineCustomElementFn: undefined,
|
|
@@ -1373,6 +1802,7 @@ export class VegaLeftNavSection {
|
|
|
1373
1802
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1374
1803
|
c.detach();
|
|
1375
1804
|
this.el = r.nativeElement;
|
|
1805
|
+
proxyOutputs(this, this.el, ['vegaActionClick', 'actionClick']);
|
|
1376
1806
|
}
|
|
1377
1807
|
}
|
|
1378
1808
|
|
|
@@ -1441,19 +1871,19 @@ export class VegaLoadingIndicator {
|
|
|
1441
1871
|
|
|
1442
1872
|
export declare interface VegaModal extends Components.VegaModal {
|
|
1443
1873
|
/**
|
|
1444
|
-
* An event emitter notifying the modal close event.
|
|
1874
|
+
* An event emitter notifying the modal close event. @vegaVersion 1.0.10
|
|
1445
1875
|
*/
|
|
1446
1876
|
vegaClose: EventEmitter<CustomEvent<any>>;
|
|
1447
1877
|
/**
|
|
1448
|
-
* An event emitter notifying the modal close event. @eventSemantics namespace:native
|
|
1878
|
+
* An event emitter notifying the modal close event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1449
1879
|
*/
|
|
1450
1880
|
close: EventEmitter<CustomEvent<any>>;
|
|
1451
1881
|
/**
|
|
1452
|
-
* An event emitter notifying the modal open event.
|
|
1882
|
+
* An event emitter notifying the modal open event. @vegaVersion 1.0.10
|
|
1453
1883
|
*/
|
|
1454
1884
|
vegaOpen: EventEmitter<CustomEvent<any>>;
|
|
1455
1885
|
/**
|
|
1456
|
-
* An event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native
|
|
1886
|
+
* An event emitter notifying the modal open event. The event name is not `open` because already has a property `open` @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1457
1887
|
*/
|
|
1458
1888
|
modalOpen: EventEmitter<CustomEvent<any>>;
|
|
1459
1889
|
|
|
@@ -1544,21 +1974,21 @@ export class VegaPageNotificationList {
|
|
|
1544
1974
|
|
|
1545
1975
|
export declare interface VegaPagination extends Components.VegaPagination {
|
|
1546
1976
|
/**
|
|
1547
|
-
* An event emitter notifying the current page change.
|
|
1977
|
+
* An event emitter notifying the current page change. @vegaVersion 1.3.0
|
|
1548
1978
|
*/
|
|
1549
1979
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1550
1980
|
/**
|
|
1551
|
-
* An event emitter notifying the current page change. @eventSemantics namespace:native
|
|
1981
|
+
* An event emitter notifying the current page change. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1552
1982
|
*/
|
|
1553
1983
|
change: EventEmitter<CustomEvent<number>>;
|
|
1554
1984
|
/**
|
|
1555
1985
|
* An event emitter notifying a change in the number of
|
|
1556
|
-
data items displayed per page.
|
|
1986
|
+
data items displayed per page. @vegaVersion 1.25.0
|
|
1557
1987
|
*/
|
|
1558
1988
|
vegaPageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
1559
1989
|
/**
|
|
1560
1990
|
* An event emitter notifying a change in the number of
|
|
1561
|
-
data items displayed per page. @eventSemantics namespace:native
|
|
1991
|
+
data items displayed per page. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1562
1992
|
*/
|
|
1563
1993
|
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
1564
1994
|
|
|
@@ -1608,19 +2038,19 @@ export class VegaPieChart {
|
|
|
1608
2038
|
|
|
1609
2039
|
export declare interface VegaPopover extends Components.VegaPopover {
|
|
1610
2040
|
/**
|
|
1611
|
-
* An event emitter notifying the popover show event.
|
|
2041
|
+
* An event emitter notifying the popover show event. @vegaVersion 1.22.0
|
|
1612
2042
|
*/
|
|
1613
2043
|
vegaPopoverShow: EventEmitter<CustomEvent<string>>;
|
|
1614
2044
|
/**
|
|
1615
|
-
* An event emitter notifying the popover show event. @eventSemantics namespace:native
|
|
2045
|
+
* An event emitter notifying the popover show event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1616
2046
|
*/
|
|
1617
2047
|
popoverShow: EventEmitter<CustomEvent<string>>;
|
|
1618
2048
|
/**
|
|
1619
|
-
* An event emitter notifying the popover hide event.
|
|
2049
|
+
* An event emitter notifying the popover hide event. @vegaVersion 1.22.0
|
|
1620
2050
|
*/
|
|
1621
2051
|
vegaPopoverHide: EventEmitter<CustomEvent<string>>;
|
|
1622
2052
|
/**
|
|
1623
|
-
* An event emitter notifying the popover hide event. @eventSemantics namespace:native
|
|
2053
|
+
* An event emitter notifying the popover hide event. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1624
2054
|
*/
|
|
1625
2055
|
popoverHide: EventEmitter<CustomEvent<string>>;
|
|
1626
2056
|
|
|
@@ -1628,14 +2058,14 @@ export declare interface VegaPopover extends Components.VegaPopover {
|
|
|
1628
2058
|
|
|
1629
2059
|
@ProxyCmp({
|
|
1630
2060
|
defineCustomElementFn: undefined,
|
|
1631
|
-
inputs: ['alignment', 'placement', 'positionRelativeTo', 'size', 'trigger'],
|
|
2061
|
+
inputs: ['alignment', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger'],
|
|
1632
2062
|
methods: ['show', 'hide']
|
|
1633
2063
|
})
|
|
1634
2064
|
@Component({
|
|
1635
2065
|
selector: 'vega-popover',
|
|
1636
2066
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1637
2067
|
template: '<ng-content></ng-content>',
|
|
1638
|
-
inputs: ['alignment', 'placement', 'positionRelativeTo', 'size', 'trigger']
|
|
2068
|
+
inputs: ['alignment', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger']
|
|
1639
2069
|
})
|
|
1640
2070
|
export class VegaPopover {
|
|
1641
2071
|
protected el: HTMLElement;
|
|
@@ -1650,12 +2080,14 @@ export class VegaPopover {
|
|
|
1650
2080
|
export declare interface VegaPopoverContentBox extends Components.VegaPopoverContentBox {}
|
|
1651
2081
|
|
|
1652
2082
|
@ProxyCmp({
|
|
1653
|
-
defineCustomElementFn: undefined
|
|
2083
|
+
defineCustomElementFn: undefined,
|
|
2084
|
+
inputs: ['showArrow']
|
|
1654
2085
|
})
|
|
1655
2086
|
@Component({
|
|
1656
2087
|
selector: 'vega-popover-content-box',
|
|
1657
2088
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1658
|
-
template: '<ng-content></ng-content>'
|
|
2089
|
+
template: '<ng-content></ng-content>',
|
|
2090
|
+
inputs: ['showArrow']
|
|
1659
2091
|
})
|
|
1660
2092
|
export class VegaPopoverContentBox {
|
|
1661
2093
|
protected el: HTMLElement;
|
|
@@ -1668,11 +2100,11 @@ export class VegaPopoverContentBox {
|
|
|
1668
2100
|
|
|
1669
2101
|
export declare interface VegaProgressTracker extends Components.VegaProgressTracker {
|
|
1670
2102
|
/**
|
|
1671
|
-
* An event emitter notifying that the current step has changed.
|
|
2103
|
+
* An event emitter notifying that the current step has changed. @vegaVersion 1.5.0
|
|
1672
2104
|
*/
|
|
1673
2105
|
vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
1674
2106
|
/**
|
|
1675
|
-
* An event emitter notifying that the current step has changed. @eventSemantics namespace:native
|
|
2107
|
+
* An event emitter notifying that the current step has changed. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1676
2108
|
*/
|
|
1677
2109
|
currentStepUpdate: EventEmitter<CustomEvent<string>>;
|
|
1678
2110
|
|
|
@@ -1701,29 +2133,29 @@ export class VegaProgressTracker {
|
|
|
1701
2133
|
|
|
1702
2134
|
export declare interface VegaRadio extends Components.VegaRadio {
|
|
1703
2135
|
/**
|
|
1704
|
-
* An event emitter notifying the focus event of the radio input.
|
|
2136
|
+
* An event emitter notifying the focus event of the radio input. @vegaVersion 1.0.7
|
|
1705
2137
|
*/
|
|
1706
2138
|
vegaFocus: EventEmitter<CustomEvent<any>>;
|
|
1707
2139
|
/**
|
|
1708
|
-
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native
|
|
2140
|
+
* An event emitter notifying the focus event of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1709
2141
|
*/
|
|
1710
2142
|
focus: EventEmitter<CustomEvent<any>>;
|
|
1711
2143
|
/**
|
|
1712
|
-
* An event emitter notifying the blur event of the radio input.
|
|
2144
|
+
* An event emitter notifying the blur event of the radio input. @vegaVersion 1.0.7
|
|
1713
2145
|
*/
|
|
1714
2146
|
vegaBlur: EventEmitter<CustomEvent<any>>;
|
|
1715
2147
|
/**
|
|
1716
|
-
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native
|
|
2148
|
+
* An event emitter notifying the blur event of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1717
2149
|
*/
|
|
1718
2150
|
blur: EventEmitter<CustomEvent<any>>;
|
|
1719
2151
|
/**
|
|
1720
2152
|
* An event emitter notifying the change in the check status
|
|
1721
|
-
of the radio input.
|
|
2153
|
+
of the radio input. @vegaVersion 1.0.10
|
|
1722
2154
|
*/
|
|
1723
2155
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
1724
2156
|
/**
|
|
1725
2157
|
* An event emitter notifying the change in the check status
|
|
1726
|
-
of the radio input. @eventSemantics namespace:native
|
|
2158
|
+
of the radio input. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1727
2159
|
*/
|
|
1728
2160
|
change: EventEmitter<CustomEvent<boolean>>;
|
|
1729
2161
|
|
|
@@ -1752,12 +2184,12 @@ export class VegaRadio {
|
|
|
1752
2184
|
export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
|
|
1753
2185
|
/**
|
|
1754
2186
|
* An event emitter notifying the change of the
|
|
1755
|
-
checked radio button in the radio group.
|
|
2187
|
+
checked radio button in the radio group. @vegaVersion 1.0.10
|
|
1756
2188
|
*/
|
|
1757
2189
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
1758
2190
|
/**
|
|
1759
2191
|
* An event emitter notifying the change of the
|
|
1760
|
-
checked radio button in the radio group. @eventSemantics namespace:native
|
|
2192
|
+
checked radio button in the radio group. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1761
2193
|
*/
|
|
1762
2194
|
change: EventEmitter<CustomEvent<string>>;
|
|
1763
2195
|
|
|
@@ -1765,13 +2197,13 @@ export declare interface VegaRadioGroup extends Components.VegaRadioGroup {
|
|
|
1765
2197
|
|
|
1766
2198
|
@ProxyCmp({
|
|
1767
2199
|
defineCustomElementFn: undefined,
|
|
1768
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
2200
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
1769
2201
|
})
|
|
1770
2202
|
@Component({
|
|
1771
2203
|
selector: 'vega-radio-group',
|
|
1772
2204
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1773
2205
|
template: '<ng-content></ng-content>',
|
|
1774
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
2206
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
1775
2207
|
})
|
|
1776
2208
|
export class VegaRadioGroup {
|
|
1777
2209
|
protected el: HTMLElement;
|
|
@@ -1783,6 +2215,165 @@ export class VegaRadioGroup {
|
|
|
1783
2215
|
}
|
|
1784
2216
|
|
|
1785
2217
|
|
|
2218
|
+
export declare interface VegaRichTextContent extends Components.VegaRichTextContent {}
|
|
2219
|
+
|
|
2220
|
+
@ProxyCmp({
|
|
2221
|
+
defineCustomElementFn: undefined,
|
|
2222
|
+
inputs: ['content'],
|
|
2223
|
+
methods: ['vegaFocus']
|
|
2224
|
+
})
|
|
2225
|
+
@Component({
|
|
2226
|
+
selector: 'vega-rich-text-content',
|
|
2227
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2228
|
+
template: '<ng-content></ng-content>',
|
|
2229
|
+
inputs: ['content']
|
|
2230
|
+
})
|
|
2231
|
+
export class VegaRichTextContent {
|
|
2232
|
+
protected el: HTMLElement;
|
|
2233
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2234
|
+
c.detach();
|
|
2235
|
+
this.el = r.nativeElement;
|
|
2236
|
+
}
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
import type { VegaRTEContentBlock as IVegaRichTextEditorVegaRTEContentBlock } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
|
|
2240
|
+
import type { VegaRichTextEditorImage as IVegaRichTextEditorVegaRichTextEditorImage } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/interface';
|
|
2241
|
+
export declare interface VegaRichTextEditor extends Components.VegaRichTextEditor {
|
|
2242
|
+
/**
|
|
2243
|
+
* An event emitter notifying a value change. @vegaVersion __VEGA_VERSION__
|
|
2244
|
+
*/
|
|
2245
|
+
vegaChange: EventEmitter<CustomEvent<Array<IVegaRichTextEditorVegaRTEContentBlock>>>;
|
|
2246
|
+
/**
|
|
2247
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion __VEGA_VERSION__
|
|
2248
|
+
*/
|
|
2249
|
+
change: EventEmitter<CustomEvent<Array<IVegaRichTextEditorVegaRTEContentBlock>>>;
|
|
2250
|
+
/**
|
|
2251
|
+
* An event emitter notifying a image selection change. @vegaVersion __VEGA_VERSION__
|
|
2252
|
+
*/
|
|
2253
|
+
vegaSelectedImageChange: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
|
|
2254
|
+
/**
|
|
2255
|
+
* An event emitter notifying a image selection change. @eventSemantics namespace:native,@vegaVersion __VEGA_VERSION__
|
|
2256
|
+
*/
|
|
2257
|
+
selectedImageChange: EventEmitter<CustomEvent<IVegaRichTextEditorVegaRichTextEditorImage>>;
|
|
2258
|
+
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
@ProxyCmp({
|
|
2262
|
+
defineCustomElementFn: undefined,
|
|
2263
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'toolbarItems', 'validationRules', 'value']
|
|
2264
|
+
})
|
|
2265
|
+
@Component({
|
|
2266
|
+
selector: 'vega-rich-text-editor',
|
|
2267
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2268
|
+
template: '<ng-content></ng-content>',
|
|
2269
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'toolbarItems', 'validationRules', 'value']
|
|
2270
|
+
})
|
|
2271
|
+
export class VegaRichTextEditor {
|
|
2272
|
+
protected el: HTMLElement;
|
|
2273
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2274
|
+
c.detach();
|
|
2275
|
+
this.el = r.nativeElement;
|
|
2276
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSelectedImageChange', 'selectedImageChange']);
|
|
2277
|
+
}
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
|
|
2281
|
+
export declare interface VegaRichTextEditorToolbarButton extends Components.VegaRichTextEditorToolbarButton {
|
|
2282
|
+
/**
|
|
2283
|
+
* An event emitter notifying the click event of the button. @vegaVersion __VEGA_VERSION__
|
|
2284
|
+
*/
|
|
2285
|
+
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
2286
|
+
/**
|
|
2287
|
+
* An event emitter notifying the click event of the button. @eventSemantics namespace:native,@vegaVersion __VEGA_VERSION__
|
|
2288
|
+
*/
|
|
2289
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
2290
|
+
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
@ProxyCmp({
|
|
2294
|
+
defineCustomElementFn: undefined,
|
|
2295
|
+
inputs: ['disabled', 'icon', 'iconColor', 'selected', 'showArrowIcon']
|
|
2296
|
+
})
|
|
2297
|
+
@Component({
|
|
2298
|
+
selector: 'vega-rich-text-editor-toolbar-button',
|
|
2299
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2300
|
+
template: '<ng-content></ng-content>',
|
|
2301
|
+
inputs: ['disabled', 'icon', 'iconColor', 'selected', 'showArrowIcon']
|
|
2302
|
+
})
|
|
2303
|
+
export class VegaRichTextEditorToolbarButton {
|
|
2304
|
+
protected el: HTMLElement;
|
|
2305
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2306
|
+
c.detach();
|
|
2307
|
+
this.el = r.nativeElement;
|
|
2308
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
import type { VegaRichTextImageEditorChangeDetail as IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-image-editor/types';
|
|
2313
|
+
export declare interface VegaRichTextImageEditor extends Components.VegaRichTextImageEditor {
|
|
2314
|
+
/**
|
|
2315
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
2316
|
+
*/
|
|
2317
|
+
vegaChange: EventEmitter<CustomEvent<IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail>>;
|
|
2318
|
+
/**
|
|
2319
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
2320
|
+
*/
|
|
2321
|
+
change: EventEmitter<CustomEvent<IVegaRichTextImageEditorVegaRichTextImageEditorChangeDetail>>;
|
|
2322
|
+
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
@ProxyCmp({
|
|
2326
|
+
defineCustomElementFn: undefined,
|
|
2327
|
+
inputs: ['alt', 'size']
|
|
2328
|
+
})
|
|
2329
|
+
@Component({
|
|
2330
|
+
selector: 'vega-rich-text-image-editor',
|
|
2331
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2332
|
+
template: '<ng-content></ng-content>',
|
|
2333
|
+
inputs: ['alt', 'size']
|
|
2334
|
+
})
|
|
2335
|
+
export class VegaRichTextImageEditor {
|
|
2336
|
+
protected el: HTMLElement;
|
|
2337
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2338
|
+
c.detach();
|
|
2339
|
+
this.el = r.nativeElement;
|
|
2340
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2341
|
+
}
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
import type { VegaRichTextLinkEditorChangeDetail as IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail } from '@heartlandone/vega/dist/types/components/vega-rich-text-editor/vega-rich-text-link-editor/types';
|
|
2345
|
+
export declare interface VegaRichTextLinkEditor extends Components.VegaRichTextLinkEditor {
|
|
2346
|
+
/**
|
|
2347
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
2348
|
+
*/
|
|
2349
|
+
vegaChange: EventEmitter<CustomEvent<IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail>>;
|
|
2350
|
+
/**
|
|
2351
|
+
* An event emitter notifying content change. @vegaVersion __VEGA_VERSION__
|
|
2352
|
+
*/
|
|
2353
|
+
change: EventEmitter<CustomEvent<IVegaRichTextLinkEditorVegaRichTextLinkEditorChangeDetail>>;
|
|
2354
|
+
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2357
|
+
@ProxyCmp({
|
|
2358
|
+
defineCustomElementFn: undefined,
|
|
2359
|
+
inputs: ['record', 'resetStatusAfterHide', 'status']
|
|
2360
|
+
})
|
|
2361
|
+
@Component({
|
|
2362
|
+
selector: 'vega-rich-text-link-editor',
|
|
2363
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2364
|
+
template: '<ng-content></ng-content>',
|
|
2365
|
+
inputs: ['record', 'resetStatusAfterHide', 'status']
|
|
2366
|
+
})
|
|
2367
|
+
export class VegaRichTextLinkEditor {
|
|
2368
|
+
protected el: HTMLElement;
|
|
2369
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2370
|
+
c.detach();
|
|
2371
|
+
this.el = r.nativeElement;
|
|
2372
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2373
|
+
}
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
|
|
1786
2377
|
export declare interface VegaSectionTitle extends Components.VegaSectionTitle {}
|
|
1787
2378
|
|
|
1788
2379
|
@ProxyCmp({
|
|
@@ -1804,6 +2395,316 @@ export class VegaSectionTitle {
|
|
|
1804
2395
|
}
|
|
1805
2396
|
|
|
1806
2397
|
|
|
2398
|
+
export declare interface VegaSegmentControl extends Components.VegaSegmentControl {
|
|
2399
|
+
/**
|
|
2400
|
+
* An event emitter notifying changes
|
|
2401
|
+
in the selected segment. @vegaVersion 2.3.0
|
|
2402
|
+
*/
|
|
2403
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2404
|
+
/**
|
|
2405
|
+
* A native event emitter notifying changes
|
|
2406
|
+
in the selected segment. @eventSemantics namespace:native,@vegaVersion 2.3.0
|
|
2407
|
+
*/
|
|
2408
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
2409
|
+
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
@ProxyCmp({
|
|
2413
|
+
defineCustomElementFn: undefined,
|
|
2414
|
+
inputs: ['block', 'segments', 'selected', 'size', 'variant']
|
|
2415
|
+
})
|
|
2416
|
+
@Component({
|
|
2417
|
+
selector: 'vega-segment-control',
|
|
2418
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2419
|
+
template: '<ng-content></ng-content>',
|
|
2420
|
+
inputs: ['block', 'segments', 'selected', 'size', 'variant']
|
|
2421
|
+
})
|
|
2422
|
+
export class VegaSegmentControl {
|
|
2423
|
+
protected el: HTMLElement;
|
|
2424
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2425
|
+
c.detach();
|
|
2426
|
+
this.el = r.nativeElement;
|
|
2427
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2428
|
+
}
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
|
|
2432
|
+
export declare interface VegaSelectionChip extends Components.VegaSelectionChip {
|
|
2433
|
+
/**
|
|
2434
|
+
* An event emitter notifying changes in the value of the selection chip,
|
|
2435
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.22.0
|
|
2436
|
+
*/
|
|
2437
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2438
|
+
/**
|
|
2439
|
+
* An event emitter notifying changes in the value of the selection chip,
|
|
2440
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.22.0
|
|
2441
|
+
*/
|
|
2442
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
2443
|
+
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
@ProxyCmp({
|
|
2447
|
+
defineCustomElementFn: undefined,
|
|
2448
|
+
inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
|
|
2449
|
+
})
|
|
2450
|
+
@Component({
|
|
2451
|
+
selector: 'vega-selection-chip',
|
|
2452
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2453
|
+
template: '<ng-content></ng-content>',
|
|
2454
|
+
inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
|
|
2455
|
+
})
|
|
2456
|
+
export class VegaSelectionChip {
|
|
2457
|
+
protected el: HTMLElement;
|
|
2458
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2459
|
+
c.detach();
|
|
2460
|
+
this.el = r.nativeElement;
|
|
2461
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
|
|
2466
|
+
export declare interface VegaSelectionChipGroup extends Components.VegaSelectionChipGroup {
|
|
2467
|
+
/**
|
|
2468
|
+
* An event emitter notifying changes in the value of the selection chip group,
|
|
2469
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.22.0
|
|
2470
|
+
*/
|
|
2471
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2472
|
+
/**
|
|
2473
|
+
* An event emitter notifying changes in the value of the selection chip group,
|
|
2474
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.22.0
|
|
2475
|
+
*/
|
|
2476
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
2477
|
+
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
@ProxyCmp({
|
|
2481
|
+
defineCustomElementFn: undefined,
|
|
2482
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
|
|
2483
|
+
})
|
|
2484
|
+
@Component({
|
|
2485
|
+
selector: 'vega-selection-chip-group',
|
|
2486
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2487
|
+
template: '<ng-content></ng-content>',
|
|
2488
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
|
|
2489
|
+
})
|
|
2490
|
+
export class VegaSelectionChipGroup {
|
|
2491
|
+
protected el: HTMLElement;
|
|
2492
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2493
|
+
c.detach();
|
|
2494
|
+
this.el = r.nativeElement;
|
|
2495
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2496
|
+
}
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
|
|
2500
|
+
export declare interface VegaSelectionTile extends Components.VegaSelectionTile {
|
|
2501
|
+
/**
|
|
2502
|
+
* An event emitter notifying changes in the value of the selection tile,
|
|
2503
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.7.0
|
|
2504
|
+
*/
|
|
2505
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2506
|
+
/**
|
|
2507
|
+
* An event emitter notifying changes in the value of the selection tile,
|
|
2508
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.7.0
|
|
2509
|
+
*/
|
|
2510
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
2511
|
+
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
@ProxyCmp({
|
|
2515
|
+
defineCustomElementFn: undefined,
|
|
2516
|
+
inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
|
|
2517
|
+
})
|
|
2518
|
+
@Component({
|
|
2519
|
+
selector: 'vega-selection-tile',
|
|
2520
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2521
|
+
template: '<ng-content></ng-content>',
|
|
2522
|
+
inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
|
|
2523
|
+
})
|
|
2524
|
+
export class VegaSelectionTile {
|
|
2525
|
+
protected el: HTMLElement;
|
|
2526
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2527
|
+
c.detach();
|
|
2528
|
+
this.el = r.nativeElement;
|
|
2529
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2530
|
+
}
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
|
|
2534
|
+
export declare interface VegaSelectionTileGroup extends Components.VegaSelectionTileGroup {
|
|
2535
|
+
/**
|
|
2536
|
+
* An event emitter notifying changes in the value of the selection tile group,
|
|
2537
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.7.0
|
|
2538
|
+
*/
|
|
2539
|
+
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2540
|
+
/**
|
|
2541
|
+
* An event emitter notifying changes in the value of the selection tile group,
|
|
2542
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.7.0
|
|
2543
|
+
*/
|
|
2544
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
2545
|
+
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
@ProxyCmp({
|
|
2549
|
+
defineCustomElementFn: undefined,
|
|
2550
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
|
2551
|
+
})
|
|
2552
|
+
@Component({
|
|
2553
|
+
selector: 'vega-selection-tile-group',
|
|
2554
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2555
|
+
template: '<ng-content></ng-content>',
|
|
2556
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
|
2557
|
+
})
|
|
2558
|
+
export class VegaSelectionTileGroup {
|
|
2559
|
+
protected el: HTMLElement;
|
|
2560
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2561
|
+
c.detach();
|
|
2562
|
+
this.el = r.nativeElement;
|
|
2563
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2564
|
+
}
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
|
|
2568
|
+
export declare interface VegaSidenav extends Components.VegaSidenav {
|
|
2569
|
+
/**
|
|
2570
|
+
* An event emitter notifying the completion of a navigation menu state change (open or close). @vegaVersion 1, v2.29.0
|
|
2571
|
+
*/
|
|
2572
|
+
vegaStateUpdate: EventEmitter<CustomEvent<string>>;
|
|
2573
|
+
/**
|
|
2574
|
+
* An event emitter notifying the completion of a navigation menu state change (open or close). @eventSemantics namespace:native,@vegaVersion 1, v2.29.0
|
|
2575
|
+
*/
|
|
2576
|
+
stateUpdate: EventEmitter<CustomEvent<string>>;
|
|
2577
|
+
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
@ProxyCmp({
|
|
2581
|
+
defineCustomElementFn: undefined,
|
|
2582
|
+
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],
|
|
2583
|
+
methods: ['toggle']
|
|
2584
|
+
})
|
|
2585
|
+
@Component({
|
|
2586
|
+
selector: 'vega-sidenav',
|
|
2587
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2588
|
+
template: '<ng-content></ng-content>',
|
|
2589
|
+
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']
|
|
2590
|
+
})
|
|
2591
|
+
export class VegaSidenav {
|
|
2592
|
+
protected el: HTMLElement;
|
|
2593
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2594
|
+
c.detach();
|
|
2595
|
+
this.el = r.nativeElement;
|
|
2596
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
|
|
2601
|
+
export declare interface VegaSidenavGroup extends Components.VegaSidenavGroup {}
|
|
2602
|
+
|
|
2603
|
+
@ProxyCmp({
|
|
2604
|
+
defineCustomElementFn: undefined,
|
|
2605
|
+
inputs: ['icon', 'label']
|
|
2606
|
+
})
|
|
2607
|
+
@Component({
|
|
2608
|
+
selector: 'vega-sidenav-group',
|
|
2609
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2610
|
+
template: '<ng-content></ng-content>',
|
|
2611
|
+
inputs: ['icon', 'label']
|
|
2612
|
+
})
|
|
2613
|
+
export class VegaSidenavGroup {
|
|
2614
|
+
protected el: HTMLElement;
|
|
2615
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2616
|
+
c.detach();
|
|
2617
|
+
this.el = r.nativeElement;
|
|
2618
|
+
}
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
|
|
2622
|
+
export declare interface VegaSidenavLink extends Components.VegaSidenavLink {
|
|
2623
|
+
/**
|
|
2624
|
+
* An event emitter notifying about the occurrence of a click event. @vegaVersion 1, v2.29.0
|
|
2625
|
+
*/
|
|
2626
|
+
vegaClick: EventEmitter<CustomEvent<any>>;
|
|
2627
|
+
/**
|
|
2628
|
+
* An event emitter notifying about the occurrence of a click event. @eventSemantics namespace:native,@vegaVersion 1, v2.29.0
|
|
2629
|
+
*/
|
|
2630
|
+
click: EventEmitter<CustomEvent<any>>;
|
|
2631
|
+
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
@ProxyCmp({
|
|
2635
|
+
defineCustomElementFn: undefined,
|
|
2636
|
+
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
|
2637
|
+
})
|
|
2638
|
+
@Component({
|
|
2639
|
+
selector: 'vega-sidenav-link',
|
|
2640
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2641
|
+
template: '<ng-content></ng-content>',
|
|
2642
|
+
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
|
2643
|
+
})
|
|
2644
|
+
export class VegaSidenavLink {
|
|
2645
|
+
protected el: HTMLElement;
|
|
2646
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2647
|
+
c.detach();
|
|
2648
|
+
this.el = r.nativeElement;
|
|
2649
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
2650
|
+
}
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
import type { VegaSignatureValue as IVegaSignatureCaptureVegaSignatureValue } from '@heartlandone/vega/dist/types/components/vega-signature-capture/types';
|
|
2654
|
+
export declare interface VegaSignatureCapture extends Components.VegaSignatureCapture {
|
|
2655
|
+
/**
|
|
2656
|
+
* An event emitter notifying a value change. @vegaVersion 2.19.0
|
|
2657
|
+
*/
|
|
2658
|
+
vegaChange: EventEmitter<CustomEvent<IVegaSignatureCaptureVegaSignatureValue>>;
|
|
2659
|
+
/**
|
|
2660
|
+
* An event emitter notifying a value change. @eventSemantics namespace:native,@vegaVersion 2.19.0
|
|
2661
|
+
*/
|
|
2662
|
+
change: EventEmitter<CustomEvent<IVegaSignatureCaptureVegaSignatureValue>>;
|
|
2663
|
+
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
@ProxyCmp({
|
|
2667
|
+
defineCustomElementFn: undefined,
|
|
2668
|
+
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
|
|
2669
|
+
methods: ['clear']
|
|
2670
|
+
})
|
|
2671
|
+
@Component({
|
|
2672
|
+
selector: 'vega-signature-capture',
|
|
2673
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2674
|
+
template: '<ng-content></ng-content>',
|
|
2675
|
+
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
|
|
2676
|
+
})
|
|
2677
|
+
export class VegaSignatureCapture {
|
|
2678
|
+
protected el: HTMLElement;
|
|
2679
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2680
|
+
c.detach();
|
|
2681
|
+
this.el = r.nativeElement;
|
|
2682
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
2683
|
+
}
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
|
|
2687
|
+
export declare interface VegaSkeleton extends Components.VegaSkeleton {}
|
|
2688
|
+
|
|
2689
|
+
@ProxyCmp({
|
|
2690
|
+
defineCustomElementFn: undefined,
|
|
2691
|
+
inputs: ['animated', 'height', 'type', 'width']
|
|
2692
|
+
})
|
|
2693
|
+
@Component({
|
|
2694
|
+
selector: 'vega-skeleton',
|
|
2695
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2696
|
+
template: '<ng-content></ng-content>',
|
|
2697
|
+
inputs: ['animated', 'height', 'type', 'width']
|
|
2698
|
+
})
|
|
2699
|
+
export class VegaSkeleton {
|
|
2700
|
+
protected el: HTMLElement;
|
|
2701
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2702
|
+
c.detach();
|
|
2703
|
+
this.el = r.nativeElement;
|
|
2704
|
+
}
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
|
|
1807
2708
|
export declare interface VegaSlotContainer extends Components.VegaSlotContainer {}
|
|
1808
2709
|
|
|
1809
2710
|
@ProxyCmp({
|
|
@@ -1825,11 +2726,11 @@ export class VegaSlotContainer {
|
|
|
1825
2726
|
|
|
1826
2727
|
export declare interface VegaStepper extends Components.VegaStepper {
|
|
1827
2728
|
/**
|
|
1828
|
-
* An event emitter notifying changes in the value of the stepper component.
|
|
2729
|
+
* An event emitter notifying changes in the value of the stepper component. @vegaVersion 1.0.8
|
|
1829
2730
|
*/
|
|
1830
2731
|
vegaChange: EventEmitter<CustomEvent<number>>;
|
|
1831
2732
|
/**
|
|
1832
|
-
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native
|
|
2733
|
+
* An event emitter notifying changes in the value of the stepper component. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1833
2734
|
*/
|
|
1834
2735
|
change: EventEmitter<CustomEvent<number>>;
|
|
1835
2736
|
|
|
@@ -1858,12 +2759,12 @@ export class VegaStepper {
|
|
|
1858
2759
|
export declare interface VegaTabGroup extends Components.VegaTabGroup {
|
|
1859
2760
|
/**
|
|
1860
2761
|
* An event emitter notifying the click event of a tab
|
|
1861
|
-
in the tab group.
|
|
2762
|
+
in the tab group. @vegaVersion 1.1.0
|
|
1862
2763
|
*/
|
|
1863
2764
|
vegaClick: EventEmitter<CustomEvent<string>>;
|
|
1864
2765
|
/**
|
|
1865
2766
|
* An event emitter notifying the click event of a tab
|
|
1866
|
-
in the tab group. @eventSemantics namespace:native
|
|
2767
|
+
in the tab group. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1867
2768
|
*/
|
|
1868
2769
|
click: EventEmitter<CustomEvent<string>>;
|
|
1869
2770
|
|
|
@@ -1911,67 +2812,94 @@ export class VegaTabGroupPanel {
|
|
|
1911
2812
|
|
|
1912
2813
|
import type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
1913
2814
|
import type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
2815
|
+
import type { VegaTableRowExpandEventDetail as IVegaTableVegaTableRowExpandEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
1914
2816
|
import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
1915
2817
|
import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
2818
|
+
import type { VegaTableRowSelectEventDetail as IVegaTableVegaTableRowSelectEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
2819
|
+
import type { VegaTableRowSelectAllEventDetail as IVegaTableVegaTableRowSelectAllEventDetail } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
1916
2820
|
export declare interface VegaTable extends Components.VegaTable {
|
|
1917
2821
|
/**
|
|
1918
|
-
* An event emitter notifying changes in the table data.
|
|
2822
|
+
* An event emitter notifying changes in the table data. @vegaVersion 1.3.0
|
|
1919
2823
|
*/
|
|
1920
2824
|
vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1921
2825
|
/**
|
|
1922
|
-
* An event emitter notifying changes in the table data. @eventSemantics namespace:native
|
|
2826
|
+
* An event emitter notifying changes in the table data. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1923
2827
|
*/
|
|
1924
2828
|
change: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;
|
|
1925
2829
|
/**
|
|
1926
2830
|
* An event emitter notifying the click event of a row
|
|
1927
|
-
in the table.
|
|
2831
|
+
in the table. @vegaVersion 1.3.0
|
|
1928
2832
|
*/
|
|
1929
2833
|
vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1930
2834
|
/**
|
|
1931
2835
|
* An event emitter notifying the click event of a row
|
|
1932
|
-
in the table. @eventSemantics namespace:native
|
|
2836
|
+
in the table. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1933
2837
|
*/
|
|
1934
2838
|
rowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;
|
|
1935
2839
|
/**
|
|
1936
|
-
* An event emitter notifying the
|
|
1937
|
-
|
|
2840
|
+
* An event emitter notifying the expanded event of a row
|
|
2841
|
+
in the table. @vegaVersion 2.24.0
|
|
2842
|
+
*/
|
|
2843
|
+
vegaRowExpand: EventEmitter<CustomEvent<IVegaTableVegaTableRowExpandEventDetail>>;
|
|
2844
|
+
/**
|
|
2845
|
+
* An event emitter notifying the expanded event of a row
|
|
2846
|
+
in the table. @eventSemantics namespace:native,@vegaVersion 2.24.0
|
|
2847
|
+
*/
|
|
2848
|
+
rowExpand: EventEmitter<CustomEvent<IVegaTableVegaTableRowExpandEventDetail>>;
|
|
2849
|
+
/**
|
|
2850
|
+
* An event emitter notifying when the row selection changes. @vegaVersion 1.18.0
|
|
1938
2851
|
*/
|
|
1939
2852
|
vegaSelectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1940
2853
|
/**
|
|
1941
|
-
* An event emitter notifying the selection
|
|
1942
|
-
of a row in the table. @eventSemantics namespace:native
|
|
2854
|
+
* An event emitter notifying when the selection state of all rows changes. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1943
2855
|
*/
|
|
1944
2856
|
selectChange: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectProp>>;
|
|
1945
2857
|
/**
|
|
1946
2858
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
1947
|
-
particularly the "Select All" checkbox in the table header.
|
|
2859
|
+
particularly the "Select All" checkbox in the table header. @vegaVersion 1.18.0
|
|
1948
2860
|
*/
|
|
1949
2861
|
vegaSelectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
1950
2862
|
/**
|
|
1951
2863
|
* An event emitter notifying changes in the selection of checkboxes,
|
|
1952
|
-
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native
|
|
2864
|
+
particularly the "Select All" checkbox in the table header. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
1953
2865
|
*/
|
|
1954
2866
|
selectAllChange: EventEmitter<CustomEvent<IVegaTableVegaTableSelectAllProp>>;
|
|
2867
|
+
/**
|
|
2868
|
+
* An event emitter notifying before the selected change when select/deselect one row @vegaVersion 2.23.0
|
|
2869
|
+
*/
|
|
2870
|
+
vegaRowSelect: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectEventDetail>>;
|
|
2871
|
+
/**
|
|
2872
|
+
* An event emitter notifying before the selected change when select/deselect one row @eventSemantics namespace:native,@vegaVersion 2.23.0
|
|
2873
|
+
*/
|
|
2874
|
+
rowSelect: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectEventDetail>>;
|
|
2875
|
+
/**
|
|
2876
|
+
* An event emitter notifying before the selected change when select/deselect all rows @vegaVersion 2.23.0
|
|
2877
|
+
*/
|
|
2878
|
+
vegaRowSelectAll: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectAllEventDetail>>;
|
|
2879
|
+
/**
|
|
2880
|
+
* An event emitter notifying before the selected change when select/deselect all rows @eventSemantics namespace:native,@vegaVersion 2.23.0
|
|
2881
|
+
*/
|
|
2882
|
+
rowSelectAll: EventEmitter<CustomEvent<IVegaTableVegaTableRowSelectAllEventDetail>>;
|
|
1955
2883
|
|
|
1956
2884
|
}
|
|
1957
2885
|
|
|
1958
2886
|
@ProxyCmp({
|
|
1959
2887
|
defineCustomElementFn: undefined,
|
|
1960
|
-
inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'striped'],
|
|
2888
|
+
inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped'],
|
|
1961
2889
|
methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection', 'startRowEditMode', 'stopRowEditMode', 'stopAllRowEditMode', 'getRowData', 'getRowsData', 'getFormRef', 'addNewRow', 'saveEditRow', 'saveAllEditRows', 'getEditingRowsKey', 'removeRow']
|
|
1962
2890
|
})
|
|
1963
2891
|
@Component({
|
|
1964
2892
|
selector: 'vega-table',
|
|
1965
2893
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1966
2894
|
template: '<ng-content></ng-content>',
|
|
1967
|
-
inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'striped']
|
|
2895
|
+
inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped']
|
|
1968
2896
|
})
|
|
1969
2897
|
export class VegaTable {
|
|
1970
2898
|
protected el: HTMLElement;
|
|
1971
2899
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1972
2900
|
c.detach();
|
|
1973
2901
|
this.el = r.nativeElement;
|
|
1974
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange']);
|
|
2902
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaRowExpand', 'rowExpand', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange', 'vegaRowSelect', 'rowSelect', 'vegaRowSelectAll', 'rowSelectAll']);
|
|
1975
2903
|
}
|
|
1976
2904
|
}
|
|
1977
2905
|
|
|
@@ -2058,11 +2986,11 @@ export class VegaTableHead {
|
|
|
2058
2986
|
import type { VegaTableHeadCellClickEvent as IVegaTableHeadCellVegaTableHeadCellClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
2059
2987
|
export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell {
|
|
2060
2988
|
/**
|
|
2061
|
-
* An event emitter notifying that the head cell has been clicked.
|
|
2989
|
+
* An event emitter notifying that the head cell has been clicked. @vegaVersion 1.44.0
|
|
2062
2990
|
*/
|
|
2063
2991
|
vegaClick: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
2064
2992
|
/**
|
|
2065
|
-
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native
|
|
2993
|
+
* An event emitter notifying that the head cell has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
2066
2994
|
*/
|
|
2067
2995
|
click: EventEmitter<CustomEvent<IVegaTableHeadCellVegaTableHeadCellClickEvent>>;
|
|
2068
2996
|
|
|
@@ -2070,13 +2998,13 @@ export declare interface VegaTableHeadCell extends Components.VegaTableHeadCell
|
|
|
2070
2998
|
|
|
2071
2999
|
@ProxyCmp({
|
|
2072
3000
|
defineCustomElementFn: undefined,
|
|
2073
|
-
inputs: ['breakpoint', 'sorter', 'textAlign', 'width']
|
|
3001
|
+
inputs: ['breakpoint', 'sortOrder', 'sorter', 'textAlign', 'width']
|
|
2074
3002
|
})
|
|
2075
3003
|
@Component({
|
|
2076
3004
|
selector: 'vega-table-head-cell',
|
|
2077
3005
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2078
3006
|
template: '<ng-content></ng-content>',
|
|
2079
|
-
inputs: ['breakpoint', 'sorter', 'textAlign', 'width']
|
|
3007
|
+
inputs: ['breakpoint', 'sortOrder', 'sorter', 'textAlign', 'width']
|
|
2080
3008
|
})
|
|
2081
3009
|
export class VegaTableHeadCell {
|
|
2082
3010
|
protected el: HTMLElement;
|
|
@@ -2109,15 +3037,24 @@ export class VegaTableHeadRow {
|
|
|
2109
3037
|
}
|
|
2110
3038
|
|
|
2111
3039
|
import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
3040
|
+
import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
|
|
2112
3041
|
export declare interface VegaTableRow extends Components.VegaTableRow {
|
|
2113
3042
|
/**
|
|
2114
|
-
* An event emitter notifying that the row has been clicked.
|
|
3043
|
+
* An event emitter notifying that the row has been clicked. @vegaVersion 1.44.0
|
|
2115
3044
|
*/
|
|
2116
3045
|
vegaClick: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
2117
3046
|
/**
|
|
2118
|
-
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
|
|
3047
|
+
* An event emitter notifying that the row has been clicked. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
2119
3048
|
*/
|
|
2120
3049
|
click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
|
|
3050
|
+
/**
|
|
3051
|
+
* An event emitter notifying that the expand icon has been clicked. @vegaVersion 2.20.0
|
|
3052
|
+
*/
|
|
3053
|
+
vegaExpand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
|
|
3054
|
+
/**
|
|
3055
|
+
* An event emitter notifying that the expand icon has been clicked. @eventSemantics namespace:native,@vegaVersion 2.20.0
|
|
3056
|
+
*/
|
|
3057
|
+
expand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
|
|
2121
3058
|
|
|
2122
3059
|
}
|
|
2123
3060
|
|
|
@@ -2136,7 +3073,7 @@ export class VegaTableRow {
|
|
|
2136
3073
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2137
3074
|
c.detach();
|
|
2138
3075
|
this.el = r.nativeElement;
|
|
2139
|
-
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
3076
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaExpand', 'expand']);
|
|
2140
3077
|
}
|
|
2141
3078
|
}
|
|
2142
3079
|
|
|
@@ -2165,22 +3102,22 @@ export class VegaText {
|
|
|
2165
3102
|
export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
2166
3103
|
/**
|
|
2167
3104
|
* An event emitter notifying about changes in the value
|
|
2168
|
-
of the text area.
|
|
3105
|
+
of the text area. @vegaVersion 1.11.0
|
|
2169
3106
|
*/
|
|
2170
3107
|
vegaChange: EventEmitter<CustomEvent<string>>;
|
|
2171
3108
|
/**
|
|
2172
3109
|
* An event emitter notifying about changes in the value
|
|
2173
|
-
of the text area. @eventSemantics namespace:native
|
|
3110
|
+
of the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
2174
3111
|
*/
|
|
2175
3112
|
change: EventEmitter<CustomEvent<string>>;
|
|
2176
3113
|
/**
|
|
2177
3114
|
* An event emitter notifying the blur event of the inner
|
|
2178
|
-
textarea element within the text area.
|
|
3115
|
+
textarea element within the text area. @vegaVersion 1.11.0
|
|
2179
3116
|
*/
|
|
2180
3117
|
vegaBlur: EventEmitter<CustomEvent<undefined>>;
|
|
2181
3118
|
/**
|
|
2182
3119
|
* An event emitter notifying the blur event of the inner
|
|
2183
|
-
textarea element within the text area. @eventSemantics namespace:native
|
|
3120
|
+
textarea element within the text area. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
2184
3121
|
*/
|
|
2185
3122
|
blur: EventEmitter<CustomEvent<undefined>>;
|
|
2186
3123
|
|
|
@@ -2188,13 +3125,13 @@ export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
|
2188
3125
|
|
|
2189
3126
|
@ProxyCmp({
|
|
2190
3127
|
defineCustomElementFn: undefined,
|
|
2191
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'showCounter', 'validationRules', 'value']
|
|
3128
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'showCounter', 'validationRules', 'value']
|
|
2192
3129
|
})
|
|
2193
3130
|
@Component({
|
|
2194
3131
|
selector: 'vega-textarea',
|
|
2195
3132
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2196
3133
|
template: '<ng-content></ng-content>',
|
|
2197
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'showCounter', 'validationRules', 'value']
|
|
3134
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'showCounter', 'validationRules', 'value']
|
|
2198
3135
|
})
|
|
2199
3136
|
export class VegaTextarea {
|
|
2200
3137
|
protected el: HTMLElement;
|
|
@@ -2208,11 +3145,11 @@ export class VegaTextarea {
|
|
|
2208
3145
|
|
|
2209
3146
|
export declare interface VegaTimePicker extends Components.VegaTimePicker {
|
|
2210
3147
|
/**
|
|
2211
|
-
* An event emitter notifying changes in the value of the time picker.
|
|
3148
|
+
* An event emitter notifying changes in the value of the time picker. @vegaVersion 1.12.0
|
|
2212
3149
|
*/
|
|
2213
3150
|
vegaChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
2214
3151
|
/**
|
|
2215
|
-
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native
|
|
3152
|
+
* An event emitter notifying changes in the value of the time picker. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
2216
3153
|
*/
|
|
2217
3154
|
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
2218
3155
|
|
|
@@ -2259,11 +3196,11 @@ export class VegaTimePickerDropdown {
|
|
|
2259
3196
|
|
|
2260
3197
|
export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
2261
3198
|
/**
|
|
2262
|
-
* An event emitter notifying changes in the toggle switch.
|
|
3199
|
+
* An event emitter notifying changes in the toggle switch. @vegaVersion 1.3.0
|
|
2263
3200
|
*/
|
|
2264
3201
|
vegaChange: EventEmitter<CustomEvent<boolean>>;
|
|
2265
3202
|
/**
|
|
2266
|
-
* An event emitter notifying changes in the toggle switch. @eventSemantics namespace:native
|
|
3203
|
+
* An event emitter notifying changes in the toggle switch. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
2267
3204
|
*/
|
|
2268
3205
|
change: EventEmitter<CustomEvent<boolean>>;
|
|
2269
3206
|
|
|
@@ -2271,13 +3208,13 @@ export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
|
2271
3208
|
|
|
2272
3209
|
@ProxyCmp({
|
|
2273
3210
|
defineCustomElementFn: undefined,
|
|
2274
|
-
inputs: ['checked', 'disabled', 'label', 'size']
|
|
3211
|
+
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
|
|
2275
3212
|
})
|
|
2276
3213
|
@Component({
|
|
2277
3214
|
selector: 'vega-toggle-switch',
|
|
2278
3215
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2279
3216
|
template: '<ng-content></ng-content>',
|
|
2280
|
-
inputs: ['checked', 'disabled', 'label', 'size']
|
|
3217
|
+
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
|
|
2281
3218
|
})
|
|
2282
3219
|
export class VegaToggleSwitch {
|
|
2283
3220
|
protected el: HTMLElement;
|
|
@@ -2335,14 +3272,14 @@ export declare interface VegaVirtualScroll extends Components.VegaVirtualScroll
|
|
|
2335
3272
|
|
|
2336
3273
|
@ProxyCmp({
|
|
2337
3274
|
defineCustomElementFn: undefined,
|
|
2338
|
-
inputs: ['approxItemHeight', 'renderItem', 'source', 'sourceItemIdentifier', '
|
|
3275
|
+
inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold'],
|
|
2339
3276
|
methods: ['scrollToIndex']
|
|
2340
3277
|
})
|
|
2341
3278
|
@Component({
|
|
2342
3279
|
selector: 'vega-virtual-scroll',
|
|
2343
3280
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2344
3281
|
template: '<ng-content></ng-content>',
|
|
2345
|
-
inputs: ['approxItemHeight', 'renderItem', 'source', 'sourceItemIdentifier', '
|
|
3282
|
+
inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold']
|
|
2346
3283
|
})
|
|
2347
3284
|
export class VegaVirtualScroll {
|
|
2348
3285
|
protected el: HTMLElement;
|
|
@@ -2357,12 +3294,18 @@ export default [
|
|
|
2357
3294
|
VegaAppFooter,
|
|
2358
3295
|
VegaAppHeaderButton,
|
|
2359
3296
|
VegaBackdrop,
|
|
3297
|
+
VegaBanner,
|
|
2360
3298
|
VegaBarChart,
|
|
2361
3299
|
VegaBox,
|
|
2362
3300
|
VegaBreadcrumb,
|
|
2363
3301
|
VegaButton,
|
|
2364
3302
|
VegaButtonCircle,
|
|
3303
|
+
VegaButtonGroup,
|
|
3304
|
+
VegaButtonGroupItem,
|
|
2365
3305
|
VegaButtonLink,
|
|
3306
|
+
VegaCalendar,
|
|
3307
|
+
VegaCalendarEvent,
|
|
3308
|
+
VegaCalendarEventSlot,
|
|
2366
3309
|
VegaCard,
|
|
2367
3310
|
VegaCarousel,
|
|
2368
3311
|
VegaCheckbox,
|
|
@@ -2374,20 +3317,25 @@ export default [
|
|
|
2374
3317
|
VegaDatePicker,
|
|
2375
3318
|
VegaDatePickerCalendar,
|
|
2376
3319
|
VegaDialog,
|
|
3320
|
+
VegaDivider,
|
|
2377
3321
|
VegaDropdown,
|
|
2378
3322
|
VegaDropdownContentBox,
|
|
2379
3323
|
VegaDropdownGroup,
|
|
2380
3324
|
VegaDropdownItem,
|
|
2381
3325
|
VegaFieldError,
|
|
2382
3326
|
VegaFieldLabel,
|
|
3327
|
+
VegaFileUploader,
|
|
2383
3328
|
VegaFlex,
|
|
2384
3329
|
VegaFont,
|
|
2385
3330
|
VegaForm,
|
|
2386
3331
|
VegaGrid,
|
|
3332
|
+
VegaHint,
|
|
2387
3333
|
VegaIcon,
|
|
2388
3334
|
VegaImageUploader,
|
|
2389
3335
|
VegaInput,
|
|
2390
3336
|
VegaInputCreditCard,
|
|
3337
|
+
VegaInputNumeric,
|
|
3338
|
+
VegaInputPhoneNumber,
|
|
2391
3339
|
VegaInputRange,
|
|
2392
3340
|
VegaInputSelect,
|
|
2393
3341
|
VegaItemToggle,
|
|
@@ -2409,7 +3357,22 @@ export default [
|
|
|
2409
3357
|
VegaProgressTracker,
|
|
2410
3358
|
VegaRadio,
|
|
2411
3359
|
VegaRadioGroup,
|
|
3360
|
+
VegaRichTextContent,
|
|
3361
|
+
VegaRichTextEditor,
|
|
3362
|
+
VegaRichTextEditorToolbarButton,
|
|
3363
|
+
VegaRichTextImageEditor,
|
|
3364
|
+
VegaRichTextLinkEditor,
|
|
2412
3365
|
VegaSectionTitle,
|
|
3366
|
+
VegaSegmentControl,
|
|
3367
|
+
VegaSelectionChip,
|
|
3368
|
+
VegaSelectionChipGroup,
|
|
3369
|
+
VegaSelectionTile,
|
|
3370
|
+
VegaSelectionTileGroup,
|
|
3371
|
+
VegaSidenav,
|
|
3372
|
+
VegaSidenavGroup,
|
|
3373
|
+
VegaSidenavLink,
|
|
3374
|
+
VegaSignatureCapture,
|
|
3375
|
+
VegaSkeleton,
|
|
2413
3376
|
VegaSlotContainer,
|
|
2414
3377
|
VegaStepper,
|
|
2415
3378
|
VegaTabGroup,
|