@syncfusion/ej2-angular-spreadsheet 31.2.16 → 31.2.18-ngcc

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.
Files changed (50) hide show
  1. package/@syncfusion/ej2-angular-spreadsheet.es5.js +962 -0
  2. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-spreadsheet.js +902 -0
  4. package/@syncfusion/ej2-angular-spreadsheet.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/README.md +2 -9
  7. package/dist/ej2-angular-spreadsheet.umd.js +1602 -0
  8. package/dist/ej2-angular-spreadsheet.umd.js.map +1 -0
  9. package/dist/ej2-angular-spreadsheet.umd.min.js +11 -0
  10. package/dist/ej2-angular-spreadsheet.umd.min.js.map +1 -0
  11. package/ej2-angular-spreadsheet.d.ts +5 -0
  12. package/ej2-angular-spreadsheet.metadata.json +1 -0
  13. package/package.json +9 -22
  14. package/public_api.d.ts +1 -1
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/index.d.ts +13 -13
  18. package/src/spreadsheet/cells.directive.d.ts +115 -120
  19. package/src/spreadsheet/chart.directive.d.ts +79 -84
  20. package/src/spreadsheet/columns.directive.d.ts +71 -76
  21. package/src/spreadsheet/conditionalformats.directive.d.ts +55 -60
  22. package/src/spreadsheet/definednames.directive.d.ts +49 -54
  23. package/src/spreadsheet/image.directive.d.ts +48 -53
  24. package/src/spreadsheet/ranges.directive.d.ts +68 -73
  25. package/src/spreadsheet/rows.directive.d.ts +69 -74
  26. package/src/spreadsheet/sheets.directive.d.ts +149 -154
  27. package/src/spreadsheet/spreadsheet-all.module.d.ts +21 -27
  28. package/src/spreadsheet/spreadsheet.component.d.ts +69 -72
  29. package/src/spreadsheet/spreadsheet.module.d.ts +5 -20
  30. package/CHANGELOG.md +0 -1598
  31. package/esm2020/public_api.mjs +0 -2
  32. package/esm2020/src/index.mjs +0 -14
  33. package/esm2020/src/spreadsheet/cells.directive.mjs +0 -71
  34. package/esm2020/src/spreadsheet/chart.directive.mjs +0 -46
  35. package/esm2020/src/spreadsheet/columns.directive.mjs +0 -61
  36. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +0 -61
  37. package/esm2020/src/spreadsheet/definednames.directive.mjs +0 -58
  38. package/esm2020/src/spreadsheet/image.directive.mjs +0 -46
  39. package/esm2020/src/spreadsheet/ranges.directive.mjs +0 -69
  40. package/esm2020/src/spreadsheet/rows.directive.mjs +0 -65
  41. package/esm2020/src/spreadsheet/sheets.directive.mjs +0 -68
  42. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +0 -71
  43. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +0 -181
  44. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +0 -106
  45. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -5
  46. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
  47. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
  48. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
  49. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
  50. package/syncfusion-ej2-angular-spreadsheet.d.ts +0 -5
