-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart-webcomponents-angular-array.js.map
1 lines (1 loc) · 53.1 KB
/
smart-webcomponents-angular-array.js.map
1
{"version":3,"file":"smart-webcomponents-angular-array.js","sources":["ng://smart-webcomponents-angular/array/smart.element.ts","ng://smart-webcomponents-angular/array/smart.array.ts","ng://smart-webcomponents-angular/array/smart.array.module.ts","ng://smart-webcomponents-angular/array/smart-webcomponents-angular-array.ts"],"sourcesContent":["\ndeclare global {\n interface Window {\n Smart: any;\n}\n}\n\n\nimport { ElementRef, Input, Output, EventEmitter } from '@angular/core';\nimport { ElementRenderMode } from './../index';\n\nexport class BaseElement {\n constructor(ref: ElementRef) {\n const that = this;\n this.nativeElement = ref.nativeElement as any;\n\n that.nativeElement.onAttached = () => {\n that.onAttach.emit(that.nativeElement);\n }\n\n that.nativeElement.onDetached = () => {\n that.onDetach.emit(that.nativeElement);\n }\n }\n\n @Output() onCreate: EventEmitter<any> = new EventEmitter();\n @Output() onReady: EventEmitter<any> = new EventEmitter();\n @Output() onAttach: EventEmitter<any> = new EventEmitter();\n @Output() onDetach: EventEmitter<any> = new EventEmitter();\n\n public nativeElement: any;\n\n public addEventListener(type: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions = false): void {\n this.nativeElement.addEventListener(type, listener, options);\n\t}\n\n\tpublic removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions = false): void {\n\t\tthis.nativeElement.removeEventListener(type, listener, options);\n\t}\n\n\tpublic dispatchEvent(event: Event): boolean {\n\t\treturn this.nativeElement.dispatchEvent(event);\n\t}\n\n\tpublic blur(): void {\n\t\tthis.nativeElement.blur();\n\t}\n\n\tpublic click(): void {\n\t\tthis.nativeElement.click();\n\t}\n\n\tpublic focus(options?: FocusOptions): void {\n\t\tthis.nativeElement.focus(options);\n\t}\n\n/** @description Sets or gets the language. Used in conjunction with the property messages. */\n\t@Input()\n\tget locale(): string {\n\t\treturn this.nativeElement ? this.nativeElement.locale : undefined;\n\t}\n\tset locale(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.locale = value : undefined;\n\t}\n\n\t/** @description Callback used to customize the format of the messages that are returned from the Localization Module. */\n\t@Input()\n\tget localizeFormatFunction(): any {\n\t\treturn this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;\n\t}\n\tset localizeFormatFunction(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;\n\t}\n\n\t/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */\n\t@Input()\n\tget messages(): any {\n\t\treturn this.nativeElement ? this.nativeElement.messages : undefined;\n\t}\n\tset messages(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.messages = value : undefined;\n\t}\n\n\t/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */\n\t@Input()\n\tget rightToLeft(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.rightToLeft : undefined;\n\t}\n\tset rightToLeft(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.rightToLeft = value : undefined;\n\t}\n\n\t/** @description Determines the theme. Theme defines the look of the element */\n\t@Input()\n\tget theme(): string {\n\t\treturn this.nativeElement ? this.nativeElement.theme : undefined;\n\t}\n\tset theme(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.theme = value : undefined;\n\t}\n}\n\nexport const Smart: any = window.Smart;\n\n","import { Array } from './../index';\nimport { Animation, ArrayArrayIndexingMode, ArrayType, ElementRenderMode} from './../index';\nimport { Component, Directive, AfterViewInit, ElementRef, Input, OnInit, OnChanges, OnDestroy, SimpleChanges, Output, EventEmitter } from '@angular/core';\nimport { BaseElement, Smart } from './smart.element';\nexport { Animation, ArrayArrayIndexingMode, ArrayType, ElementRenderMode} from './../index';\nexport { Smart } from './smart.element';\nexport { Array } from './../index';\n\n\n@Directive({\n\texportAs: 'smart-array',\tselector: 'smart-array, [smart-array]'\n})\n\nexport class ArrayComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {\n\tconstructor(ref: ElementRef<Array>) {\n\t\tsuper(ref);\n\t\tthis.nativeElement = ref.nativeElement as Array;\n\t}\n\n\tprivate eventHandlers: any[] = [];\n\n\tpublic nativeElement: Array;\n\t/** @description Creates the component on demand.\n\t * @param properties An optional object of properties, which will be added to the template binded ones.\n\t */\n\tpublic createComponent(properties = {}): any {\n \tthis.nativeElement = <Array>document.createElement('smart-array');\n\t\tfor (let propertyName in properties) { \n \t\t\tthis.nativeElement[propertyName] = properties[propertyName];\n\t\t}\n\t\treturn this.nativeElement;\n\t}\n\t/** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */\n\t@Input()\n\tget animation(): Animation | string {\n\t\treturn this.nativeElement ? this.nativeElement.animation : undefined;\n\t}\n\tset animation(value: Animation | string) {\n\t\tthis.nativeElement ? this.nativeElement.animation = value : undefined;\n\t}\n\n\t/** @description Sets or gets the indexing mode of the Array. */\n\t@Input()\n\tget arrayIndexingMode(): ArrayArrayIndexingMode | string {\n\t\treturn this.nativeElement ? this.nativeElement.arrayIndexingMode : undefined;\n\t}\n\tset arrayIndexingMode(value: ArrayArrayIndexingMode | string) {\n\t\tthis.nativeElement ? this.nativeElement.arrayIndexingMode = value : undefined;\n\t}\n\n\t/** @description A callback function that is called when the width, height or disabled properties of an inner element need to be updated. Applicable only when type is 'custom'. */\n\t@Input()\n\tget changeProperty(): any {\n\t\treturn this.nativeElement ? this.nativeElement.changeProperty : undefined;\n\t}\n\tset changeProperty(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.changeProperty = value : undefined;\n\t}\n\n\t/** @description Sets or gets the number of visible columns in the Array. */\n\t@Input()\n\tget columns(): number {\n\t\treturn this.nativeElement ? this.nativeElement.columns : undefined;\n\t}\n\tset columns(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.columns = value : undefined;\n\t}\n\n\t/** @description Sets or gets the default value of inner elements when type is 'custom'. */\n\t@Input()\n\tget customWidgetDefaultValue(): any {\n\t\treturn this.nativeElement ? this.nativeElement.customWidgetDefaultValue : undefined;\n\t}\n\tset customWidgetDefaultValue(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.customWidgetDefaultValue = value : undefined;\n\t}\n\n\t/** @description Sets or gets the dimensions of the Array. */\n\t@Input()\n\tget dimensions(): number {\n\t\treturn this.nativeElement ? this.nativeElement.dimensions : undefined;\n\t}\n\tset dimensions(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.dimensions = value : undefined;\n\t}\n\n\t/** @description Sets or gets disabled state of the Array. */\n\t@Input()\n\tget disabled(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.disabled : undefined;\n\t}\n\tset disabled(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.disabled = value : undefined;\n\t}\n\n\t/** @description Sets or gets the height of Array elements (row height). */\n\t@Input()\n\tget elementHeight(): number {\n\t\treturn this.nativeElement ? this.nativeElement.elementHeight : undefined;\n\t}\n\tset elementHeight(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.elementHeight = value : undefined;\n\t}\n\n\t/** @description A callback function that can be used for applying settings to element widgets. When type is 'custom', widgets have to be initialized in this callback function. */\n\t@Input()\n\tget elementTemplate(): any {\n\t\treturn this.nativeElement ? this.nativeElement.elementTemplate : undefined;\n\t}\n\tset elementTemplate(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.elementTemplate = value : undefined;\n\t}\n\n\t/** @description Sets or gets the width of Array elements (column width). */\n\t@Input()\n\tget elementWidth(): number {\n\t\treturn this.nativeElement ? this.nativeElement.elementWidth : undefined;\n\t}\n\tset elementWidth(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.elementWidth = value : undefined;\n\t}\n\n\t/** @description A callback function that can be used for getting the value of element widgets. */\n\t@Input()\n\tget getElementValue(): any {\n\t\treturn this.nativeElement ? this.nativeElement.getElementValue : undefined;\n\t}\n\tset getElementValue(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.getElementValue = value : undefined;\n\t}\n\n\t/** @description Sets or gets the height of indexers. */\n\t@Input()\n\tget indexerHeight(): number {\n\t\treturn this.nativeElement ? this.nativeElement.indexerHeight : undefined;\n\t}\n\tset indexerHeight(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.indexerHeight = value : undefined;\n\t}\n\n\t/** @description Sets or gets the width of indexers. */\n\t@Input()\n\tget indexerWidth(): number {\n\t\treturn this.nativeElement ? this.nativeElement.indexerWidth : undefined;\n\t}\n\tset indexerWidth(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.indexerWidth = value : undefined;\n\t}\n\n\t/** @description Sets or gets the language. Used in conjunction with the property messages. */\n\t@Input()\n\tget locale(): string {\n\t\treturn this.nativeElement ? this.nativeElement.locale : undefined;\n\t}\n\tset locale(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.locale = value : undefined;\n\t}\n\n\t/** @description Callback, related to localization module. */\n\t@Input()\n\tget localizeFormatFunction(): any {\n\t\treturn this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;\n\t}\n\tset localizeFormatFunction(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;\n\t}\n\n\t/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */\n\t@Input()\n\tget messages(): any {\n\t\treturn this.nativeElement ? this.nativeElement.messages : undefined;\n\t}\n\tset messages(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.messages = value : undefined;\n\t}\n\n\t/** @description If the element is readonly, users cannot interact with it. */\n\t@Input()\n\tget readonly(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.readonly : undefined;\n\t}\n\tset readonly(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.readonly = value : undefined;\n\t}\n\n\t/** @description Sets or gets the number of visible rows in the Array. */\n\t@Input()\n\tget rows(): number {\n\t\treturn this.nativeElement ? this.nativeElement.rows : undefined;\n\t}\n\tset rows(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.rows = value : undefined;\n\t}\n\n\t/** @description A callback function that can be used for setting the value of element widgets. */\n\t@Input()\n\tget setElementValue(): any {\n\t\treturn this.nativeElement ? this.nativeElement.setElementValue : undefined;\n\t}\n\tset setElementValue(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.setElementValue = value : undefined;\n\t}\n\n\t/** @description Sets or gets whether to display the horizontal scrollbar. */\n\t@Input()\n\tget showHorizontalScrollbar(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.showHorizontalScrollbar : undefined;\n\t}\n\tset showHorizontalScrollbar(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.showHorizontalScrollbar = value : undefined;\n\t}\n\n\t/** @description Sets or gets whether to display the array indexers. */\n\t@Input()\n\tget showIndexDisplay(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.showIndexDisplay : undefined;\n\t}\n\tset showIndexDisplay(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.showIndexDisplay = value : undefined;\n\t}\n\n\t/** @description Sets or gets whether to highlight selected elements. */\n\t@Input()\n\tget showSelection(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.showSelection : undefined;\n\t}\n\tset showSelection(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.showSelection = value : undefined;\n\t}\n\n\t/** @description Sets or gets whether to display the vertical scrollbar. */\n\t@Input()\n\tget showVerticalScrollbar(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.showVerticalScrollbar : undefined;\n\t}\n\tset showVerticalScrollbar(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.showVerticalScrollbar = value : undefined;\n\t}\n\n\t/** @description Determines the theme. Theme defines the look of the element */\n\t@Input()\n\tget theme(): string {\n\t\treturn this.nativeElement ? this.nativeElement.theme : undefined;\n\t}\n\tset theme(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.theme = value : undefined;\n\t}\n\n\t/** @description Sets or gets the data type and element widgets to be used in the Array. */\n\t@Input()\n\tget type(): ArrayType | string {\n\t\treturn this.nativeElement ? this.nativeElement.type : undefined;\n\t}\n\tset type(value: ArrayType | string) {\n\t\tthis.nativeElement ? this.nativeElement.type = value : undefined;\n\t}\n\n\t/** @description If is set to true, the element cannot be focused. */\n\t@Input()\n\tget unfocusable(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.unfocusable : undefined;\n\t}\n\tset unfocusable(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.unfocusable = value : undefined;\n\t}\n\n\t/** @description Sets or gets the value of the Array. */\n\t@Input()\n\tget value(): any {\n\t\treturn this.nativeElement ? this.nativeElement.value : undefined;\n\t}\n\tset value(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.value = value : undefined;\n\t}\n\n\t/** @description This event is triggered when a visible row or column has been added or removed.\n\t* @param event. The custom event. \t*/\n\t@Output() onArraySizeChange: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when the value of the Array is changed.\n\t* @param event. The custom event. \t*/\n\t@Output() onChange: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when a dimension has been added or removed.\n\t* @param event. The custom event. \t*/\n\t@Output() onDimensionChange: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when an Array element has been clicked.\n\t* @param event. The custom event. \t*/\n\t@Output() onElementClick: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when the Array is scrolled with one of the scrollbars.\n\t* @param event. The custom event. \t*/\n\t@Output() onScroll: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when the column width or the row height has been changed.\n\t* @param event. The custom event. \t*/\n\t@Output() onSizeChange: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description Adds a dimension to the array. Note: when adding multiple dimensions simultaneously, it is recommended to do so by dynamically setting the dimensions property. \n\t*/\n public addDimension(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.addDimension();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.addDimension();\n });\n }\n }\n\n\t/** @description Clears the selection. \n\t*/\n public clearSelection(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.clearSelection();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.clearSelection();\n });\n }\n }\n\n\t/** @description Copies the value of an Array element to the clipboard. \n\t* @param {number} Rowvisibleindex. The visible index of the row (y coordinate) of the element.\n\t* @param {number} Columnvisibleindex. The visible index of the column (x coordinate) of the element.\n\t*/\n public copyElementValueToClipboard(Rowvisibleindex: number, Columnvisibleindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.copyElementValueToClipboard(Rowvisibleindex, Columnvisibleindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.copyElementValueToClipboard(Rowvisibleindex, Columnvisibleindex);\n });\n }\n }\n\n\t/** @description Deletes a column in the value array. \n\t* @param {number} Columnindex. Index of the column to be deleted.\n\t*/\n public deleteColumn(Columnindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.deleteColumn(Columnindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.deleteColumn(Columnindex);\n });\n }\n }\n\n\t/** @description Deletes a row in the value array. \n\t* @param {number} Rowindex. Index of the row to be deleted.\n\t*/\n public deleteRow(Rowindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.deleteRow(Rowindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.deleteRow(Rowindex);\n });\n }\n }\n\n\t/** @description Empties the value array. \n\t*/\n public emptyArray(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.emptyArray();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.emptyArray();\n });\n }\n }\n\n\t/** @description Designates the end of a selection started with the method startSelection. \n\t* @param {number} Rowboundindex. The bound index of the row (y coordinate) to end the selection to.\n\t* @param {number} Columnboundindex. The bound index of the column (x coordinate) to end the selection to.\n\t*/\n public endSelection(Rowboundindex: number, Columnboundindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.endSelection(Rowboundindex, Columnboundindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.endSelection(Rowboundindex, Columnboundindex);\n });\n }\n }\n\n\t/** @description Returns the HTML element at the specified visible row and column coordinates of the Array. \n\t* @param {number} RowVisibleIndex. The visible index of the row (y coordinate) of the element.\n\t* @param {number} ColumnVisibleIndex. The visible index of the column (x coordinate) of the element.\n\t* @returns {HTMLElement}\n */\n\tpublic async getElement(RowVisibleIndex, ColumnVisibleIndex): Promise<any> {\n\t\tconst getResultOnRender = () => {\n return new Promise(resolve => {\n this.nativeElement.whenRendered(() => {\n const result = this.nativeElement.getElement(RowVisibleIndex, ColumnVisibleIndex);\n resolve(result)\n });\n });\n };\n const result = await getResultOnRender();\n\n return result;\n }\n\n\t/** @description Returns an object with the values of the Array element width and height. \n\t* @returns {any}\n */\n\tpublic async getElementSize(): Promise<any> {\n\t\tconst getResultOnRender = () => {\n return new Promise(resolve => {\n this.nativeElement.whenRendered(() => {\n const result = this.nativeElement.getElementSize();\n resolve(result)\n });\n });\n };\n const result = await getResultOnRender();\n\n return result;\n }\n\n\t/** @description Gets an array with the values of all indexers. \n\t* @returns {any[]}\n */\n\tpublic async getIndexerValue(): Promise<any> {\n\t\tconst getResultOnRender = () => {\n return new Promise(resolve => {\n this.nativeElement.whenRendered(() => {\n const result = this.nativeElement.getIndexerValue();\n resolve(result)\n });\n });\n };\n const result = await getResultOnRender();\n\n return result;\n }\n\n\t/** @description Returns an HTML element from the Array at the specified page coordinates and other information about this element. \n\t* @param {number} Pagexcoordinate. \n\t* @param {number} Pageycoordinate. \n\t* @returns {any}\n */\n\tpublic async hitTest(Pagexcoordinate, Pageycoordinate): Promise<any> {\n\t\tconst getResultOnRender = () => {\n return new Promise(resolve => {\n this.nativeElement.whenRendered(() => {\n const result = this.nativeElement.hitTest(Pagexcoordinate, Pageycoordinate);\n resolve(result)\n });\n });\n };\n const result = await getResultOnRender();\n\n return result;\n }\n\n\t/** @description Inserts a column in the value array before the specified column. The new column is filled with default values. \n\t* @param {number} Columnindex. Index of the column to add a new column before.\n\t*/\n public insertColumnBefore(Columnindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.insertColumnBefore(Columnindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.insertColumnBefore(Columnindex);\n });\n }\n }\n\n\t/** @description Inserts a row in the value array before the specified row. The new row is filled with default values. \n\t* @param {number} Rowindex. Index of the row to add a new row before.\n\t*/\n public insertRowBefore(Rowindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.insertRowBefore(Rowindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.insertRowBefore(Rowindex);\n });\n }\n }\n\n\t/** @description Sets all value array members to the default value. \n\t*/\n public reinitializeArray(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.reinitializeArray();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.reinitializeArray();\n });\n }\n }\n\n\t/** @description Removes a dimension from the array. Note: when removing multiple dimensions simultaneously, it is recommended to do so by dynamically setting the dimensions property. \n\t*/\n public removeDimension(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.removeDimension();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.removeDimension();\n });\n }\n }\n\n\t/** @description Sets the array's type to 'none'. \n\t*/\n public reset(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.reset();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.reset();\n });\n }\n }\n\n\t/** @description Resizes Array elements (changes both the column width and the row height). \n\t* @param {number} Elementwidth. The new element (column) width.\n\t* @param {number} Elementheight. The new element (row) height.\n\t*/\n public resizeElement(Elementwidth: number, Elementheight: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.resizeElement(Elementwidth, Elementheight);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.resizeElement(Elementwidth, Elementheight);\n });\n }\n }\n\n\t/** @description Selects all members of the array. \n\t*/\n public selectAll(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.selectAll();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.selectAll();\n });\n }\n }\n\n\t/** @description Selects an element with the passed row and column bound indexes. \n\t* @param {number} Rowboundindex. \n\t* @param {number} Columnboundindex. \n\t*/\n public selectElement(Rowboundindex: number, Columnboundindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.selectElement(Rowboundindex, Columnboundindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.selectElement(Rowboundindex, Columnboundindex);\n });\n }\n }\n\n\t/** @description Sets the column (element) width. \n\t* @param {number} Columnwidth. The new column width.\n\t*/\n public setColumnWidth(Columnwidth: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.setColumnWidth(Columnwidth);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.setColumnWidth(Columnwidth);\n });\n }\n }\n\n\t/** @description Sets the default value of array members. \n\t* @param {any} Defaultvalue. The new default value. Its data type should correspond to the <strong>type</strong> of the Array.\n\t*/\n public setDefaultValue(Defaultvalue: any): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.setDefaultValue(Defaultvalue);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.setDefaultValue(Defaultvalue);\n });\n }\n }\n\n\t/** @description Sets the value of one or more Array indexers. \n\t* @param {any[]} Settings. An array of objects with the fields index and value.\n\t*/\n public setIndexerValue(Settings: any[]): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.setIndexerValue(Settings);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.setIndexerValue(Settings);\n });\n }\n }\n\n\t/** @description Sets the row (element) height. \n\t* @param {number} Rowheight. The new row height.\n\t*/\n public setRowHeight(Rowheight: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.setRowHeight(Rowheight);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.setRowHeight(Rowheight);\n });\n }\n }\n\n\t/** @description Makes the last array member visible. \n\t*/\n public showLastElement(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.showLastElement();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.showLastElement();\n });\n }\n }\n\n\t/** @description Designates the start of a selection. To end a selection, call endSelection. \n\t* @param {number} Rowboundindex. The bound index of the row (y coordinate) to start the selection from.\n\t* @param {number} Columnboundindex. The bound index of the column (x coordinate) to start the selection from.\n\t*/\n public startSelection(Rowboundindex: number, Columnboundindex: number): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.startSelection(Rowboundindex, Columnboundindex);\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.startSelection(Rowboundindex, Columnboundindex);\n });\n }\n }\n\n\t/** @description Increases or decreases the visual gap between Array elements. \n\t*/\n public toggleElementGap(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.toggleElementGap();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.toggleElementGap();\n });\n }\n }\n\n\t/** @description Transposes the array. Applicable only when dimensions is 2 (2D array). \n\t*/\n public transposeArray(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.transposeArray();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.transposeArray();\n });\n }\n }\n\n\t/** @description Sets or gets the value of the whole array or sets the value of a member of the array. \n\t* @param {any} Newvalue?. If the method is used for setting the value of the whole array, the expected value is an array. If it is used for setting the value of an array member, the value can be of any applicable type.\n\t* @param {number | number[]} Elementindexes?. If this parameter is passed, only the value of the array member with the provided dimension indexes is set. Dimension indexes that are not passed are considered to be 0.\n\t* @returns {any[]}\n */\n\tpublic async val(Newvalue?, Elementindexes?): Promise<any> {\n\t\tconst getResultOnRender = () => {\n return new Promise(resolve => {\n this.nativeElement.whenRendered(() => {\n const result = this.nativeElement.val(Newvalue, Elementindexes);\n resolve(result)\n });\n });\n };\n const result = await getResultOnRender();\n\n return result;\n }\n\n\n\tget isRendered(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.isRendered : false;\n\t}\n\n\tngOnInit() {\n\t}\n\n ngAfterViewInit() {\n const that = this;\n\n that.onCreate.emit(that.nativeElement);\n\n\t\tSmart.Render();\n\n\t\tthis.nativeElement.classList.add('smart-angular');\n\n\t\tthis.nativeElement.whenRendered(() => { that.onReady.emit(that.nativeElement); });\n\t\tthis.listen();\n\t}\n\n\tngOnDestroy() {\n\t\tthis.unlisten();\n\t}\n\n\tngOnChanges(changes: SimpleChanges) {\n\t\tif (this.nativeElement && this.nativeElement.isRendered) {\n\t\t\tfor (const propName in changes) {\n\t\t\t\tif (changes.hasOwnProperty(propName)) {\n\t\t\t\t\tthis.nativeElement[propName] = changes[propName].currentValue;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/** @description Add event listeners. */\n\tprivate listen(): void {\n const that = this;\n\t\tthat.eventHandlers['arraySizeChangeHandler'] = (event: CustomEvent) => { that.onArraySizeChange.emit(event); }\n\t\tthat.nativeElement.addEventListener('arraySizeChange', that.eventHandlers['arraySizeChangeHandler']);\n\n\t\tthat.eventHandlers['changeHandler'] = (event: CustomEvent) => { that.onChange.emit(event); }\n\t\tthat.nativeElement.addEventListener('change', that.eventHandlers['changeHandler']);\n\n\t\tthat.eventHandlers['dimensionChangeHandler'] = (event: CustomEvent) => { that.onDimensionChange.emit(event); }\n\t\tthat.nativeElement.addEventListener('dimensionChange', that.eventHandlers['dimensionChangeHandler']);\n\n\t\tthat.eventHandlers['elementClickHandler'] = (event: CustomEvent) => { that.onElementClick.emit(event); }\n\t\tthat.nativeElement.addEventListener('elementClick', that.eventHandlers['elementClickHandler']);\n\n\t\tthat.eventHandlers['scrollHandler'] = (event: CustomEvent) => { that.onScroll.emit(event); }\n\t\tthat.nativeElement.addEventListener('scroll', that.eventHandlers['scrollHandler']);\n\n\t\tthat.eventHandlers['sizeChangeHandler'] = (event: CustomEvent) => { that.onSizeChange.emit(event); }\n\t\tthat.nativeElement.addEventListener('sizeChange', that.eventHandlers['sizeChangeHandler']);\n\n\t}\n\n\t/** @description Remove event listeners. */\n\tprivate unlisten(): void {\n const that = this;\n\t\tif (that.eventHandlers['arraySizeChangeHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('arraySizeChange', that.eventHandlers['arraySizeChangeHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['changeHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('change', that.eventHandlers['changeHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['dimensionChangeHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('dimensionChange', that.eventHandlers['dimensionChangeHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['elementClickHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('elementClick', that.eventHandlers['elementClickHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['scrollHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('scroll', that.eventHandlers['scrollHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['sizeChangeHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('sizeChange', that.eventHandlers['sizeChangeHandler']);\n\t\t}\n\n\t}\n}\n","import { NgModule } from '@angular/core';\n\nimport { ArrayComponent } from './smart.array';\nimport { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';\n\n@NgModule({\n declarations: [ArrayComponent],\n\tschemas: [CUSTOM_ELEMENTS_SCHEMA],\n\texports: [ArrayComponent]\n})\n\nexport class ArrayModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n\nexport {BaseElement as ɵa} from './smart.element';"],"names":["tslib_1.__decorate"],"mappings":"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"}