@heartlandone/vega-angular 2.5.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm2020/lib/components-module.mjs +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +70 -16
- package/dist/esm2020/lib/stencil-generated/text-value-accessor.mjs +3 -3
- package/dist/esm2020/testing/heartlandone-vega-angular-testing.mjs +5 -0
- package/dist/esm2020/testing/index.mjs +93 -0
- package/dist/esm2020/testing/public-api.mjs +5 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs +107 -0
- package/dist/fesm2015/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2015/heartlandone-vega-angular.mjs +71 -19
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs +104 -0
- package/dist/fesm2020/heartlandone-vega-angular-testing.mjs.map +1 -0
- package/dist/fesm2020/heartlandone-vega-angular.mjs +71 -19
- package/dist/fesm2020/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/lib/components-module.d.ts +1 -1
- package/dist/lib/stencil-generated/components.d.ts +44 -6
- package/dist/lib/stencil-generated/text-value-accessor.d.ts +1 -1
- package/dist/package.json +10 -2
- package/dist/testing/heartlandone-vega-angular-testing.d.ts +5 -0
- package/dist/testing/index.d.ts +7 -0
- package/dist/testing/package.json +10 -0
- package/dist/testing/public-api.d.ts +1 -0
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +80 -10
- package/src/lib/stencil-generated/text-value-accessor.ts +1 -1
- package/testing/index.ts +123 -0
- package/testing/ng-package.json +8 -0
- package/testing/public-api.ts +4 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { FeatureFlag } from '@heartlandone/vega';
|
|
2
|
+
import { waitFor } from '@testing-library/angular';
|
|
3
|
+
|
|
4
|
+
async function waitForVegaReady(renderResult, delay = 300) {
|
|
5
|
+
await waitFor(() => {
|
|
6
|
+
renderResult.container
|
|
7
|
+
.querySelectorAll('*:not(.hydrated)')
|
|
8
|
+
// eslint-disable-next-line unicorn/no-array-for-each
|
|
9
|
+
.forEach((element) => {
|
|
10
|
+
if (element.tagName.startsWith('VEGA')) {
|
|
11
|
+
throw new Error('Vega component is not rendered yet, retrying...');
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
/*
|
|
16
|
+
* The following code is added to load the vega component, and the attribute value is set after each component is loaded.
|
|
17
|
+
* To determine whether there is a hydrated style that cannot meet the requirements after the component is loaded,
|
|
18
|
+
* It need to set the sleep time to ensure that each attribute of the vega component is fully loaded
|
|
19
|
+
*
|
|
20
|
+
code link: ./node_modules/@heartlandone/vega-react/dist/react-component-lib/utils/attachProps.js(line 28-33)}
|
|
21
|
+
*/
|
|
22
|
+
await sleep(delay);
|
|
23
|
+
return renderResult;
|
|
24
|
+
}
|
|
25
|
+
function mockResizeObserver() {
|
|
26
|
+
FeatureFlag.disable('VEGA_ANGULAR.USE_JUGGLE_RESIZE_OBSERVER');
|
|
27
|
+
const resizeObserverElementMap = new Map();
|
|
28
|
+
const VegaResizeObserver = class {
|
|
29
|
+
constructor(callback) {
|
|
30
|
+
this.observedElements = [];
|
|
31
|
+
this.callback = callback;
|
|
32
|
+
}
|
|
33
|
+
observe(element) {
|
|
34
|
+
if (!this.isObserved(element)) {
|
|
35
|
+
resizeObserverElementMap.set(element, this);
|
|
36
|
+
this.observedElements.push(element);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
unobserve(element) {
|
|
40
|
+
if (this.isObserved(element)) {
|
|
41
|
+
resizeObserverElementMap.delete(element);
|
|
42
|
+
this.observedElements = this.observedElements.filter((observedElement) => observedElement !== element);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
disconnect() {
|
|
46
|
+
for (const element of this.observedElements) {
|
|
47
|
+
resizeObserverElementMap.delete(element);
|
|
48
|
+
}
|
|
49
|
+
this.observedElements = [];
|
|
50
|
+
}
|
|
51
|
+
show() {
|
|
52
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
53
|
+
this.callback([{ contentRect: { height: 100 } }], this);
|
|
54
|
+
}
|
|
55
|
+
hide() {
|
|
56
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
57
|
+
this.callback([{ contentRect: { height: 0 } }], this);
|
|
58
|
+
}
|
|
59
|
+
isObserved(element) {
|
|
60
|
+
return this.observedElements.includes(element);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
Object.assign(window, { VegaResizeObserver });
|
|
64
|
+
return {
|
|
65
|
+
show: (selector, container) => {
|
|
66
|
+
(container || document)
|
|
67
|
+
.querySelectorAll(selector)
|
|
68
|
+
// eslint-disable-next-line unicorn/no-array-for-each
|
|
69
|
+
.forEach((el) => {
|
|
70
|
+
const resizeObserver = resizeObserverElementMap.get(el);
|
|
71
|
+
if (resizeObserver) {
|
|
72
|
+
resizeObserver.show();
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
},
|
|
76
|
+
hide: (selector, container) => {
|
|
77
|
+
(container || document)
|
|
78
|
+
.querySelectorAll(selector)
|
|
79
|
+
// eslint-disable-next-line unicorn/no-array-for-each
|
|
80
|
+
.forEach((el) => {
|
|
81
|
+
const resizeObserver = resizeObserverElementMap.get(el);
|
|
82
|
+
if (resizeObserver) {
|
|
83
|
+
resizeObserver.hide();
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
function sleep(ms) {
|
|
90
|
+
return new Promise((resolve) => {
|
|
91
|
+
setTimeout(resolve, ms);
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/*
|
|
96
|
+
* Public API Surface of vega-angular
|
|
97
|
+
*/
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Generated bundle index. Do not edit.
|
|
101
|
+
*/
|
|
102
|
+
|
|
103
|
+
export { mockResizeObserver, waitForVegaReady };
|
|
104
|
+
//# sourceMappingURL=heartlandone-vega-angular-testing.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"heartlandone-vega-angular-testing.mjs","sources":["../../testing/index.ts","../../testing/public-api.ts","../../testing/heartlandone-vega-angular-testing.ts"],"sourcesContent":["import { FeatureFlag } from '@heartlandone/vega';\nimport { waitFor } from '@testing-library/angular';\nimport type { RenderResult } from '@testing-library/angular';\n\ntype Nullable<T> = T | undefined | null;\n\nexport async function waitForVegaReady(\n renderResult: RenderResult<unknown, unknown>,\n delay: number = 300,\n): Promise<RenderResult<unknown, unknown>> {\n await waitFor(() => {\n renderResult.container\n .querySelectorAll('*:not(.hydrated)')\n // eslint-disable-next-line unicorn/no-array-for-each\n .forEach((element: Element) => {\n if (element.tagName.startsWith('VEGA')) {\n throw new Error('Vega component is not rendered yet, retrying...');\n }\n });\n });\n /*\n * The following code is added to load the vega component, and the attribute value is set after each component is loaded.\n * To determine whether there is a hydrated style that cannot meet the requirements after the component is loaded,\n * It need to set the sleep time to ensure that each attribute of the vega component is fully loaded\n *\n code link: ./node_modules/@heartlandone/vega-react/dist/react-component-lib/utils/attachProps.js(line 28-33)}\n */\n await sleep(delay);\n return renderResult;\n}\n\nexport type MockedResizeObserverController = {\n hide: (selector: string, container?: HTMLElement) => void;\n show: (selector: string, container?: HTMLElement) => void;\n};\n\nexport function mockResizeObserver(): MockedResizeObserverController {\n type MockedResizeObserver = ResizeObserver & {\n show: () => void;\n hide: () => void;\n };\n FeatureFlag.disable('VEGA_ANGULAR.USE_JUGGLE_RESIZE_OBSERVER');\n const resizeObserverElementMap: Map<HTMLElement, MockedResizeObserver> = new Map();\n const VegaResizeObserver: unknown = class {\n private readonly callback: ResizeObserverCallback;\n private observedElements: HTMLElement[] = [];\n constructor(callback: ResizeObserverCallback) {\n this.callback = callback;\n }\n\n observe(element: HTMLElement): void {\n if (!this.isObserved(element)) {\n resizeObserverElementMap.set(element, this);\n this.observedElements.push(element);\n }\n }\n\n unobserve(element: HTMLElement): void {\n if (this.isObserved(element)) {\n resizeObserverElementMap.delete(element);\n this.observedElements = this.observedElements.filter(\n (observedElement: HTMLElement) => observedElement !== element,\n );\n }\n }\n\n disconnect(): void {\n for (const element of this.observedElements) {\n resizeObserverElementMap.delete(element);\n }\n this.observedElements = [];\n }\n\n show(): void {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n this.callback([{ contentRect: { height: 100 } }] as any, this);\n }\n\n hide(): void {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n this.callback([{ contentRect: { height: 0 } }] as any, this);\n }\n\n private isObserved(element: HTMLElement): boolean {\n return this.observedElements.includes(element);\n }\n };\n Object.assign(window, { VegaResizeObserver });\n return {\n show: (selector: string, container?: HTMLElement): void => {\n (container || document)\n .querySelectorAll(selector)\n // eslint-disable-next-line unicorn/no-array-for-each\n .forEach((el: Element) => {\n const resizeObserver: Nullable<MockedResizeObserver> = resizeObserverElementMap.get(\n el as HTMLElement,\n );\n if (resizeObserver) {\n resizeObserver.show();\n }\n });\n },\n hide: (selector: string, container?: HTMLElement): void => {\n (container || document)\n .querySelectorAll(selector)\n // eslint-disable-next-line unicorn/no-array-for-each\n .forEach((el: Element) => {\n const resizeObserver: Nullable<MockedResizeObserver> = resizeObserverElementMap.get(\n el as HTMLElement,\n );\n if (resizeObserver) {\n resizeObserver.hide();\n }\n });\n },\n };\n}\n\nfunction sleep(ms: number): Promise<void> {\n return new Promise((resolve: () => void) => {\n setTimeout(resolve, ms);\n });\n}\n","/*\n * Public API Surface of vega-angular\n */\nexport * from './index';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -57,7 +57,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
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-image-uploader, vega-input, vega-input-credit-card, vega-input-range, vega-input-select, vega-radio-group, vega-stepper, vega-textarea, vega-time-picker", host: { listeners: { "vegaChange": "handleChangeEvent($event.currentTarget.value, 'vega')", "change": "handleChangeEvent($event.currentTarget.value, 'native')" } }, providers: [
|
|
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-image-uploader, vega-input, vega-input-credit-card, vega-input-range, vega-input-select, vega-radio-group, vega-selection-tile-group, vega-stepper, vega-textarea, vega-time-picker", host: { listeners: { "vegaChange": "handleChangeEvent($event.currentTarget.value, 'vega')", "change": "handleChangeEvent($event.currentTarget.value, 'native')" } }, providers: [
|
|
61
61
|
{
|
|
62
62
|
provide: NG_VALUE_ACCESSOR,
|
|
63
63
|
useExisting: TextValueAccessor,
|
|
@@ -68,7 +68,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
68
68
|
type: Directive,
|
|
69
69
|
args: [{
|
|
70
70
|
/* tslint:disable-next-line:directive-selector */
|
|
71
|
-
selector: 'vega-checkbox, vega-checkbox-group, vega-color-picker, vega-combo-box, vega-date-picker, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-range, vega-input-select, vega-radio-group, vega-stepper, vega-textarea, vega-time-picker',
|
|
71
|
+
selector: 'vega-checkbox, vega-checkbox-group, vega-color-picker, vega-combo-box, vega-date-picker, vega-image-uploader, vega-input, vega-input-credit-card, vega-input-range, vega-input-select, vega-radio-group, vega-selection-tile-group, vega-stepper, vega-textarea, vega-time-picker',
|
|
72
72
|
host: {
|
|
73
73
|
'(vegaChange)': "handleChangeEvent($event.currentTarget.value, 'vega')",
|
|
74
74
|
'(change)': "handleChangeEvent($event.currentTarget.value, 'native')"
|
|
@@ -300,11 +300,11 @@ let VegaBox = class VegaBox {
|
|
|
300
300
|
}
|
|
301
301
|
};
|
|
302
302
|
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 });
|
|
303
|
-
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", corners: "corners", display: "display", flex: "flex", flexBasis: "flexBasis", flexGrow: "flexGrow", flexShrink: "flexShrink", gridArea: "gridArea", gridColumn: "gridColumn", gridRow: "gridRow", height: "height", justifySelf: "justifySelf", margin: "margin", order: "order", padding: "padding", responsiveClass: "responsiveClass", shadow: "shadow", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
303
|
+
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 });
|
|
304
304
|
VegaBox = __decorate([
|
|
305
305
|
ProxyCmp({
|
|
306
306
|
defineCustomElementFn: undefined,
|
|
307
|
-
inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
|
|
307
|
+
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']
|
|
308
308
|
})
|
|
309
309
|
], VegaBox);
|
|
310
310
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaBox, decorators: [{
|
|
@@ -313,7 +313,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
313
313
|
selector: 'vega-box',
|
|
314
314
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
315
315
|
template: '<ng-content></ng-content>',
|
|
316
|
-
inputs: ['alignSelf', 'backgroundColor', 'border', 'borderColor', 'corners', 'display', 'flex', 'flexBasis', 'flexGrow', 'flexShrink', 'gridArea', 'gridColumn', 'gridRow', 'height', 'justifySelf', 'margin', 'order', 'padding', 'responsiveClass', 'shadow', 'width']
|
|
316
|
+
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']
|
|
317
317
|
}]
|
|
318
318
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
319
319
|
let VegaBreadcrumb = class VegaBreadcrumb {
|
|
@@ -550,11 +550,11 @@ let VegaCheckboxGroup = class VegaCheckboxGroup {
|
|
|
550
550
|
}
|
|
551
551
|
};
|
|
552
552
|
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 });
|
|
553
|
-
VegaCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaCheckboxGroup, selector: "vega-checkbox-group", inputs: { disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", required: "required", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
553
|
+
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 });
|
|
554
554
|
VegaCheckboxGroup = __decorate([
|
|
555
555
|
ProxyCmp({
|
|
556
556
|
defineCustomElementFn: undefined,
|
|
557
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
557
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
558
558
|
})
|
|
559
559
|
], VegaCheckboxGroup);
|
|
560
560
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCheckboxGroup, decorators: [{
|
|
@@ -563,7 +563,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
563
563
|
selector: 'vega-checkbox-group',
|
|
564
564
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
565
565
|
template: '<ng-content></ng-content>',
|
|
566
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'value', 'vegaFlexProp']
|
|
566
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
567
567
|
}]
|
|
568
568
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
569
569
|
let VegaChip = class VegaChip {
|
|
@@ -892,11 +892,11 @@ let VegaFlex = class VegaFlex {
|
|
|
892
892
|
}
|
|
893
893
|
};
|
|
894
894
|
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 });
|
|
895
|
-
VegaFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFlex, selector: "vega-flex", inputs: { alignItems: "alignItems", breakpoint: "breakpoint", direction: "direction", gap: "gap", justifyContent: "justifyContent", margin: "margin", useNativeFlex: "useNativeFlex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
895
|
+
VegaFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaFlex, selector: "vega-flex", inputs: { alignItems: "alignItems", breakpoint: "breakpoint", direction: "direction", flexWrap: "flexWrap", gap: "gap", justifyContent: "justifyContent", margin: "margin", useNativeFlex: "useNativeFlex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
896
896
|
VegaFlex = __decorate([
|
|
897
897
|
ProxyCmp({
|
|
898
898
|
defineCustomElementFn: undefined,
|
|
899
|
-
inputs: ['alignItems', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
899
|
+
inputs: ['alignItems', 'breakpoint', 'direction', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
900
900
|
})
|
|
901
901
|
], VegaFlex);
|
|
902
902
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaFlex, decorators: [{
|
|
@@ -905,7 +905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
905
905
|
selector: 'vega-flex',
|
|
906
906
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
907
907
|
template: '<ng-content></ng-content>',
|
|
908
|
-
inputs: ['alignItems', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
908
|
+
inputs: ['alignItems', 'breakpoint', 'direction', 'flexWrap', 'gap', 'justifyContent', 'margin', 'useNativeFlex']
|
|
909
909
|
}]
|
|
910
910
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
911
911
|
let VegaFont = class VegaFont {
|
|
@@ -1168,11 +1168,11 @@ let VegaLeftNav = class VegaLeftNav {
|
|
|
1168
1168
|
}
|
|
1169
1169
|
};
|
|
1170
1170
|
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 });
|
|
1171
|
-
VegaLeftNav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNav, selector: "vega-left-nav", inputs: { footnote: "footnote", headerConfig: "headerConfig", open: "open", showAsOverlay: "showAsOverlay", source: "source" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1171
|
+
VegaLeftNav.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaLeftNav, selector: "vega-left-nav", inputs: { 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 });
|
|
1172
1172
|
VegaLeftNav = __decorate([
|
|
1173
1173
|
ProxyCmp({
|
|
1174
1174
|
defineCustomElementFn: undefined,
|
|
1175
|
-
inputs: ['footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
|
|
1175
|
+
inputs: ['autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source'],
|
|
1176
1176
|
methods: ['toggle']
|
|
1177
1177
|
})
|
|
1178
1178
|
], VegaLeftNav);
|
|
@@ -1182,7 +1182,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1182
1182
|
selector: 'vega-left-nav',
|
|
1183
1183
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1184
1184
|
template: '<ng-content></ng-content>',
|
|
1185
|
-
inputs: ['footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
|
|
1185
|
+
inputs: ['autoCollapseOnOverlay', 'footnote', 'headerConfig', 'open', 'showAsOverlay', 'source']
|
|
1186
1186
|
}]
|
|
1187
1187
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1188
1188
|
let VegaLeftNavGroup = class VegaLeftNavGroup {
|
|
@@ -1585,11 +1585,11 @@ let VegaRadioGroup = class VegaRadioGroup {
|
|
|
1585
1585
|
}
|
|
1586
1586
|
};
|
|
1587
1587
|
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 });
|
|
1588
|
-
VegaRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaRadioGroup, selector: "vega-radio-group", inputs: { disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", name: "name", required: "required", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1588
|
+
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 });
|
|
1589
1589
|
VegaRadioGroup = __decorate([
|
|
1590
1590
|
ProxyCmp({
|
|
1591
1591
|
defineCustomElementFn: undefined,
|
|
1592
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
1592
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
1593
1593
|
})
|
|
1594
1594
|
], VegaRadioGroup);
|
|
1595
1595
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadioGroup, decorators: [{
|
|
@@ -1598,7 +1598,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1598
1598
|
selector: 'vega-radio-group',
|
|
1599
1599
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1600
1600
|
template: '<ng-content></ng-content>',
|
|
1601
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']
|
|
1601
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
1602
1602
|
}]
|
|
1603
1603
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1604
1604
|
let VegaSectionTitle = class VegaSectionTitle {
|
|
@@ -1650,6 +1650,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1650
1650
|
inputs: ['block', 'segments', 'selected', 'size', 'variant']
|
|
1651
1651
|
}]
|
|
1652
1652
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1653
|
+
let VegaSelectionTile = class VegaSelectionTile {
|
|
1654
|
+
constructor(c, r, z) {
|
|
1655
|
+
this.z = z;
|
|
1656
|
+
c.detach();
|
|
1657
|
+
this.el = r.nativeElement;
|
|
1658
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1659
|
+
}
|
|
1660
|
+
};
|
|
1661
|
+
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 });
|
|
1662
|
+
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 });
|
|
1663
|
+
VegaSelectionTile = __decorate([
|
|
1664
|
+
ProxyCmp({
|
|
1665
|
+
defineCustomElementFn: undefined,
|
|
1666
|
+
inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
|
|
1667
|
+
})
|
|
1668
|
+
], VegaSelectionTile);
|
|
1669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTile, decorators: [{
|
|
1670
|
+
type: Component,
|
|
1671
|
+
args: [{
|
|
1672
|
+
selector: 'vega-selection-tile',
|
|
1673
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1674
|
+
template: '<ng-content></ng-content>',
|
|
1675
|
+
inputs: ['checked', 'disabled', 'note', 'prefixIcon', 'selectType', 'titleText', 'value']
|
|
1676
|
+
}]
|
|
1677
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1678
|
+
let VegaSelectionTileGroup = class VegaSelectionTileGroup {
|
|
1679
|
+
constructor(c, r, z) {
|
|
1680
|
+
this.z = z;
|
|
1681
|
+
c.detach();
|
|
1682
|
+
this.el = r.nativeElement;
|
|
1683
|
+
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
1684
|
+
}
|
|
1685
|
+
};
|
|
1686
|
+
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 });
|
|
1687
|
+
VegaSelectionTileGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaSelectionTileGroup, selector: "vega-selection-tile-group", inputs: { disabled: "disabled", 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 });
|
|
1688
|
+
VegaSelectionTileGroup = __decorate([
|
|
1689
|
+
ProxyCmp({
|
|
1690
|
+
defineCustomElementFn: undefined,
|
|
1691
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
|
1692
|
+
})
|
|
1693
|
+
], VegaSelectionTileGroup);
|
|
1694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTileGroup, decorators: [{
|
|
1695
|
+
type: Component,
|
|
1696
|
+
args: [{
|
|
1697
|
+
selector: 'vega-selection-tile-group',
|
|
1698
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1699
|
+
template: '<ng-content></ng-content>',
|
|
1700
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
|
1701
|
+
}]
|
|
1702
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1653
1703
|
let VegaSlotContainer = class VegaSlotContainer {
|
|
1654
1704
|
constructor(c, r, z) {
|
|
1655
1705
|
this.z = z;
|
|
@@ -2193,6 +2243,8 @@ var VegaComponents = [
|
|
|
2193
2243
|
VegaRadioGroup,
|
|
2194
2244
|
VegaSectionTitle,
|
|
2195
2245
|
VegaSegmentControl,
|
|
2246
|
+
VegaSelectionTile,
|
|
2247
|
+
VegaSelectionTileGroup,
|
|
2196
2248
|
VegaSlotContainer,
|
|
2197
2249
|
VegaStepper,
|
|
2198
2250
|
VegaTabGroup,
|
|
@@ -2230,7 +2282,7 @@ class VegaComponentModule {
|
|
|
2230
2282
|
}
|
|
2231
2283
|
}
|
|
2232
2284
|
VegaComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2233
|
-
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSectionTitle, VegaSegmentControl, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSectionTitle, VegaSegmentControl, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
2285
|
+
VegaComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, declarations: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSectionTitle, VegaSegmentControl, VegaSelectionTile, VegaSelectionTileGroup, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor], exports: [VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSectionTitle, VegaSegmentControl, VegaSelectionTile, VegaSelectionTileGroup, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll, TextValueAccessor, ValueAccessor] });
|
|
2234
2286
|
VegaComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, imports: [[]] });
|
|
2235
2287
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaComponentModule, decorators: [{
|
|
2236
2288
|
type: NgModule,
|
|
@@ -2249,5 +2301,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2249
2301
|
* Generated bundle index. Do not edit.
|
|
2250
2302
|
*/
|
|
2251
2303
|
|
|
2252
|
-
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSectionTitle, VegaSegmentControl, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
|
2304
|
+
export { TextValueAccessor, ValueAccessor, VegaAccordion, VegaAppFooter, VegaAppHeaderButton, VegaBackdrop, VegaBarChart, VegaBox, VegaBreadcrumb, VegaButton, VegaButtonCircle, VegaButtonGroup, VegaButtonGroupItem, VegaButtonLink, VegaCard, VegaCarousel, VegaCheckbox, VegaCheckboxGroup, VegaChip, VegaColorPicker, VegaComboBox, VegaComponentModule, VegaCounterBadge, VegaDatePicker, VegaDatePickerCalendar, VegaDialog, VegaDropdown, VegaDropdownContentBox, VegaDropdownGroup, VegaDropdownItem, VegaFieldError, VegaFieldLabel, VegaFlex, VegaFont, VegaForm, VegaGrid, VegaIcon, VegaImageUploader, VegaInput, VegaInputCreditCard, VegaInputRange, VegaInputSelect, VegaItemToggle, VegaLeftNav, VegaLeftNavGroup, VegaLeftNavLink, VegaLeftNavSection, VegaLineChart, VegaLoaderWrapper, VegaLoadingIndicator, VegaModal, VegaNavCard, VegaPageNotification, VegaPageNotificationList, VegaPagination, VegaPieChart, VegaPopover, VegaPopoverContentBox, VegaProgressTracker, VegaRadio, VegaRadioGroup, VegaSectionTitle, VegaSegmentControl, VegaSelectionTile, VegaSelectionTileGroup, VegaSlotContainer, VegaStepper, VegaTabGroup, VegaTabGroupPanel, VegaTable, VegaTableBody, VegaTableCell, VegaTableExpandRow, VegaTableHead, VegaTableHeadCell, VegaTableHeadRow, VegaTableRow, VegaText, VegaTextarea, VegaTimePicker, VegaTimePickerDropdown, VegaToggleSwitch, VegaTooltip, VegaTooltipContentBox, VegaVirtualScroll };
|
|
2253
2305
|
//# sourceMappingURL=heartlandone-vega-angular.mjs.map
|