@heartlandone/vega-angular 2.59.1 → 2.61.0
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/stencil-generated/components.mjs +15 -15
- package/dist/fesm2015/heartlandone-vega-angular.mjs +14 -14
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +14 -14
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/stencil-generated/components.d.ts +24 -6
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +30 -13
- package/src/scripts/stencil-post-build-script.js +2 -1
|
@@ -6,6 +6,7 @@ import type { VegaCalendarChangeEventType as IVegaCalendarVegaCalendarChangeEven
|
|
|
6
6
|
import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
7
7
|
import type { VegaCalendarDateClickInfo as IVegaCalendarVegaCalendarDateClickInfo } from '@heartlandone/vega/dist/types/components/vega-calendar/types';
|
|
8
8
|
import type { VegaCodeBlockValue as IVegaCodeBlockVegaCodeBlockValue } from '@heartlandone/vega/dist/types/components/vega-code-block/types';
|
|
9
|
+
import type { DatePickerMonthYearTypes as IVegaDatePickerDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
|
|
9
10
|
import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
|
|
10
11
|
import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
|
|
11
12
|
import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
|
|
@@ -262,13 +263,21 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
|
|
|
262
263
|
*/
|
|
263
264
|
eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
|
|
264
265
|
/**
|
|
265
|
-
* An event emitter notifying that a calendar date item has been double-clicked. @vegaVersion 2.17.0
|
|
266
|
+
* An event emitter notifying that a calendar date item has been double-clicked. The event will not be triggered if `enableDataClick` is set to true to prevent conflicts. @vegaVersion 2.17.0
|
|
266
267
|
*/
|
|
267
268
|
vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
268
269
|
/**
|
|
269
|
-
* An event emitter notifying that a calendar date item has been double-clicked. @eventSemantics namespace:native,@vegaVersion 2.17.0
|
|
270
|
+
* An event emitter notifying that a calendar date item has been double-clicked. The event will not be triggered if `enableDataClick` is true to prevent conflicts. @eventSemantics namespace:native,@vegaVersion 2.17.0
|
|
270
271
|
*/
|
|
271
272
|
dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
273
|
+
/**
|
|
274
|
+
* An event emitter notifying that a calendar date item has been clicked. The event will not be triggered if `enableDataClick` is false. @vegaVersion 2.61.0
|
|
275
|
+
*/
|
|
276
|
+
vegaDateClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
277
|
+
/**
|
|
278
|
+
* An event emitter notifying that a calendar date item has been clicked. The event will not be triggered if `enableDataClick` is false. @eventSemantics namespace:native,@vegaVersion 2.61.0
|
|
279
|
+
*/
|
|
280
|
+
dateClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
272
281
|
/**
|
|
273
282
|
* An event emitter notifying that a calendar more action menu item has been clicked. @vegaVersion 2.20.0
|
|
274
283
|
*/
|
|
@@ -283,7 +292,7 @@ export declare class VegaCalendar {
|
|
|
283
292
|
protected el: HTMLElement;
|
|
284
293
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
285
294
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaCalendar, never>;
|
|
286
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendar, "vega-calendar", never, { "enabledEventPreview": "enabledEventPreview"; "events": "events"; "isDateDisabled": "isDateDisabled"; "moreActionDropdownProps": "moreActionDropdownProps"; "showEventColorBar": "showEventColorBar"; "showSwitchView": "showSwitchView"; "showWeekends": "showWeekends"; "timeFormat": "timeFormat"; "viewMode": "viewMode"; }, {}, never, ["*"]>;
|
|
295
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendar, "vega-calendar", never, { "enableDateClick": "enableDateClick"; "enabledEventPreview": "enabledEventPreview"; "events": "events"; "isDateDisabled": "isDateDisabled"; "moreActionDropdownProps": "moreActionDropdownProps"; "showEventColorBar": "showEventColorBar"; "showSwitchView": "showSwitchView"; "showWeekends": "showWeekends"; "timeFormat": "timeFormat"; "viewMode": "viewMode"; }, {}, never, ["*"]>;
|
|
287
296
|
}
|
|
288
297
|
export declare interface VegaCalendarEvent extends Components.VegaCalendarEvent {
|
|
289
298
|
}
|
|
@@ -522,13 +531,22 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
|
522
531
|
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
523
532
|
*/
|
|
524
533
|
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
534
|
+
/**
|
|
535
|
+
* An event emitter notifying the month and year change when the navigation buttons are clicked or the month and year dropdowns are selected in the date picker,
|
|
536
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.61.0
|
|
537
|
+
*/
|
|
538
|
+
vegaMonthYearChange: EventEmitter<CustomEvent<IVegaDatePickerDatePickerMonthYearTypes>>;
|
|
539
|
+
/**
|
|
540
|
+
* An event emitter notifying the month and year change when the navigation buttons are clicked or the month and year dropdowns are selected in the date picker, @eventSemantics namespace:native,@vegaVersion 2.61.0
|
|
541
|
+
*/
|
|
542
|
+
monthYearChange: EventEmitter<CustomEvent<IVegaDatePickerDatePickerMonthYearTypes>>;
|
|
525
543
|
}
|
|
526
544
|
export declare class VegaDatePicker {
|
|
527
545
|
protected z: NgZone;
|
|
528
546
|
protected el: HTMLElement;
|
|
529
547
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
530
548
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDatePicker, never>;
|
|
531
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDatePicker, "vega-date-picker", never, { "allowRepick": "allowRepick"; "autoValidation": "autoValidation"; "clearButton": "clearButton"; "disabled": "disabled"; "dropdownConfig": "dropdownConfig"; "format": "format"; "isValid": "isValid"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "readOnly": "readOnly"; "required": "required"; "showClearIcon": "showClearIcon"; "showYearMonthDropdowns": "showYearMonthDropdowns"; "size": "size"; "timezone": "timezone"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
549
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDatePicker, "vega-date-picker", never, { "allowRepick": "allowRepick"; "autoValidation": "autoValidation"; "clearButton": "clearButton"; "disabled": "disabled"; "dropdownConfig": "dropdownConfig"; "format": "format"; "isDateDisabled": "isDateDisabled"; "isValid": "isValid"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "readOnly": "readOnly"; "required": "required"; "showClearIcon": "showClearIcon"; "showYearMonthDropdowns": "showYearMonthDropdowns"; "size": "size"; "timezone": "timezone"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
532
550
|
}
|
|
533
551
|
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {
|
|
534
552
|
}
|
|
@@ -1798,7 +1816,7 @@ export declare class VegaTableExpandRow {
|
|
|
1798
1816
|
protected el: HTMLElement;
|
|
1799
1817
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1800
1818
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTableExpandRow, never>;
|
|
1801
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableExpandRow, "vega-table-expand-row", never, { "rowKey": "rowKey"; }, {}, never, ["*"]>;
|
|
1819
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableExpandRow, "vega-table-expand-row", never, { "rowKey": "rowKey"; "striped": "striped"; }, {}, never, ["*"]>;
|
|
1802
1820
|
}
|
|
1803
1821
|
export declare interface VegaTableHead extends Components.VegaTableHead {
|
|
1804
1822
|
}
|
|
@@ -1858,7 +1876,7 @@ export declare class VegaTableRow {
|
|
|
1858
1876
|
protected el: HTMLElement;
|
|
1859
1877
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1860
1878
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTableRow, never>;
|
|
1861
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableRow, "vega-table-row", never, { "rowKey": "rowKey"; }, {}, never, ["*"]>;
|
|
1879
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTableRow, "vega-table-row", never, { "rowDivider": "rowDivider"; "rowKey": "rowKey"; "striped": "striped"; }, {}, never, ["*"]>;
|
|
1862
1880
|
}
|
|
1863
1881
|
export declare interface VegaText extends Components.VegaText {
|
|
1864
1882
|
}
|
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-angular",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.60.0",
|
|
5
5
|
"description": "Angular specific wrapper for @heartlandone/vega",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"peerDependencies": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@heartlandone/vega": "2.
|
|
22
|
+
"@heartlandone/vega": "2.60.0",
|
|
23
23
|
"tslib": "^2.3.0",
|
|
24
24
|
"@juggle/resize-observer": "^3.4.0"
|
|
25
25
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-angular",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.61.0",
|
|
5
5
|
"description": "Angular specific wrapper for @heartlandone/vega",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"peerDependencies": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@heartlandone/vega": "2.
|
|
30
|
+
"@heartlandone/vega": "2.61.0",
|
|
31
31
|
"tslib": "^2.3.0",
|
|
32
32
|
"@juggle/resize-observer": "^3.4.0"
|
|
33
33
|
},
|
|
@@ -437,13 +437,21 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
|
|
|
437
437
|
*/
|
|
438
438
|
eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
|
|
439
439
|
/**
|
|
440
|
-
* An event emitter notifying that a calendar date item has been double-clicked. @vegaVersion 2.17.0
|
|
440
|
+
* An event emitter notifying that a calendar date item has been double-clicked. The event will not be triggered if `enableDataClick` is set to true to prevent conflicts. @vegaVersion 2.17.0
|
|
441
441
|
*/
|
|
442
442
|
vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
443
443
|
/**
|
|
444
|
-
* An event emitter notifying that a calendar date item has been double-clicked. @eventSemantics namespace:native,@vegaVersion 2.17.0
|
|
444
|
+
* An event emitter notifying that a calendar date item has been double-clicked. The event will not be triggered if `enableDataClick` is true to prevent conflicts. @eventSemantics namespace:native,@vegaVersion 2.17.0
|
|
445
445
|
*/
|
|
446
446
|
dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
447
|
+
/**
|
|
448
|
+
* An event emitter notifying that a calendar date item has been clicked. The event will not be triggered if `enableDataClick` is false. @vegaVersion 2.61.0
|
|
449
|
+
*/
|
|
450
|
+
vegaDateClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
451
|
+
/**
|
|
452
|
+
* An event emitter notifying that a calendar date item has been clicked. The event will not be triggered if `enableDataClick` is false. @eventSemantics namespace:native,@vegaVersion 2.61.0
|
|
453
|
+
*/
|
|
454
|
+
dateClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
|
|
447
455
|
/**
|
|
448
456
|
* An event emitter notifying that a calendar more action menu item has been clicked. @vegaVersion 2.20.0
|
|
449
457
|
*/
|
|
@@ -457,20 +465,20 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
|
|
|
457
465
|
|
|
458
466
|
@ProxyCmp({
|
|
459
467
|
defineCustomElementFn: undefined,
|
|
460
|
-
inputs: ['enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
|
|
468
|
+
inputs: ['enableDateClick', 'enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
|
|
461
469
|
})
|
|
462
470
|
@Component({
|
|
463
471
|
selector: 'vega-calendar',
|
|
464
472
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
465
473
|
template: '<ng-content></ng-content>',
|
|
466
|
-
inputs: ['enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
|
|
474
|
+
inputs: ['enableDateClick', 'enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
|
|
467
475
|
})
|
|
468
476
|
export class VegaCalendar {
|
|
469
477
|
protected el: HTMLElement;
|
|
470
478
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
471
479
|
c.detach();
|
|
472
480
|
this.el = r.nativeElement;
|
|
473
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick', 'vegaMoreActionClick', 'moreActionClick']);
|
|
481
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick', 'vegaDateClick', 'dateClick', 'vegaMoreActionClick', 'moreActionClick']);
|
|
474
482
|
}
|
|
475
483
|
}
|
|
476
484
|
|
|
@@ -867,7 +875,7 @@ export class VegaCounterBadge {
|
|
|
867
875
|
}
|
|
868
876
|
}
|
|
869
877
|
|
|
870
|
-
|
|
878
|
+
import type { DatePickerMonthYearTypes as IVegaDatePickerDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
|
|
871
879
|
export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
872
880
|
/**
|
|
873
881
|
* An event emitter notifying the change of the value in the date picker,
|
|
@@ -879,26 +887,35 @@ export declare interface VegaDatePicker extends Components.VegaDatePicker {
|
|
|
879
887
|
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
880
888
|
*/
|
|
881
889
|
change: EventEmitter<CustomEvent<string | string[]>>;
|
|
890
|
+
/**
|
|
891
|
+
* An event emitter notifying the month and year change when the navigation buttons are clicked or the month and year dropdowns are selected in the date picker,
|
|
892
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.61.0
|
|
893
|
+
*/
|
|
894
|
+
vegaMonthYearChange: EventEmitter<CustomEvent<IVegaDatePickerDatePickerMonthYearTypes>>;
|
|
895
|
+
/**
|
|
896
|
+
* An event emitter notifying the month and year change when the navigation buttons are clicked or the month and year dropdowns are selected in the date picker, @eventSemantics namespace:native,@vegaVersion 2.61.0
|
|
897
|
+
*/
|
|
898
|
+
monthYearChange: EventEmitter<CustomEvent<IVegaDatePickerDatePickerMonthYearTypes>>;
|
|
882
899
|
|
|
883
900
|
}
|
|
884
901
|
|
|
885
902
|
@ProxyCmp({
|
|
886
903
|
defineCustomElementFn: undefined,
|
|
887
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
|
|
904
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
|
|
888
905
|
methods: ['doClose', 'doOpen']
|
|
889
906
|
})
|
|
890
907
|
@Component({
|
|
891
908
|
selector: 'vega-date-picker',
|
|
892
909
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
893
910
|
template: '<ng-content></ng-content>',
|
|
894
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
|
|
911
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
|
|
895
912
|
})
|
|
896
913
|
export class VegaDatePicker {
|
|
897
914
|
protected el: HTMLElement;
|
|
898
915
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
899
916
|
c.detach();
|
|
900
917
|
this.el = r.nativeElement;
|
|
901
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
918
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaMonthYearChange', 'monthYearChange']);
|
|
902
919
|
}
|
|
903
920
|
}
|
|
904
921
|
|
|
@@ -3111,13 +3128,13 @@ export declare interface VegaTableExpandRow extends Components.VegaTableExpandRo
|
|
|
3111
3128
|
|
|
3112
3129
|
@ProxyCmp({
|
|
3113
3130
|
defineCustomElementFn: undefined,
|
|
3114
|
-
inputs: ['rowKey']
|
|
3131
|
+
inputs: ['rowKey', 'striped']
|
|
3115
3132
|
})
|
|
3116
3133
|
@Component({
|
|
3117
3134
|
selector: 'vega-table-expand-row',
|
|
3118
3135
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3119
3136
|
template: '<ng-content></ng-content>',
|
|
3120
|
-
inputs: ['rowKey']
|
|
3137
|
+
inputs: ['rowKey', 'striped']
|
|
3121
3138
|
})
|
|
3122
3139
|
export class VegaTableExpandRow {
|
|
3123
3140
|
protected el: HTMLElement;
|
|
@@ -3223,13 +3240,13 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
|
|
|
3223
3240
|
|
|
3224
3241
|
@ProxyCmp({
|
|
3225
3242
|
defineCustomElementFn: undefined,
|
|
3226
|
-
inputs: ['rowKey']
|
|
3243
|
+
inputs: ['rowDivider', 'rowKey', 'striped']
|
|
3227
3244
|
})
|
|
3228
3245
|
@Component({
|
|
3229
3246
|
selector: 'vega-table-row',
|
|
3230
3247
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3231
3248
|
template: '<ng-content></ng-content>',
|
|
3232
|
-
inputs: ['rowKey']
|
|
3249
|
+
inputs: ['rowDivider', 'rowKey', 'striped']
|
|
3233
3250
|
})
|
|
3234
3251
|
export class VegaTableRow {
|
|
3235
3252
|
protected el: HTMLElement;
|
|
@@ -58,7 +58,8 @@ function resolveEventPayloadImportPath(componentsContent) {
|
|
|
58
58
|
['VegaRichTextImageEditorChangeDetail', 'vega-rich-text-editor/vega-rich-text-image-editor/types'],
|
|
59
59
|
['VegaRichTextEditorImage', 'vega-rich-text-editor/interface'],
|
|
60
60
|
['VegaRTEContent', 'vega-rich-text-editor/dto/content-state'],
|
|
61
|
-
['VegaCodeBlockValue', 'vega-code-block/types']
|
|
61
|
+
['VegaCodeBlockValue', 'vega-code-block/types'],
|
|
62
|
+
['DatePickerMonthYearTypes', 'vega-date-picker/types']
|
|
62
63
|
]);
|
|
63
64
|
|
|
64
65
|
return componentsContent.replace(
|