@@ -1,74 +1,69 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-row` directive represent a row of the Angular Spreadsheet.
6
- * It must be contained in a `e-sheet` directive.
7
- * ```html
8
- * <ejs-spreadsheet>
9
- * <e-sheets>
10
- * <e-sheet>
11
- * <e-rows>
12
- * <e-row></e-row>
13
- * </e-rows>
14
- * </e-sheet>
15
- * </e-sheets>
16
- * </ejs-spreadsheet>
17
- * ```
18
- */
19
- export declare class RowDirective extends ComplexBase<RowDirective> {
20
- private viewContainerRef;
21
- directivePropList: any;
22
- childCells: any;
23
- tags: string[];
24
- /**
25
- * Specifies cell and its properties for the row.
26
- * @default []
27
- */
28
- cells: any;
29
- /**
30
- * specifies custom height of the row.
31
- * @default false
32
- */
33
- customHeight: any;
34
- /**
35
- * Specifies format of the row.
36
- * @default {}
37
- */
38
- format: any;
39
- /**
40
- * Specifies height of the row.
41
- * @default 20
42
- * @asptype double
43
- * @aspdefaultvalue 20.0
44
- */
45
- height: any;
46
- /**
47
- * To hide/show the row in spreadsheet.
48
- * @default false
49
- */
50
- hidden: any;
51
- /**
52
- * Specifies the index to the row. Based on the index, row properties are applied.
53
- * @default 0
54
- * @asptype int
55
- */
56
- index: any;
57
- /**
58
- * 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.
59
- * @default false
60
- */
61
- isReadOnly: any;
62
- constructor(viewContainerRef: ViewContainerRef);
63
- static ɵfac: i0.ɵɵFactoryDeclaration<RowDirective, never>;
64
- static ɵdir: i0.ɵɵDirectiveDeclaration<RowDirective, "e-rows>e-row", never, { "cells": "cells"; "customHeight": "customHeight"; "format": "format"; "height": "height"; "hidden": "hidden"; "index": "index"; "isReadOnly": "isReadOnly"; }, {}, ["childCells"]>;
65
- }
66
- /**
67
- * Row Array Directive
68
- * @private
69
- */
70
- export declare class RowsDirective extends ArrayBase<RowsDirective> {
71
- constructor();
72
- static ɵfac: i0.ɵɵFactoryDeclaration<RowsDirective, never>;
73
- static ɵdir: i0.ɵɵDirectiveDeclaration<RowsDirective, "e-sheet>e-rows", never, {}, {}, ["children"]>;
74
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-row` directive represent a row of the Angular Spreadsheet.
5
+ * It must be contained in a `e-sheet` directive.
6
+ * ```html
7
+ * <ejs-spreadsheet>
8
+ * <e-sheets>
9
+ * <e-sheet>
10
+ * <e-rows>
11
+ * <e-row></e-row>
12
+ * </e-rows>
13
+ * </e-sheet>
14
+ * </e-sheets>
15
+ * </ejs-spreadsheet>
16
+ * ```
17
+ */
18
+ export declare class RowDirective extends ComplexBase<RowDirective> {
19
+ private viewContainerRef;
20
+ directivePropList: any;
21
+ childCells: any;
22
+ tags: string[];
23
+ /**
24
+ * Specifies cell and its properties for the row.
25
+ * @default []
26
+ */
27
+ cells: any;
28
+ /**
29
+ * specifies custom height of the row.
30
+ * @default false
31
+ */
32
+ customHeight: any;
33
+ /**
34
+ * Specifies format of the row.
35
+ * @default {}
36
+ */
37
+ format: any;
38
+ /**
39
+ * Specifies height of the row.
40
+ * @default 20
41
+ * @asptype double
42
+ * @aspdefaultvalue 20.0
43
+ */
44
+ height: any;
45
+ /**
46
+ * To hide/show the row in spreadsheet.
47
+ * @default false
48
+ */
49
+ hidden: any;
50
+ /**
51
+ * Specifies the index to the row. Based on the index, row properties are applied.
52
+ * @default 0
53
+ * @asptype int
54
+ */
55
+ index: any;
56
+ /**
57
+ * 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.
58
+ * @default false
59
+ */
60
+ isReadOnly: any;
61
+ constructor(viewContainerRef: ViewContainerRef);
62
+ }
63
+ /**
64
+ * Row Array Directive
65
+ * @private
66
+ */
67
+ export declare class RowsDirective extends ArrayBase<RowsDirective> {
68
+ constructor();
69
+ }
@@ -1,154 +1,149 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-sheet` directive represent a sheet of the Angular Spreadsheet.
6
- * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
7
- * ```html
8
- * <ejs-spreadsheet>
9
- * <e-sheets>
10
- * <e-sheet></e-sheet>
11
- * <e-sheet></e-sheet>
12
- * </e-sheets>
13
- * </ejs-spreadsheet>
14
- * ```
15
- */
16
- export declare class SheetDirective extends ComplexBase<SheetDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- childRows: any;
20
- childColumns: any;
21
- childRanges: any;
22
- childConditionalFormats: any;
23
- tags: string[];
24
- /**
25
- * Specifies active cell within `selectedRange` in the sheet.
26
- * @default 'A1'
27
- */
28
- activeCell: any;
29
- /**
30
- * Defines the number of columns to be rendered in the sheet.
31
- * @default 100
32
- * @asptype int
33
- */
34
- colCount: any;
35
- /**
36
- * Configures column and its properties for the sheet.
37
- * @default null
38
- */
39
- columns: any;
40
- /**
41
- * Specifies the conditional formatting for the sheet.
42
- * @default []
43
- */
44
- conditionalFormats: any;
45
- /**
46
- * Gets or sets the number of frozen columns.
47
- * @default 0
48
- * @asptype int
49
- */
50
- frozenColumns: any;
51
- /**
52
- * Gets or sets the number of frozen rows.
53
- * @default 0
54
- * @asptype int
55
- */
56
- frozenRows: any;
57
- /**
58
- * Specifies index of the sheet. Based on the index, sheet properties are applied.
59
- * @default 0
60
- * @asptype int
61
- */
62
- index: any;
63
- /**
64
- * Specifies to protect the cells in the sheet.
65
- * @default false
66
- */
67
- isProtected: any;
68
- /**
69
- * Specifies the name of the sheet, the name will show in the sheet tabs.
70
- * @default ''
71
- */
72
- name: any;
73
- /**
74
- * Represents the freeze pane top left cell. Its default value would be based on the number of freeze rows and columns.
75
- * @default 'A1'
76
- */
77
- paneTopLeftCell: any;
78
- /**
79
- * Specifies the password.
80
- * @default ''
81
- */
82
- password: any;
83
- /**
84
- * Configures protect and its options.
85
- * @default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }
86
- */
87
- protectSettings: any;
88
- /**
89
- * Specifies the collection of range for the sheet.
90
- * @default []
91
- */
92
- ranges: any;
93
- /**
94
- * Defines the number of rows to be rendered in the sheet.
95
- * @default 100
96
- * @asptype int
97
- */
98
- rowCount: any;
99
- /**
100
- * Configures row and its properties for the sheet.
101
- * @default null
102
- */
103
- rows: any;
104
- /**
105
- * Specifies selected range in the sheet.
106
- *
107
- * @default 'A1:A1'
108
- */
109
- selectedRange: any;
110
- /**
111
- * Specifies to show / hide grid lines in the sheet.
112
- * @default true
113
- */
114
- showGridLines: any;
115
- /**
116
- * Specifies to show / hide column and row headers in the sheet.
117
- * @default true
118
- */
119
- showHeaders: any;
120
- /**
121
- * Represents the standard height of the sheet.
122
- * @default null
123
- * @asptype double
124
- * @aspdefaultvalue null
125
- */
126
- standardHeight: any;
127
- /**
128
- * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.
129
- * @default 'Visible'
130
- */
131
- state: any;
132
- /**
133
- * Specified cell will be positioned at the upper-left corner of the sheet.
134
- * @default 'A1'
135
- */
136
- topLeftCell: any;
137
- /**
138
- * Defines the used range of the sheet.
139
- * @default { rowIndex: 0, colIndex: 0 }
140
- */
141
- usedRange: any;
142
- constructor(viewContainerRef: ViewContainerRef);
143
- static ɵfac: i0.ɵɵFactoryDeclaration<SheetDirective, never>;
144
- static ɵdir: i0.ɵɵDirectiveDeclaration<SheetDirective, "e-sheets>e-sheet", never, { "activeCell": "activeCell"; "colCount": "colCount"; "columns": "columns"; "conditionalFormats": "conditionalFormats"; "frozenColumns": "frozenColumns"; "frozenRows": "frozenRows"; "index": "index"; "isProtected": "isProtected"; "name": "name"; "paneTopLeftCell": "paneTopLeftCell"; "password": "password"; "protectSettings": "protectSettings"; "ranges": "ranges"; "rowCount": "rowCount"; "rows": "rows"; "selectedRange": "selectedRange"; "showGridLines": "showGridLines"; "showHeaders": "showHeaders"; "standardHeight": "standardHeight"; "state": "state"; "topLeftCell": "topLeftCell"; "usedRange": "usedRange"; }, {}, ["childRows", "childColumns", "childRanges", "childConditionalFormats"]>;
145
- }
146
- /**
147
- * Sheet Array Directive
148
- * @private
149
- */
150
- export declare class SheetsDirective extends ArrayBase<SheetsDirective> {
151
- constructor();
152
- static ɵfac: i0.ɵɵFactoryDeclaration<SheetsDirective, never>;
153
- static ɵdir: i0.ɵɵDirectiveDeclaration<SheetsDirective, "ejs-spreadsheet>e-sheets", never, {}, {}, ["children"]>;
154
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-sheet` directive represent a sheet of the Angular Spreadsheet.
5
+ * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
6
+ * ```html
7
+ * <ejs-spreadsheet>
8
+ * <e-sheets>
9
+ * <e-sheet></e-sheet>
10
+ * <e-sheet></e-sheet>
11
+ * </e-sheets>
12
+ * </ejs-spreadsheet>
13
+ * ```
14
+ */
15
+ export declare class SheetDirective extends ComplexBase<SheetDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ childRows: any;
19
+ childColumns: any;
20
+ childRanges: any;
21
+ childConditionalFormats: any;
22
+ tags: string[];
23
+ /**
24
+ * Specifies active cell within `selectedRange` in the sheet.
25
+ * @default 'A1'
26
+ */
27
+ activeCell: any;
28
+ /**
29
+ * Defines the number of columns to be rendered in the sheet.
30
+ * @default 100
31
+ * @asptype int
32
+ */
33
+ colCount: any;
34
+ /**
35
+ * Configures column and its properties for the sheet.
36
+ * @default null
37
+ */
38
+ columns: any;
39
+ /**
40
+ * Specifies the conditional formatting for the sheet.
41
+ * @default []
42
+ */
43
+ conditionalFormats: any;
44
+ /**
45
+ * Gets or sets the number of frozen columns.
46
+ * @default 0
47
+ * @asptype int
48
+ */
49
+ frozenColumns: any;
50
+ /**
51
+ * Gets or sets the number of frozen rows.
52
+ * @default 0
53
+ * @asptype int
54
+ */
55
+ frozenRows: any;
56
+ /**
57
+ * Specifies index of the sheet. Based on the index, sheet properties are applied.
58
+ * @default 0
59
+ * @asptype int
60
+ */
61
+ index: any;
62
+ /**
63
+ * Specifies to protect the cells in the sheet.
64
+ * @default false
65
+ */
66
+ isProtected: any;
67
+ /**
68
+ * Specifies the name of the sheet, the name will show in the sheet tabs.
69
+ * @default ''
70
+ */
71
+ name: any;
72
+ /**
73
+ * Represents the freeze pane top left cell. Its default value would be based on the number of freeze rows and columns.
74
+ * @default 'A1'
75
+ */
76
+ paneTopLeftCell: any;
77
+ /**
78
+ * Specifies the password.
79
+ * @default ''
80
+ */
81
+ password: any;
82
+ /**
83
+ * Configures protect and its options.
84
+ * @default { selectCells: false, formatCells: false, formatRows: false, formatColumns: false, insertLink: false }
85
+ */
86
+ protectSettings: any;
87
+ /**
88
+ * Specifies the collection of range for the sheet.
89
+ * @default []
90
+ */
91
+ ranges: any;
92
+ /**
93
+ * Defines the number of rows to be rendered in the sheet.
94
+ * @default 100
95
+ * @asptype int
96
+ */
97
+ rowCount: any;
98
+ /**
99
+ * Configures row and its properties for the sheet.
100
+ * @default null
101
+ */
102
+ rows: any;
103
+ /**
104
+ * Specifies selected range in the sheet.
105
+ *
106
+ * @default 'A1:A1'
107
+ */
108
+ selectedRange: any;
109
+ /**
110
+ * Specifies to show / hide grid lines in the sheet.
111
+ * @default true
112
+ */
113
+ showGridLines: any;
114
+ /**
115
+ * Specifies to show / hide column and row headers in the sheet.
116
+ * @default true
117
+ */
118
+ showHeaders: any;
119
+ /**
120
+ * Represents the standard height of the sheet.
121
+ * @default null
122
+ * @asptype double
123
+ * @aspdefaultvalue null
124
+ */
125
+ standardHeight: any;
126
+ /**
127
+ * Specifies the sheet visibility state. There must be at least one visible sheet in Spreadsheet.
128
+ * @default 'Visible'
129
+ */
130
+ state: any;
131
+ /**
132
+ * Specified cell will be positioned at the upper-left corner of the sheet.
133
+ * @default 'A1'
134
+ */
135
+ topLeftCell: any;
136
+ /**
137
+ * Defines the used range of the sheet.
138
+ * @default { rowIndex: 0, colIndex: 0 }
139
+ */
140
+ usedRange: any;
141
+ constructor(viewContainerRef: ViewContainerRef);
142
+ }
143
+ /**
144
+ * Sheet Array Directive
145
+ * @private
146
+ */
147
+ export declare class SheetsDirective extends ArrayBase<SheetsDirective> {
148
+ constructor();
149
+ }
@@ -1,27 +1,21 @@
1
- import { ValueProvider } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "./spreadsheet.module";
5
- export declare const ClipboardService: ValueProvider;
6
- export declare const EditService: ValueProvider;
7
- export declare const KeyboardNavigationService: ValueProvider;
8
- export declare const KeyboardShortcutService: ValueProvider;
9
- export declare const SelectionService: ValueProvider;
10
- export declare const ContextMenuService: ValueProvider;
11
- export declare const FormulaBarService: ValueProvider;
12
- export declare const RibbonService: ValueProvider;
13
- export declare const SaveService: ValueProvider;
14
- export declare const OpenService: ValueProvider;
15
- export declare const SheetTabsService: ValueProvider;
16
- export declare const DataBindService: ValueProvider;
17
- export declare const CellFormatService: ValueProvider;
18
- export declare const NumberFormatService: ValueProvider;
19
- export declare const FormulaService: ValueProvider;
20
- /**
21
- * NgModule definition for the Spreadsheet component with providers.
22
- */
23
- export declare class SpreadsheetAllModule {
24
- static ɵfac: i0.ɵɵFactoryDeclaration<SpreadsheetAllModule, never>;
25
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpreadsheetAllModule, never, [typeof i1.CommonModule, typeof i2.SpreadsheetModule], [typeof i2.SpreadsheetModule]>;
26
- static ɵinj: i0.ɵɵInjectorDeclaration<SpreadsheetAllModule>;
27
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ export declare const ClipboardService: ValueProvider;
3
+ export declare const EditService: ValueProvider;
4
+ export declare const KeyboardNavigationService: ValueProvider;
5
+ export declare const KeyboardShortcutService: ValueProvider;
6
+ export declare const SelectionService: ValueProvider;
7
+ export declare const ContextMenuService: ValueProvider;
8
+ export declare const FormulaBarService: ValueProvider;
9
+ export declare const RibbonService: ValueProvider;
10
+ export declare const SaveService: ValueProvider;
11
+ export declare const OpenService: ValueProvider;
12
+ export declare const SheetTabsService: ValueProvider;
13
+ export declare const DataBindService: ValueProvider;
14
+ export declare const CellFormatService: ValueProvider;
15
+ export declare const NumberFormatService: ValueProvider;
16
+ export declare const FormulaService: ValueProvider;
17
+ /**
18
+ * NgModule definition for the Spreadsheet component with providers.
19
+ */
20
+ export declare class SpreadsheetAllModule {
21
+ }
@@ -1,72 +1,69 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Spreadsheet } from '@syncfusion/ej2-spreadsheet';
4
- import { SheetsDirective } from './sheets.directive';
5
- import { DefinedNamesDirective } from './definednames.directive';
6
- import * as i0 from "@angular/core";
7
- export declare const inputs: string[];
8
- export declare const outputs: string[];
9
- export declare const twoWays: string[];
10
- /**
11
- * `ejs-spreadsheet` represents the Angular Spreadsheet Component.
12
- * ```html
13
- * <ejs-spreadsheet></ejs-spreadsheet>
14
- * ```
15
- */
16
- export declare class SpreadsheetComponent extends Spreadsheet implements IComponentBase {
17
- private ngEle;
18
- private srenderer;
19
- private viewContainerRef;
20
- private injector;
21
- context: any;
22
- tagObjects: any;
23
- actionBegin: any;
24
- actionComplete: any;
25
- afterHyperlinkClick: any;
26
- afterHyperlinkCreate: any;
27
- beforeCellFormat: any;
28
- beforeCellRender: any;
29
- beforeCellSave: any;
30
- beforeCellUpdate: any;
31
- beforeConditionalFormat: any;
32
- beforeDataBound: any;
33
- beforeHyperlinkClick: any;
34
- beforeHyperlinkCreate: any;
35
- beforeOpen: any;
36
- beforeSave: any;
37
- beforeSelect: any;
38
- beforeSort: any;
39
- cellEdit: any;
40
- cellEdited: any;
41
- cellEditing: any;
42
- cellSave: any;
43
- contextMenuBeforeClose: any;
44
- contextMenuBeforeOpen: any;
45
- contextMenuItemSelect: any;
46
- created: any;
47
- dataBound: any;
48
- dataSourceChanged: any;
49
- dialogBeforeOpen: any;
50
- fileMenuBeforeClose: any;
51
- fileMenuBeforeOpen: any;
52
- fileMenuItemSelect: any;
53
- openComplete: any;
54
- openFailure: any;
55
- queryCellInfo: any;
56
- saveComplete: any;
57
- select: any;
58
- sortComplete: any;
59
- childSheets: QueryList<SheetsDirective>;
60
- childDefinedNames: QueryList<DefinedNamesDirective>;
61
- tags: string[];
62
- template: any;
63
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
64
- ngOnInit(): void;
65
- ngAfterViewInit(): void;
66
- ngOnDestroy(): void;
67
- ngAfterContentChecked(): void;
68
- registerEvents: (eventList: string[]) => void;
69
- addTwoWay: (propList: string[]) => void;
70
- static ɵfac: i0.ɵɵFactoryDeclaration<SpreadsheetComponent, never>;
71
- static ɵcmp: i0.ɵɵComponentDeclaration<SpreadsheetComponent, "ejs-spreadsheet", never, { "activeSheetIndex": "activeSheetIndex"; "allowAutoFill": "allowAutoFill"; "allowCellFormatting": "allowCellFormatting"; "allowChart": "allowChart"; "allowConditionalFormat": "allowConditionalFormat"; "allowDataValidation": "allowDataValidation"; "allowDelete": "allowDelete"; "allowEditing": "allowEditing"; "allowFiltering": "allowFiltering"; "allowFindAndReplace": "allowFindAndReplace"; "allowFreezePane": "allowFreezePane"; "allowHyperlink": "allowHyperlink"; "allowImage": "allowImage"; "allowInsert": "allowInsert"; "allowMerge": "allowMerge"; "allowNumberFormatting": "allowNumberFormatting"; "allowOpen": "allowOpen"; "allowPrint": "allowPrint"; "allowResizing": "allowResizing"; "allowSave": "allowSave"; "allowScrolling": "allowScrolling"; "allowSorting": "allowSorting"; "allowUndoRedo": "allowUndoRedo"; "allowWrap": "allowWrap"; "autoFillSettings": "autoFillSettings"; "calculationMode": "calculationMode"; "cellStyle": "cellStyle"; "cssClass": "cssClass"; "currencyCode": "currencyCode"; "definedNames": "definedNames"; "enableClipboard": "enableClipboard"; "enableContextMenu": "enableContextMenu"; "enableKeyboardNavigation": "enableKeyboardNavigation"; "enableKeyboardShortcut": "enableKeyboardShortcut"; "enableNotes": "enableNotes"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "height": "height"; "isProtected": "isProtected"; "listSeparator": "listSeparator"; "locale": "locale"; "openSettings": "openSettings"; "openUrl": "openUrl"; "password": "password"; "saveUrl": "saveUrl"; "scrollSettings": "scrollSettings"; "selectionSettings": "selectionSettings"; "sheets": "sheets"; "showAggregate": "showAggregate"; "showFormulaBar": "showFormulaBar"; "showRibbon": "showRibbon"; "showSheetTabs": "showSheetTabs"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "afterHyperlinkClick": "afterHyperlinkClick"; "afterHyperlinkCreate": "afterHyperlinkCreate"; "beforeCellFormat": "beforeCellFormat"; "beforeCellRender": "beforeCellRender"; "beforeCellSave": "beforeCellSave"; "beforeCellUpdate": "beforeCellUpdate"; "beforeConditionalFormat": "beforeConditionalFormat"; "beforeDataBound": "beforeDataBound"; "beforeHyperlinkClick": "beforeHyperlinkClick"; "beforeHyperlinkCreate": "beforeHyperlinkCreate"; "beforeOpen": "beforeOpen"; "beforeSave": "beforeSave"; "beforeSelect": "beforeSelect"; "beforeSort": "beforeSort"; "cellEdit": "cellEdit"; "cellEdited": "cellEdited"; "cellEditing": "cellEditing"; "cellSave": "cellSave"; "contextMenuBeforeClose": "contextMenuBeforeClose"; "contextMenuBeforeOpen": "contextMenuBeforeOpen"; "contextMenuItemSelect": "contextMenuItemSelect"; "created": "created"; "dataBound": "dataBound"; "dataSourceChanged": "dataSourceChanged"; "dialogBeforeOpen": "dialogBeforeOpen"; "fileMenuBeforeClose": "fileMenuBeforeClose"; "fileMenuBeforeOpen": "fileMenuBeforeOpen"; "fileMenuItemSelect": "fileMenuItemSelect"; "openComplete": "openComplete"; "openFailure": "openFailure"; "queryCellInfo": "queryCellInfo"; "saveComplete": "saveComplete"; "select": "select"; "sortComplete": "sortComplete"; }, ["template", "childSheets", "childDefinedNames"], never>;
72
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Spreadsheet } from '@syncfusion/ej2-spreadsheet';
4
+ import { SheetsDirective } from './sheets.directive';
5
+ import { DefinedNamesDirective } from './definednames.directive';
6
+ export declare const inputs: string[];
7
+ export declare const outputs: string[];
8
+ export declare const twoWays: string[];
9
+ /**
10
+ * `ejs-spreadsheet` represents the Angular Spreadsheet Component.
11
+ * ```html
12
+ * <ejs-spreadsheet></ejs-spreadsheet>
13
+ * ```
14
+ */
15
+ export declare class SpreadsheetComponent extends Spreadsheet implements IComponentBase {
16
+ private ngEle;
17
+ private srenderer;
18
+ private viewContainerRef;
19
+ private injector;
20
+ context: any;
21
+ tagObjects: any;
22
+ actionBegin: any;
23
+ actionComplete: any;
24
+ afterHyperlinkClick: any;
25
+ afterHyperlinkCreate: any;
26
+ beforeCellFormat: any;
27
+ beforeCellRender: any;
28
+ beforeCellSave: any;
29
+ beforeCellUpdate: any;
30
+ beforeConditionalFormat: any;
31
+ beforeDataBound: any;
32
+ beforeHyperlinkClick: any;
33
+ beforeHyperlinkCreate: any;
34
+ beforeOpen: any;
35
+ beforeSave: any;
36
+ beforeSelect: any;
37
+ beforeSort: any;
38
+ cellEdit: any;
39
+ cellEdited: any;
40
+ cellEditing: any;
41
+ cellSave: any;
42
+ contextMenuBeforeClose: any;
43
+ contextMenuBeforeOpen: any;
44
+ contextMenuItemSelect: any;
45
+ created: any;
46
+ dataBound: any;
47
+ dataSourceChanged: any;
48
+ dialogBeforeOpen: any;
49
+ fileMenuBeforeClose: any;
50
+ fileMenuBeforeOpen: any;
51
+ fileMenuItemSelect: any;
52
+ openComplete: any;
53
+ openFailure: any;
54
+ queryCellInfo: any;
55
+ saveComplete: any;
56
+ select: any;
57
+ sortComplete: any;
58
+ childSheets: QueryList<SheetsDirective>;
59
+ childDefinedNames: QueryList<DefinedNamesDirective>;
60
+ tags: string[];
61
+ template: any;
62
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
63
+ ngOnInit(): void;
64
+ ngAfterViewInit(): void;
65
+ ngOnDestroy(): void;
66
+ ngAfterContentChecked(): void;
67
+ registerEvents: (eventList: string[]) => void;
68
+ addTwoWay: (propList: string[]) => void;
69
+ }