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

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 (193) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +14 -0
  3. package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
  4. package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
  5. package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
  6. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
  7. package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
  8. package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
  9. package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
  10. package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
  11. package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
  12. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +80 -0
  13. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +202 -0
  14. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
  15. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
  16. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
  17. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  18. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
  19. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  20. package/package.json +27 -13
  21. package/schematics/utils/lib-details.d.ts +2 -2
  22. package/src/spreadsheet/cells.directive.d.ts +5 -0
  23. package/src/spreadsheet/chart.directive.d.ts +5 -0
  24. package/src/spreadsheet/columns.directive.d.ts +5 -0
  25. package/src/spreadsheet/conditionalformats.directive.d.ts +5 -0
  26. package/src/spreadsheet/definednames.directive.d.ts +5 -0
  27. package/src/spreadsheet/image.directive.d.ts +5 -0
  28. package/src/spreadsheet/ranges.directive.d.ts +5 -0
  29. package/src/spreadsheet/rows.directive.d.ts +5 -0
  30. package/src/spreadsheet/sheets.directive.d.ts +5 -0
  31. package/src/spreadsheet/spreadsheet-all.module.d.ts +6 -0
  32. package/src/spreadsheet/spreadsheet.component.d.ts +3 -0
  33. package/src/spreadsheet/spreadsheet.module.d.ts +15 -0
  34. package/styles/bootstrap-dark.css +0 -8
  35. package/styles/bootstrap.css +0 -8
  36. package/styles/bootstrap4.css +0 -8
  37. package/styles/bootstrap5-dark.css +0 -8
  38. package/styles/bootstrap5.css +0 -8
  39. package/styles/fabric-dark.css +0 -8
  40. package/styles/fabric.css +0 -8
  41. package/styles/fluent-dark.css +0 -8
  42. package/styles/fluent.css +0 -8
  43. package/styles/highcontrast-light.css +0 -8
  44. package/styles/highcontrast.css +0 -8
  45. package/styles/material-dark.css +0 -8
  46. package/styles/material.css +0 -8
  47. package/styles/material3-dark.css +0 -63
  48. package/styles/material3-dark.scss +1 -0
  49. package/styles/material3.css +0 -119
  50. package/styles/material3.scss +1 -0
  51. package/styles/spreadsheet/_all.scss +2 -0
  52. package/styles/spreadsheet/_bootstrap-dark-definition.scss +223 -0
  53. package/styles/spreadsheet/_bootstrap-definition.scss +222 -0
  54. package/styles/spreadsheet/_bootstrap4-definition.scss +221 -0
  55. package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
  56. package/styles/spreadsheet/_bootstrap5-definition.scss +226 -0
  57. package/styles/spreadsheet/_fabric-dark-definition.scss +222 -0
  58. package/styles/spreadsheet/_fabric-definition.scss +223 -0
  59. package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
  60. package/styles/spreadsheet/_fluent-definition.scss +225 -0
  61. package/styles/spreadsheet/_fusionnew-definition.scss +171 -0
  62. package/styles/spreadsheet/_highcontrast-definition.scss +221 -0
  63. package/styles/spreadsheet/_highcontrast-light-definition.scss +220 -0
  64. package/styles/spreadsheet/_layout.scss +3892 -0
  65. package/styles/spreadsheet/_material-dark-definition.scss +223 -0
  66. package/styles/spreadsheet/_material-definition.scss +221 -0
  67. package/styles/spreadsheet/_material3-dark-definition.scss +1 -0
  68. package/styles/spreadsheet/_material3-definition.scss +246 -0
  69. package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
  70. package/styles/spreadsheet/_tailwind-definition.scss +231 -0
  71. package/styles/spreadsheet/_theme.scss +1654 -0
  72. package/styles/spreadsheet/bootstrap-dark.css +0 -8
  73. package/styles/spreadsheet/bootstrap-dark.scss +23 -1
  74. package/styles/spreadsheet/bootstrap.css +0 -8
  75. package/styles/spreadsheet/bootstrap.scss +23 -1
  76. package/styles/spreadsheet/bootstrap4.css +0 -8
  77. package/styles/spreadsheet/bootstrap4.scss +23 -1
  78. package/styles/spreadsheet/bootstrap5-dark.css +0 -8
  79. package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
  80. package/styles/spreadsheet/bootstrap5.css +0 -8
  81. package/styles/spreadsheet/bootstrap5.scss +23 -1
  82. package/styles/spreadsheet/fabric-dark.css +0 -8
  83. package/styles/spreadsheet/fabric-dark.scss +23 -1
  84. package/styles/spreadsheet/fabric.css +0 -8
  85. package/styles/spreadsheet/fabric.scss +23 -1
  86. package/styles/spreadsheet/fluent-dark.css +0 -8
  87. package/styles/spreadsheet/fluent-dark.scss +22 -1
  88. package/styles/spreadsheet/fluent.css +0 -8
  89. package/styles/spreadsheet/fluent.scss +23 -1
  90. package/styles/spreadsheet/highcontrast-light.css +0 -8
  91. package/styles/spreadsheet/highcontrast-light.scss +22 -1
  92. package/styles/spreadsheet/highcontrast.css +0 -8
  93. package/styles/spreadsheet/highcontrast.scss +23 -1
  94. package/styles/spreadsheet/icons/_bootstrap-dark.scss +1008 -0
  95. package/styles/spreadsheet/icons/_bootstrap.scss +1008 -0
  96. package/styles/spreadsheet/icons/_bootstrap4.scss +1012 -0
  97. package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
  98. package/styles/spreadsheet/icons/_bootstrap5.scss +1014 -0
  99. package/styles/spreadsheet/icons/_fabric-dark.scss +1008 -0
  100. package/styles/spreadsheet/icons/_fabric.scss +1012 -0
  101. package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
  102. package/styles/spreadsheet/icons/_fluent.scss +1014 -0
  103. package/styles/spreadsheet/icons/_fusionnew.scss +1014 -0
  104. package/styles/spreadsheet/icons/_highcontrast.scss +1008 -0
  105. package/styles/spreadsheet/icons/_material-dark.scss +1011 -0
  106. package/styles/spreadsheet/icons/_material.scss +1013 -0
  107. package/styles/spreadsheet/icons/_material3-dark.scss +1 -0
  108. package/styles/spreadsheet/icons/_material3.scss +1020 -0
  109. package/styles/spreadsheet/icons/_tailwind-dark.scss +1014 -0
  110. package/styles/spreadsheet/icons/_tailwind.scss +1014 -0
  111. package/styles/spreadsheet/material-dark.css +0 -8
  112. package/styles/spreadsheet/material-dark.scss +23 -1
  113. package/styles/spreadsheet/material.css +0 -8
  114. package/styles/spreadsheet/material.scss +23 -1
  115. package/styles/spreadsheet/material3-dark.css +0 -8
  116. package/styles/spreadsheet/material3-dark.scss +22 -1
  117. package/styles/spreadsheet/material3.css +0 -8
  118. package/styles/spreadsheet/material3.scss +23 -1
  119. package/styles/spreadsheet/tailwind-dark.css +0 -8
  120. package/styles/spreadsheet/tailwind-dark.scss +22 -1
  121. package/styles/spreadsheet/tailwind.css +0 -8
  122. package/styles/spreadsheet/tailwind.scss +23 -1
  123. package/styles/spreadsheet-ribbon/_all.scss +2 -0
  124. package/styles/spreadsheet-ribbon/_bootstrap-dark-definition.scss +15 -0
  125. package/styles/spreadsheet-ribbon/_bootstrap-definition.scss +14 -0
  126. package/styles/spreadsheet-ribbon/_bootstrap4-definition.scss +14 -0
  127. package/styles/spreadsheet-ribbon/_bootstrap5-dark-definition.scss +1 -0
  128. package/styles/spreadsheet-ribbon/_bootstrap5-definition.scss +16 -0
  129. package/styles/spreadsheet-ribbon/_fabric-dark-definition.scss +18 -0
  130. package/styles/spreadsheet-ribbon/_fabric-definition.scss +18 -0
  131. package/styles/spreadsheet-ribbon/_fluent-dark-definition.scss +1 -0
  132. package/styles/spreadsheet-ribbon/_fluent-definition.scss +16 -0
  133. package/styles/spreadsheet-ribbon/_fusionnew-definition.scss +15 -0
  134. package/styles/spreadsheet-ribbon/_highcontrast-definition.scss +16 -0
  135. package/styles/spreadsheet-ribbon/_highcontrast-light-definition.scss +14 -0
  136. package/styles/spreadsheet-ribbon/_layout.scss +299 -0
  137. package/styles/spreadsheet-ribbon/_material-dark-definition.scss +17 -0
  138. package/styles/spreadsheet-ribbon/_material-definition.scss +14 -0
  139. package/styles/spreadsheet-ribbon/_material3-dark-definition.scss +1 -0
  140. package/styles/spreadsheet-ribbon/_material3-definition.scss +21 -0
  141. package/styles/spreadsheet-ribbon/_mixin.scss +140 -0
  142. package/styles/spreadsheet-ribbon/_tailwind-dark-definition.scss +1 -0
  143. package/styles/spreadsheet-ribbon/_tailwind-definition.scss +15 -0
  144. package/styles/spreadsheet-ribbon/_theme.scss +173 -0
  145. package/styles/spreadsheet-ribbon/bootstrap-dark.scss +4 -1
  146. package/styles/spreadsheet-ribbon/bootstrap.scss +4 -1
  147. package/styles/spreadsheet-ribbon/bootstrap4.scss +4 -1
  148. package/styles/spreadsheet-ribbon/bootstrap5-dark.scss +4 -1
  149. package/styles/spreadsheet-ribbon/bootstrap5.scss +4 -1
  150. package/styles/spreadsheet-ribbon/fabric-dark.scss +4 -1
  151. package/styles/spreadsheet-ribbon/fabric.scss +4 -1
  152. package/styles/spreadsheet-ribbon/fluent-dark.scss +4 -1
  153. package/styles/spreadsheet-ribbon/fluent.scss +4 -1
  154. package/styles/spreadsheet-ribbon/highcontrast-light.scss +3 -1
  155. package/styles/spreadsheet-ribbon/highcontrast.scss +4 -1
  156. package/styles/spreadsheet-ribbon/icons/_bootstrap-dark.scss +15 -0
  157. package/styles/spreadsheet-ribbon/icons/_bootstrap.scss +15 -0
  158. package/styles/spreadsheet-ribbon/icons/_bootstrap4.scss +9 -0
  159. package/styles/spreadsheet-ribbon/icons/_bootstrap5-dark.scss +1 -0
  160. package/styles/spreadsheet-ribbon/icons/_bootstrap5.scss +15 -0
  161. package/styles/spreadsheet-ribbon/icons/_fabric-dark.scss +9 -0
  162. package/styles/spreadsheet-ribbon/icons/_fabric.scss +9 -0
  163. package/styles/spreadsheet-ribbon/icons/_fluent-dark.scss +1 -0
  164. package/styles/spreadsheet-ribbon/icons/_fluent.scss +15 -0
  165. package/styles/spreadsheet-ribbon/icons/_fusionnew.scss +15 -0
  166. package/styles/spreadsheet-ribbon/icons/_highcontrast.scss +9 -0
  167. package/styles/spreadsheet-ribbon/icons/_material-dark.scss +15 -0
  168. package/styles/spreadsheet-ribbon/icons/_material.scss +15 -0
  169. package/styles/spreadsheet-ribbon/icons/_material3-dark.scss +1 -0
  170. package/styles/spreadsheet-ribbon/icons/_material3.scss +15 -0
  171. package/styles/spreadsheet-ribbon/icons/_tailwind-dark.scss +15 -0
  172. package/styles/spreadsheet-ribbon/icons/_tailwind.scss +15 -0
  173. package/styles/spreadsheet-ribbon/material-dark.scss +4 -1
  174. package/styles/spreadsheet-ribbon/material.scss +4 -1
  175. package/styles/spreadsheet-ribbon/material3-dark.scss +4 -1
  176. package/styles/spreadsheet-ribbon/material3.scss +4 -1
  177. package/styles/spreadsheet-ribbon/tailwind-dark.scss +4 -1
  178. package/styles/spreadsheet-ribbon/tailwind.scss +4 -1
  179. package/styles/tailwind-dark.css +0 -8
  180. package/styles/tailwind.css +0 -8
  181. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  182. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
  183. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  184. package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
  185. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  186. package/CHANGELOG.md +0 -1487
  187. package/dist/ej2-angular-spreadsheet.umd.js +0 -1593
  188. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  189. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  190. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  191. package/ej2-angular-spreadsheet.d.ts +0 -5
  192. package/ej2-angular-spreadsheet.metadata.json +0 -1
  193. package/postinstall/tagchange.js +0 -18
