@syncfusion/ej2-angular-spreadsheet 31.2.15 → 31.2.16-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.
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +962 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-spreadsheet.js +902 -0
- package/@syncfusion/ej2-angular-spreadsheet.js.map +1 -0
- package/LICENSE +10 -0
- package/README.md +2 -9
- package/dist/ej2-angular-spreadsheet.umd.js +1602 -0
- package/dist/ej2-angular-spreadsheet.umd.js.map +1 -0
- package/dist/ej2-angular-spreadsheet.umd.min.js +11 -0
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +1 -0
- package/ej2-angular-spreadsheet.d.ts +5 -0
- package/ej2-angular-spreadsheet.metadata.json +1 -0
- package/package.json +8 -21
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +13 -13
- package/src/spreadsheet/cells.directive.d.ts +115 -120
- package/src/spreadsheet/chart.directive.d.ts +79 -84
- package/src/spreadsheet/columns.directive.d.ts +71 -76
- package/src/spreadsheet/conditionalformats.directive.d.ts +55 -60
- package/src/spreadsheet/definednames.directive.d.ts +49 -54
- package/src/spreadsheet/image.directive.d.ts +48 -53
- package/src/spreadsheet/ranges.directive.d.ts +68 -73
- package/src/spreadsheet/rows.directive.d.ts +69 -74
- package/src/spreadsheet/sheets.directive.d.ts +149 -154
- package/src/spreadsheet/spreadsheet-all.module.d.ts +21 -27
- package/src/spreadsheet/spreadsheet.component.d.ts +69 -72
- package/src/spreadsheet/spreadsheet.module.d.ts +5 -20
- package/CHANGELOG.md +0 -1588
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -14
- package/esm2020/src/spreadsheet/cells.directive.mjs +0 -71
- package/esm2020/src/spreadsheet/chart.directive.mjs +0 -46
- package/esm2020/src/spreadsheet/columns.directive.mjs +0 -61
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +0 -61
- package/esm2020/src/spreadsheet/definednames.directive.mjs +0 -58
- package/esm2020/src/spreadsheet/image.directive.mjs +0 -46
- package/esm2020/src/spreadsheet/ranges.directive.mjs +0 -69
- package/esm2020/src/spreadsheet/rows.directive.mjs +0 -65
- package/esm2020/src/spreadsheet/sheets.directive.mjs +0 -68
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +0 -71
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +0 -181
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +0 -106
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
- 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
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-
|
|
11
|
-
* <e-
|
|
12
|
-
*
|
|
13
|
-
* </e-
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
*
|
|
41
|
-
* @
|
|
42
|
-
* @
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
*
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
*
|
|
53
|
-
* @
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
*
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-sheet></e-sheet>
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
* @
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
*
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
*
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
*
|
|
47
|
-
* @
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
*
|
|
53
|
-
* @
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
*
|
|
59
|
-
* @
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
*
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
*
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
*
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
*
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
*
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
*
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
*
|
|
95
|
-
* @
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
*
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
*
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
*
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
*
|
|
122
|
-
* @
|
|
123
|
-
* @
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
*
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
*
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
*
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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
|
+
}
|