@heartlandone/vega-angular-sandbox-pr-2327-5b91658d7c54c195ad59a3ecd2b440a347320dd1 2.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.browserslistrc +16 -0
- package/.prettierrc.js +13 -0
- package/LICENSE +13 -0
- package/README.md +86 -0
- package/dist/LICENSE +13 -0
- package/dist/README.md +86 -0
- package/dist/esm2020/heartlandone-vega-angular.mjs +5 -0
- package/dist/esm2020/lib/components-module.mjs +35 -0
- package/dist/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +89 -0
- package/dist/esm2020/lib/stencil-generated/components.mjs +2908 -0
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +36 -0
- package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +47 -0
- package/dist/esm2020/public-api.mjs +8 -0
- package/dist/esm2020/testing/heartlandone-vega-angular-testing.mjs +5 -0
- package/dist/esm2020/testing/index.mjs +84 -0
- package/dist/esm2020/testing/public-api.mjs +5 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs +97 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2015/heartlandone-vega-angular.mjs +3000 -0
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -0
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs +94 -0
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2020/heartlandone-vega-angular.mjs +3000 -0
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -0
- package/dist/heartlandone-vega-angular.d.ts +5 -0
- package/dist/lib/components-module.d.ts +11 -0
- package/dist/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/dist/lib/stencil-generated/components.d.ts +1990 -0
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +8 -0
- package/dist/lib/stencil-generated/value-accessor.d.ts +18 -0
- package/dist/package.json +50 -0
- package/dist/public-api.d.ts +4 -0
- package/dist/testing/heartlandone-vega-angular-testing.d.ts +5 -0
- package/dist/testing/index.d.ts +7 -0
- package/dist/testing/package.json +10 -0
- package/dist/testing/public-api.d.ts +1 -0
- package/karma.conf.js +44 -0
- package/ng-package.json +11 -0
- package/package.json +38 -0
- package/src/lib/components-module.ts +27 -0
- package/src/lib/stencil-generated/angular-component-lib/utils.ts +101 -0
- package/src/lib/stencil-generated/components.ts +3582 -0
- package/src/lib/stencil-generated/text-value-accessor.ts +25 -0
- package/src/lib/stencil-generated/value-accessor.ts +45 -0
- package/src/public-api.ts +7 -0
- package/src/scripts/stencil-post-build-script.js +132 -0
- package/src/test.ts +27 -0
- package/testing/index.ts +115 -0
- package/testing/ng-package.json +8 -0
- package/testing/public-api.ts +4 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
@@ -0,0 +1,3000 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Directive, HostListener, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
3
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
4
|
+
import { VegaEventManager, FeatureFlag, VegaEnvManager, FrameworkEnum } from '@heartlandone/vega-sandbox-pr-2327-5b91658d7c54c195ad59a3ecd2b440a347320dd1';
|
5
|
+
import { __decorate } from 'tslib';
|
6
|
+
import { fromEvent } from 'rxjs';
|
7
|
+
import { defineCustomElements } from '@heartlandone/vega-sandbox-pr-2327-5b91658d7c54c195ad59a3ecd2b440a347320dd1/loader';
|
8
|
+
import { ResizeObserver } from '@juggle/resize-observer';
|
9
|
+
|
10
|
+
class ValueAccessor {
|
11
|
+
constructor(el) {
|
12
|
+
this.el = el;
|
13
|
+
this.onChange = () => {
|
14
|
+
/**/
|
15
|
+
};
|
16
|
+
this.onTouched = () => {
|
17
|
+
/**/
|
18
|
+
};
|
19
|
+
}
|
20
|
+
writeValue(value) {
|
21
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
22
|
+
}
|
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
|
+
}
|
29
|
+
}
|
30
|
+
}
|
31
|
+
_handleBlurEvent() {
|
32
|
+
this.onTouched();
|
33
|
+
}
|
34
|
+
registerOnChange(fn) {
|
35
|
+
this.onChange = fn;
|
36
|
+
}
|
37
|
+
registerOnTouched(fn) {
|
38
|
+
this.onTouched = fn;
|
39
|
+
}
|
40
|
+
setDisabledState(isDisabled) {
|
41
|
+
this.el.nativeElement.disabled = isDisabled;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
45
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: ValueAccessor, selector: "vega-value-accessor", host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
46
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ValueAccessor, decorators: [{
|
47
|
+
type: Directive,
|
48
|
+
args: [{ selector: 'vega-value-accessor' }]
|
49
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
50
|
+
type: HostListener,
|
51
|
+
args: ['focusout']
|
52
|
+
}] } });
|
53
|
+
|
54
|
+
class TextValueAccessor extends ValueAccessor {
|
55
|
+
constructor(el) {
|
56
|
+
super(el);
|
57
|
+
}
|
58
|
+
}
|
59
|
+
TextValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
60
|
+
TextValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TextValueAccessor, selector: "vega-checkbox, vega-checkbox-group, vega-color-picker, vega-combo-box, vega-date-picker, vega-file-uploader, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-numeric, vega-input-phone-number, vega-input-range, vega-input-select, vega-radio-group, vega-rich-text-editor, vega-selection-chip-group, vega-selection-tile-group, vega-signature-capture, vega-stepper, vega-textarea, vega-time-picker, vega-toggle-switch", host: { listeners: { "vegaChange": "handleChangeEvent($event.currentTarget.value, 'vega')", "change": "handleChangeEvent($event.currentTarget.value, 'native')" } }, providers: [
|
61
|
+
{
|
62
|
+
provide: NG_VALUE_ACCESSOR,
|
63
|
+
useExisting: TextValueAccessor,
|
64
|
+
multi: true
|
65
|
+
}
|
66
|
+
], usesInheritance: true, ngImport: i0 });
|
67
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TextValueAccessor, decorators: [{
|
68
|
+
type: Directive,
|
69
|
+
args: [{
|
70
|
+
/* tslint:disable-next-line:directive-selector */
|
71
|
+
selector: 'vega-checkbox, vega-checkbox-group, vega-color-picker, vega-combo-box, vega-date-picker, vega-file-uploader, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-numeric, vega-input-phone-number, vega-input-range, vega-input-select, vega-radio-group, vega-rich-text-editor, vega-selection-chip-group, vega-selection-tile-group, vega-signature-capture, vega-stepper, vega-textarea, vega-time-picker, vega-toggle-switch',
|
72
|
+
host: {
|
73
|
+
'(vegaChange)': "handleChangeEvent($event.currentTarget.value, 'vega')",
|
74
|
+
'(change)': "handleChangeEvent($event.currentTarget.value, 'native')"
|
75
|
+
},
|
76
|
+
providers: [
|
77
|
+
{
|
78
|
+
provide: NG_VALUE_ACCESSOR,
|
79
|
+
useExisting: TextValueAccessor,
|
80
|
+
multi: true
|
81
|
+
}
|
82
|
+
]
|
83
|
+
}]
|
84
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
85
|
+
|
86
|
+
/* eslint-disable */
|
87
|
+
/**
|
88
|
+
* ALL: all properties should skip the componentOnReady check
|
89
|
+
* Set<string>: only properties in the Set should skip the componentOnReady check
|
90
|
+
*/
|
91
|
+
const COMPONENT_ON_READY_IGNORE_MAP = new Map([
|
92
|
+
['VEGA-TABLE', 'ALL'],
|
93
|
+
['VEGA-TABLE-HEAD', 'ALL'],
|
94
|
+
['VEGA-TABLE-HEAD-ROW', 'ALL'],
|
95
|
+
['VEGA-TABLE-HEAD-CELL', 'ALL'],
|
96
|
+
['VEGA-TABLE-BODY', 'ALL'],
|
97
|
+
['VEGA-TABLE-ROW', 'ALL'],
|
98
|
+
['VEGA-TABLE-CELL', 'ALL'],
|
99
|
+
['VEGA-TABLE-EXPAND-ROW', 'ALL'],
|
100
|
+
]);
|
101
|
+
const shouldSkipComponentOnReady = (componentName, propName) => {
|
102
|
+
const props = COMPONENT_ON_READY_IGNORE_MAP.get(componentName);
|
103
|
+
if (!props)
|
104
|
+
return false;
|
105
|
+
return props === 'ALL' || props.has(propName);
|
106
|
+
};
|
107
|
+
const proxyInputs = (Cmp, inputs) => {
|
108
|
+
const Prototype = Cmp.prototype;
|
109
|
+
inputs.forEach(item => {
|
110
|
+
Object.defineProperty(Prototype, item, {
|
111
|
+
get() {
|
112
|
+
return this.el[item];
|
113
|
+
},
|
114
|
+
set(val) {
|
115
|
+
// Link issues: https://gethired.atlassian.net/browse/GHUI-331
|
116
|
+
// add a beforehand checking to make sure value is only set when component is loaded
|
117
|
+
/*
|
118
|
+
* Update(2023/10/28): The value should be set directly, so that the initial value can be get in componentWillLoad.
|
119
|
+
* Link issue https://gethired.atlassian.net/browse/VD-1810
|
120
|
+
* We need to consider remove the componentOnReady
|
121
|
+
* https://github.com/ionic-team/stencil-ds-output-targets/blob/main/packages/angular-output-target/angular-component-lib/utils.ts#L13
|
122
|
+
*/
|
123
|
+
if (FeatureFlag.isEnabled('VEGA_FRAMEWORK.PREVENT_CALL_WATCH_METHOD_BEFORE_COMPONENT_LOAD') || this.el.classList.contains('hydrated') || shouldSkipComponentOnReady(this.el.tagName, item)) {
|
124
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
125
|
+
}
|
126
|
+
else {
|
127
|
+
this.el.componentOnReady().then(() => {
|
128
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
129
|
+
});
|
130
|
+
}
|
131
|
+
}
|
132
|
+
});
|
133
|
+
});
|
134
|
+
};
|
135
|
+
const proxyMethods = (Cmp, methods) => {
|
136
|
+
const Prototype = Cmp.prototype;
|
137
|
+
methods.forEach(methodName => {
|
138
|
+
Prototype[methodName] = function () {
|
139
|
+
const args = arguments;
|
140
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
141
|
+
};
|
142
|
+
});
|
143
|
+
};
|
144
|
+
const proxyOutputs = (instance, el, events) => {
|
145
|
+
events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
|
146
|
+
};
|
147
|
+
const defineCustomElement = (tagName, customElement) => {
|
148
|
+
if (customElement !== undefined &&
|
149
|
+
typeof customElements !== 'undefined' &&
|
150
|
+
!customElements.get(tagName)) {
|
151
|
+
customElements.define(tagName, customElement);
|
152
|
+
}
|
153
|
+
};
|
154
|
+
// tslint:disable-next-line: only-arrow-functions
|
155
|
+
function ProxyCmp(opts) {
|
156
|
+
const decorator = function (cls) {
|
157
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
158
|
+
if (defineCustomElementFn !== undefined) {
|
159
|
+
defineCustomElementFn();
|
160
|
+
}
|
161
|
+
if (inputs) {
|
162
|
+
proxyInputs(cls, inputs);
|
163
|
+
}
|
164
|
+
if (methods) {
|
165
|
+
proxyMethods(cls, methods);
|
166
|
+
}
|
167
|
+
return cls;
|
168
|
+
};
|
169
|
+
return decorator;
|
170
|
+
}
|
171
|
+
|
172
|
+
let VegaAccordion = class VegaAccordion {
|
173
|
+
constructor(c, r, z) {
|
174
|
+
this.z = z;
|
175
|
+
c.detach();
|
176
|
+
this.el = r.nativeElement;
|
177
|
+
proxyOutputs(this, this.el, ['vegaExpand', 'accordionExpand']);
|
178
|
+
}
|
179
|
+
};
|
180
|
+
VegaAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", 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.2", 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 });
|
182
|
+
VegaAccordion = __decorate([
|
183
|
+
ProxyCmp({
|
184
|
+
defineCustomElementFn: undefined,
|
185
|
+
inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
|
186
|
+
})
|
187
|
+
], VegaAccordion);
|
188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaAccordion, decorators: [{
|
189
|
+
type: Component,
|
190
|
+
args: [{
|
191
|
+
selector: 'vega-accordion',
|
192
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
193
|
+
template: '<ng-content></ng-content>',
|
194
|
+
inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']
|
195
|
+
}]
|
196
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
197
|
+
let VegaAppFooter = class VegaAppFooter {
|
198
|
+
constructor(c, r, z) {
|
199
|
+
this.z = z;
|
200
|
+
c.detach();
|
201
|
+
this.el = r.nativeElement;
|
202
|
+
}
|
203
|
+
};
|
204
|
+
VegaAppFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", 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.2", type: VegaAppFooter, selector: "vega-app-footer", inputs: { additionalLinks: "additionalLinks", content: "content", disclaimerUrlTarget: "disclaimerUrlTarget", hideDefaultLinks: "hideDefaultLinks", privacyPolicyLabel: "privacyPolicyLabel", privacyPolicyUrl: "privacyPolicyUrl", privacyPolicyUrlId: "privacyPolicyUrlId", privacyPolicyUrlTarget: "privacyPolicyUrlTarget", showDisclaimer: "showDisclaimer", termOfUseLabel: "termOfUseLabel", termOfUseUrl: "termOfUseUrl", termOfUseUrlId: "termOfUseUrlId", termOfUseUrlTarget: "termOfUseUrlTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
206
|
+
VegaAppFooter = __decorate([
|
207
|
+
ProxyCmp({
|
208
|
+
defineCustomElementFn: undefined,
|
209
|
+
inputs: ['additionalLinks', 'content', 'disclaimerUrlTarget', 'hideDefaultLinks', 'privacyPolicyLabel', 'privacyPolicyUrl', 'privacyPolicyUrlId', 'privacyPolicyUrlTarget', 'showDisclaimer', 'termOfUseLabel', 'termOfUseUrl', 'termOfUseUrlId', 'termOfUseUrlTarget']
|
210
|
+
})
|
211
|
+
], VegaAppFooter);
|
212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaAppFooter, decorators: [{
|
213
|
+
type: Component,
|
214
|
+
args: [{
|
215
|
+
selector: 'vega-app-footer',
|
216
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
217
|
+
template: '<ng-content></ng-content>',
|
218
|
+
inputs: ['additionalLinks', 'content', 'disclaimerUrlTarget', 'hideDefaultLinks', 'privacyPolicyLabel', 'privacyPolicyUrl', 'privacyPolicyUrlId', 'privacyPolicyUrlTarget', 'showDisclaimer', 'termOfUseLabel', 'termOfUseUrl', 'termOfUseUrlId', 'termOfUseUrlTarget']
|
219
|
+
}]
|
220
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
221
|
+
let VegaAppHeaderButton = class VegaAppHeaderButton {
|
222
|
+
constructor(c, r, z) {
|
223
|
+
this.z = z;
|
224
|
+
c.detach();
|
225
|
+
this.el = r.nativeElement;
|
226
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaDropdownClick', 'dropdownClick']);
|
227
|
+
}
|
228
|
+
};
|
229
|
+
VegaAppHeaderButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", 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.2", 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 });
|
231
|
+
VegaAppHeaderButton = __decorate([
|
232
|
+
ProxyCmp({
|
233
|
+
defineCustomElementFn: undefined,
|
234
|
+
inputs: ['avatar', 'avatarPosition', 'dropdown', 'label', 'selected', 'showBorder', 'showLabel', 'showMenuArrowIcon', 'size']
|
235
|
+
})
|
236
|
+
], VegaAppHeaderButton);
|
237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaAppHeaderButton, decorators: [{
|
238
|
+
type: Component,
|
239
|
+
args: [{
|
240
|
+
selector: 'vega-app-header-button',
|
241
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
242
|
+
template: '<ng-content></ng-content>',
|
243
|
+
inputs: ['avatar', 'avatarPosition', 'dropdown', 'label', 'selected', 'showBorder', 'showLabel', 'showMenuArrowIcon', 'size']
|
244
|
+
}]
|
245
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
246
|
+
let VegaBackdrop = class VegaBackdrop {
|
247
|
+
constructor(c, r, z) {
|
248
|
+
this.z = z;
|
249
|
+
c.detach();
|
250
|
+
this.el = r.nativeElement;
|
251
|
+
proxyOutputs(this, this.el, ['vegaClick']);
|
252
|
+
}
|
253
|
+
};
|
254
|
+
VegaBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", 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.2", 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([
|
257
|
+
ProxyCmp({
|
258
|
+
defineCustomElementFn: undefined,
|
259
|
+
inputs: ['color', 'duration', 'visible']
|
260
|
+
})
|
261
|
+
], VegaBackdrop);
|
262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBackdrop, decorators: [{
|
263
|
+
type: Component,
|
264
|
+
args: [{
|
265
|
+
selector: 'vega-backdrop',
|
266
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
267
|
+
template: '<ng-content></ng-content>',
|
268
|
+
inputs: ['color', 'duration', 'visible']
|
269
|
+
}]
|
270
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
271
|
+
let VegaBanner = class VegaBanner {
|
272
|
+
constructor(c, r, z) {
|
273
|
+
this.z = z;
|
274
|
+
c.detach();
|
275
|
+
this.el = r.nativeElement;
|
276
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaActionButtonClick', 'actionButtonClick']);
|
277
|
+
}
|
278
|
+
};
|
279
|
+
VegaBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
280
|
+
VegaBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBanner, selector: "vega-banner", inputs: { actionButtons: "actionButtons", bannerTitle: "bannerTitle", content: "content", isOpen: "isOpen", showCloseButton: "showCloseButton", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
281
|
+
VegaBanner = __decorate([
|
282
|
+
ProxyCmp({
|
283
|
+
defineCustomElementFn: undefined,
|
284
|
+
inputs: ['actionButtons', 'bannerTitle', 'content', 'isOpen', 'showCloseButton', 'type'],
|
285
|
+
methods: ['doClose']
|
286
|
+
})
|
287
|
+
], VegaBanner);
|
288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBanner, decorators: [{
|
289
|
+
type: Component,
|
290
|
+
args: [{
|
291
|
+
selector: 'vega-banner',
|
292
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
293
|
+
template: '<ng-content></ng-content>',
|
294
|
+
inputs: ['actionButtons', 'bannerTitle', 'content', 'isOpen', 'showCloseButton', 'type']
|
295
|
+
}]
|
296
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
297
|
+
let VegaBarChart = class VegaBarChart {
|
298
|
+
constructor(c, r, z) {
|
299
|
+
this.z = z;
|
300
|
+
c.detach();
|
301
|
+
this.el = r.nativeElement;
|
302
|
+
}
|
303
|
+
};
|
304
|
+
VegaBarChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBarChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
305
|
+
VegaBarChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBarChart, selector: "vega-bar-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
306
|
+
VegaBarChart = __decorate([
|
307
|
+
ProxyCmp({
|
308
|
+
defineCustomElementFn: undefined,
|
309
|
+
inputs: ['options']
|
310
|
+
})
|
311
|
+
], VegaBarChart);
|
312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBarChart, decorators: [{
|
313
|
+
type: Component,
|
314
|
+
args: [{
|
315
|
+
selector: 'vega-bar-chart',
|
316
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
317
|
+
template: '<ng-content></ng-content>',
|
318
|
+
inputs: ['options']
|
319
|
+
}]
|
320
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
321
|
+
let VegaBox = class VegaBox {
|
322
|
+
constructor(c, r, z) {
|
323
|
+
this.z = z;
|
324
|
+
c.detach();
|
325
|
+
this.el = r.nativeElement;
|
326
|
+
}
|
327
|
+
};
|
328
|
+
VegaBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
329
|
+
VegaBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBox, selector: "vega-box", inputs: { alignSelf: "alignSelf", backgroundColor: "backgroundColor", border: "border", borderColor: "borderColor", borderStyle: "borderStyle", corners: "corners", display: "display", flex: "flex", flexBasis: "flexBasis", flexGrow: "flexGrow", flexShrink: "flexShrink", gridArea: "gridArea", gridColumn: "gridColumn", gridRow: "gridRow", height: "height", justifySelf: "justifySelf", margin: "margin", maxHeight: "maxHeight", minHeight: "minHeight", order: "order", padding: "padding", responsiveClass: "responsiveClass", shadow: "shadow", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
330
|
+
VegaBox = __decorate([
|
331
|
+
ProxyCmp({
|
332
|
+
defineCustomElementFn: undefined,
|
333
|
+
inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'borderStyle', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'maxHeight', 'minHeight', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
|
334
|
+
})
|
335
|
+
], VegaBox);
|
336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBox, decorators: [{
|
337
|
+
type: Component,
|
338
|
+
args: [{
|
339
|
+
selector: 'vega-box',
|
340
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
341
|
+
template: '<ng-content></ng-content>',
|
342
|
+
inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'borderStyle', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'maxHeight', 'minHeight', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
|
343
|
+
}]
|
344
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
345
|
+
let VegaBrandLogo = class VegaBrandLogo {
|
346
|
+
constructor(c, r, z) {
|
347
|
+
this.z = z;
|
348
|
+
c.detach();
|
349
|
+
this.el = r.nativeElement;
|
350
|
+
}
|
351
|
+
};
|
352
|
+
VegaBrandLogo.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBrandLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
353
|
+
VegaBrandLogo.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBrandLogo, selector: "vega-brand-logo", inputs: { name: "name", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
354
|
+
VegaBrandLogo = __decorate([
|
355
|
+
ProxyCmp({
|
356
|
+
defineCustomElementFn: undefined,
|
357
|
+
inputs: ['name', 'size', 'theme']
|
358
|
+
})
|
359
|
+
], VegaBrandLogo);
|
360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBrandLogo, decorators: [{
|
361
|
+
type: Component,
|
362
|
+
args: [{
|
363
|
+
selector: 'vega-brand-logo',
|
364
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
365
|
+
template: '<ng-content></ng-content>',
|
366
|
+
inputs: ['name', 'size', 'theme']
|
367
|
+
}]
|
368
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
369
|
+
let VegaBreadcrumb = class VegaBreadcrumb {
|
370
|
+
constructor(c, r, z) {
|
371
|
+
this.z = z;
|
372
|
+
c.detach();
|
373
|
+
this.el = r.nativeElement;
|
374
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
375
|
+
}
|
376
|
+
};
|
377
|
+
VegaBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
378
|
+
VegaBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaBreadcrumb, selector: "vega-breadcrumb", inputs: { items: "items", maxItems: "maxItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
379
|
+
VegaBreadcrumb = __decorate([
|
380
|
+
ProxyCmp({
|
381
|
+
defineCustomElementFn: undefined,
|
382
|
+
inputs: ['items', 'maxItems']
|
383
|
+
})
|
384
|
+
], VegaBreadcrumb);
|
385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBreadcrumb, decorators: [{
|
386
|
+
type: Component,
|
387
|
+
args: [{
|
388
|
+
selector: 'vega-breadcrumb',
|
389
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
390
|
+
template: '<ng-content></ng-content>',
|
391
|
+
inputs: ['items', 'maxItems']
|
392
|
+
}]
|
393
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
394
|
+
let VegaButton = class VegaButton {
|
395
|
+
constructor(c, r, z) {
|
396
|
+
this.z = z;
|
397
|
+
c.detach();
|
398
|
+
this.el = r.nativeElement;
|
399
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
400
|
+
}
|
401
|
+
};
|
402
|
+
VegaButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
403
|
+
VegaButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaButton, selector: "vega-button", inputs: { block: "block", danger: "danger", disabled: "disabled", icon: "icon", iconAlign: "iconAlign", label: "label", loading: "loading", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
404
|
+
VegaButton = __decorate([
|
405
|
+
ProxyCmp({
|
406
|
+
defineCustomElementFn: undefined,
|
407
|
+
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'loading', 'size', 'type', 'variant']
|
408
|
+
})
|
409
|
+
], VegaButton);
|
410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButton, decorators: [{
|
411
|
+
type: Component,
|
412
|
+
args: [{
|
413
|
+
selector: 'vega-button',
|
414
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
415
|
+
template: '<ng-content></ng-content>',
|
416
|
+
inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'loading', 'size', 'type', 'variant']
|
417
|
+
}]
|
418
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
419
|
+
let VegaButtonCircle = class VegaButtonCircle {
|
420
|
+
constructor(c, r, z) {
|
421
|
+
this.z = z;
|
422
|
+
c.detach();
|
423
|
+
this.el = r.nativeElement;
|
424
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
425
|
+
}
|
426
|
+
};
|
427
|
+
VegaButtonCircle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonCircle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
428
|
+
VegaButtonCircle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaButtonCircle, selector: "vega-button-circle", inputs: { danger: "danger", disabled: "disabled", icon: "icon", iconColor: "iconColor", label: "label", showTooltip: "showTooltip", size: "size", tooltip: "tooltip", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
429
|
+
VegaButtonCircle = __decorate([
|
430
|
+
ProxyCmp({
|
431
|
+
defineCustomElementFn: undefined,
|
432
|
+
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'tooltip', 'type', 'variant']
|
433
|
+
})
|
434
|
+
], VegaButtonCircle);
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonCircle, decorators: [{
|
436
|
+
type: Component,
|
437
|
+
args: [{
|
438
|
+
selector: 'vega-button-circle',
|
439
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
440
|
+
template: '<ng-content></ng-content>',
|
441
|
+
inputs: ['danger', 'disabled', 'icon', 'iconColor', 'label', 'showTooltip', 'size', 'tooltip', 'type', 'variant']
|
442
|
+
}]
|
443
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
444
|
+
let VegaButtonGroup = class VegaButtonGroup {
|
445
|
+
constructor(c, r, z) {
|
446
|
+
this.z = z;
|
447
|
+
c.detach();
|
448
|
+
this.el = r.nativeElement;
|
449
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
450
|
+
}
|
451
|
+
};
|
452
|
+
VegaButtonGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
453
|
+
VegaButtonGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaButtonGroup, selector: "vega-button-group", inputs: { iconAlign: "iconAlign", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
454
|
+
VegaButtonGroup = __decorate([
|
455
|
+
ProxyCmp({
|
456
|
+
defineCustomElementFn: undefined,
|
457
|
+
inputs: ['iconAlign', 'size', 'variant']
|
458
|
+
})
|
459
|
+
], VegaButtonGroup);
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonGroup, decorators: [{
|
461
|
+
type: Component,
|
462
|
+
args: [{
|
463
|
+
selector: 'vega-button-group',
|
464
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
465
|
+
template: '<ng-content></ng-content>',
|
466
|
+
inputs: ['iconAlign', 'size', 'variant']
|
467
|
+
}]
|
468
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
469
|
+
let VegaButtonGroupItem = class VegaButtonGroupItem {
|
470
|
+
constructor(c, r, z) {
|
471
|
+
this.z = z;
|
472
|
+
c.detach();
|
473
|
+
this.el = r.nativeElement;
|
474
|
+
}
|
475
|
+
};
|
476
|
+
VegaButtonGroupItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonGroupItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
477
|
+
VegaButtonGroupItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaButtonGroupItem, selector: "vega-button-group-item", inputs: { dropdownProps: "dropdownProps", dropdownSource: "dropdownSource", icon: "icon", iconOnly: "iconOnly", itemKey: "itemKey", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
478
|
+
VegaButtonGroupItem = __decorate([
|
479
|
+
ProxyCmp({
|
480
|
+
defineCustomElementFn: undefined,
|
481
|
+
inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
482
|
+
})
|
483
|
+
], VegaButtonGroupItem);
|
484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonGroupItem, decorators: [{
|
485
|
+
type: Component,
|
486
|
+
args: [{
|
487
|
+
selector: 'vega-button-group-item',
|
488
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
489
|
+
template: '<ng-content></ng-content>',
|
490
|
+
inputs: ['dropdownProps', 'dropdownSource', 'icon', 'iconOnly', 'itemKey', 'label']
|
491
|
+
}]
|
492
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
493
|
+
let VegaButtonLink = class VegaButtonLink {
|
494
|
+
constructor(c, r, z) {
|
495
|
+
this.z = z;
|
496
|
+
c.detach();
|
497
|
+
this.el = r.nativeElement;
|
498
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
499
|
+
}
|
500
|
+
};
|
501
|
+
VegaButtonLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
502
|
+
VegaButtonLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
503
|
+
VegaButtonLink = __decorate([
|
504
|
+
ProxyCmp({
|
505
|
+
defineCustomElementFn: undefined,
|
506
|
+
inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size', 'target']
|
507
|
+
})
|
508
|
+
], VegaButtonLink);
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaButtonLink, decorators: [{
|
510
|
+
type: Component,
|
511
|
+
args: [{
|
512
|
+
selector: 'vega-button-link',
|
513
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
514
|
+
template: '<ng-content></ng-content>',
|
515
|
+
inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size', 'target']
|
516
|
+
}]
|
517
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
518
|
+
let VegaCalendar = class VegaCalendar {
|
519
|
+
constructor(c, r, z) {
|
520
|
+
this.z = z;
|
521
|
+
c.detach();
|
522
|
+
this.el = r.nativeElement;
|
523
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick', 'vegaDateClick', 'dateClick', 'vegaMoreActionClick', 'moreActionClick']);
|
524
|
+
}
|
525
|
+
};
|
526
|
+
VegaCalendar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
527
|
+
VegaCalendar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCalendar, selector: "vega-calendar", inputs: { enableDateClick: "enableDateClick", enabledEventPreview: "enabledEventPreview", events: "events", isDateDisabled: "isDateDisabled", moreActionDropdownProps: "moreActionDropdownProps", showEventColorBar: "showEventColorBar", showSwitchView: "showSwitchView", showWeekends: "showWeekends", timeFormat: "timeFormat", viewMode: "viewMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
528
|
+
VegaCalendar = __decorate([
|
529
|
+
ProxyCmp({
|
530
|
+
defineCustomElementFn: undefined,
|
531
|
+
inputs: ['enableDateClick', 'enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
|
532
|
+
})
|
533
|
+
], VegaCalendar);
|
534
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendar, decorators: [{
|
535
|
+
type: Component,
|
536
|
+
args: [{
|
537
|
+
selector: 'vega-calendar',
|
538
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
539
|
+
template: '<ng-content></ng-content>',
|
540
|
+
inputs: ['enableDateClick', 'enabledEventPreview', 'events', 'isDateDisabled', 'moreActionDropdownProps', 'showEventColorBar', 'showSwitchView', 'showWeekends', 'timeFormat', 'viewMode']
|
541
|
+
}]
|
542
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
543
|
+
let VegaCalendarEvent = class VegaCalendarEvent {
|
544
|
+
constructor(c, r, z) {
|
545
|
+
this.z = z;
|
546
|
+
c.detach();
|
547
|
+
this.el = r.nativeElement;
|
548
|
+
}
|
549
|
+
};
|
550
|
+
VegaCalendarEvent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendarEvent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
551
|
+
VegaCalendarEvent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCalendarEvent, selector: "vega-calendar-event", inputs: { calendarEvent: "calendarEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
552
|
+
VegaCalendarEvent = __decorate([
|
553
|
+
ProxyCmp({
|
554
|
+
defineCustomElementFn: undefined,
|
555
|
+
inputs: ['calendarEvent']
|
556
|
+
})
|
557
|
+
], VegaCalendarEvent);
|
558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendarEvent, decorators: [{
|
559
|
+
type: Component,
|
560
|
+
args: [{
|
561
|
+
selector: 'vega-calendar-event',
|
562
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
563
|
+
template: '<ng-content></ng-content>',
|
564
|
+
inputs: ['calendarEvent']
|
565
|
+
}]
|
566
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
567
|
+
let VegaCalendarEventPreview = class VegaCalendarEventPreview {
|
568
|
+
constructor(c, r, z) {
|
569
|
+
this.z = z;
|
570
|
+
c.detach();
|
571
|
+
this.el = r.nativeElement;
|
572
|
+
}
|
573
|
+
};
|
574
|
+
VegaCalendarEventPreview.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendarEventPreview, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
575
|
+
VegaCalendarEventPreview.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCalendarEventPreview, selector: "vega-calendar-event-preview", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
576
|
+
VegaCalendarEventPreview = __decorate([
|
577
|
+
ProxyCmp({
|
578
|
+
defineCustomElementFn: undefined
|
579
|
+
})
|
580
|
+
], VegaCalendarEventPreview);
|
581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendarEventPreview, decorators: [{
|
582
|
+
type: Component,
|
583
|
+
args: [{
|
584
|
+
selector: 'vega-calendar-event-preview',
|
585
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
586
|
+
template: '<ng-content></ng-content>'
|
587
|
+
}]
|
588
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
589
|
+
let VegaCalendarEventSlot = class VegaCalendarEventSlot {
|
590
|
+
constructor(c, r, z) {
|
591
|
+
this.z = z;
|
592
|
+
c.detach();
|
593
|
+
this.el = r.nativeElement;
|
594
|
+
}
|
595
|
+
};
|
596
|
+
VegaCalendarEventSlot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendarEventSlot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
597
|
+
VegaCalendarEventSlot.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCalendarEventSlot, selector: "vega-calendar-event-slot", inputs: { eventKey: "eventKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
598
|
+
VegaCalendarEventSlot = __decorate([
|
599
|
+
ProxyCmp({
|
600
|
+
defineCustomElementFn: undefined,
|
601
|
+
inputs: ['eventKey']
|
602
|
+
})
|
603
|
+
], VegaCalendarEventSlot);
|
604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCalendarEventSlot, decorators: [{
|
605
|
+
type: Component,
|
606
|
+
args: [{
|
607
|
+
selector: 'vega-calendar-event-slot',
|
608
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
609
|
+
template: '<ng-content></ng-content>',
|
610
|
+
inputs: ['eventKey']
|
611
|
+
}]
|
612
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
613
|
+
let VegaCard = class VegaCard {
|
614
|
+
constructor(c, r, z) {
|
615
|
+
this.z = z;
|
616
|
+
c.detach();
|
617
|
+
this.el = r.nativeElement;
|
618
|
+
}
|
619
|
+
};
|
620
|
+
VegaCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
621
|
+
VegaCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
622
|
+
VegaCard = __decorate([
|
623
|
+
ProxyCmp({
|
624
|
+
defineCustomElementFn: undefined,
|
625
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
626
|
+
})
|
627
|
+
], VegaCard);
|
628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCard, decorators: [{
|
629
|
+
type: Component,
|
630
|
+
args: [{
|
631
|
+
selector: 'vega-card',
|
632
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
633
|
+
template: '<ng-content></ng-content>',
|
634
|
+
inputs: ['backgroundColor', 'margin', 'padding', 'variant']
|
635
|
+
}]
|
636
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
637
|
+
let VegaCarousel = class VegaCarousel {
|
638
|
+
constructor(c, r, z) {
|
639
|
+
this.z = z;
|
640
|
+
c.detach();
|
641
|
+
this.el = r.nativeElement;
|
642
|
+
proxyOutputs(this, this.el, ['vegaPageUpdate', 'pageUpdate']);
|
643
|
+
}
|
644
|
+
};
|
645
|
+
VegaCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
646
|
+
VegaCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCarousel, selector: "vega-carousel", inputs: { canSwipe: "canSwipe", itemsPerPage: "itemsPerPage", perPage: "perPage", showSlider: "showSlider", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
647
|
+
VegaCarousel = __decorate([
|
648
|
+
ProxyCmp({
|
649
|
+
defineCustomElementFn: undefined,
|
650
|
+
inputs: ['canSwipe', 'itemsPerPage', 'perPage', 'showSlider', 'spacing'],
|
651
|
+
methods: ['nextPage', 'prevPage', 'goToPage']
|
652
|
+
})
|
653
|
+
], VegaCarousel);
|
654
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCarousel, decorators: [{
|
655
|
+
type: Component,
|
656
|
+
args: [{
|
657
|
+
selector: 'vega-carousel',
|
658
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
659
|
+
template: '<ng-content></ng-content>',
|
660
|
+
inputs: ['canSwipe', 'itemsPerPage', 'perPage', 'showSlider', 'spacing']
|
661
|
+
}]
|
662
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
663
|
+
let VegaCheckbox = class VegaCheckbox {
|
664
|
+
constructor(c, r, z) {
|
665
|
+
this.z = z;
|
666
|
+
c.detach();
|
667
|
+
this.el = r.nativeElement;
|
668
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
669
|
+
}
|
670
|
+
};
|
671
|
+
VegaCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
672
|
+
VegaCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
673
|
+
VegaCheckbox = __decorate([
|
674
|
+
ProxyCmp({
|
675
|
+
defineCustomElementFn: undefined,
|
676
|
+
inputs: ['checked', 'disabled', 'identifier', 'isValid', 'required', 'size', 'value'],
|
677
|
+
methods: ['setValue']
|
678
|
+
})
|
679
|
+
], VegaCheckbox);
|
680
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCheckbox, decorators: [{
|
681
|
+
type: Component,
|
682
|
+
args: [{
|
683
|
+
selector: 'vega-checkbox',
|
684
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
685
|
+
template: '<ng-content></ng-content>',
|
686
|
+
inputs: ['checked', 'disabled', 'identifier', 'isValid', 'required', 'size', 'value']
|
687
|
+
}]
|
688
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
689
|
+
let VegaCheckboxGroup = class VegaCheckboxGroup {
|
690
|
+
constructor(c, r, z) {
|
691
|
+
this.z = z;
|
692
|
+
c.detach();
|
693
|
+
this.el = r.nativeElement;
|
694
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
695
|
+
}
|
696
|
+
};
|
697
|
+
VegaCheckboxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
698
|
+
VegaCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCheckboxGroup, selector: "vega-checkbox-group", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", required: "required", validationRules: "validationRules", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
699
|
+
VegaCheckboxGroup = __decorate([
|
700
|
+
ProxyCmp({
|
701
|
+
defineCustomElementFn: undefined,
|
702
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
703
|
+
})
|
704
|
+
], VegaCheckboxGroup);
|
705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCheckboxGroup, decorators: [{
|
706
|
+
type: Component,
|
707
|
+
args: [{
|
708
|
+
selector: 'vega-checkbox-group',
|
709
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
710
|
+
template: '<ng-content></ng-content>',
|
711
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
712
|
+
}]
|
713
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
714
|
+
let VegaChip = class VegaChip {
|
715
|
+
constructor(c, r, z) {
|
716
|
+
this.z = z;
|
717
|
+
c.detach();
|
718
|
+
this.el = r.nativeElement;
|
719
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaClick', 'click']);
|
720
|
+
}
|
721
|
+
};
|
722
|
+
VegaChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
723
|
+
VegaChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
724
|
+
VegaChip = __decorate([
|
725
|
+
ProxyCmp({
|
726
|
+
defineCustomElementFn: undefined,
|
727
|
+
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
728
|
+
})
|
729
|
+
], VegaChip);
|
730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaChip, decorators: [{
|
731
|
+
type: Component,
|
732
|
+
args: [{
|
733
|
+
selector: 'vega-chip',
|
734
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
735
|
+
template: '<ng-content></ng-content>',
|
736
|
+
inputs: ['bgColor', 'chipType', 'clickable', 'icon', 'iconAlign', 'showCloseIcon', 'size', 'statusColor', 'text', 'textColor', 'variant']
|
737
|
+
}]
|
738
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
739
|
+
let VegaCodeBlock = class VegaCodeBlock {
|
740
|
+
constructor(c, r, z) {
|
741
|
+
this.z = z;
|
742
|
+
c.detach();
|
743
|
+
this.el = r.nativeElement;
|
744
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove']);
|
745
|
+
}
|
746
|
+
};
|
747
|
+
VegaCodeBlock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCodeBlock, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
748
|
+
VegaCodeBlock.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCodeBlock, selector: "vega-code-block", inputs: { disabled: "disabled", readOnly: "readOnly", showCopyButton: "showCopyButton", showLineNumber: "showLineNumber", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
749
|
+
VegaCodeBlock = __decorate([
|
750
|
+
ProxyCmp({
|
751
|
+
defineCustomElementFn: undefined,
|
752
|
+
inputs: ['disabled', 'readOnly', 'showCopyButton', 'showLineNumber', 'value'],
|
753
|
+
methods: ['doFocus']
|
754
|
+
})
|
755
|
+
], VegaCodeBlock);
|
756
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCodeBlock, decorators: [{
|
757
|
+
type: Component,
|
758
|
+
args: [{
|
759
|
+
selector: 'vega-code-block',
|
760
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
761
|
+
template: '<ng-content></ng-content>',
|
762
|
+
inputs: ['disabled', 'readOnly', 'showCopyButton', 'showLineNumber', 'value']
|
763
|
+
}]
|
764
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
765
|
+
let VegaColorPicker = class VegaColorPicker {
|
766
|
+
constructor(c, r, z) {
|
767
|
+
this.z = z;
|
768
|
+
c.detach();
|
769
|
+
this.el = r.nativeElement;
|
770
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
771
|
+
}
|
772
|
+
};
|
773
|
+
VegaColorPicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
774
|
+
VegaColorPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaColorPicker, selector: "vega-color-picker", inputs: { autoValidation: "autoValidation", colors: "colors", disabled: "disabled", hint: "hint", isInline: "isInline", isValid: "isValid", label: "label", required: "required", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
775
|
+
VegaColorPicker = __decorate([
|
776
|
+
ProxyCmp({
|
777
|
+
defineCustomElementFn: undefined,
|
778
|
+
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
779
|
+
})
|
780
|
+
], VegaColorPicker);
|
781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorPicker, decorators: [{
|
782
|
+
type: Component,
|
783
|
+
args: [{
|
784
|
+
selector: 'vega-color-picker',
|
785
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
786
|
+
template: '<ng-content></ng-content>',
|
787
|
+
inputs: ['autoValidation', 'colors', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
788
|
+
}]
|
789
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
790
|
+
let VegaComboBox = class VegaComboBox {
|
791
|
+
constructor(c, r, z) {
|
792
|
+
this.z = z;
|
793
|
+
c.detach();
|
794
|
+
this.el = r.nativeElement;
|
795
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCreate', 'create', 'vegaSearch', 'search']);
|
796
|
+
}
|
797
|
+
};
|
798
|
+
VegaComboBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComboBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
799
|
+
VegaComboBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
800
|
+
VegaComboBox = __decorate([
|
801
|
+
ProxyCmp({
|
802
|
+
defineCustomElementFn: undefined,
|
803
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
|
804
|
+
methods: ['close', 'open']
|
805
|
+
})
|
806
|
+
], VegaComboBox);
|
807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComboBox, decorators: [{
|
808
|
+
type: Component,
|
809
|
+
args: [{
|
810
|
+
selector: 'vega-combo-box',
|
811
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
812
|
+
template: '<ng-content></ng-content>',
|
813
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps']
|
814
|
+
}]
|
815
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
816
|
+
let VegaCounterBadge = class VegaCounterBadge {
|
817
|
+
constructor(c, r, z) {
|
818
|
+
this.z = z;
|
819
|
+
c.detach();
|
820
|
+
this.el = r.nativeElement;
|
821
|
+
}
|
822
|
+
};
|
823
|
+
VegaCounterBadge.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCounterBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
824
|
+
VegaCounterBadge.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
825
|
+
VegaCounterBadge = __decorate([
|
826
|
+
ProxyCmp({
|
827
|
+
defineCustomElementFn: undefined,
|
828
|
+
inputs: ['color', 'count', 'dot', 'offset']
|
829
|
+
})
|
830
|
+
], VegaCounterBadge);
|
831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCounterBadge, decorators: [{
|
832
|
+
type: Component,
|
833
|
+
args: [{
|
834
|
+
selector: 'vega-counter-badge',
|
835
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
836
|
+
template: '<ng-content></ng-content>',
|
837
|
+
inputs: ['color', 'count', 'dot', 'offset']
|
838
|
+
}]
|
839
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
840
|
+
let VegaDatePicker = class VegaDatePicker {
|
841
|
+
constructor(c, r, z) {
|
842
|
+
this.z = z;
|
843
|
+
c.detach();
|
844
|
+
this.el = r.nativeElement;
|
845
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaMonthYearChange', 'monthYearChange']);
|
846
|
+
}
|
847
|
+
};
|
848
|
+
VegaDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
849
|
+
VegaDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDatePicker, selector: "vega-date-picker", inputs: { allowRepick: "allowRepick", autoValidation: "autoValidation", clearButton: "clearButton", disabled: "disabled", dropdownConfig: "dropdownConfig", format: "format", isDateDisabled: "isDateDisabled", isValid: "isValid", label: "label", maxDate: "maxDate", minDate: "minDate", mode: "mode", placeholder: "placeholder", readOnly: "readOnly", required: "required", showClearIcon: "showClearIcon", showYearMonthDropdowns: "showYearMonthDropdowns", size: "size", timezone: "timezone", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
850
|
+
VegaDatePicker = __decorate([
|
851
|
+
ProxyCmp({
|
852
|
+
defineCustomElementFn: undefined,
|
853
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
|
854
|
+
methods: ['doClose', 'doOpen']
|
855
|
+
})
|
856
|
+
], VegaDatePicker);
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDatePicker, decorators: [{
|
858
|
+
type: Component,
|
859
|
+
args: [{
|
860
|
+
selector: 'vega-date-picker',
|
861
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
862
|
+
template: '<ng-content></ng-content>',
|
863
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
|
864
|
+
}]
|
865
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
866
|
+
let VegaDatePickerCalendar = class VegaDatePickerCalendar {
|
867
|
+
constructor(c, r, z) {
|
868
|
+
this.z = z;
|
869
|
+
c.detach();
|
870
|
+
this.el = r.nativeElement;
|
871
|
+
}
|
872
|
+
};
|
873
|
+
VegaDatePickerCalendar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDatePickerCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
874
|
+
VegaDatePickerCalendar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDatePickerCalendar, selector: "vega-date-picker-calendar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
875
|
+
VegaDatePickerCalendar = __decorate([
|
876
|
+
ProxyCmp({
|
877
|
+
defineCustomElementFn: undefined
|
878
|
+
})
|
879
|
+
], VegaDatePickerCalendar);
|
880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDatePickerCalendar, decorators: [{
|
881
|
+
type: Component,
|
882
|
+
args: [{
|
883
|
+
selector: 'vega-date-picker-calendar',
|
884
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
885
|
+
template: '<ng-content></ng-content>'
|
886
|
+
}]
|
887
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
888
|
+
let VegaDialog = class VegaDialog {
|
889
|
+
constructor(c, r, z) {
|
890
|
+
this.z = z;
|
891
|
+
c.detach();
|
892
|
+
this.el = r.nativeElement;
|
893
|
+
}
|
894
|
+
};
|
895
|
+
VegaDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
896
|
+
VegaDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
897
|
+
VegaDialog = __decorate([
|
898
|
+
ProxyCmp({
|
899
|
+
defineCustomElementFn: undefined,
|
900
|
+
inputs: ['cancelButton', 'content', 'dialogTitle', 'handleCancel', 'handleOk', 'modalProps', 'okButton', 'showCancel', 'type']
|
901
|
+
})
|
902
|
+
], VegaDialog);
|
903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDialog, decorators: [{
|
904
|
+
type: Component,
|
905
|
+
args: [{
|
906
|
+
selector: 'vega-dialog',
|
907
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
908
|
+
template: '<ng-content></ng-content>',
|
909
|
+
inputs: ['cancelButton', 'content', 'dialogTitle', 'handleCancel', 'handleOk', 'modalProps', 'okButton', 'showCancel', 'type']
|
910
|
+
}]
|
911
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
912
|
+
let VegaDivider = class VegaDivider {
|
913
|
+
constructor(c, r, z) {
|
914
|
+
this.z = z;
|
915
|
+
c.detach();
|
916
|
+
this.el = r.nativeElement;
|
917
|
+
}
|
918
|
+
};
|
919
|
+
VegaDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
920
|
+
VegaDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDivider, selector: "vega-divider", inputs: { direction: "direction", margin: "margin", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
921
|
+
VegaDivider = __decorate([
|
922
|
+
ProxyCmp({
|
923
|
+
defineCustomElementFn: undefined,
|
924
|
+
inputs: ['direction', 'margin', 'variant']
|
925
|
+
})
|
926
|
+
], VegaDivider);
|
927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDivider, decorators: [{
|
928
|
+
type: Component,
|
929
|
+
args: [{
|
930
|
+
selector: 'vega-divider',
|
931
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
932
|
+
template: '<ng-content></ng-content>',
|
933
|
+
inputs: ['direction', 'margin', 'variant']
|
934
|
+
}]
|
935
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
936
|
+
let VegaDropdown = class VegaDropdown {
|
937
|
+
constructor(c, r, z) {
|
938
|
+
this.z = z;
|
939
|
+
c.detach();
|
940
|
+
this.el = r.nativeElement;
|
941
|
+
proxyOutputs(this, this.el, ['vegaDropdownClick', 'dropdownClick', 'vegaShow', 'dropdownShow', 'vegaHide', 'dropdownHide', 'vegaCreate', 'create', 'vegaSearch', 'dropdownSearch', 'vegaReset', 'reset', 'vegaSearchTrigger', 'searchTrigger']);
|
942
|
+
}
|
943
|
+
};
|
944
|
+
VegaDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
945
|
+
VegaDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDropdown, selector: "vega-dropdown", inputs: { alignment: "alignment", caseSensitive: "caseSensitive", dynamicOption: "dynamicOption", isLazyLoading: "isLazyLoading", isLoading: "isLoading", isScreenPosition: "isScreenPosition", itemDisplayRule: "itemDisplayRule", matchContainerHeight: "matchContainerHeight", matchTargetWidth: "matchTargetWidth", maxHeight: "maxHeight", maxWidth: "maxWidth", minWidth: "minWidth", placement: "placement", positionRelativeTo: "positionRelativeTo", prefixIconSlot: "prefixIconSlot", resettable: "resettable", searchTriggerBy: "searchTriggerBy", searchable: "searchable", selectType: "selectType", selectedSourceKey: "selectedSourceKey", size: "size", source: "source", translocation: "translocation", trigger: "trigger", useDefaultFilter: "useDefaultFilter", virtualizationThreshold: "virtualizationThreshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
946
|
+
VegaDropdown = __decorate([
|
947
|
+
ProxyCmp({
|
948
|
+
defineCustomElementFn: undefined,
|
949
|
+
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'resettable', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold'],
|
950
|
+
methods: ['show', 'hide', 'search', 'clearSelection', 'getSelection', 'setSelection']
|
951
|
+
})
|
952
|
+
], VegaDropdown);
|
953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdown, decorators: [{
|
954
|
+
type: Component,
|
955
|
+
args: [{
|
956
|
+
selector: 'vega-dropdown',
|
957
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
958
|
+
template: '<ng-content></ng-content>',
|
959
|
+
inputs: ['alignment', 'caseSensitive', 'dynamicOption', 'isLazyLoading', 'isLoading', 'isScreenPosition', 'itemDisplayRule', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'prefixIconSlot', 'resettable', 'searchTriggerBy', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger', 'useDefaultFilter', 'virtualizationThreshold']
|
960
|
+
}]
|
961
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
962
|
+
let VegaDropdownContentBox = class VegaDropdownContentBox {
|
963
|
+
constructor(c, r, z) {
|
964
|
+
this.z = z;
|
965
|
+
c.detach();
|
966
|
+
this.el = r.nativeElement;
|
967
|
+
}
|
968
|
+
};
|
969
|
+
VegaDropdownContentBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdownContentBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
970
|
+
VegaDropdownContentBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDropdownContentBox, selector: "vega-dropdown-content-box", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
971
|
+
VegaDropdownContentBox = __decorate([
|
972
|
+
ProxyCmp({
|
973
|
+
defineCustomElementFn: undefined
|
974
|
+
})
|
975
|
+
], VegaDropdownContentBox);
|
976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdownContentBox, decorators: [{
|
977
|
+
type: Component,
|
978
|
+
args: [{
|
979
|
+
selector: 'vega-dropdown-content-box',
|
980
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
981
|
+
template: '<ng-content></ng-content>'
|
982
|
+
}]
|
983
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
984
|
+
let VegaDropdownGroup = class VegaDropdownGroup {
|
985
|
+
constructor(c, r, z) {
|
986
|
+
this.z = z;
|
987
|
+
c.detach();
|
988
|
+
this.el = r.nativeElement;
|
989
|
+
}
|
990
|
+
};
|
991
|
+
VegaDropdownGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdownGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
992
|
+
VegaDropdownGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDropdownGroup, selector: "vega-dropdown-group", inputs: { divide: "divide", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
993
|
+
VegaDropdownGroup = __decorate([
|
994
|
+
ProxyCmp({
|
995
|
+
defineCustomElementFn: undefined,
|
996
|
+
inputs: ['divide', 'label']
|
997
|
+
})
|
998
|
+
], VegaDropdownGroup);
|
999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdownGroup, decorators: [{
|
1000
|
+
type: Component,
|
1001
|
+
args: [{
|
1002
|
+
selector: 'vega-dropdown-group',
|
1003
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1004
|
+
template: '<ng-content></ng-content>',
|
1005
|
+
inputs: ['divide', 'label']
|
1006
|
+
}]
|
1007
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1008
|
+
let VegaDropdownItem = class VegaDropdownItem {
|
1009
|
+
constructor(c, r, z) {
|
1010
|
+
this.z = z;
|
1011
|
+
c.detach();
|
1012
|
+
this.el = r.nativeElement;
|
1013
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
1014
|
+
}
|
1015
|
+
};
|
1016
|
+
VegaDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1017
|
+
VegaDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaDropdownItem, selector: "vega-dropdown-item", inputs: { count: "count", danger: "danger", disabled: "disabled", height: "height", itemKey: "itemKey", label: "label", prefixIcon: "prefixIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1018
|
+
VegaDropdownItem = __decorate([
|
1019
|
+
ProxyCmp({
|
1020
|
+
defineCustomElementFn: undefined,
|
1021
|
+
inputs: ['count', 'danger', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
1022
|
+
})
|
1023
|
+
], VegaDropdownItem);
|
1024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaDropdownItem, decorators: [{
|
1025
|
+
type: Component,
|
1026
|
+
args: [{
|
1027
|
+
selector: 'vega-dropdown-item',
|
1028
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1029
|
+
template: '<ng-content></ng-content>',
|
1030
|
+
inputs: ['count', 'danger', 'disabled', 'height', 'itemKey', 'label', 'prefixIcon']
|
1031
|
+
}]
|
1032
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1033
|
+
let VegaFieldError = class VegaFieldError {
|
1034
|
+
constructor(c, r, z) {
|
1035
|
+
this.z = z;
|
1036
|
+
c.detach();
|
1037
|
+
this.el = r.nativeElement;
|
1038
|
+
}
|
1039
|
+
};
|
1040
|
+
VegaFieldError.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFieldError, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1041
|
+
VegaFieldError.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFieldError, selector: "vega-field-error", inputs: { message: "message" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1042
|
+
VegaFieldError = __decorate([
|
1043
|
+
ProxyCmp({
|
1044
|
+
defineCustomElementFn: undefined,
|
1045
|
+
inputs: ['message']
|
1046
|
+
})
|
1047
|
+
], VegaFieldError);
|
1048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFieldError, decorators: [{
|
1049
|
+
type: Component,
|
1050
|
+
args: [{
|
1051
|
+
selector: 'vega-field-error',
|
1052
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1053
|
+
template: '<ng-content></ng-content>',
|
1054
|
+
inputs: ['message']
|
1055
|
+
}]
|
1056
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1057
|
+
let VegaFieldLabel = class VegaFieldLabel {
|
1058
|
+
constructor(c, r, z) {
|
1059
|
+
this.z = z;
|
1060
|
+
c.detach();
|
1061
|
+
this.el = r.nativeElement;
|
1062
|
+
proxyOutputs(this, this.el, ['vegaClick', 'vegaLabelButtonClick', 'labelButtonClick']);
|
1063
|
+
}
|
1064
|
+
};
|
1065
|
+
VegaFieldLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1066
|
+
VegaFieldLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFieldLabel, selector: "vega-field-label", inputs: { disabled: "disabled", isFieldRequired: "isFieldRequired", label: "label", suffixButtonProps: "suffixButtonProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1067
|
+
VegaFieldLabel = __decorate([
|
1068
|
+
ProxyCmp({
|
1069
|
+
defineCustomElementFn: undefined,
|
1070
|
+
inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
|
1071
|
+
})
|
1072
|
+
], VegaFieldLabel);
|
1073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFieldLabel, decorators: [{
|
1074
|
+
type: Component,
|
1075
|
+
args: [{
|
1076
|
+
selector: 'vega-field-label',
|
1077
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1078
|
+
template: '<ng-content></ng-content>',
|
1079
|
+
inputs: ['disabled', 'isFieldRequired', 'label', 'suffixButtonProps']
|
1080
|
+
}]
|
1081
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1082
|
+
let VegaFileUploader = class VegaFileUploader {
|
1083
|
+
constructor(c, r, z) {
|
1084
|
+
this.z = z;
|
1085
|
+
c.detach();
|
1086
|
+
this.el = r.nativeElement;
|
1087
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSelectedFileChange', 'selectedFileChange', 'vegaRemove', 'remove', 'vegaRetry', 'retry', 'vegaPreview', 'preview']);
|
1088
|
+
}
|
1089
|
+
};
|
1090
|
+
VegaFileUploader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFileUploader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1091
|
+
VegaFileUploader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFileUploader, selector: "vega-file-uploader", inputs: { accept: "accept", autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", maxCount: "maxCount", required: "required", validationRules: "validationRules", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1092
|
+
VegaFileUploader = __decorate([
|
1093
|
+
ProxyCmp({
|
1094
|
+
defineCustomElementFn: undefined,
|
1095
|
+
inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'required', 'validationRules', 'value', 'variant']
|
1096
|
+
})
|
1097
|
+
], VegaFileUploader);
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFileUploader, decorators: [{
|
1099
|
+
type: Component,
|
1100
|
+
args: [{
|
1101
|
+
selector: 'vega-file-uploader',
|
1102
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1103
|
+
template: '<ng-content></ng-content>',
|
1104
|
+
inputs: ['accept', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxCount', 'required', 'validationRules', 'value', 'variant']
|
1105
|
+
}]
|
1106
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1107
|
+
let VegaFlagIcon = class VegaFlagIcon {
|
1108
|
+
constructor(c, r, z) {
|
1109
|
+
this.z = z;
|
1110
|
+
c.detach();
|
1111
|
+
this.el = r.nativeElement;
|
1112
|
+
}
|
1113
|
+
};
|
1114
|
+
VegaFlagIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFlagIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1115
|
+
VegaFlagIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFlagIcon, selector: "vega-flag-icon", inputs: { country: "country", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1116
|
+
VegaFlagIcon = __decorate([
|
1117
|
+
ProxyCmp({
|
1118
|
+
defineCustomElementFn: undefined,
|
1119
|
+
inputs: ['country', 'size']
|
1120
|
+
})
|
1121
|
+
], VegaFlagIcon);
|
1122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFlagIcon, decorators: [{
|
1123
|
+
type: Component,
|
1124
|
+
args: [{
|
1125
|
+
selector: 'vega-flag-icon',
|
1126
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1127
|
+
template: '<ng-content></ng-content>',
|
1128
|
+
inputs: ['country', 'size']
|
1129
|
+
}]
|
1130
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1131
|
+
let VegaFlex = class VegaFlex {
|
1132
|
+
constructor(c, r, z) {
|
1133
|
+
this.z = z;
|
1134
|
+
c.detach();
|
1135
|
+
this.el = r.nativeElement;
|
1136
|
+
}
|
1137
|
+
};
|
1138
|
+
VegaFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1139
|
+
VegaFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFlex, selector: "vega-flex", inputs: { alignItems: "alignItems", breakpoint: "breakpoint", direction: "direction", flex: "flex", flexBasis: "flexBasis", flexGrow: "flexGrow", flexShrink: "flexShrink", flexWrap: "flexWrap", gap: "gap", justifyContent: "justifyContent", margin: "margin", useNativeFlex: "useNativeFlex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1140
|
+
VegaFlex = __decorate([
|
1141
|
+
ProxyCmp({
|
1142
|
+
defineCustomElementFn: undefined,
|
1143
|
+
inputs: ['alignItems', 'breakpoint', 'direction', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
1144
|
+
})
|
1145
|
+
], VegaFlex);
|
1146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFlex, decorators: [{
|
1147
|
+
type: Component,
|
1148
|
+
args: [{
|
1149
|
+
selector: 'vega-flex',
|
1150
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1151
|
+
template: '<ng-content></ng-content>',
|
1152
|
+
inputs: ['alignItems', 'breakpoint', 'direction', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
1153
|
+
}]
|
1154
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1155
|
+
let VegaFont = class VegaFont {
|
1156
|
+
constructor(c, r, z) {
|
1157
|
+
this.z = z;
|
1158
|
+
c.detach();
|
1159
|
+
this.el = r.nativeElement;
|
1160
|
+
}
|
1161
|
+
};
|
1162
|
+
VegaFont.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFont, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1163
|
+
VegaFont.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFont, selector: "vega-font", inputs: { as: "as", color: "color", disableResponsive: "disableResponsive", textAlign: "textAlign", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1164
|
+
VegaFont = __decorate([
|
1165
|
+
ProxyCmp({
|
1166
|
+
defineCustomElementFn: undefined,
|
1167
|
+
inputs: ['as', 'color', 'disableResponsive', 'textAlign', 'variant']
|
1168
|
+
})
|
1169
|
+
], VegaFont);
|
1170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFont, decorators: [{
|
1171
|
+
type: Component,
|
1172
|
+
args: [{
|
1173
|
+
selector: 'vega-font',
|
1174
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1175
|
+
template: '<ng-content></ng-content>',
|
1176
|
+
inputs: ['as', 'color', 'disableResponsive', 'textAlign', 'variant']
|
1177
|
+
}]
|
1178
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1179
|
+
let VegaForm = class VegaForm {
|
1180
|
+
constructor(c, r, z) {
|
1181
|
+
this.z = z;
|
1182
|
+
c.detach();
|
1183
|
+
this.el = r.nativeElement;
|
1184
|
+
proxyOutputs(this, this.el, ['vegaValidate', 'validate', 'vegaFormSubmit', 'formSubmit', 'vegaFormReset', 'formReset']);
|
1185
|
+
}
|
1186
|
+
};
|
1187
|
+
VegaForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1188
|
+
VegaForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaForm, selector: "vega-form", inputs: { disableBlurValidation: "disableBlurValidation", isTouched: "isTouched", isValid: "isValid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1189
|
+
VegaForm = __decorate([
|
1190
|
+
ProxyCmp({
|
1191
|
+
defineCustomElementFn: undefined,
|
1192
|
+
inputs: ['disableBlurValidation', 'isTouched', 'isValid'],
|
1193
|
+
methods: ['valid', 'getValue', 'setValue', 'reset', 'setValidationStates']
|
1194
|
+
})
|
1195
|
+
], VegaForm);
|
1196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaForm, decorators: [{
|
1197
|
+
type: Component,
|
1198
|
+
args: [{
|
1199
|
+
selector: 'vega-form',
|
1200
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1201
|
+
template: '<ng-content></ng-content>',
|
1202
|
+
inputs: ['disableBlurValidation', 'isTouched', 'isValid']
|
1203
|
+
}]
|
1204
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1205
|
+
let VegaGrid = class VegaGrid {
|
1206
|
+
constructor(c, r, z) {
|
1207
|
+
this.z = z;
|
1208
|
+
c.detach();
|
1209
|
+
this.el = r.nativeElement;
|
1210
|
+
}
|
1211
|
+
};
|
1212
|
+
VegaGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1213
|
+
VegaGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
1214
|
+
VegaGrid = __decorate([
|
1215
|
+
ProxyCmp({
|
1216
|
+
defineCustomElementFn: undefined,
|
1217
|
+
inputs: ['column', 'gap', 'row']
|
1218
|
+
})
|
1219
|
+
], VegaGrid);
|
1220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaGrid, decorators: [{
|
1221
|
+
type: Component,
|
1222
|
+
args: [{
|
1223
|
+
selector: 'vega-grid',
|
1224
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1225
|
+
template: '<ng-content></ng-content>',
|
1226
|
+
inputs: ['column', 'gap', 'row']
|
1227
|
+
}]
|
1228
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1229
|
+
let VegaHint = class VegaHint {
|
1230
|
+
constructor(c, r, z) {
|
1231
|
+
this.z = z;
|
1232
|
+
c.detach();
|
1233
|
+
this.el = r.nativeElement;
|
1234
|
+
}
|
1235
|
+
};
|
1236
|
+
VegaHint.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaHint, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1237
|
+
VegaHint.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaHint, selector: "vega-hint", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1238
|
+
VegaHint = __decorate([
|
1239
|
+
ProxyCmp({
|
1240
|
+
defineCustomElementFn: undefined
|
1241
|
+
})
|
1242
|
+
], VegaHint);
|
1243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaHint, decorators: [{
|
1244
|
+
type: Component,
|
1245
|
+
args: [{
|
1246
|
+
selector: 'vega-hint',
|
1247
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1248
|
+
template: '<ng-content></ng-content>'
|
1249
|
+
}]
|
1250
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1251
|
+
let VegaIcon = class VegaIcon {
|
1252
|
+
constructor(c, r, z) {
|
1253
|
+
this.z = z;
|
1254
|
+
c.detach();
|
1255
|
+
this.el = r.nativeElement;
|
1256
|
+
}
|
1257
|
+
};
|
1258
|
+
VegaIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1259
|
+
VegaIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
1260
|
+
VegaIcon = __decorate([
|
1261
|
+
ProxyCmp({
|
1262
|
+
defineCustomElementFn: undefined,
|
1263
|
+
inputs: ['color', 'icon', 'size']
|
1264
|
+
})
|
1265
|
+
], VegaIcon);
|
1266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaIcon, decorators: [{
|
1267
|
+
type: Component,
|
1268
|
+
args: [{
|
1269
|
+
selector: 'vega-icon',
|
1270
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1271
|
+
template: '<ng-content></ng-content>',
|
1272
|
+
inputs: ['color', 'icon', 'size']
|
1273
|
+
}]
|
1274
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1275
|
+
let VegaImageUploader = class VegaImageUploader {
|
1276
|
+
constructor(c, r, z) {
|
1277
|
+
this.z = z;
|
1278
|
+
c.detach();
|
1279
|
+
this.el = r.nativeElement;
|
1280
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRemove', 'remove', 'vegaCancel', 'cancel']);
|
1281
|
+
}
|
1282
|
+
};
|
1283
|
+
VegaImageUploader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaImageUploader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1284
|
+
VegaImageUploader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaImageUploader, selector: "vega-image-uploader", inputs: { accept: "accept", actionSubTitle: "actionSubTitle", actionTitle: "actionTitle", autoValidation: "autoValidation", disabled: "disabled", height: "height", hint: "hint", isValid: "isValid", label: "label", required: "required", showPreviewButton: "showPreviewButton", showRemoveButton: "showRemoveButton", showReplaceButton: "showReplaceButton", status: "status", validationRules: "validationRules", value: "value", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1285
|
+
VegaImageUploader = __decorate([
|
1286
|
+
ProxyCmp({
|
1287
|
+
defineCustomElementFn: undefined,
|
1288
|
+
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
|
1289
|
+
methods: ['getContentURL']
|
1290
|
+
})
|
1291
|
+
], VegaImageUploader);
|
1292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaImageUploader, decorators: [{
|
1293
|
+
type: Component,
|
1294
|
+
args: [{
|
1295
|
+
selector: 'vega-image-uploader',
|
1296
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1297
|
+
template: '<ng-content></ng-content>',
|
1298
|
+
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
|
1299
|
+
}]
|
1300
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1301
|
+
let VegaInput = class VegaInput {
|
1302
|
+
constructor(c, r, z) {
|
1303
|
+
this.z = z;
|
1304
|
+
c.detach();
|
1305
|
+
this.el = r.nativeElement;
|
1306
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus', 'vegaLabelButtonClick', 'labelButtonClick']);
|
1307
|
+
}
|
1308
|
+
};
|
1309
|
+
VegaInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1310
|
+
VegaInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInput, selector: "vega-input", inputs: { autoValidation: "autoValidation", autocomplete: "autocomplete", disableCopyPaste: "disableCopyPaste", disabled: "disabled", email: "email", hint: "hint", isValid: "isValid", label: "label", labelSuffixButtonProps: "labelSuffixButtonProps", maskConfig: "maskConfig", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", name: "name", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", showClearIcon: "showClearIcon", size: "size", type: "type", validationRules: "validationRules", value: "value", valueUpdateTrigger: "valueUpdateTrigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1311
|
+
VegaInput = __decorate([
|
1312
|
+
ProxyCmp({
|
1313
|
+
defineCustomElementFn: undefined,
|
1314
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger'],
|
1315
|
+
methods: ['doFocus', 'doBlur']
|
1316
|
+
})
|
1317
|
+
], VegaInput);
|
1318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInput, decorators: [{
|
1319
|
+
type: Component,
|
1320
|
+
args: [{
|
1321
|
+
selector: 'vega-input',
|
1322
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1323
|
+
template: '<ng-content></ng-content>',
|
1324
|
+
inputs: ['autoValidation', 'autocomplete', 'disableCopyPaste', 'disabled', 'email', 'hint', 'isValid', 'label', 'labelSuffixButtonProps', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value', 'valueUpdateTrigger']
|
1325
|
+
}]
|
1326
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1327
|
+
let VegaInputCreditCard = class VegaInputCreditCard {
|
1328
|
+
constructor(c, r, z) {
|
1329
|
+
this.z = z;
|
1330
|
+
c.detach();
|
1331
|
+
this.el = r.nativeElement;
|
1332
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaFocus', 'focus']);
|
1333
|
+
}
|
1334
|
+
};
|
1335
|
+
VegaInputCreditCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputCreditCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1336
|
+
VegaInputCreditCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
1337
|
+
VegaInputCreditCard = __decorate([
|
1338
|
+
ProxyCmp({
|
1339
|
+
defineCustomElementFn: undefined,
|
1340
|
+
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
1341
|
+
})
|
1342
|
+
], VegaInputCreditCard);
|
1343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputCreditCard, decorators: [{
|
1344
|
+
type: Component,
|
1345
|
+
args: [{
|
1346
|
+
selector: 'vega-input-credit-card',
|
1347
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1348
|
+
template: '<ng-content></ng-content>',
|
1349
|
+
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
1350
|
+
}]
|
1351
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1352
|
+
let VegaInputNumeric = class VegaInputNumeric {
|
1353
|
+
constructor(c, r, z) {
|
1354
|
+
this.z = z;
|
1355
|
+
c.detach();
|
1356
|
+
this.el = r.nativeElement;
|
1357
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
1358
|
+
}
|
1359
|
+
};
|
1360
|
+
VegaInputNumeric.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputNumeric, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1361
|
+
VegaInputNumeric.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputNumeric, selector: "vega-input-numeric", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", integerOnly: "integerOnly", isValid: "isValid", label: "label", majorIncrement: "majorIncrement", minorIncrement: "minorIncrement", placeholder: "placeholder", prefixIcon: "prefixIcon", prefixText: "prefixText", required: "required", showClearIcon: "showClearIcon", size: "size", suffixText: "suffixText", thousandComma: "thousandComma", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1362
|
+
VegaInputNumeric = __decorate([
|
1363
|
+
ProxyCmp({
|
1364
|
+
defineCustomElementFn: undefined,
|
1365
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
1366
|
+
})
|
1367
|
+
], VegaInputNumeric);
|
1368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputNumeric, decorators: [{
|
1369
|
+
type: Component,
|
1370
|
+
args: [{
|
1371
|
+
selector: 'vega-input-numeric',
|
1372
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1373
|
+
template: '<ng-content></ng-content>',
|
1374
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
1375
|
+
}]
|
1376
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1377
|
+
let VegaInputPhoneNumber = class VegaInputPhoneNumber {
|
1378
|
+
constructor(c, r, z) {
|
1379
|
+
this.z = z;
|
1380
|
+
c.detach();
|
1381
|
+
this.el = r.nativeElement;
|
1382
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCountryChange', 'countryChange']);
|
1383
|
+
}
|
1384
|
+
};
|
1385
|
+
VegaInputPhoneNumber.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputPhoneNumber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1386
|
+
VegaInputPhoneNumber.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputPhoneNumber, selector: "vega-input-phone-number", inputs: { allowedCountryCodes: "allowedCountryCodes", autoValidation: "autoValidation", countryCode: "countryCode", disabled: "disabled", emptyValueEnabled: "emptyValueEnabled", 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 });
|
1387
|
+
VegaInputPhoneNumber = __decorate([
|
1388
|
+
ProxyCmp({
|
1389
|
+
defineCustomElementFn: undefined,
|
1390
|
+
inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
1391
|
+
})
|
1392
|
+
], VegaInputPhoneNumber);
|
1393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputPhoneNumber, decorators: [{
|
1394
|
+
type: Component,
|
1395
|
+
args: [{
|
1396
|
+
selector: 'vega-input-phone-number',
|
1397
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1398
|
+
template: '<ng-content></ng-content>',
|
1399
|
+
inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
1400
|
+
}]
|
1401
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1402
|
+
let VegaInputRange = class VegaInputRange {
|
1403
|
+
constructor(c, r, z) {
|
1404
|
+
this.z = z;
|
1405
|
+
c.detach();
|
1406
|
+
this.el = r.nativeElement;
|
1407
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
1408
|
+
}
|
1409
|
+
};
|
1410
|
+
VegaInputRange.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1411
|
+
VegaInputRange.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputRange, selector: "vega-input-range", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", max: "max", min: "min", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", showClearIcon: "showClearIcon", size: "size", stack: "stack", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1412
|
+
VegaInputRange = __decorate([
|
1413
|
+
ProxyCmp({
|
1414
|
+
defineCustomElementFn: undefined,
|
1415
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
1416
|
+
})
|
1417
|
+
], VegaInputRange);
|
1418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputRange, decorators: [{
|
1419
|
+
type: Component,
|
1420
|
+
args: [{
|
1421
|
+
selector: 'vega-input-range',
|
1422
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1423
|
+
template: '<ng-content></ng-content>',
|
1424
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
1425
|
+
}]
|
1426
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1427
|
+
let VegaInputSelect = class VegaInputSelect {
|
1428
|
+
constructor(c, r, z) {
|
1429
|
+
this.z = z;
|
1430
|
+
c.detach();
|
1431
|
+
this.el = r.nativeElement;
|
1432
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaShow', 'vegaHide']);
|
1433
|
+
}
|
1434
|
+
};
|
1435
|
+
VegaInputSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1436
|
+
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputSelect, selector: "vega-input-select", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", selectType: "selectType", selectedLabel: "selectedLabel", size: "size", source: "source", sourceLazyLoadCallback: "sourceLazyLoadCallback", validationRules: "validationRules", value: "value", vegaDropdownProps: "vegaDropdownProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1437
|
+
VegaInputSelect = __decorate([
|
1438
|
+
ProxyCmp({
|
1439
|
+
defineCustomElementFn: undefined,
|
1440
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
|
1441
|
+
methods: ['doClose', 'doOpen', 'doChange']
|
1442
|
+
})
|
1443
|
+
], VegaInputSelect);
|
1444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputSelect, decorators: [{
|
1445
|
+
type: Component,
|
1446
|
+
args: [{
|
1447
|
+
selector: 'vega-input-select',
|
1448
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1449
|
+
template: '<ng-content></ng-content>',
|
1450
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
|
1451
|
+
}]
|
1452
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1453
|
+
let VegaItemToggle = class VegaItemToggle {
|
1454
|
+
constructor(c, r, z) {
|
1455
|
+
this.z = z;
|
1456
|
+
c.detach();
|
1457
|
+
this.el = r.nativeElement;
|
1458
|
+
proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
|
1459
|
+
}
|
1460
|
+
};
|
1461
|
+
VegaItemToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaItemToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1462
|
+
VegaItemToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaItemToggle, selector: "vega-item-toggle", inputs: { isToggled: "isToggled", itemToggleStatusMap: "itemToggleStatusMap", statusMap: "statusMap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1463
|
+
VegaItemToggle = __decorate([
|
1464
|
+
ProxyCmp({
|
1465
|
+
defineCustomElementFn: undefined,
|
1466
|
+
inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
|
1467
|
+
})
|
1468
|
+
], VegaItemToggle);
|
1469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaItemToggle, decorators: [{
|
1470
|
+
type: Component,
|
1471
|
+
args: [{
|
1472
|
+
selector: 'vega-item-toggle',
|
1473
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1474
|
+
template: '<ng-content></ng-content>',
|
1475
|
+
inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
|
1476
|
+
}]
|
1477
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1478
|
+
let VegaLeftNav = class VegaLeftNav {
|
1479
|
+
constructor(c, r, z) {
|
1480
|
+
this.z = z;
|
1481
|
+
c.detach();
|
1482
|
+
this.el = r.nativeElement;
|
1483
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
1484
|
+
}
|
1485
|
+
};
|
1486
|
+
VegaLeftNav.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1487
|
+
VegaLeftNav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNav, selector: "vega-left-nav", inputs: { autoCollapseGroups: "autoCollapseGroups", autoCollapseOnOverlay: "autoCollapseOnOverlay", footnote: "footnote", headerConfig: "headerConfig", open: "open", showAsOverlay: "showAsOverlay", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1488
|
+
VegaLeftNav = __decorate([
|
1489
|
+
ProxyCmp({
|
1490
|
+
defineCustomElementFn: undefined,
|
1491
|
+
inputs: ['autoCollapseGroups', 'autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
|
1492
|
+
methods: ['toggle']
|
1493
|
+
})
|
1494
|
+
], VegaLeftNav);
|
1495
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNav, decorators: [{
|
1496
|
+
type: Component,
|
1497
|
+
args: [{
|
1498
|
+
selector: 'vega-left-nav',
|
1499
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1500
|
+
template: '<ng-content></ng-content>',
|
1501
|
+
inputs: ['autoCollapseGroups', 'autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
|
1502
|
+
}]
|
1503
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1504
|
+
let VegaLeftNavGroup = class VegaLeftNavGroup {
|
1505
|
+
constructor(c, r, z) {
|
1506
|
+
this.z = z;
|
1507
|
+
c.detach();
|
1508
|
+
this.el = r.nativeElement;
|
1509
|
+
proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
|
1510
|
+
}
|
1511
|
+
};
|
1512
|
+
VegaLeftNavGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1513
|
+
VegaLeftNavGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNavGroup, selector: "vega-left-nav-group", inputs: { icon: "icon", itemKey: "itemKey", label: "label", openByDefault: "openByDefault" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1514
|
+
VegaLeftNavGroup = __decorate([
|
1515
|
+
ProxyCmp({
|
1516
|
+
defineCustomElementFn: undefined,
|
1517
|
+
inputs: ['icon', 'itemKey', 'label', 'openByDefault']
|
1518
|
+
})
|
1519
|
+
], VegaLeftNavGroup);
|
1520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavGroup, decorators: [{
|
1521
|
+
type: Component,
|
1522
|
+
args: [{
|
1523
|
+
selector: 'vega-left-nav-group',
|
1524
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1525
|
+
template: '<ng-content></ng-content>',
|
1526
|
+
inputs: ['icon', 'itemKey', 'label', 'openByDefault']
|
1527
|
+
}]
|
1528
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1529
|
+
let VegaLeftNavLink = class VegaLeftNavLink {
|
1530
|
+
constructor(c, r, z) {
|
1531
|
+
this.z = z;
|
1532
|
+
c.detach();
|
1533
|
+
this.el = r.nativeElement;
|
1534
|
+
proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
|
1535
|
+
}
|
1536
|
+
};
|
1537
|
+
VegaLeftNavLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1538
|
+
VegaLeftNavLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNavLink, selector: "vega-left-nav-link", inputs: { counterBadge: "counterBadge", customSelectionEnabled: "customSelectionEnabled", icon: "icon", itemKey: "itemKey", selected: "selected", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1539
|
+
VegaLeftNavLink = __decorate([
|
1540
|
+
ProxyCmp({
|
1541
|
+
defineCustomElementFn: undefined,
|
1542
|
+
inputs: ['counterBadge', 'customSelectionEnabled', 'icon', 'itemKey', 'selected', 'target', 'url']
|
1543
|
+
})
|
1544
|
+
], VegaLeftNavLink);
|
1545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavLink, decorators: [{
|
1546
|
+
type: Component,
|
1547
|
+
args: [{
|
1548
|
+
selector: 'vega-left-nav-link',
|
1549
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1550
|
+
template: '<ng-content></ng-content>',
|
1551
|
+
inputs: ['counterBadge', 'customSelectionEnabled', 'icon', 'itemKey', 'selected', 'target', 'url']
|
1552
|
+
}]
|
1553
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1554
|
+
let VegaLeftNavSection = class VegaLeftNavSection {
|
1555
|
+
constructor(c, r, z) {
|
1556
|
+
this.z = z;
|
1557
|
+
c.detach();
|
1558
|
+
this.el = r.nativeElement;
|
1559
|
+
proxyOutputs(this, this.el, ['vegaActionClick', 'actionClick']);
|
1560
|
+
}
|
1561
|
+
};
|
1562
|
+
VegaLeftNavSection.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1563
|
+
VegaLeftNavSection.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNavSection, selector: "vega-left-nav-section", inputs: { itemKey: "itemKey", sectionHeader: "sectionHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1564
|
+
VegaLeftNavSection = __decorate([
|
1565
|
+
ProxyCmp({
|
1566
|
+
defineCustomElementFn: undefined,
|
1567
|
+
inputs: ['itemKey', 'sectionHeader']
|
1568
|
+
})
|
1569
|
+
], VegaLeftNavSection);
|
1570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavSection, decorators: [{
|
1571
|
+
type: Component,
|
1572
|
+
args: [{
|
1573
|
+
selector: 'vega-left-nav-section',
|
1574
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1575
|
+
template: '<ng-content></ng-content>',
|
1576
|
+
inputs: ['itemKey', 'sectionHeader']
|
1577
|
+
}]
|
1578
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1579
|
+
let VegaLineChart = class VegaLineChart {
|
1580
|
+
constructor(c, r, z) {
|
1581
|
+
this.z = z;
|
1582
|
+
c.detach();
|
1583
|
+
this.el = r.nativeElement;
|
1584
|
+
}
|
1585
|
+
};
|
1586
|
+
VegaLineChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLineChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1587
|
+
VegaLineChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLineChart, selector: "vega-line-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1588
|
+
VegaLineChart = __decorate([
|
1589
|
+
ProxyCmp({
|
1590
|
+
defineCustomElementFn: undefined,
|
1591
|
+
inputs: ['options'],
|
1592
|
+
methods: ['reRender']
|
1593
|
+
})
|
1594
|
+
], VegaLineChart);
|
1595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLineChart, decorators: [{
|
1596
|
+
type: Component,
|
1597
|
+
args: [{
|
1598
|
+
selector: 'vega-line-chart',
|
1599
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1600
|
+
template: '<ng-content></ng-content>',
|
1601
|
+
inputs: ['options']
|
1602
|
+
}]
|
1603
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1604
|
+
let VegaLoaderWrapper = class VegaLoaderWrapper {
|
1605
|
+
constructor(c, r, z) {
|
1606
|
+
this.z = z;
|
1607
|
+
c.detach();
|
1608
|
+
this.el = r.nativeElement;
|
1609
|
+
}
|
1610
|
+
};
|
1611
|
+
VegaLoaderWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLoaderWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1612
|
+
VegaLoaderWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLoaderWrapper, selector: "vega-loader-wrapper", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1613
|
+
VegaLoaderWrapper = __decorate([
|
1614
|
+
ProxyCmp({
|
1615
|
+
defineCustomElementFn: undefined
|
1616
|
+
})
|
1617
|
+
], VegaLoaderWrapper);
|
1618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLoaderWrapper, decorators: [{
|
1619
|
+
type: Component,
|
1620
|
+
args: [{
|
1621
|
+
selector: 'vega-loader-wrapper',
|
1622
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1623
|
+
template: '<ng-content></ng-content>'
|
1624
|
+
}]
|
1625
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1626
|
+
let VegaLoadingIndicator = class VegaLoadingIndicator {
|
1627
|
+
constructor(c, r, z) {
|
1628
|
+
this.z = z;
|
1629
|
+
c.detach();
|
1630
|
+
this.el = r.nativeElement;
|
1631
|
+
}
|
1632
|
+
};
|
1633
|
+
VegaLoadingIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLoadingIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1634
|
+
VegaLoadingIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
1635
|
+
VegaLoadingIndicator = __decorate([
|
1636
|
+
ProxyCmp({
|
1637
|
+
defineCustomElementFn: undefined,
|
1638
|
+
inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
|
1639
|
+
})
|
1640
|
+
], VegaLoadingIndicator);
|
1641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLoadingIndicator, decorators: [{
|
1642
|
+
type: Component,
|
1643
|
+
args: [{
|
1644
|
+
selector: 'vega-loading-indicator',
|
1645
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1646
|
+
template: '<ng-content></ng-content>',
|
1647
|
+
inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
|
1648
|
+
}]
|
1649
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1650
|
+
let VegaModal = class VegaModal {
|
1651
|
+
constructor(c, r, z) {
|
1652
|
+
this.z = z;
|
1653
|
+
c.detach();
|
1654
|
+
this.el = r.nativeElement;
|
1655
|
+
proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
|
1656
|
+
}
|
1657
|
+
};
|
1658
|
+
VegaModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1659
|
+
VegaModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaModal, selector: "vega-modal", inputs: { animation: "animation", backdrop: "backdrop", backdropColor: "backdropColor", contentMaxHeight: "contentMaxHeight", handleClose: "handleClose", isVerticallyCenter: "isVerticallyCenter", isVerticallyCentered: "isVerticallyCentered", modalTitle: "modalTitle", open: "open", padding: "padding", showCloseButton: "showCloseButton", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1660
|
+
VegaModal = __decorate([
|
1661
|
+
ProxyCmp({
|
1662
|
+
defineCustomElementFn: undefined,
|
1663
|
+
inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],
|
1664
|
+
methods: ['modal']
|
1665
|
+
})
|
1666
|
+
], VegaModal);
|
1667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaModal, decorators: [{
|
1668
|
+
type: Component,
|
1669
|
+
args: [{
|
1670
|
+
selector: 'vega-modal',
|
1671
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1672
|
+
template: '<ng-content></ng-content>',
|
1673
|
+
inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']
|
1674
|
+
}]
|
1675
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1676
|
+
let VegaNavCard = class VegaNavCard {
|
1677
|
+
constructor(c, r, z) {
|
1678
|
+
this.z = z;
|
1679
|
+
c.detach();
|
1680
|
+
this.el = r.nativeElement;
|
1681
|
+
}
|
1682
|
+
};
|
1683
|
+
VegaNavCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaNavCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1684
|
+
VegaNavCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaNavCard, selector: "vega-nav-card", inputs: { maxHeight: "maxHeight", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1685
|
+
VegaNavCard = __decorate([
|
1686
|
+
ProxyCmp({
|
1687
|
+
defineCustomElementFn: undefined,
|
1688
|
+
inputs: ['maxHeight', 'source']
|
1689
|
+
})
|
1690
|
+
], VegaNavCard);
|
1691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaNavCard, decorators: [{
|
1692
|
+
type: Component,
|
1693
|
+
args: [{
|
1694
|
+
selector: 'vega-nav-card',
|
1695
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1696
|
+
template: '<ng-content></ng-content>',
|
1697
|
+
inputs: ['maxHeight', 'source']
|
1698
|
+
}]
|
1699
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1700
|
+
let VegaPageNotification = class VegaPageNotification {
|
1701
|
+
constructor(c, r, z) {
|
1702
|
+
this.z = z;
|
1703
|
+
c.detach();
|
1704
|
+
this.el = r.nativeElement;
|
1705
|
+
}
|
1706
|
+
};
|
1707
|
+
VegaPageNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPageNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1708
|
+
VegaPageNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
1709
|
+
VegaPageNotification = __decorate([
|
1710
|
+
ProxyCmp({
|
1711
|
+
defineCustomElementFn: undefined,
|
1712
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
|
1713
|
+
methods: ['close']
|
1714
|
+
})
|
1715
|
+
], VegaPageNotification);
|
1716
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPageNotification, decorators: [{
|
1717
|
+
type: Component,
|
1718
|
+
args: [{
|
1719
|
+
selector: 'vega-page-notification',
|
1720
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1721
|
+
template: '<ng-content></ng-content>',
|
1722
|
+
inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
|
1723
|
+
}]
|
1724
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1725
|
+
let VegaPageNotificationList = class VegaPageNotificationList {
|
1726
|
+
constructor(c, r, z) {
|
1727
|
+
this.z = z;
|
1728
|
+
c.detach();
|
1729
|
+
this.el = r.nativeElement;
|
1730
|
+
}
|
1731
|
+
};
|
1732
|
+
VegaPageNotificationList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPageNotificationList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1733
|
+
VegaPageNotificationList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPageNotificationList, selector: "vega-page-notification-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1734
|
+
VegaPageNotificationList = __decorate([
|
1735
|
+
ProxyCmp({
|
1736
|
+
defineCustomElementFn: undefined
|
1737
|
+
})
|
1738
|
+
], VegaPageNotificationList);
|
1739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPageNotificationList, decorators: [{
|
1740
|
+
type: Component,
|
1741
|
+
args: [{
|
1742
|
+
selector: 'vega-page-notification-list',
|
1743
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1744
|
+
template: '<ng-content></ng-content>'
|
1745
|
+
}]
|
1746
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1747
|
+
let VegaPagination = class VegaPagination {
|
1748
|
+
constructor(c, r, z) {
|
1749
|
+
this.z = z;
|
1750
|
+
c.detach();
|
1751
|
+
this.el = r.nativeElement;
|
1752
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
|
1753
|
+
}
|
1754
|
+
};
|
1755
|
+
VegaPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1756
|
+
VegaPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPagination, selector: "vega-pagination", inputs: { current: "current", dropdownProps: "dropdownProps", extensions: "extensions", layout: "layout", pageSize: "pageSize", pageSizeSelectorOptions: "pageSizeSelectorOptions", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1757
|
+
VegaPagination = __decorate([
|
1758
|
+
ProxyCmp({
|
1759
|
+
defineCustomElementFn: undefined,
|
1760
|
+
inputs: ['current', 'dropdownProps', 'extensions', 'layout', 'pageSize', 'pageSizeSelectorOptions', 'total']
|
1761
|
+
})
|
1762
|
+
], VegaPagination);
|
1763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPagination, decorators: [{
|
1764
|
+
type: Component,
|
1765
|
+
args: [{
|
1766
|
+
selector: 'vega-pagination',
|
1767
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1768
|
+
template: '<ng-content></ng-content>',
|
1769
|
+
inputs: ['current', 'dropdownProps', 'extensions', 'layout', 'pageSize', 'pageSizeSelectorOptions', 'total']
|
1770
|
+
}]
|
1771
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1772
|
+
let VegaPaginationPageSelectorMobile = class VegaPaginationPageSelectorMobile {
|
1773
|
+
constructor(c, r, z) {
|
1774
|
+
this.z = z;
|
1775
|
+
c.detach();
|
1776
|
+
this.el = r.nativeElement;
|
1777
|
+
}
|
1778
|
+
};
|
1779
|
+
VegaPaginationPageSelectorMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPaginationPageSelectorMobile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1780
|
+
VegaPaginationPageSelectorMobile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPaginationPageSelectorMobile, selector: "vega-pagination-page-selector-mobile", inputs: { current: "current", pageCount: "pageCount", total: "total", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1781
|
+
VegaPaginationPageSelectorMobile = __decorate([
|
1782
|
+
ProxyCmp({
|
1783
|
+
defineCustomElementFn: undefined,
|
1784
|
+
inputs: ['current', 'pageCount', 'total', 'type']
|
1785
|
+
})
|
1786
|
+
], VegaPaginationPageSelectorMobile);
|
1787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPaginationPageSelectorMobile, decorators: [{
|
1788
|
+
type: Component,
|
1789
|
+
args: [{
|
1790
|
+
selector: 'vega-pagination-page-selector-mobile',
|
1791
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1792
|
+
template: '<ng-content></ng-content>',
|
1793
|
+
inputs: ['current', 'pageCount', 'total', 'type']
|
1794
|
+
}]
|
1795
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1796
|
+
let VegaPaginationPageSizeSelectorMobile = class VegaPaginationPageSizeSelectorMobile {
|
1797
|
+
constructor(c, r, z) {
|
1798
|
+
this.z = z;
|
1799
|
+
c.detach();
|
1800
|
+
this.el = r.nativeElement;
|
1801
|
+
}
|
1802
|
+
};
|
1803
|
+
VegaPaginationPageSizeSelectorMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPaginationPageSizeSelectorMobile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1804
|
+
VegaPaginationPageSizeSelectorMobile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPaginationPageSizeSelectorMobile, selector: "vega-pagination-page-size-selector-mobile", inputs: { current: "current", dropdownProps: "dropdownProps", pageSize: "pageSize", pageSizeSelectorOptions: "pageSizeSelectorOptions", total: "total", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1805
|
+
VegaPaginationPageSizeSelectorMobile = __decorate([
|
1806
|
+
ProxyCmp({
|
1807
|
+
defineCustomElementFn: undefined,
|
1808
|
+
inputs: ['current', 'dropdownProps', 'pageSize', 'pageSizeSelectorOptions', 'total', 'type']
|
1809
|
+
})
|
1810
|
+
], VegaPaginationPageSizeSelectorMobile);
|
1811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPaginationPageSizeSelectorMobile, decorators: [{
|
1812
|
+
type: Component,
|
1813
|
+
args: [{
|
1814
|
+
selector: 'vega-pagination-page-size-selector-mobile',
|
1815
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1816
|
+
template: '<ng-content></ng-content>',
|
1817
|
+
inputs: ['current', 'dropdownProps', 'pageSize', 'pageSizeSelectorOptions', 'total', 'type']
|
1818
|
+
}]
|
1819
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1820
|
+
let VegaPieChart = class VegaPieChart {
|
1821
|
+
constructor(c, r, z) {
|
1822
|
+
this.z = z;
|
1823
|
+
c.detach();
|
1824
|
+
this.el = r.nativeElement;
|
1825
|
+
}
|
1826
|
+
};
|
1827
|
+
VegaPieChart.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPieChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1828
|
+
VegaPieChart.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPieChart, selector: "vega-pie-chart", inputs: { options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1829
|
+
VegaPieChart = __decorate([
|
1830
|
+
ProxyCmp({
|
1831
|
+
defineCustomElementFn: undefined,
|
1832
|
+
inputs: ['options'],
|
1833
|
+
methods: ['reRender']
|
1834
|
+
})
|
1835
|
+
], VegaPieChart);
|
1836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPieChart, decorators: [{
|
1837
|
+
type: Component,
|
1838
|
+
args: [{
|
1839
|
+
selector: 'vega-pie-chart',
|
1840
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1841
|
+
template: '<ng-content></ng-content>',
|
1842
|
+
inputs: ['options']
|
1843
|
+
}]
|
1844
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1845
|
+
let VegaPopover = class VegaPopover {
|
1846
|
+
constructor(c, r, z) {
|
1847
|
+
this.z = z;
|
1848
|
+
c.detach();
|
1849
|
+
this.el = r.nativeElement;
|
1850
|
+
proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
|
1851
|
+
}
|
1852
|
+
};
|
1853
|
+
VegaPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1854
|
+
VegaPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPopover, selector: "vega-popover", inputs: { alignment: "alignment", isScreenPosition: "isScreenPosition", padding: "padding", placement: "placement", positionRelativeTo: "positionRelativeTo", showArrow: "showArrow", size: "size", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1855
|
+
VegaPopover = __decorate([
|
1856
|
+
ProxyCmp({
|
1857
|
+
defineCustomElementFn: undefined,
|
1858
|
+
inputs: ['alignment', 'isScreenPosition', 'padding', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger'],
|
1859
|
+
methods: ['show', 'hide']
|
1860
|
+
})
|
1861
|
+
], VegaPopover);
|
1862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPopover, decorators: [{
|
1863
|
+
type: Component,
|
1864
|
+
args: [{
|
1865
|
+
selector: 'vega-popover',
|
1866
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1867
|
+
template: '<ng-content></ng-content>',
|
1868
|
+
inputs: ['alignment', 'isScreenPosition', 'padding', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger']
|
1869
|
+
}]
|
1870
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1871
|
+
let VegaPopoverContentBox = class VegaPopoverContentBox {
|
1872
|
+
constructor(c, r, z) {
|
1873
|
+
this.z = z;
|
1874
|
+
c.detach();
|
1875
|
+
this.el = r.nativeElement;
|
1876
|
+
}
|
1877
|
+
};
|
1878
|
+
VegaPopoverContentBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPopoverContentBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1879
|
+
VegaPopoverContentBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaPopoverContentBox, selector: "vega-popover-content-box", inputs: { padding: "padding", showArrow: "showArrow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1880
|
+
VegaPopoverContentBox = __decorate([
|
1881
|
+
ProxyCmp({
|
1882
|
+
defineCustomElementFn: undefined,
|
1883
|
+
inputs: ['padding', 'showArrow']
|
1884
|
+
})
|
1885
|
+
], VegaPopoverContentBox);
|
1886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPopoverContentBox, decorators: [{
|
1887
|
+
type: Component,
|
1888
|
+
args: [{
|
1889
|
+
selector: 'vega-popover-content-box',
|
1890
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1891
|
+
template: '<ng-content></ng-content>',
|
1892
|
+
inputs: ['padding', 'showArrow']
|
1893
|
+
}]
|
1894
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1895
|
+
let VegaProgressTracker = class VegaProgressTracker {
|
1896
|
+
constructor(c, r, z) {
|
1897
|
+
this.z = z;
|
1898
|
+
c.detach();
|
1899
|
+
this.el = r.nativeElement;
|
1900
|
+
proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
|
1901
|
+
}
|
1902
|
+
};
|
1903
|
+
VegaProgressTracker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaProgressTracker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1904
|
+
VegaProgressTracker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaProgressTracker, selector: "vega-progress-tracker", inputs: { canClickStep: "canClickStep", completedStepArray: "completedStepArray", completedSteps: "completedSteps", current: "current", direction: "direction", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1905
|
+
VegaProgressTracker = __decorate([
|
1906
|
+
ProxyCmp({
|
1907
|
+
defineCustomElementFn: undefined,
|
1908
|
+
inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps'],
|
1909
|
+
methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']
|
1910
|
+
})
|
1911
|
+
], VegaProgressTracker);
|
1912
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaProgressTracker, decorators: [{
|
1913
|
+
type: Component,
|
1914
|
+
args: [{
|
1915
|
+
selector: 'vega-progress-tracker',
|
1916
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1917
|
+
template: '<ng-content></ng-content>',
|
1918
|
+
inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps']
|
1919
|
+
}]
|
1920
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1921
|
+
let VegaRadio = class VegaRadio {
|
1922
|
+
constructor(c, r, z) {
|
1923
|
+
this.z = z;
|
1924
|
+
c.detach();
|
1925
|
+
this.el = r.nativeElement;
|
1926
|
+
proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
|
1927
|
+
}
|
1928
|
+
};
|
1929
|
+
VegaRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1930
|
+
VegaRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
1931
|
+
VegaRadio = __decorate([
|
1932
|
+
ProxyCmp({
|
1933
|
+
defineCustomElementFn: undefined,
|
1934
|
+
inputs: ['checked', 'disabled', 'name', 'size', 'value']
|
1935
|
+
})
|
1936
|
+
], VegaRadio);
|
1937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadio, decorators: [{
|
1938
|
+
type: Component,
|
1939
|
+
args: [{
|
1940
|
+
selector: 'vega-radio',
|
1941
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1942
|
+
template: '<ng-content></ng-content>',
|
1943
|
+
inputs: ['checked', 'disabled', 'name', 'size', 'value']
|
1944
|
+
}]
|
1945
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1946
|
+
let VegaRadioGroup = class VegaRadioGroup {
|
1947
|
+
constructor(c, r, z) {
|
1948
|
+
this.z = z;
|
1949
|
+
c.detach();
|
1950
|
+
this.el = r.nativeElement;
|
1951
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
1952
|
+
}
|
1953
|
+
};
|
1954
|
+
VegaRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1955
|
+
VegaRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRadioGroup, selector: "vega-radio-group", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", name: "name", required: "required", validationRules: "validationRules", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1956
|
+
VegaRadioGroup = __decorate([
|
1957
|
+
ProxyCmp({
|
1958
|
+
defineCustomElementFn: undefined,
|
1959
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
1960
|
+
})
|
1961
|
+
], VegaRadioGroup);
|
1962
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadioGroup, decorators: [{
|
1963
|
+
type: Component,
|
1964
|
+
args: [{
|
1965
|
+
selector: 'vega-radio-group',
|
1966
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1967
|
+
template: '<ng-content></ng-content>',
|
1968
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
1969
|
+
}]
|
1970
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1971
|
+
let VegaRichTextContent = class VegaRichTextContent {
|
1972
|
+
constructor(c, r, z) {
|
1973
|
+
this.z = z;
|
1974
|
+
c.detach();
|
1975
|
+
this.el = r.nativeElement;
|
1976
|
+
}
|
1977
|
+
};
|
1978
|
+
VegaRichTextContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
1979
|
+
VegaRichTextContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextContent, selector: "vega-rich-text-content", inputs: { content: "content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1980
|
+
VegaRichTextContent = __decorate([
|
1981
|
+
ProxyCmp({
|
1982
|
+
defineCustomElementFn: undefined,
|
1983
|
+
inputs: ['content'],
|
1984
|
+
methods: ['vegaFocus']
|
1985
|
+
})
|
1986
|
+
], VegaRichTextContent);
|
1987
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextContent, decorators: [{
|
1988
|
+
type: Component,
|
1989
|
+
args: [{
|
1990
|
+
selector: 'vega-rich-text-content',
|
1991
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
1992
|
+
template: '<ng-content></ng-content>',
|
1993
|
+
inputs: ['content']
|
1994
|
+
}]
|
1995
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
1996
|
+
let VegaRichTextEditor = class VegaRichTextEditor {
|
1997
|
+
constructor(c, r, z) {
|
1998
|
+
this.z = z;
|
1999
|
+
c.detach();
|
2000
|
+
this.el = r.nativeElement;
|
2001
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaImageInserted', 'imageInserted']);
|
2002
|
+
}
|
2003
|
+
};
|
2004
|
+
VegaRichTextEditor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextEditor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2005
|
+
VegaRichTextEditor.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextEditor, selector: "vega-rich-text-editor", inputs: { allowSourceEdit: "allowSourceEdit", autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", placeholder: "placeholder", required: "required", rows: "rows", sourceEditConfig: "sourceEditConfig", toolbarItems: "toolbarItems", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2006
|
+
VegaRichTextEditor = __decorate([
|
2007
|
+
ProxyCmp({
|
2008
|
+
defineCustomElementFn: undefined,
|
2009
|
+
inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'toolbarItems', 'validationRules', 'value']
|
2010
|
+
})
|
2011
|
+
], VegaRichTextEditor);
|
2012
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextEditor, decorators: [{
|
2013
|
+
type: Component,
|
2014
|
+
args: [{
|
2015
|
+
selector: 'vega-rich-text-editor',
|
2016
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2017
|
+
template: '<ng-content></ng-content>',
|
2018
|
+
inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'toolbarItems', 'validationRules', 'value']
|
2019
|
+
}]
|
2020
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2021
|
+
let VegaRichTextEditorToolbarButton = class VegaRichTextEditorToolbarButton {
|
2022
|
+
constructor(c, r, z) {
|
2023
|
+
this.z = z;
|
2024
|
+
c.detach();
|
2025
|
+
this.el = r.nativeElement;
|
2026
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
2027
|
+
}
|
2028
|
+
};
|
2029
|
+
VegaRichTextEditorToolbarButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextEditorToolbarButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2030
|
+
VegaRichTextEditorToolbarButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextEditorToolbarButton, selector: "vega-rich-text-editor-toolbar-button", inputs: { disabled: "disabled", hidden: "hidden", icon: "icon", iconColor: "iconColor", selected: "selected", showArrowIcon: "showArrowIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2031
|
+
VegaRichTextEditorToolbarButton = __decorate([
|
2032
|
+
ProxyCmp({
|
2033
|
+
defineCustomElementFn: undefined,
|
2034
|
+
inputs: ['disabled', 'hidden', 'icon', 'iconColor', 'selected', 'showArrowIcon']
|
2035
|
+
})
|
2036
|
+
], VegaRichTextEditorToolbarButton);
|
2037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextEditorToolbarButton, decorators: [{
|
2038
|
+
type: Component,
|
2039
|
+
args: [{
|
2040
|
+
selector: 'vega-rich-text-editor-toolbar-button',
|
2041
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2042
|
+
template: '<ng-content></ng-content>',
|
2043
|
+
inputs: ['disabled', 'hidden', 'icon', 'iconColor', 'selected', 'showArrowIcon']
|
2044
|
+
}]
|
2045
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2046
|
+
let VegaRichTextImageEditor = class VegaRichTextImageEditor {
|
2047
|
+
constructor(c, r, z) {
|
2048
|
+
this.z = z;
|
2049
|
+
c.detach();
|
2050
|
+
this.el = r.nativeElement;
|
2051
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2052
|
+
}
|
2053
|
+
};
|
2054
|
+
VegaRichTextImageEditor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextImageEditor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2055
|
+
VegaRichTextImageEditor.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextImageEditor, selector: "vega-rich-text-image-editor", inputs: { alt: "alt", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2056
|
+
VegaRichTextImageEditor = __decorate([
|
2057
|
+
ProxyCmp({
|
2058
|
+
defineCustomElementFn: undefined,
|
2059
|
+
inputs: ['alt', 'size']
|
2060
|
+
})
|
2061
|
+
], VegaRichTextImageEditor);
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextImageEditor, decorators: [{
|
2063
|
+
type: Component,
|
2064
|
+
args: [{
|
2065
|
+
selector: 'vega-rich-text-image-editor',
|
2066
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2067
|
+
template: '<ng-content></ng-content>',
|
2068
|
+
inputs: ['alt', 'size']
|
2069
|
+
}]
|
2070
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2071
|
+
let VegaRichTextLinkEditor = class VegaRichTextLinkEditor {
|
2072
|
+
constructor(c, r, z) {
|
2073
|
+
this.z = z;
|
2074
|
+
c.detach();
|
2075
|
+
this.el = r.nativeElement;
|
2076
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2077
|
+
}
|
2078
|
+
};
|
2079
|
+
VegaRichTextLinkEditor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextLinkEditor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2080
|
+
VegaRichTextLinkEditor.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextLinkEditor, selector: "vega-rich-text-link-editor", inputs: { record: "record", resetStatusAfterHide: "resetStatusAfterHide", status: "status", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2081
|
+
VegaRichTextLinkEditor = __decorate([
|
2082
|
+
ProxyCmp({
|
2083
|
+
defineCustomElementFn: undefined,
|
2084
|
+
inputs: ['record', 'resetStatusAfterHide', 'status', 'target'],
|
2085
|
+
methods: ['show']
|
2086
|
+
})
|
2087
|
+
], VegaRichTextLinkEditor);
|
2088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextLinkEditor, decorators: [{
|
2089
|
+
type: Component,
|
2090
|
+
args: [{
|
2091
|
+
selector: 'vega-rich-text-link-editor',
|
2092
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2093
|
+
template: '<ng-content></ng-content>',
|
2094
|
+
inputs: ['record', 'resetStatusAfterHide', 'status', 'target']
|
2095
|
+
}]
|
2096
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2097
|
+
let VegaSectionTitle = class VegaSectionTitle {
|
2098
|
+
constructor(c, r, z) {
|
2099
|
+
this.z = z;
|
2100
|
+
c.detach();
|
2101
|
+
this.el = r.nativeElement;
|
2102
|
+
}
|
2103
|
+
};
|
2104
|
+
VegaSectionTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSectionTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2105
|
+
VegaSectionTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSectionTitle, selector: "vega-section-title", inputs: { description: "description", icon: "icon", iconAlign: "iconAlign", titleText: "titleText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2106
|
+
VegaSectionTitle = __decorate([
|
2107
|
+
ProxyCmp({
|
2108
|
+
defineCustomElementFn: undefined,
|
2109
|
+
inputs: ['description', 'icon', 'iconAlign', 'titleText']
|
2110
|
+
})
|
2111
|
+
], VegaSectionTitle);
|
2112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSectionTitle, decorators: [{
|
2113
|
+
type: Component,
|
2114
|
+
args: [{
|
2115
|
+
selector: 'vega-section-title',
|
2116
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2117
|
+
template: '<ng-content></ng-content>',
|
2118
|
+
inputs: ['description', 'icon', 'iconAlign', 'titleText']
|
2119
|
+
}]
|
2120
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2121
|
+
let VegaSegmentControl = class VegaSegmentControl {
|
2122
|
+
constructor(c, r, z) {
|
2123
|
+
this.z = z;
|
2124
|
+
c.detach();
|
2125
|
+
this.el = r.nativeElement;
|
2126
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2127
|
+
}
|
2128
|
+
};
|
2129
|
+
VegaSegmentControl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSegmentControl, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2130
|
+
VegaSegmentControl.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSegmentControl, selector: "vega-segment-control", inputs: { block: "block", segments: "segments", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2131
|
+
VegaSegmentControl = __decorate([
|
2132
|
+
ProxyCmp({
|
2133
|
+
defineCustomElementFn: undefined,
|
2134
|
+
inputs: ['block', 'segments', 'selected', 'size', 'variant']
|
2135
|
+
})
|
2136
|
+
], VegaSegmentControl);
|
2137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSegmentControl, decorators: [{
|
2138
|
+
type: Component,
|
2139
|
+
args: [{
|
2140
|
+
selector: 'vega-segment-control',
|
2141
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2142
|
+
template: '<ng-content></ng-content>',
|
2143
|
+
inputs: ['block', 'segments', 'selected', 'size', 'variant']
|
2144
|
+
}]
|
2145
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2146
|
+
let VegaSelectionChip = class VegaSelectionChip {
|
2147
|
+
constructor(c, r, z) {
|
2148
|
+
this.z = z;
|
2149
|
+
c.detach();
|
2150
|
+
this.el = r.nativeElement;
|
2151
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2152
|
+
}
|
2153
|
+
};
|
2154
|
+
VegaSelectionChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2155
|
+
VegaSelectionChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSelectionChip, selector: "vega-selection-chip", inputs: { block: "block", checked: "checked", disabled: "disabled", disabledTooltip: "disabledTooltip", label: "label", size: "size", swatchColor: "swatchColor", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2156
|
+
VegaSelectionChip = __decorate([
|
2157
|
+
ProxyCmp({
|
2158
|
+
defineCustomElementFn: undefined,
|
2159
|
+
inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
|
2160
|
+
})
|
2161
|
+
], VegaSelectionChip);
|
2162
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChip, decorators: [{
|
2163
|
+
type: Component,
|
2164
|
+
args: [{
|
2165
|
+
selector: 'vega-selection-chip',
|
2166
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2167
|
+
template: '<ng-content></ng-content>',
|
2168
|
+
inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
|
2169
|
+
}]
|
2170
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2171
|
+
let VegaSelectionChipGroup = class VegaSelectionChipGroup {
|
2172
|
+
constructor(c, r, z) {
|
2173
|
+
this.z = z;
|
2174
|
+
c.detach();
|
2175
|
+
this.el = r.nativeElement;
|
2176
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2177
|
+
}
|
2178
|
+
};
|
2179
|
+
VegaSelectionChipGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChipGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2180
|
+
VegaSelectionChipGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSelectionChipGroup, selector: "vega-selection-chip-group", inputs: { disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", required: "required", selectType: "selectType", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2181
|
+
VegaSelectionChipGroup = __decorate([
|
2182
|
+
ProxyCmp({
|
2183
|
+
defineCustomElementFn: undefined,
|
2184
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
|
2185
|
+
})
|
2186
|
+
], VegaSelectionChipGroup);
|
2187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChipGroup, decorators: [{
|
2188
|
+
type: Component,
|
2189
|
+
args: [{
|
2190
|
+
selector: 'vega-selection-chip-group',
|
2191
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2192
|
+
template: '<ng-content></ng-content>',
|
2193
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
|
2194
|
+
}]
|
2195
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2196
|
+
let VegaSelectionTile = class VegaSelectionTile {
|
2197
|
+
constructor(c, r, z) {
|
2198
|
+
this.z = z;
|
2199
|
+
c.detach();
|
2200
|
+
this.el = r.nativeElement;
|
2201
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2202
|
+
}
|
2203
|
+
};
|
2204
|
+
VegaSelectionTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2205
|
+
VegaSelectionTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSelectionTile, selector: "vega-selection-tile", inputs: { checked: "checked", disabled: "disabled", note: "note", prefixIcon: "prefixIcon", selectType: "selectType", titleText: "titleText", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2206
|
+
VegaSelectionTile = __decorate([
|
2207
|
+
ProxyCmp({
|
2208
|
+
defineCustomElementFn: undefined,
|
2209
|
+
inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
|
2210
|
+
})
|
2211
|
+
], VegaSelectionTile);
|
2212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTile, decorators: [{
|
2213
|
+
type: Component,
|
2214
|
+
args: [{
|
2215
|
+
selector: 'vega-selection-tile',
|
2216
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2217
|
+
template: '<ng-content></ng-content>',
|
2218
|
+
inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
|
2219
|
+
}]
|
2220
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2221
|
+
let VegaSelectionTileGroup = class VegaSelectionTileGroup {
|
2222
|
+
constructor(c, r, z) {
|
2223
|
+
this.z = z;
|
2224
|
+
c.detach();
|
2225
|
+
this.el = r.nativeElement;
|
2226
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2227
|
+
}
|
2228
|
+
};
|
2229
|
+
VegaSelectionTileGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTileGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2230
|
+
VegaSelectionTileGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSelectionTileGroup, selector: "vega-selection-tile-group", inputs: { disabled: "disabled", distributeEvenly: "distributeEvenly", hint: "hint", isValid: "isValid", label: "label", layout: "layout", required: "required", selectType: "selectType", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2231
|
+
VegaSelectionTileGroup = __decorate([
|
2232
|
+
ProxyCmp({
|
2233
|
+
defineCustomElementFn: undefined,
|
2234
|
+
inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
2235
|
+
})
|
2236
|
+
], VegaSelectionTileGroup);
|
2237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTileGroup, decorators: [{
|
2238
|
+
type: Component,
|
2239
|
+
args: [{
|
2240
|
+
selector: 'vega-selection-tile-group',
|
2241
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2242
|
+
template: '<ng-content></ng-content>',
|
2243
|
+
inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
2244
|
+
}]
|
2245
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2246
|
+
let VegaSidenav = class VegaSidenav {
|
2247
|
+
constructor(c, r, z) {
|
2248
|
+
this.z = z;
|
2249
|
+
c.detach();
|
2250
|
+
this.el = r.nativeElement;
|
2251
|
+
proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
|
2252
|
+
}
|
2253
|
+
};
|
2254
|
+
VegaSidenav.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2255
|
+
VegaSidenav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSidenav, selector: "vega-sidenav", inputs: { footnote: "footnote", headerConfig: "headerConfig", openByDefault: "openByDefault", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2256
|
+
VegaSidenav = __decorate([
|
2257
|
+
ProxyCmp({
|
2258
|
+
defineCustomElementFn: undefined,
|
2259
|
+
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],
|
2260
|
+
methods: ['toggle']
|
2261
|
+
})
|
2262
|
+
], VegaSidenav);
|
2263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenav, decorators: [{
|
2264
|
+
type: Component,
|
2265
|
+
args: [{
|
2266
|
+
selector: 'vega-sidenav',
|
2267
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2268
|
+
template: '<ng-content></ng-content>',
|
2269
|
+
inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']
|
2270
|
+
}]
|
2271
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2272
|
+
let VegaSidenavGroup = class VegaSidenavGroup {
|
2273
|
+
constructor(c, r, z) {
|
2274
|
+
this.z = z;
|
2275
|
+
c.detach();
|
2276
|
+
this.el = r.nativeElement;
|
2277
|
+
}
|
2278
|
+
};
|
2279
|
+
VegaSidenavGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2280
|
+
VegaSidenavGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSidenavGroup, selector: "vega-sidenav-group", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2281
|
+
VegaSidenavGroup = __decorate([
|
2282
|
+
ProxyCmp({
|
2283
|
+
defineCustomElementFn: undefined,
|
2284
|
+
inputs: ['icon', 'label']
|
2285
|
+
})
|
2286
|
+
], VegaSidenavGroup);
|
2287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavGroup, decorators: [{
|
2288
|
+
type: Component,
|
2289
|
+
args: [{
|
2290
|
+
selector: 'vega-sidenav-group',
|
2291
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2292
|
+
template: '<ng-content></ng-content>',
|
2293
|
+
inputs: ['icon', 'label']
|
2294
|
+
}]
|
2295
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2296
|
+
let VegaSidenavLink = class VegaSidenavLink {
|
2297
|
+
constructor(c, r, z) {
|
2298
|
+
this.z = z;
|
2299
|
+
c.detach();
|
2300
|
+
this.el = r.nativeElement;
|
2301
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
2302
|
+
}
|
2303
|
+
};
|
2304
|
+
VegaSidenavLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2305
|
+
VegaSidenavLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSidenavLink, selector: "vega-sidenav-link", inputs: { icon: "icon", selected: "selected", showSideBarOnClickLink: "showSideBarOnClickLink", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2306
|
+
VegaSidenavLink = __decorate([
|
2307
|
+
ProxyCmp({
|
2308
|
+
defineCustomElementFn: undefined,
|
2309
|
+
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
2310
|
+
})
|
2311
|
+
], VegaSidenavLink);
|
2312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavLink, decorators: [{
|
2313
|
+
type: Component,
|
2314
|
+
args: [{
|
2315
|
+
selector: 'vega-sidenav-link',
|
2316
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2317
|
+
template: '<ng-content></ng-content>',
|
2318
|
+
inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
|
2319
|
+
}]
|
2320
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2321
|
+
let VegaSignatureCapture = class VegaSignatureCapture {
|
2322
|
+
constructor(c, r, z) {
|
2323
|
+
this.z = z;
|
2324
|
+
c.detach();
|
2325
|
+
this.el = r.nativeElement;
|
2326
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2327
|
+
}
|
2328
|
+
};
|
2329
|
+
VegaSignatureCapture.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSignatureCapture, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2330
|
+
VegaSignatureCapture.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSignatureCapture, selector: "vega-signature-capture", inputs: { autoValidation: "autoValidation", disabled: "disabled", height: "height", isValid: "isValid", label: "label", mode: "mode", placeholder: "placeholder", placeholderIcon: "placeholderIcon", required: "required", showClearBtn: "showClearBtn", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2331
|
+
VegaSignatureCapture = __decorate([
|
2332
|
+
ProxyCmp({
|
2333
|
+
defineCustomElementFn: undefined,
|
2334
|
+
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
|
2335
|
+
methods: ['clear']
|
2336
|
+
})
|
2337
|
+
], VegaSignatureCapture);
|
2338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSignatureCapture, decorators: [{
|
2339
|
+
type: Component,
|
2340
|
+
args: [{
|
2341
|
+
selector: 'vega-signature-capture',
|
2342
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2343
|
+
template: '<ng-content></ng-content>',
|
2344
|
+
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
|
2345
|
+
}]
|
2346
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2347
|
+
let VegaSkeleton = class VegaSkeleton {
|
2348
|
+
constructor(c, r, z) {
|
2349
|
+
this.z = z;
|
2350
|
+
c.detach();
|
2351
|
+
this.el = r.nativeElement;
|
2352
|
+
}
|
2353
|
+
};
|
2354
|
+
VegaSkeleton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2355
|
+
VegaSkeleton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSkeleton, selector: "vega-skeleton", inputs: { animated: "animated", corners: "corners", height: "height", type: "type", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2356
|
+
VegaSkeleton = __decorate([
|
2357
|
+
ProxyCmp({
|
2358
|
+
defineCustomElementFn: undefined,
|
2359
|
+
inputs: ['animated', 'corners', 'height', 'type', 'width']
|
2360
|
+
})
|
2361
|
+
], VegaSkeleton);
|
2362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSkeleton, decorators: [{
|
2363
|
+
type: Component,
|
2364
|
+
args: [{
|
2365
|
+
selector: 'vega-skeleton',
|
2366
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2367
|
+
template: '<ng-content></ng-content>',
|
2368
|
+
inputs: ['animated', 'corners', 'height', 'type', 'width']
|
2369
|
+
}]
|
2370
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2371
|
+
let VegaSlotContainer = class VegaSlotContainer {
|
2372
|
+
constructor(c, r, z) {
|
2373
|
+
this.z = z;
|
2374
|
+
c.detach();
|
2375
|
+
this.el = r.nativeElement;
|
2376
|
+
}
|
2377
|
+
};
|
2378
|
+
VegaSlotContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSlotContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2379
|
+
VegaSlotContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSlotContainer, selector: "vega-slot-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2380
|
+
VegaSlotContainer = __decorate([
|
2381
|
+
ProxyCmp({
|
2382
|
+
defineCustomElementFn: undefined
|
2383
|
+
})
|
2384
|
+
], VegaSlotContainer);
|
2385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSlotContainer, decorators: [{
|
2386
|
+
type: Component,
|
2387
|
+
args: [{
|
2388
|
+
selector: 'vega-slot-container',
|
2389
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2390
|
+
template: '<ng-content></ng-content>'
|
2391
|
+
}]
|
2392
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2393
|
+
let VegaStepper = class VegaStepper {
|
2394
|
+
constructor(c, r, z) {
|
2395
|
+
this.z = z;
|
2396
|
+
c.detach();
|
2397
|
+
this.el = r.nativeElement;
|
2398
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2399
|
+
}
|
2400
|
+
};
|
2401
|
+
VegaStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2402
|
+
VegaStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaStepper, selector: "vega-stepper", inputs: { autoValidation: "autoValidation", buttonVariant: "buttonVariant", disabled: "disabled", inputDisabled: "inputDisabled", isValid: "isValid", label: "label", max: "max", min: "min", stepperId: "stepperId", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2403
|
+
VegaStepper = __decorate([
|
2404
|
+
ProxyCmp({
|
2405
|
+
defineCustomElementFn: undefined,
|
2406
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
2407
|
+
})
|
2408
|
+
], VegaStepper);
|
2409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaStepper, decorators: [{
|
2410
|
+
type: Component,
|
2411
|
+
args: [{
|
2412
|
+
selector: 'vega-stepper',
|
2413
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2414
|
+
template: '<ng-content></ng-content>',
|
2415
|
+
inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
|
2416
|
+
}]
|
2417
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2418
|
+
let VegaTabGroup = class VegaTabGroup {
|
2419
|
+
constructor(c, r, z) {
|
2420
|
+
this.z = z;
|
2421
|
+
c.detach();
|
2422
|
+
this.el = r.nativeElement;
|
2423
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
2424
|
+
}
|
2425
|
+
};
|
2426
|
+
VegaTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2427
|
+
VegaTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTabGroup, selector: "vega-tab-group", inputs: { gap: "gap", overflow: "overflow", positionRelativeTo: "positionRelativeTo", selectedTabDataTarget: "selectedTabDataTarget", showCloseButton: "showCloseButton", tabItems: "tabItems", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2428
|
+
VegaTabGroup = __decorate([
|
2429
|
+
ProxyCmp({
|
2430
|
+
defineCustomElementFn: undefined,
|
2431
|
+
inputs: ['gap', 'overflow', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
|
2432
|
+
})
|
2433
|
+
], VegaTabGroup);
|
2434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTabGroup, decorators: [{
|
2435
|
+
type: Component,
|
2436
|
+
args: [{
|
2437
|
+
selector: 'vega-tab-group',
|
2438
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2439
|
+
template: '<ng-content></ng-content>',
|
2440
|
+
inputs: ['gap', 'overflow', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
|
2441
|
+
}]
|
2442
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2443
|
+
let VegaTabGroupPanel = class VegaTabGroupPanel {
|
2444
|
+
constructor(c, r, z) {
|
2445
|
+
this.z = z;
|
2446
|
+
c.detach();
|
2447
|
+
this.el = r.nativeElement;
|
2448
|
+
}
|
2449
|
+
};
|
2450
|
+
VegaTabGroupPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTabGroupPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2451
|
+
VegaTabGroupPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTabGroupPanel, selector: "vega-tab-group-panel", inputs: { isActive: "isActive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2452
|
+
VegaTabGroupPanel = __decorate([
|
2453
|
+
ProxyCmp({
|
2454
|
+
defineCustomElementFn: undefined,
|
2455
|
+
inputs: ['isActive']
|
2456
|
+
})
|
2457
|
+
], VegaTabGroupPanel);
|
2458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTabGroupPanel, decorators: [{
|
2459
|
+
type: Component,
|
2460
|
+
args: [{
|
2461
|
+
selector: 'vega-tab-group-panel',
|
2462
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2463
|
+
template: '<ng-content></ng-content>',
|
2464
|
+
inputs: ['isActive']
|
2465
|
+
}]
|
2466
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2467
|
+
let VegaTable = class VegaTable {
|
2468
|
+
constructor(c, r, z) {
|
2469
|
+
this.z = z;
|
2470
|
+
c.detach();
|
2471
|
+
this.el = r.nativeElement;
|
2472
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaRowExpand', 'rowExpand', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange', 'vegaRowSelect', 'rowSelect', 'vegaRowSelectAll', 'rowSelectAll']);
|
2473
|
+
}
|
2474
|
+
};
|
2475
|
+
VegaTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2476
|
+
VegaTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTable, selector: "vega-table", inputs: { columnDivider: "columnDivider", columns: "columns", dataSource: "dataSource", density: "density", emptyDescription: "emptyDescription", groupColumns: "groupColumns", paddingX: "paddingX", pagination: "pagination", rowClickable: "rowClickable", rowDivider: "rowDivider", rowExpandable: "rowExpandable", rowKey: "rowKey", rowSelection: "rowSelection", scrollConfig: "scrollConfig", showHeader: "showHeader", sortConfig: "sortConfig", striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2477
|
+
VegaTable = __decorate([
|
2478
|
+
ProxyCmp({
|
2479
|
+
defineCustomElementFn: undefined,
|
2480
|
+
inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'groupColumns', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped'],
|
2481
|
+
methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection', 'startRowEditMode', 'stopRowEditMode', 'stopAllRowEditMode', 'getRowData', 'getRowsData', 'getFormRef', 'addNewRow', 'saveEditRow', 'saveAllEditRows', 'getEditingRowsKey', 'removeRow']
|
2482
|
+
})
|
2483
|
+
], VegaTable);
|
2484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTable, decorators: [{
|
2485
|
+
type: Component,
|
2486
|
+
args: [{
|
2487
|
+
selector: 'vega-table',
|
2488
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2489
|
+
template: '<ng-content></ng-content>',
|
2490
|
+
inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'groupColumns', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped']
|
2491
|
+
}]
|
2492
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2493
|
+
let VegaTableBody = class VegaTableBody {
|
2494
|
+
constructor(c, r, z) {
|
2495
|
+
this.z = z;
|
2496
|
+
c.detach();
|
2497
|
+
this.el = r.nativeElement;
|
2498
|
+
}
|
2499
|
+
};
|
2500
|
+
VegaTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2501
|
+
VegaTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableBody, selector: "vega-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2502
|
+
VegaTableBody = __decorate([
|
2503
|
+
ProxyCmp({
|
2504
|
+
defineCustomElementFn: undefined
|
2505
|
+
})
|
2506
|
+
], VegaTableBody);
|
2507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableBody, decorators: [{
|
2508
|
+
type: Component,
|
2509
|
+
args: [{
|
2510
|
+
selector: 'vega-table-body',
|
2511
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2512
|
+
template: '<ng-content></ng-content>'
|
2513
|
+
}]
|
2514
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2515
|
+
let VegaTableCell = class VegaTableCell {
|
2516
|
+
constructor(c, r, z) {
|
2517
|
+
this.z = z;
|
2518
|
+
c.detach();
|
2519
|
+
this.el = r.nativeElement;
|
2520
|
+
}
|
2521
|
+
};
|
2522
|
+
VegaTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2523
|
+
VegaTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
2524
|
+
VegaTableCell = __decorate([
|
2525
|
+
ProxyCmp({
|
2526
|
+
defineCustomElementFn: undefined,
|
2527
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
2528
|
+
})
|
2529
|
+
], VegaTableCell);
|
2530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableCell, decorators: [{
|
2531
|
+
type: Component,
|
2532
|
+
args: [{
|
2533
|
+
selector: 'vega-table-cell',
|
2534
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2535
|
+
template: '<ng-content></ng-content>',
|
2536
|
+
inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
|
2537
|
+
}]
|
2538
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2539
|
+
let VegaTableExpandRow = class VegaTableExpandRow {
|
2540
|
+
constructor(c, r, z) {
|
2541
|
+
this.z = z;
|
2542
|
+
c.detach();
|
2543
|
+
this.el = r.nativeElement;
|
2544
|
+
}
|
2545
|
+
};
|
2546
|
+
VegaTableExpandRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableExpandRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2547
|
+
VegaTableExpandRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableExpandRow, selector: "vega-table-expand-row", inputs: { rowKey: "rowKey", striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2548
|
+
VegaTableExpandRow = __decorate([
|
2549
|
+
ProxyCmp({
|
2550
|
+
defineCustomElementFn: undefined,
|
2551
|
+
inputs: ['rowKey', 'striped']
|
2552
|
+
})
|
2553
|
+
], VegaTableExpandRow);
|
2554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableExpandRow, decorators: [{
|
2555
|
+
type: Component,
|
2556
|
+
args: [{
|
2557
|
+
selector: 'vega-table-expand-row',
|
2558
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2559
|
+
template: '<ng-content></ng-content>',
|
2560
|
+
inputs: ['rowKey', 'striped']
|
2561
|
+
}]
|
2562
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2563
|
+
let VegaTableHead = class VegaTableHead {
|
2564
|
+
constructor(c, r, z) {
|
2565
|
+
this.z = z;
|
2566
|
+
c.detach();
|
2567
|
+
this.el = r.nativeElement;
|
2568
|
+
}
|
2569
|
+
};
|
2570
|
+
VegaTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2571
|
+
VegaTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableHead, selector: "vega-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2572
|
+
VegaTableHead = __decorate([
|
2573
|
+
ProxyCmp({
|
2574
|
+
defineCustomElementFn: undefined
|
2575
|
+
})
|
2576
|
+
], VegaTableHead);
|
2577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHead, decorators: [{
|
2578
|
+
type: Component,
|
2579
|
+
args: [{
|
2580
|
+
selector: 'vega-table-head',
|
2581
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2582
|
+
template: '<ng-content></ng-content>'
|
2583
|
+
}]
|
2584
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2585
|
+
let VegaTableHeadCell = class VegaTableHeadCell {
|
2586
|
+
constructor(c, r, z) {
|
2587
|
+
this.z = z;
|
2588
|
+
c.detach();
|
2589
|
+
this.el = r.nativeElement;
|
2590
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click']);
|
2591
|
+
}
|
2592
|
+
};
|
2593
|
+
VegaTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2594
|
+
VegaTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableHeadCell, selector: "vega-table-head-cell", inputs: { breakpoint: "breakpoint", pinned: "pinned", sortConfig: "sortConfig", sortOrder: "sortOrder", sorter: "sorter", textAlign: "textAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2595
|
+
VegaTableHeadCell = __decorate([
|
2596
|
+
ProxyCmp({
|
2597
|
+
defineCustomElementFn: undefined,
|
2598
|
+
inputs: ['breakpoint', 'pinned', 'sortConfig', 'sortOrder', 'sorter', 'textAlign', 'width']
|
2599
|
+
})
|
2600
|
+
], VegaTableHeadCell);
|
2601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadCell, decorators: [{
|
2602
|
+
type: Component,
|
2603
|
+
args: [{
|
2604
|
+
selector: 'vega-table-head-cell',
|
2605
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2606
|
+
template: '<ng-content></ng-content>',
|
2607
|
+
inputs: ['breakpoint', 'pinned', 'sortConfig', 'sortOrder', 'sorter', 'textAlign', 'width']
|
2608
|
+
}]
|
2609
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2610
|
+
let VegaTableHeadRow = class VegaTableHeadRow {
|
2611
|
+
constructor(c, r, z) {
|
2612
|
+
this.z = z;
|
2613
|
+
c.detach();
|
2614
|
+
this.el = r.nativeElement;
|
2615
|
+
}
|
2616
|
+
};
|
2617
|
+
VegaTableHeadRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2618
|
+
VegaTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
2619
|
+
VegaTableHeadRow = __decorate([
|
2620
|
+
ProxyCmp({
|
2621
|
+
defineCustomElementFn: undefined,
|
2622
|
+
inputs: ['hideSelectAll', 'selectAllDisabled']
|
2623
|
+
})
|
2624
|
+
], VegaTableHeadRow);
|
2625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadRow, decorators: [{
|
2626
|
+
type: Component,
|
2627
|
+
args: [{
|
2628
|
+
selector: 'vega-table-head-row',
|
2629
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2630
|
+
template: '<ng-content></ng-content>',
|
2631
|
+
inputs: ['hideSelectAll', 'selectAllDisabled']
|
2632
|
+
}]
|
2633
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2634
|
+
let VegaTableRow = class VegaTableRow {
|
2635
|
+
constructor(c, r, z) {
|
2636
|
+
this.z = z;
|
2637
|
+
c.detach();
|
2638
|
+
this.el = r.nativeElement;
|
2639
|
+
proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaExpand', 'expand']);
|
2640
|
+
}
|
2641
|
+
};
|
2642
|
+
VegaTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2643
|
+
VegaTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableRow, selector: "vega-table-row", inputs: { rowDivider: "rowDivider", rowKey: "rowKey", striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2644
|
+
VegaTableRow = __decorate([
|
2645
|
+
ProxyCmp({
|
2646
|
+
defineCustomElementFn: undefined,
|
2647
|
+
inputs: ['rowDivider', 'rowKey', 'striped']
|
2648
|
+
})
|
2649
|
+
], VegaTableRow);
|
2650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableRow, decorators: [{
|
2651
|
+
type: Component,
|
2652
|
+
args: [{
|
2653
|
+
selector: 'vega-table-row',
|
2654
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2655
|
+
template: '<ng-content></ng-content>',
|
2656
|
+
inputs: ['rowDivider', 'rowKey', 'striped']
|
2657
|
+
}]
|
2658
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2659
|
+
let VegaText = class VegaText {
|
2660
|
+
constructor(c, r, z) {
|
2661
|
+
this.z = z;
|
2662
|
+
c.detach();
|
2663
|
+
this.el = r.nativeElement;
|
2664
|
+
}
|
2665
|
+
};
|
2666
|
+
VegaText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2667
|
+
VegaText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaText, selector: "vega-text", inputs: { overflow: "overflow", tooltip: "tooltip" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2668
|
+
VegaText = __decorate([
|
2669
|
+
ProxyCmp({
|
2670
|
+
defineCustomElementFn: undefined,
|
2671
|
+
inputs: ['overflow', 'tooltip']
|
2672
|
+
})
|
2673
|
+
], VegaText);
|
2674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaText, decorators: [{
|
2675
|
+
type: Component,
|
2676
|
+
args: [{
|
2677
|
+
selector: 'vega-text',
|
2678
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2679
|
+
template: '<ng-content></ng-content>',
|
2680
|
+
inputs: ['overflow', 'tooltip']
|
2681
|
+
}]
|
2682
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2683
|
+
let VegaTextarea = class VegaTextarea {
|
2684
|
+
constructor(c, r, z) {
|
2685
|
+
this.z = z;
|
2686
|
+
c.detach();
|
2687
|
+
this.el = r.nativeElement;
|
2688
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur']);
|
2689
|
+
}
|
2690
|
+
};
|
2691
|
+
VegaTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2692
|
+
VegaTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTextarea, selector: "vega-textarea", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", maxLength: "maxLength", minLength: "minLength", placeholder: "placeholder", required: "required", resizable: "resizable", showCounter: "showCounter", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2693
|
+
VegaTextarea = __decorate([
|
2694
|
+
ProxyCmp({
|
2695
|
+
defineCustomElementFn: undefined,
|
2696
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'showCounter', 'validationRules', 'value']
|
2697
|
+
})
|
2698
|
+
], VegaTextarea);
|
2699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTextarea, decorators: [{
|
2700
|
+
type: Component,
|
2701
|
+
args: [{
|
2702
|
+
selector: 'vega-textarea',
|
2703
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2704
|
+
template: '<ng-content></ng-content>',
|
2705
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'showCounter', 'validationRules', 'value']
|
2706
|
+
}]
|
2707
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2708
|
+
let VegaTimePicker = class VegaTimePicker {
|
2709
|
+
constructor(c, r, z) {
|
2710
|
+
this.z = z;
|
2711
|
+
c.detach();
|
2712
|
+
this.el = r.nativeElement;
|
2713
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2714
|
+
}
|
2715
|
+
};
|
2716
|
+
VegaTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2717
|
+
VegaTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", 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 });
|
2718
|
+
VegaTimePicker = __decorate([
|
2719
|
+
ProxyCmp({
|
2720
|
+
defineCustomElementFn: undefined,
|
2721
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
2722
|
+
})
|
2723
|
+
], VegaTimePicker);
|
2724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePicker, decorators: [{
|
2725
|
+
type: Component,
|
2726
|
+
args: [{
|
2727
|
+
selector: 'vega-time-picker',
|
2728
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2729
|
+
template: '<ng-content></ng-content>',
|
2730
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
|
2731
|
+
}]
|
2732
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2733
|
+
let VegaTimePickerDropdown = class VegaTimePickerDropdown {
|
2734
|
+
constructor(c, r, z) {
|
2735
|
+
this.z = z;
|
2736
|
+
c.detach();
|
2737
|
+
this.el = r.nativeElement;
|
2738
|
+
}
|
2739
|
+
};
|
2740
|
+
VegaTimePickerDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePickerDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2741
|
+
VegaTimePickerDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTimePickerDropdown, selector: "vega-time-picker-dropdown", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2742
|
+
VegaTimePickerDropdown = __decorate([
|
2743
|
+
ProxyCmp({
|
2744
|
+
defineCustomElementFn: undefined
|
2745
|
+
})
|
2746
|
+
], VegaTimePickerDropdown);
|
2747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePickerDropdown, decorators: [{
|
2748
|
+
type: Component,
|
2749
|
+
args: [{
|
2750
|
+
selector: 'vega-time-picker-dropdown',
|
2751
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2752
|
+
template: '<ng-content></ng-content>'
|
2753
|
+
}]
|
2754
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2755
|
+
let VegaToggleSwitch = class VegaToggleSwitch {
|
2756
|
+
constructor(c, r, z) {
|
2757
|
+
this.z = z;
|
2758
|
+
c.detach();
|
2759
|
+
this.el = r.nativeElement;
|
2760
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
2761
|
+
}
|
2762
|
+
};
|
2763
|
+
VegaToggleSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaToggleSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2764
|
+
VegaToggleSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaToggleSwitch, selector: "vega-toggle-switch", inputs: { autoValidation: "autoValidation", checked: "checked", disabled: "disabled", isValid: "isValid", label: "label", required: "required", size: "size", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2765
|
+
VegaToggleSwitch = __decorate([
|
2766
|
+
ProxyCmp({
|
2767
|
+
defineCustomElementFn: undefined,
|
2768
|
+
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
|
2769
|
+
})
|
2770
|
+
], VegaToggleSwitch);
|
2771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaToggleSwitch, decorators: [{
|
2772
|
+
type: Component,
|
2773
|
+
args: [{
|
2774
|
+
selector: 'vega-toggle-switch',
|
2775
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2776
|
+
template: '<ng-content></ng-content>',
|
2777
|
+
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
|
2778
|
+
}]
|
2779
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2780
|
+
let VegaTooltip = class VegaTooltip {
|
2781
|
+
constructor(c, r, z) {
|
2782
|
+
this.z = z;
|
2783
|
+
c.detach();
|
2784
|
+
this.el = r.nativeElement;
|
2785
|
+
}
|
2786
|
+
};
|
2787
|
+
VegaTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2788
|
+
VegaTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTooltip, selector: "vega-tooltip", inputs: { alignment: "alignment", content: "content", disableInteractive: "disableInteractive", maxWidth: "maxWidth", minWidth: "minWidth", placement: "placement", positionRelativeTo: "positionRelativeTo", size: "size", text: "text", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2789
|
+
VegaTooltip = __decorate([
|
2790
|
+
ProxyCmp({
|
2791
|
+
defineCustomElementFn: undefined,
|
2792
|
+
inputs: ['alignment', 'content', 'disableInteractive', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'text', 'trigger']
|
2793
|
+
})
|
2794
|
+
], VegaTooltip);
|
2795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTooltip, decorators: [{
|
2796
|
+
type: Component,
|
2797
|
+
args: [{
|
2798
|
+
selector: 'vega-tooltip',
|
2799
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2800
|
+
template: '<ng-content></ng-content>',
|
2801
|
+
inputs: ['alignment', 'content', 'disableInteractive', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'text', 'trigger']
|
2802
|
+
}]
|
2803
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2804
|
+
let VegaTooltipContentBox = class VegaTooltipContentBox {
|
2805
|
+
constructor(c, r, z) {
|
2806
|
+
this.z = z;
|
2807
|
+
c.detach();
|
2808
|
+
this.el = r.nativeElement;
|
2809
|
+
}
|
2810
|
+
};
|
2811
|
+
VegaTooltipContentBox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTooltipContentBox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2812
|
+
VegaTooltipContentBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTooltipContentBox, selector: "vega-tooltip-content-box", inputs: { text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2813
|
+
VegaTooltipContentBox = __decorate([
|
2814
|
+
ProxyCmp({
|
2815
|
+
defineCustomElementFn: undefined,
|
2816
|
+
inputs: ['text']
|
2817
|
+
})
|
2818
|
+
], VegaTooltipContentBox);
|
2819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTooltipContentBox, decorators: [{
|
2820
|
+
type: Component,
|
2821
|
+
args: [{
|
2822
|
+
selector: 'vega-tooltip-content-box',
|
2823
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2824
|
+
template: '<ng-content></ng-content>',
|
2825
|
+
inputs: ['text']
|
2826
|
+
}]
|
2827
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2828
|
+
let VegaVirtualScroll = class VegaVirtualScroll {
|
2829
|
+
constructor(c, r, z) {
|
2830
|
+
this.z = z;
|
2831
|
+
c.detach();
|
2832
|
+
this.el = r.nativeElement;
|
2833
|
+
}
|
2834
|
+
};
|
2835
|
+
VegaVirtualScroll.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaVirtualScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
2836
|
+
VegaVirtualScroll.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaVirtualScroll, selector: "vega-virtual-scroll", inputs: { approxItemHeight: "approxItemHeight", isLoading: "isLoading", renderItem: "renderItem", source: "source", sourceItemIdentifier: "sourceItemIdentifier", viewportMaxHeight: "viewportMaxHeight", virtualizationThreshold: "virtualizationThreshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
2837
|
+
VegaVirtualScroll = __decorate([
|
2838
|
+
ProxyCmp({
|
2839
|
+
defineCustomElementFn: undefined,
|
2840
|
+
inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold'],
|
2841
|
+
methods: ['scrollToIndex']
|
2842
|
+
})
|
2843
|
+
], VegaVirtualScroll);
|
2844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaVirtualScroll, decorators: [{
|
2845
|
+
type: Component,
|
2846
|
+
args: [{
|
2847
|
+
selector: 'vega-virtual-scroll',
|
2848
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
2849
|
+
template: '<ng-content></ng-content>',
|
2850
|
+
inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold']
|
2851
|
+
}]
|
2852
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
2853
|
+
var VegaComponents = [
|
2854
|
+
VegaAccordion,
|
2855
|
+
VegaAppFooter,
|
2856
|
+
VegaAppHeaderButton,
|
2857
|
+
VegaBackdrop,
|
2858
|
+
VegaBanner,
|
2859
|
+
VegaBarChart,
|
2860
|
+
VegaBox,
|
2861
|
+
VegaBrandLogo,
|
2862
|
+
VegaBreadcrumb,
|
2863
|
+
VegaButton,
|
2864
|
+
VegaButtonCircle,
|
2865
|
+
VegaButtonGroup,
|
2866
|
+
VegaButtonGroupItem,
|
2867
|
+
VegaButtonLink,
|
2868
|
+
VegaCalendar,
|
2869
|
+
VegaCalendarEvent,
|
2870
|
+
VegaCalendarEventPreview,
|
2871
|
+
VegaCalendarEventSlot,
|
2872
|
+
VegaCard,
|
2873
|
+
VegaCarousel,
|
2874
|
+
VegaCheckbox,
|
2875
|
+
VegaCheckboxGroup,
|
2876
|
+
VegaChip,
|
2877
|
+
VegaCodeBlock,
|
2878
|
+
VegaColorPicker,
|
2879
|
+
VegaComboBox,
|
2880
|
+
VegaCounterBadge,
|
2881
|
+
VegaDatePicker,
|
2882
|
+
VegaDatePickerCalendar,
|
2883
|
+
VegaDialog,
|
2884
|
+
VegaDivider,
|
2885
|
+
VegaDropdown,
|
2886
|
+
VegaDropdownContentBox,
|
2887
|
+
VegaDropdownGroup,
|
2888
|
+
VegaDropdownItem,
|
2889
|
+
VegaFieldError,
|
2890
|
+
VegaFieldLabel,
|
2891
|
+
VegaFileUploader,
|
2892
|
+
VegaFlagIcon,
|
2893
|
+
VegaFlex,
|
2894
|
+
VegaFont,
|
2895
|
+
VegaForm,
|
2896
|
+
VegaGrid,
|
2897
|
+
VegaHint,
|
2898
|
+
VegaIcon,
|
2899
|
+
VegaImageUploader,
|
2900
|
+
VegaInput,
|
2901
|
+
VegaInputCreditCard,
|
2902
|
+
VegaInputNumeric,
|
2903
|
+
VegaInputPhoneNumber,
|
2904
|
+
VegaInputRange,
|
2905
|
+
VegaInputSelect,
|
2906
|
+
VegaItemToggle,
|
2907
|
+
VegaLeftNav,
|
2908
|
+
VegaLeftNavGroup,
|
2909
|
+
VegaLeftNavLink,
|
2910
|
+
VegaLeftNavSection,
|
2911
|
+
VegaLineChart,
|
2912
|
+
VegaLoaderWrapper,
|
2913
|
+
VegaLoadingIndicator,
|
2914
|
+
VegaModal,
|
2915
|
+
VegaNavCard,
|
2916
|
+
VegaPageNotification,
|
2917
|
+
VegaPageNotificationList,
|
2918
|
+
VegaPagination,
|
2919
|
+
VegaPaginationPageSelectorMobile,
|
2920
|
+
VegaPaginationPageSizeSelectorMobile,
|
2921
|
+
VegaPieChart,
|
2922
|
+
VegaPopover,
|
2923
|
+
VegaPopoverContentBox,
|
2924
|
+
VegaProgressTracker,
|
2925
|
+
VegaRadio,
|
2926
|
+
VegaRadioGroup,
|
2927
|
+
VegaRichTextContent,
|
2928
|
+
VegaRichTextEditor,
|
2929
|
+
VegaRichTextEditorToolbarButton,
|
2930
|
+
VegaRichTextImageEditor,
|
2931
|
+
VegaRichTextLinkEditor,
|
2932
|
+
VegaSectionTitle,
|
2933
|
+
VegaSegmentControl,
|
2934
|
+
VegaSelectionChip,
|
2935
|
+
VegaSelectionChipGroup,
|
2936
|
+
VegaSelectionTile,
|
2937
|
+
VegaSelectionTileGroup,
|
2938
|
+
VegaSidenav,
|
2939
|
+
VegaSidenavGroup,
|
2940
|
+
VegaSidenavLink,
|
2941
|
+
VegaSignatureCapture,
|
2942
|
+
VegaSkeleton,
|
2943
|
+
VegaSlotContainer,
|
2944
|
+
VegaStepper,
|
2945
|
+
VegaTabGroup,
|
2946
|
+
VegaTabGroupPanel,
|
2947
|
+
VegaTable,
|
2948
|
+
VegaTableBody,
|
2949
|
+
VegaTableCell,
|
2950
|
+
VegaTableExpandRow,
|
2951
|
+
VegaTableHead,
|
2952
|
+
VegaTableHeadCell,
|
2953
|
+
VegaTableHeadRow,
|
2954
|
+
VegaTableRow,
|
2955
|
+
VegaText,
|
2956
|
+
VegaTextarea,
|
2957
|
+
VegaTimePicker,
|
2958
|
+
VegaTimePickerDropdown,
|
2959
|
+
VegaToggleSwitch,
|
2960
|
+
VegaTooltip,
|
2961
|
+
VegaTooltipContentBox,
|
2962
|
+
VegaVirtualScroll,
|
2963
|
+
];
|
2964
|
+
|
2965
|
+
class VegaComponentModule {
|
2966
|
+
constructor() {
|
2967
|
+
this.useJuggleResizeObserver();
|
2968
|
+
VegaEnvManager.setVegaFramework(FrameworkEnum.Angular);
|
2969
|
+
defineCustomElements(window).then();
|
2970
|
+
}
|
2971
|
+
useJuggleResizeObserver() {
|
2972
|
+
if (FeatureFlag.isEnabled('VEGA_ANGULAR.USE_JUGGLE_RESIZE_OBSERVER')) {
|
2973
|
+
Object.assign(window, {
|
2974
|
+
'VegaResizeObserver': ResizeObserver
|
2975
|
+
});
|
2976
|
+
}
|
2977
|
+
}
|
2978
|
+
}
|
2979
|
+
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2980
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, 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, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
2981
|
+
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
2982
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, decorators: [{
|
2983
|
+
type: NgModule,
|
2984
|
+
args: [{
|
2985
|
+
declarations: [...VegaComponents, TextValueAccessor, ValueAccessor],
|
2986
|
+
imports: [],
|
2987
|
+
exports: [...VegaComponents, TextValueAccessor, ValueAccessor],
|
2988
|
+
}]
|
2989
|
+
}], ctorParameters: function () { return []; } });
|
2990
|
+
|
2991
|
+
/*
|
2992
|
+
* Public API Surface of vega-angular
|
2993
|
+
*/
|
2994
|
+
|
2995
|
+
/**
|
2996
|
+
* Generated bundle index. Do not edit.
|
2997
|
+
*/
|
2998
|
+
|
2999
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBanner, VegaBarChart, VegaBox, VegaBrandLogo, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCalendar, VegaCalendarEvent, VegaCalendarEventPreview, VegaCalendarEventSlot, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaCodeBlock, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDivider, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFileUploader, VegaFlagIcon, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaHint, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputNumeric, VegaInputPhoneNumber, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPaginationPageSelectorMobile, VegaPaginationPageSizeSelectorMobile, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaRichTextContent, VegaRichTextEditor, VegaRichTextEditorToolbarButton, VegaRichTextImageEditor, VegaRichTextLinkEditor, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
3000
|
+
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|