@heartlandone/vega-angular-sandbox-pr-2515-50978c9be23be42c8249a4e014cc727965499ce2 2.69.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.
Files changed (53) hide show
  1. package/.browserslistrc +16 -0
  2. package/.prettierrc.js +13 -0
  3. package/LICENSE +13 -0
  4. package/README.md +86 -0
  5. package/dist/LICENSE +13 -0
  6. package/dist/README.md +86 -0
  7. package/dist/esm2020/heartlandone-vega-angular.mjs +5 -0
  8. package/dist/esm2020/lib/components-module.mjs +35 -0
  9. package/dist/esm2020/lib/stencil-generated/angular-component-lib/utils.mjs +89 -0
  10. package/dist/esm2020/lib/stencil-generated/components.mjs +3061 -0
  11. package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +36 -0
  12. package/dist/esm2020/lib/stencil-generated/value-accessor.mjs +47 -0
  13. package/dist/esm2020/public-api.mjs +8 -0
  14. package/dist/esm2020/testing/heartlandone-vega-angular-testing.mjs +5 -0
  15. package/dist/esm2020/testing/index.mjs +84 -0
  16. package/dist/esm2020/testing/public-api.mjs +5 -0
  17. package/dist/fesm2015/heartlandone-vega-angular-testing.mjs +97 -0
  18. package/dist/fesm2015/heartlandone-vega-angular-testing.mjs.map +1 -0
  19. package/dist/fesm2015/heartlandone-vega-angular.mjs +3147 -0
  20. package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -0
  21. package/dist/fesm2020/heartlandone-vega-angular-testing.mjs +94 -0
  22. package/dist/fesm2020/heartlandone-vega-angular-testing.mjs.map +1 -0
  23. package/dist/fesm2020/heartlandone-vega-angular.mjs +3147 -0
  24. package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -0
  25. package/dist/heartlandone-vega-angular.d.ts +5 -0
  26. package/dist/lib/components-module.d.ts +11 -0
  27. package/dist/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
  28. package/dist/lib/stencil-generated/components.d.ts +2097 -0
  29. package/dist/lib/stencil-generated/text-value-accessor.d.ts +8 -0
  30. package/dist/lib/stencil-generated/value-accessor.d.ts +18 -0
  31. package/dist/package.json +50 -0
  32. package/dist/public-api.d.ts +4 -0
  33. package/dist/testing/heartlandone-vega-angular-testing.d.ts +5 -0
  34. package/dist/testing/index.d.ts +7 -0
  35. package/dist/testing/package.json +10 -0
  36. package/dist/testing/public-api.d.ts +1 -0
  37. package/karma.conf.js +44 -0
  38. package/ng-package.json +11 -0
  39. package/package.json +38 -0
  40. package/src/lib/components-module.ts +27 -0
  41. package/src/lib/stencil-generated/angular-component-lib/utils.ts +101 -0
  42. package/src/lib/stencil-generated/components.ts +3769 -0
  43. package/src/lib/stencil-generated/text-value-accessor.ts +25 -0
  44. package/src/lib/stencil-generated/value-accessor.ts +45 -0
  45. package/src/public-api.ts +7 -0
  46. package/src/scripts/stencil-post-build-script.js +133 -0
  47. package/src/test.ts +27 -0
  48. package/testing/index.ts +115 -0
  49. package/testing/ng-package.json +8 -0
  50. package/testing/public-api.ts +4 -0
  51. package/tsconfig.lib.json +15 -0
  52. package/tsconfig.lib.prod.json +10 -0
  53. package/tsconfig.spec.json +17 -0
