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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +1622 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +15 -0
  4. package/esm2020/src/spreadsheet/cells.directive.mjs +73 -0
  5. package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
  6. package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
  7. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
  8. package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
  9. package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
  10. package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
  11. package/esm2020/src/spreadsheet/richtext.directive.mjs +46 -0
  12. package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
  13. package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
  14. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +74 -0
  15. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +188 -0
  16. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +115 -0
  17. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
  18. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +916 -0
  19. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  20. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +916 -0
  21. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  22. package/package.json +20 -7
  23. package/public_api.d.ts +1 -1
  24. package/src/index.d.ts +14 -14
  25. package/src/spreadsheet/cells.directive.d.ts +142 -137
  26. package/src/spreadsheet/chart.directive.d.ts +84 -79
  27. package/src/spreadsheet/columns.directive.d.ts +76 -71
  28. package/src/spreadsheet/conditionalformats.directive.d.ts +60 -55
  29. package/src/spreadsheet/definednames.directive.d.ts +54 -49
  30. package/src/spreadsheet/image.directive.d.ts +53 -48
  31. package/src/spreadsheet/ranges.directive.d.ts +73 -68
  32. package/src/spreadsheet/richtext.directive.d.ts +30 -25
  33. package/src/spreadsheet/rows.directive.d.ts +74 -69
  34. package/src/spreadsheet/sheets.directive.d.ts +154 -149
  35. package/src/spreadsheet/spreadsheet-all.module.d.ts +28 -22
  36. package/src/spreadsheet/spreadsheet.component.d.ts +74 -71
  37. package/src/spreadsheet/spreadsheet.module.d.ts +21 -5
  38. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  39. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -1029
  40. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  41. package/@syncfusion/ej2-angular-spreadsheet.js +0 -965
  42. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  43. package/LICENSE +0 -10
  44. package/dist/ej2-angular-spreadsheet.umd.js +0 -1706
  45. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  46. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  47. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  48. package/ej2-angular-spreadsheet.d.ts +0 -5
  49. package/ej2-angular-spreadsheet.metadata.json +0 -1
