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