@heartlandone/vega-angular 2.0.0-temp-test-0.1 → 2.0.0-temp-test-0.2
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 +39 -39
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +3 -4
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +5 -8
- package/dist/fesm2015/heartlandone-vega-angular.mjs +45 -48
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +45 -48
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/stencil-generated/components.d.ts +2 -296
- package/dist/lib/stencil-generated/value-accessor.d.ts +1 -1
- package/dist/package.json +1 -1
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +40 -334
- package/src/lib/stencil-generated/text-value-accessor.ts +1 -2
- package/src/lib/stencil-generated/value-accessor.ts +4 -7
- package/src/scripts/stencil-post-build-script.js +10 -37
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Directive, HostListener, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import { VegaEventManager, VegaEnvManager, FrameworkEnum, FeatureFlag } from '@heartlandone/vega';
|
|
5
4
|
import { __decorate } from 'tslib';
|
|
6
5
|
import { fromEvent } from 'rxjs';
|
|
7
6
|
import { defineCustomElements } from '@heartlandone/vega/loader';
|
|
8
7
|
import { ResizeObserver } from '@juggle/resize-observer';
|
|
8
|
+
import { VegaEnvManager, FrameworkEnum, FeatureFlag } from '@heartlandone/vega';
|
|
9
9
|
|
|
10
10
|
class ValueAccessor {
|
|
11
11
|
constructor(el) {
|
|
@@ -20,12 +20,10 @@ class ValueAccessor {
|
|
|
20
20
|
writeValue(value) {
|
|
21
21
|
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
22
22
|
}
|
|
23
|
-
handleChangeEvent(value
|
|
24
|
-
if (
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
this.onChange(value);
|
|
28
|
-
}
|
|
23
|
+
handleChangeEvent(value) {
|
|
24
|
+
if (value !== this.lastValue) {
|
|
25
|
+
this.lastValue = value;
|
|
26
|
+
this.onChange(value);
|
|
29
27
|
}
|
|
30
28
|
}
|
|
31
29
|
_handleBlurEvent() {
|
|
@@ -57,7 +55,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
57
55
|
}
|
|
58
56
|
}
|
|
59
57
|
TextValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
-
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: TextValueAccessor, selector: "vega-checkbox-group, vega-checkbox, vega-color-picker, vega-combo-box, vega-date-picker, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-select, vega-radio-group, vega-stepper, vega-textarea, vega-time-picker", host: { listeners: { "vegaChange": "handleChangeEvent($event.
|
|
58
|
+
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: TextValueAccessor, selector: "vega-checkbox-group, vega-checkbox, vega-color-picker, vega-combo-box, vega-date-picker, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-select, vega-radio-group, vega-stepper, vega-textarea, vega-time-picker", host: { listeners: { "vegaChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
61
59
|
{
|
|
62
60
|
provide: NG_VALUE_ACCESSOR,
|
|
63
61
|
useExisting: TextValueAccessor,
|
|
@@ -70,8 +68,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
70
68
|
/* tslint:disable-next-line:directive-selector */
|
|
71
69
|
selector: 'vega-checkbox-group, vega-checkbox, vega-color-picker, vega-combo-box, vega-date-picker, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-select, vega-radio-group, vega-stepper, vega-textarea, vega-time-picker',
|
|
72
70
|
host: {
|
|
73
|
-
'(vegaChange)':
|
|
74
|
-
'(change)': "handleChangeEvent($event.currentTarget.value, 'native')"
|
|
71
|
+
'(vegaChange)': 'handleChangeEvent($event.target.value)'
|
|
75
72
|
},
|
|
76
73
|
providers: [
|
|
77
74
|
{
|
|
@@ -174,7 +171,7 @@ let VegaAccordion = class VegaAccordion {
|
|
|
174
171
|
this.z = z;
|
|
175
172
|
c.detach();
|
|
176
173
|
this.el = r.nativeElement;
|
|
177
|
-
proxyOutputs(this, this.el, ['vegaExpand'
|
|
174
|
+
proxyOutputs(this, this.el, ['vegaExpand']);
|
|
178
175
|
}
|
|
179
176
|
};
|
|
180
177
|
VegaAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -223,7 +220,7 @@ let VegaAppHeaderButton = class VegaAppHeaderButton {
|
|
|
223
220
|
this.z = z;
|
|
224
221
|
c.detach();
|
|
225
222
|
this.el = r.nativeElement;
|
|
226
|
-
proxyOutputs(this, this.el, ['vegaClick', '
|
|
223
|
+
proxyOutputs(this, this.el, ['vegaClick', 'vegaDropdownClick']);
|
|
227
224
|
}
|
|
228
225
|
};
|
|
229
226
|
VegaAppHeaderButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaAppHeaderButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -345,7 +342,7 @@ let VegaBreadcrumb = class VegaBreadcrumb {
|
|
|
345
342
|
this.z = z;
|
|
346
343
|
c.detach();
|
|
347
344
|
this.el = r.nativeElement;
|
|
348
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
345
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
349
346
|
}
|
|
350
347
|
};
|
|
351
348
|
VegaBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -370,7 +367,7 @@ let VegaButton = class VegaButton {
|
|
|
370
367
|
this.z = z;
|
|
371
368
|
c.detach();
|
|
372
369
|
this.el = r.nativeElement;
|
|
373
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
370
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
374
371
|
}
|
|
375
372
|
};
|
|
376
373
|
VegaButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -395,7 +392,7 @@ let VegaButtonCircle = class VegaButtonCircle {
|
|
|
395
392
|
this.z = z;
|
|
396
393
|
c.detach();
|
|
397
394
|
this.el = r.nativeElement;
|
|
398
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
395
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
399
396
|
}
|
|
400
397
|
};
|
|
401
398
|
VegaButtonCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaButtonCircle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -420,7 +417,7 @@ let VegaButtonLink = class VegaButtonLink {
|
|
|
420
417
|
this.z = z;
|
|
421
418
|
c.detach();
|
|
422
419
|
this.el = r.nativeElement;
|
|
423
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
420
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
424
421
|
}
|
|
425
422
|
};
|
|
426
423
|
VegaButtonLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaButtonLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -469,7 +466,7 @@ let VegaCarousel = class VegaCarousel {
|
|
|
469
466
|
this.z = z;
|
|
470
467
|
c.detach();
|
|
471
468
|
this.el = r.nativeElement;
|
|
472
|
-
proxyOutputs(this, this.el, ['vegaPageUpdate'
|
|
469
|
+
proxyOutputs(this, this.el, ['vegaPageUpdate']);
|
|
473
470
|
}
|
|
474
471
|
};
|
|
475
472
|
VegaCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -495,7 +492,7 @@ let VegaCheckbox = class VegaCheckbox {
|
|
|
495
492
|
this.z = z;
|
|
496
493
|
c.detach();
|
|
497
494
|
this.el = r.nativeElement;
|
|
498
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange'
|
|
495
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange']);
|
|
499
496
|
}
|
|
500
497
|
};
|
|
501
498
|
VegaCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -521,7 +518,7 @@ let VegaCheckboxGroup = class VegaCheckboxGroup {
|
|
|
521
518
|
this.z = z;
|
|
522
519
|
c.detach();
|
|
523
520
|
this.el = r.nativeElement;
|
|
524
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
521
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
525
522
|
}
|
|
526
523
|
};
|
|
527
524
|
VegaCheckboxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -547,7 +544,7 @@ let VegaChip = class VegaChip {
|
|
|
547
544
|
this.z = z;
|
|
548
545
|
c.detach();
|
|
549
546
|
this.el = r.nativeElement;
|
|
550
|
-
proxyOutputs(this, this.el, ['vegaClose', '
|
|
547
|
+
proxyOutputs(this, this.el, ['vegaClose', 'vegaClick']);
|
|
551
548
|
}
|
|
552
549
|
};
|
|
553
550
|
VegaChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -572,7 +569,7 @@ let VegaColorPicker = class VegaColorPicker {
|
|
|
572
569
|
this.z = z;
|
|
573
570
|
c.detach();
|
|
574
571
|
this.el = r.nativeElement;
|
|
575
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
572
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
576
573
|
}
|
|
577
574
|
};
|
|
578
575
|
VegaColorPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaColorPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -598,7 +595,7 @@ let VegaComboBox = class VegaComboBox {
|
|
|
598
595
|
this.z = z;
|
|
599
596
|
c.detach();
|
|
600
597
|
this.el = r.nativeElement;
|
|
601
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
598
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaCreate', 'vegaSearch']);
|
|
602
599
|
}
|
|
603
600
|
};
|
|
604
601
|
VegaComboBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComboBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -648,7 +645,7 @@ let VegaDatePicker = class VegaDatePicker {
|
|
|
648
645
|
this.z = z;
|
|
649
646
|
c.detach();
|
|
650
647
|
this.el = r.nativeElement;
|
|
651
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
648
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
652
649
|
}
|
|
653
650
|
};
|
|
654
651
|
VegaDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -698,7 +695,7 @@ let VegaDropdown = class VegaDropdown {
|
|
|
698
695
|
this.z = z;
|
|
699
696
|
c.detach();
|
|
700
697
|
this.el = r.nativeElement;
|
|
701
|
-
proxyOutputs(this, this.el, ['vegaClick', '
|
|
698
|
+
proxyOutputs(this, this.el, ['vegaClick', 'vegaDropdownClick', 'vegaShow', 'vegaHide', 'vegaCreate', 'vegaSearch']);
|
|
702
699
|
}
|
|
703
700
|
};
|
|
704
701
|
VegaDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -748,7 +745,7 @@ let VegaDropdownItem = class VegaDropdownItem {
|
|
|
748
745
|
this.z = z;
|
|
749
746
|
c.detach();
|
|
750
747
|
this.el = r.nativeElement;
|
|
751
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
748
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
752
749
|
}
|
|
753
750
|
};
|
|
754
751
|
VegaDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -894,7 +891,7 @@ let VegaForm = class VegaForm {
|
|
|
894
891
|
this.z = z;
|
|
895
892
|
c.detach();
|
|
896
893
|
this.el = r.nativeElement;
|
|
897
|
-
proxyOutputs(this, this.el, ['vegaValidate', '
|
|
894
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaFormSubmit', 'vegaFormReset']);
|
|
898
895
|
}
|
|
899
896
|
};
|
|
900
897
|
VegaForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -990,7 +987,7 @@ let VegaImageUploader = class VegaImageUploader {
|
|
|
990
987
|
this.z = z;
|
|
991
988
|
c.detach();
|
|
992
989
|
this.el = r.nativeElement;
|
|
993
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
990
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaRemove', 'vegaCancel', 'vegaValidate']);
|
|
994
991
|
}
|
|
995
992
|
};
|
|
996
993
|
VegaImageUploader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaImageUploader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1016,7 +1013,7 @@ let VegaInput = class VegaInput {
|
|
|
1016
1013
|
this.z = z;
|
|
1017
1014
|
c.detach();
|
|
1018
1015
|
this.el = r.nativeElement;
|
|
1019
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1016
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur', 'vegaFocus']);
|
|
1020
1017
|
}
|
|
1021
1018
|
};
|
|
1022
1019
|
VegaInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1042,7 +1039,7 @@ let VegaInputCreditCard = class VegaInputCreditCard {
|
|
|
1042
1039
|
this.z = z;
|
|
1043
1040
|
c.detach();
|
|
1044
1041
|
this.el = r.nativeElement;
|
|
1045
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', '
|
|
1042
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'vegaBlur', 'vegaFocus']);
|
|
1046
1043
|
}
|
|
1047
1044
|
};
|
|
1048
1045
|
VegaInputCreditCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaInputCreditCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1068,7 +1065,7 @@ let VegaInputSelect = class VegaInputSelect {
|
|
|
1068
1065
|
this.z = z;
|
|
1069
1066
|
c.detach();
|
|
1070
1067
|
this.el = r.nativeElement;
|
|
1071
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1068
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaSearch']);
|
|
1072
1069
|
}
|
|
1073
1070
|
};
|
|
1074
1071
|
VegaInputSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaInputSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1094,7 +1091,7 @@ let VegaItemToggle = class VegaItemToggle {
|
|
|
1094
1091
|
this.z = z;
|
|
1095
1092
|
c.detach();
|
|
1096
1093
|
this.el = r.nativeElement;
|
|
1097
|
-
proxyOutputs(this, this.el, ['vegaToggleStatus'
|
|
1094
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus']);
|
|
1098
1095
|
}
|
|
1099
1096
|
};
|
|
1100
1097
|
VegaItemToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaItemToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1119,7 +1116,7 @@ let VegaLeftNav = class VegaLeftNav {
|
|
|
1119
1116
|
this.z = z;
|
|
1120
1117
|
c.detach();
|
|
1121
1118
|
this.el = r.nativeElement;
|
|
1122
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate'
|
|
1119
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1123
1120
|
}
|
|
1124
1121
|
};
|
|
1125
1122
|
VegaLeftNav.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1145,7 +1142,7 @@ let VegaLeftNavGroup = class VegaLeftNavGroup {
|
|
|
1145
1142
|
this.z = z;
|
|
1146
1143
|
c.detach();
|
|
1147
1144
|
this.el = r.nativeElement;
|
|
1148
|
-
proxyOutputs(this, this.el, ['vegaGroupClick'
|
|
1145
|
+
proxyOutputs(this, this.el, ['vegaGroupClick']);
|
|
1149
1146
|
}
|
|
1150
1147
|
};
|
|
1151
1148
|
VegaLeftNavGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNavGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1170,7 +1167,7 @@ let VegaLeftNavLink = class VegaLeftNavLink {
|
|
|
1170
1167
|
this.z = z;
|
|
1171
1168
|
c.detach();
|
|
1172
1169
|
this.el = r.nativeElement;
|
|
1173
|
-
proxyOutputs(this, this.el, ['vegaMenuClick'
|
|
1170
|
+
proxyOutputs(this, this.el, ['vegaMenuClick']);
|
|
1174
1171
|
}
|
|
1175
1172
|
};
|
|
1176
1173
|
VegaLeftNavLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1268,7 +1265,7 @@ let VegaModal = class VegaModal {
|
|
|
1268
1265
|
this.z = z;
|
|
1269
1266
|
c.detach();
|
|
1270
1267
|
this.el = r.nativeElement;
|
|
1271
|
-
proxyOutputs(this, this.el, ['vegaClose', '
|
|
1268
|
+
proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);
|
|
1272
1269
|
}
|
|
1273
1270
|
};
|
|
1274
1271
|
VegaModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1367,7 +1364,7 @@ let VegaPagination = class VegaPagination {
|
|
|
1367
1364
|
this.z = z;
|
|
1368
1365
|
c.detach();
|
|
1369
1366
|
this.el = r.nativeElement;
|
|
1370
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1367
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaPageSizeChange']);
|
|
1371
1368
|
}
|
|
1372
1369
|
};
|
|
1373
1370
|
VegaPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1417,7 +1414,7 @@ let VegaPopover = class VegaPopover {
|
|
|
1417
1414
|
this.z = z;
|
|
1418
1415
|
c.detach();
|
|
1419
1416
|
this.el = r.nativeElement;
|
|
1420
|
-
proxyOutputs(this, this.el, ['vegaPopoverShow', '
|
|
1417
|
+
proxyOutputs(this, this.el, ['vegaPopoverShow', 'vegaPopoverHide']);
|
|
1421
1418
|
}
|
|
1422
1419
|
};
|
|
1423
1420
|
VegaPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1443,7 +1440,7 @@ let VegaProgressTracker = class VegaProgressTracker {
|
|
|
1443
1440
|
this.z = z;
|
|
1444
1441
|
c.detach();
|
|
1445
1442
|
this.el = r.nativeElement;
|
|
1446
|
-
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate'
|
|
1443
|
+
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);
|
|
1447
1444
|
}
|
|
1448
1445
|
};
|
|
1449
1446
|
VegaProgressTracker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaProgressTracker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1469,7 +1466,7 @@ let VegaRadio = class VegaRadio {
|
|
|
1469
1466
|
this.z = z;
|
|
1470
1467
|
c.detach();
|
|
1471
1468
|
this.el = r.nativeElement;
|
|
1472
|
-
proxyOutputs(this, this.el, ['vegaFocus', '
|
|
1469
|
+
proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);
|
|
1473
1470
|
}
|
|
1474
1471
|
};
|
|
1475
1472
|
VegaRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1494,7 +1491,7 @@ let VegaRadioGroup = class VegaRadioGroup {
|
|
|
1494
1491
|
this.z = z;
|
|
1495
1492
|
c.detach();
|
|
1496
1493
|
this.el = r.nativeElement;
|
|
1497
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1494
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1498
1495
|
}
|
|
1499
1496
|
};
|
|
1500
1497
|
VegaRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1617,7 +1614,7 @@ let VegaStepper = class VegaStepper {
|
|
|
1617
1614
|
this.z = z;
|
|
1618
1615
|
c.detach();
|
|
1619
1616
|
this.el = r.nativeElement;
|
|
1620
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1617
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1621
1618
|
}
|
|
1622
1619
|
};
|
|
1623
1620
|
VegaStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1643,7 +1640,7 @@ let VegaTabGroup = class VegaTabGroup {
|
|
|
1643
1640
|
this.z = z;
|
|
1644
1641
|
c.detach();
|
|
1645
1642
|
this.el = r.nativeElement;
|
|
1646
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
1643
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1647
1644
|
}
|
|
1648
1645
|
};
|
|
1649
1646
|
VegaTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1692,7 +1689,7 @@ let VegaTable = class VegaTable {
|
|
|
1692
1689
|
this.z = z;
|
|
1693
1690
|
c.detach();
|
|
1694
1691
|
this.el = r.nativeElement;
|
|
1695
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1692
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick', 'vegaSelectChange', 'vegaSelectAllChange']);
|
|
1696
1693
|
}
|
|
1697
1694
|
};
|
|
1698
1695
|
VegaTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1810,7 +1807,7 @@ let VegaTableHeadCell = class VegaTableHeadCell {
|
|
|
1810
1807
|
this.z = z;
|
|
1811
1808
|
c.detach();
|
|
1812
1809
|
this.el = r.nativeElement;
|
|
1813
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
1810
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1814
1811
|
}
|
|
1815
1812
|
};
|
|
1816
1813
|
VegaTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableHeadCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1859,7 +1856,7 @@ let VegaTableRow = class VegaTableRow {
|
|
|
1859
1856
|
this.z = z;
|
|
1860
1857
|
c.detach();
|
|
1861
1858
|
this.el = r.nativeElement;
|
|
1862
|
-
proxyOutputs(this, this.el, ['vegaClick'
|
|
1859
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1863
1860
|
}
|
|
1864
1861
|
};
|
|
1865
1862
|
VegaTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1908,7 +1905,7 @@ let VegaTextarea = class VegaTextarea {
|
|
|
1908
1905
|
this.z = z;
|
|
1909
1906
|
c.detach();
|
|
1910
1907
|
this.el = r.nativeElement;
|
|
1911
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1908
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur']);
|
|
1912
1909
|
}
|
|
1913
1910
|
};
|
|
1914
1911
|
VegaTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1934,7 +1931,7 @@ let VegaTimePicker = class VegaTimePicker {
|
|
|
1934
1931
|
this.z = z;
|
|
1935
1932
|
c.detach();
|
|
1936
1933
|
this.el = r.nativeElement;
|
|
1937
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1934
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1938
1935
|
}
|
|
1939
1936
|
};
|
|
1940
1937
|
VegaTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1960,7 +1957,7 @@ let VegaToggleSwitch = class VegaToggleSwitch {
|
|
|
1960
1957
|
this.z = z;
|
|
1961
1958
|
c.detach();
|
|
1962
1959
|
this.el = r.nativeElement;
|
|
1963
|
-
proxyOutputs(this, this.el, ['vegaChange'
|
|
1960
|
+
proxyOutputs(this, this.el, ['vegaChange']);
|
|
1964
1961
|
}
|
|
1965
1962
|
};
|
|
1966
1963
|
VegaToggleSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaToggleSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|