UNPKG

@syncfusion/ej2-angular-spreadsheet

Version:

Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular

1 lines 71 kB
{"version":3,"file":"syncfusion-ej2-angular-spreadsheet.mjs","sources":["../../src/spreadsheet/image.directive.ts","../../src/spreadsheet/chart.directive.ts","../../src/spreadsheet/cells.directive.ts","../../src/spreadsheet/rows.directive.ts","../../src/spreadsheet/columns.directive.ts","../../src/spreadsheet/ranges.directive.ts","../../src/spreadsheet/conditionalformats.directive.ts","../../src/spreadsheet/sheets.directive.ts","../../src/spreadsheet/definednames.directive.ts","../../src/spreadsheet/spreadsheet.component.ts","../../src/spreadsheet/spreadsheet.module.ts","../../src/spreadsheet/spreadsheet-all.module.ts","../../syncfusion-ej2-angular-spreadsheet.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['height', 'id', 'left', 'src', 'top', 'width'];\nlet outputs: string[] = [];\n\n@Directive({\n selector: 'e-images>e-image',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ImageDirective extends ComplexBase<ImageDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Specifies the height of the image.\n * @default 300\n * @asptype double\n */\n public height: any;\n /** \n * Specifies image element id.\n * @default ''\n */\n public id: any;\n /** \n * Specifies the width of the image.\n * @default 0\n * @asptype double\n */\n public left: any;\n /** \n * Specifies the image source.\n * @default ''\n */\n public src: any;\n /** \n * Specifies the height of the image.\n * @default 0\n * @asptype double\n */\n public top: any;\n /** \n * Specifies the width of the image.\n * @default 400\n * @asptype double\n */\n public width: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Image Array Directive\n * @private\n */\n@Directive({\n selector: 'e-cell>e-images',\n queries: {\n children: new ContentChildren(ImageDirective)\n },\n})\nexport class ImagesDirective extends ArrayBase<ImagesDirective> {\n constructor() {\n super('image');\n }\n}","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['dataLabelSettings', 'height', 'id', 'isSeriesInRows', 'legendSettings', 'markerSettings', 'primaryXAxis', 'primaryYAxis', 'range', 'theme', 'title', 'type', 'width'];\nlet outputs: string[] = [];\n\n@Directive({\n selector: 'e-charts>e-chart',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ChartDirective extends ComplexBase<ChartDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Specifies the type of a chart.\n * @default 'Line'\n */\n public type: any;\n /** \n * The data label for the series.\n * @default {}\n */\n public dataLabelSettings: any;\n /** \n * Specifies the height of the chart.\n * @default 290\n */\n public height: any;\n /** \n * Specifies chart element id.\n * @default ''\n */\n public id: any;\n /** \n * Specifies to switch the row or a column.\n * @default false\n */\n public isSeriesInRows: any;\n /** \n * Options for customizing the legend of the chart.\n * @default {}\n */\n public legendSettings: any;\n /** \n * Options to configure the marker\n * @default {}\n */\n public markerSettings: any;\n /** \n * Options to configure the horizontal axis.\n * @default {}\n */\n public primaryXAxis: any;\n /** \n * Options to configure the vertical axis.\n * @default {}\n */\n public primaryYAxis: any;\n /** \n * Specifies the selected range or specified range.\n * @default ''\n */\n public range: any;\n /** \n * Specifies the theme of a chart.\n * @default 'Material'\n */\n public theme: any;\n /** \n * Title of the chart\n * @default ''\n */\n public title: any;\n /** \n * Specifies the width of the chart.\n * @default 480\n */\n public width: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Chart Array Directive\n * @private\n */\n@Directive({\n selector: 'e-cell>e-charts',\n queries: {\n children: new ContentChildren(ChartDirective)\n },\n})\nexport class ChartsDirective extends ArrayBase<ChartsDirective> {\n constructor() {\n super('chart');\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 input: string[] = ['chart', 'colSpan', 'comment', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'isReadOnly', 'notes', 'rowSpan', 'style', 'validation', 'value', 'wrap'];\nlet 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 */\n@Directive({\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})\nexport class CellDirective extends ComplexBase<CellDirective> {\n public directivePropList: any;\n\t\n public childImage: any;\n public childChart: any;\n public tags: string[] = ['image', 'chart'];\n /** \n * Represents the threaded comment associated with the cell. \n * A threaded comment allows users to add a main comment and maintain a discussion through replies. \n * Each cell supports a single comment thread, which includes: \n * - **author**: The name of the person who created the comment. \n * - **text**: The main content of the comment. \n * - **createdTime**: The time-stamp indicating when the comment was added. \n * - **isResolved**: Indicates whether the thread is marked as resolved. \n * - **replies**: A collection of reply comments, each with its own `author`, `text`, and `createdTime`.\n * @default null\n */\n public comment: any;\n /** \n * Specifies the chart of the cell.\n * @default []\n */\n public chart: any;\n /** \n * Specifies the column-wise cell merge count.\n * @default 1\n * @asptype int\n */\n public colSpan: any;\n /** \n * Specifies the number format code to display value in specified number format.\n * @default 'General'\n */\n public format: any;\n /** \n * Defines the formula or expression of the cell.\n * @default ''\n */\n public formula: any;\n /** \n * Specifies the hyperlink of the cell.\n * @default ''\n */\n public hyperlink: any;\n /** \n * Specifies the image of the cell.\n * @default []\n */\n public image: any;\n /** \n * Specifies the index of the cell.\n * @default 0\n * @asptype int\n */\n public index: any;\n /** \n * Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.\n * @default true\n */\n public 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 */\n public isReadOnly: any;\n /** \n * Specifies the note of the cell.\n * @default ''\n */\n public notes: any;\n /** \n * Specifies the row-wise cell merge count.\n * @default 1\n * @asptype int\n */\n public rowSpan: any;\n /** \n * Specifies the cell style options. \n * \n * @default {}\n */\n public style: any;\n /** \n * Specifies the validation of the cell.\n * @default ''\n */\n public validation: any;\n /** \n * Defines the value of the cell which can be text or number.\n * @default ''\n */\n public value: any;\n /** \n * Wraps the cell text to the next line, if the text width exceeds the column width.\n * @default false\n */\n public wrap: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Cell Array Directive\n * @private\n */\n@Directive({\n selector: 'e-row>e-cells',\n queries: {\n children: new ContentChildren(CellDirective)\n },\n})\nexport class CellsDirective extends ArrayBase<CellsDirective> {\n constructor() {\n super('cells');\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 input: string[] = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index', 'isReadOnly'];\nlet 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 */\n@Directive({\n selector: 'e-rows>e-row',\n inputs: input,\n outputs: outputs, \n queries: {\n childCells: new ContentChild(CellsDirective)\n }\n})\nexport class RowDirective extends ComplexBase<RowDirective> {\n public directivePropList: any;\n\t\n public childCells: any;\n public tags: string[] = ['cells'];\n /** \n * Specifies cell and its properties for the row.\n * @default []\n */\n public cells: any;\n /** \n * specifies custom height of the row.\n * @default false\n */\n public customHeight: any;\n /** \n * Specifies format of the row.\n * @default {}\n */\n public format: any;\n /** \n * Specifies height of the row.\n * @default 20\n * @asptype double\n * @aspdefaultvalue 20.0\n */\n public height: any;\n /** \n * To hide/show the row in spreadsheet.\n * @default false\n */\n public 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 */\n public 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 */\n public isReadOnly: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Row Array Directive\n * @private\n */\n@Directive({\n selector: 'e-sheet>e-rows',\n queries: {\n children: new ContentChildren(RowDirective)\n },\n})\nexport class RowsDirective extends ArrayBase<RowsDirective> {\n constructor() {\n super('rows');\n }\n}","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'isReadOnly', 'validation', 'width'];\nlet 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 */\n@Directive({\n selector: 'e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * specifies custom width of the column.\n * @default false\n */\n public customWidth: any;\n /** \n * Specifies format of the column.\n * @default {}\n */\n public format: any;\n /** \n * To hide/show the column in spreadsheet.\n * @default false\n */\n public hidden: any;\n /** \n * Specifies index of the column. Based on the index, column properties are applied.\n * @default 0\n * @asptype int\n */\n public index: any;\n /** \n * To lock/unlock the column in the protected sheet.\n * @default true\n */\n public 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 */\n public isReadOnly: any;\n /** \n * Specifies the validation of the column.\n * @default ''\n */\n public validation: any;\n /** \n * Specifies width of the column.\n * @default 64\n * @asptype int\n */\n public width: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Column Array Directive\n * @private\n */\n@Directive({\n selector: 'e-sheet>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n})\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\n constructor() {\n super('columns');\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 input: string[] = ['address', 'dataSource', 'fieldsOrder', 'query', 'showFieldAsHeader', 'startCell', 'template'];\nlet 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 */\n@Directive({\n selector: 'e-ranges>e-range',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class RangeDirective extends ComplexBase<RangeDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Specifies the address for updating the dataSource or template.\n * @default 'A1'\n */\n public address: any;\n /** \n * Specifies the data as JSON / Data manager to the sheet.\n * @default null\n */\n public 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 */\n public 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 */\n public query: any;\n /** \n * Show/Hide the field of the datasource as header.\n * @default true\n */\n public showFieldAsHeader: any;\n /** \n * Specifies the start cell from which the datasource will be populated.\n * @default 'A1'\n */\n public 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 @ContentChild('template')\n @Template()\n public template: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Range Array Directive\n * @private\n */\n@Directive({\n selector: 'e-sheet>e-ranges',\n queries: {\n children: new ContentChildren(RangeDirective)\n },\n})\nexport class RangesDirective extends ArrayBase<RangesDirective> {\n constructor() {\n super('ranges');\n }\n}","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['cFColor', 'format', 'range', 'type', 'value'];\nlet 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 */\n@Directive({\n selector: 'e-conditionalformats>e-conditionalformat',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ConditionalFormatDirective extends ComplexBase<ConditionalFormatDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Specifies Conditional formatting Type.\n * @default 'GreaterThan'\n * @aspignore \n */\n public type: any;\n /** \n * Specifies Conditional formatting Highlight Color.\n * @default 'RedFT'\n */\n public cFColor: any;\n /** \n * Specifies format.\n * @default {}\n */\n public format: any;\n /** \n * Specifies Conditional formatting range.\n * @default ''\n */\n public range: any;\n /** \n * Specifies Conditional formatting Value.\n * @default ''\n */\n public value: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * ConditionalFormat Array Directive\n * @private\n */\n@Directive({\n selector: 'e-sheet>e-conditionalformats',\n queries: {\n children: new ContentChildren(ConditionalFormatDirective)\n },\n})\nexport class ConditionalFormatsDirective extends ArrayBase<ConditionalFormatsDirective> {\n constructor() {\n super('conditionalformats');\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 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 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 */\n@Directive({\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})\nexport class SheetDirective extends ComplexBase<SheetDirective> {\n public directivePropList: any;\n\t\n public childRows: any;\n public childColumns: any;\n public childRanges: any;\n public childConditionalFormats: any;\n public tags: string[] = ['rows', 'columns', 'ranges', 'conditionalFormats'];\n /** \n * Specifies active cell within `selectedRange` in the sheet.\n * @default 'A1'\n */\n public activeCell: any;\n /** \n * Defines the number of columns to be rendered in the sheet.\n * @default 100\n * @asptype int\n */\n public colCount: any;\n /** \n * Configures column and its properties for the sheet.\n * @default null\n */\n public columns: any;\n /** \n * Specifies the conditional formatting for the sheet.\n * @default []\n */\n public conditionalFormats: any;\n /** \n * Gets or sets the number of frozen columns.\n * @default 0\n * @asptype int\n */\n public frozenColumns: any;\n /** \n * Gets or sets the number of frozen rows.\n * @default 0\n * @asptype int\n */\n public frozenRows: any;\n /** \n * Specifies index of the sheet. Based on the index, sheet properties are applied.\n * @default 0\n * @asptype int\n */\n public index: any;\n /** \n * Specifies to protect the cells in the sheet.\n * @default false\n */\n public isProtected: any;\n /** \n * Specifies the name of the sheet, the name will show in the sheet tabs.\n * @default ''\n */\n public 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 */\n public paneTopLeftCell: any;\n /** \n * Specifies the password.\n * @default ''\n */\n public password: any;\n /** \n * Configures protect and its options.\n * @default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }\n */\n public protectSettings: any;\n /** \n * Specifies the collection of range for the sheet.\n * @default []\n */\n public ranges: any;\n /** \n * Defines the number of rows to be rendered in the sheet.\n * @default 100\n * @asptype int\n */\n public rowCount: any;\n /** \n * Configures row and its properties for the sheet.\n * @default null\n */\n public rows: any;\n /** \n * Specifies selected range in the sheet. \n * \n * @default 'A1:A1'\n */\n public selectedRange: any;\n /** \n * Specifies to show / hide grid lines in the sheet.\n * @default true\n */\n public showGridLines: any;\n /** \n * Specifies to show / hide column and row headers in the sheet.\n * @default true\n */\n public showHeaders: any;\n /** \n * Represents the standard height of the sheet.\n * @default null\n * @asptype double\n * @aspdefaultvalue null\n */\n public standardHeight: any;\n /** \n * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.\n * @default 'Visible'\n */\n public state: any;\n /** \n * Specified cell will be positioned at the upper-left corner of the sheet.\n * @default 'A1'\n */\n public topLeftCell: any;\n /** \n * Defines the used range of the sheet.\n * @default { rowIndex: 0, colIndex: 0 }\n */\n public usedRange: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Sheet Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-spreadsheet>e-sheets',\n queries: {\n children: new ContentChildren(SheetDirective)\n },\n})\nexport class SheetsDirective extends ArrayBase<SheetsDirective> {\n constructor() {\n super('sheets');\n }\n}","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['comment', 'name', 'refersTo', 'scope'];\nlet 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 */\n@Directive({\n selector: 'e-definednames>e-definedname',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class DefinedNameDirective extends ComplexBase<DefinedNameDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Provides a comment or description for the defined name.\n * @default ''\n */\n public comment: any;\n /** \n * Specifies a unique name for the defined name, which can be used in formulas.\n * @default ''\n */\n public 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 */\n public 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 */\n public scope: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * DefinedName Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-spreadsheet>e-definednames',\n queries: {\n children: new ContentChildren(DefinedNameDirective)\n },\n})\nexport class DefinedNamesDirective extends ArrayBase<DefinedNamesDirective> {\n constructor() {\n super('definednames');\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 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','author','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','showCommentsPane','showFormulaBar','showRibbon','showSheetTabs','width'];\nexport const 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 twoWays: string[] = [''];\n\n/**\n * `ejs-spreadsheet` represents the Angular Spreadsheet Component.\n * ```html\n * <ejs-spreadsheet></ejs-spreadsheet>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class SpreadsheetComponent extends Spreadsheet implements IComponentBase {\n public context : any;\n public 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;\n\tpublic sortComplete: any;\n public childSheets: QueryList<SheetsDirective>;\n public childDefinedNames: QueryList<DefinedNamesDirective>;\n public tags: string[] = ['sheets', 'definedNames'];\n @ContentChild('template')\n @Template()\n public template: any;\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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\r try {\n let mod = this.injector.get('SpreadsheetEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetKeyboardNavigation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetKeyboardShortcut');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetFormulaBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetRibbon');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetSave');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetOpen');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetSheetTabs');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetDataBind');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetCellFormat');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetNumberFormat');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('SpreadsheetFormula');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childSheets;\n if (this.childDefinedNames) {\n this.tagObjects[1].instance = this.childDefinedNames as any;\n }\n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the Spreadsheet component.\n */\n@NgModule({\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})\nexport class SpreadsheetModule { }","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 ClipboardService: ValueProvider = { provide: 'SpreadsheetClipboard', useValue: Clipboard};\nexport const EditService: ValueProvider = { provide: 'SpreadsheetEdit', useValue: Edit};\nexport const KeyboardNavigationService: ValueProvider = { provide: 'SpreadsheetKeyboardNavigation', useValue: KeyboardNavigation};\nexport const KeyboardShortcutService: ValueProvider = { provide: 'SpreadsheetKeyboardShortcut', useValue: KeyboardShortcut};\nexport const SelectionService: ValueProvider = { provide: 'SpreadsheetSelection', useValue: Selection};\nexport const ContextMenuService: ValueProvider = { provide: 'SpreadsheetContextMenu', useValue: ContextMenu};\nexport const FormulaBarService: ValueProvider = { provide: 'SpreadsheetFormulaBar', useValue: FormulaBar};\nexport const RibbonService: ValueProvider = { provide: 'SpreadsheetRibbon', useValue: Ribbon};\nexport const SaveService: ValueProvider = { provide: 'SpreadsheetSave', useValue: Save};\nexport const OpenService: ValueProvider = { provide: 'SpreadsheetOpen', useValue: Open};\nexport const SheetTabsService: ValueProvider = { provide: 'SpreadsheetSheetTabs', useValue: SheetTabs};\nexport const DataBindService: ValueProvider = { provide: 'SpreadsheetDataBind', useValue: DataBind};\nexport const CellFormatService: ValueProvider = { provide: 'SpreadsheetCellFormat', useValue: CellFormat};\nexport const NumberFormatService: ValueProvider = { provide: 'SpreadsheetNumberFormat', useValue: NumberFormat};\nexport const FormulaService: ValueProvider = { provide: 'SpreadsheetFormula', useValue: Formula};\n\n/**\n * NgModule definition for the Spreadsheet component with providers.\n */\n@NgModule({\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})\nexport class SpreadsheetAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["input","outputs"],"mappings":"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