@heartlandone/vega-angular 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm2020/lib/components-module.mjs +2 -2
- package/dist/esm2020/lib/stencil-generated/components.mjs +54 -1
- package/dist/fesm2015/heartlandone-vega-angular.mjs +53 -2
- package/dist/fesm2015/heartlandone-vega-angular.mjs.map +1 -1
- package/dist/fesm2020/heartlandone-vega-angular.mjs +53 -2
- 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 +23 -1
- package/dist/package.json +2 -2
- package/package.json +2 -2
- package/src/lib/stencil-generated/components.ts +52 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"heartlandone-vega-angular.mjs","sources":["../../src/lib/stencil-generated/value-accessor.ts","../../src/lib/stencil-generated/text-value-accessor.ts","../../src/lib/stencil-generated/angular-component-lib/utils.ts","../../src/lib/stencil-generated/components.ts","../../src/lib/components-module.ts","../../src/public-api.ts","../../src/heartlandone-vega-angular.ts"],"sourcesContent":["import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Directive({ selector: 'vega-value-accessor' })\nexport class ValueAccessor implements ControlValueAccessor {\n private onChange: (value: any) => void = () => {\n /**/\n };\n private onTouched: () => void = () => {\n /**/\n };\n protected lastValue: any;\n\n constructor(protected el: ElementRef) {}\n\n writeValue(value: any) {\n this.el.nativeElement.value = this.lastValue = value == null ? '' : value;\n }\n\n handleChangeEvent(value: any) {\n if (value !== this.lastValue) {\n this.lastValue = value;\n this.onChange(value);\n }\n }\n\n @HostListener('focusout')\n _handleBlurEvent() {\n this.onTouched();\n }\n\n registerOnChange(fn: (value: any) => void) {\n this.onChange = fn;\n }\n registerOnTouched(fn: () => void) {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean) {\n this.el.nativeElement.disabled = isDisabled;\n }\n}\n","import { Directive, ElementRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport { ValueAccessor } from './value-accessor';\n\n@Directive({\n /* tslint:disable-next-line:directive-selector */\n selector: 'vega-input, vega-input-select',\n host: {\n '(vegaChange)': 'handleChangeEvent($event.target.value)'\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: TextValueAccessor,\n multi: true\n }\n ]\n})\nexport class TextValueAccessor extends ValueAccessor {\n constructor(el: ElementRef) {\n super(el);\n }\n}\n","/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach(item => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n // Link issues: https://gethired.atlassian.net/browse/GHUI-331\n // add a beforehand checking to make sure value is only set when component is loaded\n if (this.el.classList.contains('hydrated')) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n } else {\n this.el.componentOnReady().then(() => {\n this.z.runOutsideAngular(() => (this.el[item] = val))\n })\n }\n }\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach(methodName => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() =>\n this.el[methodName].apply(this.el, args)\n );\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));\n}\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (\n customElement !== undefined &&\n typeof customElements !== 'undefined' &&\n !customElements.get(tagName)\n ) {\n customElements.define(tagName, customElement);\n }\n}\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void, inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n","/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nimport { Components } from '@heartlandone/vega';\n\n\n\n\nexport declare interface VegaAccordion extends Components.VegaAccordion {\n /**\n * expand event, it return a boolean. \n */\n vegaExpand: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']\n})\n@Component({\n selector: 'vega-accordion',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']\n})\nexport class VegaAccordion {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaExpand']);\n }\n}\n\n\nexport declare interface VegaAppFooter extends Components.VegaAppFooter {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['privacyUrl', 'showDisclaimer', 'tosUrl']\n})\n@Component({\n selector: 'vega-app-footer',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['privacyUrl', 'showDisclaimer', 'tosUrl']\n})\nexport class VegaAppFooter {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaBadge extends Components.VegaBadge {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['bgColor', 'size', 'text', 'textColor']\n})\n@Component({\n selector: 'vega-badge',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['bgColor', 'size', 'text', 'textColor']\n})\nexport class VegaBadge {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaButton extends Components.VegaButton {\n /**\n * event emitter used for notifying consumers the button is clicked \n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'variant']\n})\n@Component({\n selector: 'vega-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'variant']\n})\nexport class VegaButton {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaButtonCircle extends Components.VegaButtonCircle {\n /**\n * event emitter used for notifying consumers the button is clicked \n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['danger', 'disabled', 'icon', 'label', 'size', 'variant']\n})\n@Component({\n selector: 'vega-button-circle',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['danger', 'disabled', 'icon', 'label', 'size', 'variant']\n})\nexport class VegaButtonCircle {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaButtonLink extends Components.VegaButtonLink {\n /**\n * event emitter used for notifying consumers the click event \n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size']\n})\n@Component({\n selector: 'vega-button-link',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size']\n})\nexport class VegaButtonLink {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaCard extends Components.VegaCard {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['backgroundColor', 'margin', 'padding', 'shadow']\n})\n@Component({\n selector: 'vega-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['backgroundColor', 'margin', 'padding', 'shadow']\n})\nexport class VegaCard {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaCarousel extends Components.VegaCarousel {\n /**\n * event emitter used for notifying consumers the page update event and the page is 1 default. \n */\n vegaPageUpdate: EventEmitter<CustomEvent<number>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['perPage', 'showSlider', 'spacing'],\n methods: ['nextPage', 'prevPage', 'goToPage']\n})\n@Component({\n selector: 'vega-carousel',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['perPage', 'showSlider', 'spacing']\n})\nexport class VegaCarousel {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaPageUpdate']);\n }\n}\n\n\nexport declare interface VegaCheckbox extends Components.VegaCheckbox {\n /**\n * The below method is e2e-test covered in @see {module :vega-checkbox-change}\n */\n vegaChange: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['checked', 'disabled', 'name', 'size', 'value']\n})\n@Component({\n selector: 'vega-checkbox',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['checked', 'disabled', 'name', 'size', 'value']\n})\nexport class VegaCheckbox {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange']);\n }\n}\n\n\nexport declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup {\n /**\n * event emitter used for notifying consumers any of checkbox value change event \n */\n vegaChange: EventEmitter<CustomEvent<string[]>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-checkbox-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']\n})\nexport class VegaCheckboxGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaDatePicker extends Components.VegaDatePicker {\n /**\n * event emitter used for notifying consumers the date picker value change event \n */\n vegaChange: EventEmitter<CustomEvent<string | string[]>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'formValidation', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value'],\n methods: ['valid', 'doClose', 'doOpen']\n})\n@Component({\n selector: 'vega-date-picker',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'formValidation', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value']\n})\nexport class VegaDatePicker {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaDropdown extends Components.VegaDropdown {\n /**\n * event emitter used for notifying consumers which the dropdown item is clicked \n */\n vegaClick: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the dropdown have show \n */\n vegaShow: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the dropdown have hide \n */\n vegaHide: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['caseSensitive', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'positionRelativeTo', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger'],\n methods: ['show', 'hide']\n})\n@Component({\n selector: 'vega-dropdown',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['caseSensitive', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'positionRelativeTo', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger']\n})\nexport class VegaDropdown {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick', 'vegaShow', 'vegaHide']);\n }\n}\n\n\nexport declare interface VegaFlex extends Components.VegaFlex {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['alignItem', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin']\n})\n@Component({\n selector: 'vega-flex',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['alignItem', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin']\n})\nexport class VegaFlex {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaFooter extends Components.VegaFooter {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['privacyUrl', 'tosUrl']\n})\n@Component({\n selector: 'vega-footer',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['privacyUrl', 'tosUrl']\n})\nexport class VegaFooter {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaForm extends Components.VegaForm {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['isTouched', 'isValid'],\n methods: ['valid', 'getValue', 'setValue', 'reset']\n})\n@Component({\n selector: 'vega-form',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['isTouched', 'isValid']\n})\nexport class VegaForm {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaGrid extends Components.VegaGrid {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['column', 'gap', 'row']\n})\n@Component({\n selector: 'vega-grid',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['column', 'gap', 'row']\n})\nexport class VegaGrid {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaHeader extends Components.VegaHeader {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined\n})\n@Component({\n selector: 'vega-header',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>'\n})\nexport class VegaHeader {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaIcon extends Components.VegaIcon {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'size']\n})\n@Component({\n selector: 'vega-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'size']\n})\nexport class VegaIcon {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaInput extends Components.VegaInput {\n /**\n * event emitter used for notifying consumers the value change event \n */\n vegaChange: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n /**\n * Event emitted when the inner input element is blurred \n */\n vegaBlur: EventEmitter<CustomEvent<undefined>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'formValidation', 'hint', 'inputId', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'formValidation', 'hint', 'inputId', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value']\n})\nexport class VegaInput {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur']);\n }\n}\n\n\nexport declare interface VegaInputSelect extends Components.VegaInputSelect {\n /**\n * event emitter used for notifying consumers the select value change event \n */\n vegaChange: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['autoValidation', 'disabled', 'formValidation', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'source', 'validationRules', 'value', 'vegaDropdownProps'],\n methods: ['doClose', 'doOpen', 'doChange', 'valid']\n})\n@Component({\n selector: 'vega-input-select',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['autoValidation', 'disabled', 'formValidation', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'source', 'validationRules', 'value', 'vegaDropdownProps']\n})\nexport class VegaInputSelect {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaItemToggle extends Components.VegaItemToggle {\n /**\n * event emitter used for notifying consumers the item is toggled \n */\n vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['isError', 'isToggled', 'itemToggleStatusMap']\n})\n@Component({\n selector: 'vega-item-toggle',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['isError', 'isToggled', 'itemToggleStatusMap']\n})\nexport class VegaItemToggle {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaToggleStatus']);\n }\n}\n\n\nexport declare interface VegaModal extends Components.VegaModal {\n /**\n * event emitter used for notifying consumers the modal is closed \n */\n vegaClose: EventEmitter<CustomEvent<any>>;\n /**\n * event emitter used for notifying consumers the modal is opened \n */\n vegaOpen: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'isVerticallyCenter', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],\n methods: ['modal']\n})\n@Component({\n selector: 'vega-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'isVerticallyCenter', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']\n})\nexport class VegaModal {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);\n }\n}\n\n\nexport declare interface VegaOption extends Components.VegaOption {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'label', 'subLabel']\n})\n@Component({\n selector: 'vega-option',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'label', 'subLabel']\n})\nexport class VegaOption {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaPagination extends Components.VegaPagination {\n /**\n * event emitter used for notifying consumers the vega-pagination change event \n */\n vegaChange: EventEmitter<CustomEvent<number>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['current', 'pageSize', 'total']\n})\n@Component({\n selector: 'vega-pagination',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['current', 'pageSize', 'total']\n})\nexport class VegaPagination {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange']);\n }\n}\n\n\nexport declare interface VegaProgressTracker extends Components.VegaProgressTracker {\n /**\n * event emitter used for notifying consumers the current update event. \n */\n vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['canClickStep', 'completedStepArray', 'direction', 'steps'],\n methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']\n})\n@Component({\n selector: 'vega-progress-tracker',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['canClickStep', 'completedStepArray', 'direction', 'steps']\n})\nexport class VegaProgressTracker {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);\n }\n}\n\n\nexport declare interface VegaRadio extends Components.VegaRadio {\n /**\n * event emitter used for notifying consumers the radio input is focused \n */\n vegaFocus: EventEmitter<CustomEvent<any>>;\n /**\n * event emitter used for notifying consumers the radio input is blurred \n */\n vegaBlur: EventEmitter<CustomEvent<any>>;\n /**\n * event emitter used for notifying consumers the check status of the radio input is changed \n */\n vegaChange: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['checked', 'disabled', 'name', 'value']\n})\n@Component({\n selector: 'vega-radio',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['checked', 'disabled', 'name', 'value']\n})\nexport class VegaRadio {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);\n }\n}\n\n\nexport declare interface VegaRadioGroup extends Components.VegaRadioGroup {\n /**\n * event emitter used for notifying consumers the checked radio button in group is changed \n */\n vegaChange: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-radio-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']\n})\nexport class VegaRadioGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaSidenav extends Components.VegaSidenav {\n /**\n * event emitter used for notifying consumers the nav menu close event\nThe below method is e2e-test covered in @see {module :vega-sidenav-toggle-and-vegaStateUpdate}\n */\n vegaStateUpdate: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],\n methods: ['toggle']\n})\n@Component({\n selector: 'vega-sidenav',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']\n})\nexport class VegaSidenav {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaStateUpdate']);\n }\n}\n\n\nexport declare interface VegaSidenavGroup extends Components.VegaSidenavGroup {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'label']\n})\n@Component({\n selector: 'vega-sidenav-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'label']\n})\nexport class VegaSidenavGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaSidenavLink extends Components.VegaSidenavLink {\n /**\n * The below method is e2e-test covered in @see {module :vega-sidenav-link-click-event}\n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']\n})\n@Component({\n selector: 'vega-sidenav-link',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']\n})\nexport class VegaSidenavLink {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaStepper extends Components.VegaStepper {\n /**\n * event emitter used for notifying consumers the stepper value is changed \n */\n vegaChange: EventEmitter<CustomEvent<number>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['disabled', 'formValidation', 'inputEditable', 'isValid', 'label', 'max', 'min', 'required', 'stepperId', 'value'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-stepper',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['disabled', 'formValidation', 'inputEditable', 'isValid', 'label', 'max', 'min', 'required', 'stepperId', 'value']\n})\nexport class VegaStepper {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaTabGroup extends Components.VegaTabGroup {\n /**\n * event emitter used for notifying consumers the tab is clicked \n */\n vegaClick: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['gap', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems']\n})\n@Component({\n selector: 'vega-tab-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['gap', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems']\n})\nexport class VegaTabGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\nimport type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@heartlandone/vega/dist/types/components/vega-table/vega-table';\nimport type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@heartlandone/vega/dist/types/components/vega-table/vega-table';\nexport declare interface VegaTable extends Components.VegaTable {\n /**\n * Event emitter used for notifying consumers the vega-table change event \n */\n vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;\n /**\n * Event emitter used for notifying consumers the vega-table row click event \n */\n vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowSelection', 'showHeader', 'striped'],\n methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection']\n})\n@Component({\n selector: 'vega-table',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowSelection', 'showHeader', 'striped']\n})\nexport class VegaTable {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick']);\n }\n}\n\n\nexport declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {\n /**\n * event emitter used for notifying consumers the toggle switch is changed \n */\n vegaChange: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['checked', 'disabled', 'label', 'size']\n})\n@Component({\n selector: 'vega-toggle-switch',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['checked', 'disabled', 'label', 'size']\n})\nexport class VegaToggleSwitch {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange']);\n }\n}\n\n\nexport declare interface VegaTooltip extends Components.VegaTooltip {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['content', 'placement', 'positionRelativeTo', 'size', 'trigger']\n})\n@Component({\n selector: 'vega-tooltip',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['content', 'placement', 'positionRelativeTo', 'size', 'trigger']\n})\nexport class VegaTooltip {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\nexport default [\n VegaAccordion,\n VegaAppFooter,\n VegaBadge,\n VegaButton,\n VegaButtonCircle,\n VegaButtonLink,\n VegaCard,\n VegaCarousel,\n VegaCheckbox,\n VegaCheckboxGroup,\n VegaDatePicker,\n VegaDropdown,\n VegaFlex,\n VegaFooter,\n VegaForm,\n VegaGrid,\n VegaHeader,\n VegaIcon,\n VegaInput,\n VegaInputSelect,\n VegaItemToggle,\n VegaModal,\n VegaOption,\n VegaPagination,\n VegaProgressTracker,\n VegaRadio,\n VegaRadioGroup,\n VegaSidenav,\n VegaSidenavGroup,\n VegaSidenavLink,\n VegaStepper,\n VegaTabGroup,\n VegaTable,\n VegaToggleSwitch,\n VegaTooltip,\n];","import { NgModule } from '@angular/core';\nimport { defineCustomElements } from '@heartlandone/vega/loader';\nimport VegaComponents from './stencil-generated/components';\nimport { TextValueAccessor } from './stencil-generated/text-value-accessor';\nimport { ValueAccessor } from './stencil-generated/value-accessor';\n\n@NgModule({\n declarations: [...VegaComponents, TextValueAccessor, ValueAccessor],\n imports: [],\n exports: [...VegaComponents, TextValueAccessor, ValueAccessor],\n})\nexport class VegaComponentModule {\n constructor() {\n defineCustomElements(window).then();\n }\n}\n","/*\n * Public API Surface of vega-angular\n */\nexport * from './lib/stencil-generated/text-value-accessor';\nexport * from './lib/stencil-generated/value-accessor';\nexport * from './lib/stencil-generated/components';\nexport * from './lib/components-module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"heartlandone-vega-angular.mjs","sources":["../../src/lib/stencil-generated/value-accessor.ts","../../src/lib/stencil-generated/text-value-accessor.ts","../../src/lib/stencil-generated/angular-component-lib/utils.ts","../../src/lib/stencil-generated/components.ts","../../src/lib/components-module.ts","../../src/public-api.ts","../../src/heartlandone-vega-angular.ts"],"sourcesContent":["import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Directive({ selector: 'vega-value-accessor' })\nexport class ValueAccessor implements ControlValueAccessor {\n private onChange: (value: any) => void = () => {\n /**/\n };\n private onTouched: () => void = () => {\n /**/\n };\n protected lastValue: any;\n\n constructor(protected el: ElementRef) {}\n\n writeValue(value: any) {\n this.el.nativeElement.value = this.lastValue = value == null ? '' : value;\n }\n\n handleChangeEvent(value: any) {\n if (value !== this.lastValue) {\n this.lastValue = value;\n this.onChange(value);\n }\n }\n\n @HostListener('focusout')\n _handleBlurEvent() {\n this.onTouched();\n }\n\n registerOnChange(fn: (value: any) => void) {\n this.onChange = fn;\n }\n registerOnTouched(fn: () => void) {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean) {\n this.el.nativeElement.disabled = isDisabled;\n }\n}\n","import { Directive, ElementRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport { ValueAccessor } from './value-accessor';\n\n@Directive({\n /* tslint:disable-next-line:directive-selector */\n selector: 'vega-input, vega-input-select',\n host: {\n '(vegaChange)': 'handleChangeEvent($event.target.value)'\n },\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: TextValueAccessor,\n multi: true\n }\n ]\n})\nexport class TextValueAccessor extends ValueAccessor {\n constructor(el: ElementRef) {\n super(el);\n }\n}\n","/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach(item => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n // Link issues: https://gethired.atlassian.net/browse/GHUI-331\n // add a beforehand checking to make sure value is only set when component is loaded\n if (this.el.classList.contains('hydrated')) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n } else {\n this.el.componentOnReady().then(() => {\n this.z.runOutsideAngular(() => (this.el[item] = val))\n })\n }\n }\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach(methodName => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() =>\n this.el[methodName].apply(this.el, args)\n );\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));\n}\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (\n customElement !== undefined &&\n typeof customElements !== 'undefined' &&\n !customElements.get(tagName)\n ) {\n customElements.define(tagName, customElement);\n }\n}\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void, inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n","/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nimport { Components } from '@heartlandone/vega';\n\n\n\n\nexport declare interface VegaAccordion extends Components.VegaAccordion {\n /**\n * expand event, it return a boolean. \n */\n vegaExpand: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']\n})\n@Component({\n selector: 'vega-accordion',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['accordionTitle', 'drawsBackground', 'expand', 'expandIconAlign', 'groupId', 'iconPosition', 'prefixIcon', 'showExpandIcon']\n})\nexport class VegaAccordion {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaExpand']);\n }\n}\n\n\nexport declare interface VegaAppFooter extends Components.VegaAppFooter {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['privacyUrl', 'showDisclaimer', 'tosUrl']\n})\n@Component({\n selector: 'vega-app-footer',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['privacyUrl', 'showDisclaimer', 'tosUrl']\n})\nexport class VegaAppFooter {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaBadge extends Components.VegaBadge {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['bgColor', 'size', 'text', 'textColor']\n})\n@Component({\n selector: 'vega-badge',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['bgColor', 'size', 'text', 'textColor']\n})\nexport class VegaBadge {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaBanner extends Components.VegaBanner {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['audienceEmail']\n})\n@Component({\n selector: 'vega-banner',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['audienceEmail']\n})\nexport class VegaBanner {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaButton extends Components.VegaButton {\n /**\n * event emitter used for notifying consumers the button is clicked \n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'variant']\n})\n@Component({\n selector: 'vega-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['block', 'danger', 'disabled', 'icon', 'iconAlign', 'label', 'size', 'variant']\n})\nexport class VegaButton {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaButtonCircle extends Components.VegaButtonCircle {\n /**\n * event emitter used for notifying consumers the button is clicked \n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['danger', 'disabled', 'icon', 'label', 'size', 'variant']\n})\n@Component({\n selector: 'vega-button-circle',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['danger', 'disabled', 'icon', 'label', 'size', 'variant']\n})\nexport class VegaButtonCircle {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaButtonLink extends Components.VegaButtonLink {\n /**\n * event emitter used for notifying consumers the click event \n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size']\n})\n@Component({\n selector: 'vega-button-link',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['danger', 'disabled', 'eventful', 'icon', 'iconAlign', 'iconType', 'label', 'link', 'size']\n})\nexport class VegaButtonLink {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaCard extends Components.VegaCard {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['backgroundColor', 'margin', 'padding', 'shadow']\n})\n@Component({\n selector: 'vega-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['backgroundColor', 'margin', 'padding', 'shadow']\n})\nexport class VegaCard {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaCarousel extends Components.VegaCarousel {\n /**\n * event emitter used for notifying consumers the page update event and the page is 1 default. \n */\n vegaPageUpdate: EventEmitter<CustomEvent<number>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['perPage', 'showSlider', 'spacing'],\n methods: ['nextPage', 'prevPage', 'goToPage']\n})\n@Component({\n selector: 'vega-carousel',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['perPage', 'showSlider', 'spacing']\n})\nexport class VegaCarousel {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaPageUpdate']);\n }\n}\n\n\nexport declare interface VegaCheckbox extends Components.VegaCheckbox {\n /**\n * The below method is e2e-test covered in @see {module :vega-checkbox-change}\n */\n vegaChange: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['checked', 'disabled', 'name', 'size', 'value']\n})\n@Component({\n selector: 'vega-checkbox',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['checked', 'disabled', 'name', 'size', 'value']\n})\nexport class VegaCheckbox {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange']);\n }\n}\n\n\nexport declare interface VegaCheckboxGroup extends Components.VegaCheckboxGroup {\n /**\n * event emitter used for notifying consumers any of checkbox value change event \n */\n vegaChange: EventEmitter<CustomEvent<string[]>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-checkbox-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']\n})\nexport class VegaCheckboxGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaDatePicker extends Components.VegaDatePicker {\n /**\n * event emitter used for notifying consumers the date picker value change event \n */\n vegaChange: EventEmitter<CustomEvent<string | string[]>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'formValidation', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value'],\n methods: ['valid', 'doClose', 'doOpen']\n})\n@Component({\n selector: 'vega-date-picker',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['allowRepick', 'autoValidation', 'clearButton', 'disabled', 'dropdownConfig', 'formValidation', 'format', 'isValid', 'label', 'maxDate', 'minDate', 'mode', 'placeholder', 'readOnly', 'required', 'size', 'validationRules', 'value']\n})\nexport class VegaDatePicker {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaDropdown extends Components.VegaDropdown {\n /**\n * event emitter used for notifying consumers which the dropdown item is clicked \n */\n vegaClick: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the dropdown have show \n */\n vegaShow: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the dropdown have hide \n */\n vegaHide: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['caseSensitive', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'positionRelativeTo', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger'],\n methods: ['show', 'hide']\n})\n@Component({\n selector: 'vega-dropdown',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['caseSensitive', 'matchContainerHeight', 'matchTargetWidth', 'maxHeight', 'positionRelativeTo', 'searchable', 'selectType', 'selectedSourceKey', 'size', 'source', 'translocation', 'trigger']\n})\nexport class VegaDropdown {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick', 'vegaShow', 'vegaHide']);\n }\n}\n\n\nexport declare interface VegaFlex extends Components.VegaFlex {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['alignItem', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin']\n})\n@Component({\n selector: 'vega-flex',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['alignItem', 'breakpoint', 'direction', 'gap', 'justifyContent', 'margin']\n})\nexport class VegaFlex {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaFooter extends Components.VegaFooter {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['privacyUrl', 'tosUrl']\n})\n@Component({\n selector: 'vega-footer',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['privacyUrl', 'tosUrl']\n})\nexport class VegaFooter {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaForm extends Components.VegaForm {\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['isTouched', 'isValid'],\n methods: ['valid', 'getValue', 'setValue', 'reset']\n})\n@Component({\n selector: 'vega-form',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['isTouched', 'isValid']\n})\nexport class VegaForm {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaValidate']);\n }\n}\n\n\nexport declare interface VegaGrid extends Components.VegaGrid {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['column', 'gap', 'row']\n})\n@Component({\n selector: 'vega-grid',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['column', 'gap', 'row']\n})\nexport class VegaGrid {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaHeader extends Components.VegaHeader {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined\n})\n@Component({\n selector: 'vega-header',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>'\n})\nexport class VegaHeader {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaIcon extends Components.VegaIcon {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'size']\n})\n@Component({\n selector: 'vega-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'size']\n})\nexport class VegaIcon {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaInput extends Components.VegaInput {\n /**\n * event emitter used for notifying consumers the value change event \n */\n vegaChange: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n /**\n * Event emitted when the inner input element is blurred \n */\n vegaBlur: EventEmitter<CustomEvent<undefined>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'formValidation', 'hint', 'inputId', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['autoValidation', 'autocomplete', 'disabled', 'email', 'formValidation', 'hint', 'inputId', 'isValid', 'label', 'maskConfig', 'max', 'maxLength', 'min', 'minLength', 'placeholder', 'prefixIcon', 'required', 'showClearIcon', 'size', 'type', 'validationRules', 'value']\n})\nexport class VegaInput {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate', 'vegaBlur']);\n }\n}\n\n\nexport declare interface VegaInputSelect extends Components.VegaInputSelect {\n /**\n * event emitter used for notifying consumers the select value change event \n */\n vegaChange: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['autoValidation', 'disabled', 'formValidation', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'source', 'validationRules', 'value', 'vegaDropdownProps'],\n methods: ['doClose', 'doOpen', 'doChange', 'valid']\n})\n@Component({\n selector: 'vega-input-select',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['autoValidation', 'disabled', 'formValidation', 'hint', 'isValid', 'label', 'placeholder', 'prefixIcon', 'required', 'source', 'validationRules', 'value', 'vegaDropdownProps']\n})\nexport class VegaInputSelect {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaItemToggle extends Components.VegaItemToggle {\n /**\n * event emitter used for notifying consumers the item is toggled \n */\n vegaToggleStatus: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['isError', 'isToggled', 'itemToggleStatusMap']\n})\n@Component({\n selector: 'vega-item-toggle',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['isError', 'isToggled', 'itemToggleStatusMap']\n})\nexport class VegaItemToggle {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaToggleStatus']);\n }\n}\n\n\nexport declare interface VegaModal extends Components.VegaModal {\n /**\n * event emitter used for notifying consumers the modal is closed \n */\n vegaClose: EventEmitter<CustomEvent<any>>;\n /**\n * event emitter used for notifying consumers the modal is opened \n */\n vegaOpen: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'isVerticallyCenter', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],\n methods: ['modal']\n})\n@Component({\n selector: 'vega-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'isVerticallyCenter', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']\n})\nexport class VegaModal {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClose', 'vegaOpen']);\n }\n}\n\n\nexport declare interface VegaOption extends Components.VegaOption {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'label', 'subLabel']\n})\n@Component({\n selector: 'vega-option',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'label', 'subLabel']\n})\nexport class VegaOption {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaPagination extends Components.VegaPagination {\n /**\n * event emitter used for notifying consumers the vega-pagination change event \n */\n vegaChange: EventEmitter<CustomEvent<number>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['current', 'pageSize', 'total']\n})\n@Component({\n selector: 'vega-pagination',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['current', 'pageSize', 'total']\n})\nexport class VegaPagination {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange']);\n }\n}\n\n\nexport declare interface VegaProgressTracker extends Components.VegaProgressTracker {\n /**\n * event emitter used for notifying consumers the current update event. \n */\n vegaCurrentStepUpdate: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['canClickStep', 'completedStepArray', 'direction', 'steps'],\n methods: ['nextStep', 'prevStep', 'setCurrent', 'getCurrent']\n})\n@Component({\n selector: 'vega-progress-tracker',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['canClickStep', 'completedStepArray', 'direction', 'steps']\n})\nexport class VegaProgressTracker {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaCurrentStepUpdate']);\n }\n}\n\n\nexport declare interface VegaRadio extends Components.VegaRadio {\n /**\n * event emitter used for notifying consumers the radio input is focused \n */\n vegaFocus: EventEmitter<CustomEvent<any>>;\n /**\n * event emitter used for notifying consumers the radio input is blurred \n */\n vegaBlur: EventEmitter<CustomEvent<any>>;\n /**\n * event emitter used for notifying consumers the check status of the radio input is changed \n */\n vegaChange: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['checked', 'disabled', 'name', 'value']\n})\n@Component({\n selector: 'vega-radio',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['checked', 'disabled', 'name', 'value']\n})\nexport class VegaRadio {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaFocus', 'vegaBlur', 'vegaChange']);\n }\n}\n\n\nexport declare interface VegaRadioGroup extends Components.VegaRadioGroup {\n /**\n * event emitter used for notifying consumers the checked radio button in group is changed \n */\n vegaChange: EventEmitter<CustomEvent<string>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-radio-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['disabled', 'formValidation', 'hint', 'isValid', 'label', 'name', 'required', 'value', 'vegaFlexProp']\n})\nexport class VegaRadioGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaSidenav extends Components.VegaSidenav {\n /**\n * event emitter used for notifying consumers the nav menu close event\nThe below method is e2e-test covered in @see {module :vega-sidenav-toggle-and-vegaStateUpdate}\n */\n vegaStateUpdate: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['footnote', 'headerConfig', 'openByDefault', 'source'],\n methods: ['toggle']\n})\n@Component({\n selector: 'vega-sidenav',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['footnote', 'headerConfig', 'openByDefault', 'source']\n})\nexport class VegaSidenav {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaStateUpdate']);\n }\n}\n\n\nexport declare interface VegaSidenavGroup extends Components.VegaSidenavGroup {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'label']\n})\n@Component({\n selector: 'vega-sidenav-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'label']\n})\nexport class VegaSidenavGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaSidenavLink extends Components.VegaSidenavLink {\n /**\n * The below method is e2e-test covered in @see {module :vega-sidenav-link-click-event}\n */\n vegaClick: EventEmitter<CustomEvent<any>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']\n})\n@Component({\n selector: 'vega-sidenav-link',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['icon', 'selected', 'showSideBarOnClickLink', 'url']\n})\nexport class VegaSidenavLink {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\n\nexport declare interface VegaStepper extends Components.VegaStepper {\n /**\n * event emitter used for notifying consumers the stepper value is changed \n */\n vegaChange: EventEmitter<CustomEvent<number>>;\n /**\n * event emitter used for notifying consumers the validation result change event \n */\n vegaValidate: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['disabled', 'formValidation', 'inputEditable', 'isValid', 'label', 'max', 'min', 'required', 'stepperId', 'value'],\n methods: ['valid']\n})\n@Component({\n selector: 'vega-stepper',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['disabled', 'formValidation', 'inputEditable', 'isValid', 'label', 'max', 'min', 'required', 'stepperId', 'value']\n})\nexport class VegaStepper {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaValidate']);\n }\n}\n\n\nexport declare interface VegaTabGroup extends Components.VegaTabGroup {\n /**\n * event emitter used for notifying consumers the tab is clicked \n */\n vegaClick: EventEmitter<CustomEvent<string>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['gap', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems']\n})\n@Component({\n selector: 'vega-tab-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['gap', 'positionRelativeTo', 'selectedTabDataTarget', 'showCloseButton', 'tabItems']\n})\nexport class VegaTabGroup {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaClick']);\n }\n}\n\nimport type { VegaTableChangePropType as IVegaTableVegaTableChangePropType } from '@heartlandone/vega/dist/types/components/vega-table/vega-table';\nimport type { VegaTableRowClickPropType as IVegaTableVegaTableRowClickPropType } from '@heartlandone/vega/dist/types/components/vega-table/vega-table';\nexport declare interface VegaTable extends Components.VegaTable {\n /**\n * Event emitter used for notifying consumers the vega-table change event \n */\n vegaChange: EventEmitter<CustomEvent<IVegaTableVegaTableChangePropType>>;\n /**\n * Event emitter used for notifying consumers the vega-table row click event \n */\n vegaRowClick: EventEmitter<CustomEvent<IVegaTableVegaTableRowClickPropType>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowSelection', 'showHeader', 'striped'],\n methods: ['openExpandRow', 'closeExpandRow', 'closeAllExpandRow', 'toggleExpandRow', 'clearSelection', 'getSelection', 'setSelection']\n})\n@Component({\n selector: 'vega-table',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['columnDivider', 'columns', 'dataSource', 'density', 'emptyDescription', 'paddingX', 'pagination', 'rowClickable', 'rowDivider', 'rowExpandable', 'rowSelection', 'showHeader', 'striped']\n})\nexport class VegaTable {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange', 'vegaRowClick']);\n }\n}\n\n\nexport declare interface VegaText extends Components.VegaText {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['content', 'displayRule']\n})\n@Component({\n selector: 'vega-text',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['content', 'displayRule']\n})\nexport class VegaText {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {\n /**\n * event emitter used for notifying consumers the toggle switch is changed \n */\n vegaChange: EventEmitter<CustomEvent<boolean>>;\n\n}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['checked', 'disabled', 'label', 'size']\n})\n@Component({\n selector: 'vega-toggle-switch',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['checked', 'disabled', 'label', 'size']\n})\nexport class VegaToggleSwitch {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['vegaChange']);\n }\n}\n\n\nexport declare interface VegaTooltip extends Components.VegaTooltip {}\n\n@ProxyCmp({\n defineCustomElementFn: undefined,\n inputs: ['content', 'placement', 'positionRelativeTo', 'size', 'trigger']\n})\n@Component({\n selector: 'vega-tooltip',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n inputs: ['content', 'placement', 'positionRelativeTo', 'size', 'trigger']\n})\nexport class VegaTooltip {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\nexport default [\n VegaAccordion,\n VegaAppFooter,\n VegaBadge,\n VegaBanner,\n VegaButton,\n VegaButtonCircle,\n VegaButtonLink,\n VegaCard,\n VegaCarousel,\n VegaCheckbox,\n VegaCheckboxGroup,\n VegaDatePicker,\n VegaDropdown,\n VegaFlex,\n VegaFooter,\n VegaForm,\n VegaGrid,\n VegaHeader,\n VegaIcon,\n VegaInput,\n VegaInputSelect,\n VegaItemToggle,\n VegaModal,\n VegaOption,\n VegaPagination,\n VegaProgressTracker,\n VegaRadio,\n VegaRadioGroup,\n VegaSidenav,\n VegaSidenavGroup,\n VegaSidenavLink,\n VegaStepper,\n VegaTabGroup,\n VegaTable,\n VegaText,\n VegaToggleSwitch,\n VegaTooltip,\n];","import { NgModule } from '@angular/core';\nimport { defineCustomElements } from '@heartlandone/vega/loader';\nimport VegaComponents from './stencil-generated/components';\nimport { TextValueAccessor } from './stencil-generated/text-value-accessor';\nimport { ValueAccessor } from './stencil-generated/value-accessor';\n\n@NgModule({\n declarations: [...VegaComponents, TextValueAccessor, ValueAccessor],\n imports: [],\n exports: [...VegaComponents, TextValueAccessor, ValueAccessor],\n})\nexport class VegaComponentModule {\n constructor() {\n defineCustomElements(window).then();\n }\n}\n","/*\n * Public API Surface of vega-angular\n */\nexport * from './lib/stencil-generated/text-value-accessor';\nexport * from './lib/stencil-generated/value-accessor';\nexport * from './lib/stencil-generated/components';\nexport * from './lib/components-module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,6 @@ import * as i3 from "./stencil-generated/value-accessor";
|
|
|
5
5
|
export declare class VegaComponentModule {
|
|
6
6
|
constructor();
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaComponentModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VegaComponentModule, [typeof i1.VegaAccordion, typeof i1.VegaAppFooter, typeof i1.VegaBadge, typeof i1.VegaButton, typeof i1.VegaButtonCircle, typeof i1.VegaButtonLink, typeof i1.VegaCard, typeof i1.VegaCarousel, typeof i1.VegaCheckbox, typeof i1.VegaCheckboxGroup, typeof i1.VegaDatePicker, typeof i1.VegaDropdown, typeof i1.VegaFlex, typeof i1.VegaFooter, typeof i1.VegaForm, typeof i1.VegaGrid, typeof i1.VegaHeader, typeof i1.VegaIcon, typeof i1.VegaInput, typeof i1.VegaInputSelect, typeof i1.VegaItemToggle, typeof i1.VegaModal, typeof i1.VegaOption, typeof i1.VegaPagination, typeof i1.VegaProgressTracker, typeof i1.VegaRadio, typeof i1.VegaRadioGroup, typeof i1.VegaSidenav, typeof i1.VegaSidenavGroup, typeof i1.VegaSidenavLink, typeof i1.VegaStepper, typeof i1.VegaTabGroup, typeof i1.VegaTable, typeof i1.VegaToggleSwitch, typeof i1.VegaTooltip, typeof i2.TextValueAccessor, typeof i3.ValueAccessor], never, [typeof i1.VegaAccordion, typeof i1.VegaAppFooter, typeof i1.VegaBadge, typeof i1.VegaButton, typeof i1.VegaButtonCircle, typeof i1.VegaButtonLink, typeof i1.VegaCard, typeof i1.VegaCarousel, typeof i1.VegaCheckbox, typeof i1.VegaCheckboxGroup, typeof i1.VegaDatePicker, typeof i1.VegaDropdown, typeof i1.VegaFlex, typeof i1.VegaFooter, typeof i1.VegaForm, typeof i1.VegaGrid, typeof i1.VegaHeader, typeof i1.VegaIcon, typeof i1.VegaInput, typeof i1.VegaInputSelect, typeof i1.VegaItemToggle, typeof i1.VegaModal, typeof i1.VegaOption, typeof i1.VegaPagination, typeof i1.VegaProgressTracker, typeof i1.VegaRadio, typeof i1.VegaRadioGroup, typeof i1.VegaSidenav, typeof i1.VegaSidenavGroup, typeof i1.VegaSidenavLink, typeof i1.VegaStepper, typeof i1.VegaTabGroup, typeof i1.VegaTable, typeof i1.VegaToggleSwitch, typeof i1.VegaTooltip, typeof i2.TextValueAccessor, typeof i3.ValueAccessor]>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VegaComponentModule, [typeof i1.VegaAccordion, typeof i1.VegaAppFooter, typeof i1.VegaBadge, typeof i1.VegaBanner, typeof i1.VegaButton, typeof i1.VegaButtonCircle, typeof i1.VegaButtonLink, typeof i1.VegaCard, typeof i1.VegaCarousel, typeof i1.VegaCheckbox, typeof i1.VegaCheckboxGroup, typeof i1.VegaDatePicker, typeof i1.VegaDropdown, typeof i1.VegaFlex, typeof i1.VegaFooter, typeof i1.VegaForm, typeof i1.VegaGrid, typeof i1.VegaHeader, typeof i1.VegaIcon, typeof i1.VegaInput, typeof i1.VegaInputSelect, typeof i1.VegaItemToggle, typeof i1.VegaModal, typeof i1.VegaOption, typeof i1.VegaPagination, typeof i1.VegaProgressTracker, typeof i1.VegaRadio, typeof i1.VegaRadioGroup, typeof i1.VegaSidenav, typeof i1.VegaSidenavGroup, typeof i1.VegaSidenavLink, typeof i1.VegaStepper, typeof i1.VegaTabGroup, typeof i1.VegaTable, typeof i1.VegaText, typeof i1.VegaToggleSwitch, typeof i1.VegaTooltip, typeof i2.TextValueAccessor, typeof i3.ValueAccessor], never, [typeof i1.VegaAccordion, typeof i1.VegaAppFooter, typeof i1.VegaBadge, typeof i1.VegaBanner, typeof i1.VegaButton, typeof i1.VegaButtonCircle, typeof i1.VegaButtonLink, typeof i1.VegaCard, typeof i1.VegaCarousel, typeof i1.VegaCheckbox, typeof i1.VegaCheckboxGroup, typeof i1.VegaDatePicker, typeof i1.VegaDropdown, typeof i1.VegaFlex, typeof i1.VegaFooter, typeof i1.VegaForm, typeof i1.VegaGrid, typeof i1.VegaHeader, typeof i1.VegaIcon, typeof i1.VegaInput, typeof i1.VegaInputSelect, typeof i1.VegaItemToggle, typeof i1.VegaModal, typeof i1.VegaOption, typeof i1.VegaPagination, typeof i1.VegaProgressTracker, typeof i1.VegaRadio, typeof i1.VegaRadioGroup, typeof i1.VegaSidenav, typeof i1.VegaSidenavGroup, typeof i1.VegaSidenavLink, typeof i1.VegaStepper, typeof i1.VegaTabGroup, typeof i1.VegaTable, typeof i1.VegaText, typeof i1.VegaToggleSwitch, typeof i1.VegaTooltip, typeof i2.TextValueAccessor, typeof i3.ValueAccessor]>;
|
|
9
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<VegaComponentModule>;
|
|
10
10
|
}
|
|
@@ -34,6 +34,15 @@ export declare class VegaBadge {
|
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBadge, never>;
|
|
35
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBadge, "vega-badge", never, { "bgColor": "bgColor"; "size": "size"; "text": "text"; "textColor": "textColor"; }, {}, never, ["*"]>;
|
|
36
36
|
}
|
|
37
|
+
export declare interface VegaBanner extends Components.VegaBanner {
|
|
38
|
+
}
|
|
39
|
+
export declare class VegaBanner {
|
|
40
|
+
protected z: NgZone;
|
|
41
|
+
protected el: HTMLElement;
|
|
42
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaBanner, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaBanner, "vega-banner", never, { "audienceEmail": "audienceEmail"; }, {}, never, ["*"]>;
|
|
45
|
+
}
|
|
37
46
|
export declare interface VegaButton extends Components.VegaButton {
|
|
38
47
|
/**
|
|
39
48
|
* event emitter used for notifying consumers the button is clicked
|
|
@@ -182,6 +191,10 @@ export declare class VegaFooter {
|
|
|
182
191
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaFooter, "vega-footer", never, { "privacyUrl": "privacyUrl"; "tosUrl": "tosUrl"; }, {}, never, ["*"]>;
|
|
183
192
|
}
|
|
184
193
|
export declare interface VegaForm extends Components.VegaForm {
|
|
194
|
+
/**
|
|
195
|
+
* event emitter used for notifying consumers the validation result change event
|
|
196
|
+
*/
|
|
197
|
+
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
185
198
|
}
|
|
186
199
|
export declare class VegaForm {
|
|
187
200
|
protected z: NgZone;
|
|
@@ -441,6 +454,15 @@ export declare class VegaTable {
|
|
|
441
454
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTable, never>;
|
|
442
455
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTable, "vega-table", never, { "columnDivider": "columnDivider"; "columns": "columns"; "dataSource": "dataSource"; "density": "density"; "emptyDescription": "emptyDescription"; "paddingX": "paddingX"; "pagination": "pagination"; "rowClickable": "rowClickable"; "rowDivider": "rowDivider"; "rowExpandable": "rowExpandable"; "rowSelection": "rowSelection"; "showHeader": "showHeader"; "striped": "striped"; }, {}, never, ["*"]>;
|
|
443
456
|
}
|
|
457
|
+
export declare interface VegaText extends Components.VegaText {
|
|
458
|
+
}
|
|
459
|
+
export declare class VegaText {
|
|
460
|
+
protected z: NgZone;
|
|
461
|
+
protected el: HTMLElement;
|
|
462
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
463
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VegaText, never>;
|
|
464
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VegaText, "vega-text", never, { "content": "content"; "displayRule": "displayRule"; }, {}, never, ["*"]>;
|
|
465
|
+
}
|
|
444
466
|
export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
445
467
|
/**
|
|
446
468
|
* event emitter used for notifying consumers the toggle switch is changed
|
|
@@ -463,5 +485,5 @@ export declare class VegaTooltip {
|
|
|
463
485
|
static ɵfac: i0.ɵɵFactoryDeclaration<VegaTooltip, never>;
|
|
464
486
|
static ɵcmp: i0.ɵɵComponentDeclaration<VegaTooltip, "vega-tooltip", never, { "content": "content"; "placement": "placement"; "positionRelativeTo": "positionRelativeTo"; "size": "size"; "trigger": "trigger"; }, {}, never, ["*"]>;
|
|
465
487
|
}
|
|
466
|
-
declare const _default: (typeof VegaAccordion | typeof VegaAppFooter | typeof VegaBadge | typeof VegaButton | typeof VegaButtonCircle | typeof VegaButtonLink | typeof VegaCard | typeof VegaCarousel | typeof VegaCheckbox | typeof VegaCheckboxGroup | typeof VegaDatePicker | typeof VegaDropdown | typeof VegaFlex | typeof VegaFooter | typeof VegaForm | typeof VegaGrid | typeof VegaHeader | typeof VegaIcon | typeof VegaInput | typeof VegaInputSelect | typeof VegaItemToggle | typeof VegaModal | typeof VegaOption | typeof VegaPagination | typeof VegaProgressTracker | typeof VegaRadio | typeof VegaRadioGroup | typeof VegaSidenav | typeof VegaSidenavGroup | typeof VegaSidenavLink | typeof VegaStepper | typeof VegaTabGroup | typeof VegaTable | typeof VegaToggleSwitch | typeof VegaTooltip)[];
|
|
488
|
+
declare const _default: (typeof VegaAccordion | typeof VegaAppFooter | typeof VegaBadge | typeof VegaBanner | typeof VegaButton | typeof VegaButtonCircle | typeof VegaButtonLink | typeof VegaCard | typeof VegaCarousel | typeof VegaCheckbox | typeof VegaCheckboxGroup | typeof VegaDatePicker | typeof VegaDropdown | typeof VegaFlex | typeof VegaFooter | typeof VegaForm | typeof VegaGrid | typeof VegaHeader | typeof VegaIcon | typeof VegaInput | typeof VegaInputSelect | typeof VegaItemToggle | typeof VegaModal | typeof VegaOption | typeof VegaPagination | typeof VegaProgressTracker | typeof VegaRadio | typeof VegaRadioGroup | typeof VegaSidenav | typeof VegaSidenavGroup | typeof VegaSidenavLink | typeof VegaStepper | typeof VegaTabGroup | typeof VegaTable | typeof VegaText | typeof VegaToggleSwitch | typeof VegaTooltip)[];
|
|
467
489
|
export default _default;
|
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-angular",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.9.0",
|
|
5
5
|
"description": "Angular specific wrapper for @heartlandone/vega",
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@angular/common": ">=12.0.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"url": "https://gitlab.com/heartland1/vega/tiger/vega-angular-workspace/projects/vega-angular"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@heartlandone/vega": "1.
|
|
21
|
+
"@heartlandone/vega": "1.9.0",
|
|
22
22
|
"tslib": "^2.3.0"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-angular",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.1",
|
|
5
5
|
"description": "Angular specific wrapper for @heartlandone/vega",
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@angular/common": ">=12.0.0",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"url": "https://gitlab.com/heartland1/vega/tiger/vega-angular-workspace/projects/vega-angular"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@heartlandone/vega": "1.9.
|
|
29
|
+
"@heartlandone/vega": "1.9.1",
|
|
30
30
|
"tslib": "^2.3.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
@@ -78,6 +78,27 @@ export class VegaBadge {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
|
|
81
|
+
export declare interface VegaBanner extends Components.VegaBanner {}
|
|
82
|
+
|
|
83
|
+
@ProxyCmp({
|
|
84
|
+
defineCustomElementFn: undefined,
|
|
85
|
+
inputs: ['audienceEmail']
|
|
86
|
+
})
|
|
87
|
+
@Component({
|
|
88
|
+
selector: 'vega-banner',
|
|
89
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
90
|
+
template: '<ng-content></ng-content>',
|
|
91
|
+
inputs: ['audienceEmail']
|
|
92
|
+
})
|
|
93
|
+
export class VegaBanner {
|
|
94
|
+
protected el: HTMLElement;
|
|
95
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
96
|
+
c.detach();
|
|
97
|
+
this.el = r.nativeElement;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
|
|
81
102
|
export declare interface VegaButton extends Components.VegaButton {
|
|
82
103
|
/**
|
|
83
104
|
* event emitter used for notifying consumers the button is clicked
|
|
@@ -385,7 +406,13 @@ export class VegaFooter {
|
|
|
385
406
|
}
|
|
386
407
|
|
|
387
408
|
|
|
388
|
-
export declare interface VegaForm extends Components.VegaForm {
|
|
409
|
+
export declare interface VegaForm extends Components.VegaForm {
|
|
410
|
+
/**
|
|
411
|
+
* event emitter used for notifying consumers the validation result change event
|
|
412
|
+
*/
|
|
413
|
+
vegaValidate: EventEmitter<CustomEvent<boolean>>;
|
|
414
|
+
|
|
415
|
+
}
|
|
389
416
|
|
|
390
417
|
@ProxyCmp({
|
|
391
418
|
defineCustomElementFn: undefined,
|
|
@@ -403,6 +430,7 @@ export class VegaForm {
|
|
|
403
430
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
404
431
|
c.detach();
|
|
405
432
|
this.el = r.nativeElement;
|
|
433
|
+
proxyOutputs(this, this.el, ['vegaValidate']);
|
|
406
434
|
}
|
|
407
435
|
}
|
|
408
436
|
|
|
@@ -920,6 +948,27 @@ export class VegaTable {
|
|
|
920
948
|
}
|
|
921
949
|
|
|
922
950
|
|
|
951
|
+
export declare interface VegaText extends Components.VegaText {}
|
|
952
|
+
|
|
953
|
+
@ProxyCmp({
|
|
954
|
+
defineCustomElementFn: undefined,
|
|
955
|
+
inputs: ['content', 'displayRule']
|
|
956
|
+
})
|
|
957
|
+
@Component({
|
|
958
|
+
selector: 'vega-text',
|
|
959
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
960
|
+
template: '<ng-content></ng-content>',
|
|
961
|
+
inputs: ['content', 'displayRule']
|
|
962
|
+
})
|
|
963
|
+
export class VegaText {
|
|
964
|
+
protected el: HTMLElement;
|
|
965
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
966
|
+
c.detach();
|
|
967
|
+
this.el = r.nativeElement;
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
|
|
923
972
|
export declare interface VegaToggleSwitch extends Components.VegaToggleSwitch {
|
|
924
973
|
/**
|
|
925
974
|
* event emitter used for notifying consumers the toggle switch is changed
|
|
@@ -972,6 +1021,7 @@ export default [
|
|
|
972
1021
|
VegaAccordion,
|
|
973
1022
|
VegaAppFooter,
|
|
974
1023
|
VegaBadge,
|
|
1024
|
+
VegaBanner,
|
|
975
1025
|
VegaButton,
|
|
976
1026
|
VegaButtonCircle,
|
|
977
1027
|
VegaButtonLink,
|
|
@@ -1002,6 +1052,7 @@ export default [
|
|
|
1002
1052
|
VegaStepper,
|
|
1003
1053
|
VegaTabGroup,
|
|
1004
1054
|
VegaTable,
|
|
1055
|
+
VegaText,
|
|
1005
1056
|
VegaToggleSwitch,
|
|
1006
1057
|
VegaTooltip,
|
|
1007
1058
|
];
|