@syncfusion/ej2-angular-spreadsheet 31.2.18-ngcc → 31.2.18
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/CHANGELOG.md +1600 -0
- package/README.md +9 -2
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
- package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
- package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
- package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
- package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +71 -0
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +181 -0
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +13 -13
- package/src/spreadsheet/cells.directive.d.ts +120 -115
- package/src/spreadsheet/chart.directive.d.ts +84 -79
- package/src/spreadsheet/columns.directive.d.ts +76 -71
- package/src/spreadsheet/conditionalformats.directive.d.ts +60 -55
- package/src/spreadsheet/definednames.directive.d.ts +54 -49
- package/src/spreadsheet/image.directive.d.ts +53 -48
- package/src/spreadsheet/ranges.directive.d.ts +73 -68
- package/src/spreadsheet/rows.directive.d.ts +74 -69
- package/src/spreadsheet/sheets.directive.d.ts +154 -149
- package/src/spreadsheet/spreadsheet-all.module.d.ts +27 -21
- package/src/spreadsheet/spreadsheet.component.d.ts +72 -69
- package/src/spreadsheet/spreadsheet.module.d.ts +20 -5
- package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -962
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +0 -902
- package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1602
- package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
- package/ej2-angular-spreadsheet.d.ts +0 -5
- package/ej2-angular-spreadsheet.metadata.json +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-spreadsheet.umd.js","sources":["~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/spreadsheet-all.module.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/spreadsheet.module.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/spreadsheet.component.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/definednames.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/sheets.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/conditionalformats.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/ranges.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/columns.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/rows.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/cells.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/chart.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/image.directive.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ImageDirective, ImagesDirective } from './image.directive';\nimport { ChartDirective, ChartsDirective } from './chart.directive';\nimport { CellDirective, CellsDirective } from './cells.directive';\nimport { RowDirective, RowsDirective } from './rows.directive';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { RangeDirective, RangesDirective } from './ranges.directive';\nimport { ConditionalFormatDirective, ConditionalFormatsDirective } from './conditionalformats.directive';\nimport { SheetDirective, SheetsDirective } from './sheets.directive';\nimport { DefinedNameDirective, DefinedNamesDirective } from './definednames.directive';\nimport { SpreadsheetComponent } from './spreadsheet.component';\nimport { SpreadsheetModule } from './spreadsheet.module';\nimport {Clipboard, Edit, KeyboardNavigation, KeyboardShortcut, Selection, ContextMenu, FormulaBar, Ribbon, Save, Open, SheetTabs, DataBind, CellFormat, NumberFormat, Formula} from '@syncfusion/ej2-spreadsheet';\n\n\nexport const /** @type {?} */ ClipboardService: ValueProvider = { provide: 'SpreadsheetClipboard', useValue: Clipboard};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'SpreadsheetEdit', useValue: Edit};\nexport const /** @type {?} */ KeyboardNavigationService: ValueProvider = { provide: 'SpreadsheetKeyboardNavigation', useValue: KeyboardNavigation};\nexport const /** @type {?} */ KeyboardShortcutService: ValueProvider = { provide: 'SpreadsheetKeyboardShortcut', useValue: KeyboardShortcut};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'SpreadsheetSelection', useValue: Selection};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'SpreadsheetContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ FormulaBarService: ValueProvider = { provide: 'SpreadsheetFormulaBar', useValue: FormulaBar};\nexport const /** @type {?} */ RibbonService: ValueProvider = { provide: 'SpreadsheetRibbon', useValue: Ribbon};\nexport const /** @type {?} */ SaveService: ValueProvider = { provide: 'SpreadsheetSave', useValue: Save};\nexport const /** @type {?} */ OpenService: ValueProvider = { provide: 'SpreadsheetOpen', useValue: Open};\nexport const /** @type {?} */ SheetTabsService: ValueProvider = { provide: 'SpreadsheetSheetTabs', useValue: SheetTabs};\nexport const /** @type {?} */ DataBindService: ValueProvider = { provide: 'SpreadsheetDataBind', useValue: DataBind};\nexport const /** @type {?} */ CellFormatService: ValueProvider = { provide: 'SpreadsheetCellFormat', useValue: CellFormat};\nexport const /** @type {?} */ NumberFormatService: ValueProvider = { provide: 'SpreadsheetNumberFormat', useValue: NumberFormat};\nexport const /** @type {?} */ FormulaService: ValueProvider = { provide: 'SpreadsheetFormula', useValue: Formula};\n/**\n * NgModule definition for the Spreadsheet component with providers.\n */\nexport class SpreadsheetAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, SpreadsheetModule],\n exports: [\n SpreadsheetModule\n ],\n providers:[\n ClipboardService,\n EditService,\n KeyboardNavigationService,\n KeyboardShortcutService,\n SelectionService,\n ContextMenuService,\n FormulaBarService,\n RibbonService,\n SaveService,\n OpenService,\n SheetTabsService,\n DataBindService,\n CellFormatService,\n NumberFormatService,\n FormulaService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SpreadsheetAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSpreadsheetAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSpreadsheetAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ImageDirective, ImagesDirective } from './image.directive';\nimport { ChartDirective, ChartsDirective } from './chart.directive';\nimport { CellDirective, CellsDirective } from './cells.directive';\nimport { RowDirective, RowsDirective } from './rows.directive';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { RangeDirective, RangesDirective } from './ranges.directive';\nimport { ConditionalFormatDirective, ConditionalFormatsDirective } from './conditionalformats.directive';\nimport { SheetDirective, SheetsDirective } from './sheets.directive';\nimport { DefinedNameDirective, DefinedNamesDirective } from './definednames.directive';\nimport { SpreadsheetComponent } from './spreadsheet.component';\n/**\n * NgModule definition for the Spreadsheet component.\n */\nexport class SpreadsheetModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n SpreadsheetComponent,\n ImageDirective,\n ImagesDirective,\n ChartDirective,\n ChartsDirective,\n CellDirective,\n CellsDirective,\n RowDirective,\n RowsDirective,\n ColumnDirective,\n ColumnsDirective,\n RangeDirective,\n RangesDirective,\n ConditionalFormatDirective,\n ConditionalFormatsDirective,\n SheetDirective,\n SheetsDirective,\n DefinedNameDirective,\n DefinedNamesDirective\n ],\n exports: [\n SpreadsheetComponent,\n ImageDirective,\n ImagesDirective,\n ChartDirective,\n ChartsDirective,\n CellDirective,\n CellsDirective,\n RowDirective,\n RowsDirective,\n ColumnDirective,\n ColumnsDirective,\n RangeDirective,\n RangesDirective,\n ConditionalFormatDirective,\n ConditionalFormatsDirective,\n SheetDirective,\n SheetsDirective,\n DefinedNameDirective,\n DefinedNamesDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SpreadsheetModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSpreadsheetModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSpreadsheetModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Spreadsheet } from '@syncfusion/ej2-spreadsheet';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { SheetsDirective } from './sheets.directive';\nimport { DefinedNamesDirective } from './definednames.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['activeSheetIndex','allowAutoFill','allowCellFormatting','allowChart','allowConditionalFormat','allowDataValidation','allowDelete','allowEditing','allowFiltering','allowFindAndReplace','allowFreezePane','allowHyperlink','allowImage','allowInsert','allowMerge','allowNumberFormatting','allowOpen','allowPrint','allowResizing','allowSave','allowScrolling','allowSorting','allowUndoRedo','allowWrap','autoFillSettings','calculationMode','cellStyle','cssClass','currencyCode','definedNames','enableClipboard','enableContextMenu','enableKeyboardNavigation','enableKeyboardShortcut','enableNotes','enablePersistence','enableRtl','height','isProtected','listSeparator','locale','openSettings','openUrl','password','saveUrl','scrollSettings','selectionSettings','sheets','showAggregate','showFormulaBar','showRibbon','showSheetTabs','width'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','afterHyperlinkClick','afterHyperlinkCreate','beforeCellFormat','beforeCellRender','beforeCellSave','beforeCellUpdate','beforeConditionalFormat','beforeDataBound','beforeHyperlinkClick','beforeHyperlinkCreate','beforeOpen','beforeSave','beforeSelect','beforeSort','cellEdit','cellEdited','cellEditing','cellSave','contextMenuBeforeClose','contextMenuBeforeOpen','contextMenuItemSelect','created','dataBound','dataSourceChanged','dialogBeforeOpen','fileMenuBeforeClose','fileMenuBeforeOpen','fileMenuItemSelect','openComplete','openFailure','queryCellInfo','saveComplete','select','sortComplete'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * `ejs-spreadsheet` represents the Angular Spreadsheet Component.\n * ```html\n * <ejs-spreadsheet></ejs-spreadsheet>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class SpreadsheetComponent extends Spreadsheet implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tafterHyperlinkClick: any;\n\tafterHyperlinkCreate: any;\n\tbeforeCellFormat: any;\n\tbeforeCellRender: any;\n\tbeforeCellSave: any;\n\tbeforeCellUpdate: any;\n\tbeforeConditionalFormat: any;\n\tbeforeDataBound: any;\n\tbeforeHyperlinkClick: any;\n\tbeforeHyperlinkCreate: any;\n\tbeforeOpen: any;\n\tbeforeSave: any;\n\tbeforeSelect: any;\n\tbeforeSort: any;\n\tcellEdit: any;\n\tcellEdited: any;\n\tcellEditing: any;\n\tcellSave: any;\n\tcontextMenuBeforeClose: any;\n\tcontextMenuBeforeOpen: any;\n\tcontextMenuItemSelect: any;\n\tcreated: any;\n\tdataBound: any;\n\tdataSourceChanged: any;\n\tdialogBeforeOpen: any;\n\tfileMenuBeforeClose: any;\n\tfileMenuBeforeOpen: any;\n\tfileMenuItemSelect: any;\n\topenComplete: any;\n\topenFailure: any;\n\tqueryCellInfo: any;\n\tsaveComplete: any;\n\tselect: any;\npublic sortComplete: any;\npublic childSheets: QueryList<SheetsDirective>;\npublic childDefinedNames: QueryList<DefinedNamesDirective>;\npublic tags: string[] = ['sheets', 'definedNames'];\n \n @Template()\npublic template: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('SpreadsheetClipboard');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetKeyboardNavigation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetKeyboardShortcut');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetFormulaBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetRibbon');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetSave');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetOpen');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetSheetTabs');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetDataBind');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetCellFormat');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetNumberFormat');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetFormula');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childSheets;\n if (this.childDefinedNames) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childDefinedNames as any));\n }\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-spreadsheet',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childSheets: new ContentChild(SheetsDirective), \n childDefinedNames: new ContentChild(DefinedNamesDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n};\n}\n\nfunction SpreadsheetComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nSpreadsheetComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSpreadsheetComponent.ctorParameters;\n/** @type {?} */\nSpreadsheetComponent.propDecorators;\n/** @type {?} */\nSpreadsheetComponent.prototype.context;\n/** @type {?} */\nSpreadsheetComponent.prototype.tagObjects;\n/** @type {?} */\nSpreadsheetComponent.prototype.actionBegin;\n/** @type {?} */\nSpreadsheetComponent.prototype.actionComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.afterHyperlinkClick;\n/** @type {?} */\nSpreadsheetComponent.prototype.afterHyperlinkCreate;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellFormat;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellRender;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellSave;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellUpdate;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeConditionalFormat;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeDataBound;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeHyperlinkClick;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeHyperlinkCreate;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeSave;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeSelect;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeSort;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellEdit;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellEdited;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellEditing;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellSave;\n/** @type {?} */\nSpreadsheetComponent.prototype.contextMenuBeforeClose;\n/** @type {?} */\nSpreadsheetComponent.prototype.contextMenuBeforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.contextMenuItemSelect;\n/** @type {?} */\nSpreadsheetComponent.prototype.created;\n/** @type {?} */\nSpreadsheetComponent.prototype.dataBound;\n/** @type {?} */\nSpreadsheetComponent.prototype.dataSourceChanged;\n/** @type {?} */\nSpreadsheetComponent.prototype.dialogBeforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.fileMenuBeforeClose;\n/** @type {?} */\nSpreadsheetComponent.prototype.fileMenuBeforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.fileMenuItemSelect;\n/** @type {?} */\nSpreadsheetComponent.prototype.openComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.openFailure;\n/** @type {?} */\nSpreadsheetComponent.prototype.queryCellInfo;\n/** @type {?} */\nSpreadsheetComponent.prototype.saveComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.select;\n/** @type {?} */\nSpreadsheetComponent.prototype.sortComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.childSheets;\n/** @type {?} */\nSpreadsheetComponent.prototype.childDefinedNames;\n/** @type {?} */\nSpreadsheetComponent.prototype.tags;\n/** @type {?} */\nSpreadsheetComponent.prototype.template;\n/** @type {?} */\nSpreadsheetComponent.prototype.registerEvents;\n/** @type {?} */\nSpreadsheetComponent.prototype.addTwoWay;\n/** @type {?} */\nSpreadsheetComponent.prototype.ngEle;\n/** @type {?} */\nSpreadsheetComponent.prototype.srenderer;\n/** @type {?} */\nSpreadsheetComponent.prototype.viewContainerRef;\n/** @type {?} */\nSpreadsheetComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['comment', 'name', 'refersTo', 'scope'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-definedname` directive represent a defined name of the Angular Spreadsheet.\n * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).\n * ```html\n * <ejs-spreadsheet>\n * <e-definednames>\n * <e-definedname></e-definedname>\n * <e-definedname></e-definedname>\n * </e-definednames>\n * </ejs-spreadsheet>\n * ```\n */\nexport class DefinedNameDirective extends ComplexBase<DefinedNameDirective> {\npublic directivePropList: any;\n/**\n * Provides a comment or description for the defined name.\n * \\@default ''\n */\npublic comment: any;\n/**\n * Specifies a unique name for the defined name, which can be used in formulas.\n * \\@default ''\n */\npublic name: any;\n/**\n * Specifies the cell or range reference associated with the defined name. \n * The reference can be provided with or without the `=` prefix.\n * \\@default ''\n */\npublic refersTo: any;\n/**\n * Defines the scope of the name. \n * If not specified, the name is scoped to the entire workbook. \n * If a sheet name is provided, the name will be available only within that specific sheet.\n * \\@default ''\n */\npublic scope: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-definednames>e-definedname',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction DefinedNameDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nDefinedNameDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDefinedNameDirective.ctorParameters;\n/** @type {?} */\nDefinedNameDirective.prototype.directivePropList;\n/**\n * Provides a comment or description for the defined name.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.comment;\n/**\n * Specifies a unique name for the defined name, which can be used in formulas.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.name;\n/**\n * Specifies the cell or range reference associated with the defined name. \n * The reference can be provided with or without the `=` prefix.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.refersTo;\n/**\n * Defines the scope of the name. \n * If not specified, the name is scoped to the entire workbook. \n * If a sheet name is provided, the name will be available only within that specific sheet.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.scope;\n/** @type {?} */\nDefinedNameDirective.prototype.viewContainerRef;\n}\n\n/**\n * DefinedName Array Directive\n */\nexport class DefinedNamesDirective extends ArrayBase<DefinedNamesDirective> {\nconstructor() {\n super('definednames');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-spreadsheet>e-definednames',\n queries: {\n children: new ContentChildren(DefinedNameDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DefinedNamesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nDefinedNamesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDefinedNamesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { RowsDirective } from './rows.directive';\nimport { ColumnsDirective } from './columns.directive';\nimport { RangesDirective } from './ranges.directive';\nimport { ConditionalFormatsDirective } from './conditionalformats.directive';\n\nlet /** @type {?} */ input: string[] = ['activeCell', 'colCount', 'columns', 'conditionalFormats', 'frozenColumns', 'frozenRows', 'index', 'isProtected', 'name', 'paneTopLeftCell', 'password', 'protectSettings', 'ranges', 'rowCount', 'rows', 'selectedRange', 'showGridLines', 'showHeaders', 'standardHeight', 'state', 'topLeftCell', 'usedRange'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-sheet` directive represent a sheet of the Angular Spreadsheet.\n * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet></e-sheet>\n * <e-sheet></e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class SheetDirective extends ComplexBase<SheetDirective> {\npublic directivePropList: any;\npublic childRows: any;\npublic childColumns: any;\npublic childRanges: any;\npublic childConditionalFormats: any;\npublic tags: string[] = ['rows', 'columns', 'ranges', 'conditionalFormats'];\n/**\n * Specifies active cell within `selectedRange` in the sheet.\n * \\@default 'A1'\n */\npublic activeCell: any;\n/**\n * Defines the number of columns to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n */\npublic colCount: any;\n/**\n * Configures column and its properties for the sheet.\n * \\@default null\n */\npublic columns: any;\n/**\n * Specifies the conditional formatting for the sheet.\n * \\@default []\n */\npublic conditionalFormats: any;\n/**\n * Gets or sets the number of frozen columns.\n * \\@default 0\n * \\@asptype int\n */\npublic frozenColumns: any;\n/**\n * Gets or sets the number of frozen rows.\n * \\@default 0\n * \\@asptype int\n */\npublic frozenRows: any;\n/**\n * Specifies index of the sheet. Based on the index, sheet properties are applied.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * Specifies to protect the cells in the sheet.\n * \\@default false\n */\npublic isProtected: any;\n/**\n * Specifies the name of the sheet, the name will show in the sheet tabs.\n * \\@default ''\n */\npublic name: any;\n/**\n * Represents the freeze pane top left cell. Its default value would be based on the number of freeze rows and columns.\n * \\@default 'A1'\n */\npublic paneTopLeftCell: any;\n/**\n * Specifies the password.\n * \\@default ''\n */\npublic password: any;\n/**\n * Configures protect and its options.\n * \\@default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }\n */\npublic protectSettings: any;\n/**\n * Specifies the collection of range for the sheet.\n * \\@default []\n */\npublic ranges: any;\n/**\n * Defines the number of rows to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n */\npublic rowCount: any;\n/**\n * Configures row and its properties for the sheet.\n * \\@default null\n */\npublic rows: any;\n/**\n * Specifies selected range in the sheet. \n * \n * \\@default 'A1:A1'\n */\npublic selectedRange: any;\n/**\n * Specifies to show / hide grid lines in the sheet.\n * \\@default true\n */\npublic showGridLines: any;\n/**\n * Specifies to show / hide column and row headers in the sheet.\n * \\@default true\n */\npublic showHeaders: any;\n/**\n * Represents the standard height of the sheet.\n * \\@default null\n * \\@asptype double\n * \\@aspdefaultvalue null\n */\npublic standardHeight: any;\n/**\n * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.\n * \\@default 'Visible'\n */\npublic state: any;\n/**\n * Specified cell will be positioned at the upper-left corner of the sheet.\n * \\@default 'A1'\n */\npublic topLeftCell: any;\n/**\n * Defines the used range of the sheet.\n * \\@default { rowIndex: 0, colIndex: 0 }\n */\npublic usedRange: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheets>e-sheet',\n inputs: input,\n outputs: outputs, \n queries: {\n childRows: new ContentChild(RowsDirective), \n childColumns: new ContentChild(ColumnsDirective), \n childRanges: new ContentChild(RangesDirective), \n childConditionalFormats: new ContentChild(ConditionalFormatsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction SheetDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nSheetDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSheetDirective.ctorParameters;\n/** @type {?} */\nSheetDirective.prototype.directivePropList;\n/** @type {?} */\nSheetDirective.prototype.childRows;\n/** @type {?} */\nSheetDirective.prototype.childColumns;\n/** @type {?} */\nSheetDirective.prototype.childRanges;\n/** @type {?} */\nSheetDirective.prototype.childConditionalFormats;\n/** @type {?} */\nSheetDirective.prototype.tags;\n/**\n * Specifies active cell within `selectedRange` in the sheet.\n * \\@default 'A1'\n * @type {?}\n */\nSheetDirective.prototype.activeCell;\n/**\n * Defines the number of columns to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.colCount;\n/**\n * Configures column and its properties for the sheet.\n * \\@default null\n * @type {?}\n */\nSheetDirective.prototype.columns;\n/**\n * Specifies the conditional formatting for the sheet.\n * \\@default []\n * @type {?}\n */\nSheetDirective.prototype.conditionalFormats;\n/**\n * Gets or sets the number of frozen columns.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.frozenColumns;\n/**\n * Gets or sets the number of frozen rows.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.frozenRows;\n/**\n * Specifies index of the sheet. Based on the index, sheet properties are applied.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.index;\n/**\n * Specifies to protect the cells in the sheet.\n * \\@default false\n * @type {?}\n */\nSheetDirective.prototype.isProtected;\n/**\n * Specifies the name of the sheet, the name will show in the sheet tabs.\n * \\@default ''\n * @type {?}\n */\nSheetDirective.prototype.name;\n/**\n * Represents the freeze pane top left cell. Its default value would be based on the number of freeze rows and columns.\n * \\@default 'A1'\n * @type {?}\n */\nSheetDirective.prototype.paneTopLeftCell;\n/**\n * Specifies the password.\n * \\@default ''\n * @type {?}\n */\nSheetDirective.prototype.password;\n/**\n * Configures protect and its options.\n * \\@default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }\n * @type {?}\n */\nSheetDirective.prototype.protectSettings;\n/**\n * Specifies the collection of range for the sheet.\n * \\@default []\n * @type {?}\n */\nSheetDirective.prototype.ranges;\n/**\n * Defines the number of rows to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.rowCount;\n/**\n * Configures row and its properties for the sheet.\n * \\@default null\n * @type {?}\n */\nSheetDirective.prototype.rows;\n/**\n * Specifies selected range in the sheet. \n * \n * \\@default 'A1:A1'\n * @type {?}\n */\nSheetDirective.prototype.selectedRange;\n/**\n * Specifies to show / hide grid lines in the sheet.\n * \\@default true\n * @type {?}\n */\nSheetDirective.prototype.showGridLines;\n/**\n * Specifies to show / hide column and row headers in the sheet.\n * \\@default true\n * @type {?}\n */\nSheetDirective.prototype.showHeaders;\n/**\n * Represents the standard height of the sheet.\n * \\@default null\n * \\@asptype double\n * \\@aspdefaultvalue null\n * @type {?}\n */\nSheetDirective.prototype.standardHeight;\n/**\n * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.\n * \\@default 'Visible'\n * @type {?}\n */\nSheetDirective.prototype.state;\n/**\n * Specified cell will be positioned at the upper-left corner of the sheet.\n * \\@default 'A1'\n * @type {?}\n */\nSheetDirective.prototype.topLeftCell;\n/**\n * Defines the used range of the sheet.\n * \\@default { rowIndex: 0, colIndex: 0 }\n * @type {?}\n */\nSheetDirective.prototype.usedRange;\n/** @type {?} */\nSheetDirective.prototype.viewContainerRef;\n}\n\n/**\n * Sheet Array Directive\n */\nexport class SheetsDirective extends ArrayBase<SheetsDirective> {\nconstructor() {\n super('sheets');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-spreadsheet>e-sheets',\n queries: {\n children: new ContentChildren(SheetDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SheetsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nSheetsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSheetsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['cFColor', 'format', 'range', 'type', 'value'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-conditionalformats>\n * <e-conditionalformat></e-conditionalformat>\n * </e-conditionalformats>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class ConditionalFormatDirective extends ComplexBase<ConditionalFormatDirective> {\npublic directivePropList: any;\n/**\n * Specifies Conditional formatting Type.\n * \\@default 'GreaterThan'\n * \\@aspignore\n */\npublic type: any;\n/**\n * Specifies Conditional formatting Highlight Color.\n * \\@default 'RedFT'\n */\npublic cFColor: any;\n/**\n * Specifies format.\n * \\@default {}\n */\npublic format: any;\n/**\n * Specifies Conditional formatting range.\n * \\@default ''\n */\npublic range: any;\n/**\n * Specifies Conditional formatting Value.\n * \\@default ''\n */\npublic value: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-conditionalformats>e-conditionalformat',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ConditionalFormatDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nConditionalFormatDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nConditionalFormatDirective.ctorParameters;\n/** @type {?} */\nConditionalFormatDirective.prototype.directivePropList;\n/**\n * Specifies Conditional formatting Type.\n * \\@default 'GreaterThan'\n * \\@aspignore\n * @type {?}\n */\nConditionalFormatDirective.prototype.type;\n/**\n * Specifies Conditional formatting Highlight Color.\n * \\@default 'RedFT'\n * @type {?}\n */\nConditionalFormatDirective.prototype.cFColor;\n/**\n * Specifies format.\n * \\@default {}\n * @type {?}\n */\nConditionalFormatDirective.prototype.format;\n/**\n * Specifies Conditional formatting range.\n * \\@default ''\n * @type {?}\n */\nConditionalFormatDirective.prototype.range;\n/**\n * Specifies Conditional formatting Value.\n * \\@default ''\n * @type {?}\n */\nConditionalFormatDirective.prototype.value;\n/** @type {?} */\nConditionalFormatDirective.prototype.viewContainerRef;\n}\n\n/**\n * ConditionalFormat Array Directive\n */\nexport class ConditionalFormatsDirective extends ArrayBase<ConditionalFormatsDirective> {\nconstructor() {\n super('conditionalformats');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-conditionalformats',\n queries: {\n children: new ContentChildren(ConditionalFormatDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ConditionalFormatsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nConditionalFormatsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nConditionalFormatsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['address', 'dataSource', 'fieldsOrder', 'query', 'showFieldAsHeader', 'startCell', 'template'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-range` directive represent a range of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-ranges>\n * <e-range [dataSource]='data'></e-range>\n * </e-ranges>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class RangeDirective extends ComplexBase<RangeDirective> {\npublic directivePropList: any;\n/**\n * Specifies the address for updating the dataSource or template.\n * \\@default 'A1'\n */\npublic address: any;\n/**\n * Specifies the data as JSON / Data manager to the sheet.\n * \\@default null\n */\npublic dataSource: any;\n/**\n * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially. \n * This means that the first data field is assigned to Column A, the second to Column B, and so on. \n * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.\n * \\@default null\n */\npublic fieldsOrder: any;\n/**\n * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html) \n * that will be executed along with data processing.\n * \\@default null\n */\npublic query: any;\n/**\n * Show/Hide the field of the datasource as header.\n * \\@default true\n */\npublic showFieldAsHeader: any;\n/**\n * Specifies the start cell from which the datasource will be populated.\n * \\@default 'A1'\n */\npublic startCell: any;\n/**\n * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.\n * \\@default ''\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-ranges>e-range',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n};\n}\n\nfunction RangeDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRangeDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRangeDirective.ctorParameters;\n/** @type {?} */\nRangeDirective.propDecorators;\n/** @type {?} */\nRangeDirective.prototype.directivePropList;\n/**\n * Specifies the address for updating the dataSource or template.\n * \\@default 'A1'\n * @type {?}\n */\nRangeDirective.prototype.address;\n/**\n * Specifies the data as JSON / Data manager to the sheet.\n * \\@default null\n * @type {?}\n */\nRangeDirective.prototype.dataSource;\n/**\n * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially. \n * This means that the first data field is assigned to Column A, the second to Column B, and so on. \n * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.\n * \\@default null\n * @type {?}\n */\nRangeDirective.prototype.fieldsOrder;\n/**\n * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html) \n * that will be executed along with data processing.\n * \\@default null\n * @type {?}\n */\nRangeDirective.prototype.query;\n/**\n * Show/Hide the field of the datasource as header.\n * \\@default true\n * @type {?}\n */\nRangeDirective.prototype.showFieldAsHeader;\n/**\n * Specifies the start cell from which the datasource will be populated.\n * \\@default 'A1'\n * @type {?}\n */\nRangeDirective.prototype.startCell;\n/**\n * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.\n * \\@default ''\n * \\@asptype string\n * @type {?}\n */\nRangeDirective.prototype.template;\n/** @type {?} */\nRangeDirective.prototype.viewContainerRef;\n}\n\n/**\n * Range Array Directive\n */\nexport class RangesDirective extends ArrayBase<RangesDirective> {\nconstructor() {\n super('ranges');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-ranges',\n queries: {\n children: new ContentChildren(RangeDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction RangesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRangesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRangesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'isReadOnly', 'validation', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-columns>\n * <e-column width='100'></e-column>\n * </e-columns>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * specifies custom width of the column.\n * \\@default false\n */\npublic customWidth: any;\n/**\n * Specifies format of the column.\n * \\@default {}\n */\npublic format: any;\n/**\n * To hide/show the column in spreadsheet.\n * \\@default false\n */\npublic hidden: any;\n/**\n * Specifies index of the column. Based on the index, column properties are applied.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * To lock/unlock the column in the protected sheet.\n * \\@default true\n */\npublic isLocked: any;\n/**\n * Represents whether a column in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n */\npublic isReadOnly: any;\n/**\n * Specifies the validation of the column.\n * \\@default ''\n */\npublic validation: any;\n/**\n * Specifies width of the column.\n * \\@default 64\n * \\@asptype int\n */\npublic width: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * specifies custom width of the column.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.customWidth;\n/**\n * Specifies format of the column.\n * \\@default {}\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * To hide/show the column in spreadsheet.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.hidden;\n/**\n * Specifies index of the column. Based on the index, column properties are applied.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.index;\n/**\n * To lock/unlock the column in the protected sheet.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.isLocked;\n/**\n * Represents whether a column in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.isReadOnly;\n/**\n * Specifies the validation of the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.validation;\n/**\n * Specifies width of the column.\n * \\@default 64\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.width;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { CellsDirective } from './cells.directive';\n\nlet /** @type {?} */ input: string[] = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index', 'isReadOnly'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-row` directive represent a row of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-rows>\n * <e-row></e-row>\n * </e-rows>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class RowDirective extends ComplexBase<RowDirective> {\npublic directivePropList: any;\npublic childCells: any;\npublic tags: string[] = ['cells'];\n/**\n * Specifies cell and its properties for the row.\n * \\@default []\n */\npublic cells: any;\n/**\n * specifies custom height of the row.\n * \\@default false\n */\npublic customHeight: any;\n/**\n * Specifies format of the row.\n * \\@default {}\n */\npublic format: any;\n/**\n * Specifies height of the row.\n * \\@default 20\n * \\@asptype double\n * \\@aspdefaultvalue 20.0\n */\npublic height: any;\n/**\n * To hide/show the row in spreadsheet.\n * \\@default false\n */\npublic hidden: any;\n/**\n * Specifies the index to the row. Based on the index, row properties are applied.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n */\npublic isReadOnly: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-rows>e-row',\n inputs: input,\n outputs: outputs, \n queries: {\n childCells: new ContentChild(CellsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction RowDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRowDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRowDirective.ctorParameters;\n/** @type {?} */\nRowDirective.prototype.directivePropList;\n/** @type {?} */\nRowDirective.prototype.childCells;\n/** @type {?} */\nRowDirective.prototype.tags;\n/**\n * Specifies cell and its properties for the row.\n * \\@default []\n * @type {?}\n */\nRowDirective.prototype.cells;\n/**\n * specifies custom height of the row.\n * \\@default false\n * @type {?}\n */\nRowDirective.prototype.customHeight;\n/**\n * Specifies format of the row.\n * \\@default {}\n * @type {?}\n */\nRowDirective.prototype.format;\n/**\n * Specifies height of the row.\n * \\@default 20\n * \\@asptype double\n * \\@aspdefaultvalue 20.0\n * @type {?}\n */\nRowDirective.prototype.height;\n/**\n * To hide/show the row in spreadsheet.\n * \\@default false\n * @type {?}\n */\nRowDirective.prototype.hidden;\n/**\n * Specifies the index to the row. Based on the index, row properties are applied.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nRowDirective.prototype.index;\n/**\n * Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n * @type {?}\n */\nRowDirective.prototype.isReadOnly;\n/** @type {?} */\nRowDirective.prototype.viewContainerRef;\n}\n\n/**\n * Row Array Directive\n */\nexport class RowsDirective extends ArrayBase<RowsDirective> {\nconstructor() {\n super('rows');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-rows',\n queries: {\n children: new ContentChildren(RowDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction RowsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRowsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRowsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { ImagesDirective } from './image.directive';\nimport { ChartsDirective } from './chart.directive';\n\nlet /** @type {?} */ input: string[] = ['chart', 'colSpan', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'isReadOnly', 'notes', 'rowSpan', 'style', 'validation', 'value', 'wrap'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-cell` directive represent a cell of the Angular Spreadsheet.\n * It must be contained in a `e-row` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-rows>\n * <e-row>\n * <e-cells>\n * <e-cell value='A1'></e-cell>\n * </e-cells>\n * </e-row>\n * </e-rows>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class CellDirective extends ComplexBase<CellDirective> {\npublic directivePropList: any;\npublic childImage: any;\npublic childChart: any;\npublic tags: string[] = ['image', 'chart'];\n/**\n * Specifies the chart of the cell.\n * \\@default []\n */\npublic chart: any;\n/**\n * Specifies the column-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n */\npublic colSpan: any;\n/**\n * Specifies the number format code to display value in specified number format.\n * \\@default 'General'\n */\npublic format: any;\n/**\n * Defines the formula or expression of the cell.\n * \\@default ''\n */\npublic formula: any;\n/**\n * Specifies the hyperlink of the cell.\n * \\@default ''\n */\npublic hyperlink: any;\n/**\n * Specifies the image of the cell.\n * \\@default []\n */\npublic image: any;\n/**\n * Specifies the index of the cell.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.\n * \\@default true\n */\npublic isLocked: any;\n/**\n * Represents whether a cell in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n */\npublic isReadOnly: any;\n/**\n * Specifies the note of the cell.\n * \\@default ''\n */\npublic notes: any;\n/**\n * Specifies the row-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n */\npublic rowSpan: any;\n/**\n * Specifies the cell style options. \n * \n * \\@default {}\n */\npublic style: any;\n/**\n * Specifies the validation of the cell.\n * \\@default ''\n */\npublic validation: any;\n/**\n * Defines the value of the cell which can be text or number.\n * \\@default ''\n */\npublic value: any;\n/**\n * Wraps the cell text to the next line, if the text width exceeds the column width.\n * \\@default false\n */\npublic wrap: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-cells>e-cell',\n inputs: input,\n outputs: outputs, \n queries: {\n childImage: new ContentChild(ImagesDirective), \n childChart: new ContentChild(ChartsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction CellDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nCellDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nCellDirective.ctorParameters;\n/** @type {?} */\nCellDirective.prototype.directivePropList;\n/** @type {?} */\nCellDirective.prototype.childImage;\n/** @type {?} */\nCellDirective.prototype.childChart;\n/** @type {?} */\nCellDirective.prototype.tags;\n/**\n * Specifies the chart of the cell.\n * \\@default []\n * @type {?}\n */\nCellDirective.prototype.chart;\n/**\n * Specifies the column-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n * @type {?}\n */\nCellDirective.prototype.colSpan;\n/**\n * Specifies the number format code to display value in specified number format.\n * \\@default 'General'\n * @type {?}\n */\nCellDirective.prototype.format;\n/**\n * Defines the formula or expression of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.formula;\n/**\n * Specifies the hyperlink of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.hyperlink;\n/**\n * Specifies the image of the cell.\n * \\@default []\n * @type {?}\n */\nCellDirective.prototype.image;\n/**\n * Specifies the index of the cell.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nCellDirective.prototype.index;\n/**\n * Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.\n * \\@default true\n * @type {?}\n */\nCellDirective.prototype.isLocked;\n/**\n * Represents whether a cell in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n * @type {?}\n */\nCellDirective.prototype.isReadOnly;\n/**\n * Specifies the note of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.notes;\n/**\n * Specifies the row-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n * @type {?}\n */\nCellDirective.prototype.rowSpan;\n/**\n * Specifies the cell style options. \n * \n * \\@default {}\n * @type {?}\n */\nCellDirective.prototype.style;\n/**\n * Specifies the validation of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.validation;\n/**\n * Defines the value of the cell which can be text or number.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.value;\n/**\n * Wraps the cell text to the next line, if the text width exceeds the column width.\n * \\@default false\n * @type {?}\n */\nCellDirective.prototype.wrap;\n/** @type {?} */\nCellDirective.prototype.viewContainerRef;\n}\n\n/**\n * Cell Array Directive\n */\nexport class CellsDirective extends ArrayBase<CellsDirective> {\nconstructor() {\n super('cells');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-row>e-cells',\n queries: {\n children: new ContentChildren(CellDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction CellsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nCellsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nCellsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['dataLabelSettings', 'height', 'id', 'isSeriesInRows', 'legendSettings', 'markerSettings', 'primaryXAxis', 'primaryYAxis', 'range', 'theme', 'title', 'type', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class ChartDirective extends ComplexBase<ChartDirective> {\npublic directivePropList: any;\n/**\n * Specifies the type of a chart.\n * \\@default 'Line'\n */\npublic type: any;\n/**\n * The data label for the series.\n * \\@default {}\n */\npublic dataLabelSettings: any;\n/**\n * Specifies the height of the chart.\n * \\@default 290\n */\npublic height: any;\n/**\n * Specifies chart element id.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies to switch the row or a column.\n * \\@default false\n */\npublic isSeriesInRows: any;\n/**\n * Options for customizing the legend of the chart.\n * \\@default {}\n */\npublic legendSettings: any;\n/**\n * Options to configure the marker\n * \\@default {}\n */\npublic markerSettings: any;\n/**\n * Options to configure the horizontal axis.\n * \\@default {}\n */\npublic primaryXAxis: any;\n/**\n * Options to configure the vertical axis.\n * \\@default {}\n */\npublic primaryYAxis: any;\n/**\n * Specifies the selected range or specified range.\n * \\@default ''\n */\npublic range: any;\n/**\n * Specifies the theme of a chart.\n * \\@default 'Material'\n */\npublic theme: any;\n/**\n * Title of the chart\n * \\@default ''\n */\npublic title: any;\n/**\n * Specifies the width of the chart.\n * \\@default 480\n */\npublic width: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-charts>e-chart',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ChartDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nChartDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nChartDirective.ctorParameters;\n/** @type {?} */\nChartDirective.prototype.directivePropList;\n/**\n * Specifies the type of a chart.\n * \\@default 'Line'\n * @type {?}\n */\nChartDirective.prototype.type;\n/**\n * The data label for the series.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.dataLabelSettings;\n/**\n * Specifies the height of the chart.\n * \\@default 290\n * @type {?}\n */\nChartDirective.prototype.height;\n/**\n * Specifies chart element id.\n * \\@default ''\n * @type {?}\n */\nChartDirective.prototype.id;\n/**\n * Specifies to switch the row or a column.\n * \\@default false\n * @type {?}\n */\nChartDirective.prototype.isSeriesInRows;\n/**\n * Options for customizing the legend of the chart.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.legendSettings;\n/**\n * Options to configure the marker\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.markerSettings;\n/**\n * Options to configure the horizontal axis.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.primaryXAxis;\n/**\n * Options to configure the vertical axis.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.primaryYAxis;\n/**\n * Specifies the selected range or specified range.\n * \\@default ''\n * @type {?}\n */\nChartDirective.prototype.range;\n/**\n * Specifies the theme of a chart.\n * \\@default 'Material'\n * @type {?}\n */\nChartDirective.prototype.theme;\n/**\n * Title of the chart\n * \\@default ''\n * @type {?}\n */\nChartDirective.prototype.title;\n/**\n * Specifies the width of the chart.\n * \\@default 480\n * @type {?}\n */\nChartDirective.prototype.width;\n/** @type {?} */\nChartDirective.prototype.viewContainerRef;\n}\n\n/**\n * Chart Array Directive\n */\nexport class ChartsDirective extends ArrayBase<ChartsDirective> {\nconstructor() {\n super('chart');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-cell>e-charts',\n queries: {\n children: new ContentChildren(ChartDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ChartsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nChartsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nChartsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['height', 'id', 'left', 'src', 'top', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class ImageDirective extends ComplexBase<ImageDirective> {\npublic directivePropList: any;\n/**\n * Specifies the height of the image.\n * \\@default 300\n * \\@asptype double\n */\npublic height: any;\n/**\n * Specifies image element id.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies the width of the image.\n * \\@default 0\n * \\@asptype double\n */\npublic left: any;\n/**\n * Specifies the image source.\n * \\@default ''\n */\npublic src: any;\n/**\n * Specifies the height of the image.\n * \\@default 0\n * \\@asptype double\n */\npublic top: any;\n/**\n * Specifies the width of the image.\n * \\@default 400\n * \\@asptype double\n */\npublic width: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-images>e-image',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ImageDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nImageDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nImageDirective.ctorParameters;\n/** @type {?} */\nImageDirective.prototype.directivePropList;\n/**\n * Specifies the height of the image.\n * \\@default 300\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.height;\n/**\n * Specifies image element id.\n * \\@default ''\n * @type {?}\n */\nImageDirective.prototype.id;\n/**\n * Specifies the width of the image.\n * \\@default 0\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.left;\n/**\n * Specifies the image source.\n * \\@default ''\n * @type {?}\n */\nImageDirective.prototype.src;\n/**\n * Specifies the height of the image.\n * \\@default 0\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.top;\n/**\n * Specifies the width of the image.\n * \\@default 400\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.width;\n/** @type {?} */\nImageDirective.prototype.viewContainerRef;\n}\n\n/**\n * Image Array Directive\n */\nexport class ImagesDirective extends ArrayBase<ImagesDirective> {\nconstructor() {\n super('image');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-cell>e-images',\n queries: {\n children: new ContentChildren(ImageDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ImagesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nImagesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nImagesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","Formula","NumberFormat","CellFormat","DataBind","SheetTabs","Open","Save","Ribbon","FormulaBar","ContextMenu","Selection","KeyboardShortcut","KeyboardNavigation","Edit","Clipboard","SpreadsheetComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","Template","ContentChild","ChangeDetectionStrategy","outputs","Component","Spreadsheet","setValue","ContentChildren","Directive","ArrayBase","input","ComplexBase"],"mappings":"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"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* filename: ej2-angular-spreadsheet.umd.min.js
|
|
3
|
-
* version : 31.2.18
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
|
-
* Use of this code is subject to the terms of our license.
|
|
6
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
-
* applicable laws.
|
|
9
|
-
*/
|
|
10
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-spreadsheet"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-spreadsheet","@angular/common"],t):t(e["ej2-angular-spreadsheet"]={},e.ng.core,e.ej2.angular.base,e.ej2.spreadsheet,e.ng.common)}(this,function(e,t,r,o,a){"use strict";var n=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function o(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(o.prototype=r.prototype,new o)}}(),i=["height","id","left","src","top","width"],l=[],s=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(l),o.directivePropList=i,o}return n(t,e),t}(r.ComplexBase);s.decorators=[{type:t.Directive,args:[{selector:"e-images>e-image",inputs:i,outputs:l,queries:{}}]}],s.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var d=function(e){function t(){return e.call(this,"image")||this}return n(t,e),t}(r.ArrayBase);d.decorators=[{type:t.Directive,args:[{selector:"e-cell>e-images",queries:{children:new t.ContentChildren(s)}}]}],d.ctorParameters=function(){return[]};var c=["dataLabelSettings","height","id","isSeriesInRows","legendSettings","markerSettings","primaryXAxis","primaryYAxis","range","theme","title","type","width"],u=[],g=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(u),o.directivePropList=c,o}return n(t,e),t}(r.ComplexBase);g.decorators=[{type:t.Directive,args:[{selector:"e-charts>e-chart",inputs:c,outputs:u,queries:{}}]}],g.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var p=function(e){function t(){return e.call(this,"chart")||this}return n(t,e),t}(r.ArrayBase);p.decorators=[{type:t.Directive,args:[{selector:"e-cell>e-charts",queries:{children:new t.ContentChildren(g)}}]}],p.ctorParameters=function(){return[]};var h=["chart","colSpan","format","formula","hyperlink","image","index","isLocked","isReadOnly","notes","rowSpan","style","validation","value","wrap"],m=[],C=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["image","chart"],r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(m),o.directivePropList=h,o}return n(t,e),t}(r.ComplexBase);C.decorators=[{type:t.Directive,args:[{selector:"e-cells>e-cell",inputs:h,outputs:m,queries:{childImage:new t.ContentChild(d),childChart:new t.ContentChild(p)}}]}],C.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var f=function(e){function t(){return e.call(this,"cells")||this}return n(t,e),t}(r.ArrayBase);f.decorators=[{type:t.Directive,args:[{selector:"e-row>e-cells",queries:{children:new t.ContentChildren(C)}}]}],f.ctorParameters=function(){return[]};var S=["cells","customHeight","format","height","hidden","index","isReadOnly"],b=[],v=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["cells"],r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(b),o.directivePropList=S,o}return n(t,e),t}(r.ComplexBase);v.decorators=[{type:t.Directive,args:[{selector:"e-rows>e-row",inputs:S,outputs:b,queries:{childCells:new t.ContentChild(f)}}]}],v.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var F=function(e){function t(){return e.call(this,"rows")||this}return n(t,e),t}(r.ArrayBase);F.decorators=[{type:t.Directive,args:[{selector:"e-sheet>e-rows",queries:{children:new t.ContentChildren(v)}}]}],F.ctorParameters=function(){return[]};var R=["customWidth","format","hidden","index","isLocked","isReadOnly","validation","width"],k=[],y=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(k),o.directivePropList=R,o}return n(t,e),t}(r.ComplexBase);y.decorators=[{type:t.Directive,args:[{selector:"e-columns>e-column",inputs:R,outputs:k,queries:{}}]}],y.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var w=function(e){function t(){return e.call(this,"columns")||this}return n(t,e),t}(r.ArrayBase);w.decorators=[{type:t.Directive,args:[{selector:"e-sheet>e-columns",queries:{children:new t.ContentChildren(y)}}]}],w.ctorParameters=function(){return[]};var D=this&&this.__decorate||function(e,t,r,o){var a,n=arguments.length,i=n<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,o);else for(var l=e.length-1;l>=0;l--)(a=e[l])&&(i=(n<3?a(i):n>3?a(t,r,i):a(t,r))||i);return n>3&&i&&Object.defineProperty(t,r,i),i},I=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},M=["address","dataSource","fieldsOrder","query","showFieldAsHeader","startCell","template"],x=[],A=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(x),o.directivePropList=M,o}return n(t,e),t}(r.ComplexBase);A.decorators=[{type:t.Directive,args:[{selector:"e-ranges>e-range",inputs:M,outputs:x,queries:{}}]}],A.ctorParameters=function(){return[{type:t.ViewContainerRef}]},A.propDecorators={template:[{type:t.ContentChild,args:["template"]}]},D([r.Template(),I("design:type",Object)],A.prototype,"template",void 0);var V=function(e){function t(){return e.call(this,"ranges")||this}return n(t,e),t}(r.ArrayBase);V.decorators=[{type:t.Directive,args:[{selector:"e-sheet>e-ranges",queries:{children:new t.ContentChildren(A)}}]}],V.ctorParameters=function(){return[]};var H=["cFColor","format","range","type","value"],O=[],B=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(O),o.directivePropList=H,o}return n(t,e),t}(r.ComplexBase);B.decorators=[{type:t.Directive,args:[{selector:"e-conditionalformats>e-conditionalformat",inputs:H,outputs:O,queries:{}}]}],B.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var P=function(e){function t(){return e.call(this,"conditionalformats")||this}return n(t,e),t}(r.ArrayBase);P.decorators=[{type:t.Directive,args:[{selector:"e-sheet>e-conditionalformats",queries:{children:new t.ContentChildren(B)}}]}],P.ctorParameters=function(){return[]};var T=["activeCell","colCount","columns","conditionalFormats","frozenColumns","frozenRows","index","isProtected","name","paneTopLeftCell","password","protectSettings","ranges","rowCount","rows","selectedRange","showGridLines","showHeaders","standardHeight","state","topLeftCell","usedRange"],E=[],W=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,o.tags=["rows","columns","ranges","conditionalFormats"],r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(E),o.directivePropList=T,o}return n(t,e),t}(r.ComplexBase);W.decorators=[{type:t.Directive,args:[{selector:"e-sheets>e-sheet",inputs:T,outputs:E,queries:{childRows:new t.ContentChild(F),childColumns:new t.ContentChild(w),childRanges:new t.ContentChild(V),childConditionalFormats:new t.ContentChild(P)}}]}],W.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var j=function(e){function t(){return e.call(this,"sheets")||this}return n(t,e),t}(r.ArrayBase);j.decorators=[{type:t.Directive,args:[{selector:"ejs-spreadsheet>e-sheets",queries:{children:new t.ContentChildren(W)}}]}],j.ctorParameters=function(){return[]};var N=["comment","name","refersTo","scope"],U=[],L=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(U),o.directivePropList=N,o}return n(t,e),t}(r.ComplexBase);L.decorators=[{type:t.Directive,args:[{selector:"e-definednames>e-definedname",inputs:N,outputs:U,queries:{}}]}],L.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var q=function(e){function t(){return e.call(this,"definednames")||this}return n(t,e),t}(r.ArrayBase);q.decorators=[{type:t.Directive,args:[{selector:"ejs-spreadsheet>e-definednames",queries:{children:new t.ContentChildren(L)}}]}],q.ctorParameters=function(){return[]};var K=this&&this.__decorate||function(e,t,r,o){var a,n=arguments.length,i=n<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,o);else for(var l=e.length-1;l>=0;l--)(a=e[l])&&(i=(n<3?a(i):n>3?a(t,r,i):a(t,r))||i);return n>3&&i&&Object.defineProperty(t,r,i),i},z=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},_=["activeSheetIndex","allowAutoFill","allowCellFormatting","allowChart","allowConditionalFormat","allowDataValidation","allowDelete","allowEditing","allowFiltering","allowFindAndReplace","allowFreezePane","allowHyperlink","allowImage","allowInsert","allowMerge","allowNumberFormatting","allowOpen","allowPrint","allowResizing","allowSave","allowScrolling","allowSorting","allowUndoRedo","allowWrap","autoFillSettings","calculationMode","cellStyle","cssClass","currencyCode","definedNames","enableClipboard","enableContextMenu","enableKeyboardNavigation","enableKeyboardShortcut","enableNotes","enablePersistence","enableRtl","height","isProtected","listSeparator","locale","openSettings","openUrl","password","saveUrl","scrollSettings","selectionSettings","sheets","showAggregate","showFormulaBar","showRibbon","showSheetTabs","width"],X=["actionBegin","actionComplete","afterHyperlinkClick","afterHyperlinkCreate","beforeCellFormat","beforeCellRender","beforeCellSave","beforeCellUpdate","beforeConditionalFormat","beforeDataBound","beforeHyperlinkClick","beforeHyperlinkCreate","beforeOpen","beforeSave","beforeSelect","beforeSort","cellEdit","cellEdited","cellEditing","cellSave","contextMenuBeforeClose","contextMenuBeforeOpen","contextMenuItemSelect","created","dataBound","dataSourceChanged","dialogBeforeOpen","fileMenuBeforeClose","fileMenuBeforeOpen","fileMenuItemSelect","openComplete","openFailure","queryCellInfo","saveComplete","select","sortComplete"],G=[""];e.SpreadsheetComponent=function(e){function t(t,o,a,n){var i=e.call(this)||this;i.ngEle=t,i.srenderer=o,i.viewContainerRef=a,i.injector=n,i.tags=["sheets","definedNames"],i.element=i.ngEle.nativeElement,i.injectedModules=i.injectedModules||[];try{var l=i.injector.get("SpreadsheetClipboard");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(s){}try{l=i.injector.get("SpreadsheetEdit");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(d){}try{l=i.injector.get("SpreadsheetKeyboardNavigation");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(c){}try{l=i.injector.get("SpreadsheetKeyboardShortcut");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(u){}try{l=i.injector.get("SpreadsheetSelection");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(g){}try{l=i.injector.get("SpreadsheetContextMenu");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(p){}try{l=i.injector.get("SpreadsheetFormulaBar");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(h){}try{l=i.injector.get("SpreadsheetRibbon");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(m){}try{l=i.injector.get("SpreadsheetSave");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(C){}try{l=i.injector.get("SpreadsheetOpen");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(f){}try{l=i.injector.get("SpreadsheetSheetTabs");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(S){}try{l=i.injector.get("SpreadsheetDataBind");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(b){}try{l=i.injector.get("SpreadsheetCellFormat");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(v){}try{l=i.injector.get("SpreadsheetNumberFormat");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(F){}try{l=i.injector.get("SpreadsheetFormula");-1===i.injectedModules.indexOf(l)&&i.injectedModules.push(l)}catch(R){}return i.registerEvents(X),i.addTwoWay.call(i,G),r.setValue("currentInstance",i,i.viewContainerRef),i.context=new r.ComponentBase,i}return n(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.tagObjects[0].instance=this.childSheets,this.childDefinedNames&&(this.tagObjects[1].instance=this.childDefinedNames),this.context.ngAfterContentChecked(this)},t}(o.Spreadsheet),e.SpreadsheetComponent.decorators=[{type:t.Component,args:[{selector:"ejs-spreadsheet",inputs:_,outputs:X,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{childSheets:new t.ContentChild(j),childDefinedNames:new t.ContentChild(q)}}]}],e.SpreadsheetComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.SpreadsheetComponent.propDecorators={template:[{type:t.ContentChild,args:["template"]}]},K([r.Template(),z("design:type",Object)],e.SpreadsheetComponent.prototype,"template",void 0),e.SpreadsheetComponent=K([r.ComponentMixins([r.ComponentBase]),z("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.SpreadsheetComponent);var Y=function(){return function(){}}();Y.decorators=[{type:t.NgModule,args:[{imports:[a.CommonModule],declarations:[e.SpreadsheetComponent,s,d,g,p,C,f,v,F,y,w,A,V,B,P,W,j,L,q],exports:[e.SpreadsheetComponent,s,d,g,p,C,f,v,F,y,w,A,V,B,P,W,j,L,q]}]}],Y.ctorParameters=function(){return[]};var J={provide:"SpreadsheetClipboard",useValue:o.Clipboard},Q={provide:"SpreadsheetEdit",useValue:o.Edit},Z={provide:"SpreadsheetKeyboardNavigation",useValue:o.KeyboardNavigation},$={provide:"SpreadsheetKeyboardShortcut",useValue:o.KeyboardShortcut},ee={provide:"SpreadsheetSelection",useValue:o.Selection},te={provide:"SpreadsheetContextMenu",useValue:o.ContextMenu},re={provide:"SpreadsheetFormulaBar",useValue:o.FormulaBar},oe={provide:"SpreadsheetRibbon",useValue:o.Ribbon},ae={provide:"SpreadsheetSave",useValue:o.Save},ne={provide:"SpreadsheetOpen",useValue:o.Open},ie={provide:"SpreadsheetSheetTabs",useValue:o.SheetTabs},le={provide:"SpreadsheetDataBind",useValue:o.DataBind},se={provide:"SpreadsheetCellFormat",useValue:o.CellFormat},de={provide:"SpreadsheetNumberFormat",useValue:o.NumberFormat},ce={provide:"SpreadsheetFormula",useValue:o.Formula},ue=function(){return function(){}}();ue.decorators=[{type:t.NgModule,args:[{imports:[a.CommonModule,Y],exports:[Y],providers:[J,Q,Z,$,ee,te,re,oe,ae,ne,ie,le,se,de,ce]}]}],ue.ctorParameters=function(){return[]},e.ImageDirective=s,e.ImagesDirective=d,e.ChartDirective=g,e.ChartsDirective=p,e.CellDirective=C,e.CellsDirective=f,e.RowDirective=v,e.RowsDirective=F,e.ColumnDirective=y,e.ColumnsDirective=w,e.RangeDirective=A,e.RangesDirective=V,e.ConditionalFormatDirective=B,e.ConditionalFormatsDirective=P,e.SheetDirective=W,e.SheetsDirective=j,e.DefinedNameDirective=L,e.DefinedNamesDirective=q,e.SpreadsheetModule=Y,e.SpreadsheetAllModule=ue,e.ClipboardService=J,e.EditService=Q,e.KeyboardNavigationService=Z,e.KeyboardShortcutService=$,e.SelectionService=ee,e.ContextMenuService=te,e.FormulaBarService=re,e.RibbonService=oe,e.SaveService=ae,e.OpenService=ne,e.SheetTabsService=ie,e.DataBindService=le,e.CellFormatService=se,e.NumberFormatService=de,e.FormulaService=ce,e.ɵa=_,e.ɵb=X,e.Workbook=o.Workbook,e.Range=o.Range,e.UsedRange=o.UsedRange,e.Sheet=o.Sheet,e.getSheetIndex=o.getSheetIndex,e.getSheetIndexFromId=o.getSheetIndexFromId,e.getSheetNameFromAddress=o.getSheetNameFromAddress,e.getSheetIndexByName=o.getSheetIndexByName,e.updateSelectedRange=o.updateSelectedRange,e.getSelectedRange=o.getSelectedRange,e.getSheet=o.getSheet,e.getSheetNameCount=o.getSheetNameCount,e.getMaxSheetId=o.getMaxSheetId,e.initSheet=o.initSheet,e.getSheetName=o.getSheetName,e.moveSheet=o.moveSheet,e.duplicateSheet=o.duplicateSheet,e.Row=o.Row,e.getRow=o.getRow,e.setRow=o.setRow,e.isHiddenRow=o.isHiddenRow,e.isFilterHidden=o.isFilterHidden,e.getRowHeight=o.getRowHeight,e.setRowHeight=o.setRowHeight,e.getRowsHeight=o.getRowsHeight,e.Column=o.Column,e.getColumn=o.getColumn,e.setColumn=o.setColumn,e.getColumnWidth=o.getColumnWidth,e.getColumnsWidth=o.getColumnsWidth,e.isHiddenCol=o.isHiddenCol,e.checkColumnValidation=o.checkColumnValidation,e.Cell=o.Cell,e.getCell=o.getCell,e.setCell=o.setCell,e.skipDefaultValue=o.skipDefaultValue,e.wrap=o.wrap,e.getColorCode=o.getColorCode,e.getCustomColors=o.getCustomColors,e.isCustomDateTime=o.isCustomDateTime,e.OpenSettings=o.OpenSettings,e.getData=o.getData,e.getValueFromFormat=o.getValueFromFormat,e.getModel=o.getModel,e.processIdx=o.processIdx,e.getRangeIndexes=o.getRangeIndexes,e.getCellIndexes=o.getCellIndexes,e.getColIndex=o.getColIndex,e.getCellAddress=o.getCellAddress,e.getRangeAddress=o.getRangeAddress,e.getColumnHeaderText=o.getColumnHeaderText,e.getIndexesFromAddress=o.getIndexesFromAddress,e.getRangeFromAddress=o.getRangeFromAddress,e.getAddressFromSelectedRange=o.getAddressFromSelectedRange,e.getAddressInfo=o.getAddressInfo,e.getSheetIndexFromAddress=o.getSheetIndexFromAddress,e.getSwapRange=o.getSwapRange,e.isSingleCell=o.isSingleCell,e.executeTaskAsync=o.executeTaskAsync,e.getWorkbookRequiredModules=o.getWorkbookRequiredModules,e.CellStyle=o.CellStyle,e.FilterCollection=o.FilterCollection,e.SortCollection=o.SortCollection,e.DefineName=o.DefineName,e.ProtectSettings=o.ProtectSettings,e.Hyperlink=o.Hyperlink,e.Validation=o.Validation,e.Format=o.Format,e.ConditionalFormat=o.ConditionalFormat,e.LegendSettings=o.LegendSettings,e.DataLabelSettings=o.DataLabelSettings,e.Border=o.Border,e.MarkerSettings=o.MarkerSettings,e.MajorGridLines=o.MajorGridLines,e.MinorGridLines=o.MinorGridLines,e.Axis=o.Axis,e.Chart=o.Chart,e.Image=o.Image,e.AutoFillSettings=o.AutoFillSettings,e.workbookDestroyed=o.workbookDestroyed,e.updateSheetFromDataSource=o.updateSheetFromDataSource,e.dataSourceChanged=o.dataSourceChanged,e.dataChanged=o.dataChanged,e.triggerDataChange=o.triggerDataChange,e.workbookOpen=o.workbookOpen,e.beginSave=o.beginSave,e.beginAction=o.beginAction,e.sortImport=o.sortImport,e.findToolDlg=o.findToolDlg,e.exportDialog=o.exportDialog,e.setFilteredCollection=o.setFilteredCollection,e.saveCompleted=o.saveCompleted,e.applyNumberFormatting=o.applyNumberFormatting,e.getFormattedCellObject=o.getFormattedCellObject,e.calculateFormula=o.calculateFormula,e.refreshCellElement=o.refreshCellElement,e.setCellFormat=o.setCellFormat,e.findAllValues=o.findAllValues,e.textDecorationUpdate=o.textDecorationUpdate,e.applyCellFormat=o.applyCellFormat,e.updateUsedRange=o.updateUsedRange,e.updateRowColCount=o.updateRowColCount,e.workbookFormulaOperation=o.workbookFormulaOperation,e.workbookEditOperation=o.workbookEditOperation,e.checkDateFormat=o.checkDateFormat,e.checkNumberFormat=o.checkNumberFormat,e.parseDecimalNumber=o.parseDecimalNumber,e.getFormattedBarText=o.getFormattedBarText,e.activeCellChanged=o.activeCellChanged,e.openSuccess=o.openSuccess,e.openFailure=o.openFailure,e.sheetCreated=o.sheetCreated,e.sheetsDestroyed=o.sheetsDestroyed,e.aggregateComputation=o.aggregateComputation,e.getUniqueRange=o.getUniqueRange,e.removeUniquecol=o.removeUniquecol,e.checkUniqueRange=o.checkUniqueRange,e.reApplyFormula=o.reApplyFormula,e.clearFormulaDependentCells=o.clearFormulaDependentCells,e.formulaInValidation=o.formulaInValidation,e.beforeSort=o.beforeSort,e.initiateSort=o.initiateSort,e.updateSortedDataOnCell=o.updateSortedDataOnCell,e.sortComplete=o.sortComplete,e.sortRangeAlert=o.sortRangeAlert,e.initiatelink=o.initiatelink,e.beforeHyperlinkCreate=o.beforeHyperlinkCreate,e.afterHyperlinkCreate=o.afterHyperlinkCreate,e.beforeHyperlinkClick=o.beforeHyperlinkClick,e.afterHyperlinkClick=o.afterHyperlinkClick,e.addHyperlink=o.addHyperlink,e.setLinkModel=o.setLinkModel,e.beforeFilter=o.beforeFilter,e.initiateFilter=o.initiateFilter,e.filterComplete=o.filterComplete,e.filterRangeAlert=o.filterRangeAlert,e.clearAllFilter=o.clearAllFilter,e.wrapEvent=o.wrapEvent,e.onSave=o.onSave,e.insert=o.insert,e.deleteAction=o.deleteAction,e.insertModel=o.insertModel,e.deleteModel=o.deleteModel,e.isValidation=o.isValidation,e.cellValidation=o.cellValidation,e.addHighlight=o.addHighlight,e.dataValidate=o.dataValidate,e.find=o.find,e["goto"]=o["goto"],e.findWorkbookHandler=o.findWorkbookHandler,e.replace=o.replace,e.replaceAll=o.replaceAll,e.showFindAlert=o.showFindAlert,e.findKeyUp=o.findKeyUp,e.removeHighlight=o.removeHighlight,e.queryCellInfo=o.queryCellInfo,e.count=o.count,e.findCount=o.findCount,e.protectSheetWorkBook=o.protectSheetWorkBook,e.updateToggle=o.updateToggle,e.protectsheetHandler=o.protectsheetHandler,e.replaceAllDialog=o.replaceAllDialog,e.unprotectsheetHandler=o.unprotectsheetHandler,e.workBookeditAlert=o.workBookeditAlert,e.workbookReadonlyAlert=o.workbookReadonlyAlert,e.setLockCells=o.setLockCells,e.applyLockCells=o.applyLockCells,e.setMerge=o.setMerge,e.applyMerge=o.applyMerge,e.mergedRange=o.mergedRange,e.activeCellMergedRange=o.activeCellMergedRange,e.insertMerge=o.insertMerge,e.hideShow=o.hideShow,e.setCFRule=o.setCFRule,e.applyCF=o.applyCF,e.clearCFRule=o.clearCFRule,e.clear=o.clear,e.clearCF=o.clearCF,e.setImage=o.setImage,e.setChart=o.setChart,e.initiateChart=o.initiateChart,e.refreshRibbonIcons=o.refreshRibbonIcons,e.refreshChart=o.refreshChart,e.refreshChartSize=o.refreshChartSize,e.deleteChartColl=o.deleteChartColl,e.initiateChartModel=o.initiateChartModel,e.focusChartBorder=o.focusChartBorder,e.saveError=o.saveError,e.updateHighlight=o.updateHighlight,e.beforeInsert=o.beforeInsert,e.beforeDelete=o.beforeDelete,e.deleteHyperlink=o.deleteHyperlink,e.moveOrDuplicateSheet=o.moveOrDuplicateSheet,e.setAutoFill=o.setAutoFill,e.refreshCell=o.refreshCell,e.getFillInfo=o.getFillInfo,e.getautofillDDB=o.getautofillDDB,e.rowFillHandler=o.rowFillHandler,e.getTextSpace=o.getTextSpace,e.refreshClipboard=o.refreshClipboard,e.updateView=o.updateView,e.selectionComplete=o.selectionComplete,e.refreshInsertDelete=o.refreshInsertDelete,e.getUpdatedFormulaOnInsertDelete=o.getUpdatedFormulaOnInsertDelete,e.beforeCellUpdate=o.beforeCellUpdate,e.duplicateSheetFilterHandler=o.duplicateSheetFilterHandler,e.unMerge=o.unMerge,e.checkFormulaRef=o.checkFormulaRef,e.parseFormulaArgument=o.parseFormulaArgument,e.getCellRefValue=o.getCellRefValue,e.commputeFormulaValue=o.commputeFormulaValue,e.getChartRowIdxFromClientY=o.getChartRowIdxFromClientY,e.getChartColIdxFromClientX=o.getChartColIdxFromClientX,e.refreshChartCellOnInit=o.refreshChartCellOnInit,e.localizedFormatAction=o.localizedFormatAction,e.moveSheetHandler=o.moveSheetHandler,e.addListValidationDropdown=o.addListValidationDropdown,e.sheetRenameUpdate=o.sheetRenameUpdate,e.updateSortCollection=o.updateSortCollection,e.importModelUpdate=o.importModelUpdate,e.checkIsFormula=o.checkIsFormula,e.isCellReference=o.isCellReference,e.isChar=o.isChar,e.isRowSelected=o.isRowSelected,e.isColumnSelected=o.isColumnSelected,e.inRange=o.inRange,e.isInMultipleRange=o.isInMultipleRange,e.isInRange=o.isInRange,e.getSplittedAddressForColumn=o.getSplittedAddressForColumn,e.isLocked=o.isLocked,e.isValidCellReference=o.isValidCellReference,e.columnIndex=o.columnIndex,e.skipHiddenIdx=o.skipHiddenIdx,e.isHeightCheckNeeded=o.isHeightCheckNeeded,e.getUpdatedFormula=o.getUpdatedFormula,e.getLeadingSpaces=o.getLeadingSpaces,e.getTrailingSpaces=o.getTrailingSpaces,e.updateCell=o.updateCell,e.getDataRange=o.getDataRange,e.insertFormatRange=o.insertFormatRange,e.deleteFormatRange=o.deleteFormatRange,e.updateCFModel=o.updateCFModel,e.checkRange=o.checkRange,e.parseLocaleNumber=o.parseLocaleNumber,e.getViewportIndexes=o.getViewportIndexes,e.setVisibleMergeIndex=o.setVisibleMergeIndex,e.isImported=o.isImported,e.getAutoDetectFormatParser=o.getAutoDetectFormatParser,e.applyPredicates=o.applyPredicates,e.isReadOnly=o.isReadOnly,e.isReadOnlyCells=o.isReadOnlyCells,e.getUpdatedRange=o.getUpdatedRange,e.addDPRValue=o.addDPRValue,e.updateMergeBorder=o.updateMergeBorder,e.toFraction=o.toFraction,e.getGcd=o.getGcd,e.intToDate=o.intToDate,e.dateToInt=o.dateToInt,e.isDateTime=o.isDateTime,e.isNumber=o.isNumber,e.evaluate=o.evaluate,e.toDate=o.toDate,e.parseIntValue=o.parseIntValue,e.workbookLocale=o.workbookLocale,e.localeData=o.localeData,e.DataBind=o.DataBind,e.WorkbookOpen=o.WorkbookOpen,e.WorkbookSave=o.WorkbookSave,e.WorkbookFormula=o.WorkbookFormula,e.WorkbookNumberFormat=o.WorkbookNumberFormat,e.getFormatFromType=o.getFormatFromType,e.getTypeFromFormat=o.getTypeFromFormat,e.convertToDefaultFormat=o.convertToDefaultFormat,e.configureLocalizedFormat=o.configureLocalizedFormat,e.WorkbookSort=o.WorkbookSort,e.WorkbookFilter=o.WorkbookFilter,e.WorkbookImage=o.WorkbookImage,e.WorkbookChart=o.WorkbookChart,e.WorkbookCellFormat=o.WorkbookCellFormat,e.WorkbookEdit=o.WorkbookEdit,e.WorkbookHyperlink=o.WorkbookHyperlink,e.WorkbookInsert=o.WorkbookInsert,e.WorkbookDelete=o.WorkbookDelete,e.WorkbookDataValidation=o.WorkbookDataValidation,e.WorkbookFindAndReplace=o.WorkbookFindAndReplace,e.WorkbookProtectSheet=o.WorkbookProtectSheet,e.WorkbookMerge=o.WorkbookMerge,e.WorkbookConditionalFormat=o.WorkbookConditionalFormat,e.WorkbookAutoFill=o.WorkbookAutoFill,e.getRequiredModules=o.getRequiredModules,e.ribbon=o.ribbon,e.formulaBar=o.formulaBar,e.sheetTabs=o.sheetTabs,e.refreshSheetTabs=o.refreshSheetTabs,e.isFormulaBarEdit=o.isFormulaBarEdit,e.contentLoaded=o.contentLoaded,e.mouseDown=o.mouseDown,e.spreadsheetDestroyed=o.spreadsheetDestroyed,e.editOperation=o.editOperation,e.formulaOperation=o.formulaOperation,e.formulaBarOperation=o.formulaBarOperation,e.click=o.click,e.keyUp=o.keyUp,e.keyDown=o.keyDown,e.formulaKeyUp=o.formulaKeyUp,e.formulaBarUpdate=o.formulaBarUpdate,e.onVerticalScroll=o.onVerticalScroll,e.onHorizontalScroll=o.onHorizontalScroll,e.focusRenameInput=o.focusRenameInput,e.beforeContentLoaded=o.beforeContentLoaded,e.beforeVirtualContentLoaded=o.beforeVirtualContentLoaded,e.virtualContentLoaded=o.virtualContentLoaded,e.contextMenuOpen=o.contextMenuOpen,e.cellNavigate=o.cellNavigate,e.mouseUpAfterSelection=o.mouseUpAfterSelection,e.cMenuBeforeOpen=o.cMenuBeforeOpen,e.insertSheetTab=o.insertSheetTab,e.removeSheetTab=o.removeSheetTab,e.renameSheetTab=o.renameSheetTab,e.ribbonClick=o.ribbonClick,e.refreshRibbon=o.refreshRibbon,e.enableToolbarItems=o.enableToolbarItems,e.tabSwitch=o.tabSwitch,e.selectRange=o.selectRange,e.rangeSelectionByKeydown=o.rangeSelectionByKeydown,e.cut=o.cut,e.copy=o.copy,e.paste=o.paste,e.clearCopy=o.clearCopy,e.dataBound=o.dataBound,e.beforeDataBound=o.beforeDataBound,e.addContextMenuItems=o.addContextMenuItems,e.removeContextMenuItems=o.removeContextMenuItems,e.enableContextMenuItems=o.enableContextMenuItems,e.enableFileMenuItems=o.enableFileMenuItems,e.hideFileMenuItems=o.hideFileMenuItems,e.addFileMenuItems=o.addFileMenuItems,e.hideRibbonTabs=o.hideRibbonTabs,e.enableRibbonTabs=o.enableRibbonTabs,e.addRibbonTabs=o.addRibbonTabs,e.addToolbarItems=o.addToolbarItems,e.hideToolbarItems=o.hideToolbarItems,e.beforeRibbonCreate=o.beforeRibbonCreate,e.rowHeightChanged=o.rowHeightChanged,e.colWidthChanged=o.colWidthChanged,e.onContentScroll=o.onContentScroll,e.deInitProperties=o.deInitProperties,e.activeSheetChanged=o.activeSheetChanged,e.initiateCustomSort=o.initiateCustomSort,e.applySort=o.applySort,e.collaborativeUpdate=o.collaborativeUpdate,e.autoFit=o.autoFit,e.refreshFilterCellsOnResize=o.refreshFilterCellsOnResize,e.updateToggleItem=o.updateToggleItem,e.initiateHyperlink=o.initiateHyperlink,e.editHyperlink=o.editHyperlink,e.openHyperlink=o.openHyperlink,e.addNote=o.addNote,e.editNote=o.editNote,e.deleteNote=o.deleteNote,e.showNote=o.showNote,e.createNoteIndicator=o.createNoteIndicator,e.updateNoteContainer=o.updateNoteContainer,e.removeNoteContainer=o.removeNoteContainer,e.removeHyperlink=o.removeHyperlink,e.createHyperlinkElement=o.createHyperlinkElement,e.sheetNameUpdate=o.sheetNameUpdate,e.hideSheet=o.hideSheet,e.performUndoRedo=o.performUndoRedo,e.updateUndoRedoCollection=o.updateUndoRedoCollection,e.setActionData=o.setActionData,e.getBeforeActionData=o.getBeforeActionData,e.clearUndoRedoCollection=o.clearUndoRedoCollection,e.initiateFilterUI=o.initiateFilterUI,e.renderFilterCell=o.renderFilterCell,e.refreshFilterRange=o.refreshFilterRange,e.reapplyFilter=o.reapplyFilter,e.filterByCellValue=o.filterByCellValue,e.clearFilter=o.clearFilter,e.getFilteredColumn=o.getFilteredColumn,e.completeAction=o.completeAction,e.filterCellKeyDown=o.filterCellKeyDown,e.getFilterRange=o.getFilterRange,e.setAutoFit=o.setAutoFit,e.refreshFormulaDatasource=o.refreshFormulaDatasource,e.initiateDataValidation=o.initiateDataValidation,e.validationError=o.validationError,e.startEdit=o.startEdit,e.invalidData=o.invalidData,e.clearInvalid=o.clearInvalid,e.protectSheet=o.protectSheet,e.applyProtect=o.applyProtect,e.unprotectSheet=o.unprotectSheet,e.protectCellFormat=o.protectCellFormat,e.gotoDlg=o.gotoDlg,e.findDlg=o.findDlg,e.findHandler=o.findHandler,e.created=o.created,e.spreadsheetCreated=o.spreadsheetCreated,e.editAlert=o.editAlert,e.readonlyAlert=o.readonlyAlert,e.finiteAlert=o.finiteAlert,e.setUndoRedo=o.setUndoRedo,e.enableFormulaInput=o.enableFormulaInput,e.protectSelection=o.protectSelection,e.hiddenMerge=o.hiddenMerge,e.checkPrevMerge=o.checkPrevMerge,e.checkMerge=o.checkMerge,e.removeDataValidation=o.removeDataValidation,e.showAggregate=o.showAggregate,e.goToSheet=o.goToSheet,e.showSheet=o.showSheet,e.renderCFDlg=o.renderCFDlg,e.clearViewer=o.clearViewer,e.initiateFormulaReference=o.initiateFormulaReference,e.initiateCur=o.initiateCur,e.clearCellRef=o.clearCellRef,e.editValue=o.editValue,e.addressHandle=o.addressHandle,e.initiateEdit=o.initiateEdit,e.forRefSelRender=o.forRefSelRender,e.insertImage=o.insertImage,e.refreshOverlayElem=o.refreshOverlayElem,e.refreshImgCellObj=o.refreshImgCellObj,e.getRowIdxFromClientY=o.getRowIdxFromClientY,e.getColIdxFromClientX=o.getColIdxFromClientX,e.createImageElement=o.createImageElement,e.deleteImage=o.deleteImage,e.deleteChart=o.deleteChart,e.refreshChartCellObj=o.refreshChartCellObj,e.refreshChartCellModel=o.refreshChartCellModel,e.refreshImagePosition=o.refreshImagePosition,e.updateTableWidth=o.updateTableWidth,e.focusBorder=o.focusBorder,e.clearChartBorder=o.clearChartBorder,e.insertChart=o.insertChart,e.chartRangeSelection=o.chartRangeSelection,e.insertDesignChart=o.insertDesignChart,e.removeDesignChart=o.removeDesignChart,e.chartDesignTab=o.chartDesignTab,e.undoRedoForChartDesign=o.undoRedoForChartDesign,e.protectWorkbook=o.protectWorkbook,e.unProtectWorkbook=o.unProtectWorkbook,e.setProtectWorkbook=o.setProtectWorkbook,e.removeWorkbookProtection=o.removeWorkbookProtection,e.importProtectWorkbook=o.importProtectWorkbook,e.selectionStatus=o.selectionStatus,e.freeze=o.freeze,e.overlayEleSize=o.overlayEleSize,e.updateScroll=o.updateScroll,e.positionAutoFillElement=o.positionAutoFillElement,e.hideAutoFillOptions=o.hideAutoFillOptions,e.performAutoFill=o.performAutoFill,e.selectAutoFillRange=o.selectAutoFillRange,e.autoFill=o.autoFill,e.hideAutoFillElement=o.hideAutoFillElement,e.unProtectSheetPassword=o.unProtectSheetPassword,e.updateTranslate=o.updateTranslate,e.getUpdatedScrollPosition=o.getUpdatedScrollPosition,e.updateScrollValue=o.updateScrollValue,e.beforeCheckboxRender=o.beforeCheckboxRender,e.refreshCheckbox=o.refreshCheckbox,e.renderInsertDlg=o.renderInsertDlg,e.toggleProtect=o.toggleProtect,e.propertyChange=o.propertyChange,e.updateWrapCell=o.updateWrapCell,e.getUpdateUsingRaf=o.getUpdateUsingRaf,e.removeAllChildren=o.removeAllChildren,e.getColGroupWidth=o.getColGroupWidth,e.getScrollBarWidth=o.getScrollBarWidth,e.getSiblingsHeight=o.getSiblingsHeight,e.inView=o.inView,e.getCellPosition=o.getCellPosition,e.setPosition=o.setPosition,e.removeRangeEle=o.removeRangeEle,e.locateElem=o.locateElem,e.setStyleAttribute=o.setStyleAttribute,e.getStartEvent=o.getStartEvent,e.getMoveEvent=o.getMoveEvent,e.getEndEvent=o.getEndEvent,e.isTouchStart=o.isTouchStart,e.isTouchMove=o.isTouchMove,e.isTouchEnd=o.isTouchEnd,e.isMouseDown=o.isMouseDown,e.isMouseMove=o.isMouseMove,e.isMouseUp=o.isMouseUp,e.isNavigationKey=o.isNavigationKey,e.getClientX=o.getClientX,e.getClientY=o.getClientY,e.getPageX=o.getPageX,e.getPageY=o.getPageY,e.getDPRValue=o.getDPRValue,e.setAriaOptions=o.setAriaOptions,e.destroyComponent=o.destroyComponent,e.setResize=o.setResize,e.setWidthAndHeight=o.setWidthAndHeight,e.setTextLineHeight=o.setTextLineHeight,e.findMaxValue=o.findMaxValue,e.updateAction=o.updateAction,e.hasTemplate=o.hasTemplate,e.setRowEleHeight=o.setRowEleHeight,e.getTextHeight=o.getTextHeight,e.getLineHeight=o.getLineHeight,e.getTextWidth=o.getTextWidth,e.getLines=o.getLines,e.getBorderWidth=o.getBorderWidth,e.getBorderHeight=o.getBorderHeight,e.getExcludedColumnWidth=o.getExcludedColumnWidth,e.getTextHeightWithBorder=o.getTextHeightWithBorder,e.setMaxHgt=o.setMaxHgt,e.getMaxHgt=o.getMaxHgt,e.focus=o.focus,e.isLockedCells=o.isLockedCells,e.isDiscontinuousRange=o.isDiscontinuousRange,e.clearRange=o.clearRange,e.getBottomOffset=o.getBottomOffset,e.getRightIdx=o.getRightIdx,e.setColMinWidth=o.setColMinWidth,e.getSheetProperties=o.getSheetProperties,e.getChartsIndexes=o.getChartsIndexes,e.isColumnRange=o.isColumnRange,e.isRowRange=o.isRowRange,e.setStandardHeight=o.setStandardHeight,e.getStandardHeight=o.getStandardHeight,e.removeElements=o.removeElements,e.isValidUrl=o.isValidUrl,e.ScrollSettings=o.ScrollSettings,e.SelectionSettings=o.SelectionSettings,e.DISABLED=o.DISABLED,e.WRAPTEXT=o.WRAPTEXT,e.locale=o.locale,e.dialog=o.dialog,e.actionEvents=o.actionEvents,e.overlay=o.overlay,e.fontColor=o.fontColor,e.fillColor=o.fillColor,e.keyCodes=o.keyCodes,e.defaultLocale=o.defaultLocale,e.Spreadsheet=o.Spreadsheet,e.Clipboard=o.Clipboard,e.Edit=o.Edit,e.Selection=o.Selection,e.Scroll=o.Scroll,e.VirtualScroll=o.VirtualScroll,e.KeyboardNavigation=o.KeyboardNavigation,e.KeyboardShortcut=o.KeyboardShortcut,e.CellFormat=o.CellFormat,e.Resize=o.Resize,e.ShowHide=o.ShowHide,e.SpreadsheetHyperlink=o.SpreadsheetHyperlink,e.UndoRedo=o.UndoRedo,e.WrapText=o.WrapText,e.Insert=o.Insert,e.Delete=o.Delete,e.DataValidation=o.DataValidation,e.ProtectSheet=o.ProtectSheet,e.FindAndReplace=o.FindAndReplace,e.Merge=o.Merge,e.ConditionalFormatting=o.ConditionalFormatting,e.AutoFill=o.AutoFill,e.SpreadsheetNote=o.SpreadsheetNote,e.Ribbon=o.Ribbon,e.FormulaBar=o.FormulaBar,e.Formula=o.Formula,e.SheetTabs=o.SheetTabs,e.Open=o.Open,e.Save=o.Save,e.ContextMenu=o.ContextMenu,e.NumberFormat=o.NumberFormat,e.Sort=o.Sort,e.Filter=o.Filter,e.SpreadsheetImage=o.SpreadsheetImage,e.SpreadsheetChart=o.SpreadsheetChart,e.Render=o.Render,e.SheetRender=o.SheetRender,e.RowRenderer=o.RowRenderer,e.CellRenderer=o.CellRenderer,e.Calculate=o.Calculate,e.FormulaError=o.FormulaError,e.FormulaInfo=o.FormulaInfo,e.CalcSheetFamilyItem=o.CalcSheetFamilyItem,e.getAlphalabel=o.getAlphalabel,e.ValueChangedArgs=o.ValueChangedArgs,e.Parser=o.Parser,e.CalculateCommon=o.CalculateCommon,e.isUndefined=o.isUndefined,e.getSkeletonVal=o.getSkeletonVal,e.isExternalFileLink=o.isExternalFileLink,e.CommonErrors=o.CommonErrors,e.FormulasErrorsStrings=o.FormulasErrorsStrings,e.ExcelFileFormats=o.ExcelFileFormats,e.BasicFormulas=o.BasicFormulas,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
|
-
//# sourceMappingURL=ej2-angular-spreadsheet.umd.min.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-angular-spreadsheet.umd.min.js","sources":["~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/image.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/chart.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/cells.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/rows.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/columns.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/ranges.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/conditionalformats.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/sheets.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/definednames.directive.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/spreadsheet.component.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/spreadsheet.module.ts","~/@syncfusion/ej2-angular-spreadsheet/src/spreadsheet/spreadsheet-all.module.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['height', 'id', 'left', 'src', 'top', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class ImageDirective extends ComplexBase<ImageDirective> {\npublic directivePropList: any;\n/**\n * Specifies the height of the image.\n * \\@default 300\n * \\@asptype double\n */\npublic height: any;\n/**\n * Specifies image element id.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies the width of the image.\n * \\@default 0\n * \\@asptype double\n */\npublic left: any;\n/**\n * Specifies the image source.\n * \\@default ''\n */\npublic src: any;\n/**\n * Specifies the height of the image.\n * \\@default 0\n * \\@asptype double\n */\npublic top: any;\n/**\n * Specifies the width of the image.\n * \\@default 400\n * \\@asptype double\n */\npublic width: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-images>e-image',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ImageDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nImageDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nImageDirective.ctorParameters;\n/** @type {?} */\nImageDirective.prototype.directivePropList;\n/**\n * Specifies the height of the image.\n * \\@default 300\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.height;\n/**\n * Specifies image element id.\n * \\@default ''\n * @type {?}\n */\nImageDirective.prototype.id;\n/**\n * Specifies the width of the image.\n * \\@default 0\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.left;\n/**\n * Specifies the image source.\n * \\@default ''\n * @type {?}\n */\nImageDirective.prototype.src;\n/**\n * Specifies the height of the image.\n * \\@default 0\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.top;\n/**\n * Specifies the width of the image.\n * \\@default 400\n * \\@asptype double\n * @type {?}\n */\nImageDirective.prototype.width;\n/** @type {?} */\nImageDirective.prototype.viewContainerRef;\n}\n\n/**\n * Image Array Directive\n */\nexport class ImagesDirective extends ArrayBase<ImagesDirective> {\nconstructor() {\n super('image');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-cell>e-images',\n queries: {\n children: new ContentChildren(ImageDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ImagesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nImagesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nImagesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['dataLabelSettings', 'height', 'id', 'isSeriesInRows', 'legendSettings', 'markerSettings', 'primaryXAxis', 'primaryYAxis', 'range', 'theme', 'title', 'type', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class ChartDirective extends ComplexBase<ChartDirective> {\npublic directivePropList: any;\n/**\n * Specifies the type of a chart.\n * \\@default 'Line'\n */\npublic type: any;\n/**\n * The data label for the series.\n * \\@default {}\n */\npublic dataLabelSettings: any;\n/**\n * Specifies the height of the chart.\n * \\@default 290\n */\npublic height: any;\n/**\n * Specifies chart element id.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies to switch the row or a column.\n * \\@default false\n */\npublic isSeriesInRows: any;\n/**\n * Options for customizing the legend of the chart.\n * \\@default {}\n */\npublic legendSettings: any;\n/**\n * Options to configure the marker\n * \\@default {}\n */\npublic markerSettings: any;\n/**\n * Options to configure the horizontal axis.\n * \\@default {}\n */\npublic primaryXAxis: any;\n/**\n * Options to configure the vertical axis.\n * \\@default {}\n */\npublic primaryYAxis: any;\n/**\n * Specifies the selected range or specified range.\n * \\@default ''\n */\npublic range: any;\n/**\n * Specifies the theme of a chart.\n * \\@default 'Material'\n */\npublic theme: any;\n/**\n * Title of the chart\n * \\@default ''\n */\npublic title: any;\n/**\n * Specifies the width of the chart.\n * \\@default 480\n */\npublic width: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-charts>e-chart',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ChartDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nChartDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nChartDirective.ctorParameters;\n/** @type {?} */\nChartDirective.prototype.directivePropList;\n/**\n * Specifies the type of a chart.\n * \\@default 'Line'\n * @type {?}\n */\nChartDirective.prototype.type;\n/**\n * The data label for the series.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.dataLabelSettings;\n/**\n * Specifies the height of the chart.\n * \\@default 290\n * @type {?}\n */\nChartDirective.prototype.height;\n/**\n * Specifies chart element id.\n * \\@default ''\n * @type {?}\n */\nChartDirective.prototype.id;\n/**\n * Specifies to switch the row or a column.\n * \\@default false\n * @type {?}\n */\nChartDirective.prototype.isSeriesInRows;\n/**\n * Options for customizing the legend of the chart.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.legendSettings;\n/**\n * Options to configure the marker\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.markerSettings;\n/**\n * Options to configure the horizontal axis.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.primaryXAxis;\n/**\n * Options to configure the vertical axis.\n * \\@default {}\n * @type {?}\n */\nChartDirective.prototype.primaryYAxis;\n/**\n * Specifies the selected range or specified range.\n * \\@default ''\n * @type {?}\n */\nChartDirective.prototype.range;\n/**\n * Specifies the theme of a chart.\n * \\@default 'Material'\n * @type {?}\n */\nChartDirective.prototype.theme;\n/**\n * Title of the chart\n * \\@default ''\n * @type {?}\n */\nChartDirective.prototype.title;\n/**\n * Specifies the width of the chart.\n * \\@default 480\n * @type {?}\n */\nChartDirective.prototype.width;\n/** @type {?} */\nChartDirective.prototype.viewContainerRef;\n}\n\n/**\n * Chart Array Directive\n */\nexport class ChartsDirective extends ArrayBase<ChartsDirective> {\nconstructor() {\n super('chart');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-cell>e-charts',\n queries: {\n children: new ContentChildren(ChartDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ChartsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nChartsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nChartsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { ImagesDirective } from './image.directive';\nimport { ChartsDirective } from './chart.directive';\n\nlet /** @type {?} */ input: string[] = ['chart', 'colSpan', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'isReadOnly', 'notes', 'rowSpan', 'style', 'validation', 'value', 'wrap'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-cell` directive represent a cell of the Angular Spreadsheet.\n * It must be contained in a `e-row` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-rows>\n * <e-row>\n * <e-cells>\n * <e-cell value='A1'></e-cell>\n * </e-cells>\n * </e-row>\n * </e-rows>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class CellDirective extends ComplexBase<CellDirective> {\npublic directivePropList: any;\npublic childImage: any;\npublic childChart: any;\npublic tags: string[] = ['image', 'chart'];\n/**\n * Specifies the chart of the cell.\n * \\@default []\n */\npublic chart: any;\n/**\n * Specifies the column-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n */\npublic colSpan: any;\n/**\n * Specifies the number format code to display value in specified number format.\n * \\@default 'General'\n */\npublic format: any;\n/**\n * Defines the formula or expression of the cell.\n * \\@default ''\n */\npublic formula: any;\n/**\n * Specifies the hyperlink of the cell.\n * \\@default ''\n */\npublic hyperlink: any;\n/**\n * Specifies the image of the cell.\n * \\@default []\n */\npublic image: any;\n/**\n * Specifies the index of the cell.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.\n * \\@default true\n */\npublic isLocked: any;\n/**\n * Represents whether a cell in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n */\npublic isReadOnly: any;\n/**\n * Specifies the note of the cell.\n * \\@default ''\n */\npublic notes: any;\n/**\n * Specifies the row-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n */\npublic rowSpan: any;\n/**\n * Specifies the cell style options. \n * \n * \\@default {}\n */\npublic style: any;\n/**\n * Specifies the validation of the cell.\n * \\@default ''\n */\npublic validation: any;\n/**\n * Defines the value of the cell which can be text or number.\n * \\@default ''\n */\npublic value: any;\n/**\n * Wraps the cell text to the next line, if the text width exceeds the column width.\n * \\@default false\n */\npublic wrap: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-cells>e-cell',\n inputs: input,\n outputs: outputs, \n queries: {\n childImage: new ContentChild(ImagesDirective), \n childChart: new ContentChild(ChartsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction CellDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nCellDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nCellDirective.ctorParameters;\n/** @type {?} */\nCellDirective.prototype.directivePropList;\n/** @type {?} */\nCellDirective.prototype.childImage;\n/** @type {?} */\nCellDirective.prototype.childChart;\n/** @type {?} */\nCellDirective.prototype.tags;\n/**\n * Specifies the chart of the cell.\n * \\@default []\n * @type {?}\n */\nCellDirective.prototype.chart;\n/**\n * Specifies the column-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n * @type {?}\n */\nCellDirective.prototype.colSpan;\n/**\n * Specifies the number format code to display value in specified number format.\n * \\@default 'General'\n * @type {?}\n */\nCellDirective.prototype.format;\n/**\n * Defines the formula or expression of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.formula;\n/**\n * Specifies the hyperlink of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.hyperlink;\n/**\n * Specifies the image of the cell.\n * \\@default []\n * @type {?}\n */\nCellDirective.prototype.image;\n/**\n * Specifies the index of the cell.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nCellDirective.prototype.index;\n/**\n * Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.\n * \\@default true\n * @type {?}\n */\nCellDirective.prototype.isLocked;\n/**\n * Represents whether a cell in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n * @type {?}\n */\nCellDirective.prototype.isReadOnly;\n/**\n * Specifies the note of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.notes;\n/**\n * Specifies the row-wise cell merge count.\n * \\@default 1\n * \\@asptype int\n * @type {?}\n */\nCellDirective.prototype.rowSpan;\n/**\n * Specifies the cell style options. \n * \n * \\@default {}\n * @type {?}\n */\nCellDirective.prototype.style;\n/**\n * Specifies the validation of the cell.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.validation;\n/**\n * Defines the value of the cell which can be text or number.\n * \\@default ''\n * @type {?}\n */\nCellDirective.prototype.value;\n/**\n * Wraps the cell text to the next line, if the text width exceeds the column width.\n * \\@default false\n * @type {?}\n */\nCellDirective.prototype.wrap;\n/** @type {?} */\nCellDirective.prototype.viewContainerRef;\n}\n\n/**\n * Cell Array Directive\n */\nexport class CellsDirective extends ArrayBase<CellsDirective> {\nconstructor() {\n super('cells');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-row>e-cells',\n queries: {\n children: new ContentChildren(CellDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction CellsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nCellsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nCellsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { CellsDirective } from './cells.directive';\n\nlet /** @type {?} */ input: string[] = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index', 'isReadOnly'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-row` directive represent a row of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-rows>\n * <e-row></e-row>\n * </e-rows>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class RowDirective extends ComplexBase<RowDirective> {\npublic directivePropList: any;\npublic childCells: any;\npublic tags: string[] = ['cells'];\n/**\n * Specifies cell and its properties for the row.\n * \\@default []\n */\npublic cells: any;\n/**\n * specifies custom height of the row.\n * \\@default false\n */\npublic customHeight: any;\n/**\n * Specifies format of the row.\n * \\@default {}\n */\npublic format: any;\n/**\n * Specifies height of the row.\n * \\@default 20\n * \\@asptype double\n * \\@aspdefaultvalue 20.0\n */\npublic height: any;\n/**\n * To hide/show the row in spreadsheet.\n * \\@default false\n */\npublic hidden: any;\n/**\n * Specifies the index to the row. Based on the index, row properties are applied.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n */\npublic isReadOnly: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-rows>e-row',\n inputs: input,\n outputs: outputs, \n queries: {\n childCells: new ContentChild(CellsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction RowDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRowDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRowDirective.ctorParameters;\n/** @type {?} */\nRowDirective.prototype.directivePropList;\n/** @type {?} */\nRowDirective.prototype.childCells;\n/** @type {?} */\nRowDirective.prototype.tags;\n/**\n * Specifies cell and its properties for the row.\n * \\@default []\n * @type {?}\n */\nRowDirective.prototype.cells;\n/**\n * specifies custom height of the row.\n * \\@default false\n * @type {?}\n */\nRowDirective.prototype.customHeight;\n/**\n * Specifies format of the row.\n * \\@default {}\n * @type {?}\n */\nRowDirective.prototype.format;\n/**\n * Specifies height of the row.\n * \\@default 20\n * \\@asptype double\n * \\@aspdefaultvalue 20.0\n * @type {?}\n */\nRowDirective.prototype.height;\n/**\n * To hide/show the row in spreadsheet.\n * \\@default false\n * @type {?}\n */\nRowDirective.prototype.hidden;\n/**\n * Specifies the index to the row. Based on the index, row properties are applied.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nRowDirective.prototype.index;\n/**\n * Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n * @type {?}\n */\nRowDirective.prototype.isReadOnly;\n/** @type {?} */\nRowDirective.prototype.viewContainerRef;\n}\n\n/**\n * Row Array Directive\n */\nexport class RowsDirective extends ArrayBase<RowsDirective> {\nconstructor() {\n super('rows');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-rows',\n queries: {\n children: new ContentChildren(RowDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction RowsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRowsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRowsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'isReadOnly', 'validation', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-columns>\n * <e-column width='100'></e-column>\n * </e-columns>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * specifies custom width of the column.\n * \\@default false\n */\npublic customWidth: any;\n/**\n * Specifies format of the column.\n * \\@default {}\n */\npublic format: any;\n/**\n * To hide/show the column in spreadsheet.\n * \\@default false\n */\npublic hidden: any;\n/**\n * Specifies index of the column. Based on the index, column properties are applied.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * To lock/unlock the column in the protected sheet.\n * \\@default true\n */\npublic isLocked: any;\n/**\n * Represents whether a column in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n */\npublic isReadOnly: any;\n/**\n * Specifies the validation of the column.\n * \\@default ''\n */\npublic validation: any;\n/**\n * Specifies width of the column.\n * \\@default 64\n * \\@asptype int\n */\npublic width: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * specifies custom width of the column.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.customWidth;\n/**\n * Specifies format of the column.\n * \\@default {}\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * To hide/show the column in spreadsheet.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.hidden;\n/**\n * Specifies index of the column. Based on the index, column properties are applied.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.index;\n/**\n * To lock/unlock the column in the protected sheet.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.isLocked;\n/**\n * Represents whether a column in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.isReadOnly;\n/**\n * Specifies the validation of the column.\n * \\@default ''\n * @type {?}\n */\nColumnDirective.prototype.validation;\n/**\n * Specifies width of the column.\n * \\@default 64\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.width;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['address', 'dataSource', 'fieldsOrder', 'query', 'showFieldAsHeader', 'startCell', 'template'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-range` directive represent a range of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-ranges>\n * <e-range [dataSource]='data'></e-range>\n * </e-ranges>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class RangeDirective extends ComplexBase<RangeDirective> {\npublic directivePropList: any;\n/**\n * Specifies the address for updating the dataSource or template.\n * \\@default 'A1'\n */\npublic address: any;\n/**\n * Specifies the data as JSON / Data manager to the sheet.\n * \\@default null\n */\npublic dataSource: any;\n/**\n * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially. \n * This means that the first data field is assigned to Column A, the second to Column B, and so on. \n * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.\n * \\@default null\n */\npublic fieldsOrder: any;\n/**\n * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html) \n * that will be executed along with data processing.\n * \\@default null\n */\npublic query: any;\n/**\n * Show/Hide the field of the datasource as header.\n * \\@default true\n */\npublic showFieldAsHeader: any;\n/**\n * Specifies the start cell from which the datasource will be populated.\n * \\@default 'A1'\n */\npublic startCell: any;\n/**\n * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.\n * \\@default ''\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-ranges>e-range',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n};\n}\n\nfunction RangeDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRangeDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRangeDirective.ctorParameters;\n/** @type {?} */\nRangeDirective.propDecorators;\n/** @type {?} */\nRangeDirective.prototype.directivePropList;\n/**\n * Specifies the address for updating the dataSource or template.\n * \\@default 'A1'\n * @type {?}\n */\nRangeDirective.prototype.address;\n/**\n * Specifies the data as JSON / Data manager to the sheet.\n * \\@default null\n * @type {?}\n */\nRangeDirective.prototype.dataSource;\n/**\n * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially. \n * This means that the first data field is assigned to Column A, the second to Column B, and so on. \n * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.\n * \\@default null\n * @type {?}\n */\nRangeDirective.prototype.fieldsOrder;\n/**\n * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html) \n * that will be executed along with data processing.\n * \\@default null\n * @type {?}\n */\nRangeDirective.prototype.query;\n/**\n * Show/Hide the field of the datasource as header.\n * \\@default true\n * @type {?}\n */\nRangeDirective.prototype.showFieldAsHeader;\n/**\n * Specifies the start cell from which the datasource will be populated.\n * \\@default 'A1'\n * @type {?}\n */\nRangeDirective.prototype.startCell;\n/**\n * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.\n * \\@default ''\n * \\@asptype string\n * @type {?}\n */\nRangeDirective.prototype.template;\n/** @type {?} */\nRangeDirective.prototype.viewContainerRef;\n}\n\n/**\n * Range Array Directive\n */\nexport class RangesDirective extends ArrayBase<RangesDirective> {\nconstructor() {\n super('ranges');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-ranges',\n queries: {\n children: new ContentChildren(RangeDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction RangesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRangesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRangesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['cFColor', 'format', 'range', 'type', 'value'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.\n * It must be contained in a `e-sheet` directive.\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet>\n * <e-conditionalformats>\n * <e-conditionalformat></e-conditionalformat>\n * </e-conditionalformats>\n * </e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class ConditionalFormatDirective extends ComplexBase<ConditionalFormatDirective> {\npublic directivePropList: any;\n/**\n * Specifies Conditional formatting Type.\n * \\@default 'GreaterThan'\n * \\@aspignore\n */\npublic type: any;\n/**\n * Specifies Conditional formatting Highlight Color.\n * \\@default 'RedFT'\n */\npublic cFColor: any;\n/**\n * Specifies format.\n * \\@default {}\n */\npublic format: any;\n/**\n * Specifies Conditional formatting range.\n * \\@default ''\n */\npublic range: any;\n/**\n * Specifies Conditional formatting Value.\n * \\@default ''\n */\npublic value: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-conditionalformats>e-conditionalformat',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction ConditionalFormatDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nConditionalFormatDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nConditionalFormatDirective.ctorParameters;\n/** @type {?} */\nConditionalFormatDirective.prototype.directivePropList;\n/**\n * Specifies Conditional formatting Type.\n * \\@default 'GreaterThan'\n * \\@aspignore\n * @type {?}\n */\nConditionalFormatDirective.prototype.type;\n/**\n * Specifies Conditional formatting Highlight Color.\n * \\@default 'RedFT'\n * @type {?}\n */\nConditionalFormatDirective.prototype.cFColor;\n/**\n * Specifies format.\n * \\@default {}\n * @type {?}\n */\nConditionalFormatDirective.prototype.format;\n/**\n * Specifies Conditional formatting range.\n * \\@default ''\n * @type {?}\n */\nConditionalFormatDirective.prototype.range;\n/**\n * Specifies Conditional formatting Value.\n * \\@default ''\n * @type {?}\n */\nConditionalFormatDirective.prototype.value;\n/** @type {?} */\nConditionalFormatDirective.prototype.viewContainerRef;\n}\n\n/**\n * ConditionalFormat Array Directive\n */\nexport class ConditionalFormatsDirective extends ArrayBase<ConditionalFormatsDirective> {\nconstructor() {\n super('conditionalformats');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheet>e-conditionalformats',\n queries: {\n children: new ContentChildren(ConditionalFormatDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ConditionalFormatsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nConditionalFormatsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nConditionalFormatsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { RowsDirective } from './rows.directive';\nimport { ColumnsDirective } from './columns.directive';\nimport { RangesDirective } from './ranges.directive';\nimport { ConditionalFormatsDirective } from './conditionalformats.directive';\n\nlet /** @type {?} */ input: string[] = ['activeCell', 'colCount', 'columns', 'conditionalFormats', 'frozenColumns', 'frozenRows', 'index', 'isProtected', 'name', 'paneTopLeftCell', 'password', 'protectSettings', 'ranges', 'rowCount', 'rows', 'selectedRange', 'showGridLines', 'showHeaders', 'standardHeight', 'state', 'topLeftCell', 'usedRange'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-sheet` directive represent a sheet of the Angular Spreadsheet.\n * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).\n * ```html\n * <ejs-spreadsheet>\n * <e-sheets>\n * <e-sheet></e-sheet>\n * <e-sheet></e-sheet>\n * </e-sheets>\n * </ejs-spreadsheet>\n * ```\n */\nexport class SheetDirective extends ComplexBase<SheetDirective> {\npublic directivePropList: any;\npublic childRows: any;\npublic childColumns: any;\npublic childRanges: any;\npublic childConditionalFormats: any;\npublic tags: string[] = ['rows', 'columns', 'ranges', 'conditionalFormats'];\n/**\n * Specifies active cell within `selectedRange` in the sheet.\n * \\@default 'A1'\n */\npublic activeCell: any;\n/**\n * Defines the number of columns to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n */\npublic colCount: any;\n/**\n * Configures column and its properties for the sheet.\n * \\@default null\n */\npublic columns: any;\n/**\n * Specifies the conditional formatting for the sheet.\n * \\@default []\n */\npublic conditionalFormats: any;\n/**\n * Gets or sets the number of frozen columns.\n * \\@default 0\n * \\@asptype int\n */\npublic frozenColumns: any;\n/**\n * Gets or sets the number of frozen rows.\n * \\@default 0\n * \\@asptype int\n */\npublic frozenRows: any;\n/**\n * Specifies index of the sheet. Based on the index, sheet properties are applied.\n * \\@default 0\n * \\@asptype int\n */\npublic index: any;\n/**\n * Specifies to protect the cells in the sheet.\n * \\@default false\n */\npublic isProtected: any;\n/**\n * Specifies the name of the sheet, the name will show in the sheet tabs.\n * \\@default ''\n */\npublic name: any;\n/**\n * Represents the freeze pane top left cell. Its default value would be based on the number of freeze rows and columns.\n * \\@default 'A1'\n */\npublic paneTopLeftCell: any;\n/**\n * Specifies the password.\n * \\@default ''\n */\npublic password: any;\n/**\n * Configures protect and its options.\n * \\@default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }\n */\npublic protectSettings: any;\n/**\n * Specifies the collection of range for the sheet.\n * \\@default []\n */\npublic ranges: any;\n/**\n * Defines the number of rows to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n */\npublic rowCount: any;\n/**\n * Configures row and its properties for the sheet.\n * \\@default null\n */\npublic rows: any;\n/**\n * Specifies selected range in the sheet. \n * \n * \\@default 'A1:A1'\n */\npublic selectedRange: any;\n/**\n * Specifies to show / hide grid lines in the sheet.\n * \\@default true\n */\npublic showGridLines: any;\n/**\n * Specifies to show / hide column and row headers in the sheet.\n * \\@default true\n */\npublic showHeaders: any;\n/**\n * Represents the standard height of the sheet.\n * \\@default null\n * \\@asptype double\n * \\@aspdefaultvalue null\n */\npublic standardHeight: any;\n/**\n * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.\n * \\@default 'Visible'\n */\npublic state: any;\n/**\n * Specified cell will be positioned at the upper-left corner of the sheet.\n * \\@default 'A1'\n */\npublic topLeftCell: any;\n/**\n * Defines the used range of the sheet.\n * \\@default { rowIndex: 0, colIndex: 0 }\n */\npublic usedRange: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-sheets>e-sheet',\n inputs: input,\n outputs: outputs, \n queries: {\n childRows: new ContentChild(RowsDirective), \n childColumns: new ContentChild(ColumnsDirective), \n childRanges: new ContentChild(RangesDirective), \n childConditionalFormats: new ContentChild(ConditionalFormatsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction SheetDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nSheetDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSheetDirective.ctorParameters;\n/** @type {?} */\nSheetDirective.prototype.directivePropList;\n/** @type {?} */\nSheetDirective.prototype.childRows;\n/** @type {?} */\nSheetDirective.prototype.childColumns;\n/** @type {?} */\nSheetDirective.prototype.childRanges;\n/** @type {?} */\nSheetDirective.prototype.childConditionalFormats;\n/** @type {?} */\nSheetDirective.prototype.tags;\n/**\n * Specifies active cell within `selectedRange` in the sheet.\n * \\@default 'A1'\n * @type {?}\n */\nSheetDirective.prototype.activeCell;\n/**\n * Defines the number of columns to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.colCount;\n/**\n * Configures column and its properties for the sheet.\n * \\@default null\n * @type {?}\n */\nSheetDirective.prototype.columns;\n/**\n * Specifies the conditional formatting for the sheet.\n * \\@default []\n * @type {?}\n */\nSheetDirective.prototype.conditionalFormats;\n/**\n * Gets or sets the number of frozen columns.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.frozenColumns;\n/**\n * Gets or sets the number of frozen rows.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.frozenRows;\n/**\n * Specifies index of the sheet. Based on the index, sheet properties are applied.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.index;\n/**\n * Specifies to protect the cells in the sheet.\n * \\@default false\n * @type {?}\n */\nSheetDirective.prototype.isProtected;\n/**\n * Specifies the name of the sheet, the name will show in the sheet tabs.\n * \\@default ''\n * @type {?}\n */\nSheetDirective.prototype.name;\n/**\n * Represents the freeze pane top left cell. Its default value would be based on the number of freeze rows and columns.\n * \\@default 'A1'\n * @type {?}\n */\nSheetDirective.prototype.paneTopLeftCell;\n/**\n * Specifies the password.\n * \\@default ''\n * @type {?}\n */\nSheetDirective.prototype.password;\n/**\n * Configures protect and its options.\n * \\@default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }\n * @type {?}\n */\nSheetDirective.prototype.protectSettings;\n/**\n * Specifies the collection of range for the sheet.\n * \\@default []\n * @type {?}\n */\nSheetDirective.prototype.ranges;\n/**\n * Defines the number of rows to be rendered in the sheet.\n * \\@default 100\n * \\@asptype int\n * @type {?}\n */\nSheetDirective.prototype.rowCount;\n/**\n * Configures row and its properties for the sheet.\n * \\@default null\n * @type {?}\n */\nSheetDirective.prototype.rows;\n/**\n * Specifies selected range in the sheet. \n * \n * \\@default 'A1:A1'\n * @type {?}\n */\nSheetDirective.prototype.selectedRange;\n/**\n * Specifies to show / hide grid lines in the sheet.\n * \\@default true\n * @type {?}\n */\nSheetDirective.prototype.showGridLines;\n/**\n * Specifies to show / hide column and row headers in the sheet.\n * \\@default true\n * @type {?}\n */\nSheetDirective.prototype.showHeaders;\n/**\n * Represents the standard height of the sheet.\n * \\@default null\n * \\@asptype double\n * \\@aspdefaultvalue null\n * @type {?}\n */\nSheetDirective.prototype.standardHeight;\n/**\n * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.\n * \\@default 'Visible'\n * @type {?}\n */\nSheetDirective.prototype.state;\n/**\n * Specified cell will be positioned at the upper-left corner of the sheet.\n * \\@default 'A1'\n * @type {?}\n */\nSheetDirective.prototype.topLeftCell;\n/**\n * Defines the used range of the sheet.\n * \\@default { rowIndex: 0, colIndex: 0 }\n * @type {?}\n */\nSheetDirective.prototype.usedRange;\n/** @type {?} */\nSheetDirective.prototype.viewContainerRef;\n}\n\n/**\n * Sheet Array Directive\n */\nexport class SheetsDirective extends ArrayBase<SheetsDirective> {\nconstructor() {\n super('sheets');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-spreadsheet>e-sheets',\n queries: {\n children: new ContentChildren(SheetDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SheetsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nSheetsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSheetsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['comment', 'name', 'refersTo', 'scope'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-definedname` directive represent a defined name of the Angular Spreadsheet.\n * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).\n * ```html\n * <ejs-spreadsheet>\n * <e-definednames>\n * <e-definedname></e-definedname>\n * <e-definedname></e-definedname>\n * </e-definednames>\n * </ejs-spreadsheet>\n * ```\n */\nexport class DefinedNameDirective extends ComplexBase<DefinedNameDirective> {\npublic directivePropList: any;\n/**\n * Provides a comment or description for the defined name.\n * \\@default ''\n */\npublic comment: any;\n/**\n * Specifies a unique name for the defined name, which can be used in formulas.\n * \\@default ''\n */\npublic name: any;\n/**\n * Specifies the cell or range reference associated with the defined name. \n * The reference can be provided with or without the `=` prefix.\n * \\@default ''\n */\npublic refersTo: any;\n/**\n * Defines the scope of the name. \n * If not specified, the name is scoped to the entire workbook. \n * If a sheet name is provided, the name will be available only within that specific sheet.\n * \\@default ''\n */\npublic scope: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-definednames>e-definedname',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction DefinedNameDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nDefinedNameDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDefinedNameDirective.ctorParameters;\n/** @type {?} */\nDefinedNameDirective.prototype.directivePropList;\n/**\n * Provides a comment or description for the defined name.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.comment;\n/**\n * Specifies a unique name for the defined name, which can be used in formulas.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.name;\n/**\n * Specifies the cell or range reference associated with the defined name. \n * The reference can be provided with or without the `=` prefix.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.refersTo;\n/**\n * Defines the scope of the name. \n * If not specified, the name is scoped to the entire workbook. \n * If a sheet name is provided, the name will be available only within that specific sheet.\n * \\@default ''\n * @type {?}\n */\nDefinedNameDirective.prototype.scope;\n/** @type {?} */\nDefinedNameDirective.prototype.viewContainerRef;\n}\n\n/**\n * DefinedName Array Directive\n */\nexport class DefinedNamesDirective extends ArrayBase<DefinedNamesDirective> {\nconstructor() {\n super('definednames');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-spreadsheet>e-definednames',\n queries: {\n children: new ContentChildren(DefinedNameDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DefinedNamesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nDefinedNamesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDefinedNamesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Spreadsheet } from '@syncfusion/ej2-spreadsheet';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { SheetsDirective } from './sheets.directive';\nimport { DefinedNamesDirective } from './definednames.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['activeSheetIndex','allowAutoFill','allowCellFormatting','allowChart','allowConditionalFormat','allowDataValidation','allowDelete','allowEditing','allowFiltering','allowFindAndReplace','allowFreezePane','allowHyperlink','allowImage','allowInsert','allowMerge','allowNumberFormatting','allowOpen','allowPrint','allowResizing','allowSave','allowScrolling','allowSorting','allowUndoRedo','allowWrap','autoFillSettings','calculationMode','cellStyle','cssClass','currencyCode','definedNames','enableClipboard','enableContextMenu','enableKeyboardNavigation','enableKeyboardShortcut','enableNotes','enablePersistence','enableRtl','height','isProtected','listSeparator','locale','openSettings','openUrl','password','saveUrl','scrollSettings','selectionSettings','sheets','showAggregate','showFormulaBar','showRibbon','showSheetTabs','width'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','afterHyperlinkClick','afterHyperlinkCreate','beforeCellFormat','beforeCellRender','beforeCellSave','beforeCellUpdate','beforeConditionalFormat','beforeDataBound','beforeHyperlinkClick','beforeHyperlinkCreate','beforeOpen','beforeSave','beforeSelect','beforeSort','cellEdit','cellEdited','cellEditing','cellSave','contextMenuBeforeClose','contextMenuBeforeOpen','contextMenuItemSelect','created','dataBound','dataSourceChanged','dialogBeforeOpen','fileMenuBeforeClose','fileMenuBeforeOpen','fileMenuItemSelect','openComplete','openFailure','queryCellInfo','saveComplete','select','sortComplete'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * `ejs-spreadsheet` represents the Angular Spreadsheet Component.\n * ```html\n * <ejs-spreadsheet></ejs-spreadsheet>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class SpreadsheetComponent extends Spreadsheet implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tafterHyperlinkClick: any;\n\tafterHyperlinkCreate: any;\n\tbeforeCellFormat: any;\n\tbeforeCellRender: any;\n\tbeforeCellSave: any;\n\tbeforeCellUpdate: any;\n\tbeforeConditionalFormat: any;\n\tbeforeDataBound: any;\n\tbeforeHyperlinkClick: any;\n\tbeforeHyperlinkCreate: any;\n\tbeforeOpen: any;\n\tbeforeSave: any;\n\tbeforeSelect: any;\n\tbeforeSort: any;\n\tcellEdit: any;\n\tcellEdited: any;\n\tcellEditing: any;\n\tcellSave: any;\n\tcontextMenuBeforeClose: any;\n\tcontextMenuBeforeOpen: any;\n\tcontextMenuItemSelect: any;\n\tcreated: any;\n\tdataBound: any;\n\tdataSourceChanged: any;\n\tdialogBeforeOpen: any;\n\tfileMenuBeforeClose: any;\n\tfileMenuBeforeOpen: any;\n\tfileMenuItemSelect: any;\n\topenComplete: any;\n\topenFailure: any;\n\tqueryCellInfo: any;\n\tsaveComplete: any;\n\tselect: any;\npublic sortComplete: any;\npublic childSheets: QueryList<SheetsDirective>;\npublic childDefinedNames: QueryList<DefinedNamesDirective>;\npublic tags: string[] = ['sheets', 'definedNames'];\n \n @Template()\npublic template: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('SpreadsheetClipboard');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetKeyboardNavigation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetKeyboardShortcut');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetFormulaBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetRibbon');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetSave');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetOpen');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetSheetTabs');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetDataBind');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetCellFormat');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetNumberFormat');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('SpreadsheetFormula');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childSheets;\n if (this.childDefinedNames) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childDefinedNames as any));\n }\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-spreadsheet',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childSheets: new ContentChild(SheetsDirective), \n childDefinedNames: new ContentChild(DefinedNamesDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n};\n}\n\nfunction SpreadsheetComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nSpreadsheetComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSpreadsheetComponent.ctorParameters;\n/** @type {?} */\nSpreadsheetComponent.propDecorators;\n/** @type {?} */\nSpreadsheetComponent.prototype.context;\n/** @type {?} */\nSpreadsheetComponent.prototype.tagObjects;\n/** @type {?} */\nSpreadsheetComponent.prototype.actionBegin;\n/** @type {?} */\nSpreadsheetComponent.prototype.actionComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.afterHyperlinkClick;\n/** @type {?} */\nSpreadsheetComponent.prototype.afterHyperlinkCreate;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellFormat;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellRender;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellSave;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeCellUpdate;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeConditionalFormat;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeDataBound;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeHyperlinkClick;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeHyperlinkCreate;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeSave;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeSelect;\n/** @type {?} */\nSpreadsheetComponent.prototype.beforeSort;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellEdit;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellEdited;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellEditing;\n/** @type {?} */\nSpreadsheetComponent.prototype.cellSave;\n/** @type {?} */\nSpreadsheetComponent.prototype.contextMenuBeforeClose;\n/** @type {?} */\nSpreadsheetComponent.prototype.contextMenuBeforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.contextMenuItemSelect;\n/** @type {?} */\nSpreadsheetComponent.prototype.created;\n/** @type {?} */\nSpreadsheetComponent.prototype.dataBound;\n/** @type {?} */\nSpreadsheetComponent.prototype.dataSourceChanged;\n/** @type {?} */\nSpreadsheetComponent.prototype.dialogBeforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.fileMenuBeforeClose;\n/** @type {?} */\nSpreadsheetComponent.prototype.fileMenuBeforeOpen;\n/** @type {?} */\nSpreadsheetComponent.prototype.fileMenuItemSelect;\n/** @type {?} */\nSpreadsheetComponent.prototype.openComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.openFailure;\n/** @type {?} */\nSpreadsheetComponent.prototype.queryCellInfo;\n/** @type {?} */\nSpreadsheetComponent.prototype.saveComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.select;\n/** @type {?} */\nSpreadsheetComponent.prototype.sortComplete;\n/** @type {?} */\nSpreadsheetComponent.prototype.childSheets;\n/** @type {?} */\nSpreadsheetComponent.prototype.childDefinedNames;\n/** @type {?} */\nSpreadsheetComponent.prototype.tags;\n/** @type {?} */\nSpreadsheetComponent.prototype.template;\n/** @type {?} */\nSpreadsheetComponent.prototype.registerEvents;\n/** @type {?} */\nSpreadsheetComponent.prototype.addTwoWay;\n/** @type {?} */\nSpreadsheetComponent.prototype.ngEle;\n/** @type {?} */\nSpreadsheetComponent.prototype.srenderer;\n/** @type {?} */\nSpreadsheetComponent.prototype.viewContainerRef;\n/** @type {?} */\nSpreadsheetComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ImageDirective, ImagesDirective } from './image.directive';\nimport { ChartDirective, ChartsDirective } from './chart.directive';\nimport { CellDirective, CellsDirective } from './cells.directive';\nimport { RowDirective, RowsDirective } from './rows.directive';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { RangeDirective, RangesDirective } from './ranges.directive';\nimport { ConditionalFormatDirective, ConditionalFormatsDirective } from './conditionalformats.directive';\nimport { SheetDirective, SheetsDirective } from './sheets.directive';\nimport { DefinedNameDirective, DefinedNamesDirective } from './definednames.directive';\nimport { SpreadsheetComponent } from './spreadsheet.component';\n/**\n * NgModule definition for the Spreadsheet component.\n */\nexport class SpreadsheetModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n SpreadsheetComponent,\n ImageDirective,\n ImagesDirective,\n ChartDirective,\n ChartsDirective,\n CellDirective,\n CellsDirective,\n RowDirective,\n RowsDirective,\n ColumnDirective,\n ColumnsDirective,\n RangeDirective,\n RangesDirective,\n ConditionalFormatDirective,\n ConditionalFormatsDirective,\n SheetDirective,\n SheetsDirective,\n DefinedNameDirective,\n DefinedNamesDirective\n ],\n exports: [\n SpreadsheetComponent,\n ImageDirective,\n ImagesDirective,\n ChartDirective,\n ChartsDirective,\n CellDirective,\n CellsDirective,\n RowDirective,\n RowsDirective,\n ColumnDirective,\n ColumnsDirective,\n RangeDirective,\n RangesDirective,\n ConditionalFormatDirective,\n ConditionalFormatsDirective,\n SheetDirective,\n SheetsDirective,\n DefinedNameDirective,\n DefinedNamesDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SpreadsheetModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSpreadsheetModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSpreadsheetModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ImageDirective, ImagesDirective } from './image.directive';\nimport { ChartDirective, ChartsDirective } from './chart.directive';\nimport { CellDirective, CellsDirective } from './cells.directive';\nimport { RowDirective, RowsDirective } from './rows.directive';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { RangeDirective, RangesDirective } from './ranges.directive';\nimport { ConditionalFormatDirective, ConditionalFormatsDirective } from './conditionalformats.directive';\nimport { SheetDirective, SheetsDirective } from './sheets.directive';\nimport { DefinedNameDirective, DefinedNamesDirective } from './definednames.directive';\nimport { SpreadsheetComponent } from './spreadsheet.component';\nimport { SpreadsheetModule } from './spreadsheet.module';\nimport {Clipboard, Edit, KeyboardNavigation, KeyboardShortcut, Selection, ContextMenu, FormulaBar, Ribbon, Save, Open, SheetTabs, DataBind, CellFormat, NumberFormat, Formula} from '@syncfusion/ej2-spreadsheet';\n\n\nexport const /** @type {?} */ ClipboardService: ValueProvider = { provide: 'SpreadsheetClipboard', useValue: Clipboard};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'SpreadsheetEdit', useValue: Edit};\nexport const /** @type {?} */ KeyboardNavigationService: ValueProvider = { provide: 'SpreadsheetKeyboardNavigation', useValue: KeyboardNavigation};\nexport const /** @type {?} */ KeyboardShortcutService: ValueProvider = { provide: 'SpreadsheetKeyboardShortcut', useValue: KeyboardShortcut};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'SpreadsheetSelection', useValue: Selection};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'SpreadsheetContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ FormulaBarService: ValueProvider = { provide: 'SpreadsheetFormulaBar', useValue: FormulaBar};\nexport const /** @type {?} */ RibbonService: ValueProvider = { provide: 'SpreadsheetRibbon', useValue: Ribbon};\nexport const /** @type {?} */ SaveService: ValueProvider = { provide: 'SpreadsheetSave', useValue: Save};\nexport const /** @type {?} */ OpenService: ValueProvider = { provide: 'SpreadsheetOpen', useValue: Open};\nexport const /** @type {?} */ SheetTabsService: ValueProvider = { provide: 'SpreadsheetSheetTabs', useValue: SheetTabs};\nexport const /** @type {?} */ DataBindService: ValueProvider = { provide: 'SpreadsheetDataBind', useValue: DataBind};\nexport const /** @type {?} */ CellFormatService: ValueProvider = { provide: 'SpreadsheetCellFormat', useValue: CellFormat};\nexport const /** @type {?} */ NumberFormatService: ValueProvider = { provide: 'SpreadsheetNumberFormat', useValue: NumberFormat};\nexport const /** @type {?} */ FormulaService: ValueProvider = { provide: 'SpreadsheetFormula', useValue: Formula};\n/**\n * NgModule definition for the Spreadsheet component with providers.\n */\nexport class SpreadsheetAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, SpreadsheetModule],\n exports: [\n SpreadsheetModule\n ],\n providers:[\n ClipboardService,\n EditService,\n KeyboardNavigationService,\n KeyboardShortcutService,\n SelectionService,\n ContextMenuService,\n FormulaBarService,\n RibbonService,\n SaveService,\n OpenService,\n SheetTabsService,\n DataBindService,\n CellFormatService,\n NumberFormatService,\n FormulaService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SpreadsheetAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSpreadsheetAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSpreadsheetAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","ImageDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","ImagesDirective","ArrayBase","children","ContentChildren","ChartDirective","ChartsDirective","CellDirective","tags","childImage","ContentChild","childChart","CellsDirective","RowDirective","childCells","RowsDirective","ColumnDirective","ColumnsDirective","RangeDirective","propDecorators","template","__decorate","Template","prototype","RangesDirective","ConditionalFormatDirective","ConditionalFormatsDirective","SheetDirective","childRows","childColumns","childRanges","childConditionalFormats","SheetsDirective","DefinedNameDirective","DefinedNamesDirective","twoWays","exports","SpreadsheetComponent","ngEle","srenderer","injector","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","_h","_j","_k","_l","_m","_o","_p","_q","addTwoWay","context","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childSheets","childDefinedNames","Spreadsheet","Component","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","ComponentMixins","__metadata","SpreadsheetModule","NgModule","imports","CommonModule","declarations","ClipboardService","provide","useValue","Clipboard","EditService","Edit","KeyboardNavigationService","KeyboardNavigation","KeyboardShortcutService","KeyboardShortcut","SelectionService","Selection","ContextMenuService","ContextMenu","FormulaBarService","FormulaBar","RibbonService","Ribbon","SaveService","Save","OpenService","Open","SheetTabsService","SheetTabs","DataBindService","DataBind","CellFormatService","CellFormat","NumberFormatService","NumberFormat","FormulaService","Formula","SpreadsheetAllModule","providers"],"mappings":"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"}
|