@heartlandone/vega-angular 2.88.0 → 2.89.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/README.md +2 -2
- package/dist/README.md +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +39 -39
- package/dist/fesm2015/globalpayments-vega-angular-testing.mjs.map +1 -1
- package/dist/fesm2015/globalpayments-vega-angular.mjs +38 -38
- package/dist/fesm2015/globalpayments-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/globalpayments-vega-angular-testing.mjs.map +1 -1
- package/dist/fesm2020/globalpayments-vega-angular.mjs +38 -38
- package/dist/fesm2020/globalpayments-vega-angular.mjs.map +1 -1
- package/dist/lib/stencil-generated/components.d.ts +47 -12
- package/dist/package.json +5 -4
- package/dist/testing/package.json +1 -1
- package/ng-package.json +1 -1
- package/package.json +4 -3
- package/src/lib/components-module.ts +2 -2
- package/src/lib/stencil-generated/angular-component-lib/utils.ts +1 -1
- package/src/lib/stencil-generated/components.ts +99 -64
- package/src/lib/stencil-generated/value-accessor.ts +1 -1
- package/src/scripts/stencil-post-build-script.js +2 -2
- package/testing/index.ts +2 -2
- package/testing/ng-package.json +1 -1
|
@@ -387,6 +387,22 @@ export declare interface VegaCheckbox extends Components.VegaCheckbox {
|
|
|
387
387
|
whether triggered programmatically or through user interaction. @vegaVersion 1.0.10
|
|
388
388
|
*/
|
|
389
389
|
vegaChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
390
|
+
/**
|
|
391
|
+
* An event emitter notifying changes in the value of the checkbox
|
|
392
|
+
triggered exclusively by user interaction (mouse click or keyboard activation).
|
|
393
|
+
|
|
394
|
+
Unlike `vegaChange`, this event does NOT fire when the `checked` or `value`
|
|
395
|
+
prop is reassigned programmatically. Use this event when you want to react
|
|
396
|
+
only to real user input (e.g., analytics, derived "select all" state). @remarks Calling `event.preventDefault()` is a no-op — it does not roll
|
|
397
|
+
back `checked`/`value` nor suppress the paired `vegaChange` event.
|
|
398
|
+
`cancelable: true` is retained only for parity with `vegaChange`.,@see {module :vega-checkbox-user-change},@see {module :vega-checkbox-user-change-keyboard},@see {module :vega-checkbox-user-change-keyboard-enter},@see {module :vega-checkbox-user-change-programmatic},@see {module :vega-checkbox-user-change-containment},@vegaVersion 2.89.0
|
|
399
|
+
*/
|
|
400
|
+
vegaUserChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
401
|
+
/**
|
|
402
|
+
* An event emitter notifying changes in the value of the checkbox
|
|
403
|
+
triggered exclusively by user interaction (mouse click or keyboard activation). @eventSemantics namespace:native,@vegaVersion 2.89.0
|
|
404
|
+
*/
|
|
405
|
+
userChange: EventEmitter<CustomEvent<string | boolean>>;
|
|
390
406
|
/**
|
|
391
407
|
* An event emitter notifying changes in the value of the checkbox,
|
|
392
408
|
whether triggered programmatically or through user interaction. @eventSemantics namespace:native,@vegaVersion 2.0.0
|
|
@@ -408,6 +424,25 @@ export declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup
|
|
|
408
424
|
user interaction. @vegaVersion 1.0.10
|
|
409
425
|
*/
|
|
410
426
|
vegaChange: EventEmitter<CustomEvent<string[]>>;
|
|
427
|
+
/**
|
|
428
|
+
* An event emitter notifying changes in the value of the checkbox group
|
|
429
|
+
triggered exclusively by user interaction (mouse click or keyboard
|
|
430
|
+
activation) on a nested checkbox.
|
|
431
|
+
|
|
432
|
+
Unlike `vegaChange`, this event does NOT fire when the `value` prop
|
|
433
|
+
is reassigned programmatically. Use this event when you want to
|
|
434
|
+
react only to real user input (e.g., analytics, derived
|
|
435
|
+
"select all" state). @remarks Calling `event.preventDefault()` is a no-op — it does not roll
|
|
436
|
+
back `value` nor suppress the paired `vegaChange` event.
|
|
437
|
+
`cancelable: true` is retained only for parity with `vegaChange`.,@see {module :vega-checkbox-group-user-change},@see {module :vega-checkbox-group-user-change-programmatic},@see {module :vega-checkbox-group-user-change-no-double},@vegaVersion 2.89.0
|
|
438
|
+
*/
|
|
439
|
+
vegaUserChange: EventEmitter<CustomEvent<string[]>>;
|
|
440
|
+
/**
|
|
441
|
+
* An event emitter notifying changes in the value
|
|
442
|
+
of any nested checkbox within the checkbox group,
|
|
443
|
+
triggered exclusively by user interaction (mouse click or keyboard activation). @eventSemantics namespace:native,@vegaVersion 2.89.0
|
|
444
|
+
*/
|
|
445
|
+
userChange: EventEmitter<CustomEvent<string[]>>;
|
|
411
446
|
/**
|
|
412
447
|
* An event emitter notifying changes in the value
|
|
413
448
|
of any nested checkbox within the checkbox group,
|
|
@@ -494,7 +529,7 @@ export declare class VegaColorPicker {
|
|
|
494
529
|
protected el: HTMLElement;
|
|
495
530
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
496
531
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaColorPicker, never>;
|
|
497
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaColorPicker, "vega-color-picker", never, { "autoValidation": "autoValidation"; "colors": "colors"; "columns": "columns"; "disabled": "disabled"; "hint": "hint"; "isInline": "isInline"; "isValid": "isValid"; "label": "label"; "required": "required"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
532
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaColorPicker, "vega-color-picker", never, { "autoValidation": "autoValidation"; "colors": "colors"; "columns": "columns"; "disabled": "disabled"; "hint": "hint"; "isInline": "isInline"; "isValid": "isValid"; "label": "label"; "optional": "optional"; "required": "required"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
498
533
|
}
|
|
499
534
|
export declare interface VegaColorSwatch extends Components.VegaColorSwatch {
|
|
500
535
|
/**
|
|
@@ -575,7 +610,7 @@ export declare class VegaComboBox {
|
|
|
575
610
|
protected el: HTMLElement;
|
|
576
611
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
577
612
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaComboBox, never>;
|
|
578
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaComboBox, "vega-combo-box", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "optional": "optional"; "placeholder": "placeholder"; "required": "required"; "size": "size"; "source": "source"; "useDefaultFilter": "useDefaultFilter"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
|
|
613
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaComboBox, "vega-combo-box", never, { "autoValidation": "autoValidation"; "containerMaxHeight": "containerMaxHeight"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "optional": "optional"; "placeholder": "placeholder"; "required": "required"; "size": "size"; "source": "source"; "useDefaultFilter": "useDefaultFilter"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
|
|
579
614
|
}
|
|
580
615
|
export declare interface VegaCounterBadge extends Components.VegaCounterBadge {
|
|
581
616
|
}
|
|
@@ -612,7 +647,7 @@ export declare class VegaDatePicker {
|
|
|
612
647
|
protected el: HTMLElement;
|
|
613
648
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
614
649
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaDatePicker, never>;
|
|
615
|
-
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, ["*"]>;
|
|
650
|
+
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"; "optional": "optional"; "placeholder": "placeholder"; "readOnly": "readOnly"; "required": "required"; "showClearIcon": "showClearIcon"; "showYearMonthDropdowns": "showYearMonthDropdowns"; "size": "size"; "timezone": "timezone"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
616
651
|
}
|
|
617
652
|
export declare interface VegaDatePickerCalendar extends Components.VegaDatePickerCalendar {
|
|
618
653
|
/**
|
|
@@ -1005,7 +1040,7 @@ export declare class VegaImageUploader {
|
|
|
1005
1040
|
protected el: HTMLElement;
|
|
1006
1041
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1007
1042
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaImageUploader, never>;
|
|
1008
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaImageUploader, "vega-image-uploader", never, { "accept": "accept"; "actionSubTitle": "actionSubTitle"; "actionTitle": "actionTitle"; "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "required": "required"; "showPreviewButton": "showPreviewButton"; "showRemoveButton": "showRemoveButton"; "showReplaceButton": "showReplaceButton"; "status": "status"; "validationRules": "validationRules"; "value": "value"; "width": "width"; }, {}, never, ["*"]>;
|
|
1043
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaImageUploader, "vega-image-uploader", never, { "accept": "accept"; "actionSubTitle": "actionSubTitle"; "actionTitle": "actionTitle"; "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "optional": "optional"; "required": "required"; "showPreviewButton": "showPreviewButton"; "showRemoveButton": "showRemoveButton"; "showReplaceButton": "showReplaceButton"; "status": "status"; "validationRules": "validationRules"; "value": "value"; "width": "width"; }, {}, never, ["*"]>;
|
|
1009
1044
|
}
|
|
1010
1045
|
export declare interface VegaInput extends Components.VegaInput {
|
|
1011
1046
|
/**
|
|
@@ -1192,7 +1227,7 @@ export declare class VegaInputNumeric {
|
|
|
1192
1227
|
protected el: HTMLElement;
|
|
1193
1228
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1194
1229
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputNumeric, never>;
|
|
1195
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputNumeric, "vega-input-numeric", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "integerOnly": "integerOnly"; "isValid": "isValid"; "label": "label"; "majorIncrement": "majorIncrement"; "max": "max"; "min": "min"; "minorIncrement": "minorIncrement"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "prefixText": "prefixText"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "suffixText": "suffixText"; "thousandComma": "thousandComma"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1230
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputNumeric, "vega-input-numeric", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "integerOnly": "integerOnly"; "isValid": "isValid"; "label": "label"; "majorIncrement": "majorIncrement"; "max": "max"; "min": "min"; "minorIncrement": "minorIncrement"; "optional": "optional"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "prefixText": "prefixText"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "suffixText": "suffixText"; "thousandComma": "thousandComma"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1196
1231
|
}
|
|
1197
1232
|
export declare interface VegaInputPasscode extends Components.VegaInputPasscode {
|
|
1198
1233
|
/**
|
|
@@ -1276,7 +1311,7 @@ export declare class VegaInputRange {
|
|
|
1276
1311
|
protected el: HTMLElement;
|
|
1277
1312
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1278
1313
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputRange, never>;
|
|
1279
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputRange, "vega-input-range", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "max": "max"; "min": "min"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "stack": "stack"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1314
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputRange, "vega-input-range", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "max": "max"; "min": "min"; "optional": "optional"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "stack": "stack"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1280
1315
|
}
|
|
1281
1316
|
export declare interface VegaInputSelect extends Components.VegaInputSelect {
|
|
1282
1317
|
/**
|
|
@@ -1332,7 +1367,7 @@ export declare class VegaInputSelect {
|
|
|
1332
1367
|
protected el: HTMLElement;
|
|
1333
1368
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1334
1369
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaInputSelect, never>;
|
|
1335
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputSelect, "vega-input-select", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "dropdownItemTooltipProps": "dropdownItemTooltipProps"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "selectType": "selectType"; "selectedLabel": "selectedLabel"; "selectedLabelTooltipProps": "selectedLabelTooltipProps"; "size": "size"; "source": "source"; "sourceLazyLoadCallback": "sourceLazyLoadCallback"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
|
|
1370
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaInputSelect, "vega-input-select", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "dropdownItemTooltipProps": "dropdownItemTooltipProps"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "labelSuffixButtonConfig": "labelSuffixButtonConfig"; "optional": "optional"; "placeholder": "placeholder"; "prefixIcon": "prefixIcon"; "required": "required"; "selectType": "selectType"; "selectedLabel": "selectedLabel"; "selectedLabelTooltipProps": "selectedLabelTooltipProps"; "size": "size"; "source": "source"; "sourceLazyLoadCallback": "sourceLazyLoadCallback"; "validationRules": "validationRules"; "value": "value"; "vegaDropdownProps": "vegaDropdownProps"; }, {}, never, ["*"]>;
|
|
1336
1371
|
}
|
|
1337
1372
|
export declare interface VegaItemToggle extends Components.VegaItemToggle {
|
|
1338
1373
|
/**
|
|
@@ -1925,7 +1960,7 @@ export declare class VegaSelectionTileGroup {
|
|
|
1925
1960
|
protected el: HTMLElement;
|
|
1926
1961
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1927
1962
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSelectionTileGroup, never>;
|
|
1928
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSelectionTileGroup, "vega-selection-tile-group", never, { "disabled": "disabled"; "distributeEvenly": "distributeEvenly"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "layout": "layout"; "required": "required"; "selectType": "selectType"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1963
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSelectionTileGroup, "vega-selection-tile-group", never, { "disabled": "disabled"; "distributeEvenly": "distributeEvenly"; "hint": "hint"; "isValid": "isValid"; "label": "label"; "layout": "layout"; "optional": "optional"; "required": "required"; "selectType": "selectType"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1929
1964
|
}
|
|
1930
1965
|
export declare interface VegaSidenav extends Components.VegaSidenav {
|
|
1931
1966
|
/**
|
|
@@ -1985,7 +2020,7 @@ export declare class VegaSignatureCapture {
|
|
|
1985
2020
|
protected el: HTMLElement;
|
|
1986
2021
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1987
2022
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaSignatureCapture, never>;
|
|
1988
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSignatureCapture, "vega-signature-capture", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "placeholder": "placeholder"; "placeholderIcon": "placeholderIcon"; "required": "required"; "showClearBtn": "showClearBtn"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
2023
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaSignatureCapture, "vega-signature-capture", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "optional": "optional"; "placeholder": "placeholder"; "placeholderIcon": "placeholderIcon"; "required": "required"; "showClearBtn": "showClearBtn"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
1989
2024
|
}
|
|
1990
2025
|
export declare interface VegaSkeleton extends Components.VegaSkeleton {
|
|
1991
2026
|
}
|
|
@@ -2252,7 +2287,7 @@ export declare class VegaText {
|
|
|
2252
2287
|
protected el: HTMLElement;
|
|
2253
2288
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2254
2289
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaText, never>;
|
|
2255
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaText, "vega-text", never, { "overflow": "overflow"; "tooltip": "tooltip"; }, {}, never, ["*"]>;
|
|
2290
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaText, "vega-text", never, { "overflow": "overflow"; "text": "text"; "tooltip": "tooltip"; }, {}, never, ["*"]>;
|
|
2256
2291
|
}
|
|
2257
2292
|
export declare interface VegaTextarea extends Components.VegaTextarea {
|
|
2258
2293
|
/**
|
|
@@ -2314,7 +2349,7 @@ export declare class VegaTimePicker {
|
|
|
2314
2349
|
protected el: HTMLElement;
|
|
2315
2350
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2316
2351
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTimePicker, never>;
|
|
2317
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTimePicker, "vega-time-picker", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "increments": "increments"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "placeholder": "placeholder"; "positionRelativeTo": "positionRelativeTo"; "readOnly": "readOnly"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "timeFormat": "timeFormat"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
2352
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTimePicker, "vega-time-picker", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "increments": "increments"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "optional": "optional"; "placeholder": "placeholder"; "positionRelativeTo": "positionRelativeTo"; "readOnly": "readOnly"; "required": "required"; "showClearIcon": "showClearIcon"; "size": "size"; "timeFormat": "timeFormat"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
2318
2353
|
}
|
|
2319
2354
|
export declare interface VegaTimePickerDropdown extends Components.VegaTimePickerDropdown {
|
|
2320
2355
|
}
|
|
@@ -2340,7 +2375,7 @@ export declare class VegaToggleSwitch {
|
|
|
2340
2375
|
protected el: HTMLElement;
|
|
2341
2376
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2342
2377
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaToggleSwitch, never>;
|
|
2343
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VegaToggleSwitch, "vega-toggle-switch", never, { "autoValidation": "autoValidation"; "checked": "checked"; "disabled": "disabled"; "isValid": "isValid"; "label": "label"; "required": "required"; "size": "size"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
2378
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaToggleSwitch, "vega-toggle-switch", never, { "autoValidation": "autoValidation"; "checked": "checked"; "disabled": "disabled"; "isValid": "isValid"; "label": "label"; "optional": "optional"; "required": "required"; "size": "size"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
|
|
2344
2379
|
}
|
|
2345
2380
|
export declare interface VegaTooltip extends Components.VegaTooltip {
|
|
2346
2381
|
}
|
package/dist/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@
|
|
2
|
+
"name": "@heartlandone/vega-angular",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "2.
|
|
5
|
-
"description": "Angular specific wrapper for @
|
|
4
|
+
"version": "2.88.0",
|
|
5
|
+
"description": "Angular specific wrapper for @heartlandone/vega",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"peerDependencies": {
|
|
8
8
|
"@angular/common": ">=12.0.0",
|
|
9
9
|
"@angular/core": ">=12.0.0"
|
|
10
10
|
},
|
|
11
|
+
"main": "./dist/fesm2015/globalpayments-vega-angular.mjs",
|
|
11
12
|
"module": "fesm2015/globalpayments-vega-angular.mjs",
|
|
12
13
|
"es2020": "fesm2020/globalpayments-vega-angular.mjs",
|
|
13
14
|
"esm2020": "esm2020/globalpayments-vega-angular.mjs",
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
"url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@
|
|
23
|
+
"@heartlandone/vega": "2.88.0",
|
|
23
24
|
"tslib": "^2.3.0",
|
|
24
25
|
"@juggle/resize-observer": "^3.4.0"
|
|
25
26
|
},
|
package/ng-package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-angular",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "2.
|
|
5
|
-
"description": "Angular specific wrapper for @
|
|
4
|
+
"version": "2.89.0",
|
|
5
|
+
"description": "Angular specific wrapper for @heartlandone/vega",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"peerDependencies": {
|
|
8
8
|
"@angular/common": ">=12.0.0",
|
|
9
9
|
"@angular/core": ">=12.0.0"
|
|
10
10
|
},
|
|
11
|
+
"main": "./dist/fesm2015/globalpayments-vega-angular.mjs",
|
|
11
12
|
"module": "./dist/fesm2015/globalpayments-vega-angular.mjs",
|
|
12
13
|
"es2020": "./dist/fesm2020/globalpayments-vega-angular.mjs",
|
|
13
14
|
"esm2020": "./dist/esm2020/globalpayments-vega-angular.mjs",
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"@heartlandone/vega": "2.
|
|
31
|
+
"@heartlandone/vega": "2.89.0",
|
|
31
32
|
"tslib": "^2.3.0",
|
|
32
33
|
"@juggle/resize-observer": "^3.4.0"
|
|
33
34
|
},
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
|
-
import { defineCustomElements } from '@
|
|
2
|
+
import { defineCustomElements } from '@heartlandone/vega/loader';
|
|
3
3
|
import VegaComponents from './stencil-generated/components';
|
|
4
4
|
import { TextValueAccessor } from './stencil-generated/text-value-accessor';
|
|
5
5
|
import { ValueAccessor } from './stencil-generated/value-accessor';
|
|
6
6
|
import { ResizeObserver as VegaResizeObserver } from '@juggle/resize-observer';
|
|
7
|
-
import { FeatureFlag, VegaEnvManager, FrameworkEnum } from '@
|
|
7
|
+
import { FeatureFlag, VegaEnvManager, FrameworkEnum } from '@heartlandone/vega';
|
|
8
8
|
@NgModule({
|
|
9
9
|
declarations: [...VegaComponents, TextValueAccessor, ValueAccessor],
|
|
10
10
|
imports: [],
|