@heartlandone/vega-angular 1.51.0 → 2.0.0-preview-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/components-module.mjs +5 -5
- package/dist/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +2 -3
- package/dist/esm2020/lib/stencil-generated/components.mjs +451 -471
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +7 -6
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +11 -8
- package/dist/fesm2015/heartlandone-vega-angular.mjs +463 -480
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +463 -480
- 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 +351 -141
- 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 +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/angular-component-lib/utils.ts +1 -2
- package/src/lib/stencil-generated/components.ts +485 -298
- 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,8 +1,8 @@
|
|
|
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
|
-
import { FeatureFlag, VegaEnvManager, FrameworkEnum } from '@heartlandone/vega';
|
|
6
6
|
import { fromEvent } from 'rxjs';
|
|
7
7
|
import { defineCustomElements } from '@heartlandone/vega/loader';
|
|
8
8
|
import { ResizeObserver } from '@juggle/resize-observer';
|
|
@@ -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() {
|
|
@@ -39,9 +41,9 @@ class ValueAccessor {
|
|
|
39
41
|
this.el.nativeElement.disabled = isDisabled;
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
|
-
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
43
|
-
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.
|
|
44
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
44
|
+
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
45
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: ValueAccessor, selector: "vega-value-accessor", host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
46
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
45
47
|
type: Directive,
|
|
46
48
|
args: [{ selector: 'vega-value-accessor' }]
|
|
47
49
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
@@ -54,21 +56,22 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
54
56
|
super(el);
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
|
-
TextValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
58
|
-
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.
|
|
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 });
|
|
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,
|
|
62
64
|
multi: true
|
|
63
65
|
}
|
|
64
66
|
], usesInheritance: true, ngImport: i0 });
|
|
65
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
67
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
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
|
{
|
|
@@ -117,7 +120,7 @@ const proxyInputs = (Cmp, inputs) => {
|
|
|
117
120
|
* We need to consider remove the componentOnReady
|
|
118
121
|
* https://github.com/ionic-team/stencil-ds-output-targets/blob/main/packages/angular-output-target/angular-component-lib/utils.ts#L13
|
|
119
122
|
*/
|
|
120
|
-
if (
|
|
123
|
+
if (this.el.classList.contains('hydrated') || shouldSkipComponentOnReady(this.el.tagName, item)) {
|
|
121
124
|
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
122
125
|
}
|
|
123
126
|
else {
|
|
@@ -171,18 +174,18 @@ 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
|
-
VegaAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
178
|
-
VegaAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
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 });
|
|
181
|
+
VegaAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaAccordion, selector: "vega-accordion", inputs: { accordionTitle: "accordionTitle", drawsBackground: "drawsBackground", expand: "expand", expandIconAlign: "expandIconAlign", groupId: "groupId", iconPosition: "iconPosition", prefixIcon: "prefixIcon", showExpandIcon: "showExpandIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
179
182
|
VegaAccordion = __decorate([
|
|
180
183
|
ProxyCmp({
|
|
181
184
|
defineCustomElementFn: undefined,
|
|
182
185
|
inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
|
|
183
186
|
})
|
|
184
187
|
], VegaAccordion);
|
|
185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaAccordion, decorators: [{
|
|
186
189
|
type: Component,
|
|
187
190
|
args: [{
|
|
188
191
|
selector: 'vega-accordion',
|
|
@@ -198,15 +201,15 @@ let VegaAppFooter = class VegaAppFooter {
|
|
|
198
201
|
this.el = r.nativeElement;
|
|
199
202
|
}
|
|
200
203
|
};
|
|
201
|
-
VegaAppFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
202
|
-
VegaAppFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
204
|
+
VegaAppFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaAppFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
205
|
+
VegaAppFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaAppFooter, selector: "vega-app-footer", inputs: { additionalLinks: "additionalLinks", content: "content", disclaimerUrlTarget: "disclaimerUrlTarget", hideDefaultLinks: "hideDefaultLinks", privacyPolicyLabel: "privacyPolicyLabel", privacyPolicyUrl: "privacyPolicyUrl", privacyPolicyUrlTarget: "privacyPolicyUrlTarget", showDisclaimer: "showDisclaimer", termOfUseLabel: "termOfUseLabel", termOfUseUrl: "termOfUseUrl", termOfUseUrlTarget: "termOfUseUrlTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
203
206
|
VegaAppFooter = __decorate([
|
|
204
207
|
ProxyCmp({
|
|
205
208
|
defineCustomElementFn: undefined,
|
|
206
209
|
inputs: ['additionalLinks', 'content', 'disclaimerUrlTarget', 'hideDefaultLinks', 'privacyPolicyLabel', 'privacyPolicyUrl', 'privacyPolicyUrlTarget', 'showDisclaimer', 'termOfUseLabel', 'termOfUseUrl', 'termOfUseUrlTarget']
|
|
207
210
|
})
|
|
208
211
|
], VegaAppFooter);
|
|
209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaAppFooter, decorators: [{
|
|
210
213
|
type: Component,
|
|
211
214
|
args: [{
|
|
212
215
|
selector: 'vega-app-footer',
|
|
@@ -220,18 +223,18 @@ 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
|
-
VegaAppHeaderButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
227
|
-
VegaAppHeaderButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
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 });
|
|
230
|
+
VegaAppHeaderButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaAppHeaderButton, selector: "vega-app-header-button", inputs: { avatar: "avatar", avatarPosition: "avatarPosition", dropdown: "dropdown", label: "label", selected: "selected", showBorder: "showBorder", showLabel: "showLabel", showMenuArrowIcon: "showMenuArrowIcon", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
228
231
|
VegaAppHeaderButton = __decorate([
|
|
229
232
|
ProxyCmp({
|
|
230
233
|
defineCustomElementFn: undefined,
|
|
231
234
|
inputs: ['avatar', 'avatarPosition', 'dropdown', 'label', 'selected', 'showBorder', 'showLabel', 'showMenuArrowIcon', 'size']
|
|
232
235
|
})
|
|
233
236
|
], VegaAppHeaderButton);
|
|
234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaAppHeaderButton, decorators: [{
|
|
235
238
|
type: Component,
|
|
236
239
|
args: [{
|
|
237
240
|
selector: 'vega-app-header-button',
|
|
@@ -240,53 +243,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", 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
|
-
|
|
253
|
-
ProxyCmp({
|
|
254
|
-
defineCustomElementFn: undefined,
|
|
255
|
-
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
256
|
-
})
|
|
257
|
-
], VegaBadge);
|
|
258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBadge, decorators: [{
|
|
259
|
-
type: Component,
|
|
260
|
-
args: [{
|
|
261
|
-
selector: 'vega-badge',
|
|
262
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
263
|
-
template: '<ng-content></ng-content>',
|
|
264
|
-
inputs: ['bgColor', 'size', 'text', 'textColor']
|
|
265
|
-
}]
|
|
266
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
267
|
-
let VegaBanner = class VegaBanner {
|
|
268
|
-
constructor(c, r, z) {
|
|
269
|
-
this.z = z;
|
|
270
|
-
c.detach();
|
|
271
|
-
this.el = r.nativeElement;
|
|
272
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaLoad', 'vegaClickCTA']);
|
|
273
|
-
}
|
|
274
|
-
};
|
|
275
|
-
VegaBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
276
|
-
VegaBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBanner, selector: "vega-banner", inputs: { mode: "mode", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
277
|
-
VegaBanner = __decorate([
|
|
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([
|
|
278
257
|
ProxyCmp({
|
|
279
258
|
defineCustomElementFn: undefined,
|
|
280
|
-
inputs: ['
|
|
259
|
+
inputs: ['color', 'duration', 'visible']
|
|
281
260
|
})
|
|
282
|
-
],
|
|
283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
261
|
+
], VegaBackdrop);
|
|
262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBackdrop, decorators: [{
|
|
284
263
|
type: Component,
|
|
285
264
|
args: [{
|
|
286
|
-
selector: 'vega-
|
|
265
|
+
selector: 'vega-backdrop',
|
|
287
266
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
288
267
|
template: '<ng-content></ng-content>',
|
|
289
|
-
inputs: ['
|
|
268
|
+
inputs: ['color', 'duration', 'visible']
|
|
290
269
|
}]
|
|
291
270
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
292
271
|
let VegaBarChart = class VegaBarChart {
|
|
@@ -296,15 +275,15 @@ let VegaBarChart = class VegaBarChart {
|
|
|
296
275
|
this.el = r.nativeElement;
|
|
297
276
|
}
|
|
298
277
|
};
|
|
299
|
-
VegaBarChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
300
|
-
VegaBarChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
278
|
+
VegaBarChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBarChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
279
|
+
VegaBarChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaBarChart, selector: "vega-bar-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
301
280
|
VegaBarChart = __decorate([
|
|
302
281
|
ProxyCmp({
|
|
303
282
|
defineCustomElementFn: undefined,
|
|
304
283
|
inputs: ['options']
|
|
305
284
|
})
|
|
306
285
|
], VegaBarChart);
|
|
307
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBarChart, decorators: [{
|
|
308
287
|
type: Component,
|
|
309
288
|
args: [{
|
|
310
289
|
selector: 'vega-bar-chart',
|
|
@@ -320,21 +299,21 @@ let VegaBox = class VegaBox {
|
|
|
320
299
|
this.el = r.nativeElement;
|
|
321
300
|
}
|
|
322
301
|
};
|
|
323
|
-
VegaBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
324
|
-
VegaBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
302
|
+
VegaBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
303
|
+
VegaBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaBox, selector: "vega-box", inputs: { backgroundColor: "backgroundColor", borderColor: "borderColor", display: "display", margin: "margin", padding: "padding", shadow: "shadow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
325
304
|
VegaBox = __decorate([
|
|
326
305
|
ProxyCmp({
|
|
327
306
|
defineCustomElementFn: undefined,
|
|
328
|
-
inputs: ['display', 'margin', 'padding']
|
|
307
|
+
inputs: ['backgroundColor', 'borderColor', 'display', 'margin', 'padding', 'shadow']
|
|
329
308
|
})
|
|
330
309
|
], VegaBox);
|
|
331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBox, decorators: [{
|
|
332
311
|
type: Component,
|
|
333
312
|
args: [{
|
|
334
313
|
selector: 'vega-box',
|
|
335
314
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
336
315
|
template: '<ng-content></ng-content>',
|
|
337
|
-
inputs: ['display', 'margin', 'padding']
|
|
316
|
+
inputs: ['backgroundColor', 'borderColor', 'display', 'margin', 'padding', 'shadow']
|
|
338
317
|
}]
|
|
339
318
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
340
319
|
let VegaBreadcrumb = class VegaBreadcrumb {
|
|
@@ -342,18 +321,18 @@ let VegaBreadcrumb = class VegaBreadcrumb {
|
|
|
342
321
|
this.z = z;
|
|
343
322
|
c.detach();
|
|
344
323
|
this.el = r.nativeElement;
|
|
345
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
324
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
346
325
|
}
|
|
347
326
|
};
|
|
348
|
-
VegaBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
349
|
-
VegaBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
327
|
+
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 });
|
|
328
|
+
VegaBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaBreadcrumb, selector: "vega-breadcrumb", inputs: { items: "items", maxItems: "maxItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
350
329
|
VegaBreadcrumb = __decorate([
|
|
351
330
|
ProxyCmp({
|
|
352
331
|
defineCustomElementFn: undefined,
|
|
353
332
|
inputs: ['items', 'maxItems']
|
|
354
333
|
})
|
|
355
334
|
], VegaBreadcrumb);
|
|
356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaBreadcrumb, decorators: [{
|
|
357
336
|
type: Component,
|
|
358
337
|
args: [{
|
|
359
338
|
selector: 'vega-breadcrumb',
|
|
@@ -367,18 +346,18 @@ let VegaButton = class VegaButton {
|
|
|
367
346
|
this.z = z;
|
|
368
347
|
c.detach();
|
|
369
348
|
this.el = r.nativeElement;
|
|
370
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
349
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
371
350
|
}
|
|
372
351
|
};
|
|
373
|
-
VegaButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
374
|
-
VegaButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
352
|
+
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 });
|
|
353
|
+
VegaButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaButton, selector: "vega-button", inputs: { block: "block", danger: "danger", disabled: "disabled", icon: "icon", iconAlign: "iconAlign", label: "label", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
375
354
|
VegaButton = __decorate([
|
|
376
355
|
ProxyCmp({
|
|
377
356
|
defineCustomElementFn: undefined,
|
|
378
357
|
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'type', 'variant']
|
|
379
358
|
})
|
|
380
359
|
], VegaButton);
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaButton, decorators: [{
|
|
382
361
|
type: Component,
|
|
383
362
|
args: [{
|
|
384
363
|
selector: 'vega-button',
|
|
@@ -392,24 +371,24 @@ let VegaButtonCircle = class VegaButtonCircle {
|
|
|
392
371
|
this.z = z;
|
|
393
372
|
c.detach();
|
|
394
373
|
this.el = r.nativeElement;
|
|
395
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
374
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
396
375
|
}
|
|
397
376
|
};
|
|
398
|
-
VegaButtonCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
399
|
-
VegaButtonCircle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
377
|
+
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 });
|
|
378
|
+
VegaButtonCircle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaButtonCircle, selector: "vega-button-circle", inputs: { danger: "danger", disabled: "disabled", icon: "icon", iconColor: "iconColor", label: "label", showTooltip: "showTooltip", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
400
379
|
VegaButtonCircle = __decorate([
|
|
401
380
|
ProxyCmp({
|
|
402
381
|
defineCustomElementFn: undefined,
|
|
403
|
-
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'size', 'type', 'variant']
|
|
382
|
+
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'type', 'variant']
|
|
404
383
|
})
|
|
405
384
|
], VegaButtonCircle);
|
|
406
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaButtonCircle, decorators: [{
|
|
407
386
|
type: Component,
|
|
408
387
|
args: [{
|
|
409
388
|
selector: 'vega-button-circle',
|
|
410
389
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
411
390
|
template: '<ng-content></ng-content>',
|
|
412
|
-
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'size', 'type', 'variant']
|
|
391
|
+
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'type', 'variant']
|
|
413
392
|
}]
|
|
414
393
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
415
394
|
let VegaButtonLink = class VegaButtonLink {
|
|
@@ -417,18 +396,18 @@ let VegaButtonLink = class VegaButtonLink {
|
|
|
417
396
|
this.z = z;
|
|
418
397
|
c.detach();
|
|
419
398
|
this.el = r.nativeElement;
|
|
420
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
399
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
421
400
|
}
|
|
422
401
|
};
|
|
423
|
-
VegaButtonLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
424
|
-
VegaButtonLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
402
|
+
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 });
|
|
403
|
+
VegaButtonLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaButtonLink, selector: "vega-button-link", inputs: { danger: "danger", disabled: "disabled", eventful: "eventful", icon: "icon", iconAlign: "iconAlign", iconType: "iconType", label: "label", link: "link", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
425
404
|
VegaButtonLink = __decorate([
|
|
426
405
|
ProxyCmp({
|
|
427
406
|
defineCustomElementFn: undefined,
|
|
428
407
|
inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size']
|
|
429
408
|
})
|
|
430
409
|
], VegaButtonLink);
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaButtonLink, decorators: [{
|
|
432
411
|
type: Component,
|
|
433
412
|
args: [{
|
|
434
413
|
selector: 'vega-button-link',
|
|
@@ -444,21 +423,21 @@ let VegaCard = class VegaCard {
|
|
|
444
423
|
this.el = r.nativeElement;
|
|
445
424
|
}
|
|
446
425
|
};
|
|
447
|
-
VegaCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
448
|
-
VegaCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
426
|
+
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 });
|
|
427
|
+
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
428
|
VegaCard = __decorate([
|
|
450
429
|
ProxyCmp({
|
|
451
430
|
defineCustomElementFn: undefined,
|
|
452
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
431
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
453
432
|
})
|
|
454
433
|
], VegaCard);
|
|
455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCard, decorators: [{
|
|
456
435
|
type: Component,
|
|
457
436
|
args: [{
|
|
458
437
|
selector: 'vega-card',
|
|
459
438
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
460
439
|
template: '<ng-content></ng-content>',
|
|
461
|
-
inputs: ['backgroundColor', 'margin', 'padding', '
|
|
440
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
|
462
441
|
}]
|
|
463
442
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
464
443
|
let VegaCarousel = class VegaCarousel {
|
|
@@ -466,11 +445,11 @@ let VegaCarousel = class VegaCarousel {
|
|
|
466
445
|
this.z = z;
|
|
467
446
|
c.detach();
|
|
468
447
|
this.el = r.nativeElement;
|
|
469
|
-
proxyOutputs(this, this.el, ['vegaPageUpdate']);
|
|
448
|
+
proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
|
|
470
449
|
}
|
|
471
450
|
};
|
|
472
|
-
VegaCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
473
|
-
VegaCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
451
|
+
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 });
|
|
452
|
+
VegaCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaCarousel, selector: "vega-carousel", inputs: { canSwipe: "canSwipe", perPage: "perPage", showSlider: "showSlider", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
474
453
|
VegaCarousel = __decorate([
|
|
475
454
|
ProxyCmp({
|
|
476
455
|
defineCustomElementFn: undefined,
|
|
@@ -478,7 +457,7 @@ VegaCarousel = __decorate([
|
|
|
478
457
|
methods: ['nextPage', 'prevPage', 'goToPage']
|
|
479
458
|
})
|
|
480
459
|
], VegaCarousel);
|
|
481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCarousel, decorators: [{
|
|
482
461
|
type: Component,
|
|
483
462
|
args: [{
|
|
484
463
|
selector: 'vega-carousel',
|
|
@@ -492,19 +471,19 @@ let VegaCheckbox = class VegaCheckbox {
|
|
|
492
471
|
this.z = z;
|
|
493
472
|
c.detach();
|
|
494
473
|
this.el = r.nativeElement;
|
|
495
|
-
proxyOutputs(this, this.el, ['
|
|
474
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
496
475
|
}
|
|
497
476
|
};
|
|
498
|
-
VegaCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
499
|
-
VegaCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
477
|
+
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 });
|
|
478
|
+
VegaCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaCheckbox, selector: "vega-checkbox", inputs: { checked: "checked", disabled: "disabled", identifier: "identifier", isValid: "isValid", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
500
479
|
VegaCheckbox = __decorate([
|
|
501
480
|
ProxyCmp({
|
|
502
481
|
defineCustomElementFn: undefined,
|
|
503
482
|
inputs: ['checked', 'disabled', 'identifier', 'isValid', 'required', 'size', 'value'],
|
|
504
|
-
methods: ['
|
|
483
|
+
methods: ['setValue']
|
|
505
484
|
})
|
|
506
485
|
], VegaCheckbox);
|
|
507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCheckbox, decorators: [{
|
|
508
487
|
type: Component,
|
|
509
488
|
args: [{
|
|
510
489
|
selector: 'vega-checkbox',
|
|
@@ -518,25 +497,24 @@ let VegaCheckboxGroup = class VegaCheckboxGroup {
|
|
|
518
497
|
this.z = z;
|
|
519
498
|
c.detach();
|
|
520
499
|
this.el = r.nativeElement;
|
|
521
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
500
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
522
501
|
}
|
|
523
502
|
};
|
|
524
|
-
VegaCheckboxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
525
|
-
VegaCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
503
|
+
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 });
|
|
504
|
+
VegaCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaCheckboxGroup, selector: "vega-checkbox-group", inputs: { disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", required: "required", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
526
505
|
VegaCheckboxGroup = __decorate([
|
|
527
506
|
ProxyCmp({
|
|
528
507
|
defineCustomElementFn: undefined,
|
|
529
|
-
inputs: ['disabled', '
|
|
530
|
-
methods: ['valid']
|
|
508
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
531
509
|
})
|
|
532
510
|
], VegaCheckboxGroup);
|
|
533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCheckboxGroup, decorators: [{
|
|
534
512
|
type: Component,
|
|
535
513
|
args: [{
|
|
536
514
|
selector: 'vega-checkbox-group',
|
|
537
515
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
538
516
|
template: '<ng-content></ng-content>',
|
|
539
|
-
inputs: ['disabled', '
|
|
517
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
540
518
|
}]
|
|
541
519
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
542
520
|
let VegaChip = class VegaChip {
|
|
@@ -544,18 +522,18 @@ let VegaChip = class VegaChip {
|
|
|
544
522
|
this.z = z;
|
|
545
523
|
c.detach();
|
|
546
524
|
this.el = r.nativeElement;
|
|
547
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaClick']);
|
|
525
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
|
|
548
526
|
}
|
|
549
527
|
};
|
|
550
|
-
VegaChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
551
|
-
VegaChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
528
|
+
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 });
|
|
529
|
+
VegaChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaChip, selector: "vega-chip", inputs: { bgColor: "bgColor", chipType: "chipType", clickable: "clickable", icon: "icon", iconAlign: "iconAlign", showCloseIcon: "showCloseIcon", size: "size", statusColor: "statusColor", text: "text", textColor: "textColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
552
530
|
VegaChip = __decorate([
|
|
553
531
|
ProxyCmp({
|
|
554
532
|
defineCustomElementFn: undefined,
|
|
555
533
|
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
|
556
534
|
})
|
|
557
535
|
], VegaChip);
|
|
558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaChip, decorators: [{
|
|
559
537
|
type: Component,
|
|
560
538
|
args: [{
|
|
561
539
|
selector: 'vega-chip',
|
|
@@ -569,19 +547,18 @@ let VegaColorPicker = class VegaColorPicker {
|
|
|
569
547
|
this.z = z;
|
|
570
548
|
c.detach();
|
|
571
549
|
this.el = r.nativeElement;
|
|
572
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
550
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
573
551
|
}
|
|
574
552
|
};
|
|
575
|
-
VegaColorPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
576
|
-
VegaColorPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
553
|
+
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 });
|
|
554
|
+
VegaColorPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaColorPicker, selector: "vega-color-picker", inputs: { autoValidation: "autoValidation", colors: "colors", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", required: "required", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
577
555
|
VegaColorPicker = __decorate([
|
|
578
556
|
ProxyCmp({
|
|
579
557
|
defineCustomElementFn: undefined,
|
|
580
|
-
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
581
|
-
methods: ['valid']
|
|
558
|
+
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
582
559
|
})
|
|
583
560
|
], VegaColorPicker);
|
|
584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaColorPicker, decorators: [{
|
|
585
562
|
type: Component,
|
|
586
563
|
args: [{
|
|
587
564
|
selector: 'vega-color-picker',
|
|
@@ -595,19 +572,19 @@ let VegaComboBox = class VegaComboBox {
|
|
|
595
572
|
this.z = z;
|
|
596
573
|
c.detach();
|
|
597
574
|
this.el = r.nativeElement;
|
|
598
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
575
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCreate', 'create', 'vegaSearch', 'search']);
|
|
599
576
|
}
|
|
600
577
|
};
|
|
601
|
-
VegaComboBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
602
|
-
VegaComboBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
578
|
+
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 });
|
|
579
|
+
VegaComboBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaComboBox, selector: "vega-combo-box", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", placeholder: "placeholder", required: "required", size: "size", source: "source", useDefaultFilter: "useDefaultFilter", validationRules: "validationRules", value: "value", vegaDropdownProps: "vegaDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
603
580
|
VegaComboBox = __decorate([
|
|
604
581
|
ProxyCmp({
|
|
605
582
|
defineCustomElementFn: undefined,
|
|
606
583
|
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
607
|
-
methods: ['close', 'open'
|
|
584
|
+
methods: ['close', 'open']
|
|
608
585
|
})
|
|
609
586
|
], VegaComboBox);
|
|
610
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComboBox, decorators: [{
|
|
611
588
|
type: Component,
|
|
612
589
|
args: [{
|
|
613
590
|
selector: 'vega-combo-box',
|
|
@@ -623,15 +600,15 @@ let VegaCounterBadge = class VegaCounterBadge {
|
|
|
623
600
|
this.el = r.nativeElement;
|
|
624
601
|
}
|
|
625
602
|
};
|
|
626
|
-
VegaCounterBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
627
|
-
VegaCounterBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
603
|
+
VegaCounterBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCounterBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
604
|
+
VegaCounterBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaCounterBadge, selector: "vega-counter-badge", inputs: { color: "color", count: "count", dot: "dot", offset: "offset" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
628
605
|
VegaCounterBadge = __decorate([
|
|
629
606
|
ProxyCmp({
|
|
630
607
|
defineCustomElementFn: undefined,
|
|
631
608
|
inputs: ['color', 'count', 'dot', 'offset']
|
|
632
609
|
})
|
|
633
610
|
], VegaCounterBadge);
|
|
634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
611
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaCounterBadge, decorators: [{
|
|
635
612
|
type: Component,
|
|
636
613
|
args: [{
|
|
637
614
|
selector: 'vega-counter-badge',
|
|
@@ -645,25 +622,47 @@ let VegaDatePicker = class VegaDatePicker {
|
|
|
645
622
|
this.z = z;
|
|
646
623
|
c.detach();
|
|
647
624
|
this.el = r.nativeElement;
|
|
648
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
625
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
649
626
|
}
|
|
650
627
|
};
|
|
651
|
-
VegaDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
652
|
-
VegaDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
628
|
+
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 });
|
|
629
|
+
VegaDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDatePicker, selector: "vega-date-picker", inputs: { allowRepick: "allowRepick", autoValidation: "autoValidation", clearButton: "clearButton", disabled: "disabled", dropdownConfig: "dropdownConfig", format: "format", isValid: "isValid", label: "label", maxDate: "maxDate", minDate: "minDate", mode: "mode", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
653
630
|
VegaDatePicker = __decorate([
|
|
654
631
|
ProxyCmp({
|
|
655
632
|
defineCustomElementFn: undefined,
|
|
656
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', '
|
|
657
|
-
methods: ['
|
|
633
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value'],
|
|
634
|
+
methods: ['doClose', 'doOpen']
|
|
658
635
|
})
|
|
659
636
|
], VegaDatePicker);
|
|
660
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDatePicker, decorators: [{
|
|
661
638
|
type: Component,
|
|
662
639
|
args: [{
|
|
663
640
|
selector: 'vega-date-picker',
|
|
664
641
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
665
642
|
template: '<ng-content></ng-content>',
|
|
666
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', '
|
|
643
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value']
|
|
644
|
+
}]
|
|
645
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
646
|
+
let VegaDatePickerCalendar = class VegaDatePickerCalendar {
|
|
647
|
+
constructor(c, r, z) {
|
|
648
|
+
this.z = z;
|
|
649
|
+
c.detach();
|
|
650
|
+
this.el = r.nativeElement;
|
|
651
|
+
}
|
|
652
|
+
};
|
|
653
|
+
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 });
|
|
654
|
+
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 });
|
|
655
|
+
VegaDatePickerCalendar = __decorate([
|
|
656
|
+
ProxyCmp({
|
|
657
|
+
defineCustomElementFn: undefined
|
|
658
|
+
})
|
|
659
|
+
], VegaDatePickerCalendar);
|
|
660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDatePickerCalendar, decorators: [{
|
|
661
|
+
type: Component,
|
|
662
|
+
args: [{
|
|
663
|
+
selector: 'vega-date-picker-calendar',
|
|
664
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
665
|
+
template: '<ng-content></ng-content>'
|
|
667
666
|
}]
|
|
668
667
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
669
668
|
let VegaDialog = class VegaDialog {
|
|
@@ -673,15 +672,15 @@ let VegaDialog = class VegaDialog {
|
|
|
673
672
|
this.el = r.nativeElement;
|
|
674
673
|
}
|
|
675
674
|
};
|
|
676
|
-
VegaDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
677
|
-
VegaDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
675
|
+
VegaDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
676
|
+
VegaDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDialog, selector: "vega-dialog", inputs: { cancelButton: "cancelButton", content: "content", dialogTitle: "dialogTitle", handleCancel: "handleCancel", handleOk: "handleOk", modalProps: "modalProps", okButton: "okButton", showCancel: "showCancel", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
678
677
|
VegaDialog = __decorate([
|
|
679
678
|
ProxyCmp({
|
|
680
679
|
defineCustomElementFn: undefined,
|
|
681
680
|
inputs: ['cancelButton', 'content', 'dialogTitle', 'handleCancel', 'handleOk', 'modalProps', 'okButton', 'showCancel', 'type']
|
|
682
681
|
})
|
|
683
682
|
], VegaDialog);
|
|
684
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDialog, decorators: [{
|
|
685
684
|
type: Component,
|
|
686
685
|
args: [{
|
|
687
686
|
selector: 'vega-dialog',
|
|
@@ -695,11 +694,11 @@ let VegaDropdown = class VegaDropdown {
|
|
|
695
694
|
this.z = z;
|
|
696
695
|
c.detach();
|
|
697
696
|
this.el = r.nativeElement;
|
|
698
|
-
proxyOutputs(this, this.el, ['
|
|
697
|
+
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch']);
|
|
699
698
|
}
|
|
700
699
|
};
|
|
701
|
-
VegaDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
702
|
-
VegaDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
700
|
+
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 });
|
|
701
|
+
VegaDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDropdown, selector: "vega-dropdown", inputs: { alignment: "alignment", caseSensitive: "caseSensitive", dynamicOption: "dynamicOption", isLoading: "isLoading", itemDisplayRule: "itemDisplayRule", matchContainerHeight: "matchContainerHeight", matchTargetWidth: "matchTargetWidth", maxHeight: "maxHeight", maxWidth: "maxWidth", minWidth: "minWidth", placement: "placement", positionRelativeTo: "positionRelativeTo", prefixIconSlot: "prefixIconSlot", searchable: "searchable", selectType: "selectType", selectedSourceKey: "selectedSourceKey", size: "size", source: "source", translocation: "translocation", trigger: "trigger", useDefaultFilter: "useDefaultFilter" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
703
702
|
VegaDropdown = __decorate([
|
|
704
703
|
ProxyCmp({
|
|
705
704
|
defineCustomElementFn: undefined,
|
|
@@ -707,7 +706,7 @@ VegaDropdown = __decorate([
|
|
|
707
706
|
methods: ['show', 'hide', 'search', 'clearSelection', 'getSelection', 'setSelection']
|
|
708
707
|
})
|
|
709
708
|
], VegaDropdown);
|
|
710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
709
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdown, decorators: [{
|
|
711
710
|
type: Component,
|
|
712
711
|
args: [{
|
|
713
712
|
selector: 'vega-dropdown',
|
|
@@ -716,6 +715,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
716
715
|
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLoading', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter']
|
|
717
716
|
}]
|
|
718
717
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
718
|
+
let VegaDropdownContentBox = class VegaDropdownContentBox {
|
|
719
|
+
constructor(c, r, z) {
|
|
720
|
+
this.z = z;
|
|
721
|
+
c.detach();
|
|
722
|
+
this.el = r.nativeElement;
|
|
723
|
+
}
|
|
724
|
+
};
|
|
725
|
+
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 });
|
|
726
|
+
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 });
|
|
727
|
+
VegaDropdownContentBox = __decorate([
|
|
728
|
+
ProxyCmp({
|
|
729
|
+
defineCustomElementFn: undefined
|
|
730
|
+
})
|
|
731
|
+
], VegaDropdownContentBox);
|
|
732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownContentBox, decorators: [{
|
|
733
|
+
type: Component,
|
|
734
|
+
args: [{
|
|
735
|
+
selector: 'vega-dropdown-content-box',
|
|
736
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
737
|
+
template: '<ng-content></ng-content>'
|
|
738
|
+
}]
|
|
739
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
719
740
|
let VegaDropdownGroup = class VegaDropdownGroup {
|
|
720
741
|
constructor(c, r, z) {
|
|
721
742
|
this.z = z;
|
|
@@ -723,15 +744,15 @@ let VegaDropdownGroup = class VegaDropdownGroup {
|
|
|
723
744
|
this.el = r.nativeElement;
|
|
724
745
|
}
|
|
725
746
|
};
|
|
726
|
-
VegaDropdownGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
727
|
-
VegaDropdownGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
747
|
+
VegaDropdownGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
|
+
VegaDropdownGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDropdownGroup, selector: "vega-dropdown-group", inputs: { divide: "divide", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
728
749
|
VegaDropdownGroup = __decorate([
|
|
729
750
|
ProxyCmp({
|
|
730
751
|
defineCustomElementFn: undefined,
|
|
731
752
|
inputs: ['divide', 'label']
|
|
732
753
|
})
|
|
733
754
|
], VegaDropdownGroup);
|
|
734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownGroup, decorators: [{
|
|
735
756
|
type: Component,
|
|
736
757
|
args: [{
|
|
737
758
|
selector: 'vega-dropdown-group',
|
|
@@ -745,18 +766,18 @@ let VegaDropdownItem = class VegaDropdownItem {
|
|
|
745
766
|
this.z = z;
|
|
746
767
|
c.detach();
|
|
747
768
|
this.el = r.nativeElement;
|
|
748
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
769
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
749
770
|
}
|
|
750
771
|
};
|
|
751
|
-
VegaDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
752
|
-
VegaDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
772
|
+
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 });
|
|
773
|
+
VegaDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaDropdownItem, selector: "vega-dropdown-item", inputs: { count: "count", disabled: "disabled", height: "height", itemKey: "itemKey", label: "label", prefixIcon: "prefixIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
753
774
|
VegaDropdownItem = __decorate([
|
|
754
775
|
ProxyCmp({
|
|
755
776
|
defineCustomElementFn: undefined,
|
|
756
777
|
inputs: ['count', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
|
757
778
|
})
|
|
758
779
|
], VegaDropdownItem);
|
|
759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaDropdownItem, decorators: [{
|
|
760
781
|
type: Component,
|
|
761
782
|
args: [{
|
|
762
783
|
selector: 'vega-dropdown-item',
|
|
@@ -772,15 +793,15 @@ let VegaFieldError = class VegaFieldError {
|
|
|
772
793
|
this.el = r.nativeElement;
|
|
773
794
|
}
|
|
774
795
|
};
|
|
775
|
-
VegaFieldError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
776
|
-
VegaFieldError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
796
|
+
VegaFieldError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFieldError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
797
|
+
VegaFieldError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaFieldError, selector: "vega-field-error", inputs: { message: "message" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
777
798
|
VegaFieldError = __decorate([
|
|
778
799
|
ProxyCmp({
|
|
779
800
|
defineCustomElementFn: undefined,
|
|
780
801
|
inputs: ['message']
|
|
781
802
|
})
|
|
782
803
|
], VegaFieldError);
|
|
783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
804
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFieldError, decorators: [{
|
|
784
805
|
type: Component,
|
|
785
806
|
args: [{
|
|
786
807
|
selector: 'vega-field-error',
|
|
@@ -797,15 +818,15 @@ let VegaFieldLabel = class VegaFieldLabel {
|
|
|
797
818
|
proxyOutputs(this, this.el, ['vegaClick']);
|
|
798
819
|
}
|
|
799
820
|
};
|
|
800
|
-
VegaFieldLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
801
|
-
VegaFieldLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
821
|
+
VegaFieldLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
822
|
+
VegaFieldLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaFieldLabel, selector: "vega-field-label", inputs: { disabled: "disabled", isFieldRequired: "isFieldRequired", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
802
823
|
VegaFieldLabel = __decorate([
|
|
803
824
|
ProxyCmp({
|
|
804
825
|
defineCustomElementFn: undefined,
|
|
805
826
|
inputs: ['disabled', 'isFieldRequired', 'label']
|
|
806
827
|
})
|
|
807
828
|
], VegaFieldLabel);
|
|
808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFieldLabel, decorators: [{
|
|
809
830
|
type: Component,
|
|
810
831
|
args: [{
|
|
811
832
|
selector: 'vega-field-label',
|
|
@@ -821,21 +842,21 @@ let VegaFlex = class VegaFlex {
|
|
|
821
842
|
this.el = r.nativeElement;
|
|
822
843
|
}
|
|
823
844
|
};
|
|
824
|
-
VegaFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
825
|
-
VegaFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
845
|
+
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 });
|
|
846
|
+
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
847
|
VegaFlex = __decorate([
|
|
827
848
|
ProxyCmp({
|
|
828
849
|
defineCustomElementFn: undefined,
|
|
829
|
-
inputs: ['
|
|
850
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
830
851
|
})
|
|
831
852
|
], VegaFlex);
|
|
832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFlex, decorators: [{
|
|
833
854
|
type: Component,
|
|
834
855
|
args: [{
|
|
835
856
|
selector: 'vega-flex',
|
|
836
857
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
837
858
|
template: '<ng-content></ng-content>',
|
|
838
|
-
inputs: ['
|
|
859
|
+
inputs: ['alignItems', 'direction', 'gap', 'justifyContent', 'margin']
|
|
839
860
|
}]
|
|
840
861
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
841
862
|
let VegaFont = class VegaFont {
|
|
@@ -845,15 +866,15 @@ let VegaFont = class VegaFont {
|
|
|
845
866
|
this.el = r.nativeElement;
|
|
846
867
|
}
|
|
847
868
|
};
|
|
848
|
-
VegaFont.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
849
|
-
VegaFont.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
869
|
+
VegaFont.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFont, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
870
|
+
VegaFont.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaFont, selector: "vega-font", inputs: { as: "as", color: "color", disableResponsive: "disableResponsive", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
850
871
|
VegaFont = __decorate([
|
|
851
872
|
ProxyCmp({
|
|
852
873
|
defineCustomElementFn: undefined,
|
|
853
874
|
inputs: ['as', 'color', 'disableResponsive', 'variant']
|
|
854
875
|
})
|
|
855
876
|
], VegaFont);
|
|
856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
877
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaFont, decorators: [{
|
|
857
878
|
type: Component,
|
|
858
879
|
args: [{
|
|
859
880
|
selector: 'vega-font',
|
|
@@ -862,40 +883,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
862
883
|
inputs: ['as', 'color', 'disableResponsive', 'variant']
|
|
863
884
|
}]
|
|
864
885
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
865
|
-
let VegaFooter = class VegaFooter {
|
|
866
|
-
constructor(c, r, z) {
|
|
867
|
-
this.z = z;
|
|
868
|
-
c.detach();
|
|
869
|
-
this.el = r.nativeElement;
|
|
870
|
-
}
|
|
871
|
-
};
|
|
872
|
-
VegaFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
873
|
-
VegaFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFooter, selector: "vega-footer", inputs: { privacyUrl: "privacyUrl", tosUrl: "tosUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
874
|
-
VegaFooter = __decorate([
|
|
875
|
-
ProxyCmp({
|
|
876
|
-
defineCustomElementFn: undefined,
|
|
877
|
-
inputs: ['privacyUrl', 'tosUrl']
|
|
878
|
-
})
|
|
879
|
-
], VegaFooter);
|
|
880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFooter, decorators: [{
|
|
881
|
-
type: Component,
|
|
882
|
-
args: [{
|
|
883
|
-
selector: 'vega-footer',
|
|
884
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
885
|
-
template: '<ng-content></ng-content>',
|
|
886
|
-
inputs: ['privacyUrl', 'tosUrl']
|
|
887
|
-
}]
|
|
888
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
889
886
|
let VegaForm = class VegaForm {
|
|
890
887
|
constructor(c, r, z) {
|
|
891
888
|
this.z = z;
|
|
892
889
|
c.detach();
|
|
893
890
|
this.el = r.nativeElement;
|
|
894
|
-
proxyOutputs(this, this.el, ['vegaValidate', 'vegaFormSubmit', 'vegaFormReset']);
|
|
891
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
|
|
895
892
|
}
|
|
896
893
|
};
|
|
897
|
-
VegaForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
898
|
-
VegaForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
894
|
+
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 });
|
|
895
|
+
VegaForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaForm, selector: "vega-form", inputs: { isTouched: "isTouched", isValid: "isValid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
899
896
|
VegaForm = __decorate([
|
|
900
897
|
ProxyCmp({
|
|
901
898
|
defineCustomElementFn: undefined,
|
|
@@ -903,7 +900,7 @@ VegaForm = __decorate([
|
|
|
903
900
|
methods: ['valid', 'getValue', 'setValue', 'reset']
|
|
904
901
|
})
|
|
905
902
|
], VegaForm);
|
|
906
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaForm, decorators: [{
|
|
907
904
|
type: Component,
|
|
908
905
|
args: [{
|
|
909
906
|
selector: 'vega-form',
|
|
@@ -919,15 +916,15 @@ let VegaGrid = class VegaGrid {
|
|
|
919
916
|
this.el = r.nativeElement;
|
|
920
917
|
}
|
|
921
918
|
};
|
|
922
|
-
VegaGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
923
|
-
VegaGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
919
|
+
VegaGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
920
|
+
VegaGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaGrid, selector: "vega-grid", inputs: { column: "column", gap: "gap", row: "row" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
924
921
|
VegaGrid = __decorate([
|
|
925
922
|
ProxyCmp({
|
|
926
923
|
defineCustomElementFn: undefined,
|
|
927
924
|
inputs: ['column', 'gap', 'row']
|
|
928
925
|
})
|
|
929
926
|
], VegaGrid);
|
|
930
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaGrid, decorators: [{
|
|
931
928
|
type: Component,
|
|
932
929
|
args: [{
|
|
933
930
|
selector: 'vega-grid',
|
|
@@ -936,28 +933,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
936
933
|
inputs: ['column', 'gap', 'row']
|
|
937
934
|
}]
|
|
938
935
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
939
|
-
let VegaHeader = class VegaHeader {
|
|
940
|
-
constructor(c, r, z) {
|
|
941
|
-
this.z = z;
|
|
942
|
-
c.detach();
|
|
943
|
-
this.el = r.nativeElement;
|
|
944
|
-
}
|
|
945
|
-
};
|
|
946
|
-
VegaHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
947
|
-
VegaHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaHeader, selector: "vega-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
948
|
-
VegaHeader = __decorate([
|
|
949
|
-
ProxyCmp({
|
|
950
|
-
defineCustomElementFn: undefined
|
|
951
|
-
})
|
|
952
|
-
], VegaHeader);
|
|
953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaHeader, decorators: [{
|
|
954
|
-
type: Component,
|
|
955
|
-
args: [{
|
|
956
|
-
selector: 'vega-header',
|
|
957
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
958
|
-
template: '<ng-content></ng-content>'
|
|
959
|
-
}]
|
|
960
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
961
936
|
let VegaIcon = class VegaIcon {
|
|
962
937
|
constructor(c, r, z) {
|
|
963
938
|
this.z = z;
|
|
@@ -965,15 +940,15 @@ let VegaIcon = class VegaIcon {
|
|
|
965
940
|
this.el = r.nativeElement;
|
|
966
941
|
}
|
|
967
942
|
};
|
|
968
|
-
VegaIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
969
|
-
VegaIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
943
|
+
VegaIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
944
|
+
VegaIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaIcon, selector: "vega-icon", inputs: { color: "color", icon: "icon", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
970
945
|
VegaIcon = __decorate([
|
|
971
946
|
ProxyCmp({
|
|
972
947
|
defineCustomElementFn: undefined,
|
|
973
948
|
inputs: ['color', 'icon', 'size']
|
|
974
949
|
})
|
|
975
950
|
], VegaIcon);
|
|
976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaIcon, decorators: [{
|
|
977
952
|
type: Component,
|
|
978
953
|
args: [{
|
|
979
954
|
selector: 'vega-icon',
|
|
@@ -987,19 +962,19 @@ let VegaImageUploader = class VegaImageUploader {
|
|
|
987
962
|
this.z = z;
|
|
988
963
|
c.detach();
|
|
989
964
|
this.el = r.nativeElement;
|
|
990
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRemove', 'vegaCancel', '
|
|
965
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel']);
|
|
991
966
|
}
|
|
992
967
|
};
|
|
993
|
-
VegaImageUploader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
994
|
-
VegaImageUploader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
968
|
+
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 });
|
|
969
|
+
VegaImageUploader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaImageUploader, selector: "vega-image-uploader", inputs: { accept: "accept", autoValidation: "autoValidation", disabled: "disabled", isValid: "isValid", required: "required", showPreviewButton: "showPreviewButton", showRemoveButton: "showRemoveButton", showReplaceButton: "showReplaceButton", status: "status", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
995
970
|
VegaImageUploader = __decorate([
|
|
996
971
|
ProxyCmp({
|
|
997
972
|
defineCustomElementFn: undefined,
|
|
998
973
|
inputs: ['accept', 'autoValidation', 'disabled', 'isValid', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value'],
|
|
999
|
-
methods: ['
|
|
974
|
+
methods: ['getContentURL']
|
|
1000
975
|
})
|
|
1001
976
|
], VegaImageUploader);
|
|
1002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaImageUploader, decorators: [{
|
|
1003
978
|
type: Component,
|
|
1004
979
|
args: [{
|
|
1005
980
|
selector: 'vega-image-uploader',
|
|
@@ -1013,25 +988,25 @@ let VegaInput = class VegaInput {
|
|
|
1013
988
|
this.z = z;
|
|
1014
989
|
c.detach();
|
|
1015
990
|
this.el = r.nativeElement;
|
|
1016
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
991
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1017
992
|
}
|
|
1018
993
|
};
|
|
1019
|
-
VegaInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1020
|
-
VegaInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
994
|
+
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 });
|
|
995
|
+
VegaInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaInput, selector: "vega-input", inputs: { autoValidation: "autoValidation", autocomplete: "autocomplete", disabled: "disabled", email: "email", hint: "hint", isValid: "isValid", label: "label", maskConfig: "maskConfig", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", showClearIcon: "showClearIcon", size: "size", type: "type", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1021
996
|
VegaInput = __decorate([
|
|
1022
997
|
ProxyCmp({
|
|
1023
998
|
defineCustomElementFn: undefined,
|
|
1024
|
-
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', '
|
|
1025
|
-
methods: ['
|
|
999
|
+
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'hint', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value'],
|
|
1000
|
+
methods: ['doFocus', 'doBlur']
|
|
1026
1001
|
})
|
|
1027
1002
|
], VegaInput);
|
|
1028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaInput, decorators: [{
|
|
1029
1004
|
type: Component,
|
|
1030
1005
|
args: [{
|
|
1031
1006
|
selector: 'vega-input',
|
|
1032
1007
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1033
1008
|
template: '<ng-content></ng-content>',
|
|
1034
|
-
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', '
|
|
1009
|
+
inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'hint', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value']
|
|
1035
1010
|
}]
|
|
1036
1011
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1037
1012
|
let VegaInputCreditCard = class VegaInputCreditCard {
|
|
@@ -1039,19 +1014,18 @@ let VegaInputCreditCard = class VegaInputCreditCard {
|
|
|
1039
1014
|
this.z = z;
|
|
1040
1015
|
c.detach();
|
|
1041
1016
|
this.el = r.nativeElement;
|
|
1042
|
-
proxyOutputs(this, this.el, ['
|
|
1017
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
|
1043
1018
|
}
|
|
1044
1019
|
};
|
|
1045
|
-
VegaInputCreditCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1046
|
-
VegaInputCreditCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1020
|
+
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 });
|
|
1021
|
+
VegaInputCreditCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaInputCreditCard, selector: "vega-input-credit-card", inputs: { autoValidation: "autoValidation", disabled: "disabled", hideCardNumberOnBlur: "hideCardNumberOnBlur", hint: "hint", isValid: "isValid", label: "label", placeholder: "placeholder", required: "required", size: "size", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1047
1022
|
VegaInputCreditCard = __decorate([
|
|
1048
1023
|
ProxyCmp({
|
|
1049
1024
|
defineCustomElementFn: undefined,
|
|
1050
|
-
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1051
|
-
methods: ['valid']
|
|
1025
|
+
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1052
1026
|
})
|
|
1053
1027
|
], VegaInputCreditCard);
|
|
1054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaInputCreditCard, decorators: [{
|
|
1055
1029
|
type: Component,
|
|
1056
1030
|
args: [{
|
|
1057
1031
|
selector: 'vega-input-credit-card',
|
|
@@ -1065,25 +1039,25 @@ let VegaInputSelect = class VegaInputSelect {
|
|
|
1065
1039
|
this.z = z;
|
|
1066
1040
|
c.detach();
|
|
1067
1041
|
this.el = r.nativeElement;
|
|
1068
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1042
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search']);
|
|
1069
1043
|
}
|
|
1070
1044
|
};
|
|
1071
|
-
VegaInputSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1072
|
-
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1045
|
+
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 });
|
|
1046
|
+
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaInputSelect, selector: "vega-input-select", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", selectType: "selectType", selectedLabel: "selectedLabel", size: "size", source: "source", validationRules: "validationRules", value: "value", vegaDropdownProps: "vegaDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1073
1047
|
VegaInputSelect = __decorate([
|
|
1074
1048
|
ProxyCmp({
|
|
1075
1049
|
defineCustomElementFn: undefined,
|
|
1076
|
-
inputs: ['autoValidation', 'disabled', '
|
|
1077
|
-
methods: ['doClose', 'doOpen', 'doChange'
|
|
1050
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1051
|
+
methods: ['doClose', 'doOpen', 'doChange']
|
|
1078
1052
|
})
|
|
1079
1053
|
], VegaInputSelect);
|
|
1080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1054
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaInputSelect, decorators: [{
|
|
1081
1055
|
type: Component,
|
|
1082
1056
|
args: [{
|
|
1083
1057
|
selector: 'vega-input-select',
|
|
1084
1058
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1085
1059
|
template: '<ng-content></ng-content>',
|
|
1086
|
-
inputs: ['autoValidation', 'disabled', '
|
|
1060
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1087
1061
|
}]
|
|
1088
1062
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1089
1063
|
let VegaItemToggle = class VegaItemToggle {
|
|
@@ -1091,24 +1065,24 @@ let VegaItemToggle = class VegaItemToggle {
|
|
|
1091
1065
|
this.z = z;
|
|
1092
1066
|
c.detach();
|
|
1093
1067
|
this.el = r.nativeElement;
|
|
1094
|
-
proxyOutputs(this, this.el, ['vegaToggleStatus']);
|
|
1068
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
|
|
1095
1069
|
}
|
|
1096
1070
|
};
|
|
1097
|
-
VegaItemToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1098
|
-
VegaItemToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1071
|
+
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 });
|
|
1072
|
+
VegaItemToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaItemToggle, selector: "vega-item-toggle", inputs: { isToggled: "isToggled", itemToggleStatusMap: "itemToggleStatusMap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1099
1073
|
VegaItemToggle = __decorate([
|
|
1100
1074
|
ProxyCmp({
|
|
1101
1075
|
defineCustomElementFn: undefined,
|
|
1102
|
-
inputs: ['
|
|
1076
|
+
inputs: ['isToggled', 'itemToggleStatusMap']
|
|
1103
1077
|
})
|
|
1104
1078
|
], VegaItemToggle);
|
|
1105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaItemToggle, decorators: [{
|
|
1106
1080
|
type: Component,
|
|
1107
1081
|
args: [{
|
|
1108
1082
|
selector: 'vega-item-toggle',
|
|
1109
1083
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1110
1084
|
template: '<ng-content></ng-content>',
|
|
1111
|
-
inputs: ['
|
|
1085
|
+
inputs: ['isToggled', 'itemToggleStatusMap']
|
|
1112
1086
|
}]
|
|
1113
1087
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1114
1088
|
let VegaLeftNav = class VegaLeftNav {
|
|
@@ -1116,11 +1090,11 @@ let VegaLeftNav = class VegaLeftNav {
|
|
|
1116
1090
|
this.z = z;
|
|
1117
1091
|
c.detach();
|
|
1118
1092
|
this.el = r.nativeElement;
|
|
1119
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1093
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
|
1120
1094
|
}
|
|
1121
1095
|
};
|
|
1122
|
-
VegaLeftNav.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1123
|
-
VegaLeftNav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1096
|
+
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 });
|
|
1097
|
+
VegaLeftNav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLeftNav, selector: "vega-left-nav", inputs: { footnote: "footnote", headerConfig: "headerConfig", open: "open", showAsOverlay: "showAsOverlay", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1124
1098
|
VegaLeftNav = __decorate([
|
|
1125
1099
|
ProxyCmp({
|
|
1126
1100
|
defineCustomElementFn: undefined,
|
|
@@ -1128,7 +1102,7 @@ VegaLeftNav = __decorate([
|
|
|
1128
1102
|
methods: ['toggle']
|
|
1129
1103
|
})
|
|
1130
1104
|
], VegaLeftNav);
|
|
1131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNav, decorators: [{
|
|
1132
1106
|
type: Component,
|
|
1133
1107
|
args: [{
|
|
1134
1108
|
selector: 'vega-left-nav',
|
|
@@ -1142,18 +1116,18 @@ let VegaLeftNavGroup = class VegaLeftNavGroup {
|
|
|
1142
1116
|
this.z = z;
|
|
1143
1117
|
c.detach();
|
|
1144
1118
|
this.el = r.nativeElement;
|
|
1145
|
-
proxyOutputs(this, this.el, ['vegaGroupClick']);
|
|
1119
|
+
proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
|
|
1146
1120
|
}
|
|
1147
1121
|
};
|
|
1148
|
-
VegaLeftNavGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1149
|
-
VegaLeftNavGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1122
|
+
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 });
|
|
1123
|
+
VegaLeftNavGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLeftNavGroup, selector: "vega-left-nav-group", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1150
1124
|
VegaLeftNavGroup = __decorate([
|
|
1151
1125
|
ProxyCmp({
|
|
1152
1126
|
defineCustomElementFn: undefined,
|
|
1153
1127
|
inputs: ['icon', 'label']
|
|
1154
1128
|
})
|
|
1155
1129
|
], VegaLeftNavGroup);
|
|
1156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNavGroup, decorators: [{
|
|
1157
1131
|
type: Component,
|
|
1158
1132
|
args: [{
|
|
1159
1133
|
selector: 'vega-left-nav-group',
|
|
@@ -1167,18 +1141,18 @@ let VegaLeftNavLink = class VegaLeftNavLink {
|
|
|
1167
1141
|
this.z = z;
|
|
1168
1142
|
c.detach();
|
|
1169
1143
|
this.el = r.nativeElement;
|
|
1170
|
-
proxyOutputs(this, this.el, ['vegaMenuClick']);
|
|
1144
|
+
proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
|
|
1171
1145
|
}
|
|
1172
1146
|
};
|
|
1173
|
-
VegaLeftNavLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1174
|
-
VegaLeftNavLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1147
|
+
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 });
|
|
1148
|
+
VegaLeftNavLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLeftNavLink, selector: "vega-left-nav-link", inputs: { counterBadge: "counterBadge", icon: "icon", selected: "selected", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1175
1149
|
VegaLeftNavLink = __decorate([
|
|
1176
1150
|
ProxyCmp({
|
|
1177
1151
|
defineCustomElementFn: undefined,
|
|
1178
1152
|
inputs: ['counterBadge', 'icon', 'selected', 'url']
|
|
1179
1153
|
})
|
|
1180
1154
|
], VegaLeftNavLink);
|
|
1181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNavLink, decorators: [{
|
|
1182
1156
|
type: Component,
|
|
1183
1157
|
args: [{
|
|
1184
1158
|
selector: 'vega-left-nav-link',
|
|
@@ -1194,15 +1168,15 @@ let VegaLeftNavSection = class VegaLeftNavSection {
|
|
|
1194
1168
|
this.el = r.nativeElement;
|
|
1195
1169
|
}
|
|
1196
1170
|
};
|
|
1197
|
-
VegaLeftNavSection.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1198
|
-
VegaLeftNavSection.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1171
|
+
VegaLeftNavSection.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNavSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1172
|
+
VegaLeftNavSection.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLeftNavSection, selector: "vega-left-nav-section", inputs: { sectionHeader: "sectionHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1199
1173
|
VegaLeftNavSection = __decorate([
|
|
1200
1174
|
ProxyCmp({
|
|
1201
1175
|
defineCustomElementFn: undefined,
|
|
1202
1176
|
inputs: ['sectionHeader']
|
|
1203
1177
|
})
|
|
1204
1178
|
], VegaLeftNavSection);
|
|
1205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLeftNavSection, decorators: [{
|
|
1206
1180
|
type: Component,
|
|
1207
1181
|
args: [{
|
|
1208
1182
|
selector: 'vega-left-nav-section',
|
|
@@ -1218,8 +1192,8 @@ let VegaLineChart = class VegaLineChart {
|
|
|
1218
1192
|
this.el = r.nativeElement;
|
|
1219
1193
|
}
|
|
1220
1194
|
};
|
|
1221
|
-
VegaLineChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1222
|
-
VegaLineChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1195
|
+
VegaLineChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLineChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1196
|
+
VegaLineChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLineChart, selector: "vega-line-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1223
1197
|
VegaLineChart = __decorate([
|
|
1224
1198
|
ProxyCmp({
|
|
1225
1199
|
defineCustomElementFn: undefined,
|
|
@@ -1227,7 +1201,7 @@ VegaLineChart = __decorate([
|
|
|
1227
1201
|
methods: ['reRender']
|
|
1228
1202
|
})
|
|
1229
1203
|
], VegaLineChart);
|
|
1230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLineChart, decorators: [{
|
|
1231
1205
|
type: Component,
|
|
1232
1206
|
args: [{
|
|
1233
1207
|
selector: 'vega-line-chart',
|
|
@@ -1236,6 +1210,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1236
1210
|
inputs: ['options']
|
|
1237
1211
|
}]
|
|
1238
1212
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1213
|
+
let VegaLoaderWrapper = class VegaLoaderWrapper {
|
|
1214
|
+
constructor(c, r, z) {
|
|
1215
|
+
this.z = z;
|
|
1216
|
+
c.detach();
|
|
1217
|
+
this.el = r.nativeElement;
|
|
1218
|
+
}
|
|
1219
|
+
};
|
|
1220
|
+
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 });
|
|
1221
|
+
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 });
|
|
1222
|
+
VegaLoaderWrapper = __decorate([
|
|
1223
|
+
ProxyCmp({
|
|
1224
|
+
defineCustomElementFn: undefined
|
|
1225
|
+
})
|
|
1226
|
+
], VegaLoaderWrapper);
|
|
1227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLoaderWrapper, decorators: [{
|
|
1228
|
+
type: Component,
|
|
1229
|
+
args: [{
|
|
1230
|
+
selector: 'vega-loader-wrapper',
|
|
1231
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1232
|
+
template: '<ng-content></ng-content>'
|
|
1233
|
+
}]
|
|
1234
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1239
1235
|
let VegaLoadingIndicator = class VegaLoadingIndicator {
|
|
1240
1236
|
constructor(c, r, z) {
|
|
1241
1237
|
this.z = z;
|
|
@@ -1243,15 +1239,15 @@ let VegaLoadingIndicator = class VegaLoadingIndicator {
|
|
|
1243
1239
|
this.el = r.nativeElement;
|
|
1244
1240
|
}
|
|
1245
1241
|
};
|
|
1246
|
-
VegaLoadingIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1247
|
-
VegaLoadingIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1242
|
+
VegaLoadingIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLoadingIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1243
|
+
VegaLoadingIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaLoadingIndicator, selector: "vega-loading-indicator", inputs: { hint: "hint", label: "label", mode: "mode", percent: "percent", shape: "shape", size: "size", status: "status" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1248
1244
|
VegaLoadingIndicator = __decorate([
|
|
1249
1245
|
ProxyCmp({
|
|
1250
1246
|
defineCustomElementFn: undefined,
|
|
1251
1247
|
inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
|
|
1252
1248
|
})
|
|
1253
1249
|
], VegaLoadingIndicator);
|
|
1254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaLoadingIndicator, decorators: [{
|
|
1255
1251
|
type: Component,
|
|
1256
1252
|
args: [{
|
|
1257
1253
|
selector: 'vega-loading-indicator',
|
|
@@ -1265,11 +1261,11 @@ let VegaModal = class VegaModal {
|
|
|
1265
1261
|
this.z = z;
|
|
1266
1262
|
c.detach();
|
|
1267
1263
|
this.el = r.nativeElement;
|
|
1268
|
-
proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);
|
|
1264
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
|
|
1269
1265
|
}
|
|
1270
1266
|
};
|
|
1271
|
-
VegaModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1272
|
-
VegaModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1267
|
+
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 });
|
|
1268
|
+
VegaModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaModal, selector: "vega-modal", inputs: { animation: "animation", backdrop: "backdrop", backdropColor: "backdropColor", contentMaxHeight: "contentMaxHeight", handleClose: "handleClose", isVerticallyCenter: "isVerticallyCenter", modalTitle: "modalTitle", open: "open", padding: "padding", showCloseButton: "showCloseButton", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1273
1269
|
VegaModal = __decorate([
|
|
1274
1270
|
ProxyCmp({
|
|
1275
1271
|
defineCustomElementFn: undefined,
|
|
@@ -1277,7 +1273,7 @@ VegaModal = __decorate([
|
|
|
1277
1273
|
methods: ['modal']
|
|
1278
1274
|
})
|
|
1279
1275
|
], VegaModal);
|
|
1280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1276
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaModal, decorators: [{
|
|
1281
1277
|
type: Component,
|
|
1282
1278
|
args: [{
|
|
1283
1279
|
selector: 'vega-modal',
|
|
@@ -1293,15 +1289,15 @@ let VegaNavCard = class VegaNavCard {
|
|
|
1293
1289
|
this.el = r.nativeElement;
|
|
1294
1290
|
}
|
|
1295
1291
|
};
|
|
1296
|
-
VegaNavCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1297
|
-
VegaNavCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1292
|
+
VegaNavCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaNavCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1293
|
+
VegaNavCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaNavCard, selector: "vega-nav-card", inputs: { maxHeight: "maxHeight", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1298
1294
|
VegaNavCard = __decorate([
|
|
1299
1295
|
ProxyCmp({
|
|
1300
1296
|
defineCustomElementFn: undefined,
|
|
1301
1297
|
inputs: ['maxHeight', 'source']
|
|
1302
1298
|
})
|
|
1303
1299
|
], VegaNavCard);
|
|
1304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1300
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaNavCard, decorators: [{
|
|
1305
1301
|
type: Component,
|
|
1306
1302
|
args: [{
|
|
1307
1303
|
selector: 'vega-nav-card',
|
|
@@ -1310,53 +1306,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1310
1306
|
inputs: ['maxHeight', 'source']
|
|
1311
1307
|
}]
|
|
1312
1308
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1313
|
-
let
|
|
1309
|
+
let VegaPageNotification = class VegaPageNotification {
|
|
1314
1310
|
constructor(c, r, z) {
|
|
1315
1311
|
this.z = z;
|
|
1316
1312
|
c.detach();
|
|
1317
1313
|
this.el = r.nativeElement;
|
|
1318
1314
|
}
|
|
1319
1315
|
};
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1316
|
+
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 });
|
|
1317
|
+
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 });
|
|
1318
|
+
VegaPageNotification = __decorate([
|
|
1323
1319
|
ProxyCmp({
|
|
1324
1320
|
defineCustomElementFn: undefined,
|
|
1325
|
-
inputs: ['
|
|
1321
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1322
|
+
methods: ['close']
|
|
1326
1323
|
})
|
|
1327
|
-
],
|
|
1328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1324
|
+
], VegaPageNotification);
|
|
1325
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPageNotification, decorators: [{
|
|
1329
1326
|
type: Component,
|
|
1330
1327
|
args: [{
|
|
1331
|
-
selector: 'vega-
|
|
1328
|
+
selector: 'vega-page-notification',
|
|
1332
1329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1333
1330
|
template: '<ng-content></ng-content>',
|
|
1334
|
-
inputs: ['
|
|
1331
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1335
1332
|
}]
|
|
1336
1333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1337
|
-
let
|
|
1334
|
+
let VegaPageNotificationList = class VegaPageNotificationList {
|
|
1338
1335
|
constructor(c, r, z) {
|
|
1339
1336
|
this.z = z;
|
|
1340
1337
|
c.detach();
|
|
1341
1338
|
this.el = r.nativeElement;
|
|
1342
1339
|
}
|
|
1343
1340
|
};
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1341
|
+
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 });
|
|
1342
|
+
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 });
|
|
1343
|
+
VegaPageNotificationList = __decorate([
|
|
1347
1344
|
ProxyCmp({
|
|
1348
|
-
defineCustomElementFn: undefined
|
|
1349
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
|
1350
|
-
methods: ['close']
|
|
1345
|
+
defineCustomElementFn: undefined
|
|
1351
1346
|
})
|
|
1352
|
-
],
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1347
|
+
], VegaPageNotificationList);
|
|
1348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPageNotificationList, decorators: [{
|
|
1354
1349
|
type: Component,
|
|
1355
1350
|
args: [{
|
|
1356
|
-
selector: 'vega-page-notification',
|
|
1351
|
+
selector: 'vega-page-notification-list',
|
|
1357
1352
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1358
|
-
template: '<ng-content></ng-content>'
|
|
1359
|
-
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
|
1353
|
+
template: '<ng-content></ng-content>'
|
|
1360
1354
|
}]
|
|
1361
1355
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1362
1356
|
let VegaPagination = class VegaPagination {
|
|
@@ -1364,18 +1358,18 @@ let VegaPagination = class VegaPagination {
|
|
|
1364
1358
|
this.z = z;
|
|
1365
1359
|
c.detach();
|
|
1366
1360
|
this.el = r.nativeElement;
|
|
1367
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaPageSizeChange']);
|
|
1361
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
|
|
1368
1362
|
}
|
|
1369
1363
|
};
|
|
1370
|
-
VegaPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1371
|
-
VegaPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1364
|
+
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 });
|
|
1365
|
+
VegaPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaPagination, selector: "vega-pagination", inputs: { current: "current", extensions: "extensions", pageSize: "pageSize", pageSizeSelectorOptions: "pageSizeSelectorOptions", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1372
1366
|
VegaPagination = __decorate([
|
|
1373
1367
|
ProxyCmp({
|
|
1374
1368
|
defineCustomElementFn: undefined,
|
|
1375
1369
|
inputs: ['current', 'extensions', 'pageSize', 'pageSizeSelectorOptions', 'total']
|
|
1376
1370
|
})
|
|
1377
1371
|
], VegaPagination);
|
|
1378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPagination, decorators: [{
|
|
1379
1373
|
type: Component,
|
|
1380
1374
|
args: [{
|
|
1381
1375
|
selector: 'vega-pagination',
|
|
@@ -1391,8 +1385,8 @@ let VegaPieChart = class VegaPieChart {
|
|
|
1391
1385
|
this.el = r.nativeElement;
|
|
1392
1386
|
}
|
|
1393
1387
|
};
|
|
1394
|
-
VegaPieChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1395
|
-
VegaPieChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1388
|
+
VegaPieChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPieChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1389
|
+
VegaPieChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaPieChart, selector: "vega-pie-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1396
1390
|
VegaPieChart = __decorate([
|
|
1397
1391
|
ProxyCmp({
|
|
1398
1392
|
defineCustomElementFn: undefined,
|
|
@@ -1400,7 +1394,7 @@ VegaPieChart = __decorate([
|
|
|
1400
1394
|
methods: ['reRender']
|
|
1401
1395
|
})
|
|
1402
1396
|
], VegaPieChart);
|
|
1403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPieChart, decorators: [{
|
|
1404
1398
|
type: Component,
|
|
1405
1399
|
args: [{
|
|
1406
1400
|
selector: 'vega-pie-chart',
|
|
@@ -1414,11 +1408,11 @@ let VegaPopover = class VegaPopover {
|
|
|
1414
1408
|
this.z = z;
|
|
1415
1409
|
c.detach();
|
|
1416
1410
|
this.el = r.nativeElement;
|
|
1417
|
-
proxyOutputs(this, this.el, ['vegaPopoverShow', 'vegaPopoverHide']);
|
|
1411
|
+
proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
|
|
1418
1412
|
}
|
|
1419
1413
|
};
|
|
1420
|
-
VegaPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1421
|
-
VegaPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1414
|
+
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 });
|
|
1415
|
+
VegaPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaPopover, selector: "vega-popover", inputs: { alignment: "alignment", placement: "placement", positionRelativeTo: "positionRelativeTo", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1422
1416
|
VegaPopover = __decorate([
|
|
1423
1417
|
ProxyCmp({
|
|
1424
1418
|
defineCustomElementFn: undefined,
|
|
@@ -1426,7 +1420,7 @@ VegaPopover = __decorate([
|
|
|
1426
1420
|
methods: ['show', 'hide']
|
|
1427
1421
|
})
|
|
1428
1422
|
], VegaPopover);
|
|
1429
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPopover, decorators: [{
|
|
1430
1424
|
type: Component,
|
|
1431
1425
|
args: [{
|
|
1432
1426
|
selector: 'vega-popover',
|
|
@@ -1435,16 +1429,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1435
1429
|
inputs: ['alignment', 'placement', 'positionRelativeTo', 'size']
|
|
1436
1430
|
}]
|
|
1437
1431
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1432
|
+
let VegaPopoverContentBox = class VegaPopoverContentBox {
|
|
1433
|
+
constructor(c, r, z) {
|
|
1434
|
+
this.z = z;
|
|
1435
|
+
c.detach();
|
|
1436
|
+
this.el = r.nativeElement;
|
|
1437
|
+
}
|
|
1438
|
+
};
|
|
1439
|
+
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 });
|
|
1440
|
+
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 });
|
|
1441
|
+
VegaPopoverContentBox = __decorate([
|
|
1442
|
+
ProxyCmp({
|
|
1443
|
+
defineCustomElementFn: undefined
|
|
1444
|
+
})
|
|
1445
|
+
], VegaPopoverContentBox);
|
|
1446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaPopoverContentBox, decorators: [{
|
|
1447
|
+
type: Component,
|
|
1448
|
+
args: [{
|
|
1449
|
+
selector: 'vega-popover-content-box',
|
|
1450
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1451
|
+
template: '<ng-content></ng-content>'
|
|
1452
|
+
}]
|
|
1453
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1438
1454
|
let VegaProgressTracker = class VegaProgressTracker {
|
|
1439
1455
|
constructor(c, r, z) {
|
|
1440
1456
|
this.z = z;
|
|
1441
1457
|
c.detach();
|
|
1442
1458
|
this.el = r.nativeElement;
|
|
1443
|
-
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);
|
|
1459
|
+
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
|
|
1444
1460
|
}
|
|
1445
1461
|
};
|
|
1446
|
-
VegaProgressTracker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1447
|
-
VegaProgressTracker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1462
|
+
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 });
|
|
1463
|
+
VegaProgressTracker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaProgressTracker, selector: "vega-progress-tracker", inputs: { canClickStep: "canClickStep", completedStepArray: "completedStepArray", current: "current", direction: "direction", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1448
1464
|
VegaProgressTracker = __decorate([
|
|
1449
1465
|
ProxyCmp({
|
|
1450
1466
|
defineCustomElementFn: undefined,
|
|
@@ -1452,7 +1468,7 @@ VegaProgressTracker = __decorate([
|
|
|
1452
1468
|
methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']
|
|
1453
1469
|
})
|
|
1454
1470
|
], VegaProgressTracker);
|
|
1455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaProgressTracker, decorators: [{
|
|
1456
1472
|
type: Component,
|
|
1457
1473
|
args: [{
|
|
1458
1474
|
selector: 'vega-progress-tracker',
|
|
@@ -1466,18 +1482,18 @@ let VegaRadio = class VegaRadio {
|
|
|
1466
1482
|
this.z = z;
|
|
1467
1483
|
c.detach();
|
|
1468
1484
|
this.el = r.nativeElement;
|
|
1469
|
-
proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);
|
|
1485
|
+
proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
|
|
1470
1486
|
}
|
|
1471
1487
|
};
|
|
1472
|
-
VegaRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1473
|
-
VegaRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1488
|
+
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 });
|
|
1489
|
+
VegaRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaRadio, selector: "vega-radio", inputs: { checked: "checked", disabled: "disabled", name: "name", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1474
1490
|
VegaRadio = __decorate([
|
|
1475
1491
|
ProxyCmp({
|
|
1476
1492
|
defineCustomElementFn: undefined,
|
|
1477
1493
|
inputs: ['checked', 'disabled', 'name', 'size', 'value']
|
|
1478
1494
|
})
|
|
1479
1495
|
], VegaRadio);
|
|
1480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaRadio, decorators: [{
|
|
1481
1497
|
type: Component,
|
|
1482
1498
|
args: [{
|
|
1483
1499
|
selector: 'vega-radio',
|
|
@@ -1491,100 +1507,24 @@ let VegaRadioGroup = class VegaRadioGroup {
|
|
|
1491
1507
|
this.z = z;
|
|
1492
1508
|
c.detach();
|
|
1493
1509
|
this.el = r.nativeElement;
|
|
1494
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1510
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1495
1511
|
}
|
|
1496
1512
|
};
|
|
1497
|
-
VegaRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1498
|
-
VegaRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1513
|
+
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 });
|
|
1514
|
+
VegaRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaRadioGroup, selector: "vega-radio-group", inputs: { disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", name: "name", required: "required", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1499
1515
|
VegaRadioGroup = __decorate([
|
|
1500
1516
|
ProxyCmp({
|
|
1501
1517
|
defineCustomElementFn: undefined,
|
|
1502
|
-
inputs: ['disabled', '
|
|
1503
|
-
methods: ['valid']
|
|
1518
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
1504
1519
|
})
|
|
1505
1520
|
], VegaRadioGroup);
|
|
1506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaRadioGroup, decorators: [{
|
|
1507
1522
|
type: Component,
|
|
1508
1523
|
args: [{
|
|
1509
1524
|
selector: 'vega-radio-group',
|
|
1510
1525
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1511
1526
|
template: '<ng-content></ng-content>',
|
|
1512
|
-
inputs: ['disabled', '
|
|
1513
|
-
}]
|
|
1514
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1515
|
-
let VegaSidenav = class VegaSidenav {
|
|
1516
|
-
constructor(c, r, z) {
|
|
1517
|
-
this.z = z;
|
|
1518
|
-
c.detach();
|
|
1519
|
-
this.el = r.nativeElement;
|
|
1520
|
-
proxyOutputs(this, this.el, ['vegaStateUpdate']);
|
|
1521
|
-
}
|
|
1522
|
-
};
|
|
1523
|
-
VegaSidenav.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1524
|
-
VegaSidenav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSidenav, selector: "vega-sidenav", inputs: { footnote: "footnote", headerConfig: "headerConfig", openByDefault: "openByDefault", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1525
|
-
VegaSidenav = __decorate([
|
|
1526
|
-
ProxyCmp({
|
|
1527
|
-
defineCustomElementFn: undefined,
|
|
1528
|
-
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],
|
|
1529
|
-
methods: ['toggle']
|
|
1530
|
-
})
|
|
1531
|
-
], VegaSidenav);
|
|
1532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenav, decorators: [{
|
|
1533
|
-
type: Component,
|
|
1534
|
-
args: [{
|
|
1535
|
-
selector: 'vega-sidenav',
|
|
1536
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1537
|
-
template: '<ng-content></ng-content>',
|
|
1538
|
-
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']
|
|
1539
|
-
}]
|
|
1540
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1541
|
-
let VegaSidenavGroup = class VegaSidenavGroup {
|
|
1542
|
-
constructor(c, r, z) {
|
|
1543
|
-
this.z = z;
|
|
1544
|
-
c.detach();
|
|
1545
|
-
this.el = r.nativeElement;
|
|
1546
|
-
}
|
|
1547
|
-
};
|
|
1548
|
-
VegaSidenavGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1549
|
-
VegaSidenavGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSidenavGroup, selector: "vega-sidenav-group", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1550
|
-
VegaSidenavGroup = __decorate([
|
|
1551
|
-
ProxyCmp({
|
|
1552
|
-
defineCustomElementFn: undefined,
|
|
1553
|
-
inputs: ['icon', 'label']
|
|
1554
|
-
})
|
|
1555
|
-
], VegaSidenavGroup);
|
|
1556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavGroup, decorators: [{
|
|
1557
|
-
type: Component,
|
|
1558
|
-
args: [{
|
|
1559
|
-
selector: 'vega-sidenav-group',
|
|
1560
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1561
|
-
template: '<ng-content></ng-content>',
|
|
1562
|
-
inputs: ['icon', 'label']
|
|
1563
|
-
}]
|
|
1564
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1565
|
-
let VegaSidenavLink = class VegaSidenavLink {
|
|
1566
|
-
constructor(c, r, z) {
|
|
1567
|
-
this.z = z;
|
|
1568
|
-
c.detach();
|
|
1569
|
-
this.el = r.nativeElement;
|
|
1570
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1571
|
-
}
|
|
1572
|
-
};
|
|
1573
|
-
VegaSidenavLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1574
|
-
VegaSidenavLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSidenavLink, selector: "vega-sidenav-link", inputs: { icon: "icon", selected: "selected", showSideBarOnClickLink: "showSideBarOnClickLink", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1575
|
-
VegaSidenavLink = __decorate([
|
|
1576
|
-
ProxyCmp({
|
|
1577
|
-
defineCustomElementFn: undefined,
|
|
1578
|
-
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
|
1579
|
-
})
|
|
1580
|
-
], VegaSidenavLink);
|
|
1581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavLink, decorators: [{
|
|
1582
|
-
type: Component,
|
|
1583
|
-
args: [{
|
|
1584
|
-
selector: 'vega-sidenav-link',
|
|
1585
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1586
|
-
template: '<ng-content></ng-content>',
|
|
1587
|
-
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
|
1527
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
1588
1528
|
}]
|
|
1589
1529
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1590
1530
|
let VegaSlotContainer = class VegaSlotContainer {
|
|
@@ -1594,14 +1534,14 @@ let VegaSlotContainer = class VegaSlotContainer {
|
|
|
1594
1534
|
this.el = r.nativeElement;
|
|
1595
1535
|
}
|
|
1596
1536
|
};
|
|
1597
|
-
VegaSlotContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1598
|
-
VegaSlotContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1537
|
+
VegaSlotContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaSlotContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1538
|
+
VegaSlotContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaSlotContainer, selector: "vega-slot-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1599
1539
|
VegaSlotContainer = __decorate([
|
|
1600
1540
|
ProxyCmp({
|
|
1601
1541
|
defineCustomElementFn: undefined
|
|
1602
1542
|
})
|
|
1603
1543
|
], VegaSlotContainer);
|
|
1604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaSlotContainer, decorators: [{
|
|
1605
1545
|
type: Component,
|
|
1606
1546
|
args: [{
|
|
1607
1547
|
selector: 'vega-slot-container',
|
|
@@ -1614,25 +1554,24 @@ let VegaStepper = class VegaStepper {
|
|
|
1614
1554
|
this.z = z;
|
|
1615
1555
|
c.detach();
|
|
1616
1556
|
this.el = r.nativeElement;
|
|
1617
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1557
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1618
1558
|
}
|
|
1619
1559
|
};
|
|
1620
|
-
VegaStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1621
|
-
VegaStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1560
|
+
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 });
|
|
1561
|
+
VegaStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaStepper, selector: "vega-stepper", inputs: { autoValidation: "autoValidation", buttonVariant: "buttonVariant", disabled: "disabled", inputDisabled: "inputDisabled", isValid: "isValid", label: "label", max: "max", min: "min", stepperId: "stepperId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1622
1562
|
VegaStepper = __decorate([
|
|
1623
1563
|
ProxyCmp({
|
|
1624
1564
|
defineCustomElementFn: undefined,
|
|
1625
|
-
inputs: ['autoValidation', 'buttonVariant', 'disabled', '
|
|
1626
|
-
methods: ['valid']
|
|
1565
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
|
1627
1566
|
})
|
|
1628
1567
|
], VegaStepper);
|
|
1629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaStepper, decorators: [{
|
|
1630
1569
|
type: Component,
|
|
1631
1570
|
args: [{
|
|
1632
1571
|
selector: 'vega-stepper',
|
|
1633
1572
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1634
1573
|
template: '<ng-content></ng-content>',
|
|
1635
|
-
inputs: ['autoValidation', 'buttonVariant', 'disabled', '
|
|
1574
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
|
1636
1575
|
}]
|
|
1637
1576
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1638
1577
|
let VegaTabGroup = class VegaTabGroup {
|
|
@@ -1640,18 +1579,18 @@ let VegaTabGroup = class VegaTabGroup {
|
|
|
1640
1579
|
this.z = z;
|
|
1641
1580
|
c.detach();
|
|
1642
1581
|
this.el = r.nativeElement;
|
|
1643
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1582
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1644
1583
|
}
|
|
1645
1584
|
};
|
|
1646
|
-
VegaTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1647
|
-
VegaTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1585
|
+
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 });
|
|
1586
|
+
VegaTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTabGroup, selector: "vega-tab-group", inputs: { gap: "gap", positionRelativeTo: "positionRelativeTo", selectedTabDataTarget: "selectedTabDataTarget", showCloseButton: "showCloseButton", tabItems: "tabItems", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1648
1587
|
VegaTabGroup = __decorate([
|
|
1649
1588
|
ProxyCmp({
|
|
1650
1589
|
defineCustomElementFn: undefined,
|
|
1651
1590
|
inputs: ['gap', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
|
|
1652
1591
|
})
|
|
1653
1592
|
], VegaTabGroup);
|
|
1654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTabGroup, decorators: [{
|
|
1655
1594
|
type: Component,
|
|
1656
1595
|
args: [{
|
|
1657
1596
|
selector: 'vega-tab-group',
|
|
@@ -1667,15 +1606,15 @@ let VegaTabGroupPanel = class VegaTabGroupPanel {
|
|
|
1667
1606
|
this.el = r.nativeElement;
|
|
1668
1607
|
}
|
|
1669
1608
|
};
|
|
1670
|
-
VegaTabGroupPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1671
|
-
VegaTabGroupPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1609
|
+
VegaTabGroupPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTabGroupPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1610
|
+
VegaTabGroupPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTabGroupPanel, selector: "vega-tab-group-panel", inputs: { isActive: "isActive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1672
1611
|
VegaTabGroupPanel = __decorate([
|
|
1673
1612
|
ProxyCmp({
|
|
1674
1613
|
defineCustomElementFn: undefined,
|
|
1675
1614
|
inputs: ['isActive']
|
|
1676
1615
|
})
|
|
1677
1616
|
], VegaTabGroupPanel);
|
|
1678
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTabGroupPanel, decorators: [{
|
|
1679
1618
|
type: Component,
|
|
1680
1619
|
args: [{
|
|
1681
1620
|
selector: 'vega-tab-group-panel',
|
|
@@ -1689,11 +1628,11 @@ let VegaTable = class VegaTable {
|
|
|
1689
1628
|
this.z = z;
|
|
1690
1629
|
c.detach();
|
|
1691
1630
|
this.el = r.nativeElement;
|
|
1692
|
-
proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick', 'vegaSelectChange', 'vegaSelectAllChange']);
|
|
1631
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange']);
|
|
1693
1632
|
}
|
|
1694
1633
|
};
|
|
1695
|
-
VegaTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1696
|
-
VegaTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1634
|
+
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 });
|
|
1635
|
+
VegaTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTable, selector: "vega-table", inputs: { columnDivider: "columnDivider", columns: "columns", dataSource: "dataSource", density: "density", emptyDescription: "emptyDescription", paddingX: "paddingX", pagination: "pagination", rowClickable: "rowClickable", rowDivider: "rowDivider", rowExpandable: "rowExpandable", rowKey: "rowKey", rowSelection: "rowSelection", scrollConfig: "scrollConfig", showHeader: "showHeader", striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1697
1636
|
VegaTable = __decorate([
|
|
1698
1637
|
ProxyCmp({
|
|
1699
1638
|
defineCustomElementFn: undefined,
|
|
@@ -1701,7 +1640,7 @@ VegaTable = __decorate([
|
|
|
1701
1640
|
methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection', 'startRowEditMode', 'stopRowEditMode', 'stopAllRowEditMode', 'getRowData', 'getRowsData', 'getFormRef', 'addNewRow', 'saveEditRow', 'saveAllEditRows', 'getEditingRowsKey', 'removeRow']
|
|
1702
1641
|
})
|
|
1703
1642
|
], VegaTable);
|
|
1704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1643
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTable, decorators: [{
|
|
1705
1644
|
type: Component,
|
|
1706
1645
|
args: [{
|
|
1707
1646
|
selector: 'vega-table',
|
|
@@ -1717,14 +1656,14 @@ let VegaTableBody = class VegaTableBody {
|
|
|
1717
1656
|
this.el = r.nativeElement;
|
|
1718
1657
|
}
|
|
1719
1658
|
};
|
|
1720
|
-
VegaTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1721
|
-
VegaTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1659
|
+
VegaTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1660
|
+
VegaTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableBody, selector: "vega-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1722
1661
|
VegaTableBody = __decorate([
|
|
1723
1662
|
ProxyCmp({
|
|
1724
1663
|
defineCustomElementFn: undefined
|
|
1725
1664
|
})
|
|
1726
1665
|
], VegaTableBody);
|
|
1727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableBody, decorators: [{
|
|
1728
1667
|
type: Component,
|
|
1729
1668
|
args: [{
|
|
1730
1669
|
selector: 'vega-table-body',
|
|
@@ -1739,21 +1678,21 @@ let VegaTableCell = class VegaTableCell {
|
|
|
1739
1678
|
this.el = r.nativeElement;
|
|
1740
1679
|
}
|
|
1741
1680
|
};
|
|
1742
|
-
VegaTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1743
|
-
VegaTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1681
|
+
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 });
|
|
1682
|
+
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
1683
|
VegaTableCell = __decorate([
|
|
1745
1684
|
ProxyCmp({
|
|
1746
1685
|
defineCustomElementFn: undefined,
|
|
1747
|
-
inputs: ['breakpoint', '
|
|
1686
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1748
1687
|
})
|
|
1749
1688
|
], VegaTableCell);
|
|
1750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableCell, decorators: [{
|
|
1751
1690
|
type: Component,
|
|
1752
1691
|
args: [{
|
|
1753
1692
|
selector: 'vega-table-cell',
|
|
1754
1693
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1755
1694
|
template: '<ng-content></ng-content>',
|
|
1756
|
-
inputs: ['breakpoint', '
|
|
1695
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
|
1757
1696
|
}]
|
|
1758
1697
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1759
1698
|
let VegaTableExpandRow = class VegaTableExpandRow {
|
|
@@ -1763,15 +1702,15 @@ let VegaTableExpandRow = class VegaTableExpandRow {
|
|
|
1763
1702
|
this.el = r.nativeElement;
|
|
1764
1703
|
}
|
|
1765
1704
|
};
|
|
1766
|
-
VegaTableExpandRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1767
|
-
VegaTableExpandRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1705
|
+
VegaTableExpandRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableExpandRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1706
|
+
VegaTableExpandRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableExpandRow, selector: "vega-table-expand-row", inputs: { rowKey: "rowKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1768
1707
|
VegaTableExpandRow = __decorate([
|
|
1769
1708
|
ProxyCmp({
|
|
1770
1709
|
defineCustomElementFn: undefined,
|
|
1771
1710
|
inputs: ['rowKey']
|
|
1772
1711
|
})
|
|
1773
1712
|
], VegaTableExpandRow);
|
|
1774
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1713
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableExpandRow, decorators: [{
|
|
1775
1714
|
type: Component,
|
|
1776
1715
|
args: [{
|
|
1777
1716
|
selector: 'vega-table-expand-row',
|
|
@@ -1787,14 +1726,14 @@ let VegaTableHead = class VegaTableHead {
|
|
|
1787
1726
|
this.el = r.nativeElement;
|
|
1788
1727
|
}
|
|
1789
1728
|
};
|
|
1790
|
-
VegaTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1791
|
-
VegaTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1729
|
+
VegaTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1730
|
+
VegaTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableHead, selector: "vega-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1792
1731
|
VegaTableHead = __decorate([
|
|
1793
1732
|
ProxyCmp({
|
|
1794
1733
|
defineCustomElementFn: undefined
|
|
1795
1734
|
})
|
|
1796
1735
|
], VegaTableHead);
|
|
1797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1736
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableHead, decorators: [{
|
|
1798
1737
|
type: Component,
|
|
1799
1738
|
args: [{
|
|
1800
1739
|
selector: 'vega-table-head',
|
|
@@ -1807,18 +1746,18 @@ let VegaTableHeadCell = class VegaTableHeadCell {
|
|
|
1807
1746
|
this.z = z;
|
|
1808
1747
|
c.detach();
|
|
1809
1748
|
this.el = r.nativeElement;
|
|
1810
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1749
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1811
1750
|
}
|
|
1812
1751
|
};
|
|
1813
|
-
VegaTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1814
|
-
VegaTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1752
|
+
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 });
|
|
1753
|
+
VegaTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableHeadCell, selector: "vega-table-head-cell", inputs: { breakpoint: "breakpoint", sorter: "sorter", textAlign: "textAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1815
1754
|
VegaTableHeadCell = __decorate([
|
|
1816
1755
|
ProxyCmp({
|
|
1817
1756
|
defineCustomElementFn: undefined,
|
|
1818
1757
|
inputs: ['breakpoint', 'sorter', 'textAlign', 'width']
|
|
1819
1758
|
})
|
|
1820
1759
|
], VegaTableHeadCell);
|
|
1821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1760
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableHeadCell, decorators: [{
|
|
1822
1761
|
type: Component,
|
|
1823
1762
|
args: [{
|
|
1824
1763
|
selector: 'vega-table-head-cell',
|
|
@@ -1834,15 +1773,15 @@ let VegaTableHeadRow = class VegaTableHeadRow {
|
|
|
1834
1773
|
this.el = r.nativeElement;
|
|
1835
1774
|
}
|
|
1836
1775
|
};
|
|
1837
|
-
VegaTableHeadRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1838
|
-
VegaTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1776
|
+
VegaTableHeadRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableHeadRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1777
|
+
VegaTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableHeadRow, selector: "vega-table-head-row", inputs: { hideSelectAll: "hideSelectAll", selectAllDisabled: "selectAllDisabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1839
1778
|
VegaTableHeadRow = __decorate([
|
|
1840
1779
|
ProxyCmp({
|
|
1841
1780
|
defineCustomElementFn: undefined,
|
|
1842
1781
|
inputs: ['hideSelectAll', 'selectAllDisabled']
|
|
1843
1782
|
})
|
|
1844
1783
|
], VegaTableHeadRow);
|
|
1845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableHeadRow, decorators: [{
|
|
1846
1785
|
type: Component,
|
|
1847
1786
|
args: [{
|
|
1848
1787
|
selector: 'vega-table-head-row',
|
|
@@ -1856,18 +1795,18 @@ let VegaTableRow = class VegaTableRow {
|
|
|
1856
1795
|
this.z = z;
|
|
1857
1796
|
c.detach();
|
|
1858
1797
|
this.el = r.nativeElement;
|
|
1859
|
-
proxyOutputs(this, this.el, ['vegaClick']);
|
|
1798
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
|
1860
1799
|
}
|
|
1861
1800
|
};
|
|
1862
|
-
VegaTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1863
|
-
VegaTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1801
|
+
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 });
|
|
1802
|
+
VegaTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTableRow, selector: "vega-table-row", inputs: { rowKey: "rowKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1864
1803
|
VegaTableRow = __decorate([
|
|
1865
1804
|
ProxyCmp({
|
|
1866
1805
|
defineCustomElementFn: undefined,
|
|
1867
1806
|
inputs: ['rowKey']
|
|
1868
1807
|
})
|
|
1869
1808
|
], VegaTableRow);
|
|
1870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTableRow, decorators: [{
|
|
1871
1810
|
type: Component,
|
|
1872
1811
|
args: [{
|
|
1873
1812
|
selector: 'vega-table-row',
|
|
@@ -1883,15 +1822,15 @@ let VegaText = class VegaText {
|
|
|
1883
1822
|
this.el = r.nativeElement;
|
|
1884
1823
|
}
|
|
1885
1824
|
};
|
|
1886
|
-
VegaText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1887
|
-
VegaText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1825
|
+
VegaText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1826
|
+
VegaText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaText, selector: "vega-text", inputs: { overflow: "overflow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1888
1827
|
VegaText = __decorate([
|
|
1889
1828
|
ProxyCmp({
|
|
1890
1829
|
defineCustomElementFn: undefined,
|
|
1891
1830
|
inputs: ['overflow']
|
|
1892
1831
|
})
|
|
1893
1832
|
], VegaText);
|
|
1894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaText, decorators: [{
|
|
1895
1834
|
type: Component,
|
|
1896
1835
|
args: [{
|
|
1897
1836
|
selector: 'vega-text',
|
|
@@ -1905,19 +1844,18 @@ let VegaTextarea = class VegaTextarea {
|
|
|
1905
1844
|
this.z = z;
|
|
1906
1845
|
c.detach();
|
|
1907
1846
|
this.el = r.nativeElement;
|
|
1908
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1847
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur']);
|
|
1909
1848
|
}
|
|
1910
1849
|
};
|
|
1911
|
-
VegaTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1912
|
-
VegaTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1850
|
+
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 });
|
|
1851
|
+
VegaTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTextarea, selector: "vega-textarea", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", maxLength: "maxLength", minLength: "minLength", placeholder: "placeholder", required: "required", showCounter: "showCounter", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1913
1852
|
VegaTextarea = __decorate([
|
|
1914
1853
|
ProxyCmp({
|
|
1915
1854
|
defineCustomElementFn: undefined,
|
|
1916
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'showCounter', 'validationRules', 'value']
|
|
1917
|
-
methods: ['valid']
|
|
1855
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'showCounter', 'validationRules', 'value']
|
|
1918
1856
|
})
|
|
1919
1857
|
], VegaTextarea);
|
|
1920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTextarea, decorators: [{
|
|
1921
1859
|
type: Component,
|
|
1922
1860
|
args: [{
|
|
1923
1861
|
selector: 'vega-textarea',
|
|
@@ -1931,19 +1869,18 @@ let VegaTimePicker = class VegaTimePicker {
|
|
|
1931
1869
|
this.z = z;
|
|
1932
1870
|
c.detach();
|
|
1933
1871
|
this.el = r.nativeElement;
|
|
1934
|
-
proxyOutputs(this, this.el, ['vegaChange', '
|
|
1872
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1935
1873
|
}
|
|
1936
1874
|
};
|
|
1937
|
-
VegaTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1938
|
-
VegaTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1875
|
+
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 });
|
|
1876
|
+
VegaTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTimePicker, selector: "vega-time-picker", inputs: { autoValidation: "autoValidation", disabled: "disabled", increments: "increments", isValid: "isValid", label: "label", mode: "mode", placeholder: "placeholder", positionRelativeTo: "positionRelativeTo", required: "required", size: "size", timeFormat: "timeFormat", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1939
1877
|
VegaTimePicker = __decorate([
|
|
1940
1878
|
ProxyCmp({
|
|
1941
1879
|
defineCustomElementFn: undefined,
|
|
1942
|
-
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
1943
|
-
methods: ['valid']
|
|
1880
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
1944
1881
|
})
|
|
1945
1882
|
], VegaTimePicker);
|
|
1946
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTimePicker, decorators: [{
|
|
1947
1884
|
type: Component,
|
|
1948
1885
|
args: [{
|
|
1949
1886
|
selector: 'vega-time-picker',
|
|
@@ -1952,23 +1889,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1952
1889
|
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
|
1953
1890
|
}]
|
|
1954
1891
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1892
|
+
let VegaTimePickerDropdown = class VegaTimePickerDropdown {
|
|
1893
|
+
constructor(c, r, z) {
|
|
1894
|
+
this.z = z;
|
|
1895
|
+
c.detach();
|
|
1896
|
+
this.el = r.nativeElement;
|
|
1897
|
+
}
|
|
1898
|
+
};
|
|
1899
|
+
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 });
|
|
1900
|
+
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 });
|
|
1901
|
+
VegaTimePickerDropdown = __decorate([
|
|
1902
|
+
ProxyCmp({
|
|
1903
|
+
defineCustomElementFn: undefined
|
|
1904
|
+
})
|
|
1905
|
+
], VegaTimePickerDropdown);
|
|
1906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTimePickerDropdown, decorators: [{
|
|
1907
|
+
type: Component,
|
|
1908
|
+
args: [{
|
|
1909
|
+
selector: 'vega-time-picker-dropdown',
|
|
1910
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1911
|
+
template: '<ng-content></ng-content>'
|
|
1912
|
+
}]
|
|
1913
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1955
1914
|
let VegaToggleSwitch = class VegaToggleSwitch {
|
|
1956
1915
|
constructor(c, r, z) {
|
|
1957
1916
|
this.z = z;
|
|
1958
1917
|
c.detach();
|
|
1959
1918
|
this.el = r.nativeElement;
|
|
1960
|
-
proxyOutputs(this, this.el, ['vegaChange']);
|
|
1919
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1961
1920
|
}
|
|
1962
1921
|
};
|
|
1963
|
-
VegaToggleSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1964
|
-
VegaToggleSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1922
|
+
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 });
|
|
1923
|
+
VegaToggleSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaToggleSwitch, selector: "vega-toggle-switch", inputs: { checked: "checked", disabled: "disabled", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1965
1924
|
VegaToggleSwitch = __decorate([
|
|
1966
1925
|
ProxyCmp({
|
|
1967
1926
|
defineCustomElementFn: undefined,
|
|
1968
1927
|
inputs: ['checked', 'disabled', 'label', 'size']
|
|
1969
1928
|
})
|
|
1970
1929
|
], VegaToggleSwitch);
|
|
1971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1930
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaToggleSwitch, decorators: [{
|
|
1972
1931
|
type: Component,
|
|
1973
1932
|
args: [{
|
|
1974
1933
|
selector: 'vega-toggle-switch',
|
|
@@ -1984,15 +1943,15 @@ let VegaTooltip = class VegaTooltip {
|
|
|
1984
1943
|
this.el = r.nativeElement;
|
|
1985
1944
|
}
|
|
1986
1945
|
};
|
|
1987
|
-
VegaTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
1988
|
-
VegaTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1946
|
+
VegaTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1947
|
+
VegaTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaTooltip, selector: "vega-tooltip", inputs: { alignment: "alignment", content: "content", maxWidth: "maxWidth", minWidth: "minWidth", placement: "placement", positionRelativeTo: "positionRelativeTo", size: "size", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1989
1948
|
VegaTooltip = __decorate([
|
|
1990
1949
|
ProxyCmp({
|
|
1991
1950
|
defineCustomElementFn: undefined,
|
|
1992
1951
|
inputs: ['alignment', 'content', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'trigger']
|
|
1993
1952
|
})
|
|
1994
1953
|
], VegaTooltip);
|
|
1995
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
1954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTooltip, decorators: [{
|
|
1996
1955
|
type: Component,
|
|
1997
1956
|
args: [{
|
|
1998
1957
|
selector: 'vega-tooltip',
|
|
@@ -2001,6 +1960,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2001
1960
|
inputs: ['alignment', 'content', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'trigger']
|
|
2002
1961
|
}]
|
|
2003
1962
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1963
|
+
let VegaTooltipContentBox = class VegaTooltipContentBox {
|
|
1964
|
+
constructor(c, r, z) {
|
|
1965
|
+
this.z = z;
|
|
1966
|
+
c.detach();
|
|
1967
|
+
this.el = r.nativeElement;
|
|
1968
|
+
}
|
|
1969
|
+
};
|
|
1970
|
+
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 });
|
|
1971
|
+
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 });
|
|
1972
|
+
VegaTooltipContentBox = __decorate([
|
|
1973
|
+
ProxyCmp({
|
|
1974
|
+
defineCustomElementFn: undefined,
|
|
1975
|
+
inputs: ['content']
|
|
1976
|
+
})
|
|
1977
|
+
], VegaTooltipContentBox);
|
|
1978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaTooltipContentBox, decorators: [{
|
|
1979
|
+
type: Component,
|
|
1980
|
+
args: [{
|
|
1981
|
+
selector: 'vega-tooltip-content-box',
|
|
1982
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1983
|
+
template: '<ng-content></ng-content>',
|
|
1984
|
+
inputs: ['content']
|
|
1985
|
+
}]
|
|
1986
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2004
1987
|
let VegaVirtualScroll = class VegaVirtualScroll {
|
|
2005
1988
|
constructor(c, r, z) {
|
|
2006
1989
|
this.z = z;
|
|
@@ -2008,8 +1991,8 @@ let VegaVirtualScroll = class VegaVirtualScroll {
|
|
|
2008
1991
|
this.el = r.nativeElement;
|
|
2009
1992
|
}
|
|
2010
1993
|
};
|
|
2011
|
-
VegaVirtualScroll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
2012
|
-
VegaVirtualScroll.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.
|
|
1994
|
+
VegaVirtualScroll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaVirtualScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1995
|
+
VegaVirtualScroll.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: VegaVirtualScroll, selector: "vega-virtual-scroll", inputs: { approxItemHeight: "approxItemHeight", renderItem: "renderItem", source: "source", sourceItemIdentifier: "sourceItemIdentifier", thresholdOfWork: "thresholdOfWork", viewportMaxHeight: "viewportMaxHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2013
1996
|
VegaVirtualScroll = __decorate([
|
|
2014
1997
|
ProxyCmp({
|
|
2015
1998
|
defineCustomElementFn: undefined,
|
|
@@ -2017,7 +2000,7 @@ VegaVirtualScroll = __decorate([
|
|
|
2017
2000
|
methods: ['scrollToIndex']
|
|
2018
2001
|
})
|
|
2019
2002
|
], VegaVirtualScroll);
|
|
2020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
2003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaVirtualScroll, decorators: [{
|
|
2021
2004
|
type: Component,
|
|
2022
2005
|
args: [{
|
|
2023
2006
|
selector: 'vega-virtual-scroll',
|
|
@@ -2030,8 +2013,7 @@ var VegaComponents = [
|
|
|
2030
2013
|
VegaAccordion,
|
|
2031
2014
|
VegaAppFooter,
|
|
2032
2015
|
VegaAppHeaderButton,
|
|
2033
|
-
|
|
2034
|
-
VegaBanner,
|
|
2016
|
+
VegaBackdrop,
|
|
2035
2017
|
VegaBarChart,
|
|
2036
2018
|
VegaBox,
|
|
2037
2019
|
VegaBreadcrumb,
|
|
@@ -2047,18 +2029,18 @@ var VegaComponents = [
|
|
|
2047
2029
|
VegaComboBox,
|
|
2048
2030
|
VegaCounterBadge,
|
|
2049
2031
|
VegaDatePicker,
|
|
2032
|
+
VegaDatePickerCalendar,
|
|
2050
2033
|
VegaDialog,
|
|
2051
2034
|
VegaDropdown,
|
|
2035
|
+
VegaDropdownContentBox,
|
|
2052
2036
|
VegaDropdownGroup,
|
|
2053
2037
|
VegaDropdownItem,
|
|
2054
2038
|
VegaFieldError,
|
|
2055
2039
|
VegaFieldLabel,
|
|
2056
2040
|
VegaFlex,
|
|
2057
2041
|
VegaFont,
|
|
2058
|
-
VegaFooter,
|
|
2059
2042
|
VegaForm,
|
|
2060
2043
|
VegaGrid,
|
|
2061
|
-
VegaHeader,
|
|
2062
2044
|
VegaIcon,
|
|
2063
2045
|
VegaImageUploader,
|
|
2064
2046
|
VegaInput,
|
|
@@ -2070,20 +2052,19 @@ var VegaComponents = [
|
|
|
2070
2052
|
VegaLeftNavLink,
|
|
2071
2053
|
VegaLeftNavSection,
|
|
2072
2054
|
VegaLineChart,
|
|
2055
|
+
VegaLoaderWrapper,
|
|
2073
2056
|
VegaLoadingIndicator,
|
|
2074
2057
|
VegaModal,
|
|
2075
2058
|
VegaNavCard,
|
|
2076
|
-
VegaOption,
|
|
2077
2059
|
VegaPageNotification,
|
|
2060
|
+
VegaPageNotificationList,
|
|
2078
2061
|
VegaPagination,
|
|
2079
2062
|
VegaPieChart,
|
|
2080
2063
|
VegaPopover,
|
|
2064
|
+
VegaPopoverContentBox,
|
|
2081
2065
|
VegaProgressTracker,
|
|
2082
2066
|
VegaRadio,
|
|
2083
2067
|
VegaRadioGroup,
|
|
2084
|
-
VegaSidenav,
|
|
2085
|
-
VegaSidenavGroup,
|
|
2086
|
-
VegaSidenavLink,
|
|
2087
2068
|
VegaSlotContainer,
|
|
2088
2069
|
VegaStepper,
|
|
2089
2070
|
VegaTabGroup,
|
|
@@ -2099,8 +2080,10 @@ var VegaComponents = [
|
|
|
2099
2080
|
VegaText,
|
|
2100
2081
|
VegaTextarea,
|
|
2101
2082
|
VegaTimePicker,
|
|
2083
|
+
VegaTimePickerDropdown,
|
|
2102
2084
|
VegaToggleSwitch,
|
|
2103
2085
|
VegaTooltip,
|
|
2086
|
+
VegaTooltipContentBox,
|
|
2104
2087
|
VegaVirtualScroll,
|
|
2105
2088
|
];
|
|
2106
2089
|
|
|
@@ -2118,10 +2101,10 @@ class VegaComponentModule {
|
|
|
2118
2101
|
}
|
|
2119
2102
|
}
|
|
2120
2103
|
}
|
|
2121
|
-
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.
|
|
2122
|
-
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.
|
|
2123
|
-
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.
|
|
2124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
2104
|
+
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2105
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, 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, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, 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, 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, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
2106
|
+
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
|
2107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: VegaComponentModule, decorators: [{
|
|
2125
2108
|
type: NgModule,
|
|
2126
2109
|
args: [{
|
|
2127
2110
|
declarations: [...VegaComponents, TextValueAccessor, ValueAccessor],
|
|
@@ -2138,5 +2121,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2138
2121
|
* Generated bundle index. Do not edit.
|
|
2139
2122
|
*/
|
|
2140
2123
|
|
|
2141
|
-
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton,
|
|
2124
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, 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, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
|
2142
2125
|
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|