@heartlandone/vega-angular 2.0.0-temp-test-0.2 → 2.0.0-temp-test-0.3
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 +238 -94
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +5 -4
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +8 -5
- package/dist/fesm2015/heartlandone-vega-angular.mjs +240 -99
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +240 -99
- 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 +370 -41
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- 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 +488 -92
- package/src/lib/stencil-generated/text-value-accessor.ts +3 -2
- package/src/lib/stencil-generated/value-accessor.ts +7 -4
- package/src/scripts/stencil-post-build-script.js +37 -11
|
@@ -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';
|
|
4
5
|
import { __decorate } from 'tslib';
|
|
5
6
|
import { fromEvent } from 'rxjs';
|
|
6
7
|
import { defineCustomElements } from '@heartlandone/vega/loader';
|
|
7
8
|
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,10 +20,12 @@ 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
|
-
this.lastValue
|
|
26
|
-
|
|
23
|
+
handleChangeEvent(value, semantics) {
|
|
24
|
+
if (VegaEventManager.getSemantics(this.el.nativeElement).namespace === semantics) {
|
|
25
|
+
if (value !== this.lastValue) {
|
|
26
|
+
this.lastValue = value;
|
|
27
|
+
this.onChange(value);
|
|
28
|
+
}
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
_handleBlurEvent() {
|
|
@@ -55,7 +57,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
59
|
TextValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
58
|
-
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: TextValueAccessor, selector: "vega-checkbox
|
|
60
|
+
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: TextValueAccessor, selector: "vega-checkbox, vega-checkbox-group, 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.currentTarget.value, 'vega')", "change": "handleChangeEvent($event.currentTarget.value, 'native')" } }, providers: [
|
|
59
61
|
{
|
|
60
62
|
provide: NG_VALUE_ACCESSOR,
|
|
61
63
|
useExisting: TextValueAccessor,
|
|
@@ -66,9 +68,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
66
68
|
type: Directive,
|
|
67
69
|
args: [{
|
|
68
70
|
/* tslint:disable-next-line:directive-selector */
|
|
69
|
-
selector: 'vega-checkbox
|
|
71
|
+
selector: 'vega-checkbox, vega-checkbox-group, 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',
|
|
70
72
|
host: {
|
|
71
|
-
'(vegaChange)':
|
|
73
|
+
'(vegaChange)': "handleChangeEvent($event.currentTarget.value, 'vega')",
|
|
74
|
+
'(change)': "handleChangeEvent($event.currentTarget.value, 'native')"
|
|
72
75
|
},
|
|
73
76
|
providers: [
|
|
74
77
|
{
|
|
@@ -171,7 +174,7 @@ let VegaAccordion = class VegaAccordion {
|
|
|
171
174
|
this.z = z;
|
|
172
175
|
c.detach();
|
|
173
176
|
this.el = r.nativeElement;
|
|
174
|
-
proxyOutputs(this, this.el, ['vegaExpand']);
|
|
177
|
+
proxyOutputs(this, this.el, ['vegaExpand', 'accordionExpand']);
|
|
175
178
|
}
|
|
176
179
|
};
|
|
177
180
|
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 });
|
|
@@ -220,7 +223,7 @@ let VegaAppHeaderButton = class VegaAppHeaderButton {
|
|
|
220
223
|
this.z = z;
|
|
221
224
|
c.detach();
|
|
222
225
|
this.el = r.nativeElement;
|
|
223
|
-
proxyOutputs(this, this.el, ['vegaClick', 'vegaDropdownClick']);
|
|
226
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaDropdownClick', 'dropdownClick']);
|
|
224
227
|
}
|
|
225
228
|
};
|
|
226
229
|
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 });
|
|
@@ -240,53 +243,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
240
243
|
inputs: ['avatar', 'avatarPosition', 'dropdown', 'label', 'selected', 'showBorder', 'showLabel', 'showMenuArrowIcon', 'size']
|
|
241
244
|
}]
|
|
242
245
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
243
|
-
let
|
|
246
|
+
let VegaBackdrop = class VegaBackdrop {
|
|
244
247
|
constructor(c, r, z) {
|
|
245
248
|
this.z = z;
|
|
246
249
|
c.detach();
|
|
247
250
|
this.el = r.nativeElement;
|
|
251
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
|
248
252
|
}
|
|
249
253
|
};
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
254
|
+
VegaBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
255
|
+
VegaBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaBackdrop, selector: "vega-backdrop", inputs: { color: "color", duration: "duration", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
256
|
+
VegaBackdrop = __decorate([
|
|
253
257
|
ProxyCmp({
|
|
254
258
|
defineCustomElementFn: undefined,
|
|
255
|
-
inputs: ['
|
|
259
|
+
inputs: ['color', 'duration', 'visible']
|
|
256
260
|
})
|
|
257
|
-
],
|
|
258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type:
|
|
261
|
+
], VegaBackdrop);
|
|
262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBackdrop, decorators: [{
|
|
259
263
|
type: Component,
|
|
260
264
|
args: [{
|
|
261
|
-
selector: 'vega-
|
|
265
|
+
selector: 'vega-backdrop',
|
|
262
266
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
263
267
|
template: '<ng-content></ng-content>',
|
|
264
|
-
inputs: ['
|
|
268
|
+
inputs: ['color', 'duration', 'visible']
|
|
265
269
|
}]
|
|
266
270
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
267
|
-
let
|
|
271
|
+
let VegaBadge = class VegaBadge {
|
|
268
272
|
constructor(c, r, z) {
|
|
269
273
|
this.z = z;
|
|
270
274
|
c.detach();
|
|
271
275
|
this.el = r.nativeElement;
|
|
272
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaLoad', 'vegaClickCTA']);
|
|
273
276
|
}
|
|
274
277
|
};
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
+
VegaBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
279
|
+
VegaBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaBadge, selector: "vega-badge", inputs: { bgColor: "bgColor", size: "size", text: "text", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
280
|
+
VegaBadge = __decorate([
|
|
278
281
|
ProxyCmp({
|
|
279
282
|
defineCustomElementFn: undefined,
|
|
280
|
-
inputs: ['
|
|
283
|
+
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
281
284
|
})
|
|
282
|
-
],
|
|
283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type:
|
|
285
|
+
], VegaBadge);
|
|
286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBadge, decorators: [{
|
|
284
287
|
type: Component,
|
|
285
288
|
args: [{
|
|
286
|
-
selector: 'vega-
|
|
289
|
+
selector: 'vega-badge',
|
|
287
290
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
288
291
|
template: '<ng-content></ng-content>',
|
|
289
|
-
inputs: ['
|
|
292
|
+
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
290
293
|
}]
|
|
291
294
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
292
295
|
let VegaBarChart = class VegaBarChart {
|
|
@@ -342,7 +345,7 @@ let VegaBreadcrumb = class VegaBreadcrumb {
|
|
|
342
345
|
this.z = z;
|
|
343
346
|
c.detach();
|
|
344
347
|
this.el = r.nativeElement;
|
|
345
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
348
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
346
349
|
}
|
|
347
350
|
};
|
|
348
351
|
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 });
|
|
@@ -367,7 +370,7 @@ let VegaButton = class VegaButton {
|
|
|
367
370
|
this.z = z;
|
|
368
371
|
c.detach();
|
|
369
372
|
this.el = r.nativeElement;
|
|
370
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
373
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
371
374
|
}
|
|
372
375
|
};
|
|
373
376
|
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 });
|
|
@@ -392,7 +395,7 @@ let VegaButtonCircle = class VegaButtonCircle {
|
|
|
392
395
|
this.z = z;
|
|
393
396
|
c.detach();
|
|
394
397
|
this.el = r.nativeElement;
|
|
395
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
398
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
396
399
|
}
|
|
397
400
|
};
|
|
398
401
|
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 });
|
|
@@ -417,7 +420,7 @@ let VegaButtonLink = class VegaButtonLink {
|
|
|
417
420
|
this.z = z;
|
|
418
421
|
c.detach();
|
|
419
422
|
this.el = r.nativeElement;
|
|
420
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
423
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
421
424
|
}
|
|
422
425
|
};
|
|
423
426
|
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 });
|
|
@@ -445,11 +448,11 @@ let VegaCard = class VegaCard {
|
|
|
445
448
|
}
|
|
446
449
|
};
|
|
447
450
|
VegaCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
448
|
-
VegaCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaCard, selector: "vega-card", inputs: { backgroundColor: "backgroundColor", margin: "margin", padding: "padding",
|
|
451
|
+
VegaCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaCard, selector: "vega-card", inputs: { backgroundColor: "backgroundColor", margin: "margin", padding: "padding", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
449
452
|
VegaCard = __decorate([
|
|
450
453
|
ProxyCmp({
|
|
451
454
|
defineCustomElementFn: undefined,
|
|
452
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
455
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
453
456
|
})
|
|
454
457
|
], VegaCard);
|
|
455
458
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCard, decorators: [{
|
|
@@ -458,7 +461,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
458
461
|
selector: 'vega-card',
|
|
459
462
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
460
463
|
template: '<ng-content></ng-content>',
|
|
461
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
464
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
462
465
|
}]
|
|
463
466
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
464
467
|
let VegaCarousel = class VegaCarousel {
|
|
@@ -466,7 +469,7 @@ let VegaCarousel = class VegaCarousel {
|
|
|
466
469
|
this.z = z;
|
|
467
470
|
c.detach();
|
|
468
471
|
this.el = r.nativeElement;
|
|
469
|
-
proxyOutputs(this, this.el, ['vegaPageUpdate']);
|
|
472
|
+
proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
|
|
470
473
|
}
|
|
471
474
|
};
|
|
472
475
|
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 });
|
|
@@ -492,7 +495,7 @@ let VegaCheckbox = class VegaCheckbox {
|
|
|
492
495
|
this.z = z;
|
|
493
496
|
c.detach();
|
|
494
497
|
this.el = r.nativeElement;
|
|
495
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange']);
|
|
498
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'change']);
|
|
496
499
|
}
|
|
497
500
|
};
|
|
498
501
|
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 });
|
|
@@ -518,7 +521,7 @@ let VegaCheckboxGroup = class VegaCheckboxGroup {
|
|
|
518
521
|
this.z = z;
|
|
519
522
|
c.detach();
|
|
520
523
|
this.el = r.nativeElement;
|
|
521
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
524
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
522
525
|
}
|
|
523
526
|
};
|
|
524
527
|
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 });
|
|
@@ -544,7 +547,7 @@ let VegaChip = class VegaChip {
|
|
|
544
547
|
this.z = z;
|
|
545
548
|
c.detach();
|
|
546
549
|
this.el = r.nativeElement;
|
|
547
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaClick']);
|
|
550
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
|
|
548
551
|
}
|
|
549
552
|
};
|
|
550
553
|
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 });
|
|
@@ -569,7 +572,7 @@ let VegaColorPicker = class VegaColorPicker {
|
|
|
569
572
|
this.z = z;
|
|
570
573
|
c.detach();
|
|
571
574
|
this.el = r.nativeElement;
|
|
572
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
575
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
573
576
|
}
|
|
574
577
|
};
|
|
575
578
|
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 });
|
|
@@ -595,7 +598,7 @@ let VegaComboBox = class VegaComboBox {
|
|
|
595
598
|
this.z = z;
|
|
596
599
|
c.detach();
|
|
597
600
|
this.el = r.nativeElement;
|
|
598
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaCreate', 'vegaSearch']);
|
|
601
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaCreate', 'create', 'vegaSearch', 'search']);
|
|
599
602
|
}
|
|
600
603
|
};
|
|
601
604
|
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 });
|
|
@@ -645,7 +648,7 @@ let VegaDatePicker = class VegaDatePicker {
|
|
|
645
648
|
this.z = z;
|
|
646
649
|
c.detach();
|
|
647
650
|
this.el = r.nativeElement;
|
|
648
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
651
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
649
652
|
}
|
|
650
653
|
};
|
|
651
654
|
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 });
|
|
@@ -666,6 +669,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
666
669
|
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'formValidation', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value']
|
|
667
670
|
}]
|
|
668
671
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
672
|
+
let VegaDatePickerCalendar = class VegaDatePickerCalendar {
|
|
673
|
+
constructor(c, r, z) {
|
|
674
|
+
this.z = z;
|
|
675
|
+
c.detach();
|
|
676
|
+
this.el = r.nativeElement;
|
|
677
|
+
}
|
|
678
|
+
};
|
|
679
|
+
VegaDatePickerCalendar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDatePickerCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
680
|
+
VegaDatePickerCalendar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDatePickerCalendar, selector: "vega-date-picker-calendar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
681
|
+
VegaDatePickerCalendar = __decorate([
|
|
682
|
+
ProxyCmp({
|
|
683
|
+
defineCustomElementFn: undefined
|
|
684
|
+
})
|
|
685
|
+
], VegaDatePickerCalendar);
|
|
686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDatePickerCalendar, decorators: [{
|
|
687
|
+
type: Component,
|
|
688
|
+
args: [{
|
|
689
|
+
selector: 'vega-date-picker-calendar',
|
|
690
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
691
|
+
template: '<ng-content></ng-content>'
|
|
692
|
+
}]
|
|
693
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
669
694
|
let VegaDialog = class VegaDialog {
|
|
670
695
|
constructor(c, r, z) {
|
|
671
696
|
this.z = z;
|
|
@@ -695,7 +720,7 @@ let VegaDropdown = class VegaDropdown {
|
|
|
695
720
|
this.z = z;
|
|
696
721
|
c.detach();
|
|
697
722
|
this.el = r.nativeElement;
|
|
698
|
-
proxyOutputs(this, this.el, ['
|
|
723
|
+
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch']);
|
|
699
724
|
}
|
|
700
725
|
};
|
|
701
726
|
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 });
|
|
@@ -716,6 +741,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
716
741
|
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter']
|
|
717
742
|
}]
|
|
718
743
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
744
|
+
let VegaDropdownContentBox = class VegaDropdownContentBox {
|
|
745
|
+
constructor(c, r, z) {
|
|
746
|
+
this.z = z;
|
|
747
|
+
c.detach();
|
|
748
|
+
this.el = r.nativeElement;
|
|
749
|
+
}
|
|
750
|
+
};
|
|
751
|
+
VegaDropdownContentBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownContentBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
752
|
+
VegaDropdownContentBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDropdownContentBox, selector: "vega-dropdown-content-box", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
753
|
+
VegaDropdownContentBox = __decorate([
|
|
754
|
+
ProxyCmp({
|
|
755
|
+
defineCustomElementFn: undefined
|
|
756
|
+
})
|
|
757
|
+
], VegaDropdownContentBox);
|
|
758
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownContentBox, decorators: [{
|
|
759
|
+
type: Component,
|
|
760
|
+
args: [{
|
|
761
|
+
selector: 'vega-dropdown-content-box',
|
|
762
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
763
|
+
template: '<ng-content></ng-content>'
|
|
764
|
+
}]
|
|
765
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
719
766
|
let VegaDropdownGroup = class VegaDropdownGroup {
|
|
720
767
|
constructor(c, r, z) {
|
|
721
768
|
this.z = z;
|
|
@@ -745,7 +792,7 @@ let VegaDropdownItem = class VegaDropdownItem {
|
|
|
745
792
|
this.z = z;
|
|
746
793
|
c.detach();
|
|
747
794
|
this.el = r.nativeElement;
|
|
748
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
795
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
749
796
|
}
|
|
750
797
|
};
|
|
751
798
|
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 });
|
|
@@ -822,11 +869,11 @@ let VegaFlex = class VegaFlex {
|
|
|
822
869
|
}
|
|
823
870
|
};
|
|
824
871
|
VegaFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
825
|
-
VegaFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaFlex, selector: "vega-flex", inputs: {
|
|
872
|
+
VegaFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaFlex, selector: "vega-flex", inputs: { alignItems: "alignItems", direction: "direction", gap: "gap", justifyContent: "justifyContent", margin: "margin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
826
873
|
VegaFlex = __decorate([
|
|
827
874
|
ProxyCmp({
|
|
828
875
|
defineCustomElementFn: undefined,
|
|
829
|
-
inputs: ['
|
|
876
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
830
877
|
})
|
|
831
878
|
], VegaFlex);
|
|
832
879
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFlex, decorators: [{
|
|
@@ -835,7 +882,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
835
882
|
selector: 'vega-flex',
|
|
836
883
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
837
884
|
template: '<ng-content></ng-content>',
|
|
838
|
-
inputs: ['
|
|
885
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
839
886
|
}]
|
|
840
887
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
841
888
|
let VegaFont = class VegaFont {
|
|
@@ -891,7 +938,7 @@ let VegaForm = class VegaForm {
|
|
|
891
938
|
this.z = z;
|
|
892
939
|
c.detach();
|
|
893
940
|
this.el = r.nativeElement;
|
|
894
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaFormSubmit', 'vegaFormReset']);
|
|
941
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
|
|
895
942
|
}
|
|
896
943
|
};
|
|
897
944
|
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 });
|
|
@@ -987,7 +1034,7 @@ let VegaImageUploader = class VegaImageUploader {
|
|
|
987
1034
|
this.z = z;
|
|
988
1035
|
c.detach();
|
|
989
1036
|
this.el = r.nativeElement;
|
|
990
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRemove', 'vegaCancel', 'vegaValidate']);
|
|
1037
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel', 'vegaValidate']);
|
|
991
1038
|
}
|
|
992
1039
|
};
|
|
993
1040
|
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 });
|
|
@@ -1013,7 +1060,7 @@ let VegaInput = class VegaInput {
|
|
|
1013
1060
|
this.z = z;
|
|
1014
1061
|
c.detach();
|
|
1015
1062
|
this.el = r.nativeElement;
|
|
1016
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur', 'vegaFocus']);
|
|
1063
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1017
1064
|
}
|
|
1018
1065
|
};
|
|
1019
1066
|
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 });
|
|
@@ -1039,7 +1086,7 @@ let VegaInputCreditCard = class VegaInputCreditCard {
|
|
|
1039
1086
|
this.z = z;
|
|
1040
1087
|
c.detach();
|
|
1041
1088
|
this.el = r.nativeElement;
|
|
1042
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'vegaBlur', 'vegaFocus']);
|
|
1089
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1043
1090
|
}
|
|
1044
1091
|
};
|
|
1045
1092
|
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 });
|
|
@@ -1065,7 +1112,7 @@ let VegaInputSelect = class VegaInputSelect {
|
|
|
1065
1112
|
this.z = z;
|
|
1066
1113
|
c.detach();
|
|
1067
1114
|
this.el = r.nativeElement;
|
|
1068
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaSearch']);
|
|
1115
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaSearch', 'search']);
|
|
1069
1116
|
}
|
|
1070
1117
|
};
|
|
1071
1118
|
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 });
|
|
@@ -1091,7 +1138,7 @@ let VegaItemToggle = class VegaItemToggle {
|
|
|
1091
1138
|
this.z = z;
|
|
1092
1139
|
c.detach();
|
|
1093
1140
|
this.el = r.nativeElement;
|
|
1094
|
-
proxyOutputs(this, this.el, ['vegaToggleStatus']);
|
|
1141
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
|
|
1095
1142
|
}
|
|
1096
1143
|
};
|
|
1097
1144
|
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 });
|
|
@@ -1116,7 +1163,7 @@ let VegaLeftNav = class VegaLeftNav {
|
|
|
1116
1163
|
this.z = z;
|
|
1117
1164
|
c.detach();
|
|
1118
1165
|
this.el = r.nativeElement;
|
|
1119
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1166
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
|
1120
1167
|
}
|
|
1121
1168
|
};
|
|
1122
1169
|
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 });
|
|
@@ -1142,7 +1189,7 @@ let VegaLeftNavGroup = class VegaLeftNavGroup {
|
|
|
1142
1189
|
this.z = z;
|
|
1143
1190
|
c.detach();
|
|
1144
1191
|
this.el = r.nativeElement;
|
|
1145
|
-
proxyOutputs(this, this.el, ['vegaGroupClick']);
|
|
1192
|
+
proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
|
|
1146
1193
|
}
|
|
1147
1194
|
};
|
|
1148
1195
|
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 });
|
|
@@ -1167,7 +1214,7 @@ let VegaLeftNavLink = class VegaLeftNavLink {
|
|
|
1167
1214
|
this.z = z;
|
|
1168
1215
|
c.detach();
|
|
1169
1216
|
this.el = r.nativeElement;
|
|
1170
|
-
proxyOutputs(this, this.el, ['vegaMenuClick']);
|
|
1217
|
+
proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
|
|
1171
1218
|
}
|
|
1172
1219
|
};
|
|
1173
1220
|
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 });
|
|
@@ -1236,6 +1283,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
1236
1283
|
inputs: ['options']
|
|
1237
1284
|
}]
|
|
1238
1285
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1286
|
+
let VegaLoaderWrapper = class VegaLoaderWrapper {
|
|
1287
|
+
constructor(c, r, z) {
|
|
1288
|
+
this.z = z;
|
|
1289
|
+
c.detach();
|
|
1290
|
+
this.el = r.nativeElement;
|
|
1291
|
+
}
|
|
1292
|
+
};
|
|
1293
|
+
VegaLoaderWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLoaderWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1294
|
+
VegaLoaderWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLoaderWrapper, selector: "vega-loader-wrapper", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1295
|
+
VegaLoaderWrapper = __decorate([
|
|
1296
|
+
ProxyCmp({
|
|
1297
|
+
defineCustomElementFn: undefined
|
|
1298
|
+
})
|
|
1299
|
+
], VegaLoaderWrapper);
|
|
1300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLoaderWrapper, decorators: [{
|
|
1301
|
+
type: Component,
|
|
1302
|
+
args: [{
|
|
1303
|
+
selector: 'vega-loader-wrapper',
|
|
1304
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1305
|
+
template: '<ng-content></ng-content>'
|
|
1306
|
+
}]
|
|
1307
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1239
1308
|
let VegaLoadingIndicator = class VegaLoadingIndicator {
|
|
1240
1309
|
constructor(c, r, z) {
|
|
1241
1310
|
this.z = z;
|
|
@@ -1265,7 +1334,7 @@ let VegaModal = class VegaModal {
|
|
|
1265
1334
|
this.z = z;
|
|
1266
1335
|
c.detach();
|
|
1267
1336
|
this.el = r.nativeElement;
|
|
1268
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);
|
|
1337
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
|
|
1269
1338
|
}
|
|
1270
1339
|
};
|
|
1271
1340
|
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 });
|
|
@@ -1310,53 +1379,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
1310
1379
|
inputs: ['maxHeight', 'source']
|
|
1311
1380
|
}]
|
|
1312
1381
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1313
|
-
let
|
|
1382
|
+
let VegaPageNotification = class VegaPageNotification {
|
|
1314
1383
|
constructor(c, r, z) {
|
|
1315
1384
|
this.z = z;
|
|
1316
1385
|
c.detach();
|
|
1317
1386
|
this.el = r.nativeElement;
|
|
1318
1387
|
}
|
|
1319
1388
|
};
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1389
|
+
VegaPageNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPageNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1390
|
+
VegaPageNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaPageNotification, selector: "vega-page-notification", inputs: { actionButtons: "actionButtons", duration: "duration", message: "message", notificationTitle: "notificationTitle", showCloseButton: "showCloseButton", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1391
|
+
VegaPageNotification = __decorate([
|
|
1323
1392
|
ProxyCmp({
|
|
1324
1393
|
defineCustomElementFn: undefined,
|
|
1325
|
-
inputs: ['
|
|
1394
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1395
|
+
methods: ['close']
|
|
1326
1396
|
})
|
|
1327
|
-
],
|
|
1328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type:
|
|
1397
|
+
], VegaPageNotification);
|
|
1398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPageNotification, decorators: [{
|
|
1329
1399
|
type: Component,
|
|
1330
1400
|
args: [{
|
|
1331
|
-
selector: 'vega-
|
|
1401
|
+
selector: 'vega-page-notification',
|
|
1332
1402
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1333
1403
|
template: '<ng-content></ng-content>',
|
|
1334
|
-
inputs: ['
|
|
1404
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1335
1405
|
}]
|
|
1336
1406
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1337
|
-
let
|
|
1407
|
+
let VegaPageNotificationList = class VegaPageNotificationList {
|
|
1338
1408
|
constructor(c, r, z) {
|
|
1339
1409
|
this.z = z;
|
|
1340
1410
|
c.detach();
|
|
1341
1411
|
this.el = r.nativeElement;
|
|
1342
1412
|
}
|
|
1343
1413
|
};
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1414
|
+
VegaPageNotificationList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPageNotificationList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1415
|
+
VegaPageNotificationList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaPageNotificationList, selector: "vega-page-notification-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1416
|
+
VegaPageNotificationList = __decorate([
|
|
1347
1417
|
ProxyCmp({
|
|
1348
|
-
defineCustomElementFn: undefined
|
|
1349
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1350
|
-
methods: ['close']
|
|
1418
|
+
defineCustomElementFn: undefined
|
|
1351
1419
|
})
|
|
1352
|
-
],
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type:
|
|
1420
|
+
], VegaPageNotificationList);
|
|
1421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPageNotificationList, decorators: [{
|
|
1354
1422
|
type: Component,
|
|
1355
1423
|
args: [{
|
|
1356
|
-
selector: 'vega-page-notification',
|
|
1424
|
+
selector: 'vega-page-notification-list',
|
|
1357
1425
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1358
|
-
template: '<ng-content></ng-content>'
|
|
1359
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1426
|
+
template: '<ng-content></ng-content>'
|
|
1360
1427
|
}]
|
|
1361
1428
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1362
1429
|
let VegaPagination = class VegaPagination {
|
|
@@ -1364,7 +1431,7 @@ let VegaPagination = class VegaPagination {
|
|
|
1364
1431
|
this.z = z;
|
|
1365
1432
|
c.detach();
|
|
1366
1433
|
this.el = r.nativeElement;
|
|
1367
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaPageSizeChange']);
|
|
1434
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
|
|
1368
1435
|
}
|
|
1369
1436
|
};
|
|
1370
1437
|
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 });
|
|
@@ -1414,7 +1481,7 @@ let VegaPopover = class VegaPopover {
|
|
|
1414
1481
|
this.z = z;
|
|
1415
1482
|
c.detach();
|
|
1416
1483
|
this.el = r.nativeElement;
|
|
1417
|
-
proxyOutputs(this, this.el, ['vegaPopoverShow', 'vegaPopoverHide']);
|
|
1484
|
+
proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
|
|
1418
1485
|
}
|
|
1419
1486
|
};
|
|
1420
1487
|
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 });
|
|
@@ -1435,12 +1502,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
1435
1502
|
inputs: ['alignment', 'placement', 'positionRelativeTo', 'size']
|
|
1436
1503
|
}]
|
|
1437
1504
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1505
|
+
let VegaPopoverContentBox = class VegaPopoverContentBox {
|
|
1506
|
+
constructor(c, r, z) {
|
|
1507
|
+
this.z = z;
|
|
1508
|
+
c.detach();
|
|
1509
|
+
this.el = r.nativeElement;
|
|
1510
|
+
}
|
|
1511
|
+
};
|
|
1512
|
+
VegaPopoverContentBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPopoverContentBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1513
|
+
VegaPopoverContentBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaPopoverContentBox, selector: "vega-popover-content-box", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1514
|
+
VegaPopoverContentBox = __decorate([
|
|
1515
|
+
ProxyCmp({
|
|
1516
|
+
defineCustomElementFn: undefined
|
|
1517
|
+
})
|
|
1518
|
+
], VegaPopoverContentBox);
|
|
1519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPopoverContentBox, decorators: [{
|
|
1520
|
+
type: Component,
|
|
1521
|
+
args: [{
|
|
1522
|
+
selector: 'vega-popover-content-box',
|
|
1523
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1524
|
+
template: '<ng-content></ng-content>'
|
|
1525
|
+
}]
|
|
1526
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1438
1527
|
let VegaProgressTracker = class VegaProgressTracker {
|
|
1439
1528
|
constructor(c, r, z) {
|
|
1440
1529
|
this.z = z;
|
|
1441
1530
|
c.detach();
|
|
1442
1531
|
this.el = r.nativeElement;
|
|
1443
|
-
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);
|
|
1532
|
+
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
|
|
1444
1533
|
}
|
|
1445
1534
|
};
|
|
1446
1535
|
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 });
|
|
@@ -1466,7 +1555,7 @@ let VegaRadio = class VegaRadio {
|
|
|
1466
1555
|
this.z = z;
|
|
1467
1556
|
c.detach();
|
|
1468
1557
|
this.el = r.nativeElement;
|
|
1469
|
-
proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);
|
|
1558
|
+
proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
|
|
1470
1559
|
}
|
|
1471
1560
|
};
|
|
1472
1561
|
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 });
|
|
@@ -1491,7 +1580,7 @@ let VegaRadioGroup = class VegaRadioGroup {
|
|
|
1491
1580
|
this.z = z;
|
|
1492
1581
|
c.detach();
|
|
1493
1582
|
this.el = r.nativeElement;
|
|
1494
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1583
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
1495
1584
|
}
|
|
1496
1585
|
};
|
|
1497
1586
|
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 });
|
|
@@ -1614,7 +1703,7 @@ let VegaStepper = class VegaStepper {
|
|
|
1614
1703
|
this.z = z;
|
|
1615
1704
|
c.detach();
|
|
1616
1705
|
this.el = r.nativeElement;
|
|
1617
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
1706
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
1618
1707
|
}
|
|
1619
1708
|
};
|
|
1620
1709
|
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 });
|
|
@@ -1640,7 +1729,7 @@ let VegaTabGroup = class VegaTabGroup {
|
|
|
1640
1729
|
this.z = z;
|
|
1641
1730
|
c.detach();
|
|
1642
1731
|
this.el = r.nativeElement;
|
|
1643
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1732
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1644
1733
|
}
|
|
1645
1734
|
};
|
|
1646
1735
|
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 });
|
|
@@ -1689,7 +1778,7 @@ let VegaTable = class VegaTable {
|
|
|
1689
1778
|
this.z = z;
|
|
1690
1779
|
c.detach();
|
|
1691
1780
|
this.el = r.nativeElement;
|
|
1692
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick', 'vegaSelectChange', 'vegaSelectAllChange']);
|
|
1781
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange']);
|
|
1693
1782
|
}
|
|
1694
1783
|
};
|
|
1695
1784
|
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 });
|
|
@@ -1740,11 +1829,11 @@ let VegaTableCell = class VegaTableCell {
|
|
|
1740
1829
|
}
|
|
1741
1830
|
};
|
|
1742
1831
|
VegaTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1743
|
-
VegaTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableCell, selector: "vega-table-cell", inputs: { breakpoint: "breakpoint",
|
|
1832
|
+
VegaTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableCell, selector: "vega-table-cell", inputs: { breakpoint: "breakpoint", overflow: "overflow", textAlign: "textAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1744
1833
|
VegaTableCell = __decorate([
|
|
1745
1834
|
ProxyCmp({
|
|
1746
1835
|
defineCustomElementFn: undefined,
|
|
1747
|
-
inputs: ['breakpoint', '
|
|
1836
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1748
1837
|
})
|
|
1749
1838
|
], VegaTableCell);
|
|
1750
1839
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableCell, decorators: [{
|
|
@@ -1753,7 +1842,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
1753
1842
|
selector: 'vega-table-cell',
|
|
1754
1843
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1755
1844
|
template: '<ng-content></ng-content>',
|
|
1756
|
-
inputs: ['breakpoint', '
|
|
1845
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1757
1846
|
}]
|
|
1758
1847
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1759
1848
|
let VegaTableExpandRow = class VegaTableExpandRow {
|
|
@@ -1807,7 +1896,7 @@ let VegaTableHeadCell = class VegaTableHeadCell {
|
|
|
1807
1896
|
this.z = z;
|
|
1808
1897
|
c.detach();
|
|
1809
1898
|
this.el = r.nativeElement;
|
|
1810
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1899
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1811
1900
|
}
|
|
1812
1901
|
};
|
|
1813
1902
|
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 });
|
|
@@ -1856,7 +1945,7 @@ let VegaTableRow = class VegaTableRow {
|
|
|
1856
1945
|
this.z = z;
|
|
1857
1946
|
c.detach();
|
|
1858
1947
|
this.el = r.nativeElement;
|
|
1859
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1948
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1860
1949
|
}
|
|
1861
1950
|
};
|
|
1862
1951
|
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 });
|
|
@@ -1905,7 +1994,7 @@ let VegaTextarea = class VegaTextarea {
|
|
|
1905
1994
|
this.z = z;
|
|
1906
1995
|
c.detach();
|
|
1907
1996
|
this.el = r.nativeElement;
|
|
1908
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur']);
|
|
1997
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate', 'vegaBlur', 'blur']);
|
|
1909
1998
|
}
|
|
1910
1999
|
};
|
|
1911
2000
|
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 });
|
|
@@ -1931,7 +2020,7 @@ let VegaTimePicker = class VegaTimePicker {
|
|
|
1931
2020
|
this.z = z;
|
|
1932
2021
|
c.detach();
|
|
1933
2022
|
this.el = r.nativeElement;
|
|
1934
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);
|
|
2023
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaValidate']);
|
|
1935
2024
|
}
|
|
1936
2025
|
};
|
|
1937
2026
|
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 });
|
|
@@ -1952,12 +2041,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
1952
2041
|
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
1953
2042
|
}]
|
|
1954
2043
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2044
|
+
let VegaTimePickerDropdown = class VegaTimePickerDropdown {
|
|
2045
|
+
constructor(c, r, z) {
|
|
2046
|
+
this.z = z;
|
|
2047
|
+
c.detach();
|
|
2048
|
+
this.el = r.nativeElement;
|
|
2049
|
+
}
|
|
2050
|
+
};
|
|
2051
|
+
VegaTimePickerDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTimePickerDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2052
|
+
VegaTimePickerDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTimePickerDropdown, selector: "vega-time-picker-dropdown", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2053
|
+
VegaTimePickerDropdown = __decorate([
|
|
2054
|
+
ProxyCmp({
|
|
2055
|
+
defineCustomElementFn: undefined
|
|
2056
|
+
})
|
|
2057
|
+
], VegaTimePickerDropdown);
|
|
2058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTimePickerDropdown, decorators: [{
|
|
2059
|
+
type: Component,
|
|
2060
|
+
args: [{
|
|
2061
|
+
selector: 'vega-time-picker-dropdown',
|
|
2062
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2063
|
+
template: '<ng-content></ng-content>'
|
|
2064
|
+
}]
|
|
2065
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1955
2066
|
let VegaToggleSwitch = class VegaToggleSwitch {
|
|
1956
2067
|
constructor(c, r, z) {
|
|
1957
2068
|
this.z = z;
|
|
1958
2069
|
c.detach();
|
|
1959
2070
|
this.el = r.nativeElement;
|
|
1960
|
-
proxyOutputs(this, this.el, ['vegaChange']);
|
|
2071
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1961
2072
|
}
|
|
1962
2073
|
};
|
|
1963
2074
|
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 });
|
|
@@ -2001,6 +2112,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
2001
2112
|
inputs: ['alignment', 'content', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'trigger']
|
|
2002
2113
|
}]
|
|
2003
2114
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2115
|
+
let VegaTooltipContentBox = class VegaTooltipContentBox {
|
|
2116
|
+
constructor(c, r, z) {
|
|
2117
|
+
this.z = z;
|
|
2118
|
+
c.detach();
|
|
2119
|
+
this.el = r.nativeElement;
|
|
2120
|
+
}
|
|
2121
|
+
};
|
|
2122
|
+
VegaTooltipContentBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTooltipContentBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2123
|
+
VegaTooltipContentBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTooltipContentBox, selector: "vega-tooltip-content-box", inputs: { content: "content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2124
|
+
VegaTooltipContentBox = __decorate([
|
|
2125
|
+
ProxyCmp({
|
|
2126
|
+
defineCustomElementFn: undefined,
|
|
2127
|
+
inputs: ['content']
|
|
2128
|
+
})
|
|
2129
|
+
], VegaTooltipContentBox);
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTooltipContentBox, decorators: [{
|
|
2131
|
+
type: Component,
|
|
2132
|
+
args: [{
|
|
2133
|
+
selector: 'vega-tooltip-content-box',
|
|
2134
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2135
|
+
template: '<ng-content></ng-content>',
|
|
2136
|
+
inputs: ['content']
|
|
2137
|
+
}]
|
|
2138
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2004
2139
|
let VegaVirtualScroll = class VegaVirtualScroll {
|
|
2005
2140
|
constructor(c, r, z) {
|
|
2006
2141
|
this.z = z;
|
|
@@ -2030,8 +2165,8 @@ var VegaComponents = [
|
|
|
2030
2165
|
VegaAccordion,
|
|
2031
2166
|
VegaAppFooter,
|
|
2032
2167
|
VegaAppHeaderButton,
|
|
2168
|
+
VegaBackdrop,
|
|
2033
2169
|
VegaBadge,
|
|
2034
|
-
VegaBanner,
|
|
2035
2170
|
VegaBarChart,
|
|
2036
2171
|
VegaBox,
|
|
2037
2172
|
VegaBreadcrumb,
|
|
@@ -2047,8 +2182,10 @@ var VegaComponents = [
|
|
|
2047
2182
|
VegaComboBox,
|
|
2048
2183
|
VegaCounterBadge,
|
|
2049
2184
|
VegaDatePicker,
|
|
2185
|
+
VegaDatePickerCalendar,
|
|
2050
2186
|
VegaDialog,
|
|
2051
2187
|
VegaDropdown,
|
|
2188
|
+
VegaDropdownContentBox,
|
|
2052
2189
|
VegaDropdownGroup,
|
|
2053
2190
|
VegaDropdownItem,
|
|
2054
2191
|
VegaFieldError,
|
|
@@ -2070,14 +2207,16 @@ var VegaComponents = [
|
|
|
2070
2207
|
VegaLeftNavLink,
|
|
2071
2208
|
VegaLeftNavSection,
|
|
2072
2209
|
VegaLineChart,
|
|
2210
|
+
VegaLoaderWrapper,
|
|
2073
2211
|
VegaLoadingIndicator,
|
|
2074
2212
|
VegaModal,
|
|
2075
2213
|
VegaNavCard,
|
|
2076
|
-
VegaOption,
|
|
2077
2214
|
VegaPageNotification,
|
|
2215
|
+
VegaPageNotificationList,
|
|
2078
2216
|
VegaPagination,
|
|
2079
2217
|
VegaPieChart,
|
|
2080
2218
|
VegaPopover,
|
|
2219
|
+
VegaPopoverContentBox,
|
|
2081
2220
|
VegaProgressTracker,
|
|
2082
2221
|
VegaRadio,
|
|
2083
2222
|
VegaRadioGroup,
|
|
@@ -2099,8 +2238,10 @@ var VegaComponents = [
|
|
|
2099
2238
|
VegaText,
|
|
2100
2239
|
VegaTextarea,
|
|
2101
2240
|
VegaTimePicker,
|
|
2241
|
+
VegaTimePickerDropdown,
|
|
2102
2242
|
VegaToggleSwitch,
|
|
2103
2243
|
VegaTooltip,
|
|
2244
|
+
VegaTooltipContentBox,
|
|
2104
2245
|
VegaVirtualScroll,
|
|
2105
2246
|
];
|
|
2106
2247
|
|
|
@@ -2119,7 +2260,7 @@ class VegaComponentModule {
|
|
|
2119
2260
|
}
|
|
2120
2261
|
}
|
|
2121
2262
|
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2122
|
-
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton,
|
|
2263
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBadge, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBadge, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
2123
2264
|
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
|
2124
2265
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, decorators: [{
|
|
2125
2266
|
type: NgModule,
|
|
@@ -2138,5 +2279,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
2138
2279
|
* Generated bundle index. Do not edit.
|
|
2139
2280
|
*/
|
|
2140
2281
|
|
|
2141
|
-
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton,
|
|
2282
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBadge, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaFooter, VegaForm, VegaGrid, VegaHeader, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
|
2142
2283
|
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|