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

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 (49) hide show
  1. package/CHANGELOG.md +1622 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +15 -0
  4. package/esm2020/src/spreadsheet/cells.directive.mjs +73 -0
  5. package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
  6. package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
  7. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
  8. package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
  9. package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
  10. package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
  11. package/esm2020/src/spreadsheet/richtext.directive.mjs +46 -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 +74 -0
  15. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +188 -0
  16. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +115 -0
  17. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
  18. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +916 -0
  19. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  20. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +916 -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 +14 -14
  25. package/src/spreadsheet/cells.directive.d.ts +142 -137
  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/richtext.directive.d.ts +30 -25
  33. package/src/spreadsheet/rows.directive.d.ts +74 -69
  34. package/src/spreadsheet/sheets.directive.d.ts +154 -149
  35. package/src/spreadsheet/spreadsheet-all.module.d.ts +28 -22
  36. package/src/spreadsheet/spreadsheet.component.d.ts +74 -71
  37. package/src/spreadsheet/spreadsheet.module.d.ts +21 -5
  38. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  39. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -1029
  40. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  41. package/@syncfusion/ej2-angular-spreadsheet.js +0 -965
  42. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  43. package/LICENSE +0 -10
  44. package/dist/ej2-angular-spreadsheet.umd.js +0 -1706
  45. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  46. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  47. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  48. package/ej2-angular-spreadsheet.d.ts +0 -5
  49. package/ej2-angular-spreadsheet.metadata.json +0 -1