@@ -1,965 +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 { AIAssist, CellFormat, Clipboard, 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 = ['style', 'text'];
105
- let outputs$2 = [];
106
- class RichTextDirective extends ComplexBase {
107
- /**
108
- * @param {?} viewContainerRef
109
- */
110
- constructor(viewContainerRef) {
111
- super();
112
- this.viewContainerRef = viewContainerRef;
113
- setValue('currentInstance', this, this.viewContainerRef);
114
- this.registerEvents(outputs$2);
115
- this.directivePropList = input$2;
116
- }
117
- }
118
- RichTextDirective.decorators = [
119
- { type: Directive, args: [{
120
- selector: 'e-richtexts>e-richtext',
121
- inputs: input$2,
122
- outputs: outputs$2,
123
- queries: {}
124
- },] },
125
- ];
126
- /**
127
- * @nocollapse
128
- */
129
- RichTextDirective.ctorParameters = () => [
130
- { type: ViewContainerRef, },
131
- ];
132
- /**
133
- * RichText Array Directive
134
- */
135
- class RichTextsDirective extends ArrayBase {
136
- constructor() {
137
- super('richtext');
138
- }
139
- }
140
- RichTextsDirective.decorators = [
141
- { type: Directive, args: [{
142
- selector: 'e-cell>e-richtexts',
143
- queries: {
144
- children: new ContentChildren(RichTextDirective)
145
- },
146
- },] },
147
- ];
148
- /**
149
- * @nocollapse
150
- */
151
- RichTextsDirective.ctorParameters = () => [];
152
-
153
- let input$3 = ['chart', 'colSpan', 'comment', 'format', 'formula', 'hyperlink', 'image', 'index', 'isLocked', 'isReadOnly', 'notes', 'richText', 'rowSpan', 'style', 'validation', 'value', 'wrap'];
154
- let outputs$3 = [];
155
- /**
156
- * `e-cell` directive represent a cell of the Angular Spreadsheet.
157
- * It must be contained in a `e-row` directive.
158
- * ```html
159
- * <ejs-spreadsheet>
160
- * <e-sheets>
161
- * <e-sheet>
162
- * <e-rows>
163
- * <e-row>
164
- * <e-cells>
165
- * <e-cell value='A1'></e-cell>
166
- * </e-cells>
167
- * </e-row>
168
- * </e-rows>
169
- * </e-sheet>
170
- * </e-sheets>
171
- * </ejs-spreadsheet>
172
- * ```
173
- */
174
- class CellDirective extends ComplexBase {
175
- /**
176
- * @param {?} viewContainerRef
177
- */
178
- constructor(viewContainerRef) {
179
- super();
180
- this.viewContainerRef = viewContainerRef;
181
- this.tags = ['image', 'chart', 'richText'];
182
- setValue('currentInstance', this, this.viewContainerRef);
183
- this.registerEvents(outputs$3);
184
- this.directivePropList = input$3;
185
- }
186
- }
187
- CellDirective.decorators = [
188
- { type: Directive, args: [{
189
- selector: 'e-cells>e-cell',
190
- inputs: input$3,
191
- outputs: outputs$3,
192
- queries: {
193
- childImage: new ContentChild(ImagesDirective),
194
- childChart: new ContentChild(ChartsDirective),
195
- childRichText: new ContentChild(RichTextsDirective)
196
- }
197
- },] },
198
- ];
199
- /**
200
- * @nocollapse
201
- */
202
- CellDirective.ctorParameters = () => [
203
- { type: ViewContainerRef, },
204
- ];
205
- /**
206
- * Cell Array Directive
207
- */
208
- class CellsDirective extends ArrayBase {
209
- constructor() {
210
- super('cells');
211
- }
212
- }
213
- CellsDirective.decorators = [
214
- { type: Directive, args: [{
215
- selector: 'e-row>e-cells',
216
- queries: {
217
- children: new ContentChildren(CellDirective)
218
- },
219
- },] },
220
- ];
221
- /**
222
- * @nocollapse
223
- */
224
- CellsDirective.ctorParameters = () => [];
225
-
226
- let input$4 = ['cells', 'customHeight', 'format', 'height', 'hidden', 'index', 'isReadOnly'];
227
- let outputs$4 = [];
228
- /**
229
- * `e-row` directive represent a row of the Angular Spreadsheet.
230
- * It must be contained in a `e-sheet` directive.
231
- * ```html
232
- * <ejs-spreadsheet>
233
- * <e-sheets>
234
- * <e-sheet>
235
- * <e-rows>
236
- * <e-row></e-row>
237
- * </e-rows>
238
- * </e-sheet>
239
- * </e-sheets>
240
- * </ejs-spreadsheet>
241
- * ```
242
- */
243
- class RowDirective extends ComplexBase {
244
- /**
245
- * @param {?} viewContainerRef
246
- */
247
- constructor(viewContainerRef) {
248
- super();
249
- this.viewContainerRef = viewContainerRef;
250
- this.tags = ['cells'];
251
- setValue('currentInstance', this, this.viewContainerRef);
252
- this.registerEvents(outputs$4);
253
- this.directivePropList = input$4;
254
- }
255
- }
256
- RowDirective.decorators = [
257
- { type: Directive, args: [{
258
- selector: 'e-rows>e-row',
259
- inputs: input$4,
260
- outputs: outputs$4,
261
- queries: {
262
- childCells: new ContentChild(CellsDirective)
263
- }
264
- },] },
265
- ];
266
- /**
267
- * @nocollapse
268
- */
269
- RowDirective.ctorParameters = () => [
270
- { type: ViewContainerRef, },
271
- ];
272
- /**
273
- * Row Array Directive
274
- */
275
- class RowsDirective extends ArrayBase {
276
- constructor() {
277
- super('rows');
278
- }
279
- }
280
- RowsDirective.decorators = [
281
- { type: Directive, args: [{
282
- selector: 'e-sheet>e-rows',
283
- queries: {
284
- children: new ContentChildren(RowDirective)
285
- },
286
- },] },
287
- ];
288
- /**
289
- * @nocollapse
290
- */
291
- RowsDirective.ctorParameters = () => [];
292
-
293
- let input$5 = ['customWidth', 'format', 'hidden', 'index', 'isLocked', 'isReadOnly', 'validation', 'width'];
294
- let outputs$5 = [];
295
- /**
296
- * `e-column` directive represent a column of the Angular Spreadsheet.
297
- * It must be contained in a `e-sheet` directive.
298
- * ```html
299
- * <ejs-spreadsheet>
300
- * <e-sheets>
301
- * <e-sheet>
302
- * <e-columns>
303
- * <e-column width='100'></e-column>
304
- * </e-columns>
305
- * </e-sheet>
306
- * </e-sheets>
307
- * </ejs-spreadsheet>
308
- * ```
309
- */
310
- class ColumnDirective extends ComplexBase {
311
- /**
312
- * @param {?} viewContainerRef
313
- */
314
- constructor(viewContainerRef) {
315
- super();
316
- this.viewContainerRef = viewContainerRef;
317
- setValue('currentInstance', this, this.viewContainerRef);
318
- this.registerEvents(outputs$5);
319
- this.directivePropList = input$5;
320
- }
321
- }
322
- ColumnDirective.decorators = [
323
- { type: Directive, args: [{
324
- selector: 'e-columns>e-column',
325
- inputs: input$5,
326
- outputs: outputs$5,
327
- queries: {}
328
- },] },
329
- ];
330
- /**
331
- * @nocollapse
332
- */
333
- ColumnDirective.ctorParameters = () => [
334
- { type: ViewContainerRef, },
335
- ];
336
- /**
337
- * Column Array Directive
338
- */
339
- class ColumnsDirective extends ArrayBase {
340
- constructor() {
341
- super('columns');
342
- }
343
- }
344
- ColumnsDirective.decorators = [
345
- { type: Directive, args: [{
346
- selector: 'e-sheet>e-columns',
347
- queries: {
348
- children: new ContentChildren(ColumnDirective)
349
- },
350
- },] },
351
- ];
352
- /**
353
- * @nocollapse
354
- */
355
- ColumnsDirective.ctorParameters = () => [];
356
-
357
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
358
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
359
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
360
- 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;
361
- return c > 3 && r && Object.defineProperty(target, key, r), r;
362
- };
363
- var __metadata = (this && this.__metadata) || function (k, v) {
364
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
365
- };
366
- let input$6 = ['address', 'dataSource', 'fieldsOrder', 'query', 'showFieldAsHeader', 'startCell', 'template'];
367
- let outputs$6 = [];
368
- /**
369
- * `e-range` directive represent a range of the Angular Spreadsheet.
370
- * It must be contained in a `e-sheet` directive.
371
- * ```html
372
- * <ejs-spreadsheet>
373
- * <e-sheets>
374
- * <e-sheet>
375
- * <e-ranges>
376
- * <e-range [dataSource]='data'></e-range>
377
- * </e-ranges>
378
- * </e-sheet>
379
- * </e-sheets>
380
- * </ejs-spreadsheet>
381
- * ```
382
- */
383
- class RangeDirective extends ComplexBase {
384
- /**
385
- * @param {?} viewContainerRef
386
- */
387
- constructor(viewContainerRef) {
388
- super();
389
- this.viewContainerRef = viewContainerRef;
390
- setValue('currentInstance', this, this.viewContainerRef);
391
- this.registerEvents(outputs$6);
392
- this.directivePropList = input$6;
393
- }
394
- }
395
- RangeDirective.decorators = [
396
- { type: Directive, args: [{
397
- selector: 'e-ranges>e-range',
398
- inputs: input$6,
399
- outputs: outputs$6,
400
- queries: {}
401
- },] },
402
- ];
403
- /**
404
- * @nocollapse
405
- */
406
- RangeDirective.ctorParameters = () => [
407
- { type: ViewContainerRef, },
408
- ];
409
- RangeDirective.propDecorators = {
410
- 'template': [{ type: ContentChild, args: ['template',] },],
411
- };
412
- __decorate([
413
- Template(),
414
- __metadata("design:type", Object)
415
- ], RangeDirective.prototype, "template", void 0);
416
- /**
417
- * Range Array Directive
418
- */
419
- class RangesDirective extends ArrayBase {
420
- constructor() {
421
- super('ranges');
422
- }
423
- }
424
- RangesDirective.decorators = [
425
- { type: Directive, args: [{
426
- selector: 'e-sheet>e-ranges',
427
- queries: {
428
- children: new ContentChildren(RangeDirective)
429
- },
430
- },] },
431
- ];
432
- /**
433
- * @nocollapse
434
- */
435
- RangesDirective.ctorParameters = () => [];
436
-
437
- let input$7 = ['cFColor', 'format', 'range', 'type', 'value'];
438
- let outputs$7 = [];
439
- /**
440
- * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.
441
- * It must be contained in a `e-sheet` directive.
442
- * ```html
443
- * <ejs-spreadsheet>
444
- * <e-sheets>
445
- * <e-sheet>
446
- * <e-conditionalformats>
447
- * <e-conditionalformat></e-conditionalformat>
448
- * </e-conditionalformats>
449
- * </e-sheet>
450
- * </e-sheets>
451
- * </ejs-spreadsheet>
452
- * ```
453
- */
454
- class ConditionalFormatDirective extends ComplexBase {
455
- /**
456
- * @param {?} viewContainerRef
457
- */
458
- constructor(viewContainerRef) {
459
- super();
460
- this.viewContainerRef = viewContainerRef;
461
- setValue('currentInstance', this, this.viewContainerRef);
462
- this.registerEvents(outputs$7);
463
- this.directivePropList = input$7;
464
- }
465
- }
466
- ConditionalFormatDirective.decorators = [
467
- { type: Directive, args: [{
468
- selector: 'e-conditionalformats>e-conditionalformat',
469
- inputs: input$7,
470
- outputs: outputs$7,
471
- queries: {}
472
- },] },
473
- ];
474
- /**
475
- * @nocollapse
476
- */
477
- ConditionalFormatDirective.ctorParameters = () => [
478
- { type: ViewContainerRef, },
479
- ];
480
- /**
481
- * ConditionalFormat Array Directive
482
- */
483
- class ConditionalFormatsDirective extends ArrayBase {
484
- constructor() {
485
- super('conditionalformats');
486
- }
487
- }
488
- ConditionalFormatsDirective.decorators = [
489
- { type: Directive, args: [{
490
- selector: 'e-sheet>e-conditionalformats',
491
- queries: {
492
- children: new ContentChildren(ConditionalFormatDirective)
493
- },
494
- },] },
495
- ];
496
- /**
497
- * @nocollapse
498
- */
499
- ConditionalFormatsDirective.ctorParameters = () => [];
500
-
501
- let input$8 = ['activeCell', 'colCount', 'columns', 'conditionalFormats', 'frozenColumns', 'frozenRows', 'index', 'isProtected', 'name', 'paneTopLeftCell', 'password', 'protectSettings', 'ranges', 'rowCount', 'rows', 'selectedRange', 'showGridLines', 'showHeaders', 'standardHeight', 'state', 'topLeftCell', 'usedRange'];
502
- let outputs$8 = [];
503
- /**
504
- * `e-sheet` directive represent a sheet of the Angular Spreadsheet.
505
- * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
506
- * ```html
507
- * <ejs-spreadsheet>
508
- * <e-sheets>
509
- * <e-sheet></e-sheet>
510
- * <e-sheet></e-sheet>
511
- * </e-sheets>
512
- * </ejs-spreadsheet>
513
- * ```
514
- */
515
- class SheetDirective extends ComplexBase {
516
- /**
517
- * @param {?} viewContainerRef
518
- */
519
- constructor(viewContainerRef) {
520
- super();
521
- this.viewContainerRef = viewContainerRef;
522
- this.tags = ['rows', 'columns', 'ranges', 'conditionalFormats'];
523
- setValue('currentInstance', this, this.viewContainerRef);
524
- this.registerEvents(outputs$8);
525
- this.directivePropList = input$8;
526
- }
527
- }
528
- SheetDirective.decorators = [
529
- { type: Directive, args: [{
530
- selector: 'e-sheets>e-sheet',
531
- inputs: input$8,
532
- outputs: outputs$8,
533
- queries: {
534
- childRows: new ContentChild(RowsDirective),
535
- childColumns: new ContentChild(ColumnsDirective),
536
- childRanges: new ContentChild(RangesDirective),
537
- childConditionalFormats: new ContentChild(ConditionalFormatsDirective)
538
- }
539
- },] },
540
- ];
541
- /**
542
- * @nocollapse
543
- */
544
- SheetDirective.ctorParameters = () => [
545
- { type: ViewContainerRef, },
546
- ];
547
- /**
548
- * Sheet Array Directive
549
- */
550
- class SheetsDirective extends ArrayBase {
551
- constructor() {
552
- super('sheets');
553
- }
554
- }
555
- SheetsDirective.decorators = [
556
- { type: Directive, args: [{
557
- selector: 'ejs-spreadsheet>e-sheets',
558
- queries: {
559
- children: new ContentChildren(SheetDirective)
560
- },
561
- },] },
562
- ];
563
- /**
564
- * @nocollapse
565
- */
566
- SheetsDirective.ctorParameters = () => [];
567
-
568
- let input$9 = ['comment', 'name', 'refersTo', 'scope'];
569
- let outputs$9 = [];
570
- /**
571
- * `e-definedname` directive represent a defined name of the Angular Spreadsheet.
572
- * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
573
- * ```html
574
- * <ejs-spreadsheet>
575
- * <e-definednames>
576
- * <e-definedname></e-definedname>
577
- * <e-definedname></e-definedname>
578
- * </e-definednames>
579
- * </ejs-spreadsheet>
580
- * ```
581
- */
582
- class DefinedNameDirective extends ComplexBase {
583
- /**
584
- * @param {?} viewContainerRef
585
- */
586
- constructor(viewContainerRef) {
587
- super();
588
- this.viewContainerRef = viewContainerRef;
589
- setValue('currentInstance', this, this.viewContainerRef);
590
- this.registerEvents(outputs$9);
591
- this.directivePropList = input$9;
592
- }
593
- }
594
- DefinedNameDirective.decorators = [
595
- { type: Directive, args: [{
596
- selector: 'e-definednames>e-definedname',
597
- inputs: input$9,
598
- outputs: outputs$9,
599
- queries: {}
600
- },] },
601
- ];
602
- /**
603
- * @nocollapse
604
- */
605
- DefinedNameDirective.ctorParameters = () => [
606
- { type: ViewContainerRef, },
607
- ];
608
- /**
609
- * DefinedName Array Directive
610
- */
611
- class DefinedNamesDirective extends ArrayBase {
612
- constructor() {
613
- super('definednames');
614
- }
615
- }
616
- DefinedNamesDirective.decorators = [
617
- { type: Directive, args: [{
618
- selector: 'ejs-spreadsheet>e-definednames',
619
- queries: {
620
- children: new ContentChildren(DefinedNameDirective)
621
- },
622
- },] },
623
- ];
624
- /**
625
- * @nocollapse
626
- */
627
- DefinedNamesDirective.ctorParameters = () => [];
628
-
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") r = Reflect.decorate(decorators, target, key, desc);
632
- 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;
633
- return c > 3 && r && Object.defineProperty(target, key, r), r;
634
- };
635
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
636
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
637
- };
638
- const inputs = ['activeSheetIndex', 'aiAssistSettings', 'allowAutoFill', 'allowCellFormatting', 'allowChart', 'allowConditionalFormat', 'allowDataValidation', 'allowDelete', 'allowEditing', 'allowFiltering', 'allowFindAndReplace', 'allowFreezePane', 'allowHyperlink', 'allowImage', 'allowInsert', 'allowMerge', 'allowNumberFormatting', 'allowOpen', 'allowPrint', 'allowResizing', 'allowSave', 'allowScrolling', 'allowSorting', 'allowUndoRedo', 'allowWrap', 'author', 'autoFillSettings', 'calculationMode', 'cellStyle', 'cssClass', 'currencyCode', 'definedNames', 'enableAIAssist', 'enableClipboard', 'enableContextMenu', 'enableKeyboardNavigation', 'enableKeyboardShortcut', 'enableNotes', 'enablePersistence', 'enableRtl', 'height', 'isProtected', 'listSeparator', 'locale', 'openSettings', 'openUrl', 'password', 'saveUrl', 'scrollSettings', 'selectionSettings', 'sheets', 'showAggregate', 'showCommentsPane', 'showFormulaBar', 'showRibbon', 'showSheetTabs', 'width'];
639
- const outputs$10 = ['actionBegin', 'actionComplete', 'afterHyperlinkClick', 'afterHyperlinkCreate', 'beforeCellFormat', 'beforeCellRender', 'beforeCellSave', 'beforeCellUpdate', 'beforeConditionalFormat', 'beforeDataBound', 'beforeHyperlinkClick', 'beforeHyperlinkCreate', 'beforeOpen', 'beforeSave', 'beforeSelect', 'beforeSort', 'cellEdit', 'cellEdited', 'cellEditing', 'cellSave', 'contextMenuBeforeClose', 'contextMenuBeforeOpen', 'contextMenuItemSelect', 'created', 'dataBound', 'dataSourceChanged', 'dialogBeforeOpen', 'fileMenuBeforeClose', 'fileMenuBeforeOpen', 'fileMenuItemSelect', 'openComplete', 'openFailure', 'promptRequest', 'promptResponse', 'queryCellInfo', 'saveComplete', 'select', 'sortComplete'];
640
- const twoWays = [''];
641
- /**
642
- * `ejs-spreadsheet` represents the Angular Spreadsheet Component.
643
- * ```html
644
- * <ejs-spreadsheet></ejs-spreadsheet>
645
- * ```
646
- */
647
- let SpreadsheetComponent = class SpreadsheetComponent extends Spreadsheet {
648
- /**
649
- * @param {?} ngEle
650
- * @param {?} srenderer
651
- * @param {?} viewContainerRef
652
- * @param {?} injector
653
- */
654
- constructor(ngEle, srenderer, viewContainerRef, injector) {
655
- super();
656
- this.ngEle = ngEle;
657
- this.srenderer = srenderer;
658
- this.viewContainerRef = viewContainerRef;
659
- this.injector = injector;
660
- this.tags = ['sheets', 'definedNames'];
661
- this.element = this.ngEle.nativeElement;
662
- this.injectedModules = this.injectedModules || [];
663
- try {
664
- let mod = this.injector.get('SpreadsheetClipboard');
665
- if (this.injectedModules.indexOf(mod) === -1) {
666
- this.injectedModules.push(mod);
667
- }
668
- }
669
- catch (_a) { }
670
- try {
671
- let mod = this.injector.get('SpreadsheetEdit');
672
- if (this.injectedModules.indexOf(mod) === -1) {
673
- this.injectedModules.push(mod);
674
- }
675
- }
676
- catch (_b) { }
677
- try {
678
- let mod = this.injector.get('SpreadsheetKeyboardNavigation');
679
- if (this.injectedModules.indexOf(mod) === -1) {
680
- this.injectedModules.push(mod);
681
- }
682
- }
683
- catch (_c) { }
684
- try {
685
- let mod = this.injector.get('SpreadsheetKeyboardShortcut');
686
- if (this.injectedModules.indexOf(mod) === -1) {
687
- this.injectedModules.push(mod);
688
- }
689
- }
690
- catch (_d) { }
691
- try {
692
- let mod = this.injector.get('SpreadsheetSelection');
693
- if (this.injectedModules.indexOf(mod) === -1) {
694
- this.injectedModules.push(mod);
695
- }
696
- }
697
- catch (_e) { }
698
- try {
699
- let mod = this.injector.get('SpreadsheetContextMenu');
700
- if (this.injectedModules.indexOf(mod) === -1) {
701
- this.injectedModules.push(mod);
702
- }
703
- }
704
- catch (_f) { }
705
- try {
706
- let mod = this.injector.get('SpreadsheetFormulaBar');
707
- if (this.injectedModules.indexOf(mod) === -1) {
708
- this.injectedModules.push(mod);
709
- }
710
- }
711
- catch (_g) { }
712
- try {
713
- let mod = this.injector.get('SpreadsheetRibbon');
714
- if (this.injectedModules.indexOf(mod) === -1) {
715
- this.injectedModules.push(mod);
716
- }
717
- }
718
- catch (_h) { }
719
- try {
720
- let mod = this.injector.get('SpreadsheetSave');
721
- if (this.injectedModules.indexOf(mod) === -1) {
722
- this.injectedModules.push(mod);
723
- }
724
- }
725
- catch (_j) { }
726
- try {
727
- let mod = this.injector.get('SpreadsheetOpen');
728
- if (this.injectedModules.indexOf(mod) === -1) {
729
- this.injectedModules.push(mod);
730
- }
731
- }
732
- catch (_k) { }
733
- try {
734
- let mod = this.injector.get('SpreadsheetSheetTabs');
735
- if (this.injectedModules.indexOf(mod) === -1) {
736
- this.injectedModules.push(mod);
737
- }
738
- }
739
- catch (_l) { }
740
- try {
741
- let mod = this.injector.get('SpreadsheetDataBind');
742
- if (this.injectedModules.indexOf(mod) === -1) {
743
- this.injectedModules.push(mod);
744
- }
745
- }
746
- catch (_m) { }
747
- try {
748
- let mod = this.injector.get('SpreadsheetCellFormat');
749
- if (this.injectedModules.indexOf(mod) === -1) {
750
- this.injectedModules.push(mod);
751
- }
752
- }
753
- catch (_o) { }
754
- try {
755
- let mod = this.injector.get('SpreadsheetNumberFormat');
756
- if (this.injectedModules.indexOf(mod) === -1) {
757
- this.injectedModules.push(mod);
758
- }
759
- }
760
- catch (_p) { }
761
- try {
762
- let mod = this.injector.get('SpreadsheetFormula');
763
- if (this.injectedModules.indexOf(mod) === -1) {
764
- this.injectedModules.push(mod);
765
- }
766
- }
767
- catch (_q) { }
768
- try {
769
- let mod = this.injector.get('SpreadsheetAIAssist');
770
- if (this.injectedModules.indexOf(mod) === -1) {
771
- this.injectedModules.push(mod);
772
- }
773
- }
774
- catch (_r) { }
775
- this.registerEvents(outputs$10);
776
- this.addTwoWay.call(this, twoWays);
777
- setValue('currentInstance', this, this.viewContainerRef);
778
- this.context = new ComponentBase();
779
- }
780
- /**
781
- * @return {?}
782
- */
783
- ngOnInit() {
784
- this.context.ngOnInit(this);
785
- }
786
- /**
787
- * @return {?}
788
- */
789
- ngAfterViewInit() {
790
- this.context.ngAfterViewInit(this);
791
- }
792
- /**
793
- * @return {?}
794
- */
795
- ngOnDestroy() {
796
- this.context.ngOnDestroy(this);
797
- }
798
- /**
799
- * @return {?}
800
- */
801
- ngAfterContentChecked() {
802
- this.tagObjects[0].instance = this.childSheets;
803
- if (this.childDefinedNames) {
804
- this.tagObjects[1].instance = /** @type {?} */ (this.childDefinedNames);
805
- }
806
- this.context.ngAfterContentChecked(this);
807
- }
808
- };
809
- SpreadsheetComponent.decorators = [
810
- { type: Component, args: [{
811
- selector: 'ejs-spreadsheet',
812
- inputs: inputs,
813
- outputs: outputs$10,
814
- template: '',
815
- changeDetection: ChangeDetectionStrategy.OnPush,
816
- queries: {
817
- childSheets: new ContentChild(SheetsDirective),
818
- childDefinedNames: new ContentChild(DefinedNamesDirective)
819
- }
820
- },] },
821
- ];
822
- /**
823
- * @nocollapse
824
- */
825
- SpreadsheetComponent.ctorParameters = () => [
826
- { type: ElementRef, },
827
- { type: Renderer2, },
828
- { type: ViewContainerRef, },
829
- { type: Injector, },
830
- ];
831
- SpreadsheetComponent.propDecorators = {
832
- 'template': [{ type: ContentChild, args: ['template',] },],
833
- };
834
- __decorate$1([
835
- Template(),
836
- __metadata$1("design:type", Object)
837
- ], SpreadsheetComponent.prototype, "template", void 0);
838
- SpreadsheetComponent = __decorate$1([
839
- ComponentMixins([ComponentBase]),
840
- __metadata$1("design:paramtypes", [ElementRef,
841
- Renderer2,
842
- ViewContainerRef,
843
- Injector])
844
- ], SpreadsheetComponent);
845
-
846
- /**
847
- * NgModule definition for the Spreadsheet component.
848
- */
849
- class SpreadsheetModule {
850
- }
851
- SpreadsheetModule.decorators = [
852
- { type: NgModule, args: [{
853
- imports: [CommonModule],
854
- declarations: [
855
- SpreadsheetComponent,
856
- ImageDirective,
857
- ImagesDirective,
858
- ChartDirective,
859
- ChartsDirective,
860
- RichTextDirective,
861
- RichTextsDirective,
862
- CellDirective,
863
- CellsDirective,
864
- RowDirective,
865
- RowsDirective,
866
- ColumnDirective,
867
- ColumnsDirective,
868
- RangeDirective,
869
- RangesDirective,
870
- ConditionalFormatDirective,
871
- ConditionalFormatsDirective,
872
- SheetDirective,
873
- SheetsDirective,
874
- DefinedNameDirective,
875
- DefinedNamesDirective
876
- ],
877
- exports: [
878
- SpreadsheetComponent,
879
- ImageDirective,
880
- ImagesDirective,
881
- ChartDirective,
882
- ChartsDirective,
883
- RichTextDirective,
884
- RichTextsDirective,
885
- CellDirective,
886
- CellsDirective,
887
- RowDirective,
888
- RowsDirective,
889
- ColumnDirective,
890
- ColumnsDirective,
891
- RangeDirective,
892
- RangesDirective,
893
- ConditionalFormatDirective,
894
- ConditionalFormatsDirective,
895
- SheetDirective,
896
- SheetsDirective,
897
- DefinedNameDirective,
898
- DefinedNamesDirective
899
- ]
900
- },] },
901
- ];
902
- /**
903
- * @nocollapse
904
- */
905
- SpreadsheetModule.ctorParameters = () => [];
906
-
907
- const ClipboardService = { provide: 'SpreadsheetClipboard', useValue: Clipboard };
908
- const EditService = { provide: 'SpreadsheetEdit', useValue: Edit };
909
- const KeyboardNavigationService = { provide: 'SpreadsheetKeyboardNavigation', useValue: KeyboardNavigation };
910
- const KeyboardShortcutService = { provide: 'SpreadsheetKeyboardShortcut', useValue: KeyboardShortcut };
911
- const SelectionService = { provide: 'SpreadsheetSelection', useValue: Selection };
912
- const ContextMenuService = { provide: 'SpreadsheetContextMenu', useValue: ContextMenu };
913
- const FormulaBarService = { provide: 'SpreadsheetFormulaBar', useValue: FormulaBar };
914
- const RibbonService = { provide: 'SpreadsheetRibbon', useValue: Ribbon };
915
- const SaveService = { provide: 'SpreadsheetSave', useValue: Save };
916
- const OpenService = { provide: 'SpreadsheetOpen', useValue: Open };
917
- const SheetTabsService = { provide: 'SpreadsheetSheetTabs', useValue: SheetTabs };
918
- const DataBindService = { provide: 'SpreadsheetDataBind', useValue: DataBind };
919
- const CellFormatService = { provide: 'SpreadsheetCellFormat', useValue: CellFormat };
920
- const NumberFormatService = { provide: 'SpreadsheetNumberFormat', useValue: NumberFormat };
921
- const FormulaService = { provide: 'SpreadsheetFormula', useValue: Formula };
922
- const AIAssistService = { provide: 'SpreadsheetAIAssist', useValue: AIAssist };
923
- /**
924
- * NgModule definition for the Spreadsheet component with providers.
925
- */
926
- class SpreadsheetAllModule {
927
- }
928
- SpreadsheetAllModule.decorators = [
929
- { type: NgModule, args: [{
930
- imports: [CommonModule, SpreadsheetModule],
931
- exports: [
932
- SpreadsheetModule
933
- ],
934
- providers: [
935
- ClipboardService,
936
- EditService,
937
- KeyboardNavigationService,
938
- KeyboardShortcutService,
939
- SelectionService,
940
- ContextMenuService,
941
- FormulaBarService,
942
- RibbonService,
943
- SaveService,
944
- OpenService,
945
- SheetTabsService,
946
- DataBindService,
947
- CellFormatService,
948
- NumberFormatService,
949
- FormulaService,
950
- AIAssistService
951
- ]
952
- },] },
953
- ];
954
- /**
955
- * @nocollapse
956
- */
957
- SpreadsheetAllModule.ctorParameters = () => [];
958
-
959
- /**
960
- * Generated bundle index. Do not edit.
961
- */
962
-
963
- export { ImageDirective, ImagesDirective, ChartDirective, ChartsDirective, RichTextDirective, RichTextsDirective, CellDirective, CellsDirective, RowDirective, RowsDirective, ColumnDirective, ColumnsDirective, RangeDirective, RangesDirective, ConditionalFormatDirective, ConditionalFormatsDirective, SheetDirective, SheetsDirective, DefinedNameDirective, DefinedNamesDirective, SpreadsheetComponent, SpreadsheetModule, SpreadsheetAllModule, ClipboardService, EditService, KeyboardNavigationService, KeyboardShortcutService, SelectionService, ContextMenuService, FormulaBarService, RibbonService, SaveService, OpenService, SheetTabsService, DataBindService, CellFormatService, NumberFormatService, FormulaService, AIAssistService, inputs as ɵa, outputs$10 as ɵb };
964
- export { Workbook, Range, UsedRange, Sheet, getSheetIndex, getSheetIndexFromId, getSheetNameFromAddress, getSheetIndexByName, updateSelectedRange, getSelectedRange, 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, OpenSettings, getData, getValueFromFormat, getModel, processIdx, getRangeIndexes, getCellIndexes, getColIndex, getCellAddress, getRangeAddress, getColumnHeaderText, getIndexesFromAddress, getRangeFromAddress, getAddressFromSelectedRange, getAddressInfo, getSheetIndexFromAddress, getSwapRange, isSingleCell, executeTaskAsync, getWorkbookRequiredModules, CellStyle, FilterCollection, SortCollection, DefineName, ProtectSettings, Hyperlink, Validation, Format, ConditionalFormat, LegendSettings, DataLabelSettings, Border, MarkerSettings, MajorGridLines, MinorGridLines, Axis, Chart, Image, RichText, CommentReply, ThreadedComment, AutoFillSettings, workbookDestroyed, updateSheetFromDataSource, dataSourceChanged, dataChanged, triggerDataChange, workbookOpen, beginSave, beginAction, sortImport, findToolDlg, exportDialog, setFilteredCollection, saveCompleted, applyNumberFormatting, getFormattedCellObject, calculateFormula, refreshCellElement, setCellFormat, findAllValues, textDecorationUpdate, applyCellFormat, updateUsedRange, updateRowColCount, workbookFormulaOperation, workbookEditOperation, checkDateFormat, checkNumberFormat, parseDecimalNumber, getFormattedBarText, activeCellChanged, openSuccess, openFailure, sheetCreated, sheetsDestroyed, aggregateComputation, getUniqueRange, getSortRange, removeUniquecol, removeSortcol, checkUniqueRange, checkSortRange, 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, showFindAlert, findKeyUp, removeHighlight, queryCellInfo, count, findCount, protectSheetWorkBook, updateToggle, protectsheetHandler, replaceAllDialog, unprotectsheetHandler, workBookeditAlert, workbookReadonlyAlert, setLockCells, applyLockCells, setMerge, applyMerge, mergedRange, activeCellMergedRange, insertMerge, hideShow, setCFRule, applyCF, clearCFRule, clear, clearCF, setImage, setChart, initiateChart, refreshRibbonIcons, refreshChart, refreshChartSize, deleteChartColl, initiateChartModel, focusChartBorder, saveError, updateHighlight, beforeInsert, beforeDelete, deleteHyperlink, moveOrDuplicateSheet, setAutoFill, refreshCell, getFillInfo, getautofillDDB, rowFillHandler, getTextSpace, refreshClipboard, updateView, selectionComplete, refreshInsertDelete, getUpdatedFormulaOnInsertDelete, beforeCellUpdate, duplicateSheetFilterHandler, unMerge, checkFormulaRef, parseFormulaArgument, getCellRefValue, commputeFormulaValue, getChartRowIdxFromClientY, getChartColIdxFromClientX, refreshChartCellOnInit, localizedFormatAction, moveSheetHandler, addListValidationDropdown, sheetRenameUpdate, updateSortCollection, importModelUpdate, checkIsFormula, isCellReference, isChar, isRowSelected, isColumnSelected, inRange, isInMultipleRange, isInRange, getSplittedAddressForColumn, isLocked, isValidCellReference, columnIndex, skipHiddenIdx, isHeightCheckNeeded, getUpdatedFormula, getLeadingSpaces, getTrailingSpaces, updateCell, getSortedIndex, getDataRange, insertFormatRange, deleteFormatRange, updateCFModel, checkRange, parseLocaleNumber, getViewportIndexes, setVisibleMergeIndex, isImported, getAutoDetectFormatParser, applyPredicates, isReadOnly, isReadOnlyCells, getUpdatedRange, addDPRValue, updateMergeBorder, getISOTime, generateHashSaltValue, toFraction, getGcd, intToDate, dateToInt, isDateTime, isNumber, evaluate, toDate, parseIntValue, workbookLocale, localeData, DataBind, WorkbookOpen, WorkbookSave, WorkbookFormula, WorkbookNumberFormat, getFormatFromType, getTypeFromFormat, convertToDefaultFormat, configureLocalizedFormat, 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, focusRenameInput, beforeContentLoaded, beforeVirtualContentLoaded, virtualContentLoaded, contextMenuOpen, cellNavigate, mouseUpAfterSelection, cMenuBeforeOpen, insertSheetTab, removeSheetTab, renameSheetTab, ribbonClick, refreshRibbon, enableToolbarItems, tabSwitch, showAIAssistPane, executePrompt, 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, refreshFilterCellsOnResize, updateToggleItem, initiateHyperlink, editHyperlink, openHyperlink, addNote, editNote, deleteNote, showNote, showHideNote, navigateNextPrevNote, showAllNotes, processSheetNotes, noteUndoRedo, createNoteIndicator, updateNoteContainer, removeNoteContainer, initiateComment, replyToComment, showCommentsPane, navigateNextPrevComment, refreshCommentsPane, deleteComment, createCommentIndicator, removeCommentContainer, processSheetComments, commentUndoRedo, removeHyperlink, createHyperlinkElement, sheetNameUpdate, hideSheet, performUndoRedo, updateUndoRedoCollection, setActionData, getBeforeActionData, clearUndoRedoCollection, initiateFilterUI, renderFilterCell, refreshFilterRange, reapplyFilter, filterByCellValue, clearFilter, getFilteredColumn, completeAction, filterCellKeyDown, getFilterRange, setAutoFit, refreshFormulaDatasource, initiateDataValidation, validationError, startEdit, invalidData, clearInvalid, protectSheet, applyProtect, unprotectSheet, protectCellFormat, gotoDlg, findDlg, findHandler, created, spreadsheetCreated, editAlert, readonlyAlert, finiteAlert, setUndoRedo, enableFormulaInput, protectSelection, hiddenMerge, checkPrevMerge, checkMerge, removeDataValidation, showAggregate, goToSheet, showSheet, renderCFDlg, clearViewer, initiateFormulaReference, initiateCur, clearCellRef, editValue, addressHandle, initiateEdit, forRefSelRender, insertImage, refreshOverlayElem, renderSidePanel, refreshImgCellObj, getRowIdxFromClientY, getColIdxFromClientX, createImageElement, deleteImage, deleteChart, refreshChartCellObj, refreshChartCellModel, refreshImagePosition, updateTableWidth, focusBorder, clearChartBorder, insertChart, chartRangeSelection, insertDesignChart, removeDesignChart, chartDesignTab, undoRedoForChartDesign, protectWorkbook, unProtectWorkbook, setProtectWorkbook, removeWorkbookProtection, importProtectWorkbook, selectionStatus, freeze, overlayEleSize, updateScroll, positionAutoFillElement, hideAutoFillOptions, performAutoFill, selectAutoFillRange, autoFill, hideAutoFillElement, unProtectSheetPassword, updateTranslate, getUpdatedScrollPosition, updateScrollValue, beforeCheckboxRender, refreshCheckbox, renderInsertDlg, toggleProtect, propertyChange, updateWrapCell, getUpdateUsingRaf, disableSpreadsheetRaf, 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, adjustImageTopPosition, getTextHeight, getLineHeight, getTextWidth, getLines, getBorderWidth, getBorderHeight, getExcludedColumnWidth, getTextHeightWithBorder, setMaxHgt, getMaxHgt, focus, isLockedCells, isDiscontinuousRange, clearRange, getBottomOffset, getRightIdx, setColMinWidth, getSheetProperties, getChartsIndexes, isColumnRange, isRowRange, setStandardHeight, getStandardHeight, getDefaultHeight, removeElements, isValidUrl, getHashPassword, ScrollSettings, SelectionSettings, AIAssistSettings, DISABLED, WRAPTEXT, locale, dialog, actionEvents, overlay, fontColor, fillColor, keyCodes, defaultLocale, Spreadsheet, Clipboard, Edit, Selection, Scroll, VirtualScroll, KeyboardNavigation, KeyboardShortcut, CellFormat, Resize, ShowHide, SpreadsheetHyperlink, UndoRedo, WrapText, Insert, Delete, DataValidation, ProtectSheet, FindAndReplace, Merge, ConditionalFormatting, AutoFill, SpreadsheetNote, SpreadsheetComment, Ribbon, FormulaBar, Formula, SheetTabs, Open, Save, ContextMenu, NumberFormat, Sort, Filter, SpreadsheetImage, SpreadsheetChart, AIAssist, Render, SheetRender, RowRenderer, CellRenderer, Calculate, FormulaError, FormulaInfo, CalcSheetFamilyItem, getAlphalabel, ValueChangedArgs, Parser, CalculateCommon, isUndefined, getSkeletonVal, isExternalFileLink, CommonErrors, FormulasErrorsStrings, ExcelFileFormats, BasicFormulas } from '@syncfusion/ej2-spreadsheet';
965
- //# sourceMappingURL=ej2-angular-spreadsheet.js.map