@heartlandone/vega-angular 2.88.0 → 2.90.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/README.md +2 -2
- package/dist/README.md +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +51 -51
- package/dist/fesm2015/globalpayments-vega-angular-testing.mjs.map +1 -1
- package/dist/fesm2015/globalpayments-vega-angular.mjs +50 -50
- package/dist/fesm2015/globalpayments-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/globalpayments-vega-angular-testing.mjs.map +1 -1
- package/dist/fesm2020/globalpayments-vega-angular.mjs +50 -50
- package/dist/fesm2020/globalpayments-vega-angular.mjs.map +1 -1
- package/dist/lib/stencil-generated/components.d.ts +51 -16
- package/dist/package.json +5 -4
- package/dist/testing/package.json +1 -1
- package/ng-package.json +1 -1
- package/package.json +4 -3
- package/src/lib/components-module.ts +2 -2
- package/src/lib/stencil-generated/angular-component-lib/utils.ts +1 -1
- package/src/lib/stencil-generated/components.ts +107 -72
- package/src/lib/stencil-generated/value-accessor.ts +1 -1
- package/src/scripts/stencil-post-build-script.js +2 -2
- package/testing/index.ts +2 -2
- package/testing/ng-package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globalpayments-vega-angular-testing.mjs","sources":["../../testing/index.ts","../../testing/public-api.ts","../../testing/globalpayments-vega-angular-testing.ts"],"sourcesContent":["import { FeatureFlag } from '@
|
|
1
|
+
{"version":3,"file":"globalpayments-vega-angular-testing.mjs","sources":["../../testing/index.ts","../../testing/public-api.ts","../../testing/globalpayments-vega-angular-testing.ts"],"sourcesContent":["import { FeatureFlag } from '@heartlandone/vega';\nimport { waitForVega } from '@heartlandone/vega';\nimport type { RenderResult } from '@testing-library/angular';\n\ntype Nullable<T> = T | undefined | null;\n\n/**\n * @deprecated This utility is deprecated. Use `waitForVega` from `@heartlandone/vega-testing-library` directly.\n * The `vega-testing-library` package supports Jest fake timers and does not require a `RenderResult` argument.\n * Install it separately: `npm install @heartlandone/vega-testing-library`\n */\nexport async function waitForVegaReady(\n renderResult: RenderResult<unknown, unknown>,\n delay: number = 300,\n): Promise<RenderResult<unknown, unknown>> {\n await waitForVega();\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/vega-react/dist/react-component-lib/utils/attachProps.js(line 28-33)}\n */\n await sleep(delay);\n return renderResult;\n}\n\n/**\n * @deprecated This type is deprecated. Use `MockedResizeObserverController` from `@heartlandone/vega-testing-library` directly.\n * Install it separately: `npm install @heartlandone/vega-testing-library`\n */\nexport type MockedResizeObserverController = {\n hide: (selector: string, container?: HTMLElement) => void;\n show: (selector: string, container?: HTMLElement) => void;\n};\n\n/**\n * @deprecated This function is deprecated. Use `mockResizeObserver` from `@heartlandone/vega-testing-library` directly.\n * Install it separately: `npm install @heartlandone/vega-testing-library`\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":";;;AAMA;;;;;SAKsB,gBAAgB,CACpC,YAA4C,EAC5C,QAAgB,GAAG;;QAEnB,MAAM,WAAW,EAAE,CAAC;;;;;;;;QASpB,MAAM,KAAK,CAAC,KAAK,CAAC,CAAC;QACnB,OAAO,YAAY,CAAC;KACrB;CAAA;AAWD;;;;SAIgB,kBAAkB;IAKhC,WAAW,CAAC,OAAO,CAAC,yCAAyC,CAAC,CAAC;IAC/D,MAAM,wBAAwB,GAA2C,IAAI,GAAG,EAAE,CAAC;IACnF,MAAM,kBAAkB,GAAY;QAGlC,YAAY,QAAgC;YADpC,qBAAgB,GAAkB,EAAE,CAAC;YAE3C,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;SAC1B;QAED,OAAO,CAAC,OAAoB;YAC1B,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE;gBAC7B,wBAAwB,CAAC,GAAG,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;gBAC5C,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;aACrC;SACF;QAED,SAAS,CAAC,OAAoB;YAC5B,IAAI,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE;gBAC5B,wBAAwB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;gBACzC,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAClD,CAAC,eAA4B,KAAK,eAAe,KAAK,OAAO,CAC9D,CAAC;aACH;SACF;QAED,UAAU;YACR,KAAK,MAAM,OAAO,IAAI,IAAI,CAAC,gBAAgB,EAAE;gBAC3C,wBAAwB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;aAC1C;YACD,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;SAC5B;QAED,IAAI;;YAEF,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,EAAE,CAAQ,EAAE,IAAI,CAAC,CAAC;SAChE;QAED,IAAI;;YAEF,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,EAAE,CAAQ,EAAE,IAAI,CAAC,CAAC;SAC9D;QAEO,UAAU,CAAC,OAAoB;YACrC,OAAO,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;SAChD;KACF,CAAC;IACF,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,kBAAkB,EAAE,CAAC,CAAC;IAC9C,OAAO;QACL,IAAI,EAAE,CAAC,QAAgB,EAAE,SAAuB;YAC9C,CAAC,SAAS,IAAI,QAAQ;iBACnB,gBAAgB,CAAC,QAAQ,CAAC;;iBAE1B,OAAO,CAAC,CAAC,EAAW;gBACnB,MAAM,cAAc,GAAmC,wBAAwB,CAAC,GAAG,CACjF,EAAiB,CAClB,CAAC;gBACF,IAAI,cAAc,EAAE;oBAClB,cAAc,CAAC,IAAI,EAAE,CAAC;iBACvB;aACF,CAAC,CAAC;SACN;QACD,IAAI,EAAE,CAAC,QAAgB,EAAE,SAAuB;YAC9C,CAAC,SAAS,IAAI,QAAQ;iBACnB,gBAAgB,CAAC,QAAQ,CAAC;;iBAE1B,OAAO,CAAC,CAAC,EAAW;gBACnB,MAAM,cAAc,GAAmC,wBAAwB,CAAC,GAAG,CACjF,EAAiB,CAClB,CAAC;gBACF,IAAI,cAAc,EAAE;oBAClB,cAAc,CAAC,IAAI,EAAE,CAAC;iBACvB;aACF,CAAC,CAAC;SACN;KACF,CAAC;AACJ,CAAC;AAED,SAAS,KAAK,CAAC,EAAU;IACvB,OAAO,IAAI,OAAO,CAAC,CAAC,OAAmB;QACrC,UAAU,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;KACzB,CAAC,CAAC;AACL;;AC/HA;;;;ACAA;;;;;;"}
|
|
@@ -666,7 +666,7 @@ let VegaCheckbox = class VegaCheckbox {
|
|
|
666
666
|
this.z = z;
|
|
667
667
|
c.detach();
|
|
668
668
|
this.el = r.nativeElement;
|
|
669
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
669
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaUserChange', 'userChange', 'change']);
|
|
670
670
|
}
|
|
671
671
|
};
|
|
672
672
|
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 });
|
|
@@ -692,15 +692,15 @@ let VegaCheckboxGroup = class VegaCheckboxGroup {
|
|
|
692
692
|
this.z = z;
|
|
693
693
|
c.detach();
|
|
694
694
|
this.el = r.nativeElement;
|
|
695
|
-
proxyOutputs(this, this.el, ['vegaChange', 'change']);
|
|
695
|
+
proxyOutputs(this, this.el, ['vegaChange', 'vegaUserChange', 'userChange', 'change']);
|
|
696
696
|
}
|
|
697
697
|
};
|
|
698
698
|
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 });
|
|
699
|
-
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.ɵ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", optional: "optional", required: "required", validationRules: "validationRules", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
700
700
|
VegaCheckboxGroup = __decorate([
|
|
701
701
|
ProxyCmp({
|
|
702
702
|
defineCustomElementFn: undefined,
|
|
703
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
703
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'optional', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
704
704
|
})
|
|
705
705
|
], VegaCheckboxGroup);
|
|
706
706
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaCheckboxGroup, decorators: [{
|
|
@@ -709,7 +709,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
709
709
|
selector: 'vega-checkbox-group',
|
|
710
710
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
711
711
|
template: '<ng-content></ng-content>',
|
|
712
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
712
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'optional', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
713
713
|
}]
|
|
714
714
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
715
715
|
let VegaChip = class VegaChip {
|
|
@@ -772,11 +772,11 @@ let VegaColorPicker = class VegaColorPicker {
|
|
|
772
772
|
}
|
|
773
773
|
};
|
|
774
774
|
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 });
|
|
775
|
-
VegaColorPicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaColorPicker, selector: "vega-color-picker", inputs: { autoValidation: "autoValidation", colors: "colors", columns: "columns", 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.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaColorPicker, selector: "vega-color-picker", inputs: { autoValidation: "autoValidation", colors: "colors", columns: "columns", disabled: "disabled", hint: "hint", isInline: "isInline", isValid: "isValid", label: "label", optional: "optional", required: "required", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
776
776
|
VegaColorPicker = __decorate([
|
|
777
777
|
ProxyCmp({
|
|
778
778
|
defineCustomElementFn: undefined,
|
|
779
|
-
inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
779
|
+
inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'optional', 'required', 'validationRules', 'value']
|
|
780
780
|
})
|
|
781
781
|
], VegaColorPicker);
|
|
782
782
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaColorPicker, decorators: [{
|
|
@@ -785,7 +785,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
785
785
|
selector: 'vega-color-picker',
|
|
786
786
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
787
787
|
template: '<ng-content></ng-content>',
|
|
788
|
-
inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'required', 'validationRules', 'value']
|
|
788
|
+
inputs: ['autoValidation', 'colors', 'columns', 'disabled', 'hint', 'isInline', 'isValid', 'label', 'optional', 'required', 'validationRules', 'value']
|
|
789
789
|
}]
|
|
790
790
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
791
791
|
let VegaColorSwatch = class VegaColorSwatch {
|
|
@@ -847,11 +847,11 @@ let VegaComboBox = class VegaComboBox {
|
|
|
847
847
|
}
|
|
848
848
|
};
|
|
849
849
|
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 });
|
|
850
|
-
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", optional: "optional", 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 });
|
|
850
|
+
VegaComboBox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaComboBox, selector: "vega-combo-box", inputs: { autoValidation: "autoValidation", containerMaxHeight: "containerMaxHeight", disabled: "disabled", hint: "hint", isValid: "isValid", label: "label", optional: "optional", 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 });
|
|
851
851
|
VegaComboBox = __decorate([
|
|
852
852
|
ProxyCmp({
|
|
853
853
|
defineCustomElementFn: undefined,
|
|
854
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
854
|
+
inputs: ['autoValidation', 'containerMaxHeight', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
855
855
|
methods: ['close', 'open']
|
|
856
856
|
})
|
|
857
857
|
], VegaComboBox);
|
|
@@ -861,7 +861,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
861
861
|
selector: 'vega-combo-box',
|
|
862
862
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
863
863
|
template: '<ng-content></ng-content>',
|
|
864
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps']
|
|
864
|
+
inputs: ['autoValidation', 'containerMaxHeight', 'disabled', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'source', 'useDefaultFilter', 'validationRules', 'value', 'vegaDropdownProps']
|
|
865
865
|
}]
|
|
866
866
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
867
867
|
let VegaCounterBadge = class VegaCounterBadge {
|
|
@@ -897,11 +897,11 @@ let VegaDatePicker = class VegaDatePicker {
|
|
|
897
897
|
}
|
|
898
898
|
};
|
|
899
899
|
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 });
|
|
900
|
-
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 });
|
|
900
|
+
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", optional: "optional", 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 });
|
|
901
901
|
VegaDatePicker = __decorate([
|
|
902
902
|
ProxyCmp({
|
|
903
903
|
defineCustomElementFn: undefined,
|
|
904
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
|
|
904
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'optional', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value'],
|
|
905
905
|
methods: ['doClose', 'doOpen']
|
|
906
906
|
})
|
|
907
907
|
], VegaDatePicker);
|
|
@@ -911,7 +911,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
911
911
|
selector: 'vega-date-picker',
|
|
912
912
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
913
913
|
template: '<ng-content></ng-content>',
|
|
914
|
-
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
|
|
914
|
+
inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'format', 'isDateDisabled', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'optional', 'placeholder', 'readOnly', 'required', 'showClearIcon', 'showYearMonthDropdowns', 'size', 'timezone', 'validationRules', 'value']
|
|
915
915
|
}]
|
|
916
916
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
917
917
|
let VegaDatePickerCalendar = class VegaDatePickerCalendar {
|
|
@@ -1336,11 +1336,11 @@ let VegaImageUploader = class VegaImageUploader {
|
|
|
1336
1336
|
}
|
|
1337
1337
|
};
|
|
1338
1338
|
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 });
|
|
1339
|
-
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 });
|
|
1339
|
+
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", optional: "optional", 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 });
|
|
1340
1340
|
VegaImageUploader = __decorate([
|
|
1341
1341
|
ProxyCmp({
|
|
1342
1342
|
defineCustomElementFn: undefined,
|
|
1343
|
-
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
|
|
1343
|
+
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'optional', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width'],
|
|
1344
1344
|
methods: ['getContentURL']
|
|
1345
1345
|
})
|
|
1346
1346
|
], VegaImageUploader);
|
|
@@ -1350,7 +1350,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1350
1350
|
selector: 'vega-image-uploader',
|
|
1351
1351
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1352
1352
|
template: '<ng-content></ng-content>',
|
|
1353
|
-
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
|
|
1353
|
+
inputs: ['accept', 'actionSubTitle', 'actionTitle', 'autoValidation', 'disabled', 'height', 'hint', 'isValid', 'label', 'optional', 'required', 'showPreviewButton', 'showRemoveButton', 'showReplaceButton', 'status', 'validationRules', 'value', 'width']
|
|
1354
1354
|
}]
|
|
1355
1355
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1356
1356
|
let VegaInput = class VegaInput {
|
|
@@ -1388,11 +1388,11 @@ let VegaInputCreditCard = class VegaInputCreditCard {
|
|
|
1388
1388
|
}
|
|
1389
1389
|
};
|
|
1390
1390
|
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 });
|
|
1391
|
-
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 });
|
|
1391
|
+
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", optional: "optional", placeholder: "placeholder", required: "required", size: "size", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1392
1392
|
VegaInputCreditCard = __decorate([
|
|
1393
1393
|
ProxyCmp({
|
|
1394
1394
|
defineCustomElementFn: undefined,
|
|
1395
|
-
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1395
|
+
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1396
1396
|
})
|
|
1397
1397
|
], VegaInputCreditCard);
|
|
1398
1398
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputCreditCard, decorators: [{
|
|
@@ -1401,7 +1401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1401
1401
|
selector: 'vega-input-credit-card',
|
|
1402
1402
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1403
1403
|
template: '<ng-content></ng-content>',
|
|
1404
|
-
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1404
|
+
inputs: ['autoValidation', 'disabled', 'hideCardNumberOnBlur', 'hint', 'isValid', 'label', 'optional', 'placeholder', 'required', 'size', 'validationRules', 'value']
|
|
1405
1405
|
}]
|
|
1406
1406
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1407
1407
|
let VegaInputNumeric = class VegaInputNumeric {
|
|
@@ -1413,11 +1413,11 @@ let VegaInputNumeric = class VegaInputNumeric {
|
|
|
1413
1413
|
}
|
|
1414
1414
|
};
|
|
1415
1415
|
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 });
|
|
1416
|
-
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 });
|
|
1416
|
+
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", optional: "optional", 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 });
|
|
1417
1417
|
VegaInputNumeric = __decorate([
|
|
1418
1418
|
ProxyCmp({
|
|
1419
1419
|
defineCustomElementFn: undefined,
|
|
1420
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
|
1420
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'optional', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
|
1421
1421
|
})
|
|
1422
1422
|
], VegaInputNumeric);
|
|
1423
1423
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputNumeric, decorators: [{
|
|
@@ -1426,7 +1426,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1426
1426
|
selector: 'vega-input-numeric',
|
|
1427
1427
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1428
1428
|
template: '<ng-content></ng-content>',
|
|
1429
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
|
1429
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'integerOnly', 'isValid', 'label', 'majorIncrement', 'max', 'min', 'minorIncrement', 'optional', 'placeholder', 'prefixIcon', 'prefixText', 'required', 'showClearIcon', 'size', 'suffixText', 'thousandComma', 'validationRules', 'value']
|
|
1430
1430
|
}]
|
|
1431
1431
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1432
1432
|
let VegaInputPasscode = class VegaInputPasscode {
|
|
@@ -1488,11 +1488,11 @@ let VegaInputRange = class VegaInputRange {
|
|
|
1488
1488
|
}
|
|
1489
1489
|
};
|
|
1490
1490
|
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 });
|
|
1491
|
-
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 });
|
|
1491
|
+
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", optional: "optional", 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 });
|
|
1492
1492
|
VegaInputRange = __decorate([
|
|
1493
1493
|
ProxyCmp({
|
|
1494
1494
|
defineCustomElementFn: undefined,
|
|
1495
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
|
1495
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'optional', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
|
1496
1496
|
})
|
|
1497
1497
|
], VegaInputRange);
|
|
1498
1498
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaInputRange, decorators: [{
|
|
@@ -1501,7 +1501,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1501
1501
|
selector: 'vega-input-range',
|
|
1502
1502
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1503
1503
|
template: '<ng-content></ng-content>',
|
|
1504
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
|
1504
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'max', 'min', 'optional', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'stack', 'validationRules', 'value']
|
|
1505
1505
|
}]
|
|
1506
1506
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1507
1507
|
let VegaInputSelect = class VegaInputSelect {
|
|
@@ -1513,11 +1513,11 @@ let VegaInputSelect = class VegaInputSelect {
|
|
|
1513
1513
|
}
|
|
1514
1514
|
};
|
|
1515
1515
|
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 });
|
|
1516
|
-
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputSelect, selector: "vega-input-select", inputs: { autoValidation: "autoValidation", disabled: "disabled", dropdownItemTooltipProps: "dropdownItemTooltipProps", hint: "hint", isValid: "isValid", label: "label", labelSuffixButtonConfig: "labelSuffixButtonConfig", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", selectType: "selectType", selectedLabel: "selectedLabel", selectedLabelTooltipProps: "selectedLabelTooltipProps", 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 });
|
|
1516
|
+
VegaInputSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaInputSelect, selector: "vega-input-select", inputs: { autoValidation: "autoValidation", disabled: "disabled", dropdownItemTooltipProps: "dropdownItemTooltipProps", hint: "hint", isValid: "isValid", label: "label", labelSuffixButtonConfig: "labelSuffixButtonConfig", optional: "optional", placeholder: "placeholder", prefixIcon: "prefixIcon", required: "required", selectType: "selectType", selectedLabel: "selectedLabel", selectedLabelTooltipProps: "selectedLabelTooltipProps", 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 });
|
|
1517
1517
|
VegaInputSelect = __decorate([
|
|
1518
1518
|
ProxyCmp({
|
|
1519
1519
|
defineCustomElementFn: undefined,
|
|
1520
|
-
inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1520
|
+
inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'optional', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps'],
|
|
1521
1521
|
methods: ['doClose', 'doOpen', 'doChange']
|
|
1522
1522
|
})
|
|
1523
1523
|
], VegaInputSelect);
|
|
@@ -1527,7 +1527,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
1527
1527
|
selector: 'vega-input-select',
|
|
1528
1528
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1529
1529
|
template: '<ng-content></ng-content>',
|
|
1530
|
-
inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1530
|
+
inputs: ['autoValidation', 'disabled', 'dropdownItemTooltipProps', 'hint', 'isValid', 'label', 'labelSuffixButtonConfig', 'optional', 'placeholder', 'prefixIcon', 'required', 'selectType', 'selectedLabel', 'selectedLabelTooltipProps', 'size', 'source', 'sourceLazyLoadCallback', 'validationRules', 'value', 'vegaDropdownProps']
|
|
1531
1531
|
}]
|
|
1532
1532
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1533
1533
|
let VegaItemToggle = class VegaItemToggle {
|
|
@@ -2056,11 +2056,11 @@ let VegaRadioGroup = class VegaRadioGroup {
|
|
|
2056
2056
|
}
|
|
2057
2057
|
};
|
|
2058
2058
|
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 });
|
|
2059
|
-
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 });
|
|
2059
|
+
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", optional: "optional", required: "required", validationRules: "validationRules", value: "value", vegaFlexProp: "vegaFlexProp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2060
2060
|
VegaRadioGroup = __decorate([
|
|
2061
2061
|
ProxyCmp({
|
|
2062
2062
|
defineCustomElementFn: undefined,
|
|
2063
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
2063
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'optional', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
2064
2064
|
})
|
|
2065
2065
|
], VegaRadioGroup);
|
|
2066
2066
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaRadioGroup, decorators: [{
|
|
@@ -2069,7 +2069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2069
2069
|
selector: 'vega-radio-group',
|
|
2070
2070
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2071
2071
|
template: '<ng-content></ng-content>',
|
|
2072
|
-
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
2072
|
+
inputs: ['autoValidation', 'disabled', 'hint', 'isValid', 'label', 'name', 'optional', 'required', 'validationRules', 'value', 'vegaFlexProp']
|
|
2073
2073
|
}]
|
|
2074
2074
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2075
2075
|
let VegaRichTextContent = class VegaRichTextContent {
|
|
@@ -2380,11 +2380,11 @@ let VegaSelectionChipGroup = class VegaSelectionChipGroup {
|
|
|
2380
2380
|
}
|
|
2381
2381
|
};
|
|
2382
2382
|
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 });
|
|
2383
|
-
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 });
|
|
2383
|
+
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", optional: "optional", required: "required", selectType: "selectType", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2384
2384
|
VegaSelectionChipGroup = __decorate([
|
|
2385
2385
|
ProxyCmp({
|
|
2386
2386
|
defineCustomElementFn: undefined,
|
|
2387
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
|
|
2387
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'optional', 'required', 'selectType', 'validationRules', 'value']
|
|
2388
2388
|
})
|
|
2389
2389
|
], VegaSelectionChipGroup);
|
|
2390
2390
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionChipGroup, decorators: [{
|
|
@@ -2393,7 +2393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2393
2393
|
selector: 'vega-selection-chip-group',
|
|
2394
2394
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2395
2395
|
template: '<ng-content></ng-content>',
|
|
2396
|
-
inputs: ['disabled', 'hint', 'isValid', 'label', 'required', 'selectType', 'validationRules', 'value']
|
|
2396
|
+
inputs: ['disabled', 'hint', 'isValid', 'label', 'optional', 'required', 'selectType', 'validationRules', 'value']
|
|
2397
2397
|
}]
|
|
2398
2398
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2399
2399
|
let VegaSelectionTile = class VegaSelectionTile {
|
|
@@ -2430,11 +2430,11 @@ let VegaSelectionTileGroup = class VegaSelectionTileGroup {
|
|
|
2430
2430
|
}
|
|
2431
2431
|
};
|
|
2432
2432
|
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 });
|
|
2433
|
-
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 });
|
|
2433
|
+
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", optional: "optional", required: "required", selectType: "selectType", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2434
2434
|
VegaSelectionTileGroup = __decorate([
|
|
2435
2435
|
ProxyCmp({
|
|
2436
2436
|
defineCustomElementFn: undefined,
|
|
2437
|
-
inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
|
2437
|
+
inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'optional', 'required', 'selectType', 'validationRules', 'value']
|
|
2438
2438
|
})
|
|
2439
2439
|
], VegaSelectionTileGroup);
|
|
2440
2440
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaSelectionTileGroup, decorators: [{
|
|
@@ -2443,7 +2443,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2443
2443
|
selector: 'vega-selection-tile-group',
|
|
2444
2444
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2445
2445
|
template: '<ng-content></ng-content>',
|
|
2446
|
-
inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'required', 'selectType', 'validationRules', 'value']
|
|
2446
|
+
inputs: ['disabled', 'distributeEvenly', 'hint', 'isValid', 'label', 'layout', 'optional', 'required', 'selectType', 'validationRules', 'value']
|
|
2447
2447
|
}]
|
|
2448
2448
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2449
2449
|
let VegaSidenav = class VegaSidenav {
|
|
@@ -2530,11 +2530,11 @@ let VegaSignatureCapture = class VegaSignatureCapture {
|
|
|
2530
2530
|
}
|
|
2531
2531
|
};
|
|
2532
2532
|
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 });
|
|
2533
|
-
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 });
|
|
2533
|
+
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", optional: "optional", 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 });
|
|
2534
2534
|
VegaSignatureCapture = __decorate([
|
|
2535
2535
|
ProxyCmp({
|
|
2536
2536
|
defineCustomElementFn: undefined,
|
|
2537
|
-
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
|
|
2537
|
+
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
|
|
2538
2538
|
methods: ['clear']
|
|
2539
2539
|
})
|
|
2540
2540
|
], VegaSignatureCapture);
|
|
@@ -2544,7 +2544,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2544
2544
|
selector: 'vega-signature-capture',
|
|
2545
2545
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2546
2546
|
template: '<ng-content></ng-content>',
|
|
2547
|
-
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
|
|
2547
|
+
inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
|
|
2548
2548
|
}]
|
|
2549
2549
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2550
2550
|
let VegaSkeleton = class VegaSkeleton {
|
|
@@ -2935,11 +2935,11 @@ let VegaText = class VegaText {
|
|
|
2935
2935
|
}
|
|
2936
2936
|
};
|
|
2937
2937
|
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 });
|
|
2938
|
-
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 });
|
|
2938
|
+
VegaText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: VegaText, selector: "vega-text", inputs: { overflow: "overflow", text: "text", tooltip: "tooltip" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2939
2939
|
VegaText = __decorate([
|
|
2940
2940
|
ProxyCmp({
|
|
2941
2941
|
defineCustomElementFn: undefined,
|
|
2942
|
-
inputs: ['overflow', 'tooltip']
|
|
2942
|
+
inputs: ['overflow', 'text', 'tooltip']
|
|
2943
2943
|
})
|
|
2944
2944
|
], VegaText);
|
|
2945
2945
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaText, decorators: [{
|
|
@@ -2948,7 +2948,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2948
2948
|
selector: 'vega-text',
|
|
2949
2949
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2950
2950
|
template: '<ng-content></ng-content>',
|
|
2951
|
-
inputs: ['overflow', 'tooltip']
|
|
2951
|
+
inputs: ['overflow', 'text', 'tooltip']
|
|
2952
2952
|
}]
|
|
2953
2953
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2954
2954
|
let VegaTextarea = class VegaTextarea {
|
|
@@ -2985,11 +2985,11 @@ let VegaTimePicker = class VegaTimePicker {
|
|
|
2985
2985
|
}
|
|
2986
2986
|
};
|
|
2987
2987
|
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 });
|
|
2988
|
-
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", readOnly: "readOnly", required: "required", showClearIcon: "showClearIcon", size: "size", timeFormat: "timeFormat", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2988
|
+
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", optional: "optional", placeholder: "placeholder", positionRelativeTo: "positionRelativeTo", readOnly: "readOnly", required: "required", showClearIcon: "showClearIcon", size: "size", timeFormat: "timeFormat", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2989
2989
|
VegaTimePicker = __decorate([
|
|
2990
2990
|
ProxyCmp({
|
|
2991
2991
|
defineCustomElementFn: undefined,
|
|
2992
|
-
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
|
|
2992
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
|
|
2993
2993
|
})
|
|
2994
2994
|
], VegaTimePicker);
|
|
2995
2995
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaTimePicker, decorators: [{
|
|
@@ -2998,7 +2998,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
2998
2998
|
selector: 'vega-time-picker',
|
|
2999
2999
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3000
3000
|
template: '<ng-content></ng-content>',
|
|
3001
|
-
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
|
|
3001
|
+
inputs: ['autoValidation', 'disabled', 'increments', 'isValid', 'label', 'mode', 'optional', 'placeholder', 'positionRelativeTo', 'readOnly', 'required', 'showClearIcon', 'size', 'timeFormat', 'validationRules', 'value']
|
|
3002
3002
|
}]
|
|
3003
3003
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3004
3004
|
let VegaTimePickerDropdown = class VegaTimePickerDropdown {
|
|
@@ -3032,11 +3032,11 @@ let VegaToggleSwitch = class VegaToggleSwitch {
|
|
|
3032
3032
|
}
|
|
3033
3033
|
};
|
|
3034
3034
|
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 });
|
|
3035
|
-
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 });
|
|
3035
|
+
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", optional: "optional", required: "required", size: "size", validationRules: "validationRules", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3036
3036
|
VegaToggleSwitch = __decorate([
|
|
3037
3037
|
ProxyCmp({
|
|
3038
3038
|
defineCustomElementFn: undefined,
|
|
3039
|
-
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
|
|
3039
|
+
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'optional', 'required', 'size', 'validationRules', 'value']
|
|
3040
3040
|
})
|
|
3041
3041
|
], VegaToggleSwitch);
|
|
3042
3042
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: VegaToggleSwitch, decorators: [{
|
|
@@ -3045,7 +3045,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
3045
3045
|
selector: 'vega-toggle-switch',
|
|
3046
3046
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3047
3047
|
template: '<ng-content></ng-content>',
|
|
3048
|
-
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'required', 'size', 'validationRules', 'value']
|
|
3048
|
+
inputs: ['autoValidation', 'checked', 'disabled', 'isValid', 'label', 'optional', 'required', 'size', 'validationRules', 'value']
|
|
3049
3049
|
}]
|
|
3050
3050
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
3051
3051
|
let VegaTooltip = class VegaTooltip {
|