@heartlandone/vega-angular 2.71.0 → 2.72.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 +14 -10
- package/dist/fesm2015/heartlandone-vega-angular.mjs +13 -9
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +13 -9
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/stencil-generated/components.d.ts +33 -3
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +42 -7
|
@@ -7,6 +7,7 @@ import type { VegaCalendarEventClickInfo as IVegaCalendarVegaCalendarEventClickI
|
|
|
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
9
|
import type { DatePickerMonthYearTypes as IVegaDatePickerDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
|
|
10
|
+
import type { DatePickerMonthYearTypes as IVegaDatePickerCalendarDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
|
|
10
11
|
import type { VegaDropdownSearchTriggerEventDetail as IVegaDropdownVegaDropdownSearchTriggerEventDetail } from '@heartlandone/vega/dist/types/components/vega-dropdown/types';
|
|
11
12
|
import type { VegaDropdownItemClickEvent as IVegaDropdownItemVegaDropdownItemClickEvent } from '@heartlandone/vega/dist/types/components/vega-dropdown/vega-dropdown-item/types';
|
|
12
13
|
import type { VegaFileUploaderFiles as IVegaFileUploaderVegaFileUploaderFiles } from '@heartlandone/vega/dist/types/components/vega-file-uploader/types';
|
|
@@ -218,7 +219,7 @@ export declare class VegaButtonGroup {
|
|
|
218
219
|
protected el: HTMLElement;
|
|
219
220
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
220
221
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButtonGroup, never>;
|
|
221
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonGroup, "vega-button-group", never, { "iconAlign": "iconAlign"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
222
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonGroup, "vega-button-group", never, { "disabled": "disabled"; "iconAlign": "iconAlign"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
222
223
|
}
|
|
223
224
|
export declare interface VegaButtonGroupItem extends Components.VegaButtonGroupItem {
|
|
224
225
|
}
|
|
@@ -227,7 +228,7 @@ export declare class VegaButtonGroupItem {
|
|
|
227
228
|
protected el: HTMLElement;
|
|
228
229
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
229
230
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaButtonGroupItem, never>;
|
|
230
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonGroupItem, "vega-button-group-item", never, { "dropdownProps": "dropdownProps"; "dropdownSource": "dropdownSource"; "icon": "icon"; "iconOnly": "iconOnly"; "itemKey": "itemKey"; "label": "label"; }, {}, never, ["*"]>;
|
|
231
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaButtonGroupItem, "vega-button-group-item", never, { "disabled": "disabled"; "dropdownProps": "dropdownProps"; "dropdownSource": "dropdownSource"; "icon": "icon"; "iconOnly": "iconOnly"; "itemKey": "itemKey"; "label": "label"; }, {}, never, ["*"]>;
|
|
231
232
|
}
|
|
232
233
|
export declare interface VegaButtonLink extends Components.VegaButtonLink {
|
|
233
234
|
/**
|
|
@@ -550,13 +551,42 @@ export declare class VegaDatePicker {
|
|
|
550
551
|
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, ["*"]>;
|
|
551
552
|
}
|
|
552
553
|
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {
|
|
554
|
+
/**
|
|
555
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
556
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.72.0
|
|
557
|
+
*/
|
|
558
|
+
vegaClear: EventEmitter<CustomEvent<string | string[]>>;
|
|
559
|
+
/**
|
|
560
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
561
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.72.0
|
|
562
|
+
*/
|
|
563
|
+
clear: EventEmitter<CustomEvent<string | string[]>>;
|
|
564
|
+
/**
|
|
565
|
+
* 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,
|
|
566
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.61.0
|
|
567
|
+
*/
|
|
568
|
+
vegaMonthYearChange: EventEmitter<CustomEvent<IVegaDatePickerCalendarDatePickerMonthYearTypes>>;
|
|
569
|
+
/**
|
|
570
|
+
* 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
|
|
571
|
+
*/
|
|
572
|
+
monthYearChange: EventEmitter<CustomEvent<IVegaDatePickerCalendarDatePickerMonthYearTypes>>;
|
|
573
|
+
/**
|
|
574
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
575
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.72.0
|
|
576
|
+
*/
|
|
577
|
+
vegaSelectionChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
578
|
+
/**
|
|
579
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
580
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.72.0
|
|
581
|
+
*/
|
|
582
|
+
selectionChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
553
583
|
}
|
|
554
584
|
export declare class VegaDatePickerCalendar {
|
|
555
585
|
protected z: NgZone;
|
|
556
586
|
protected el: HTMLElement;
|
|
557
587
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
558
588
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDatePickerCalendar, never>;
|
|
559
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDatePickerCalendar, "vega-date-picker-calendar", never, {}, {}, never, ["*"]>;
|
|
589
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaDatePickerCalendar, "vega-date-picker-calendar", never, { "clearButton": "clearButton"; "format": "format"; "isDateDisabled": "isDateDisabled"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "selection": "selection"; "showYearMonthDropdowns": "showYearMonthDropdowns"; "size": "size"; "staticHeight": "staticHeight"; "timezone": "timezone"; "yearMonthDropdownProps": "yearMonthDropdownProps"; }, {}, never, ["*"]>;
|
|
560
590
|
}
|
|
561
591
|
export declare interface VegaDialog extends Components.VegaDialog {
|
|
562
592
|
}
|
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.71.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.71.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.72.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.72.0",
|
|
31
31
|
"tslib": "^2.3.0",
|
|
32
32
|
"@juggle/resize-observer": "^3.4.0"
|
|
33
33
|
},
|
|
@@ -346,13 +346,13 @@ export declare interface VegaButtonGroup extends Components.VegaButtonGroup {
|
|
|
346
346
|
|
|
347
347
|
@ProxyCmp({
|
|
348
348
|
defineCustomElementFn: undefined,
|
|
349
|
-
inputs: ['iconAlign', 'size', 'variant']
|
|
349
|
+
inputs: ['disabled', 'iconAlign', 'size', 'variant']
|
|
350
350
|
})
|
|
351
351
|
@Component({
|
|
352
352
|
selector: 'vega-button-group',
|
|
353
353
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
354
354
|
template: '<ng-content></ng-content>',
|
|
355
|
-
inputs: ['iconAlign', 'size', 'variant']
|
|
355
|
+
inputs: ['disabled', 'iconAlign', 'size', 'variant']
|
|
356
356
|
})
|
|
357
357
|
export class VegaButtonGroup {
|
|
358
358
|
protected el: HTMLElement;
|
|
@@ -368,13 +368,13 @@ export declare interface VegaButtonGroupItem extends Components.VegaButtonGroupI
|
|
|
368
368
|
|
|
369
369
|
@ProxyCmp({
|
|
370
370
|
defineCustomElementFn: undefined,
|
|
371
|
-
inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
|
371
|
+
inputs: ['disabled', 'dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
|
372
372
|
})
|
|
373
373
|
@Component({
|
|
374
374
|
selector: 'vega-button-group-item',
|
|
375
375
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
376
376
|
template: '<ng-content></ng-content>',
|
|
377
|
-
inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
|
377
|
+
inputs: ['disabled', 'dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
|
378
378
|
})
|
|
379
379
|
export class VegaButtonGroupItem {
|
|
380
380
|
protected el: HTMLElement;
|
|
@@ -919,22 +919,57 @@ export class VegaDatePicker {
|
|
|
919
919
|
}
|
|
920
920
|
}
|
|
921
921
|
|
|
922
|
+
import type { DatePickerMonthYearTypes as IVegaDatePickerCalendarDatePickerMonthYearTypes } from '@heartlandone/vega/dist/types/components/vega-date-picker/types';
|
|
923
|
+
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {
|
|
924
|
+
/**
|
|
925
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
926
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.72.0
|
|
927
|
+
*/
|
|
928
|
+
vegaClear: EventEmitter<CustomEvent<string | string[]>>;
|
|
929
|
+
/**
|
|
930
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
931
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.72.0
|
|
932
|
+
*/
|
|
933
|
+
clear: EventEmitter<CustomEvent<string | string[]>>;
|
|
934
|
+
/**
|
|
935
|
+
* 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,
|
|
936
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.61.0
|
|
937
|
+
*/
|
|
938
|
+
vegaMonthYearChange: EventEmitter<CustomEvent<IVegaDatePickerCalendarDatePickerMonthYearTypes>>;
|
|
939
|
+
/**
|
|
940
|
+
* 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
|
|
941
|
+
*/
|
|
942
|
+
monthYearChange: EventEmitter<CustomEvent<IVegaDatePickerCalendarDatePickerMonthYearTypes>>;
|
|
943
|
+
/**
|
|
944
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
945
|
+
whether triggered programmatically or through user interaction. @vegaVersion 2.72.0
|
|
946
|
+
*/
|
|
947
|
+
vegaSelectionChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
948
|
+
/**
|
|
949
|
+
* An event emitter notifying the change of the value in the date picker,
|
|
950
|
+
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.72.0
|
|
951
|
+
*/
|
|
952
|
+
selectionChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
922
953
|
|
|
923
|
-
|
|
954
|
+
}
|
|
924
955
|
|
|
925
956
|
@ProxyCmp({
|
|
926
|
-
defineCustomElementFn: undefined
|
|
957
|
+
defineCustomElementFn: undefined,
|
|
958
|
+
inputs: ['clearButton', 'format', 'isDateDisabled', 'maxDate', 'minDate', 'mode', 'selection', 'showYearMonthDropdowns', 'size', 'staticHeight', 'timezone', 'yearMonthDropdownProps'],
|
|
959
|
+
methods: ['reset', 'triggerRepick']
|
|
927
960
|
})
|
|
928
961
|
@Component({
|
|
929
962
|
selector: 'vega-date-picker-calendar',
|
|
930
963
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
931
|
-
template: '<ng-content></ng-content>'
|
|
964
|
+
template: '<ng-content></ng-content>',
|
|
965
|
+
inputs: ['clearButton', 'format', 'isDateDisabled', 'maxDate', 'minDate', 'mode', 'selection', 'showYearMonthDropdowns', 'size', 'staticHeight', 'timezone', 'yearMonthDropdownProps']
|
|
932
966
|
})
|
|
933
967
|
export class VegaDatePickerCalendar {
|
|
934
968
|
protected el: HTMLElement;
|
|
935
969
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
936
970
|
c.detach();
|
|
937
971
|
this.el = r.nativeElement;
|
|
972
|
+
proxyOutputs(this, this.el, ['vegaClear', 'clear', 'vegaMonthYearChange', 'monthYearChange', 'vegaSelectionChange', 'selectionChange']);
|
|
938
973
|
}
|
|
939
974
|
}
|
|
940
975
|
|