@desynth/web-components-angular 24.7.9-alpha.8 → 25.4.1-alpha.10

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stencil-wrapper.mjs","sources":["../../lib/src/directives/angular-component-lib/utils.ts","../../lib/src/directives/proxies.ts","../../lib/src/stencil-wrapper.module.ts","../../lib/index.ts","../../lib/stencil-wrapper.ts"],"sourcesContent":["/* 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 this.z.runOutsideAngular(() => (this.el[item] = val));\n },\n /**\n * In the event that proxyInputs is called\n * multiple times re-defining these inputs\n * will cause an error to be thrown. As a result\n * we set configurable: true to indicate these\n * properties can be changed.\n */\n configurable: true,\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(() => this.el[methodName].apply(this.el, args));\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 (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {\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';\n\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nimport { Components } from '@desynth/web-components';\n\n\n@ProxyCmp({\n inputs: ['summaryText', 'type']\n})\n@Component({\n selector: 'desynth-accordion',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['summaryText', 'type'],\n})\nexport class DesynthAccordion {\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 DesynthAccordion extends Components.DesynthAccordion {}\n\n\n@ProxyCmp({\n inputs: ['alertId', 'alertText', 'alertType', 'duration', 'opened']\n})\n@Component({\n selector: 'desynth-alert',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['alertId', 'alertText', 'alertType', 'duration', 'opened'],\n})\nexport class DesynthAlert {\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, ['handleOpen', 'handleClose', 'handleBeforeClose']);\n }\n}\n\n\nimport type { BeforeCloseAlertEventDetail as IDesynthAlertBeforeCloseAlertEventDetail } from '@desynth/web-components';\n\nexport declare interface DesynthAlert extends Components.DesynthAlert {\n /**\n * Emmits if the modal has been opened\n */\n handleOpen: EventEmitter<CustomEvent<void>>;\n /**\n * Emmits if the modal has been closed\n */\n handleClose: EventEmitter<CustomEvent<void>>;\n /**\n * Emmits if the modal before has been closed\n */\n handleBeforeClose: EventEmitter<CustomEvent<IDesynthAlertBeforeCloseAlertEventDetail>>;\n}\n\n\n@ProxyCmp({\n inputs: ['breadcrumbs', 'route']\n})\n@Component({\n selector: 'desynth-breadcrumb',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['breadcrumbs', 'route'],\n})\nexport class DesynthBreadcrumb {\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, ['handleInput', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nexport declare interface DesynthBreadcrumb extends Components.DesynthBreadcrumb {\n /**\n * Emmits if input change, return HTML Input Event\n */\n handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['buttonId', 'buttonText', 'circular', 'disabled', 'type']\n})\n@Component({\n selector: 'desynth-button',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['buttonId', 'buttonText', 'circular', 'disabled', 'type'],\n})\nexport class DesynthButton {\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, ['handleClick', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nexport declare interface DesynthButton extends Components.DesynthButton {\n /**\n * Emmits if the input change, return value\n */\n handleClick: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['buttons']\n})\n@Component({\n selector: 'desynth-button-slider',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['buttons'],\n})\nexport class DesynthButtonSlider {\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 DesynthButtonSlider extends Components.DesynthButtonSlider {}\n\n\n@ProxyCmp({\n inputs: ['cardSize']\n})\n@Component({\n selector: 'desynth-card',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['cardSize'],\n})\nexport class DesynthCard {\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 DesynthCard extends Components.DesynthCard {}\n\n\n@ProxyCmp({\n inputs: ['checkboxId', 'checkboxLabel', 'errorMessage', 'isChecked']\n})\n@Component({\n selector: 'desynth-checkbox',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['checkboxId', 'checkboxLabel', 'errorMessage', 'isChecked'],\n})\nexport class DesynthCheckbox {\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, ['handleClick']);\n }\n}\n\n\nimport type { CheckedChangeEventValue as IDesynthCheckboxCheckedChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthCheckbox extends Components.DesynthCheckbox {\n /**\n * Emmits if the input change, return value\n */\n handleClick: EventEmitter<CustomEvent<IDesynthCheckboxCheckedChangeEventValue>>;\n}\n\n\n@ProxyCmp({\n inputs: ['dateSelected', 'firstDayOfWeek', 'inputName']\n})\n@Component({\n selector: 'desynth-date-picker',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['dateSelected', 'firstDayOfWeek', 'inputName'],\n})\nexport class DesynthDatePicker {\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, ['dateChanged']);\n }\n}\n\n\nimport type { InputChangeEventValue as IDesynthDatePickerInputChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthDatePicker extends Components.DesynthDatePicker {\n\n dateChanged: EventEmitter<CustomEvent<IDesynthDatePickerInputChangeEventValue>>;\n}\n\n\n@ProxyCmp({\n})\n@Component({\n selector: 'desynth-divider',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [],\n})\nexport class DesynthDivider {\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 DesynthDivider extends Components.DesynthDivider {}\n\n\n@ProxyCmp({\n inputs: ['items', 'open', 'type']\n})\n@Component({\n selector: 'desynth-drawer',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['items', 'open', 'type'],\n})\nexport class DesynthDrawer {\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, ['handleClick', 'handleFocus', 'handleClose']);\n }\n}\n\n\nexport declare interface DesynthDrawer extends Components.DesynthDrawer {\n /**\n * Emmits if the input change, return value\n */\n handleClick: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleClose: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n})\n@Component({\n selector: 'desynth-drop-file',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [],\n})\nexport class DesynthDropFile {\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, ['filesDropped']);\n }\n}\n\n\nexport declare interface DesynthDropFile extends Components.DesynthDropFile {\n\n filesDropped: EventEmitter<CustomEvent<File[]>>;\n}\n\n\n@ProxyCmp({\n inputs: ['inputs']\n})\n@Component({\n selector: 'desynth-form',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['inputs'],\n})\nexport class DesynthForm {\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, ['clickSubmit', 'clickClear', 'handleChange']);\n }\n}\n\n\nimport type { IFormInput as IDesynthFormIFormInput } from '@desynth/web-components';\n\nexport declare interface DesynthForm extends Components.DesynthForm {\n /**\n * Emmits if the input change, return value\n */\n clickSubmit: EventEmitter<CustomEvent<void>>;\n\n clickClear: EventEmitter<CustomEvent<void>>;\n\n handleChange: EventEmitter<CustomEvent<IDesynthFormIFormInput>>;\n}\n\n\n@ProxyCmp({\n inputs: ['columnSpacing', 'columns', 'container', 'direction', 'item', 'lg', 'md', 'rowSpacing', 'sm', 'spacing', 'wrap', 'xl', 'xs', 'zeroMinWidth']\n})\n@Component({\n selector: 'desynth-grid',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['columnSpacing', 'columns', 'container', 'direction', 'item', 'lg', 'md', 'rowSpacing', 'sm', 'spacing', 'wrap', 'xl', 'xs', 'zeroMinWidth'],\n})\nexport class DesynthGrid {\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 DesynthGrid extends Components.DesynthGrid {}\n\n\n@ProxyCmp({\n inputs: ['buttonId', 'items']\n})\n@Component({\n selector: 'desynth-header',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['buttonId', 'items'],\n})\nexport class DesynthHeader {\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, ['handleClick', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nexport declare interface DesynthHeader extends Components.DesynthHeader {\n /**\n * Emmits if the input change, return value\n */\n handleClick: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['items']\n})\n@Component({\n selector: 'desynth-list',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['items'],\n})\nexport class DesynthList {\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, ['itemClicked']);\n }\n}\n\n\nimport type { ListItem as IDesynthListListItem } from '@desynth/web-components';\n\nexport declare interface DesynthList extends Components.DesynthList {\n\n itemClicked: EventEmitter<CustomEvent<IDesynthListListItem>>;\n}\n\n\n@ProxyCmp({\n inputs: ['message']\n})\n@Component({\n selector: 'desynth-loader',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['message'],\n})\nexport class DesynthLoader {\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 DesynthLoader extends Components.DesynthLoader {}\n\n\n@ProxyCmp({\n inputs: ['duration', 'headTitle', 'opened', 'size']\n})\n@Component({\n selector: 'desynth-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['duration', 'headTitle', 'opened', 'size'],\n})\nexport class DesynthModal {\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, ['handleOpen', 'handleClose', 'handleBeforeClose']);\n }\n}\n\n\nimport type { BeforeCloseEventDetail as IDesynthModalBeforeCloseEventDetail } from '@desynth/web-components';\n\nexport declare interface DesynthModal extends Components.DesynthModal {\n /**\n * Emmits if the modal has been opened\n */\n handleOpen: EventEmitter<CustomEvent<void>>;\n /**\n * Emmits if the modal has been closed\n */\n handleClose: EventEmitter<CustomEvent<void>>;\n /**\n * Emmits if the modal before has been closed\n */\n handleBeforeClose: EventEmitter<CustomEvent<IDesynthModalBeforeCloseEventDetail>>;\n}\n\n\n@ProxyCmp({\n inputs: ['validators']\n})\n@Component({\n selector: 'desynth-multi-stepper',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['validators'],\n})\nexport class DesynthMultiStepper {\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, ['handleSubmit']);\n }\n}\n\n\nexport declare interface DesynthMultiStepper extends Components.DesynthMultiStepper {\n /**\n * Emmits if the modal has been opened\n */\n handleSubmit: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['paperSize']\n})\n@Component({\n selector: 'desynth-paper',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['paperSize'],\n})\nexport class DesynthPaper {\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 DesynthPaper extends Components.DesynthPaper {}\n\n\n@ProxyCmp({\n inputs: ['inputName', 'rating']\n})\n@Component({\n selector: 'desynth-rating',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['inputName', 'rating'],\n})\nexport class DesynthRating {\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, ['handleChange']);\n }\n}\n\n\nimport type { TextInputChangeEventValue as IDesynthRatingTextInputChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthRating extends Components.DesynthRating {\n /**\n * Emmits if the input change, return value\n */\n handleChange: EventEmitter<CustomEvent<IDesynthRatingTextInputChangeEventValue>>;\n}\n\n\n@ProxyCmp({\n inputs: ['content']\n})\n@Component({\n selector: 'desynth-renderer',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['content'],\n})\nexport class DesynthRenderer {\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 DesynthRenderer extends Components.DesynthRenderer {}\n\n\n@ProxyCmp({\n inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue', 'options', 'size']\n})\n@Component({\n selector: 'desynth-select',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue', 'options', 'size'],\n})\nexport class DesynthSelect {\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, ['handleChange', 'handleInput', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nimport type { InputChangeEventValue as IDesynthSelectInputChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthSelect extends Components.DesynthSelect {\n /**\n * Emmits if the input change, return value\n */\n handleChange: EventEmitter<CustomEvent<IDesynthSelectInputChangeEventValue>>;\n /**\n * Emmits if input change, return HTML Input Event\n */\n handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['active']\n})\n@Component({\n selector: 'desynth-step-stepper',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['active'],\n})\nexport class DesynthStepStepper {\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 DesynthStepStepper extends Components.DesynthStepStepper {}\n\n\n@ProxyCmp({\n inputs: ['errorMessage', 'inputId', 'inputLabel', 'isChecked']\n})\n@Component({\n selector: 'desynth-switch',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['errorMessage', 'inputId', 'inputLabel', 'isChecked'],\n})\nexport class DesynthSwitch {\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, ['handleClick', 'handleInput', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nimport type { SwitchChangeEventValue as IDesynthSwitchSwitchChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthSwitch extends Components.DesynthSwitch {\n /**\n * Emmits if the input change, return value\n */\n handleClick: EventEmitter<CustomEvent<IDesynthSwitchSwitchChangeEventValue>>;\n /**\n * Emmits if input change, return HTML Input Event\n */\n handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['_actions', '_column_keys', '_columns', '_source', 'count']\n})\n@Component({\n selector: 'desynth-table',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['_actions', '_column_keys', '_columns', '_source', 'count'],\n})\nexport class DesynthTable {\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, ['changeRowsPerPage', 'getDataNextPage', 'rowEvent']);\n }\n}\n\n\nexport declare interface DesynthTable extends Components.DesynthTable {\n\n changeRowsPerPage: EventEmitter<CustomEvent<number>>;\n\n getDataNextPage: EventEmitter<CustomEvent<null>>;\n\n rowEvent: EventEmitter<CustomEvent<any>>;\n}\n\n\n@ProxyCmp({\n inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue']\n})\n@Component({\n selector: 'desynth-text-area',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue'],\n})\nexport class DesynthTextArea {\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, ['handleChange', 'handleInput', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nimport type { InputChangeEventValue as IDesynthTextAreaInputChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthTextArea extends Components.DesynthTextArea {\n /**\n * Emmits if the input change, return value\n */\n handleChange: EventEmitter<CustomEvent<IDesynthTextAreaInputChangeEventValue>>;\n /**\n * Emmits if input change, return HTML Input Event\n */\n handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['errorMessage', 'inputId', 'inputName', 'inputType', 'inputValue']\n})\n@Component({\n selector: 'desynth-text-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['errorMessage', 'inputId', 'inputName', 'inputType', 'inputValue'],\n})\nexport class DesynthTextInput {\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, ['handleChange', 'handleInput', 'handleFocus', 'handleBlur']);\n }\n}\n\n\nimport type { TextInputChangeEventValue as IDesynthTextInputTextInputChangeEventValue } from '@desynth/web-components';\n\nexport declare interface DesynthTextInput extends Components.DesynthTextInput {\n /**\n * Emmits if the input change, return value\n */\n handleChange: EventEmitter<CustomEvent<IDesynthTextInputTextInputChangeEventValue>>;\n /**\n * Emmits if input change, return HTML Input Event\n */\n handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;\n /**\n * Emitted when the input is focus.\n */\n handleFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the input is blur.\n */\n handleBlur: EventEmitter<CustomEvent<void>>;\n}\n\n\n@ProxyCmp({\n inputs: ['direction', 'message']\n})\n@Component({\n selector: 'desynth-tooltip',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['direction', 'message'],\n})\nexport class DesynthTooltip {\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 DesynthTooltip extends Components.DesynthTooltip {}\n\n\n","import { NgModule } from \"@angular/core\";\n\nimport * as d from './directives/proxies';\n\nconst DIRECTIVES = [\n d.DesynthAccordion,\n d.DesynthAlert,\n d.DesynthBreadcrumb,\n d.DesynthButton,\n d.DesynthButtonSlider,\n d.DesynthCard,\n d.DesynthCheckbox,\n d.DesynthDatePicker,\n d.DesynthDivider,\n d.DesynthDrawer,\n d.DesynthDropFile,\n d.DesynthForm,\n d.DesynthGrid,\n d.DesynthHeader,\n d.DesynthList,\n d.DesynthLoader,\n d.DesynthModal,\n d.DesynthMultiStepper,\n d.DesynthPaper,\n d.DesynthRating,\n d.DesynthRenderer,\n d.DesynthSelect,\n d.DesynthStepStepper,\n d.DesynthSwitch,\n d.DesynthTable,\n d.DesynthTextArea,\n d.DesynthTextInput,\n d.DesynthTooltip\n];\n\n@NgModule({\n declarations: [\n ],\n exports: [\n ...DIRECTIVES\n ],\n imports: [\n ...DIRECTIVES\n ],\n})\nexport class StencilWrapperModule {}","/*\n * Public API Surface of stencil-wrapper\n */\n\nexport { StencilWrapperModule } from './src/stencil-wrapper.module';\nexport * from './src/directives/proxies';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["d.DesynthAccordion","d.DesynthAlert","d.DesynthBreadcrumb","d.DesynthButton","d.DesynthButtonSlider","d.DesynthCard","d.DesynthCheckbox","d.DesynthDatePicker","d.DesynthDivider","d.DesynthDrawer","d.DesynthDropFile","d.DesynthForm","d.DesynthGrid","d.DesynthHeader","d.DesynthList","d.DesynthLoader","d.DesynthModal","d.DesynthMultiStepper","d.DesynthPaper","d.DesynthRating","d.DesynthRenderer","d.DesynthSelect","d.DesynthStepStepper","d.DesynthSwitch","d.DesynthTable","d.DesynthTextArea","d.DesynthTextInput","d.DesynthTooltip","i1.DesynthAccordion","i1.DesynthAlert","i1.DesynthBreadcrumb","i1.DesynthButton","i1.DesynthButtonSlider","i1.DesynthCard","i1.DesynthCheckbox","i1.DesynthDatePicker","i1.DesynthDivider","i1.DesynthDrawer","i1.DesynthDropFile","i1.DesynthForm","i1.DesynthGrid","i1.DesynthHeader","i1.DesynthList","i1.DesynthLoader","i1.DesynthModal","i1.DesynthMultiStepper","i1.DesynthPaper","i1.DesynthRating","i1.DesynthRenderer","i1.DesynthSelect","i1.DesynthStepStepper","i1.DesynthSwitch","i1.DesynthTable","i1.DesynthTextArea","i1.DesynthTextInput","i1.DesynthTooltip"],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export { StencilWrapperModule } from './src/stencil-wrapper.module';
2
+ export * from './src/directives/proxies';
@@ -0,0 +1,9 @@
1
+ export declare const proxyInputs: (Cmp: any, inputs: string[]) => void;
2
+ export declare const proxyMethods: (Cmp: any, methods: string[]) => void;
3
+ export declare const proxyOutputs: (instance: any, el: any, events: string[]) => void;
4
+ export declare const defineCustomElement: (tagName: string, customElement: any) => void;
5
+ export declare function ProxyCmp(opts: {
6
+ defineCustomElementFn?: () => void;
7
+ inputs?: any;
8
+ methods?: any;
9
+ }): (cls: any) => any;
@@ -0,0 +1,426 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
+ import { Components } from '@desynth/web-components';
3
+ import type { BeforeCloseAlertEventDetail as IDesynthAlertBeforeCloseAlertEventDetail } from '@desynth/web-components';
4
+ import type { CheckedChangeEventValue as IDesynthCheckboxCheckedChangeEventValue } from '@desynth/web-components';
5
+ import type { InputChangeEventValue as IDesynthDatePickerInputChangeEventValue } from '@desynth/web-components';
6
+ import type { IFormInput as IDesynthFormIFormInput } from '@desynth/web-components';
7
+ import type { ListItem as IDesynthListListItem } from '@desynth/web-components';
8
+ import type { BeforeCloseEventDetail as IDesynthModalBeforeCloseEventDetail } from '@desynth/web-components';
9
+ import type { TextInputChangeEventValue as IDesynthRatingTextInputChangeEventValue } from '@desynth/web-components';
10
+ import type { InputChangeEventValue as IDesynthSelectInputChangeEventValue } from '@desynth/web-components';
11
+ import type { SwitchChangeEventValue as IDesynthSwitchSwitchChangeEventValue } from '@desynth/web-components';
12
+ import type { InputChangeEventValue as IDesynthTextAreaInputChangeEventValue } from '@desynth/web-components';
13
+ import type { TextInputChangeEventValue as IDesynthTextInputTextInputChangeEventValue } from '@desynth/web-components';
14
+ import * as i0 from "@angular/core";
15
+ export declare class DesynthAccordion {
16
+ protected z: NgZone;
17
+ protected el: HTMLElement;
18
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthAccordion, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthAccordion, "desynth-accordion", never, { "summaryText": { "alias": "summaryText"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
21
+ }
22
+ export declare interface DesynthAccordion extends Components.DesynthAccordion {
23
+ }
24
+ export declare class DesynthAlert {
25
+ protected z: NgZone;
26
+ protected el: HTMLElement;
27
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthAlert, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthAlert, "desynth-alert", never, { "alertId": { "alias": "alertId"; "required": false; }; "alertText": { "alias": "alertText"; "required": false; }; "alertType": { "alias": "alertType"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, {}, never, ["*"], true, never>;
30
+ }
31
+ export declare interface DesynthAlert extends Components.DesynthAlert {
32
+ /**
33
+ * Emmits if the modal has been opened
34
+ */
35
+ handleOpen: EventEmitter<CustomEvent<void>>;
36
+ /**
37
+ * Emmits if the modal has been closed
38
+ */
39
+ handleClose: EventEmitter<CustomEvent<void>>;
40
+ /**
41
+ * Emmits if the modal before has been closed
42
+ */
43
+ handleBeforeClose: EventEmitter<CustomEvent<IDesynthAlertBeforeCloseAlertEventDetail>>;
44
+ }
45
+ export declare class DesynthBreadcrumb {
46
+ protected z: NgZone;
47
+ protected el: HTMLElement;
48
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthBreadcrumb, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthBreadcrumb, "desynth-breadcrumb", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": false; }; "route": { "alias": "route"; "required": false; }; }, {}, never, ["*"], true, never>;
51
+ }
52
+ export declare interface DesynthBreadcrumb extends Components.DesynthBreadcrumb {
53
+ /**
54
+ * Emmits if input change, return HTML Input Event
55
+ */
56
+ handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;
57
+ /**
58
+ * Emitted when the input is focus.
59
+ */
60
+ handleFocus: EventEmitter<CustomEvent<void>>;
61
+ /**
62
+ * Emitted when the input is blur.
63
+ */
64
+ handleBlur: EventEmitter<CustomEvent<void>>;
65
+ }
66
+ export declare class DesynthButton {
67
+ protected z: NgZone;
68
+ protected el: HTMLElement;
69
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
70
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthButton, never>;
71
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthButton, "desynth-button", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "circular": { "alias": "circular"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
72
+ }
73
+ export declare interface DesynthButton extends Components.DesynthButton {
74
+ /**
75
+ * Emmits if the input change, return value
76
+ */
77
+ handleClick: EventEmitter<CustomEvent<void>>;
78
+ /**
79
+ * Emitted when the input is focus.
80
+ */
81
+ handleFocus: EventEmitter<CustomEvent<void>>;
82
+ /**
83
+ * Emitted when the input is blur.
84
+ */
85
+ handleBlur: EventEmitter<CustomEvent<void>>;
86
+ }
87
+ export declare class DesynthButtonSlider {
88
+ protected z: NgZone;
89
+ protected el: HTMLElement;
90
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
91
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthButtonSlider, never>;
92
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthButtonSlider, "desynth-button-slider", never, { "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, ["*"], true, never>;
93
+ }
94
+ export declare interface DesynthButtonSlider extends Components.DesynthButtonSlider {
95
+ }
96
+ export declare class DesynthCard {
97
+ protected z: NgZone;
98
+ protected el: HTMLElement;
99
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
100
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthCard, never>;
101
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthCard, "desynth-card", never, { "cardSize": { "alias": "cardSize"; "required": false; }; }, {}, never, ["*"], true, never>;
102
+ }
103
+ export declare interface DesynthCard extends Components.DesynthCard {
104
+ }
105
+ export declare class DesynthCheckbox {
106
+ protected z: NgZone;
107
+ protected el: HTMLElement;
108
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
109
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthCheckbox, never>;
110
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthCheckbox, "desynth-checkbox", never, { "checkboxId": { "alias": "checkboxId"; "required": false; }; "checkboxLabel": { "alias": "checkboxLabel"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; }, {}, never, ["*"], true, never>;
111
+ }
112
+ export declare interface DesynthCheckbox extends Components.DesynthCheckbox {
113
+ /**
114
+ * Emmits if the input change, return value
115
+ */
116
+ handleClick: EventEmitter<CustomEvent<IDesynthCheckboxCheckedChangeEventValue>>;
117
+ }
118
+ export declare class DesynthDatePicker {
119
+ protected z: NgZone;
120
+ protected el: HTMLElement;
121
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
122
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthDatePicker, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthDatePicker, "desynth-date-picker", never, { "dateSelected": { "alias": "dateSelected"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; }, {}, never, ["*"], true, never>;
124
+ }
125
+ export declare interface DesynthDatePicker extends Components.DesynthDatePicker {
126
+ dateChanged: EventEmitter<CustomEvent<IDesynthDatePickerInputChangeEventValue>>;
127
+ }
128
+ export declare class DesynthDivider {
129
+ protected z: NgZone;
130
+ protected el: HTMLElement;
131
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
132
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthDivider, never>;
133
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthDivider, "desynth-divider", never, {}, {}, never, ["*"], true, never>;
134
+ }
135
+ export declare interface DesynthDivider extends Components.DesynthDivider {
136
+ }
137
+ export declare class DesynthDrawer {
138
+ protected z: NgZone;
139
+ protected el: HTMLElement;
140
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
141
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthDrawer, never>;
142
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthDrawer, "desynth-drawer", never, { "items": { "alias": "items"; "required": false; }; "open": { "alias": "open"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
143
+ }
144
+ export declare interface DesynthDrawer extends Components.DesynthDrawer {
145
+ /**
146
+ * Emmits if the input change, return value
147
+ */
148
+ handleClick: EventEmitter<CustomEvent<void>>;
149
+ /**
150
+ * Emitted when the input is focus.
151
+ */
152
+ handleFocus: EventEmitter<CustomEvent<void>>;
153
+ /**
154
+ * Emitted when the input is blur.
155
+ */
156
+ handleClose: EventEmitter<CustomEvent<void>>;
157
+ }
158
+ export declare class DesynthDropFile {
159
+ protected z: NgZone;
160
+ protected el: HTMLElement;
161
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
162
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthDropFile, never>;
163
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthDropFile, "desynth-drop-file", never, {}, {}, never, ["*"], true, never>;
164
+ }
165
+ export declare interface DesynthDropFile extends Components.DesynthDropFile {
166
+ filesDropped: EventEmitter<CustomEvent<File[]>>;
167
+ }
168
+ export declare class DesynthForm {
169
+ protected z: NgZone;
170
+ protected el: HTMLElement;
171
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
172
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthForm, never>;
173
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthForm, "desynth-form", never, { "inputs": { "alias": "inputs"; "required": false; }; }, {}, never, ["*"], true, never>;
174
+ }
175
+ export declare interface DesynthForm extends Components.DesynthForm {
176
+ /**
177
+ * Emmits if the input change, return value
178
+ */
179
+ clickSubmit: EventEmitter<CustomEvent<void>>;
180
+ clickClear: EventEmitter<CustomEvent<void>>;
181
+ handleChange: EventEmitter<CustomEvent<IDesynthFormIFormInput>>;
182
+ }
183
+ export declare class DesynthGrid {
184
+ protected z: NgZone;
185
+ protected el: HTMLElement;
186
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
187
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthGrid, never>;
188
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthGrid, "desynth-grid", never, { "columnSpacing": { "alias": "columnSpacing"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "container": { "alias": "container"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "item": { "alias": "item"; "required": false; }; "lg": { "alias": "lg"; "required": false; }; "md": { "alias": "md"; "required": false; }; "rowSpacing": { "alias": "rowSpacing"; "required": false; }; "sm": { "alias": "sm"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; "xl": { "alias": "xl"; "required": false; }; "xs": { "alias": "xs"; "required": false; }; "zeroMinWidth": { "alias": "zeroMinWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
189
+ }
190
+ export declare interface DesynthGrid extends Components.DesynthGrid {
191
+ }
192
+ export declare class DesynthHeader {
193
+ protected z: NgZone;
194
+ protected el: HTMLElement;
195
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
196
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthHeader, never>;
197
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthHeader, "desynth-header", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, {}, never, ["*"], true, never>;
198
+ }
199
+ export declare interface DesynthHeader extends Components.DesynthHeader {
200
+ /**
201
+ * Emmits if the input change, return value
202
+ */
203
+ handleClick: EventEmitter<CustomEvent<void>>;
204
+ /**
205
+ * Emitted when the input is focus.
206
+ */
207
+ handleFocus: EventEmitter<CustomEvent<void>>;
208
+ /**
209
+ * Emitted when the input is blur.
210
+ */
211
+ handleBlur: EventEmitter<CustomEvent<void>>;
212
+ }
213
+ export declare class DesynthList {
214
+ protected z: NgZone;
215
+ protected el: HTMLElement;
216
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
217
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthList, never>;
218
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthList, "desynth-list", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, ["*"], true, never>;
219
+ }
220
+ export declare interface DesynthList extends Components.DesynthList {
221
+ itemClicked: EventEmitter<CustomEvent<IDesynthListListItem>>;
222
+ }
223
+ export declare class DesynthLoader {
224
+ protected z: NgZone;
225
+ protected el: HTMLElement;
226
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
227
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthLoader, never>;
228
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthLoader, "desynth-loader", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, ["*"], true, never>;
229
+ }
230
+ export declare interface DesynthLoader extends Components.DesynthLoader {
231
+ }
232
+ export declare class DesynthModal {
233
+ protected z: NgZone;
234
+ protected el: HTMLElement;
235
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
236
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthModal, never>;
237
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthModal, "desynth-modal", never, { "duration": { "alias": "duration"; "required": false; }; "headTitle": { "alias": "headTitle"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
238
+ }
239
+ export declare interface DesynthModal extends Components.DesynthModal {
240
+ /**
241
+ * Emmits if the modal has been opened
242
+ */
243
+ handleOpen: EventEmitter<CustomEvent<void>>;
244
+ /**
245
+ * Emmits if the modal has been closed
246
+ */
247
+ handleClose: EventEmitter<CustomEvent<void>>;
248
+ /**
249
+ * Emmits if the modal before has been closed
250
+ */
251
+ handleBeforeClose: EventEmitter<CustomEvent<IDesynthModalBeforeCloseEventDetail>>;
252
+ }
253
+ export declare class DesynthMultiStepper {
254
+ protected z: NgZone;
255
+ protected el: HTMLElement;
256
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
257
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthMultiStepper, never>;
258
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthMultiStepper, "desynth-multi-stepper", never, { "validators": { "alias": "validators"; "required": false; }; }, {}, never, ["*"], true, never>;
259
+ }
260
+ export declare interface DesynthMultiStepper extends Components.DesynthMultiStepper {
261
+ /**
262
+ * Emmits if the modal has been opened
263
+ */
264
+ handleSubmit: EventEmitter<CustomEvent<void>>;
265
+ }
266
+ export declare class DesynthPaper {
267
+ protected z: NgZone;
268
+ protected el: HTMLElement;
269
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
270
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthPaper, never>;
271
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthPaper, "desynth-paper", never, { "paperSize": { "alias": "paperSize"; "required": false; }; }, {}, never, ["*"], true, never>;
272
+ }
273
+ export declare interface DesynthPaper extends Components.DesynthPaper {
274
+ }
275
+ export declare class DesynthRating {
276
+ protected z: NgZone;
277
+ protected el: HTMLElement;
278
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
279
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthRating, never>;
280
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthRating, "desynth-rating", never, { "inputName": { "alias": "inputName"; "required": false; }; "rating": { "alias": "rating"; "required": false; }; }, {}, never, ["*"], true, never>;
281
+ }
282
+ export declare interface DesynthRating extends Components.DesynthRating {
283
+ /**
284
+ * Emmits if the input change, return value
285
+ */
286
+ handleChange: EventEmitter<CustomEvent<IDesynthRatingTextInputChangeEventValue>>;
287
+ }
288
+ export declare class DesynthRenderer {
289
+ protected z: NgZone;
290
+ protected el: HTMLElement;
291
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
292
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthRenderer, never>;
293
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthRenderer, "desynth-renderer", never, { "content": { "alias": "content"; "required": false; }; }, {}, never, ["*"], true, never>;
294
+ }
295
+ export declare interface DesynthRenderer extends Components.DesynthRenderer {
296
+ }
297
+ export declare class DesynthSelect {
298
+ protected z: NgZone;
299
+ protected el: HTMLElement;
300
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
301
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthSelect, never>;
302
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthSelect, "desynth-select", never, { "errorMessage": { "alias": "errorMessage"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
303
+ }
304
+ export declare interface DesynthSelect extends Components.DesynthSelect {
305
+ /**
306
+ * Emmits if the input change, return value
307
+ */
308
+ handleChange: EventEmitter<CustomEvent<IDesynthSelectInputChangeEventValue>>;
309
+ /**
310
+ * Emmits if input change, return HTML Input Event
311
+ */
312
+ handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;
313
+ /**
314
+ * Emitted when the input is focus.
315
+ */
316
+ handleFocus: EventEmitter<CustomEvent<void>>;
317
+ /**
318
+ * Emitted when the input is blur.
319
+ */
320
+ handleBlur: EventEmitter<CustomEvent<void>>;
321
+ }
322
+ export declare class DesynthStepStepper {
323
+ protected z: NgZone;
324
+ protected el: HTMLElement;
325
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
326
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthStepStepper, never>;
327
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthStepStepper, "desynth-step-stepper", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], true, never>;
328
+ }
329
+ export declare interface DesynthStepStepper extends Components.DesynthStepStepper {
330
+ }
331
+ export declare class DesynthSwitch {
332
+ protected z: NgZone;
333
+ protected el: HTMLElement;
334
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
335
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthSwitch, never>;
336
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthSwitch, "desynth-switch", never, { "errorMessage": { "alias": "errorMessage"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; }, {}, never, ["*"], true, never>;
337
+ }
338
+ export declare interface DesynthSwitch extends Components.DesynthSwitch {
339
+ /**
340
+ * Emmits if the input change, return value
341
+ */
342
+ handleClick: EventEmitter<CustomEvent<IDesynthSwitchSwitchChangeEventValue>>;
343
+ /**
344
+ * Emmits if input change, return HTML Input Event
345
+ */
346
+ handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;
347
+ /**
348
+ * Emitted when the input is focus.
349
+ */
350
+ handleFocus: EventEmitter<CustomEvent<void>>;
351
+ /**
352
+ * Emitted when the input is blur.
353
+ */
354
+ handleBlur: EventEmitter<CustomEvent<void>>;
355
+ }
356
+ export declare class DesynthTable {
357
+ protected z: NgZone;
358
+ protected el: HTMLElement;
359
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
360
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthTable, never>;
361
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthTable, "desynth-table", never, { "_actions": { "alias": "_actions"; "required": false; }; "_column_keys": { "alias": "_column_keys"; "required": false; }; "_columns": { "alias": "_columns"; "required": false; }; "_source": { "alias": "_source"; "required": false; }; "count": { "alias": "count"; "required": false; }; }, {}, never, ["*"], true, never>;
362
+ }
363
+ export declare interface DesynthTable extends Components.DesynthTable {
364
+ changeRowsPerPage: EventEmitter<CustomEvent<number>>;
365
+ getDataNextPage: EventEmitter<CustomEvent<null>>;
366
+ rowEvent: EventEmitter<CustomEvent<any>>;
367
+ }
368
+ export declare class DesynthTextArea {
369
+ protected z: NgZone;
370
+ protected el: HTMLElement;
371
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
372
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthTextArea, never>;
373
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthTextArea, "desynth-text-area", never, { "errorMessage": { "alias": "errorMessage"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; }, {}, never, ["*"], true, never>;
374
+ }
375
+ export declare interface DesynthTextArea extends Components.DesynthTextArea {
376
+ /**
377
+ * Emmits if the input change, return value
378
+ */
379
+ handleChange: EventEmitter<CustomEvent<IDesynthTextAreaInputChangeEventValue>>;
380
+ /**
381
+ * Emmits if input change, return HTML Input Event
382
+ */
383
+ handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;
384
+ /**
385
+ * Emitted when the input is focus.
386
+ */
387
+ handleFocus: EventEmitter<CustomEvent<void>>;
388
+ /**
389
+ * Emitted when the input is blur.
390
+ */
391
+ handleBlur: EventEmitter<CustomEvent<void>>;
392
+ }
393
+ export declare class DesynthTextInput {
394
+ protected z: NgZone;
395
+ protected el: HTMLElement;
396
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
397
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthTextInput, never>;
398
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthTextInput, "desynth-text-input", never, { "errorMessage": { "alias": "errorMessage"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; }, {}, never, ["*"], true, never>;
399
+ }
400
+ export declare interface DesynthTextInput extends Components.DesynthTextInput {
401
+ /**
402
+ * Emmits if the input change, return value
403
+ */
404
+ handleChange: EventEmitter<CustomEvent<IDesynthTextInputTextInputChangeEventValue>>;
405
+ /**
406
+ * Emmits if input change, return HTML Input Event
407
+ */
408
+ handleInput: EventEmitter<CustomEvent<HTMLInputElement>>;
409
+ /**
410
+ * Emitted when the input is focus.
411
+ */
412
+ handleFocus: EventEmitter<CustomEvent<void>>;
413
+ /**
414
+ * Emitted when the input is blur.
415
+ */
416
+ handleBlur: EventEmitter<CustomEvent<void>>;
417
+ }
418
+ export declare class DesynthTooltip {
419
+ protected z: NgZone;
420
+ protected el: HTMLElement;
421
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
422
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesynthTooltip, never>;
423
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesynthTooltip, "desynth-tooltip", never, { "direction": { "alias": "direction"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, ["*"], true, never>;
424
+ }
425
+ export declare interface DesynthTooltip extends Components.DesynthTooltip {
426
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./directives/proxies";
3
+ export declare class StencilWrapperModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<StencilWrapperModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StencilWrapperModule, never, [typeof i1.DesynthAccordion, typeof i1.DesynthAlert, typeof i1.DesynthBreadcrumb, typeof i1.DesynthButton, typeof i1.DesynthButtonSlider, typeof i1.DesynthCard, typeof i1.DesynthCheckbox, typeof i1.DesynthDatePicker, typeof i1.DesynthDivider, typeof i1.DesynthDrawer, typeof i1.DesynthDropFile, typeof i1.DesynthForm, typeof i1.DesynthGrid, typeof i1.DesynthHeader, typeof i1.DesynthList, typeof i1.DesynthLoader, typeof i1.DesynthModal, typeof i1.DesynthMultiStepper, typeof i1.DesynthPaper, typeof i1.DesynthRating, typeof i1.DesynthRenderer, typeof i1.DesynthSelect, typeof i1.DesynthStepStepper, typeof i1.DesynthSwitch, typeof i1.DesynthTable, typeof i1.DesynthTextArea, typeof i1.DesynthTextInput, typeof i1.DesynthTooltip], [typeof i1.DesynthAccordion, typeof i1.DesynthAlert, typeof i1.DesynthBreadcrumb, typeof i1.DesynthButton, typeof i1.DesynthButtonSlider, typeof i1.DesynthCard, typeof i1.DesynthCheckbox, typeof i1.DesynthDatePicker, typeof i1.DesynthDivider, typeof i1.DesynthDrawer, typeof i1.DesynthDropFile, typeof i1.DesynthForm, typeof i1.DesynthGrid, typeof i1.DesynthHeader, typeof i1.DesynthList, typeof i1.DesynthLoader, typeof i1.DesynthModal, typeof i1.DesynthMultiStepper, typeof i1.DesynthPaper, typeof i1.DesynthRating, typeof i1.DesynthRenderer, typeof i1.DesynthSelect, typeof i1.DesynthStepStepper, typeof i1.DesynthSwitch, typeof i1.DesynthTable, typeof i1.DesynthTextArea, typeof i1.DesynthTextInput, typeof i1.DesynthTooltip]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<StencilWrapperModule>;
7
+ }