@@ -0,0 +1,916 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, ContentChildren, ContentChild, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { ComplexBase, setValue, ArrayBase, Template, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
4
+ import { __decorate } from 'tslib';
5
+ import { Spreadsheet, Clipboard, Edit, KeyboardNavigation, KeyboardShortcut, Selection, ContextMenu, FormulaBar, Ribbon, Save, Open, SheetTabs, DataBind, CellFormat, NumberFormat, Formula, AIAssist } from '@syncfusion/ej2-spreadsheet';
6
+ export * from '@syncfusion/ej2-spreadsheet';
7
+ import { CommonModule } from '@angular/common';
8
+
9
+ let input$9 = ['height', 'id', 'left', 'src', 'top', 'width'];
10
+ let outputs$a = [];
11
+ class ImageDirective extends ComplexBase {
12
+ constructor(viewContainerRef) {
13
+ super();
14
+ this.viewContainerRef = viewContainerRef;
15
+ setValue('currentInstance', this, this.viewContainerRef);
16
+ this.registerEvents(outputs$a);
17
+ this.directivePropList = input$9;
18
+ }
19
+ }
20
+ ImageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ImageDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
21
+ ImageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ImageDirective, selector: "e-images>e-image", inputs: { height: "height", id: "id", left: "left", src: "src", top: "top", width: "width" }, usesInheritance: true, ngImport: i0 });
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ImageDirective, decorators: [{
23
+ type: Directive,
24
+ args: [{
25
+ selector: 'e-images>e-image',
26
+ inputs: input$9,
27
+ outputs: outputs$a,
28
+ queries: {}
29
+ }]
30
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
31
+ /**
32
+ * Image Array Directive
33
+ * @private
34
+ */
35
+ class ImagesDirective extends ArrayBase {
36
+ constructor() {
37
+ super('image');
38
+ }
39
+ }
40
+ ImagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ImagesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
41
+ ImagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ImagesDirective, selector: "e-cell>e-images", queries: [{ propertyName: "children", predicate: ImageDirective }], usesInheritance: true, ngImport: i0 });
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ImagesDirective, decorators: [{
43
+ type: Directive,
44
+ args: [{
45
+ selector: 'e-cell>e-images',
46
+ queries: {
47
+ children: new ContentChildren(ImageDirective)
48
+ },
49
+ }]
50
+ }], ctorParameters: function () { return []; } });
51
+
52
+ let input$8 = ['dataLabelSettings', 'height', 'id', 'isSeriesInRows', 'legendSettings', 'markerSettings', 'primaryXAxis', 'primaryYAxis', 'range', 'theme', 'title', 'type', 'width'];
53
+ let outputs$9 = [];
54
+ class ChartDirective extends ComplexBase {
55
+ constructor(viewContainerRef) {
56
+ super();
57
+ this.viewContainerRef = viewContainerRef;
58
+ setValue('currentInstance', this, this.viewContainerRef);
59
+ this.registerEvents(outputs$9);
60
+ this.directivePropList = input$8;
61
+ }
62
+ }
63
+ ChartDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
64
+ ChartDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ChartDirective, selector: "e-charts>e-chart", inputs: { dataLabelSettings: "dataLabelSettings", height: "height", id: "id", isSeriesInRows: "isSeriesInRows", legendSettings: "legendSettings", markerSettings: "markerSettings", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", range: "range", theme: "theme", title: "title", type: "type", width: "width" }, usesInheritance: true, ngImport: i0 });
65
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartDirective, decorators: [{
66
+ type: Directive,
67
+ args: [{
68
+ selector: 'e-charts>e-chart',
69
+ inputs: input$8,
70
+ outputs: outputs$9,
71
+ queries: {}
72
+ }]
73
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
74
+ /**
75
+ * Chart Array Directive
76
+ * @private
77
+ */
78
+ class ChartsDirective extends ArrayBase {
79
+ constructor() {
80
+ super('chart');
81
+ }
82
+ }
83
+ ChartsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
84
+ ChartsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ChartsDirective, selector: "e-cell>e-charts", queries: [{ propertyName: "children", predicate: ChartDirective }], usesInheritance: true, ngImport: i0 });
85
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartsDirective, decorators: [{
86
+ type: Directive,
87
+ args: [{
88
+ selector: 'e-cell>e-charts',
89
+ queries: {
90
+ children: new ContentChildren(ChartDirective)
91
+ },
92
+ }]
93
+ }], ctorParameters: function () { return []; } });
94
+
95
+ let input$7 = ['style', 'text'];
96
+ let outputs$8 = [];
97
+ class RichTextDirective extends ComplexBase {
98
+ constructor(viewContainerRef) {
99
+ super();
100
+ this.viewContainerRef = viewContainerRef;
101
+ setValue('currentInstance', this, this.viewContainerRef);
102
+ this.registerEvents(outputs$8);
103
+ this.directivePropList = input$7;
104
+ }
105
+ }
106
+ RichTextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
107
+ RichTextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RichTextDirective, selector: "e-richtexts>e-richtext", inputs: { style: "style", text: "text" }, usesInheritance: true, ngImport: i0 });
108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextDirective, decorators: [{
109
+ type: Directive,
110
+ args: [{
111
+ selector: 'e-richtexts>e-richtext',
112
+ inputs: input$7,
113
+ outputs: outputs$8,
114
+ queries: {}
115
+ }]
116
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
117
+ /**
118
+ * RichText Array Directive
119
+ * @private
120
+ */
121
+ class RichTextsDirective extends ArrayBase {
122
+ constructor() {
123
+ super('richtext');
124
+ }
125
+ }
126
+ RichTextsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
127
+ RichTextsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RichTextsDirective, selector: "e-cell>e-richtexts", queries: [{ propertyName: "children", predicate: RichTextDirective }], usesInheritance: true, ngImport: i0 });
128
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextsDirective, decorators: [{
129
+ type: Directive,
130
+ args: [{
131
+ selector: 'e-cell>e-richtexts',
132
+ queries: {
133
+ children: new ContentChildren(RichTextDirective)
134
+ },
135
+ }]
136
+ }], ctorParameters: function () { return []; } });
137
+
138
+ let input$6 = ['chart', 'colSpan', 'comment', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'isReadOnly', 'notes', 'richText', 'rowSpan', 'style', 'validation', 'value', 'wrap'];
139
+ let outputs$7 = [];
140
+ /**
141
+ * `e-cell` directive represent a cell of the Angular Spreadsheet.
142
+ * It must be contained in a `e-row` directive.
143
+ * ```html
144
+ * <ejs-spreadsheet>
145
+ * <e-sheets>
146
+ * <e-sheet>
147
+ * <e-rows>
148
+ * <e-row>
149
+ * <e-cells>
150
+ * <e-cell value='A1'></e-cell>
151
+ * </e-cells>
152
+ * </e-row>
153
+ * </e-rows>
154
+ * </e-sheet>
155
+ * </e-sheets>
156
+ * </ejs-spreadsheet>
157
+ * ```
158
+ */
159
+ class CellDirective extends ComplexBase {
160
+ constructor(viewContainerRef) {
161
+ super();
162
+ this.viewContainerRef = viewContainerRef;
163
+ this.tags = ['image', 'chart', 'richText'];
164
+ setValue('currentInstance', this, this.viewContainerRef);
165
+ this.registerEvents(outputs$7);
166
+ this.directivePropList = input$6;
167
+ }
168
+ }
169
+ CellDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CellDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
170
+ CellDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CellDirective, selector: "e-cells>e-cell", inputs: { chart: "chart", colSpan: "colSpan", comment: "comment", format: "format", formula: "formula", hyperlink: "hyperlink", image: "image", index: "index", isLocked: "isLocked", isReadOnly: "isReadOnly", notes: "notes", richText: "richText", rowSpan: "rowSpan", style: "style", validation: "validation", value: "value", wrap: "wrap" }, queries: [{ propertyName: "childImage", first: true, predicate: ImagesDirective, descendants: true }, { propertyName: "childChart", first: true, predicate: ChartsDirective, descendants: true }, { propertyName: "childRichText", first: true, predicate: RichTextsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CellDirective, decorators: [{
172
+ type: Directive,
173
+ args: [{
174
+ selector: 'e-cells>e-cell',
175
+ inputs: input$6,
176
+ outputs: outputs$7,
177
+ queries: {
178
+ childImage: new ContentChild(ImagesDirective),
179
+ childChart: new ContentChild(ChartsDirective),
180
+ childRichText: new ContentChild(RichTextsDirective)
181
+ }
182
+ }]
183
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
184
+ /**
185
+ * Cell Array Directive
186
+ * @private
187
+ */
188
+ class CellsDirective extends ArrayBase {
189
+ constructor() {
190
+ super('cells');
191
+ }
192
+ }
193
+ CellsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CellsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
194
+ CellsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CellsDirective, selector: "e-row>e-cells", queries: [{ propertyName: "children", predicate: CellDirective }], usesInheritance: true, ngImport: i0 });
195
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CellsDirective, decorators: [{
196
+ type: Directive,
197
+ args: [{
198
+ selector: 'e-row>e-cells',
199
+ queries: {
200
+ children: new ContentChildren(CellDirective)
201
+ },
202
+ }]
203
+ }], ctorParameters: function () { return []; } });
204
+
205
+ let input$5 = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index', 'isReadOnly'];
206
+ let outputs$6 = [];
207
+ /**
208
+ * `e-row` directive represent a row of the Angular Spreadsheet.
209
+ * It must be contained in a `e-sheet` directive.
210
+ * ```html
211
+ * <ejs-spreadsheet>
212
+ * <e-sheets>
213
+ * <e-sheet>
214
+ * <e-rows>
215
+ * <e-row></e-row>
216
+ * </e-rows>
217
+ * </e-sheet>
218
+ * </e-sheets>
219
+ * </ejs-spreadsheet>
220
+ * ```
221
+ */
222
+ class RowDirective extends ComplexBase {
223
+ constructor(viewContainerRef) {
224
+ super();
225
+ this.viewContainerRef = viewContainerRef;
226
+ this.tags = ['cells'];
227
+ setValue('currentInstance', this, this.viewContainerRef);
228
+ this.registerEvents(outputs$6);
229
+ this.directivePropList = input$5;
230
+ }
231
+ }
232
+ RowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
233
+ RowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RowDirective, selector: "e-rows>e-row", inputs: { cells: "cells", customHeight: "customHeight", format: "format", height: "height", hidden: "hidden", index: "index", isReadOnly: "isReadOnly" }, queries: [{ propertyName: "childCells", first: true, predicate: CellsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
234
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowDirective, decorators: [{
235
+ type: Directive,
236
+ args: [{
237
+ selector: 'e-rows>e-row',
238
+ inputs: input$5,
239
+ outputs: outputs$6,
240
+ queries: {
241
+ childCells: new ContentChild(CellsDirective)
242
+ }
243
+ }]
244
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
245
+ /**
246
+ * Row Array Directive
247
+ * @private
248
+ */
249
+ class RowsDirective extends ArrayBase {
250
+ constructor() {
251
+ super('rows');
252
+ }
253
+ }
254
+ RowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
255
+ RowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RowsDirective, selector: "e-sheet>e-rows", queries: [{ propertyName: "children", predicate: RowDirective }], usesInheritance: true, ngImport: i0 });
256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowsDirective, decorators: [{
257
+ type: Directive,
258
+ args: [{
259
+ selector: 'e-sheet>e-rows',
260
+ queries: {
261
+ children: new ContentChildren(RowDirective)
262
+ },
263
+ }]
264
+ }], ctorParameters: function () { return []; } });
265
+
266
+ let input$4 = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'isReadOnly', 'validation', 'width'];
267
+ let outputs$5 = [];
268
+ /**
269
+ * `e-column` directive represent a column of the Angular Spreadsheet.
270
+ * It must be contained in a `e-sheet` directive.
271
+ * ```html
272
+ * <ejs-spreadsheet>
273
+ * <e-sheets>
274
+ * <e-sheet>
275
+ * <e-columns>
276
+ * <e-column width='100'></e-column>
277
+ * </e-columns>
278
+ * </e-sheet>
279
+ * </e-sheets>
280
+ * </ejs-spreadsheet>
281
+ * ```
282
+ */
283
+ class ColumnDirective extends ComplexBase {
284
+ constructor(viewContainerRef) {
285
+ super();
286
+ this.viewContainerRef = viewContainerRef;
287
+ setValue('currentInstance', this, this.viewContainerRef);
288
+ this.registerEvents(outputs$5);
289
+ this.directivePropList = input$4;
290
+ }
291
+ }
292
+ ColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
293
+ ColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColumnDirective, selector: "e-columns>e-column", inputs: { customWidth: "customWidth", format: "format", hidden: "hidden", index: "index", isLocked: "isLocked", isReadOnly: "isReadOnly", validation: "validation", width: "width" }, usesInheritance: true, ngImport: i0 });
294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, decorators: [{
295
+ type: Directive,
296
+ args: [{
297
+ selector: 'e-columns>e-column',
298
+ inputs: input$4,
299
+ outputs: outputs$5,
300
+ queries: {}
301
+ }]
302
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
303
+ /**
304
+ * Column Array Directive
305
+ * @private
306
+ */
307
+ class ColumnsDirective extends ArrayBase {
308
+ constructor() {
309
+ super('columns');
310
+ }
311
+ }
312
+ ColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
313
+ ColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColumnsDirective, selector: "e-sheet>e-columns", queries: [{ propertyName: "children", predicate: ColumnDirective }], usesInheritance: true, ngImport: i0 });
314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnsDirective, decorators: [{
315
+ type: Directive,
316
+ args: [{
317
+ selector: 'e-sheet>e-columns',
318
+ queries: {
319
+ children: new ContentChildren(ColumnDirective)
320
+ },
321
+ }]
322
+ }], ctorParameters: function () { return []; } });
323
+
324
+ let input$3 = ['address', 'dataSource', 'fieldsOrder', 'query', 'showFieldAsHeader', 'startCell', 'template'];
325
+ let outputs$4 = [];
326
+ /**
327
+ * `e-range` directive represent a range of the Angular Spreadsheet.
328
+ * It must be contained in a `e-sheet` directive.
329
+ * ```html
330
+ * <ejs-spreadsheet>
331
+ * <e-sheets>
332
+ * <e-sheet>
333
+ * <e-ranges>
334
+ * <e-range [dataSource]='data'></e-range>
335
+ * </e-ranges>
336
+ * </e-sheet>
337
+ * </e-sheets>
338
+ * </ejs-spreadsheet>
339
+ * ```
340
+ */
341
+ class RangeDirective extends ComplexBase {
342
+ constructor(viewContainerRef) {
343
+ super();
344
+ this.viewContainerRef = viewContainerRef;
345
+ setValue('currentInstance', this, this.viewContainerRef);
346
+ this.registerEvents(outputs$4);
347
+ this.directivePropList = input$3;
348
+ }
349
+ }
350
+ RangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
351
+ RangeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeDirective, selector: "e-ranges>e-range", inputs: { address: "address", dataSource: "dataSource", fieldsOrder: "fieldsOrder", query: "query", showFieldAsHeader: "showFieldAsHeader", startCell: "startCell", template: "template" }, queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }], usesInheritance: true, ngImport: i0 });
352
+ __decorate([
353
+ Template()
354
+ ], RangeDirective.prototype, "template", void 0);
355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeDirective, decorators: [{
356
+ type: Directive,
357
+ args: [{
358
+ selector: 'e-ranges>e-range',
359
+ inputs: input$3,
360
+ outputs: outputs$4,
361
+ queries: {}
362
+ }]
363
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { template: [{
364
+ type: ContentChild,
365
+ args: ['template']
366
+ }] } });
367
+ /**
368
+ * Range Array Directive
369
+ * @private
370
+ */
371
+ class RangesDirective extends ArrayBase {
372
+ constructor() {
373
+ super('ranges');
374
+ }
375
+ }
376
+ RangesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
377
+ RangesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangesDirective, selector: "e-sheet>e-ranges", queries: [{ propertyName: "children", predicate: RangeDirective }], usesInheritance: true, ngImport: i0 });
378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangesDirective, decorators: [{
379
+ type: Directive,
380
+ args: [{
381
+ selector: 'e-sheet>e-ranges',
382
+ queries: {
383
+ children: new ContentChildren(RangeDirective)
384
+ },
385
+ }]
386
+ }], ctorParameters: function () { return []; } });
387
+
388
+ let input$2 = ['cFColor', 'format', 'range', 'type', 'value'];
389
+ let outputs$3 = [];
390
+ /**
391
+ * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.
392
+ * It must be contained in a `e-sheet` directive.
393
+ * ```html
394
+ * <ejs-spreadsheet>
395
+ * <e-sheets>
396
+ * <e-sheet>
397
+ * <e-conditionalformats>
398
+ * <e-conditionalformat></e-conditionalformat>
399
+ * </e-conditionalformats>
400
+ * </e-sheet>
401
+ * </e-sheets>
402
+ * </ejs-spreadsheet>
403
+ * ```
404
+ */
405
+ class ConditionalFormatDirective extends ComplexBase {
406
+ constructor(viewContainerRef) {
407
+ super();
408
+ this.viewContainerRef = viewContainerRef;
409
+ setValue('currentInstance', this, this.viewContainerRef);
410
+ this.registerEvents(outputs$3);
411
+ this.directivePropList = input$2;
412
+ }
413
+ }
414
+ ConditionalFormatDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConditionalFormatDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
415
+ ConditionalFormatDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConditionalFormatDirective, selector: "e-conditionalformats>e-conditionalformat", inputs: { cFColor: "cFColor", format: "format", range: "range", type: "type", value: "value" }, usesInheritance: true, ngImport: i0 });
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConditionalFormatDirective, decorators: [{
417
+ type: Directive,
418
+ args: [{
419
+ selector: 'e-conditionalformats>e-conditionalformat',
420
+ inputs: input$2,
421
+ outputs: outputs$3,
422
+ queries: {}
423
+ }]
424
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
425
+ /**
426
+ * ConditionalFormat Array Directive
427
+ * @private
428
+ */
429
+ class ConditionalFormatsDirective extends ArrayBase {
430
+ constructor() {
431
+ super('conditionalformats');
432
+ }
433
+ }
434
+ ConditionalFormatsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConditionalFormatsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
435
+ ConditionalFormatsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ConditionalFormatsDirective, selector: "e-sheet>e-conditionalformats", queries: [{ propertyName: "children", predicate: ConditionalFormatDirective }], usesInheritance: true, ngImport: i0 });
436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ConditionalFormatsDirective, decorators: [{
437
+ type: Directive,
438
+ args: [{
439
+ selector: 'e-sheet>e-conditionalformats',
440
+ queries: {
441
+ children: new ContentChildren(ConditionalFormatDirective)
442
+ },
443
+ }]
444
+ }], ctorParameters: function () { return []; } });
445
+
446
+ let input$1 = ['activeCell', 'colCount', 'columns', 'conditionalFormats', 'frozenColumns', 'frozenRows', 'index', 'isProtected', 'name', 'paneTopLeftCell', 'password', 'protectSettings', 'ranges', 'rowCount', 'rows', 'selectedRange', 'showGridLines', 'showHeaders', 'standardHeight', 'state', 'topLeftCell', 'usedRange'];
447
+ let outputs$2 = [];
448
+ /**
449
+ * `e-sheet` directive represent a sheet of the Angular Spreadsheet.
450
+ * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
451
+ * ```html
452
+ * <ejs-spreadsheet>
453
+ * <e-sheets>
454
+ * <e-sheet></e-sheet>
455
+ * <e-sheet></e-sheet>
456
+ * </e-sheets>
457
+ * </ejs-spreadsheet>
458
+ * ```
459
+ */
460
+ class SheetDirective extends ComplexBase {
461
+ constructor(viewContainerRef) {
462
+ super();
463
+ this.viewContainerRef = viewContainerRef;
464
+ this.tags = ['rows', 'columns', 'ranges', 'conditionalFormats'];
465
+ setValue('currentInstance', this, this.viewContainerRef);
466
+ this.registerEvents(outputs$2);
467
+ this.directivePropList = input$1;
468
+ }
469
+ }
470
+ SheetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SheetDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
471
+ SheetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SheetDirective, selector: "e-sheets>e-sheet", inputs: { 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" }, queries: [{ propertyName: "childRows", first: true, predicate: RowsDirective, descendants: true }, { propertyName: "childColumns", first: true, predicate: ColumnsDirective, descendants: true }, { propertyName: "childRanges", first: true, predicate: RangesDirective, descendants: true }, { propertyName: "childConditionalFormats", first: true, predicate: ConditionalFormatsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SheetDirective, decorators: [{
473
+ type: Directive,
474
+ args: [{
475
+ selector: 'e-sheets>e-sheet',
476
+ inputs: input$1,
477
+ outputs: outputs$2,
478
+ queries: {
479
+ childRows: new ContentChild(RowsDirective),
480
+ childColumns: new ContentChild(ColumnsDirective),
481
+ childRanges: new ContentChild(RangesDirective),
482
+ childConditionalFormats: new ContentChild(ConditionalFormatsDirective)
483
+ }
484
+ }]
485
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
486
+ /**
487
+ * Sheet Array Directive
488
+ * @private
489
+ */
490
+ class SheetsDirective extends ArrayBase {
491
+ constructor() {
492
+ super('sheets');
493
+ }
494
+ }
495
+ SheetsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SheetsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
496
+ SheetsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SheetsDirective, selector: "ejs-spreadsheet>e-sheets", queries: [{ propertyName: "children", predicate: SheetDirective }], usesInheritance: true, ngImport: i0 });
497
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SheetsDirective, decorators: [{
498
+ type: Directive,
499
+ args: [{
500
+ selector: 'ejs-spreadsheet>e-sheets',
501
+ queries: {
502
+ children: new ContentChildren(SheetDirective)
503
+ },
504
+ }]
505
+ }], ctorParameters: function () { return []; } });
506
+
507
+ let input = ['comment', 'name', 'refersTo', 'scope'];
508
+ let outputs$1 = [];
509
+ /**
510
+ * `e-definedname` directive represent a defined name of the Angular Spreadsheet.
511
+ * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
512
+ * ```html
513
+ * <ejs-spreadsheet>
514
+ * <e-definednames>
515
+ * <e-definedname></e-definedname>
516
+ * <e-definedname></e-definedname>
517
+ * </e-definednames>
518
+ * </ejs-spreadsheet>
519
+ * ```
520
+ */
521
+ class DefinedNameDirective extends ComplexBase {
522
+ constructor(viewContainerRef) {
523
+ super();
524
+ this.viewContainerRef = viewContainerRef;
525
+ setValue('currentInstance', this, this.viewContainerRef);
526
+ this.registerEvents(outputs$1);
527
+ this.directivePropList = input;
528
+ }
529
+ }
530
+ DefinedNameDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DefinedNameDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
531
+ DefinedNameDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: DefinedNameDirective, selector: "e-definednames>e-definedname", inputs: { comment: "comment", name: "name", refersTo: "refersTo", scope: "scope" }, usesInheritance: true, ngImport: i0 });
532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DefinedNameDirective, decorators: [{
533
+ type: Directive,
534
+ args: [{
535
+ selector: 'e-definednames>e-definedname',
536
+ inputs: input,
537
+ outputs: outputs$1,
538
+ queries: {}
539
+ }]
540
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
541
+ /**
542
+ * DefinedName Array Directive
543
+ * @private
544
+ */
545
+ class DefinedNamesDirective extends ArrayBase {
546
+ constructor() {
547
+ super('definednames');
548
+ }
549
+ }
550
+ DefinedNamesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DefinedNamesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
551
+ DefinedNamesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: DefinedNamesDirective, selector: "ejs-spreadsheet>e-definednames", queries: [{ propertyName: "children", predicate: DefinedNameDirective }], usesInheritance: true, ngImport: i0 });
552
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DefinedNamesDirective, decorators: [{
553
+ type: Directive,
554
+ args: [{
555
+ selector: 'ejs-spreadsheet>e-definednames',
556
+ queries: {
557
+ children: new ContentChildren(DefinedNameDirective)
558
+ },
559
+ }]
560
+ }], ctorParameters: function () { return []; } });
561
+
562
+ const inputs = ['activeSheetIndex', 'aiAssistSettings', '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', 'enableAIAssist', 'enableClipboard', 'enableContextMenu', 'enableKeyboardNavigation', 'enableKeyboardShortcut', 'enableNotes', 'enablePersistence', 'enableRtl', 'height', 'isProtected', 'listSeparator', 'locale', 'openSettings', 'openUrl', 'password', 'saveUrl', 'scrollSettings', 'selectionSettings', 'sheets', 'showAggregate', 'showCommentsPane', 'showFormulaBar', 'showRibbon', 'showSheetTabs', 'width'];
563
+ const outputs = ['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', 'promptRequest', 'promptResponse', 'queryCellInfo', 'saveComplete', 'select', 'sortComplete'];
564
+ const twoWays = [''];
565
+ /**
566
+ * `ejs-spreadsheet` represents the Angular Spreadsheet Component.
567
+ * ```html
568
+ * <ejs-spreadsheet></ejs-spreadsheet>
569
+ * ```
570
+ */
571
+ let SpreadsheetComponent = class SpreadsheetComponent extends Spreadsheet {
572
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
573
+ super();
574
+ this.ngEle = ngEle;
575
+ this.srenderer = srenderer;
576
+ this.viewContainerRef = viewContainerRef;
577
+ this.injector = injector;
578
+ this.tags = ['sheets', 'definedNames'];
579
+ this.element = this.ngEle.nativeElement;
580
+ this.injectedModules = this.injectedModules || [];
581
+ try {
582
+ let mod = this.injector.get('SpreadsheetClipboard');
583
+ if (this.injectedModules.indexOf(mod) === -1) {
584
+ this.injectedModules.push(mod);
585
+ }
586
+ }
587
+ catch (_a) { }
588
+ try {
589
+ let mod = this.injector.get('SpreadsheetEdit');
590
+ if (this.injectedModules.indexOf(mod) === -1) {
591
+ this.injectedModules.push(mod);
592
+ }
593
+ }
594
+ catch (_b) { }
595
+ try {
596
+ let mod = this.injector.get('SpreadsheetKeyboardNavigation');
597
+ if (this.injectedModules.indexOf(mod) === -1) {
598
+ this.injectedModules.push(mod);
599
+ }
600
+ }
601
+ catch (_c) { }
602
+ try {
603
+ let mod = this.injector.get('SpreadsheetKeyboardShortcut');
604
+ if (this.injectedModules.indexOf(mod) === -1) {
605
+ this.injectedModules.push(mod);
606
+ }
607
+ }
608
+ catch (_d) { }
609
+ try {
610
+ let mod = this.injector.get('SpreadsheetSelection');
611
+ if (this.injectedModules.indexOf(mod) === -1) {
612
+ this.injectedModules.push(mod);
613
+ }
614
+ }
615
+ catch (_e) { }
616
+ try {
617
+ let mod = this.injector.get('SpreadsheetContextMenu');
618
+ if (this.injectedModules.indexOf(mod) === -1) {
619
+ this.injectedModules.push(mod);
620
+ }
621
+ }
622
+ catch (_f) { }
623
+ try {
624
+ let mod = this.injector.get('SpreadsheetFormulaBar');
625
+ if (this.injectedModules.indexOf(mod) === -1) {
626
+ this.injectedModules.push(mod);
627
+ }
628
+ }
629
+ catch (_g) { }
630
+ try {
631
+ let mod = this.injector.get('SpreadsheetRibbon');
632
+ if (this.injectedModules.indexOf(mod) === -1) {
633
+ this.injectedModules.push(mod);
634
+ }
635
+ }
636
+ catch (_h) { }
637
+ try {
638
+ let mod = this.injector.get('SpreadsheetSave');
639
+ if (this.injectedModules.indexOf(mod) === -1) {
640
+ this.injectedModules.push(mod);
641
+ }
642
+ }
643
+ catch (_j) { }
644
+ try {
645
+ let mod = this.injector.get('SpreadsheetOpen');
646
+ if (this.injectedModules.indexOf(mod) === -1) {
647
+ this.injectedModules.push(mod);
648
+ }
649
+ }
650
+ catch (_k) { }
651
+ try {
652
+ let mod = this.injector.get('SpreadsheetSheetTabs');
653
+ if (this.injectedModules.indexOf(mod) === -1) {
654
+ this.injectedModules.push(mod);
655
+ }
656
+ }
657
+ catch (_l) { }
658
+ try {
659
+ let mod = this.injector.get('SpreadsheetDataBind');
660
+ if (this.injectedModules.indexOf(mod) === -1) {
661
+ this.injectedModules.push(mod);
662
+ }
663
+ }
664
+ catch (_m) { }
665
+ try {
666
+ let mod = this.injector.get('SpreadsheetCellFormat');
667
+ if (this.injectedModules.indexOf(mod) === -1) {
668
+ this.injectedModules.push(mod);
669
+ }
670
+ }
671
+ catch (_o) { }
672
+ try {
673
+ let mod = this.injector.get('SpreadsheetNumberFormat');
674
+ if (this.injectedModules.indexOf(mod) === -1) {
675
+ this.injectedModules.push(mod);
676
+ }
677
+ }
678
+ catch (_p) { }
679
+ try {
680
+ let mod = this.injector.get('SpreadsheetFormula');
681
+ if (this.injectedModules.indexOf(mod) === -1) {
682
+ this.injectedModules.push(mod);
683
+ }
684
+ }
685
+ catch (_q) { }
686
+ try {
687
+ let mod = this.injector.get('SpreadsheetAIAssist');
688
+ if (this.injectedModules.indexOf(mod) === -1) {
689
+ this.injectedModules.push(mod);
690
+ }
691
+ }
692
+ catch (_r) { }
693
+ this.registerEvents(outputs);
694
+ this.addTwoWay.call(this, twoWays);
695
+ setValue('currentInstance', this, this.viewContainerRef);
696
+ this.context = new ComponentBase();
697
+ }
698
+ ngOnInit() {
699
+ this.context.ngOnInit(this);
700
+ }
701
+ ngAfterViewInit() {
702
+ this.context.ngAfterViewInit(this);
703
+ }
704
+ ngOnDestroy() {
705
+ this.context.ngOnDestroy(this);
706
+ }
707
+ ngAfterContentChecked() {
708
+ this.tagObjects[0].instance = this.childSheets;
709
+ if (this.childDefinedNames) {
710
+ this.tagObjects[1].instance = this.childDefinedNames;
711
+ }
712
+ this.context.ngAfterContentChecked(this);
713
+ }
714
+ };
715
+ SpreadsheetComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
716
+ SpreadsheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SpreadsheetComponent, selector: "ejs-spreadsheet", inputs: { activeSheetIndex: "activeSheetIndex", aiAssistSettings: "aiAssistSettings", 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", author: "author", autoFillSettings: "autoFillSettings", calculationMode: "calculationMode", cellStyle: "cellStyle", cssClass: "cssClass", currencyCode: "currencyCode", definedNames: "definedNames", enableAIAssist: "enableAIAssist", 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", showCommentsPane: "showCommentsPane", showFormulaBar: "showFormulaBar", showRibbon: "showRibbon", showSheetTabs: "showSheetTabs", width: "width" }, outputs: { 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", promptRequest: "promptRequest", promptResponse: "promptResponse", queryCellInfo: "queryCellInfo", saveComplete: "saveComplete", select: "select", sortComplete: "sortComplete" }, queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }, { propertyName: "childSheets", first: true, predicate: SheetsDirective, descendants: true }, { propertyName: "childDefinedNames", first: true, predicate: DefinedNamesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
717
+ __decorate([
718
+ Template()
719
+ ], SpreadsheetComponent.prototype, "template", void 0);
720
+ SpreadsheetComponent = __decorate([
721
+ ComponentMixins([ComponentBase])
722
+ ], SpreadsheetComponent);
723
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetComponent, decorators: [{
724
+ type: Component,
725
+ args: [{
726
+ selector: 'ejs-spreadsheet',
727
+ inputs: inputs,
728
+ outputs: outputs,
729
+ template: '',
730
+ changeDetection: ChangeDetectionStrategy.OnPush,
731
+ queries: {
732
+ childSheets: new ContentChild(SheetsDirective),
733
+ childDefinedNames: new ContentChild(DefinedNamesDirective)
734
+ }
735
+ }]
736
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { template: [{
737
+ type: ContentChild,
738
+ args: ['template']
739
+ }] } });
740
+
741
+ /**
742
+ * NgModule definition for the Spreadsheet component.
743
+ */
744
+ class SpreadsheetModule {
745
+ }
746
+ SpreadsheetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
747
+ SpreadsheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetModule, declarations: [SpreadsheetComponent,
748
+ ImageDirective,
749
+ ImagesDirective,
750
+ ChartDirective,
751
+ ChartsDirective,
752
+ RichTextDirective,
753
+ RichTextsDirective,
754
+ CellDirective,
755
+ CellsDirective,
756
+ RowDirective,
757
+ RowsDirective,
758
+ ColumnDirective,
759
+ ColumnsDirective,
760
+ RangeDirective,
761
+ RangesDirective,
762
+ ConditionalFormatDirective,
763
+ ConditionalFormatsDirective,
764
+ SheetDirective,
765
+ SheetsDirective,
766
+ DefinedNameDirective,
767
+ DefinedNamesDirective], imports: [CommonModule], exports: [SpreadsheetComponent,
768
+ ImageDirective,
769
+ ImagesDirective,
770
+ ChartDirective,
771
+ ChartsDirective,
772
+ RichTextDirective,
773
+ RichTextsDirective,
774
+ CellDirective,
775
+ CellsDirective,
776
+ RowDirective,
777
+ RowsDirective,
778
+ ColumnDirective,
779
+ ColumnsDirective,
780
+ RangeDirective,
781
+ RangesDirective,
782
+ ConditionalFormatDirective,
783
+ ConditionalFormatsDirective,
784
+ SheetDirective,
785
+ SheetsDirective,
786
+ DefinedNameDirective,
787
+ DefinedNamesDirective] });
788
+ SpreadsheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetModule, imports: [[CommonModule]] });
789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetModule, decorators: [{
790
+ type: NgModule,
791
+ args: [{
792
+ imports: [CommonModule],
793
+ declarations: [
794
+ SpreadsheetComponent,
795
+ ImageDirective,
796
+ ImagesDirective,
797
+ ChartDirective,
798
+ ChartsDirective,
799
+ RichTextDirective,
800
+ RichTextsDirective,
801
+ CellDirective,
802
+ CellsDirective,
803
+ RowDirective,
804
+ RowsDirective,
805
+ ColumnDirective,
806
+ ColumnsDirective,
807
+ RangeDirective,
808
+ RangesDirective,
809
+ ConditionalFormatDirective,
810
+ ConditionalFormatsDirective,
811
+ SheetDirective,
812
+ SheetsDirective,
813
+ DefinedNameDirective,
814
+ DefinedNamesDirective
815
+ ],
816
+ exports: [
817
+ SpreadsheetComponent,
818
+ ImageDirective,
819
+ ImagesDirective,
820
+ ChartDirective,
821
+ ChartsDirective,
822
+ RichTextDirective,
823
+ RichTextsDirective,
824
+ CellDirective,
825
+ CellsDirective,
826
+ RowDirective,
827
+ RowsDirective,
828
+ ColumnDirective,
829
+ ColumnsDirective,
830
+ RangeDirective,
831
+ RangesDirective,
832
+ ConditionalFormatDirective,
833
+ ConditionalFormatsDirective,
834
+ SheetDirective,
835
+ SheetsDirective,
836
+ DefinedNameDirective,
837
+ DefinedNamesDirective
838
+ ]
839
+ }]
840
+ }] });
841
+
842
+ const ClipboardService = { provide: 'SpreadsheetClipboard', useValue: Clipboard };
843
+ const EditService = { provide: 'SpreadsheetEdit', useValue: Edit };
844
+ const KeyboardNavigationService = { provide: 'SpreadsheetKeyboardNavigation', useValue: KeyboardNavigation };
845
+ const KeyboardShortcutService = { provide: 'SpreadsheetKeyboardShortcut', useValue: KeyboardShortcut };
846
+ const SelectionService = { provide: 'SpreadsheetSelection', useValue: Selection };
847
+ const ContextMenuService = { provide: 'SpreadsheetContextMenu', useValue: ContextMenu };
848
+ const FormulaBarService = { provide: 'SpreadsheetFormulaBar', useValue: FormulaBar };
849
+ const RibbonService = { provide: 'SpreadsheetRibbon', useValue: Ribbon };
850
+ const SaveService = { provide: 'SpreadsheetSave', useValue: Save };
851
+ const OpenService = { provide: 'SpreadsheetOpen', useValue: Open };
852
+ const SheetTabsService = { provide: 'SpreadsheetSheetTabs', useValue: SheetTabs };
853
+ const DataBindService = { provide: 'SpreadsheetDataBind', useValue: DataBind };
854
+ const CellFormatService = { provide: 'SpreadsheetCellFormat', useValue: CellFormat };
855
+ const NumberFormatService = { provide: 'SpreadsheetNumberFormat', useValue: NumberFormat };
856
+ const FormulaService = { provide: 'SpreadsheetFormula', useValue: Formula };
857
+ const AIAssistService = { provide: 'SpreadsheetAIAssist', useValue: AIAssist };
858
+ /**
859
+ * NgModule definition for the Spreadsheet component with providers.
860
+ */
861
+ class SpreadsheetAllModule {
862
+ }
863
+ SpreadsheetAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
864
+ SpreadsheetAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetAllModule, imports: [CommonModule, SpreadsheetModule], exports: [SpreadsheetModule] });
865
+ SpreadsheetAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetAllModule, providers: [
866
+ ClipboardService,
867
+ EditService,
868
+ KeyboardNavigationService,
869
+ KeyboardShortcutService,
870
+ SelectionService,
871
+ ContextMenuService,
872
+ FormulaBarService,
873
+ RibbonService,
874
+ SaveService,
875
+ OpenService,
876
+ SheetTabsService,
877
+ DataBindService,
878
+ CellFormatService,
879
+ NumberFormatService,
880
+ FormulaService,
881
+ AIAssistService
882
+ ], imports: [[CommonModule, SpreadsheetModule], SpreadsheetModule] });
883
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpreadsheetAllModule, decorators: [{
884
+ type: NgModule,
885
+ args: [{
886
+ imports: [CommonModule, SpreadsheetModule],
887
+ exports: [
888
+ SpreadsheetModule
889
+ ],
890
+ providers: [
891
+ ClipboardService,
892
+ EditService,
893
+ KeyboardNavigationService,
894
+ KeyboardShortcutService,
895
+ SelectionService,
896
+ ContextMenuService,
897
+ FormulaBarService,
898
+ RibbonService,
899
+ SaveService,
900
+ OpenService,
901
+ SheetTabsService,
902
+ DataBindService,
903
+ CellFormatService,
904
+ NumberFormatService,
905
+ FormulaService,
906
+ AIAssistService
907
+ ]
908
+ }]
909
+ }] });
910
+
911
+ /**
912
+ * Generated bundle index. Do not edit.
913
+ */
914
+
915
+ export { AIAssistService, CellDirective, CellFormatService, CellsDirective, ChartDirective, ChartsDirective, ClipboardService, ColumnDirective, ColumnsDirective, ConditionalFormatDirective, ConditionalFormatsDirective, ContextMenuService, DataBindService, DefinedNameDirective, DefinedNamesDirective, EditService, FormulaBarService, FormulaService, ImageDirective, ImagesDirective, KeyboardNavigationService, KeyboardShortcutService, NumberFormatService, OpenService, RangeDirective, RangesDirective, RibbonService, RichTextDirective, RichTextsDirective, RowDirective, RowsDirective, SaveService, SelectionService, SheetDirective, SheetTabsService, SheetsDirective, SpreadsheetAllModule, SpreadsheetComponent, SpreadsheetModule };
916
+ //# sourceMappingURL=syncfusion-ej2-angular-spreadsheet.mjs.map