@syncfusion/ej2-angular-spreadsheet 31.2.15-ngcc → 31.2.15

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 (48) hide show
  1. package/CHANGELOG.md +1588 -0
  2. package/README.md +9 -2
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/index.mjs +14 -0
  5. package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
  6. package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
  7. package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
  8. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
  9. package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
  10. package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
  11. package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
  12. package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
  13. package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
  14. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +71 -0
  15. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +181 -0
  16. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
  17. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
  18. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
  19. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  20. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
  21. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  22. package/package.json +20 -7
  23. package/public_api.d.ts +1 -1
  24. package/src/index.d.ts +13 -13
  25. package/src/spreadsheet/cells.directive.d.ts +120 -115
  26. package/src/spreadsheet/chart.directive.d.ts +84 -79
  27. package/src/spreadsheet/columns.directive.d.ts +76 -71
  28. package/src/spreadsheet/conditionalformats.directive.d.ts +60 -55
  29. package/src/spreadsheet/definednames.directive.d.ts +54 -49
  30. package/src/spreadsheet/image.directive.d.ts +53 -48
  31. package/src/spreadsheet/ranges.directive.d.ts +73 -68
  32. package/src/spreadsheet/rows.directive.d.ts +74 -69
  33. package/src/spreadsheet/sheets.directive.d.ts +154 -149
  34. package/src/spreadsheet/spreadsheet-all.module.d.ts +27 -21
  35. package/src/spreadsheet/spreadsheet.component.d.ts +72 -69
  36. package/src/spreadsheet/spreadsheet.module.d.ts +20 -5
  37. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  38. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -962
  39. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  40. package/@syncfusion/ej2-angular-spreadsheet.js +0 -902
  41. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  42. package/LICENSE +0 -10
  43. package/dist/ej2-angular-spreadsheet.umd.js +0 -1602
  44. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  45. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  46. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  47. package/ej2-angular-spreadsheet.d.ts +0 -5
  48. package/ej2-angular-spreadsheet.metadata.json +0 -1
@@ -1,68 +1,73 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-range` directive represent a range 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-ranges>
11
- * <e-range [dataSource]='data'></e-range>
12
- * </e-ranges>
13
- * </e-sheet>
14
- * </e-sheets>
15
- * </ejs-spreadsheet>
16
- * ```
17
- */
18
- export declare class RangeDirective extends ComplexBase<RangeDirective> {
19
- private viewContainerRef;
20
- directivePropList: any;
21
- /**
22
- * Specifies the address for updating the dataSource or template.
23
- * @default 'A1'
24
- */
25
- address: any;
26
- /**
27
- * Specifies the data as JSON / Data manager to the sheet.
28
- * @default null
29
- */
30
- dataSource: any;
31
- /**
32
- * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially.
33
- * This means that the first data field is assigned to Column A, the second to Column B, and so on.
34
- * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.
35
- * @default null
36
- */
37
- fieldsOrder: any;
38
- /**
39
- * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html)
40
- * that will be executed along with data processing.
41
- * @default null
42
- */
43
- query: any;
44
- /**
45
- * Show/Hide the field of the datasource as header.
46
- * @default true
47
- */
48
- showFieldAsHeader: any;
49
- /**
50
- * Specifies the start cell from which the datasource will be populated.
51
- * @default 'A1'
52
- */
53
- startCell: any;
54
- /**
55
- * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.
56
- * @default ''
57
- * @asptype string
58
- */
59
- template: any;
60
- constructor(viewContainerRef: ViewContainerRef);
61
- }
62
- /**
63
- * Range Array Directive
64
- * @private
65
- */
66
- export declare class RangesDirective extends ArrayBase<RangesDirective> {
67
- constructor();
68
- }
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-range` directive represent a range 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-ranges>
12
+ * <e-range [dataSource]='data'></e-range>
13
+ * </e-ranges>
14
+ * </e-sheet>
15
+ * </e-sheets>
16
+ * </ejs-spreadsheet>
17
+ * ```
18
+ */
19
+ export declare class RangeDirective extends ComplexBase<RangeDirective> {
20
+ private viewContainerRef;
21
+ directivePropList: any;
22
+ /**
23
+ * Specifies the address for updating the dataSource or template.
24
+ * @default 'A1'
25
+ */
26
+ address: any;
27
+ /**
28
+ * Specifies the data as JSON / Data manager to the sheet.
29
+ * @default null
30
+ */
31
+ dataSource: any;
32
+ /**
33
+ * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially.
34
+ * This means that the first data field is assigned to Column A, the second to Column B, and so on.
35
+ * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.
36
+ * @default null
37
+ */
38
+ fieldsOrder: any;
39
+ /**
40
+ * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html)
41
+ * that will be executed along with data processing.
42
+ * @default null
43
+ */
44
+ query: any;
45
+ /**
46
+ * Show/Hide the field of the datasource as header.
47
+ * @default true
48
+ */
49
+ showFieldAsHeader: any;
50
+ /**
51
+ * Specifies the start cell from which the datasource will be populated.
52
+ * @default 'A1'
53
+ */
54
+ startCell: any;
55
+ /**
56
+ * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.
57
+ * @default ''
58
+ * @asptype string
59
+ */
60
+ template: any;
61
+ constructor(viewContainerRef: ViewContainerRef);
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<RangeDirective, never>;
63
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RangeDirective, "e-ranges>e-range", never, { "address": "address"; "dataSource": "dataSource"; "fieldsOrder": "fieldsOrder"; "query": "query"; "showFieldAsHeader": "showFieldAsHeader"; "startCell": "startCell"; "template": "template"; }, {}, ["template"]>;
64
+ }
65
+ /**
66
+ * Range Array Directive
67
+ * @private
68
+ */
69
+ export declare class RangesDirective extends ArrayBase<RangesDirective> {
70
+ constructor();
71
+ static ɵfac: i0.ɵɵFactoryDeclaration<RangesDirective, never>;
72
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RangesDirective, "e-sheet>e-ranges", never, {}, {}, ["children"]>;
73
+ }
@@ -1,69 +1,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
+ 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,149 +1,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
+ 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,21 +1,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
+ 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
+ }