@@ -1,989 +0,0 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = Object.setPrototypeOf ||
3
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5
- return function (d, b) {
6
- extendStatics(d, b);
7
- function __() { this.constructor = d; }
8
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9
- };
10
- })();
11
- import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
12
- import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
13
- import { AllModule, BasicModule, CellFormat, Clipboard, CollaborativeEditing, ContextMenu, DataBind, Edit, Formula, FormulaBar, KeyboardNavigation, KeyboardShortcut, NumberFormat, Open, Ribbon, Save, Selection, SheetTabs, Spreadsheet } from '@syncfusion/ej2-spreadsheet';
14
- import { CommonModule } from '@angular/common';
15
- var input = ['height', 'id', 'left', 'src', 'top', 'width'];
16
- var outputs = [];
17
- var ImageDirective = /** @class */ (function (_super) {
18
- __extends(ImageDirective, _super);
19
- /**
20
- * @param {?} viewContainerRef
21
- */
22
- function ImageDirective(viewContainerRef) {
23
- var _this = _super.call(this) || this;
24
- _this.viewContainerRef = viewContainerRef;
25
- setValue('currentInstance', _this, _this.viewContainerRef);
26
- _this.registerEvents(outputs);
27
- _this.directivePropList = input;
28
- return _this;
29
- }
30
- return ImageDirective;
31
- }(ComplexBase));
32
- ImageDirective.decorators = [
33
- { type: Directive, args: [{
34
- selector: 'e-images>e-image',
35
- inputs: input,
36
- outputs: outputs,
37
- queries: {}
38
- },] },
39
- ];
40
- /**
41
- * @nocollapse
42
- */
43
- ImageDirective.ctorParameters = function () { return [
44
- { type: ViewContainerRef, },
45
- ]; };
46
- /**
47
- * Image Array Directive
48
- */
49
- var ImagesDirective = /** @class */ (function (_super) {
50
- __extends(ImagesDirective, _super);
51
- function ImagesDirective() {
52
- return _super.call(this, 'image') || this;
53
- }
54
- return ImagesDirective;
55
- }(ArrayBase));
56
- ImagesDirective.decorators = [
57
- { type: Directive, args: [{
58
- selector: 'e-cell>e-images',
59
- queries: {
60
- children: new ContentChildren(ImageDirective)
61
- },
62
- },] },
63
- ];
64
- /**
65
- * @nocollapse
66
- */
67
- ImagesDirective.ctorParameters = function () { return []; };
68
- var input$1 = ['dataLabelSettings', 'height', 'id', 'isSeriesInRows', 'legendSettings', 'markerSettings', 'primaryXAxis', 'primaryYAxis', 'range', 'theme', 'title', 'type', 'width'];
69
- var outputs$1 = [];
70
- var ChartDirective = /** @class */ (function (_super) {
71
- __extends(ChartDirective, _super);
72
- /**
73
- * @param {?} viewContainerRef
74
- */
75
- function ChartDirective(viewContainerRef) {
76
- var _this = _super.call(this) || this;
77
- _this.viewContainerRef = viewContainerRef;
78
- setValue('currentInstance', _this, _this.viewContainerRef);
79
- _this.registerEvents(outputs$1);
80
- _this.directivePropList = input$1;
81
- return _this;
82
- }
83
- return ChartDirective;
84
- }(ComplexBase));
85
- ChartDirective.decorators = [
86
- { type: Directive, args: [{
87
- selector: 'e-charts>e-chart',
88
- inputs: input$1,
89
- outputs: outputs$1,
90
- queries: {}
91
- },] },
92
- ];
93
- /**
94
- * @nocollapse
95
- */
96
- ChartDirective.ctorParameters = function () { return [
97
- { type: ViewContainerRef, },
98
- ]; };
99
- /**
100
- * Chart Array Directive
101
- */
102
- var ChartsDirective = /** @class */ (function (_super) {
103
- __extends(ChartsDirective, _super);
104
- function ChartsDirective() {
105
- return _super.call(this, 'chart') || this;
106
- }
107
- return ChartsDirective;
108
- }(ArrayBase));
109
- ChartsDirective.decorators = [
110
- { type: Directive, args: [{
111
- selector: 'e-cell>e-charts',
112
- queries: {
113
- children: new ContentChildren(ChartDirective)
114
- },
115
- },] },
116
- ];
117
- /**
118
- * @nocollapse
119
- */
120
- ChartsDirective.ctorParameters = function () { return []; };
121
- var input$2 = ['chart', 'colSpan', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'rowSpan', 'style', 'validation', 'value', 'wrap'];
122
- var outputs$2 = [];
123
- /**
124
- * `e-cell` directive represent a cell of the Angular Spreadsheet.
125
- * It must be contained in a `e-row` directive.
126
- * ```html
127
- * <ejs-spreadsheet>
128
- * <e-sheets>
129
- * <e-sheet>
130
- * <e-rows>
131
- * <e-row>
132
- * <e-cells>
133
- * <e-cell value='A1'></e-cell>
134
- * </e-cells>
135
- * </e-row>
136
- * </e-rows>
137
- * </e-sheet>
138
- * </e-sheets>
139
- * </ejs-spreadsheet>
140
- * ```
141
- */
142
- var CellDirective = /** @class */ (function (_super) {
143
- __extends(CellDirective, _super);
144
- /**
145
- * @param {?} viewContainerRef
146
- */
147
- function CellDirective(viewContainerRef) {
148
- var _this = _super.call(this) || this;
149
- _this.viewContainerRef = viewContainerRef;
150
- _this.tags = ['image', 'chart'];
151
- setValue('currentInstance', _this, _this.viewContainerRef);
152
- _this.registerEvents(outputs$2);
153
- _this.directivePropList = input$2;
154
- return _this;
155
- }
156
- return CellDirective;
157
- }(ComplexBase));
158
- CellDirective.decorators = [
159
- { type: Directive, args: [{
160
- selector: 'e-cells>e-cell',
161
- inputs: input$2,
162
- outputs: outputs$2,
163
- queries: {
164
- childImage: new ContentChild(ImagesDirective),
165
- childChart: new ContentChild(ChartsDirective)
166
- }
167
- },] },
168
- ];
169
- /**
170
- * @nocollapse
171
- */
172
- CellDirective.ctorParameters = function () { return [
173
- { type: ViewContainerRef, },
174
- ]; };
175
- /**
176
- * Cell Array Directive
177
- */
178
- var CellsDirective = /** @class */ (function (_super) {
179
- __extends(CellsDirective, _super);
180
- function CellsDirective() {
181
- return _super.call(this, 'cells') || this;
182
- }
183
- return CellsDirective;
184
- }(ArrayBase));
185
- CellsDirective.decorators = [
186
- { type: Directive, args: [{
187
- selector: 'e-row>e-cells',
188
- queries: {
189
- children: new ContentChildren(CellDirective)
190
- },
191
- },] },
192
- ];
193
- /**
194
- * @nocollapse
195
- */
196
- CellsDirective.ctorParameters = function () { return []; };
197
- var input$3 = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index'];
198
- var outputs$3 = [];
199
- /**
200
- * `e-row` directive represent a row of the Angular Spreadsheet.
201
- * It must be contained in a `e-sheet` directive.
202
- * ```html
203
- * <ejs-spreadsheet>
204
- * <e-sheets>
205
- * <e-sheet>
206
- * <e-rows>
207
- * <e-row></e-row>
208
- * </e-rows>
209
- * </e-sheet>
210
- * </e-sheets>
211
- * </ejs-spreadsheet>
212
- * ```
213
- */
214
- var RowDirective = /** @class */ (function (_super) {
215
- __extends(RowDirective, _super);
216
- /**
217
- * @param {?} viewContainerRef
218
- */
219
- function RowDirective(viewContainerRef) {
220
- var _this = _super.call(this) || this;
221
- _this.viewContainerRef = viewContainerRef;
222
- _this.tags = ['cells'];
223
- setValue('currentInstance', _this, _this.viewContainerRef);
224
- _this.registerEvents(outputs$3);
225
- _this.directivePropList = input$3;
226
- return _this;
227
- }
228
- return RowDirective;
229
- }(ComplexBase));
230
- RowDirective.decorators = [
231
- { type: Directive, args: [{
232
- selector: 'e-rows>e-row',
233
- inputs: input$3,
234
- outputs: outputs$3,
235
- queries: {
236
- childCells: new ContentChild(CellsDirective)
237
- }
238
- },] },
239
- ];
240
- /**
241
- * @nocollapse
242
- */
243
- RowDirective.ctorParameters = function () { return [
244
- { type: ViewContainerRef, },
245
- ]; };
246
- /**
247
- * Row Array Directive
248
- */
249
- var RowsDirective = /** @class */ (function (_super) {
250
- __extends(RowsDirective, _super);
251
- function RowsDirective() {
252
- return _super.call(this, 'rows') || this;
253
- }
254
- return RowsDirective;
255
- }(ArrayBase));
256
- RowsDirective.decorators = [
257
- { type: Directive, args: [{
258
- selector: 'e-sheet>e-rows',
259
- queries: {
260
- children: new ContentChildren(RowDirective)
261
- },
262
- },] },
263
- ];
264
- /**
265
- * @nocollapse
266
- */
267
- RowsDirective.ctorParameters = function () { return []; };
268
- var input$4 = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'validation', 'width'];
269
- var outputs$4 = [];
270
- /**
271
- * `e-column` directive represent a column of the Angular Spreadsheet.
272
- * It must be contained in a `e-sheet` directive.
273
- * ```html
274
- * <ejs-spreadsheet>
275
- * <e-sheets>
276
- * <e-sheet>
277
- * <e-columns>
278
- * <e-column width='100'></e-column>
279
- * </e-columns>
280
- * </e-sheet>
281
- * </e-sheets>
282
- * </ejs-spreadsheet>
283
- * ```
284
- */
285
- var ColumnDirective = /** @class */ (function (_super) {
286
- __extends(ColumnDirective, _super);
287
- /**
288
- * @param {?} viewContainerRef
289
- */
290
- function ColumnDirective(viewContainerRef) {
291
- var _this = _super.call(this) || this;
292
- _this.viewContainerRef = viewContainerRef;
293
- setValue('currentInstance', _this, _this.viewContainerRef);
294
- _this.registerEvents(outputs$4);
295
- _this.directivePropList = input$4;
296
- return _this;
297
- }
298
- return ColumnDirective;
299
- }(ComplexBase));
300
- ColumnDirective.decorators = [
301
- { type: Directive, args: [{
302
- selector: 'e-columns>e-column',
303
- inputs: input$4,
304
- outputs: outputs$4,
305
- queries: {}
306
- },] },
307
- ];
308
- /**
309
- * @nocollapse
310
- */
311
- ColumnDirective.ctorParameters = function () { return [
312
- { type: ViewContainerRef, },
313
- ]; };
314
- /**
315
- * Column Array Directive
316
- */
317
- var ColumnsDirective = /** @class */ (function (_super) {
318
- __extends(ColumnsDirective, _super);
319
- function ColumnsDirective() {
320
- return _super.call(this, 'columns') || this;
321
- }
322
- return ColumnsDirective;
323
- }(ArrayBase));
324
- ColumnsDirective.decorators = [
325
- { type: Directive, args: [{
326
- selector: 'e-sheet>e-columns',
327
- queries: {
328
- children: new ContentChildren(ColumnDirective)
329
- },
330
- },] },
331
- ];
332
- /**
333
- * @nocollapse
334
- */
335
- ColumnsDirective.ctorParameters = function () { return []; };
336
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
337
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
338
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
339
- r = Reflect.decorate(decorators, target, key, desc);
340
- else
341
- for (var i = decorators.length - 1; i >= 0; i--)
342
- if (d = decorators[i])
343
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
344
- return c > 3 && r && Object.defineProperty(target, key, r), r;
345
- };
346
- var __metadata = (this && this.__metadata) || function (k, v) {
347
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
348
- return Reflect.metadata(k, v);
349
- };
350
- var input$5 = ['address', 'dataSource', 'query', 'showFieldAsHeader', 'startCell', 'template'];
351
- var outputs$5 = [];
352
- /**
353
- * `e-range` directive represent a range of the Angular Spreadsheet.
354
- * It must be contained in a `e-sheet` directive.
355
- * ```html
356
- * <ejs-spreadsheet>
357
- * <e-sheets>
358
- * <e-sheet>
359
- * <e-ranges>
360
- * <e-range [dataSource]='data'></e-range>
361
- * </e-ranges>
362
- * </e-sheet>
363
- * </e-sheets>
364
- * </ejs-spreadsheet>
365
- * ```
366
- */
367
- var RangeDirective = /** @class */ (function (_super) {
368
- __extends(RangeDirective, _super);
369
- /**
370
- * @param {?} viewContainerRef
371
- */
372
- function RangeDirective(viewContainerRef) {
373
- var _this = _super.call(this) || this;
374
- _this.viewContainerRef = viewContainerRef;
375
- setValue('currentInstance', _this, _this.viewContainerRef);
376
- _this.registerEvents(outputs$5);
377
- _this.directivePropList = input$5;
378
- return _this;
379
- }
380
- return RangeDirective;
381
- }(ComplexBase));
382
- RangeDirective.decorators = [
383
- { type: Directive, args: [{
384
- selector: 'e-ranges>e-range',
385
- inputs: input$5,
386
- outputs: outputs$5,
387
- queries: {}
388
- },] },
389
- ];
390
- /**
391
- * @nocollapse
392
- */
393
- RangeDirective.ctorParameters = function () { return [
394
- { type: ViewContainerRef, },
395
- ]; };
396
- RangeDirective.propDecorators = {
397
- 'template': [{ type: ContentChild, args: ['template',] },],
398
- };
399
- __decorate([
400
- Template(),
401
- __metadata("design:type", Object)
402
- ], RangeDirective.prototype, "template", void 0);
403
- /**
404
- * Range Array Directive
405
- */
406
- var RangesDirective = /** @class */ (function (_super) {
407
- __extends(RangesDirective, _super);
408
- function RangesDirective() {
409
- return _super.call(this, 'ranges') || this;
410
- }
411
- return RangesDirective;
412
- }(ArrayBase));
413
- RangesDirective.decorators = [
414
- { type: Directive, args: [{
415
- selector: 'e-sheet>e-ranges',
416
- queries: {
417
- children: new ContentChildren(RangeDirective)
418
- },
419
- },] },
420
- ];
421
- /**
422
- * @nocollapse
423
- */
424
- RangesDirective.ctorParameters = function () { return []; };
425
- var input$6 = ['cFColor', 'format', 'range', 'type', 'value'];
426
- var outputs$6 = [];
427
- /**
428
- * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.
429
- * It must be contained in a `e-sheet` directive.
430
- * ```html
431
- * <ejs-spreadsheet>
432
- * <e-sheets>
433
- * <e-sheet>
434
- * <e-conditionalformats>
435
- * <e-conditionalformat></e-conditionalformat>
436
- * </e-conditionalformats>
437
- * </e-sheet>
438
- * </e-sheets>
439
- * </ejs-spreadsheet>
440
- * ```
441
- */
442
- var ConditionalFormatDirective = /** @class */ (function (_super) {
443
- __extends(ConditionalFormatDirective, _super);
444
- /**
445
- * @param {?} viewContainerRef
446
- */
447
- function ConditionalFormatDirective(viewContainerRef) {
448
- var _this = _super.call(this) || this;
449
- _this.viewContainerRef = viewContainerRef;
450
- setValue('currentInstance', _this, _this.viewContainerRef);
451
- _this.registerEvents(outputs$6);
452
- _this.directivePropList = input$6;
453
- return _this;
454
- }
455
- return ConditionalFormatDirective;
456
- }(ComplexBase));
457
- ConditionalFormatDirective.decorators = [
458
- { type: Directive, args: [{
459
- selector: 'e-conditionalformats>e-conditionalformat',
460
- inputs: input$6,
461
- outputs: outputs$6,
462
- queries: {}
463
- },] },
464
- ];
465
- /**
466
- * @nocollapse
467
- */
468
- ConditionalFormatDirective.ctorParameters = function () { return [
469
- { type: ViewContainerRef, },
470
- ]; };
471
- /**
472
- * ConditionalFormat Array Directive
473
- */
474
- var ConditionalFormatsDirective = /** @class */ (function (_super) {
475
- __extends(ConditionalFormatsDirective, _super);
476
- function ConditionalFormatsDirective() {
477
- return _super.call(this, 'conditionalformats') || this;
478
- }
479
- return ConditionalFormatsDirective;
480
- }(ArrayBase));
481
- ConditionalFormatsDirective.decorators = [
482
- { type: Directive, args: [{
483
- selector: 'e-sheet>e-conditionalformats',
484
- queries: {
485
- children: new ContentChildren(ConditionalFormatDirective)
486
- },
487
- },] },
488
- ];
489
- /**
490
- * @nocollapse
491
- */
492
- ConditionalFormatsDirective.ctorParameters = function () { return []; };
493
- var input$7 = ['activeCell', 'colCount', 'columns', 'conditionalFormats', 'frozenColumns', 'frozenRows', 'index', 'isProtected', 'name', 'paneTopLeftCell', 'password', 'protectSettings', 'ranges', 'rowCount', 'rows', 'selectedRange', 'showGridLines', 'showHeaders', 'state', 'topLeftCell', 'usedRange'];
494
- var outputs$7 = [];
495
- /**
496
- * `e-sheet` directive represent a sheet of the Angular Spreadsheet.
497
- * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
498
- * ```html
499
- * <ejs-spreadsheet>
500
- * <e-sheets>
501
- * <e-sheet></e-sheet>
502
- * <e-sheet></e-sheet>
503
- * </e-sheets>
504
- * </ejs-spreadsheet>
505
- * ```
506
- */
507
- var SheetDirective = /** @class */ (function (_super) {
508
- __extends(SheetDirective, _super);
509
- /**
510
- * @param {?} viewContainerRef
511
- */
512
- function SheetDirective(viewContainerRef) {
513
- var _this = _super.call(this) || this;
514
- _this.viewContainerRef = viewContainerRef;
515
- _this.tags = ['rows', 'columns', 'ranges', 'conditionalFormats'];
516
- setValue('currentInstance', _this, _this.viewContainerRef);
517
- _this.registerEvents(outputs$7);
518
- _this.directivePropList = input$7;
519
- return _this;
520
- }
521
- return SheetDirective;
522
- }(ComplexBase));
523
- SheetDirective.decorators = [
524
- { type: Directive, args: [{
525
- selector: 'e-sheets>e-sheet',
526
- inputs: input$7,
527
- outputs: outputs$7,
528
- queries: {
529
- childRows: new ContentChild(RowsDirective),
530
- childColumns: new ContentChild(ColumnsDirective),
531
- childRanges: new ContentChild(RangesDirective),
532
- childConditionalFormats: new ContentChild(ConditionalFormatsDirective)
533
- }
534
- },] },
535
- ];
536
- /**
537
- * @nocollapse
538
- */
539
- SheetDirective.ctorParameters = function () { return [
540
- { type: ViewContainerRef, },
541
- ]; };
542
- /**
543
- * Sheet Array Directive
544
- */
545
- var SheetsDirective = /** @class */ (function (_super) {
546
- __extends(SheetsDirective, _super);
547
- function SheetsDirective() {
548
- return _super.call(this, 'sheets') || this;
549
- }
550
- return SheetsDirective;
551
- }(ArrayBase));
552
- SheetsDirective.decorators = [
553
- { type: Directive, args: [{
554
- selector: 'ejs-spreadsheet>e-sheets',
555
- queries: {
556
- children: new ContentChildren(SheetDirective)
557
- },
558
- },] },
559
- ];
560
- /**
561
- * @nocollapse
562
- */
563
- SheetsDirective.ctorParameters = function () { return []; };
564
- var input$8 = ['comment', 'name', 'refersTo', 'scope'];
565
- var outputs$8 = [];
566
- /**
567
- * `e-definedname` directive represent a defined name of the Angular Spreadsheet.
568
- * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
569
- * ```html
570
- * <ejs-spreadsheet>
571
- * <e-definednames>
572
- * <e-definedname></e-definedname>
573
- * <e-definedname></e-definedname>
574
- * </e-definednames>
575
- * </ejs-spreadsheet>
576
- * ```
577
- */
578
- var DefinedNameDirective = /** @class */ (function (_super) {
579
- __extends(DefinedNameDirective, _super);
580
- /**
581
- * @param {?} viewContainerRef
582
- */
583
- function DefinedNameDirective(viewContainerRef) {
584
- var _this = _super.call(this) || this;
585
- _this.viewContainerRef = viewContainerRef;
586
- setValue('currentInstance', _this, _this.viewContainerRef);
587
- _this.registerEvents(outputs$8);
588
- _this.directivePropList = input$8;
589
- return _this;
590
- }
591
- return DefinedNameDirective;
592
- }(ComplexBase));
593
- DefinedNameDirective.decorators = [
594
- { type: Directive, args: [{
595
- selector: 'e-definednames>e-definedname',
596
- inputs: input$8,
597
- outputs: outputs$8,
598
- queries: {}
599
- },] },
600
- ];
601
- /**
602
- * @nocollapse
603
- */
604
- DefinedNameDirective.ctorParameters = function () { return [
605
- { type: ViewContainerRef, },
606
- ]; };
607
- /**
608
- * DefinedName Array Directive
609
- */
610
- var DefinedNamesDirective = /** @class */ (function (_super) {
611
- __extends(DefinedNamesDirective, _super);
612
- function DefinedNamesDirective() {
613
- return _super.call(this, 'definednames') || this;
614
- }
615
- return DefinedNamesDirective;
616
- }(ArrayBase));
617
- DefinedNamesDirective.decorators = [
618
- { type: Directive, args: [{
619
- selector: 'ejs-spreadsheet>e-definednames',
620
- queries: {
621
- children: new ContentChildren(DefinedNameDirective)
622
- },
623
- },] },
624
- ];
625
- /**
626
- * @nocollapse
627
- */
628
- DefinedNamesDirective.ctorParameters = function () { return []; };
629
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
630
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
631
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
632
- r = Reflect.decorate(decorators, target, key, desc);
633
- else
634
- for (var i = decorators.length - 1; i >= 0; i--)
635
- if (d = decorators[i])
636
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
637
- return c > 3 && r && Object.defineProperty(target, key, r), r;
638
- };
639
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
640
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
641
- return Reflect.metadata(k, v);
642
- };
643
- var inputs = ['activeSheetIndex', 'allowAutoFill', 'allowCellFormatting', 'allowChart', 'allowConditionalFormat', 'allowDataValidation', 'allowDelete', 'allowEditing', 'allowFiltering', 'allowFindAndReplace', 'allowFreezePane', 'allowHyperlink', 'allowImage', 'allowInsert', 'allowMerge', 'allowNumberFormatting', 'allowOpen', 'allowResizing', 'allowSave', 'allowScrolling', 'allowSorting', 'allowUndoRedo', 'allowWrap', 'autoFillSettings', 'cellStyle', 'cssClass', 'currencyCode', 'definedNames', 'enableClipboard', 'enableContextMenu', 'enableKeyboardNavigation', 'enableKeyboardShortcut', 'enablePersistence', 'enableRtl', 'height', 'isProtected', 'locale', 'openUrl', 'password', 'saveUrl', 'scrollSettings', 'selectionSettings', 'sheets', 'showAggregate', 'showFormulaBar', 'showRibbon', 'showSheetTabs', 'width'];
644
- var outputs$9 = ['actionBegin', 'actionComplete', 'afterHyperlinkClick', 'afterHyperlinkCreate', 'beforeCellFormat', 'beforeCellRender', 'beforeCellSave', 'beforeCellUpdate', 'beforeConditionalFormat', 'beforeDataBound', 'beforeHyperlinkClick', 'beforeHyperlinkCreate', 'beforeOpen', 'beforeSave', 'beforeSelect', 'beforeSort', 'cellEdit', 'cellEditing', 'cellSave', 'contextMenuBeforeClose', 'contextMenuBeforeOpen', 'contextMenuItemSelect', 'created', 'dataBound', 'dataSourceChanged', 'dialogBeforeOpen', 'fileMenuBeforeClose', 'fileMenuBeforeOpen', 'fileMenuItemSelect', 'openComplete', 'openFailure', 'queryCellInfo', 'saveComplete', 'select', 'sortComplete'];
645
- var twoWays = [''];
646
- /**
647
- * `ejs-spreadsheet` represents the Angular Spreadsheet Component.
648
- * ```html
649
- * <ejs-spreadsheet></ejs-spreadsheet>
650
- * ```
651
- */
652
- var SpreadsheetComponent = /** @class */ (function (_super) {
653
- __extends(SpreadsheetComponent, _super);
654
- /**
655
- * @param {?} ngEle
656
- * @param {?} srenderer
657
- * @param {?} viewContainerRef
658
- * @param {?} injector
659
- */
660
- function SpreadsheetComponent(ngEle, srenderer, viewContainerRef, injector) {
661
- var _this = _super.call(this) || this;
662
- _this.ngEle = ngEle;
663
- _this.srenderer = srenderer;
664
- _this.viewContainerRef = viewContainerRef;
665
- _this.injector = injector;
666
- _this.tags = ['sheets', 'definedNames'];
667
- _this.element = _this.ngEle.nativeElement;
668
- _this.injectedModules = _this.injectedModules || [];
669
- try {
670
- var mod = _this.injector.get('SpreadsheetClipboard');
671
- if (_this.injectedModules.indexOf(mod) === -1) {
672
- _this.injectedModules.push(mod);
673
- }
674
- }
675
- catch (_a) { }
676
- try {
677
- var mod = _this.injector.get('SpreadsheetEdit');
678
- if (_this.injectedModules.indexOf(mod) === -1) {
679
- _this.injectedModules.push(mod);
680
- }
681
- }
682
- catch (_b) { }
683
- try {
684
- var mod = _this.injector.get('SpreadsheetKeyboardNavigation');
685
- if (_this.injectedModules.indexOf(mod) === -1) {
686
- _this.injectedModules.push(mod);
687
- }
688
- }
689
- catch (_c) { }
690
- try {
691
- var mod = _this.injector.get('SpreadsheetKeyboardShortcut');
692
- if (_this.injectedModules.indexOf(mod) === -1) {
693
- _this.injectedModules.push(mod);
694
- }
695
- }
696
- catch (_d) { }
697
- try {
698
- var mod = _this.injector.get('SpreadsheetCollaborativeEditing');
699
- if (_this.injectedModules.indexOf(mod) === -1) {
700
- _this.injectedModules.push(mod);
701
- }
702
- }
703
- catch (_e) { }
704
- try {
705
- var mod = _this.injector.get('SpreadsheetSelection');
706
- if (_this.injectedModules.indexOf(mod) === -1) {
707
- _this.injectedModules.push(mod);
708
- }
709
- }
710
- catch (_f) { }
711
- try {
712
- var mod = _this.injector.get('SpreadsheetContextMenu');
713
- if (_this.injectedModules.indexOf(mod) === -1) {
714
- _this.injectedModules.push(mod);
715
- }
716
- }
717
- catch (_g) { }
718
- try {
719
- var mod = _this.injector.get('SpreadsheetFormulaBar');
720
- if (_this.injectedModules.indexOf(mod) === -1) {
721
- _this.injectedModules.push(mod);
722
- }
723
- }
724
- catch (_h) { }
725
- try {
726
- var mod = _this.injector.get('SpreadsheetRibbon');
727
- if (_this.injectedModules.indexOf(mod) === -1) {
728
- _this.injectedModules.push(mod);
729
- }
730
- }
731
- catch (_j) { }
732
- try {
733
- var mod = _this.injector.get('SpreadsheetSave');
734
- if (_this.injectedModules.indexOf(mod) === -1) {
735
- _this.injectedModules.push(mod);
736
- }
737
- }
738
- catch (_k) { }
739
- try {
740
- var mod = _this.injector.get('SpreadsheetOpen');
741
- if (_this.injectedModules.indexOf(mod) === -1) {
742
- _this.injectedModules.push(mod);
743
- }
744
- }
745
- catch (_l) { }
746
- try {
747
- var mod = _this.injector.get('SpreadsheetSheetTabs');
748
- if (_this.injectedModules.indexOf(mod) === -1) {
749
- _this.injectedModules.push(mod);
750
- }
751
- }
752
- catch (_m) { }
753
- try {
754
- var mod = _this.injector.get('SpreadsheetDataBind');
755
- if (_this.injectedModules.indexOf(mod) === -1) {
756
- _this.injectedModules.push(mod);
757
- }
758
- }
759
- catch (_o) { }
760
- try {
761
- var mod = _this.injector.get('SpreadsheetAllModule');
762
- if (_this.injectedModules.indexOf(mod) === -1) {
763
- _this.injectedModules.push(mod);
764
- }
765
- }
766
- catch (_p) { }
767
- try {
768
- var mod = _this.injector.get('SpreadsheetBasicModule');
769
- if (_this.injectedModules.indexOf(mod) === -1) {
770
- _this.injectedModules.push(mod);
771
- }
772
- }
773
- catch (_q) { }
774
- try {
775
- var mod = _this.injector.get('SpreadsheetCellFormat');
776
- if (_this.injectedModules.indexOf(mod) === -1) {
777
- _this.injectedModules.push(mod);
778
- }
779
- }
780
- catch (_r) { }
781
- try {
782
- var mod = _this.injector.get('SpreadsheetNumberFormat');
783
- if (_this.injectedModules.indexOf(mod) === -1) {
784
- _this.injectedModules.push(mod);
785
- }
786
- }
787
- catch (_s) { }
788
- try {
789
- var mod = _this.injector.get('SpreadsheetFormula');
790
- if (_this.injectedModules.indexOf(mod) === -1) {
791
- _this.injectedModules.push(mod);
792
- }
793
- }
794
- catch (_t) { }
795
- _this.registerEvents(outputs$9);
796
- _this.addTwoWay.call(_this, twoWays);
797
- setValue('currentInstance', _this, _this.viewContainerRef);
798
- _this.context = new ComponentBase();
799
- return _this;
800
- }
801
- /**
802
- * @return {?}
803
- */
804
- SpreadsheetComponent.prototype.ngOnInit = function () {
805
- this.context.ngOnInit(this);
806
- };
807
- /**
808
- * @return {?}
809
- */
810
- SpreadsheetComponent.prototype.ngAfterViewInit = function () {
811
- this.context.ngAfterViewInit(this);
812
- };
813
- /**
814
- * @return {?}
815
- */
816
- SpreadsheetComponent.prototype.ngOnDestroy = function () {
817
- this.context.ngOnDestroy(this);
818
- };
819
- /**
820
- * @return {?}
821
- */
822
- SpreadsheetComponent.prototype.ngAfterContentChecked = function () {
823
- this.tagObjects[0].instance = this.childSheets;
824
- if (this.childDefinedNames) {
825
- this.tagObjects[1].instance = /** @type {?} */ (this.childDefinedNames);
826
- }
827
- this.context.ngAfterContentChecked(this);
828
- };
829
- return SpreadsheetComponent;
830
- }(Spreadsheet));
831
- SpreadsheetComponent.decorators = [
832
- { type: Component, args: [{
833
- selector: 'ejs-spreadsheet',
834
- inputs: inputs,
835
- outputs: outputs$9,
836
- template: '',
837
- changeDetection: ChangeDetectionStrategy.OnPush,
838
- queries: {
839
- childSheets: new ContentChild(SheetsDirective),
840
- childDefinedNames: new ContentChild(DefinedNamesDirective)
841
- }
842
- },] },
843
- ];
844
- /**
845
- * @nocollapse
846
- */
847
- SpreadsheetComponent.ctorParameters = function () { return [
848
- { type: ElementRef, },
849
- { type: Renderer2, },
850
- { type: ViewContainerRef, },
851
- { type: Injector, },
852
- ]; };
853
- SpreadsheetComponent.propDecorators = {
854
- 'template': [{ type: ContentChild, args: ['template',] },],
855
- };
856
- __decorate$1([
857
- Template(),
858
- __metadata$1("design:type", Object)
859
- ], SpreadsheetComponent.prototype, "template", void 0);
860
- SpreadsheetComponent = __decorate$1([
861
- ComponentMixins([ComponentBase]),
862
- __metadata$1("design:paramtypes", [ElementRef,
863
- Renderer2,
864
- ViewContainerRef,
865
- Injector])
866
- ], SpreadsheetComponent);
867
- /**
868
- * NgModule definition for the Spreadsheet component.
869
- */
870
- var SpreadsheetModule = /** @class */ (function () {
871
- function SpreadsheetModule() {
872
- }
873
- return SpreadsheetModule;
874
- }());
875
- SpreadsheetModule.decorators = [
876
- { type: NgModule, args: [{
877
- imports: [CommonModule],
878
- declarations: [
879
- SpreadsheetComponent,
880
- ImageDirective,
881
- ImagesDirective,
882
- ChartDirective,
883
- ChartsDirective,
884
- CellDirective,
885
- CellsDirective,
886
- RowDirective,
887
- RowsDirective,
888
- ColumnDirective,
889
- ColumnsDirective,
890
- RangeDirective,
891
- RangesDirective,
892
- ConditionalFormatDirective,
893
- ConditionalFormatsDirective,
894
- SheetDirective,
895
- SheetsDirective,
896
- DefinedNameDirective,
897
- DefinedNamesDirective
898
- ],
899
- exports: [
900
- SpreadsheetComponent,
901
- ImageDirective,
902
- ImagesDirective,
903
- ChartDirective,
904
- ChartsDirective,
905
- CellDirective,
906
- CellsDirective,
907
- RowDirective,
908
- RowsDirective,
909
- ColumnDirective,
910
- ColumnsDirective,
911
- RangeDirective,
912
- RangesDirective,
913
- ConditionalFormatDirective,
914
- ConditionalFormatsDirective,
915
- SheetDirective,
916
- SheetsDirective,
917
- DefinedNameDirective,
918
- DefinedNamesDirective
919
- ]
920
- },] },
921
- ];
922
- /**
923
- * @nocollapse
924
- */
925
- SpreadsheetModule.ctorParameters = function () { return []; };
926
- var ClipboardService = { provide: 'SpreadsheetClipboard', useValue: Clipboard };
927
- var EditService = { provide: 'SpreadsheetEdit', useValue: Edit };
928
- var KeyboardNavigationService = { provide: 'SpreadsheetKeyboardNavigation', useValue: KeyboardNavigation };
929
- var KeyboardShortcutService = { provide: 'SpreadsheetKeyboardShortcut', useValue: KeyboardShortcut };
930
- var CollaborativeEditingService = { provide: 'SpreadsheetCollaborativeEditing', useValue: CollaborativeEditing };
931
- var SelectionService = { provide: 'SpreadsheetSelection', useValue: Selection };
932
- var ContextMenuService = { provide: 'SpreadsheetContextMenu', useValue: ContextMenu };
933
- var FormulaBarService = { provide: 'SpreadsheetFormulaBar', useValue: FormulaBar };
934
- var RibbonService = { provide: 'SpreadsheetRibbon', useValue: Ribbon };
935
- var SaveService = { provide: 'SpreadsheetSave', useValue: Save };
936
- var OpenService = { provide: 'SpreadsheetOpen', useValue: Open };
937
- var SheetTabsService = { provide: 'SpreadsheetSheetTabs', useValue: SheetTabs };
938
- var DataBindService = { provide: 'SpreadsheetDataBind', useValue: DataBind };
939
- var AllModuleService = { provide: 'SpreadsheetAllModule', useValue: AllModule };
940
- var BasicModuleService = { provide: 'SpreadsheetBasicModule', useValue: BasicModule };
941
- var CellFormatService = { provide: 'SpreadsheetCellFormat', useValue: CellFormat };
942
- var NumberFormatService = { provide: 'SpreadsheetNumberFormat', useValue: NumberFormat };
943
- var FormulaService = { provide: 'SpreadsheetFormula', useValue: Formula };
944
- /**
945
- * NgModule definition for the Spreadsheet component with providers.
946
- */
947
- var SpreadsheetAllModule = /** @class */ (function () {
948
- function SpreadsheetAllModule() {
949
- }
950
- return SpreadsheetAllModule;
951
- }());
952
- SpreadsheetAllModule.decorators = [
953
- { type: NgModule, args: [{
954
- imports: [CommonModule, SpreadsheetModule],
955
- exports: [
956
- SpreadsheetModule
957
- ],
958
- providers: [
959
- ClipboardService,
960
- EditService,
961
- KeyboardNavigationService,
962
- KeyboardShortcutService,
963
- CollaborativeEditingService,
964
- SelectionService,
965
- ContextMenuService,
966
- FormulaBarService,
967
- RibbonService,
968
- SaveService,
969
- OpenService,
970
- SheetTabsService,
971
- DataBindService,
972
- AllModuleService,
973
- BasicModuleService,
974
- CellFormatService,
975
- NumberFormatService,
976
- FormulaService
977
- ]
978
- },] },
979
- ];
980
- /**
981
- * @nocollapse
982
- */
983
- SpreadsheetAllModule.ctorParameters = function () { return []; };
984
- /**
985
- * Generated bundle index. Do not edit.
986
- */
987
- export { ImageDirective, ImagesDirective, ChartDirective, ChartsDirective, CellDirective, CellsDirective, RowDirective, RowsDirective, ColumnDirective, ColumnsDirective, RangeDirective, RangesDirective, ConditionalFormatDirective, ConditionalFormatsDirective, SheetDirective, SheetsDirective, DefinedNameDirective, DefinedNamesDirective, SpreadsheetComponent, SpreadsheetModule, SpreadsheetAllModule, ClipboardService, EditService, KeyboardNavigationService, KeyboardShortcutService, CollaborativeEditingService, SelectionService, ContextMenuService, FormulaBarService, RibbonService, SaveService, OpenService, SheetTabsService, DataBindService, AllModuleService, BasicModuleService, CellFormatService, NumberFormatService, FormulaService, inputs as ɵa, outputs$9 as ɵb };
988
- export { Workbook, Range, UsedRange, Sheet, getSheetIndex, getSheetIndexFromId, getSheetNameFromAddress, getSheetIndexByName, updateSelectedRange, getSelectedRange, getSingleSelectedRange, getSheet, getSheetNameCount, getMaxSheetId, initSheet, getSheetName, moveSheet, duplicateSheet, Row, getRow, setRow, isHiddenRow, isFilterHidden, getRowHeight, setRowHeight, getRowsHeight, Column, getColumn, setColumn, getColumnWidth, getColumnsWidth, isHiddenCol, checkColumnValidation, Cell, getCell, setCell, skipDefaultValue, wrap, getColorCode, getCustomColors, isCustomDateTime, getData, getValueFromFormat, getModel, processIdx, getRangeIndexes, getCellIndexes, getColIndex, getCellAddress, getRangeAddress, getColumnHeaderText, getIndexesFromAddress, getRangeFromAddress, getAddressFromSelectedRange, getAddressInfo, getSheetIndexFromAddress, getSwapRange, isSingleCell, executeTaskAsync, WorkbookBasicModule, WorkbookAllModule, getWorkbookRequiredModules, CellStyle, FilterCollection, SortCollection, DefineName, ProtectSettings, Hyperlink, Validation, Format, ConditionalFormat, LegendSettings, DataLabelSettings, Border, MarkerSettings, MajorGridLines, MinorGridLines, Axis, Chart, Image, AutoFillSettings, workbookDestroyed, updateSheetFromDataSource, dataSourceChanged, dataChanged, triggerDataChange, workbookOpen, beginSave, beginAction, sortImport, ribbonFind, exportDialog, getFilteredCollection, saveCompleted, applyNumberFormatting, getFormattedCellObject, refreshCellElement, setCellFormat, findAllValues, textDecorationUpdate, applyCellFormat, updateUsedRange, updateRowColCount, workbookFormulaOperation, workbookEditOperation, checkDateFormat, getFormattedBarText, activeCellChanged, openSuccess, openFailure, sheetCreated, sheetsDestroyed, aggregateComputation, getUniqueRange, removeUniquecol, checkUniqueRange, reApplyFormula, clearFormulaDependentCells, formulaInValidation, beforeSort, initiateSort, updateSortedDataOnCell, sortComplete, sortRangeAlert, initiatelink, beforeHyperlinkCreate, afterHyperlinkCreate, beforeHyperlinkClick, afterHyperlinkClick, addHyperlink, setLinkModel, beforeFilter, initiateFilter, filterComplete, filterRangeAlert, clearAllFilter, wrapEvent, onSave, insert, deleteAction, insertModel, deleteModel, isValidation, cellValidation, addHighlight, dataValidate, find, goto, findWorkbookHandler, replace, replaceAll, showDialog, findKeyUp, removeHighlight, queryCellInfo, count, findCount, protectSheetWorkBook, updateToggle, protectsheetHandler, replaceAllDialog, unprotectsheetHandler, workBookeditAlert, setLockCells, applyLockCells, setMerge, applyMerge, mergedRange, activeCellMergedRange, insertMerge, hideShow, setCFRule, applyCF, clearCFRule, clear, clearCF, setImage, setChart, initiateChart, refreshRibbonIcons, refreshChart, refreshChartSize, updateChart, deleteChartColl, initiateChartModel, focusChartBorder, saveError, validationHighlight, updateFilter, beforeInsert, beforeDelete, deleteHyperlink, moveOrDuplicateSheet, setAutoFill, refreshCell, getFillInfo, getautofillDDB, rowFillHandler, getTextSpace, refreshClipboard, updateView, selectionComplete, refreshInsertDelete, getUpdatedFormulaOnInsertDelete, beforeCellUpdate, duplicateSheetFilterHandler, unMerge, addFormatToCustomFormatDlg, checkFormulaRef, checkIsFormula, isCellReference, isChar, isRowSelected, isColumnSelected, inRange, isInMultipleRange, isInRange, getSplittedAddressForColumn, isLocked, isValidCellReference, skipHiddenIdx, isHeightCheckNeeded, getUpdatedFormula, updateCell, getDataRange, insertFormatRange, deleteFormatRange, updateCFModel, checkRange, parseLocaleNumber, getViewportIndexes, setVisibleMergeIndex, toFraction, getGcd, intToDate, dateToInt, isDateTime, isNumber, toDate, parseIntValue, workbookLocale, localeData, DataBind, WorkbookOpen, WorkbookSave, WorkbookFormula, WorkbookNumberFormat, getFormatFromType, getTypeFromFormat, WorkbookSort, WorkbookFilter, WorkbookImage, WorkbookChart, WorkbookCellFormat, WorkbookEdit, WorkbookHyperlink, WorkbookInsert, WorkbookDelete, WorkbookDataValidation, WorkbookFindAndReplace, WorkbookProtectSheet, WorkbookMerge, WorkbookConditionalFormat, WorkbookAutoFill, getRequiredModules, ribbon, formulaBar, sheetTabs, refreshSheetTabs, isFormulaBarEdit, contentLoaded, mouseDown, spreadsheetDestroyed, editOperation, formulaOperation, formulaBarOperation, click, keyUp, keyDown, formulaKeyUp, formulaBarUpdate, onVerticalScroll, onHorizontalScroll, beforeContentLoaded, beforeVirtualContentLoaded, virtualContentLoaded, contextMenuOpen, cellNavigate, mouseUpAfterSelection, cMenuBeforeOpen, insertSheetTab, removeSheetTab, renameSheetTab, ribbonClick, refreshRibbon, enableToolbarItems, tabSwitch, selectRange, rangeSelectionByKeydown, cut, copy, paste, clearCopy, dataBound, beforeDataBound, addContextMenuItems, removeContextMenuItems, enableContextMenuItems, enableFileMenuItems, hideFileMenuItems, addFileMenuItems, hideRibbonTabs, enableRibbonTabs, addRibbonTabs, addToolbarItems, hideToolbarItems, beforeRibbonCreate, rowHeightChanged, colWidthChanged, onContentScroll, deInitProperties, activeSheetChanged, initiateCustomSort, applySort, collaborativeUpdate, autoFit, updateToggleItem, initiateHyperlink, editHyperlink, openHyperlink, removeHyperlink, createHyperlinkElement, sheetNameUpdate, hideSheet, performUndoRedo, updateUndoRedoCollection, setActionData, getBeforeActionData, clearUndoRedoCollection, initiateFilterUI, renderFilterCell, reapplyFilter, filterByCellValue, clearFilter, getFilteredColumn, completeAction, filterCellKeyDown, getFilterRange, setAutoFit, refreshFormulaDatasource, setScrollEvent, initiateDataValidation, validationError, startEdit, invalidData, clearInvalid, protectSheet, applyProtect, unprotectSheet, protectCellFormat, gotoDlg, findDlg, findHandler, created, editAlert, setUndoRedo, enableFormulaInput, protectSelection, hiddenMerge, checkPrevMerge, checkMerge, removeDataValidation, showAggregate, goToSheet, showSheet, renderCFDlg, clearViewer, initiateFormulaReference, initiateCur, clearCellRef, editValue, addressHandle, initiateEdit, forRefSelRender, insertImage, refreshImgElem, refreshImgCellObj, getRowIdxFromClientY, getColIdxFromClientX, createImageElement, deleteImage, deleteChart, refreshChartCellObj, refreshImagePosition, updateTableWidth, focusBorder, clearChartBorder, insertChart, chartRangeSelection, insertDesignChart, removeDesignChart, chartDesignTab, addChartEle, undoRedoForChartDesign, protectWorkbook, unProtectWorkbook, getPassWord, setProtectWorkbook, removeWorkbookProtection, importProtectWorkbook, selectionStatus, freeze, overlayEleSize, updateScroll, positionAutoFillElement, hideAutoFillOptions, performAutoFill, selectAutoFillRange, autoFill, hideAutoFillElement, unProtectSheetPassword, updateTranslate, getUpdatedScrollPosition, updateScrollValue, beforeCheckboxRender, refreshCheckbox, renderInsertDlg, toggleProtect, getUpdateUsingRaf, removeAllChildren, getColGroupWidth, getScrollBarWidth, getSiblingsHeight, inView, getCellPosition, setPosition, removeRangeEle, locateElem, setStyleAttribute, getStartEvent, getMoveEvent, getEndEvent, isTouchStart, isTouchMove, isTouchEnd, isMouseDown, isMouseMove, isMouseUp, isNavigationKey, getClientX, getClientY, getPageX, getPageY, getDPRValue, setAriaOptions, destroyComponent, setResize, setWidthAndHeight, setTextLineHeight, findMaxValue, updateAction, hasTemplate, setRowEleHeight, getTextHeight, getLineHeight, getTextWidth, getLines, getBorderHeight, getExcludedColumnWidth, getTextHeightWithBorder, setMaxHgt, getMaxHgt, focus, isLockedCells, isDiscontinuousRange, clearRange, isImported, getBottomOffset, getRightIdx, setColMinWidth, addDPRValue, BasicModule, AllModule, ScrollSettings, SelectionSettings, DISABLED, WRAPTEXT, locale, dialog, actionEvents, overlay, fontColor, fillColor, keyCodes, defaultLocale, Spreadsheet, Clipboard, Edit, Selection, Scroll, VirtualScroll, KeyboardNavigation, KeyboardShortcut, CellFormat, Resize, CollaborativeEditing, ShowHide, SpreadsheetHyperlink, UndoRedo, WrapText, Insert, Delete, DataValidation, ProtectSheet, FindAndReplace, Merge, ConditionalFormatting, AutoFill, Ribbon, FormulaBar, Formula, SheetTabs, Open, Save, ContextMenu, NumberFormat, Sort, Filter, SpreadsheetImage, SpreadsheetChart, Render, SheetRender, RowRenderer, CellRenderer, Calculate, FormulaError, FormulaInfo, CalcSheetFamilyItem, getAlphalabel, ValueChangedArgs, Parser, CalculateCommon, isUndefined, getSkeletonVal, isExternalFileLink, getModules, getValue, setValue, ModuleLoader, CommonErrors, FormulasErrorsStrings, ExcelFileFormats, BasicFormulas } from '@syncfusion/ej2-spreadsheet';
989
- //# sourceMappingURL=ej2-angular-spreadsheet.es5.js.map