@@ -0,0 +1,3147 @@
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-2515-50978c9be23be42c8249a4e014cc727965499ce2';
5
+ import { __decorate } from 'tslib';
6
+ import { fromEvent } from 'rxjs';
7
+ import { defineCustomElements } from '@heartlandone/vega-sandbox-pr-2515-50978c9be23be42c8249a4e014cc727965499ce2/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-passcode, 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-passcode, 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: { compactOnMobile: "compactOnMobile", 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: ['compactOnMobile', '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: ['compactOnMobile', '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", timezone: "timezone", 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', 'timezone', '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', 'timezone', '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", preserveValueIfNotInSource: "preserveValueIfNotInSource", 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', 'preserveValueIfNotInSource', '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', 'preserveValueIfNotInSource', '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", suffixButtonConfig: "suffixButtonConfig", 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', 'suffixButtonConfig', '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', 'suffixButtonConfig', '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: { action: "action", disableBlurValidation: "disableBlurValidation", isTouched: "isTouched", isValid: "isValid", method: "method", useNativeForm: "useNativeForm" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1189
+ VegaForm = __decorate([
1190
+ ProxyCmp({
1191
+ defineCustomElementFn: undefined,
1192
+ inputs: ['action', 'disableBlurValidation', 'isTouched', 'isValid', 'method', 'useNativeForm'],
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: ['action', 'disableBlurValidation', 'isTouched', 'isValid', 'method', 'useNativeForm']
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', 'vegaPaste', 'paste']);
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", labelSuffixButtonConfig: "labelSuffixButtonConfig", 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', 'labelSuffixButtonConfig', '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', 'labelSuffixButtonConfig', '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", max: "max", min: "min", 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', 'max', 'min', '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', 'max', 'min', '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 VegaInputPasscode = class VegaInputPasscode {
1378
+ constructor(c, r, z) {
1379
+ this.z = z;
1380
+ c.detach();
1381
+ this.el = r.nativeElement;
1382
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaComplete', 'complete']);
1383
+ }
1384
+ };
1385
+ VegaInputPasscode.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputPasscode, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1386
+ VegaInputPasscode.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputPasscode, selector: "vega-input-passcode", inputs: { autoValidation: "autoValidation", disabled: "disabled", hint: "hint", inputType: "inputType", isValid: "isValid", label: "label", length: "length", required: "required", size: "size", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1387
+ VegaInputPasscode = __decorate([
1388
+ ProxyCmp({
1389
+ defineCustomElementFn: undefined,
1390
+ inputs: ['autoValidation', 'disabled', 'hint', 'inputType', 'isValid', 'label', 'length', 'required', 'size', 'validationRules', 'value']
1391
+ })
1392
+ ], VegaInputPasscode);
1393
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputPasscode, decorators: [{
1394
+ type: Component,
1395
+ args: [{
1396
+ selector: 'vega-input-passcode',
1397
+ changeDetection: ChangeDetectionStrategy.OnPush,
1398
+ template: '<ng-content></ng-content>',
1399
+ inputs: ['autoValidation', 'disabled', 'hint', 'inputType', 'isValid', 'label', 'length', 'required', 'size', 'validationRules', 'value']
1400
+ }]
1401
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1402
+ let VegaInputPhoneNumber = class VegaInputPhoneNumber {
1403
+ constructor(c, r, z) {
1404
+ this.z = z;
1405
+ c.detach();
1406
+ this.el = r.nativeElement;
1407
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCountryChange', 'countryChange']);
1408
+ }
1409
+ };
1410
+ 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 });
1411
+ 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 });
1412
+ VegaInputPhoneNumber = __decorate([
1413
+ ProxyCmp({
1414
+ defineCustomElementFn: undefined,
1415
+ inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1416
+ })
1417
+ ], VegaInputPhoneNumber);
1418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputPhoneNumber, decorators: [{
1419
+ type: Component,
1420
+ args: [{
1421
+ selector: 'vega-input-phone-number',
1422
+ changeDetection: ChangeDetectionStrategy.OnPush,
1423
+ template: '<ng-content></ng-content>',
1424
+ inputs: ['allowedCountryCodes', 'autoValidation', 'countryCode', 'disabled', 'emptyValueEnabled', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
1425
+ }]
1426
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1427
+ let VegaInputRange = class VegaInputRange {
1428
+ constructor(c, r, z) {
1429
+ this.z = z;
1430
+ c.detach();
1431
+ this.el = r.nativeElement;
1432
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
1433
+ }
1434
+ };
1435
+ 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 });
1436
+ 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 });
1437
+ VegaInputRange = __decorate([
1438
+ ProxyCmp({
1439
+ defineCustomElementFn: undefined,
1440
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
1441
+ })
1442
+ ], VegaInputRange);
1443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputRange, decorators: [{
1444
+ type: Component,
1445
+ args: [{
1446
+ selector: 'vega-input-range',
1447
+ changeDetection: ChangeDetectionStrategy.OnPush,
1448
+ template: '<ng-content></ng-content>',
1449
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
1450
+ }]
1451
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1452
+ let VegaInputSelect = class VegaInputSelect {
1453
+ constructor(c, r, z) {
1454
+ this.z = z;
1455
+ c.detach();
1456
+ this.el = r.nativeElement;
1457
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaShow', 'vegaHide', 'vegaLabelButtonClick', 'labelButtonClick']);
1458
+ }
1459
+ };
1460
+ 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 });
1461
+ 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", labelSuffixButtonConfig: "labelSuffixButtonConfig", 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 });
1462
+ VegaInputSelect = __decorate([
1463
+ ProxyCmp({
1464
+ defineCustomElementFn: undefined,
1465
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
1466
+ methods: ['doClose', 'doOpen', 'doChange']
1467
+ })
1468
+ ], VegaInputSelect);
1469
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputSelect, decorators: [{
1470
+ type: Component,
1471
+ args: [{
1472
+ selector: 'vega-input-select',
1473
+ changeDetection: ChangeDetectionStrategy.OnPush,
1474
+ template: '<ng-content></ng-content>',
1475
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
1476
+ }]
1477
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1478
+ let VegaItemToggle = class VegaItemToggle {
1479
+ constructor(c, r, z) {
1480
+ this.z = z;
1481
+ c.detach();
1482
+ this.el = r.nativeElement;
1483
+ proxyOutputs(this, this.el, ['vegaToggleStatus', 'toggleStatus']);
1484
+ }
1485
+ };
1486
+ 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 });
1487
+ 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 });
1488
+ VegaItemToggle = __decorate([
1489
+ ProxyCmp({
1490
+ defineCustomElementFn: undefined,
1491
+ inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
1492
+ })
1493
+ ], VegaItemToggle);
1494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaItemToggle, decorators: [{
1495
+ type: Component,
1496
+ args: [{
1497
+ selector: 'vega-item-toggle',
1498
+ changeDetection: ChangeDetectionStrategy.OnPush,
1499
+ template: '<ng-content></ng-content>',
1500
+ inputs: ['isToggled', 'itemToggleStatusMap', 'statusMap']
1501
+ }]
1502
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1503
+ let VegaLeftNav = class VegaLeftNav {
1504
+ constructor(c, r, z) {
1505
+ this.z = z;
1506
+ c.detach();
1507
+ this.el = r.nativeElement;
1508
+ proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
1509
+ }
1510
+ };
1511
+ 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 });
1512
+ 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 });
1513
+ VegaLeftNav = __decorate([
1514
+ ProxyCmp({
1515
+ defineCustomElementFn: undefined,
1516
+ inputs: ['autoCollapseGroups', 'autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
1517
+ methods: ['toggle']
1518
+ })
1519
+ ], VegaLeftNav);
1520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNav, decorators: [{
1521
+ type: Component,
1522
+ args: [{
1523
+ selector: 'vega-left-nav',
1524
+ changeDetection: ChangeDetectionStrategy.OnPush,
1525
+ template: '<ng-content></ng-content>',
1526
+ inputs: ['autoCollapseGroups', 'autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
1527
+ }]
1528
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1529
+ let VegaLeftNavGroup = class VegaLeftNavGroup {
1530
+ constructor(c, r, z) {
1531
+ this.z = z;
1532
+ c.detach();
1533
+ this.el = r.nativeElement;
1534
+ proxyOutputs(this, this.el, ['vegaGroupClick', 'groupClick']);
1535
+ }
1536
+ };
1537
+ 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 });
1538
+ 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 });
1539
+ VegaLeftNavGroup = __decorate([
1540
+ ProxyCmp({
1541
+ defineCustomElementFn: undefined,
1542
+ inputs: ['icon', 'itemKey', 'label', 'openByDefault']
1543
+ })
1544
+ ], VegaLeftNavGroup);
1545
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavGroup, decorators: [{
1546
+ type: Component,
1547
+ args: [{
1548
+ selector: 'vega-left-nav-group',
1549
+ changeDetection: ChangeDetectionStrategy.OnPush,
1550
+ template: '<ng-content></ng-content>',
1551
+ inputs: ['icon', 'itemKey', 'label', 'openByDefault']
1552
+ }]
1553
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1554
+ let VegaLeftNavLink = class VegaLeftNavLink {
1555
+ constructor(c, r, z) {
1556
+ this.z = z;
1557
+ c.detach();
1558
+ this.el = r.nativeElement;
1559
+ proxyOutputs(this, this.el, ['vegaMenuClick', 'menuClick']);
1560
+ }
1561
+ };
1562
+ 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 });
1563
+ 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 });
1564
+ VegaLeftNavLink = __decorate([
1565
+ ProxyCmp({
1566
+ defineCustomElementFn: undefined,
1567
+ inputs: ['counterBadge', 'customSelectionEnabled', 'icon', 'itemKey', 'selected', 'target', 'url']
1568
+ })
1569
+ ], VegaLeftNavLink);
1570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavLink, decorators: [{
1571
+ type: Component,
1572
+ args: [{
1573
+ selector: 'vega-left-nav-link',
1574
+ changeDetection: ChangeDetectionStrategy.OnPush,
1575
+ template: '<ng-content></ng-content>',
1576
+ inputs: ['counterBadge', 'customSelectionEnabled', 'icon', 'itemKey', 'selected', 'target', 'url']
1577
+ }]
1578
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1579
+ let VegaLeftNavSection = class VegaLeftNavSection {
1580
+ constructor(c, r, z) {
1581
+ this.z = z;
1582
+ c.detach();
1583
+ this.el = r.nativeElement;
1584
+ proxyOutputs(this, this.el, ['vegaActionClick', 'actionClick']);
1585
+ }
1586
+ };
1587
+ 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 });
1588
+ 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 });
1589
+ VegaLeftNavSection = __decorate([
1590
+ ProxyCmp({
1591
+ defineCustomElementFn: undefined,
1592
+ inputs: ['itemKey', 'sectionHeader']
1593
+ })
1594
+ ], VegaLeftNavSection);
1595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLeftNavSection, decorators: [{
1596
+ type: Component,
1597
+ args: [{
1598
+ selector: 'vega-left-nav-section',
1599
+ changeDetection: ChangeDetectionStrategy.OnPush,
1600
+ template: '<ng-content></ng-content>',
1601
+ inputs: ['itemKey', 'sectionHeader']
1602
+ }]
1603
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1604
+ let VegaLineChart = class VegaLineChart {
1605
+ constructor(c, r, z) {
1606
+ this.z = z;
1607
+ c.detach();
1608
+ this.el = r.nativeElement;
1609
+ }
1610
+ };
1611
+ 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 });
1612
+ 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 });
1613
+ VegaLineChart = __decorate([
1614
+ ProxyCmp({
1615
+ defineCustomElementFn: undefined,
1616
+ inputs: ['options'],
1617
+ methods: ['reRender']
1618
+ })
1619
+ ], VegaLineChart);
1620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLineChart, decorators: [{
1621
+ type: Component,
1622
+ args: [{
1623
+ selector: 'vega-line-chart',
1624
+ changeDetection: ChangeDetectionStrategy.OnPush,
1625
+ template: '<ng-content></ng-content>',
1626
+ inputs: ['options']
1627
+ }]
1628
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1629
+ let VegaLoaderWrapper = class VegaLoaderWrapper {
1630
+ constructor(c, r, z) {
1631
+ this.z = z;
1632
+ c.detach();
1633
+ this.el = r.nativeElement;
1634
+ }
1635
+ };
1636
+ 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 });
1637
+ 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 });
1638
+ VegaLoaderWrapper = __decorate([
1639
+ ProxyCmp({
1640
+ defineCustomElementFn: undefined
1641
+ })
1642
+ ], VegaLoaderWrapper);
1643
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLoaderWrapper, decorators: [{
1644
+ type: Component,
1645
+ args: [{
1646
+ selector: 'vega-loader-wrapper',
1647
+ changeDetection: ChangeDetectionStrategy.OnPush,
1648
+ template: '<ng-content></ng-content>'
1649
+ }]
1650
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1651
+ let VegaLoadingIndicator = class VegaLoadingIndicator {
1652
+ constructor(c, r, z) {
1653
+ this.z = z;
1654
+ c.detach();
1655
+ this.el = r.nativeElement;
1656
+ }
1657
+ };
1658
+ 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 });
1659
+ 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 });
1660
+ VegaLoadingIndicator = __decorate([
1661
+ ProxyCmp({
1662
+ defineCustomElementFn: undefined,
1663
+ inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
1664
+ })
1665
+ ], VegaLoadingIndicator);
1666
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaLoadingIndicator, decorators: [{
1667
+ type: Component,
1668
+ args: [{
1669
+ selector: 'vega-loading-indicator',
1670
+ changeDetection: ChangeDetectionStrategy.OnPush,
1671
+ template: '<ng-content></ng-content>',
1672
+ inputs: ['hint', 'label', 'mode', 'percent', 'shape', 'size', 'status']
1673
+ }]
1674
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1675
+ let VegaModal = class VegaModal {
1676
+ constructor(c, r, z) {
1677
+ this.z = z;
1678
+ c.detach();
1679
+ this.el = r.nativeElement;
1680
+ proxyOutputs(this, this.el, ['vegaClose', 'close', 'vegaOpen', 'modalOpen']);
1681
+ }
1682
+ };
1683
+ 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 });
1684
+ 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 });
1685
+ VegaModal = __decorate([
1686
+ ProxyCmp({
1687
+ defineCustomElementFn: undefined,
1688
+ inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],
1689
+ methods: ['modal']
1690
+ })
1691
+ ], VegaModal);
1692
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaModal, decorators: [{
1693
+ type: Component,
1694
+ args: [{
1695
+ selector: 'vega-modal',
1696
+ changeDetection: ChangeDetectionStrategy.OnPush,
1697
+ template: '<ng-content></ng-content>',
1698
+ inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'handleClose', 'isVerticallyCenter', 'isVerticallyCentered', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']
1699
+ }]
1700
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1701
+ let VegaNavCard = class VegaNavCard {
1702
+ constructor(c, r, z) {
1703
+ this.z = z;
1704
+ c.detach();
1705
+ this.el = r.nativeElement;
1706
+ }
1707
+ };
1708
+ 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 });
1709
+ 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 });
1710
+ VegaNavCard = __decorate([
1711
+ ProxyCmp({
1712
+ defineCustomElementFn: undefined,
1713
+ inputs: ['maxHeight', 'source']
1714
+ })
1715
+ ], VegaNavCard);
1716
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaNavCard, decorators: [{
1717
+ type: Component,
1718
+ args: [{
1719
+ selector: 'vega-nav-card',
1720
+ changeDetection: ChangeDetectionStrategy.OnPush,
1721
+ template: '<ng-content></ng-content>',
1722
+ inputs: ['maxHeight', 'source']
1723
+ }]
1724
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1725
+ let VegaPageNotification = class VegaPageNotification {
1726
+ constructor(c, r, z) {
1727
+ this.z = z;
1728
+ c.detach();
1729
+ this.el = r.nativeElement;
1730
+ }
1731
+ };
1732
+ 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 });
1733
+ 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 });
1734
+ VegaPageNotification = __decorate([
1735
+ ProxyCmp({
1736
+ defineCustomElementFn: undefined,
1737
+ inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type'],
1738
+ methods: ['close']
1739
+ })
1740
+ ], VegaPageNotification);
1741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPageNotification, decorators: [{
1742
+ type: Component,
1743
+ args: [{
1744
+ selector: 'vega-page-notification',
1745
+ changeDetection: ChangeDetectionStrategy.OnPush,
1746
+ template: '<ng-content></ng-content>',
1747
+ inputs: ['actionButtons', 'duration', 'message', 'notificationTitle', 'showCloseButton', 'type']
1748
+ }]
1749
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1750
+ let VegaPageNotificationList = class VegaPageNotificationList {
1751
+ constructor(c, r, z) {
1752
+ this.z = z;
1753
+ c.detach();
1754
+ this.el = r.nativeElement;
1755
+ }
1756
+ };
1757
+ 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 });
1758
+ 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 });
1759
+ VegaPageNotificationList = __decorate([
1760
+ ProxyCmp({
1761
+ defineCustomElementFn: undefined
1762
+ })
1763
+ ], VegaPageNotificationList);
1764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPageNotificationList, decorators: [{
1765
+ type: Component,
1766
+ args: [{
1767
+ selector: 'vega-page-notification-list',
1768
+ changeDetection: ChangeDetectionStrategy.OnPush,
1769
+ template: '<ng-content></ng-content>'
1770
+ }]
1771
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1772
+ let VegaPagination = class VegaPagination {
1773
+ constructor(c, r, z) {
1774
+ this.z = z;
1775
+ c.detach();
1776
+ this.el = r.nativeElement;
1777
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaPageSizeChange', 'pageSizeChange']);
1778
+ }
1779
+ };
1780
+ 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 });
1781
+ 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 });
1782
+ VegaPagination = __decorate([
1783
+ ProxyCmp({
1784
+ defineCustomElementFn: undefined,
1785
+ inputs: ['current', 'dropdownProps', 'extensions', 'layout', 'pageSize', 'pageSizeSelectorOptions', 'total']
1786
+ })
1787
+ ], VegaPagination);
1788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPagination, decorators: [{
1789
+ type: Component,
1790
+ args: [{
1791
+ selector: 'vega-pagination',
1792
+ changeDetection: ChangeDetectionStrategy.OnPush,
1793
+ template: '<ng-content></ng-content>',
1794
+ inputs: ['current', 'dropdownProps', 'extensions', 'layout', 'pageSize', 'pageSizeSelectorOptions', 'total']
1795
+ }]
1796
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1797
+ let VegaPaginationPageSelectorMobile = class VegaPaginationPageSelectorMobile {
1798
+ constructor(c, r, z) {
1799
+ this.z = z;
1800
+ c.detach();
1801
+ this.el = r.nativeElement;
1802
+ }
1803
+ };
1804
+ 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 });
1805
+ 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 });
1806
+ VegaPaginationPageSelectorMobile = __decorate([
1807
+ ProxyCmp({
1808
+ defineCustomElementFn: undefined,
1809
+ inputs: ['current', 'pageCount', 'total', 'type']
1810
+ })
1811
+ ], VegaPaginationPageSelectorMobile);
1812
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPaginationPageSelectorMobile, decorators: [{
1813
+ type: Component,
1814
+ args: [{
1815
+ selector: 'vega-pagination-page-selector-mobile',
1816
+ changeDetection: ChangeDetectionStrategy.OnPush,
1817
+ template: '<ng-content></ng-content>',
1818
+ inputs: ['current', 'pageCount', 'total', 'type']
1819
+ }]
1820
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1821
+ let VegaPaginationPageSizeSelectorMobile = class VegaPaginationPageSizeSelectorMobile {
1822
+ constructor(c, r, z) {
1823
+ this.z = z;
1824
+ c.detach();
1825
+ this.el = r.nativeElement;
1826
+ }
1827
+ };
1828
+ 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 });
1829
+ 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 });
1830
+ VegaPaginationPageSizeSelectorMobile = __decorate([
1831
+ ProxyCmp({
1832
+ defineCustomElementFn: undefined,
1833
+ inputs: ['current', 'dropdownProps', 'pageSize', 'pageSizeSelectorOptions', 'total', 'type']
1834
+ })
1835
+ ], VegaPaginationPageSizeSelectorMobile);
1836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPaginationPageSizeSelectorMobile, decorators: [{
1837
+ type: Component,
1838
+ args: [{
1839
+ selector: 'vega-pagination-page-size-selector-mobile',
1840
+ changeDetection: ChangeDetectionStrategy.OnPush,
1841
+ template: '<ng-content></ng-content>',
1842
+ inputs: ['current', 'dropdownProps', 'pageSize', 'pageSizeSelectorOptions', 'total', 'type']
1843
+ }]
1844
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1845
+ let VegaPieChart = class VegaPieChart {
1846
+ constructor(c, r, z) {
1847
+ this.z = z;
1848
+ c.detach();
1849
+ this.el = r.nativeElement;
1850
+ }
1851
+ };
1852
+ 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 });
1853
+ 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 });
1854
+ VegaPieChart = __decorate([
1855
+ ProxyCmp({
1856
+ defineCustomElementFn: undefined,
1857
+ inputs: ['options'],
1858
+ methods: ['reRender']
1859
+ })
1860
+ ], VegaPieChart);
1861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPieChart, decorators: [{
1862
+ type: Component,
1863
+ args: [{
1864
+ selector: 'vega-pie-chart',
1865
+ changeDetection: ChangeDetectionStrategy.OnPush,
1866
+ template: '<ng-content></ng-content>',
1867
+ inputs: ['options']
1868
+ }]
1869
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1870
+ let VegaPopover = class VegaPopover {
1871
+ constructor(c, r, z) {
1872
+ this.z = z;
1873
+ c.detach();
1874
+ this.el = r.nativeElement;
1875
+ proxyOutputs(this, this.el, ['vegaPopoverShow', 'popoverShow', 'vegaPopoverHide', 'popoverHide']);
1876
+ }
1877
+ };
1878
+ 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 });
1879
+ 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 });
1880
+ VegaPopover = __decorate([
1881
+ ProxyCmp({
1882
+ defineCustomElementFn: undefined,
1883
+ inputs: ['alignment', 'isScreenPosition', 'padding', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger'],
1884
+ methods: ['show', 'hide']
1885
+ })
1886
+ ], VegaPopover);
1887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPopover, decorators: [{
1888
+ type: Component,
1889
+ args: [{
1890
+ selector: 'vega-popover',
1891
+ changeDetection: ChangeDetectionStrategy.OnPush,
1892
+ template: '<ng-content></ng-content>',
1893
+ inputs: ['alignment', 'isScreenPosition', 'padding', 'placement', 'positionRelativeTo', 'showArrow', 'size', 'trigger']
1894
+ }]
1895
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1896
+ let VegaPopoverContentBox = class VegaPopoverContentBox {
1897
+ constructor(c, r, z) {
1898
+ this.z = z;
1899
+ c.detach();
1900
+ this.el = r.nativeElement;
1901
+ }
1902
+ };
1903
+ 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 });
1904
+ 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 });
1905
+ VegaPopoverContentBox = __decorate([
1906
+ ProxyCmp({
1907
+ defineCustomElementFn: undefined,
1908
+ inputs: ['padding', 'showArrow']
1909
+ })
1910
+ ], VegaPopoverContentBox);
1911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaPopoverContentBox, decorators: [{
1912
+ type: Component,
1913
+ args: [{
1914
+ selector: 'vega-popover-content-box',
1915
+ changeDetection: ChangeDetectionStrategy.OnPush,
1916
+ template: '<ng-content></ng-content>',
1917
+ inputs: ['padding', 'showArrow']
1918
+ }]
1919
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1920
+ let VegaProgressTracker = class VegaProgressTracker {
1921
+ constructor(c, r, z) {
1922
+ this.z = z;
1923
+ c.detach();
1924
+ this.el = r.nativeElement;
1925
+ proxyOutputs(this, this.el, ['vegaCurrentStepUpdate', 'currentStepUpdate']);
1926
+ }
1927
+ };
1928
+ 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 });
1929
+ 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 });
1930
+ VegaProgressTracker = __decorate([
1931
+ ProxyCmp({
1932
+ defineCustomElementFn: undefined,
1933
+ inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps'],
1934
+ methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']
1935
+ })
1936
+ ], VegaProgressTracker);
1937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaProgressTracker, decorators: [{
1938
+ type: Component,
1939
+ args: [{
1940
+ selector: 'vega-progress-tracker',
1941
+ changeDetection: ChangeDetectionStrategy.OnPush,
1942
+ template: '<ng-content></ng-content>',
1943
+ inputs: ['canClickStep', 'completedStepArray', 'completedSteps', 'current', 'direction', 'steps']
1944
+ }]
1945
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1946
+ let VegaRadio = class VegaRadio {
1947
+ constructor(c, r, z) {
1948
+ this.z = z;
1949
+ c.detach();
1950
+ this.el = r.nativeElement;
1951
+ proxyOutputs(this, this.el, ['vegaFocus', 'focus', 'vegaBlur', 'blur', 'vegaChange', 'change']);
1952
+ }
1953
+ };
1954
+ 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 });
1955
+ 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 });
1956
+ VegaRadio = __decorate([
1957
+ ProxyCmp({
1958
+ defineCustomElementFn: undefined,
1959
+ inputs: ['checked', 'disabled', 'name', 'size', 'value']
1960
+ })
1961
+ ], VegaRadio);
1962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadio, decorators: [{
1963
+ type: Component,
1964
+ args: [{
1965
+ selector: 'vega-radio',
1966
+ changeDetection: ChangeDetectionStrategy.OnPush,
1967
+ template: '<ng-content></ng-content>',
1968
+ inputs: ['checked', 'disabled', 'name', 'size', 'value']
1969
+ }]
1970
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1971
+ let VegaRadioGroup = class VegaRadioGroup {
1972
+ constructor(c, r, z) {
1973
+ this.z = z;
1974
+ c.detach();
1975
+ this.el = r.nativeElement;
1976
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
1977
+ }
1978
+ };
1979
+ 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 });
1980
+ 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 });
1981
+ VegaRadioGroup = __decorate([
1982
+ ProxyCmp({
1983
+ defineCustomElementFn: undefined,
1984
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
1985
+ })
1986
+ ], VegaRadioGroup);
1987
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadioGroup, decorators: [{
1988
+ type: Component,
1989
+ args: [{
1990
+ selector: 'vega-radio-group',
1991
+ changeDetection: ChangeDetectionStrategy.OnPush,
1992
+ template: '<ng-content></ng-content>',
1993
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
1994
+ }]
1995
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1996
+ let VegaRichTextContent = class VegaRichTextContent {
1997
+ constructor(c, r, z) {
1998
+ this.z = z;
1999
+ c.detach();
2000
+ this.el = r.nativeElement;
2001
+ }
2002
+ };
2003
+ 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 });
2004
+ VegaRichTextContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextContent, selector: "vega-rich-text-content", inputs: { content: "content", extensions: "extensions" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2005
+ VegaRichTextContent = __decorate([
2006
+ ProxyCmp({
2007
+ defineCustomElementFn: undefined,
2008
+ inputs: ['content', 'extensions'],
2009
+ methods: ['vegaFocus']
2010
+ })
2011
+ ], VegaRichTextContent);
2012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextContent, decorators: [{
2013
+ type: Component,
2014
+ args: [{
2015
+ selector: 'vega-rich-text-content',
2016
+ changeDetection: ChangeDetectionStrategy.OnPush,
2017
+ template: '<ng-content></ng-content>',
2018
+ inputs: ['content', 'extensions']
2019
+ }]
2020
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2021
+ let VegaRichTextEditor = class VegaRichTextEditor {
2022
+ constructor(c, r, z) {
2023
+ this.z = z;
2024
+ c.detach();
2025
+ this.el = r.nativeElement;
2026
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaImageInserted', 'imageInserted']);
2027
+ }
2028
+ };
2029
+ 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 });
2030
+ 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", extensions: "extensions", 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 });
2031
+ VegaRichTextEditor = __decorate([
2032
+ ProxyCmp({
2033
+ defineCustomElementFn: undefined,
2034
+ inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'extensions', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'toolbarItems', 'validationRules', 'value']
2035
+ })
2036
+ ], VegaRichTextEditor);
2037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextEditor, decorators: [{
2038
+ type: Component,
2039
+ args: [{
2040
+ selector: 'vega-rich-text-editor',
2041
+ changeDetection: ChangeDetectionStrategy.OnPush,
2042
+ template: '<ng-content></ng-content>',
2043
+ inputs: ['allowSourceEdit', 'autoValidation', 'disabled', 'extensions', 'hint', 'isValid', 'label', 'placeholder', 'required', 'rows', 'sourceEditConfig', 'toolbarItems', 'validationRules', 'value']
2044
+ }]
2045
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2046
+ let VegaRichTextEditorToolbarButton = class VegaRichTextEditorToolbarButton {
2047
+ constructor(c, r, z) {
2048
+ this.z = z;
2049
+ c.detach();
2050
+ this.el = r.nativeElement;
2051
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2052
+ }
2053
+ };
2054
+ 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 });
2055
+ 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 });
2056
+ VegaRichTextEditorToolbarButton = __decorate([
2057
+ ProxyCmp({
2058
+ defineCustomElementFn: undefined,
2059
+ inputs: ['disabled', 'hidden', 'icon', 'iconColor', 'selected', 'showArrowIcon']
2060
+ })
2061
+ ], VegaRichTextEditorToolbarButton);
2062
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextEditorToolbarButton, decorators: [{
2063
+ type: Component,
2064
+ args: [{
2065
+ selector: 'vega-rich-text-editor-toolbar-button',
2066
+ changeDetection: ChangeDetectionStrategy.OnPush,
2067
+ template: '<ng-content></ng-content>',
2068
+ inputs: ['disabled', 'hidden', 'icon', 'iconColor', 'selected', 'showArrowIcon']
2069
+ }]
2070
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2071
+ let VegaRichTextImageEditor = class VegaRichTextImageEditor {
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
+ 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 });
2080
+ 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 });
2081
+ VegaRichTextImageEditor = __decorate([
2082
+ ProxyCmp({
2083
+ defineCustomElementFn: undefined,
2084
+ inputs: ['alt', 'size']
2085
+ })
2086
+ ], VegaRichTextImageEditor);
2087
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextImageEditor, decorators: [{
2088
+ type: Component,
2089
+ args: [{
2090
+ selector: 'vega-rich-text-image-editor',
2091
+ changeDetection: ChangeDetectionStrategy.OnPush,
2092
+ template: '<ng-content></ng-content>',
2093
+ inputs: ['alt', 'size']
2094
+ }]
2095
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2096
+ let VegaRichTextLinkEditor = class VegaRichTextLinkEditor {
2097
+ constructor(c, r, z) {
2098
+ this.z = z;
2099
+ c.detach();
2100
+ this.el = r.nativeElement;
2101
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2102
+ }
2103
+ };
2104
+ 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 });
2105
+ 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 });
2106
+ VegaRichTextLinkEditor = __decorate([
2107
+ ProxyCmp({
2108
+ defineCustomElementFn: undefined,
2109
+ inputs: ['record', 'resetStatusAfterHide', 'status', 'target'],
2110
+ methods: ['show']
2111
+ })
2112
+ ], VegaRichTextLinkEditor);
2113
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextLinkEditor, decorators: [{
2114
+ type: Component,
2115
+ args: [{
2116
+ selector: 'vega-rich-text-link-editor',
2117
+ changeDetection: ChangeDetectionStrategy.OnPush,
2118
+ template: '<ng-content></ng-content>',
2119
+ inputs: ['record', 'resetStatusAfterHide', 'status', 'target']
2120
+ }]
2121
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2122
+ let VegaRichTextTableSelectionWidget = class VegaRichTextTableSelectionWidget {
2123
+ constructor(c, r, z) {
2124
+ this.z = z;
2125
+ c.detach();
2126
+ this.el = r.nativeElement;
2127
+ proxyOutputs(this, this.el, ['vegaRemove']);
2128
+ }
2129
+ };
2130
+ VegaRichTextTableSelectionWidget.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextTableSelectionWidget, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2131
+ VegaRichTextTableSelectionWidget.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextTableSelectionWidget, selector: "vega-rich-text-table-selection-widget", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2132
+ VegaRichTextTableSelectionWidget = __decorate([
2133
+ ProxyCmp({
2134
+ defineCustomElementFn: undefined
2135
+ })
2136
+ ], VegaRichTextTableSelectionWidget);
2137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextTableSelectionWidget, decorators: [{
2138
+ type: Component,
2139
+ args: [{
2140
+ selector: 'vega-rich-text-table-selection-widget',
2141
+ changeDetection: ChangeDetectionStrategy.OnPush,
2142
+ template: '<ng-content></ng-content>'
2143
+ }]
2144
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2145
+ let VegaRichTextTableSetting = class VegaRichTextTableSetting {
2146
+ constructor(c, r, z) {
2147
+ this.z = z;
2148
+ c.detach();
2149
+ this.el = r.nativeElement;
2150
+ proxyOutputs(this, this.el, ['vegaClick']);
2151
+ }
2152
+ };
2153
+ VegaRichTextTableSetting.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextTableSetting, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2154
+ VegaRichTextTableSetting.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRichTextTableSetting, selector: "vega-rich-text-table-setting", inputs: { selectedCells: "selectedCells" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2155
+ VegaRichTextTableSetting = __decorate([
2156
+ ProxyCmp({
2157
+ defineCustomElementFn: undefined,
2158
+ inputs: ['selectedCells']
2159
+ })
2160
+ ], VegaRichTextTableSetting);
2161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRichTextTableSetting, decorators: [{
2162
+ type: Component,
2163
+ args: [{
2164
+ selector: 'vega-rich-text-table-setting',
2165
+ changeDetection: ChangeDetectionStrategy.OnPush,
2166
+ template: '<ng-content></ng-content>',
2167
+ inputs: ['selectedCells']
2168
+ }]
2169
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2170
+ let VegaSectionTitle = class VegaSectionTitle {
2171
+ constructor(c, r, z) {
2172
+ this.z = z;
2173
+ c.detach();
2174
+ this.el = r.nativeElement;
2175
+ }
2176
+ };
2177
+ 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 });
2178
+ 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 });
2179
+ VegaSectionTitle = __decorate([
2180
+ ProxyCmp({
2181
+ defineCustomElementFn: undefined,
2182
+ inputs: ['description', 'icon', 'iconAlign', 'titleText']
2183
+ })
2184
+ ], VegaSectionTitle);
2185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSectionTitle, decorators: [{
2186
+ type: Component,
2187
+ args: [{
2188
+ selector: 'vega-section-title',
2189
+ changeDetection: ChangeDetectionStrategy.OnPush,
2190
+ template: '<ng-content></ng-content>',
2191
+ inputs: ['description', 'icon', 'iconAlign', 'titleText']
2192
+ }]
2193
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2194
+ let VegaSegmentControl = class VegaSegmentControl {
2195
+ constructor(c, r, z) {
2196
+ this.z = z;
2197
+ c.detach();
2198
+ this.el = r.nativeElement;
2199
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2200
+ }
2201
+ };
2202
+ 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 });
2203
+ 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 });
2204
+ VegaSegmentControl = __decorate([
2205
+ ProxyCmp({
2206
+ defineCustomElementFn: undefined,
2207
+ inputs: ['block', 'segments', 'selected', 'size', 'variant']
2208
+ })
2209
+ ], VegaSegmentControl);
2210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSegmentControl, decorators: [{
2211
+ type: Component,
2212
+ args: [{
2213
+ selector: 'vega-segment-control',
2214
+ changeDetection: ChangeDetectionStrategy.OnPush,
2215
+ template: '<ng-content></ng-content>',
2216
+ inputs: ['block', 'segments', 'selected', 'size', 'variant']
2217
+ }]
2218
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2219
+ let VegaSelectionChip = class VegaSelectionChip {
2220
+ constructor(c, r, z) {
2221
+ this.z = z;
2222
+ c.detach();
2223
+ this.el = r.nativeElement;
2224
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2225
+ }
2226
+ };
2227
+ 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 });
2228
+ 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 });
2229
+ VegaSelectionChip = __decorate([
2230
+ ProxyCmp({
2231
+ defineCustomElementFn: undefined,
2232
+ inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
2233
+ })
2234
+ ], VegaSelectionChip);
2235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChip, decorators: [{
2236
+ type: Component,
2237
+ args: [{
2238
+ selector: 'vega-selection-chip',
2239
+ changeDetection: ChangeDetectionStrategy.OnPush,
2240
+ template: '<ng-content></ng-content>',
2241
+ inputs: ['block', 'checked', 'disabled', 'disabledTooltip', 'label', 'size', 'swatchColor', 'value', 'variant']
2242
+ }]
2243
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2244
+ let VegaSelectionChipGroup = class VegaSelectionChipGroup {
2245
+ constructor(c, r, z) {
2246
+ this.z = z;
2247
+ c.detach();
2248
+ this.el = r.nativeElement;
2249
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2250
+ }
2251
+ };
2252
+ 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 });
2253
+ 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 });
2254
+ VegaSelectionChipGroup = __decorate([
2255
+ ProxyCmp({
2256
+ defineCustomElementFn: undefined,
2257
+ inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
2258
+ })
2259
+ ], VegaSelectionChipGroup);
2260
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChipGroup, decorators: [{
2261
+ type: Component,
2262
+ args: [{
2263
+ selector: 'vega-selection-chip-group',
2264
+ changeDetection: ChangeDetectionStrategy.OnPush,
2265
+ template: '<ng-content></ng-content>',
2266
+ inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
2267
+ }]
2268
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2269
+ let VegaSelectionTile = class VegaSelectionTile {
2270
+ constructor(c, r, z) {
2271
+ this.z = z;
2272
+ c.detach();
2273
+ this.el = r.nativeElement;
2274
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2275
+ }
2276
+ };
2277
+ 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 });
2278
+ 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 });
2279
+ VegaSelectionTile = __decorate([
2280
+ ProxyCmp({
2281
+ defineCustomElementFn: undefined,
2282
+ inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
2283
+ })
2284
+ ], VegaSelectionTile);
2285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTile, decorators: [{
2286
+ type: Component,
2287
+ args: [{
2288
+ selector: 'vega-selection-tile',
2289
+ changeDetection: ChangeDetectionStrategy.OnPush,
2290
+ template: '<ng-content></ng-content>',
2291
+ inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
2292
+ }]
2293
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2294
+ let VegaSelectionTileGroup = class VegaSelectionTileGroup {
2295
+ constructor(c, r, z) {
2296
+ this.z = z;
2297
+ c.detach();
2298
+ this.el = r.nativeElement;
2299
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2300
+ }
2301
+ };
2302
+ 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 });
2303
+ 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 });
2304
+ VegaSelectionTileGroup = __decorate([
2305
+ ProxyCmp({
2306
+ defineCustomElementFn: undefined,
2307
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
2308
+ })
2309
+ ], VegaSelectionTileGroup);
2310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTileGroup, decorators: [{
2311
+ type: Component,
2312
+ args: [{
2313
+ selector: 'vega-selection-tile-group',
2314
+ changeDetection: ChangeDetectionStrategy.OnPush,
2315
+ template: '<ng-content></ng-content>',
2316
+ inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
2317
+ }]
2318
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2319
+ let VegaSidenav = class VegaSidenav {
2320
+ constructor(c, r, z) {
2321
+ this.z = z;
2322
+ c.detach();
2323
+ this.el = r.nativeElement;
2324
+ proxyOutputs(this, this.el, ['vegaStateUpdate', 'stateUpdate']);
2325
+ }
2326
+ };
2327
+ 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 });
2328
+ 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 });
2329
+ VegaSidenav = __decorate([
2330
+ ProxyCmp({
2331
+ defineCustomElementFn: undefined,
2332
+ inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],
2333
+ methods: ['toggle']
2334
+ })
2335
+ ], VegaSidenav);
2336
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenav, decorators: [{
2337
+ type: Component,
2338
+ args: [{
2339
+ selector: 'vega-sidenav',
2340
+ changeDetection: ChangeDetectionStrategy.OnPush,
2341
+ template: '<ng-content></ng-content>',
2342
+ inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']
2343
+ }]
2344
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2345
+ let VegaSidenavGroup = class VegaSidenavGroup {
2346
+ constructor(c, r, z) {
2347
+ this.z = z;
2348
+ c.detach();
2349
+ this.el = r.nativeElement;
2350
+ }
2351
+ };
2352
+ 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 });
2353
+ 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 });
2354
+ VegaSidenavGroup = __decorate([
2355
+ ProxyCmp({
2356
+ defineCustomElementFn: undefined,
2357
+ inputs: ['icon', 'label']
2358
+ })
2359
+ ], VegaSidenavGroup);
2360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavGroup, decorators: [{
2361
+ type: Component,
2362
+ args: [{
2363
+ selector: 'vega-sidenav-group',
2364
+ changeDetection: ChangeDetectionStrategy.OnPush,
2365
+ template: '<ng-content></ng-content>',
2366
+ inputs: ['icon', 'label']
2367
+ }]
2368
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2369
+ let VegaSidenavLink = class VegaSidenavLink {
2370
+ constructor(c, r, z) {
2371
+ this.z = z;
2372
+ c.detach();
2373
+ this.el = r.nativeElement;
2374
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2375
+ }
2376
+ };
2377
+ 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 });
2378
+ 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 });
2379
+ VegaSidenavLink = __decorate([
2380
+ ProxyCmp({
2381
+ defineCustomElementFn: undefined,
2382
+ inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
2383
+ })
2384
+ ], VegaSidenavLink);
2385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSidenavLink, decorators: [{
2386
+ type: Component,
2387
+ args: [{
2388
+ selector: 'vega-sidenav-link',
2389
+ changeDetection: ChangeDetectionStrategy.OnPush,
2390
+ template: '<ng-content></ng-content>',
2391
+ inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']
2392
+ }]
2393
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2394
+ let VegaSignatureCapture = class VegaSignatureCapture {
2395
+ constructor(c, r, z) {
2396
+ this.z = z;
2397
+ c.detach();
2398
+ this.el = r.nativeElement;
2399
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2400
+ }
2401
+ };
2402
+ 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 });
2403
+ 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 });
2404
+ VegaSignatureCapture = __decorate([
2405
+ ProxyCmp({
2406
+ defineCustomElementFn: undefined,
2407
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
2408
+ methods: ['clear']
2409
+ })
2410
+ ], VegaSignatureCapture);
2411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSignatureCapture, decorators: [{
2412
+ type: Component,
2413
+ args: [{
2414
+ selector: 'vega-signature-capture',
2415
+ changeDetection: ChangeDetectionStrategy.OnPush,
2416
+ template: '<ng-content></ng-content>',
2417
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
2418
+ }]
2419
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2420
+ let VegaSkeleton = class VegaSkeleton {
2421
+ constructor(c, r, z) {
2422
+ this.z = z;
2423
+ c.detach();
2424
+ this.el = r.nativeElement;
2425
+ }
2426
+ };
2427
+ 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 });
2428
+ 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 });
2429
+ VegaSkeleton = __decorate([
2430
+ ProxyCmp({
2431
+ defineCustomElementFn: undefined,
2432
+ inputs: ['animated', 'corners', 'height', 'type', 'width']
2433
+ })
2434
+ ], VegaSkeleton);
2435
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSkeleton, decorators: [{
2436
+ type: Component,
2437
+ args: [{
2438
+ selector: 'vega-skeleton',
2439
+ changeDetection: ChangeDetectionStrategy.OnPush,
2440
+ template: '<ng-content></ng-content>',
2441
+ inputs: ['animated', 'corners', 'height', 'type', 'width']
2442
+ }]
2443
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2444
+ let VegaSlotContainer = class VegaSlotContainer {
2445
+ constructor(c, r, z) {
2446
+ this.z = z;
2447
+ c.detach();
2448
+ this.el = r.nativeElement;
2449
+ }
2450
+ };
2451
+ 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 });
2452
+ 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 });
2453
+ VegaSlotContainer = __decorate([
2454
+ ProxyCmp({
2455
+ defineCustomElementFn: undefined
2456
+ })
2457
+ ], VegaSlotContainer);
2458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSlotContainer, decorators: [{
2459
+ type: Component,
2460
+ args: [{
2461
+ selector: 'vega-slot-container',
2462
+ changeDetection: ChangeDetectionStrategy.OnPush,
2463
+ template: '<ng-content></ng-content>'
2464
+ }]
2465
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2466
+ let VegaStepper = class VegaStepper {
2467
+ constructor(c, r, z) {
2468
+ this.z = z;
2469
+ c.detach();
2470
+ this.el = r.nativeElement;
2471
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2472
+ }
2473
+ };
2474
+ 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 });
2475
+ 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 });
2476
+ VegaStepper = __decorate([
2477
+ ProxyCmp({
2478
+ defineCustomElementFn: undefined,
2479
+ inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
2480
+ })
2481
+ ], VegaStepper);
2482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaStepper, decorators: [{
2483
+ type: Component,
2484
+ args: [{
2485
+ selector: 'vega-stepper',
2486
+ changeDetection: ChangeDetectionStrategy.OnPush,
2487
+ template: '<ng-content></ng-content>',
2488
+ inputs: ['autoValidation', 'buttonVariant', 'disabled', 'inputDisabled', 'isValid', 'label', 'max', 'min', 'stepperId', 'value']
2489
+ }]
2490
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2491
+ let VegaTabGroup = class VegaTabGroup {
2492
+ constructor(c, r, z) {
2493
+ this.z = z;
2494
+ c.detach();
2495
+ this.el = r.nativeElement;
2496
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2497
+ }
2498
+ };
2499
+ 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 });
2500
+ 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 });
2501
+ VegaTabGroup = __decorate([
2502
+ ProxyCmp({
2503
+ defineCustomElementFn: undefined,
2504
+ inputs: ['gap', 'overflow', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
2505
+ })
2506
+ ], VegaTabGroup);
2507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTabGroup, decorators: [{
2508
+ type: Component,
2509
+ args: [{
2510
+ selector: 'vega-tab-group',
2511
+ changeDetection: ChangeDetectionStrategy.OnPush,
2512
+ template: '<ng-content></ng-content>',
2513
+ inputs: ['gap', 'overflow', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems', 'variant']
2514
+ }]
2515
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2516
+ let VegaTabGroupPanel = class VegaTabGroupPanel {
2517
+ constructor(c, r, z) {
2518
+ this.z = z;
2519
+ c.detach();
2520
+ this.el = r.nativeElement;
2521
+ }
2522
+ };
2523
+ 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 });
2524
+ 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 });
2525
+ VegaTabGroupPanel = __decorate([
2526
+ ProxyCmp({
2527
+ defineCustomElementFn: undefined,
2528
+ inputs: ['isActive']
2529
+ })
2530
+ ], VegaTabGroupPanel);
2531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTabGroupPanel, decorators: [{
2532
+ type: Component,
2533
+ args: [{
2534
+ selector: 'vega-tab-group-panel',
2535
+ changeDetection: ChangeDetectionStrategy.OnPush,
2536
+ template: '<ng-content></ng-content>',
2537
+ inputs: ['isActive']
2538
+ }]
2539
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2540
+ let VegaTable = class VegaTable {
2541
+ constructor(c, r, z) {
2542
+ this.z = z;
2543
+ c.detach();
2544
+ this.el = r.nativeElement;
2545
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaRowClick', 'rowClick', 'vegaRowExpand', 'rowExpand', 'vegaSelectChange', 'selectChange', 'vegaSelectAllChange', 'selectAllChange', 'vegaRowSelect', 'rowSelect', 'vegaRowSelectAll', 'rowSelectAll']);
2546
+ }
2547
+ };
2548
+ 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 });
2549
+ 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 });
2550
+ VegaTable = __decorate([
2551
+ ProxyCmp({
2552
+ defineCustomElementFn: undefined,
2553
+ inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'groupColumns', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped'],
2554
+ methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection', 'startRowEditMode', 'stopRowEditMode', 'stopAllRowEditMode', 'getRowData', 'getRowsData', 'getFormRef', 'addNewRow', 'saveEditRow', 'saveAllEditRows', 'getEditingRowsKey', 'removeRow']
2555
+ })
2556
+ ], VegaTable);
2557
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTable, decorators: [{
2558
+ type: Component,
2559
+ args: [{
2560
+ selector: 'vega-table',
2561
+ changeDetection: ChangeDetectionStrategy.OnPush,
2562
+ template: '<ng-content></ng-content>',
2563
+ inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'groupColumns', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowKey', 'rowSelection', 'scrollConfig', 'showHeader', 'sortConfig', 'striped']
2564
+ }]
2565
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2566
+ let VegaTableBody = class VegaTableBody {
2567
+ constructor(c, r, z) {
2568
+ this.z = z;
2569
+ c.detach();
2570
+ this.el = r.nativeElement;
2571
+ }
2572
+ };
2573
+ 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 });
2574
+ 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 });
2575
+ VegaTableBody = __decorate([
2576
+ ProxyCmp({
2577
+ defineCustomElementFn: undefined
2578
+ })
2579
+ ], VegaTableBody);
2580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableBody, decorators: [{
2581
+ type: Component,
2582
+ args: [{
2583
+ selector: 'vega-table-body',
2584
+ changeDetection: ChangeDetectionStrategy.OnPush,
2585
+ template: '<ng-content></ng-content>'
2586
+ }]
2587
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2588
+ let VegaTableCell = class VegaTableCell {
2589
+ constructor(c, r, z) {
2590
+ this.z = z;
2591
+ c.detach();
2592
+ this.el = r.nativeElement;
2593
+ }
2594
+ };
2595
+ 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 });
2596
+ 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 });
2597
+ VegaTableCell = __decorate([
2598
+ ProxyCmp({
2599
+ defineCustomElementFn: undefined,
2600
+ inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
2601
+ })
2602
+ ], VegaTableCell);
2603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableCell, decorators: [{
2604
+ type: Component,
2605
+ args: [{
2606
+ selector: 'vega-table-cell',
2607
+ changeDetection: ChangeDetectionStrategy.OnPush,
2608
+ template: '<ng-content></ng-content>',
2609
+ inputs: ['breakpoint', 'overflow', 'textAlign', 'width']
2610
+ }]
2611
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2612
+ let VegaTableExpandRow = class VegaTableExpandRow {
2613
+ constructor(c, r, z) {
2614
+ this.z = z;
2615
+ c.detach();
2616
+ this.el = r.nativeElement;
2617
+ }
2618
+ };
2619
+ 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 });
2620
+ 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 });
2621
+ VegaTableExpandRow = __decorate([
2622
+ ProxyCmp({
2623
+ defineCustomElementFn: undefined,
2624
+ inputs: ['rowKey', 'striped']
2625
+ })
2626
+ ], VegaTableExpandRow);
2627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableExpandRow, decorators: [{
2628
+ type: Component,
2629
+ args: [{
2630
+ selector: 'vega-table-expand-row',
2631
+ changeDetection: ChangeDetectionStrategy.OnPush,
2632
+ template: '<ng-content></ng-content>',
2633
+ inputs: ['rowKey', 'striped']
2634
+ }]
2635
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2636
+ let VegaTableFoot = class VegaTableFoot {
2637
+ constructor(c, r, z) {
2638
+ this.z = z;
2639
+ c.detach();
2640
+ this.el = r.nativeElement;
2641
+ }
2642
+ };
2643
+ VegaTableFoot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableFoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2644
+ VegaTableFoot.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableFoot, selector: "vega-table-foot", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2645
+ VegaTableFoot = __decorate([
2646
+ ProxyCmp({
2647
+ defineCustomElementFn: undefined
2648
+ })
2649
+ ], VegaTableFoot);
2650
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableFoot, decorators: [{
2651
+ type: Component,
2652
+ args: [{
2653
+ selector: 'vega-table-foot',
2654
+ changeDetection: ChangeDetectionStrategy.OnPush,
2655
+ template: '<ng-content></ng-content>'
2656
+ }]
2657
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2658
+ let VegaTableFootCell = class VegaTableFootCell {
2659
+ constructor(c, r, z) {
2660
+ this.z = z;
2661
+ c.detach();
2662
+ this.el = r.nativeElement;
2663
+ }
2664
+ };
2665
+ VegaTableFootCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableFootCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2666
+ VegaTableFootCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableFootCell, selector: "vega-table-foot-cell", inputs: { breakpoint: "breakpoint", textAlign: "textAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2667
+ VegaTableFootCell = __decorate([
2668
+ ProxyCmp({
2669
+ defineCustomElementFn: undefined,
2670
+ inputs: ['breakpoint', 'textAlign', 'width']
2671
+ })
2672
+ ], VegaTableFootCell);
2673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableFootCell, decorators: [{
2674
+ type: Component,
2675
+ args: [{
2676
+ selector: 'vega-table-foot-cell',
2677
+ changeDetection: ChangeDetectionStrategy.OnPush,
2678
+ template: '<ng-content></ng-content>',
2679
+ inputs: ['breakpoint', 'textAlign', 'width']
2680
+ }]
2681
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2682
+ let VegaTableFootRow = class VegaTableFootRow {
2683
+ constructor(c, r, z) {
2684
+ this.z = z;
2685
+ c.detach();
2686
+ this.el = r.nativeElement;
2687
+ }
2688
+ };
2689
+ VegaTableFootRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableFootRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2690
+ VegaTableFootRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaTableFootRow, selector: "vega-table-foot-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2691
+ VegaTableFootRow = __decorate([
2692
+ ProxyCmp({
2693
+ defineCustomElementFn: undefined
2694
+ })
2695
+ ], VegaTableFootRow);
2696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableFootRow, decorators: [{
2697
+ type: Component,
2698
+ args: [{
2699
+ selector: 'vega-table-foot-row',
2700
+ changeDetection: ChangeDetectionStrategy.OnPush,
2701
+ template: '<ng-content></ng-content>'
2702
+ }]
2703
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2704
+ let VegaTableHead = class VegaTableHead {
2705
+ constructor(c, r, z) {
2706
+ this.z = z;
2707
+ c.detach();
2708
+ this.el = r.nativeElement;
2709
+ }
2710
+ };
2711
+ 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 });
2712
+ 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 });
2713
+ VegaTableHead = __decorate([
2714
+ ProxyCmp({
2715
+ defineCustomElementFn: undefined
2716
+ })
2717
+ ], VegaTableHead);
2718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHead, decorators: [{
2719
+ type: Component,
2720
+ args: [{
2721
+ selector: 'vega-table-head',
2722
+ changeDetection: ChangeDetectionStrategy.OnPush,
2723
+ template: '<ng-content></ng-content>'
2724
+ }]
2725
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2726
+ let VegaTableHeadCell = class VegaTableHeadCell {
2727
+ constructor(c, r, z) {
2728
+ this.z = z;
2729
+ c.detach();
2730
+ this.el = r.nativeElement;
2731
+ proxyOutputs(this, this.el, ['vegaClick', 'click']);
2732
+ }
2733
+ };
2734
+ 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 });
2735
+ 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 });
2736
+ VegaTableHeadCell = __decorate([
2737
+ ProxyCmp({
2738
+ defineCustomElementFn: undefined,
2739
+ inputs: ['breakpoint', 'pinned', 'sortConfig', 'sortOrder', 'sorter', 'textAlign', 'width']
2740
+ })
2741
+ ], VegaTableHeadCell);
2742
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadCell, decorators: [{
2743
+ type: Component,
2744
+ args: [{
2745
+ selector: 'vega-table-head-cell',
2746
+ changeDetection: ChangeDetectionStrategy.OnPush,
2747
+ template: '<ng-content></ng-content>',
2748
+ inputs: ['breakpoint', 'pinned', 'sortConfig', 'sortOrder', 'sorter', 'textAlign', 'width']
2749
+ }]
2750
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2751
+ let VegaTableHeadRow = class VegaTableHeadRow {
2752
+ constructor(c, r, z) {
2753
+ this.z = z;
2754
+ c.detach();
2755
+ this.el = r.nativeElement;
2756
+ }
2757
+ };
2758
+ 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 });
2759
+ 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 });
2760
+ VegaTableHeadRow = __decorate([
2761
+ ProxyCmp({
2762
+ defineCustomElementFn: undefined,
2763
+ inputs: ['hideSelectAll', 'selectAllDisabled']
2764
+ })
2765
+ ], VegaTableHeadRow);
2766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableHeadRow, decorators: [{
2767
+ type: Component,
2768
+ args: [{
2769
+ selector: 'vega-table-head-row',
2770
+ changeDetection: ChangeDetectionStrategy.OnPush,
2771
+ template: '<ng-content></ng-content>',
2772
+ inputs: ['hideSelectAll', 'selectAllDisabled']
2773
+ }]
2774
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2775
+ let VegaTableRow = class VegaTableRow {
2776
+ constructor(c, r, z) {
2777
+ this.z = z;
2778
+ c.detach();
2779
+ this.el = r.nativeElement;
2780
+ proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaExpand', 'expand']);
2781
+ }
2782
+ };
2783
+ 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 });
2784
+ 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 });
2785
+ VegaTableRow = __decorate([
2786
+ ProxyCmp({
2787
+ defineCustomElementFn: undefined,
2788
+ inputs: ['rowDivider', 'rowKey', 'striped']
2789
+ })
2790
+ ], VegaTableRow);
2791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTableRow, decorators: [{
2792
+ type: Component,
2793
+ args: [{
2794
+ selector: 'vega-table-row',
2795
+ changeDetection: ChangeDetectionStrategy.OnPush,
2796
+ template: '<ng-content></ng-content>',
2797
+ inputs: ['rowDivider', 'rowKey', 'striped']
2798
+ }]
2799
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2800
+ let VegaText = class VegaText {
2801
+ constructor(c, r, z) {
2802
+ this.z = z;
2803
+ c.detach();
2804
+ this.el = r.nativeElement;
2805
+ }
2806
+ };
2807
+ 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 });
2808
+ 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 });
2809
+ VegaText = __decorate([
2810
+ ProxyCmp({
2811
+ defineCustomElementFn: undefined,
2812
+ inputs: ['overflow', 'tooltip']
2813
+ })
2814
+ ], VegaText);
2815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaText, decorators: [{
2816
+ type: Component,
2817
+ args: [{
2818
+ selector: 'vega-text',
2819
+ changeDetection: ChangeDetectionStrategy.OnPush,
2820
+ template: '<ng-content></ng-content>',
2821
+ inputs: ['overflow', 'tooltip']
2822
+ }]
2823
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2824
+ let VegaTextarea = class VegaTextarea {
2825
+ constructor(c, r, z) {
2826
+ this.z = z;
2827
+ c.detach();
2828
+ this.el = r.nativeElement;
2829
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaBlur', 'blur', 'vegaLabelButtonClick', 'labelButtonClick']);
2830
+ }
2831
+ };
2832
+ 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 });
2833
+ 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", labelSuffixButtonConfig: "labelSuffixButtonConfig", maxLength: "maxLength", minLength: "minLength", placeholder: "placeholder", required: "required", resizable: "resizable", rows: "rows", showCounter: "showCounter", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2834
+ VegaTextarea = __decorate([
2835
+ ProxyCmp({
2836
+ defineCustomElementFn: undefined,
2837
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
2838
+ })
2839
+ ], VegaTextarea);
2840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTextarea, decorators: [{
2841
+ type: Component,
2842
+ args: [{
2843
+ selector: 'vega-textarea',
2844
+ changeDetection: ChangeDetectionStrategy.OnPush,
2845
+ template: '<ng-content></ng-content>',
2846
+ inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'maxLength', 'minLength', 'placeholder', 'required', 'resizable', 'rows', 'showCounter', 'validationRules', 'value']
2847
+ }]
2848
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2849
+ let VegaTimePicker = class VegaTimePicker {
2850
+ constructor(c, r, z) {
2851
+ this.z = z;
2852
+ c.detach();
2853
+ this.el = r.nativeElement;
2854
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2855
+ }
2856
+ };
2857
+ 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 });
2858
+ 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 });
2859
+ VegaTimePicker = __decorate([
2860
+ ProxyCmp({
2861
+ defineCustomElementFn: undefined,
2862
+ inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
2863
+ })
2864
+ ], VegaTimePicker);
2865
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePicker, decorators: [{
2866
+ type: Component,
2867
+ args: [{
2868
+ selector: 'vega-time-picker',
2869
+ changeDetection: ChangeDetectionStrategy.OnPush,
2870
+ template: '<ng-content></ng-content>',
2871
+ inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'required', 'size', 'timeFormat', 'validationRules', 'value']
2872
+ }]
2873
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2874
+ let VegaTimePickerDropdown = class VegaTimePickerDropdown {
2875
+ constructor(c, r, z) {
2876
+ this.z = z;
2877
+ c.detach();
2878
+ this.el = r.nativeElement;
2879
+ }
2880
+ };
2881
+ 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 });
2882
+ 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 });
2883
+ VegaTimePickerDropdown = __decorate([
2884
+ ProxyCmp({
2885
+ defineCustomElementFn: undefined
2886
+ })
2887
+ ], VegaTimePickerDropdown);
2888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePickerDropdown, decorators: [{
2889
+ type: Component,
2890
+ args: [{
2891
+ selector: 'vega-time-picker-dropdown',
2892
+ changeDetection: ChangeDetectionStrategy.OnPush,
2893
+ template: '<ng-content></ng-content>'
2894
+ }]
2895
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2896
+ let VegaToggleSwitch = class VegaToggleSwitch {
2897
+ constructor(c, r, z) {
2898
+ this.z = z;
2899
+ c.detach();
2900
+ this.el = r.nativeElement;
2901
+ proxyOutputs(this, this.el, ['vegaChange', 'change']);
2902
+ }
2903
+ };
2904
+ 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 });
2905
+ 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 });
2906
+ VegaToggleSwitch = __decorate([
2907
+ ProxyCmp({
2908
+ defineCustomElementFn: undefined,
2909
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
2910
+ })
2911
+ ], VegaToggleSwitch);
2912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaToggleSwitch, decorators: [{
2913
+ type: Component,
2914
+ args: [{
2915
+ selector: 'vega-toggle-switch',
2916
+ changeDetection: ChangeDetectionStrategy.OnPush,
2917
+ template: '<ng-content></ng-content>',
2918
+ inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
2919
+ }]
2920
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2921
+ let VegaTooltip = class VegaTooltip {
2922
+ constructor(c, r, z) {
2923
+ this.z = z;
2924
+ c.detach();
2925
+ this.el = r.nativeElement;
2926
+ }
2927
+ };
2928
+ 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 });
2929
+ 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 });
2930
+ VegaTooltip = __decorate([
2931
+ ProxyCmp({
2932
+ defineCustomElementFn: undefined,
2933
+ inputs: ['alignment', 'content', 'disableInteractive', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'text', 'trigger']
2934
+ })
2935
+ ], VegaTooltip);
2936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTooltip, decorators: [{
2937
+ type: Component,
2938
+ args: [{
2939
+ selector: 'vega-tooltip',
2940
+ changeDetection: ChangeDetectionStrategy.OnPush,
2941
+ template: '<ng-content></ng-content>',
2942
+ inputs: ['alignment', 'content', 'disableInteractive', 'maxWidth', 'minWidth', 'placement', 'positionRelativeTo', 'size', 'text', 'trigger']
2943
+ }]
2944
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2945
+ let VegaTooltipContentBox = class VegaTooltipContentBox {
2946
+ constructor(c, r, z) {
2947
+ this.z = z;
2948
+ c.detach();
2949
+ this.el = r.nativeElement;
2950
+ }
2951
+ };
2952
+ 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 });
2953
+ 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 });
2954
+ VegaTooltipContentBox = __decorate([
2955
+ ProxyCmp({
2956
+ defineCustomElementFn: undefined,
2957
+ inputs: ['text']
2958
+ })
2959
+ ], VegaTooltipContentBox);
2960
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTooltipContentBox, decorators: [{
2961
+ type: Component,
2962
+ args: [{
2963
+ selector: 'vega-tooltip-content-box',
2964
+ changeDetection: ChangeDetectionStrategy.OnPush,
2965
+ template: '<ng-content></ng-content>',
2966
+ inputs: ['text']
2967
+ }]
2968
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2969
+ let VegaVirtualScroll = class VegaVirtualScroll {
2970
+ constructor(c, r, z) {
2971
+ this.z = z;
2972
+ c.detach();
2973
+ this.el = r.nativeElement;
2974
+ }
2975
+ };
2976
+ 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 });
2977
+ 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 });
2978
+ VegaVirtualScroll = __decorate([
2979
+ ProxyCmp({
2980
+ defineCustomElementFn: undefined,
2981
+ inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold'],
2982
+ methods: ['scrollToIndex']
2983
+ })
2984
+ ], VegaVirtualScroll);
2985
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaVirtualScroll, decorators: [{
2986
+ type: Component,
2987
+ args: [{
2988
+ selector: 'vega-virtual-scroll',
2989
+ changeDetection: ChangeDetectionStrategy.OnPush,
2990
+ template: '<ng-content></ng-content>',
2991
+ inputs: ['approxItemHeight', 'isLoading', 'renderItem', 'source', 'sourceItemIdentifier', 'viewportMaxHeight', 'virtualizationThreshold']
2992
+ }]
2993
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2994
+ var VegaComponents = [
2995
+ VegaAccordion,
2996
+ VegaAppFooter,
2997
+ VegaAppHeaderButton,
2998
+ VegaBackdrop,
2999
+ VegaBanner,
3000
+ VegaBarChart,
3001
+ VegaBox,
3002
+ VegaBrandLogo,
3003
+ VegaBreadcrumb,
3004
+ VegaButton,
3005
+ VegaButtonCircle,
3006
+ VegaButtonGroup,
3007
+ VegaButtonGroupItem,
3008
+ VegaButtonLink,
3009
+ VegaCalendar,
3010
+ VegaCalendarEvent,
3011
+ VegaCalendarEventPreview,
3012
+ VegaCalendarEventSlot,
3013
+ VegaCard,
3014
+ VegaCarousel,
3015
+ VegaCheckbox,
3016
+ VegaCheckboxGroup,
3017
+ VegaChip,
3018
+ VegaCodeBlock,
3019
+ VegaColorPicker,
3020
+ VegaComboBox,
3021
+ VegaCounterBadge,
3022
+ VegaDatePicker,
3023
+ VegaDatePickerCalendar,
3024
+ VegaDialog,
3025
+ VegaDivider,
3026
+ VegaDropdown,
3027
+ VegaDropdownContentBox,
3028
+ VegaDropdownGroup,
3029
+ VegaDropdownItem,
3030
+ VegaFieldError,
3031
+ VegaFieldLabel,
3032
+ VegaFileUploader,
3033
+ VegaFlagIcon,
3034
+ VegaFlex,
3035
+ VegaFont,
3036
+ VegaForm,
3037
+ VegaGrid,
3038
+ VegaHint,
3039
+ VegaIcon,
3040
+ VegaImageUploader,
3041
+ VegaInput,
3042
+ VegaInputCreditCard,
3043
+ VegaInputNumeric,
3044
+ VegaInputPasscode,
3045
+ VegaInputPhoneNumber,
3046
+ VegaInputRange,
3047
+ VegaInputSelect,
3048
+ VegaItemToggle,
3049
+ VegaLeftNav,
3050
+ VegaLeftNavGroup,
3051
+ VegaLeftNavLink,
3052
+ VegaLeftNavSection,
3053
+ VegaLineChart,
3054
+ VegaLoaderWrapper,
3055
+ VegaLoadingIndicator,
3056
+ VegaModal,
3057
+ VegaNavCard,
3058
+ VegaPageNotification,
3059
+ VegaPageNotificationList,
3060
+ VegaPagination,
3061
+ VegaPaginationPageSelectorMobile,
3062
+ VegaPaginationPageSizeSelectorMobile,
3063
+ VegaPieChart,
3064
+ VegaPopover,
3065
+ VegaPopoverContentBox,
3066
+ VegaProgressTracker,
3067
+ VegaRadio,
3068
+ VegaRadioGroup,
3069
+ VegaRichTextContent,
3070
+ VegaRichTextEditor,
3071
+ VegaRichTextEditorToolbarButton,
3072
+ VegaRichTextImageEditor,
3073
+ VegaRichTextLinkEditor,
3074
+ VegaRichTextTableSelectionWidget,
3075
+ VegaRichTextTableSetting,
3076
+ VegaSectionTitle,
3077
+ VegaSegmentControl,
3078
+ VegaSelectionChip,
3079
+ VegaSelectionChipGroup,
3080
+ VegaSelectionTile,
3081
+ VegaSelectionTileGroup,
3082
+ VegaSidenav,
3083
+ VegaSidenavGroup,
3084
+ VegaSidenavLink,
3085
+ VegaSignatureCapture,
3086
+ VegaSkeleton,
3087
+ VegaSlotContainer,
3088
+ VegaStepper,
3089
+ VegaTabGroup,
3090
+ VegaTabGroupPanel,
3091
+ VegaTable,
3092
+ VegaTableBody,
3093
+ VegaTableCell,
3094
+ VegaTableExpandRow,
3095
+ VegaTableFoot,
3096
+ VegaTableFootCell,
3097
+ VegaTableFootRow,
3098
+ VegaTableHead,
3099
+ VegaTableHeadCell,
3100
+ VegaTableHeadRow,
3101
+ VegaTableRow,
3102
+ VegaText,
3103
+ VegaTextarea,
3104
+ VegaTimePicker,
3105
+ VegaTimePickerDropdown,
3106
+ VegaToggleSwitch,
3107
+ VegaTooltip,
3108
+ VegaTooltipContentBox,
3109
+ VegaVirtualScroll,
3110
+ ];
3111
+
3112
+ class VegaComponentModule {
3113
+ constructor() {
3114
+ this.useJuggleResizeObserver();
3115
+ VegaEnvManager.setVegaFramework(FrameworkEnum.Angular);
3116
+ defineCustomElements(window).then();
3117
+ }
3118
+ useJuggleResizeObserver() {
3119
+ if (FeatureFlag.isEnabled('VEGA_ANGULAR.USE_JUGGLE_RESIZE_OBSERVER')) {
3120
+ Object.assign(window, {
3121
+ 'VegaResizeObserver': ResizeObserver
3122
+ });
3123
+ }
3124
+ }
3125
+ }
3126
+ VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3127
+ 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, VegaInputPasscode, 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, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, 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, VegaInputPasscode, 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, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
3128
+ VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, imports: [[]] });
3129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, decorators: [{
3130
+ type: NgModule,
3131
+ args: [{
3132
+ declarations: [...VegaComponents, TextValueAccessor, ValueAccessor],
3133
+ imports: [],
3134
+ exports: [...VegaComponents, TextValueAccessor, ValueAccessor],
3135
+ }]
3136
+ }], ctorParameters: function () { return []; } });
3137
+
3138
+ /*
3139
+ * Public API Surface of vega-angular
3140
+ */
3141
+
3142
+ /**
3143
+ * Generated bundle index. Do not edit.
3144
+ */
3145
+
3146
+ 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, VegaInputPasscode, 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, VegaRichTextTableSelectionWidget, VegaRichTextTableSetting, VegaSectionTitle, VegaSegmentControl, VegaSelectionChip, VegaSelectionChipGroup, VegaSelectionTile, VegaSelectionTileGroup, VegaSidenav, VegaSidenavGroup, VegaSidenavLink, VegaSignatureCapture, VegaSkeleton, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableFoot, VegaTableFootCell, VegaTableFootRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
3147
+ //# sourceMappingURL=heartlandone-vega-angular.mjs.map