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

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