@handsontable/angular 10.0.0

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 (35) hide show
  1. package/LICENSE.txt +28 -0
  2. package/README.md +143 -0
  3. package/bundles/handsontable-angular.umd.js +1552 -0
  4. package/bundles/handsontable-angular.umd.js.map +1 -0
  5. package/bundles/handsontable-angular.umd.min.js +34 -0
  6. package/bundles/handsontable-angular.umd.min.js.map +1 -0
  7. package/esm2015/handsontable-angular.js +10 -0
  8. package/esm2015/lib/hot-column.component.js +177 -0
  9. package/esm2015/lib/hot-settings-resolver.service.js +86 -0
  10. package/esm2015/lib/hot-table-registerer.service.js +45 -0
  11. package/esm2015/lib/hot-table.component.js +1090 -0
  12. package/esm2015/lib/hot-table.module.js +38 -0
  13. package/esm2015/public_api.js +14 -0
  14. package/esm5/handsontable-angular.js +10 -0
  15. package/esm5/lib/hot-column.component.js +185 -0
  16. package/esm5/lib/hot-settings-resolver.service.js +103 -0
  17. package/esm5/lib/hot-table-registerer.service.js +62 -0
  18. package/esm5/lib/hot-table.component.js +1124 -0
  19. package/esm5/lib/hot-table.module.js +45 -0
  20. package/esm5/public_api.js +14 -0
  21. package/fesm2015/handsontable-angular.js +1440 -0
  22. package/fesm2015/handsontable-angular.js.map +1 -0
  23. package/fesm5/handsontable-angular.js +1518 -0
  24. package/fesm5/handsontable-angular.js.map +1 -0
  25. package/handsontable-angular.d.ts +4 -0
  26. package/handsontable-angular.metadata.json +1 -0
  27. package/handsontable-general-terms.pdf +0 -0
  28. package/handsontable-non-commercial-license.pdf +0 -0
  29. package/lib/hot-column.component.d.ts +49 -0
  30. package/lib/hot-settings-resolver.service.d.ts +6 -0
  31. package/lib/hot-table-registerer.service.d.ts +7 -0
  32. package/lib/hot-table.component.d.ts +312 -0
  33. package/lib/hot-table.module.d.ts +5 -0
  34. package/package.json +1 -0
  35. package/public_api.d.ts +5 -0
@@ -0,0 +1,1518 @@
1
+ import { Injectable, Component, ViewEncapsulation, NgZone, ViewChild, Input, NgModule } from '@angular/core';
2
+ import Handsontable from 'handsontable';
3
+
4
+ /**
5
+ * @fileoverview added by tsickle
6
+ * Generated from: lib/hot-table-registerer.service.ts
7
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
8
+ */
9
+ /** @type {?} */
10
+ var instances = new Map();
11
+ /** @type {?} */
12
+ var HOT_DESTROYED_WARNING = 'The Handsontable instance bound to this component was destroyed and cannot be' +
13
+ ' used properly.';
14
+ var HotTableRegisterer = /** @class */ (function () {
15
+ function HotTableRegisterer() {
16
+ }
17
+ /**
18
+ * @param {?} id
19
+ * @return {?}
20
+ */
21
+ HotTableRegisterer.prototype.getInstance = /**
22
+ * @param {?} id
23
+ * @return {?}
24
+ */
25
+ function (id) {
26
+ /** @type {?} */
27
+ var hotInstance = instances.get(id);
28
+ if (hotInstance.isDestroyed) {
29
+ console.warn(HOT_DESTROYED_WARNING);
30
+ return null;
31
+ }
32
+ return hotInstance;
33
+ };
34
+ /**
35
+ * @param {?} id
36
+ * @param {?} instance
37
+ * @return {?}
38
+ */
39
+ HotTableRegisterer.prototype.registerInstance = /**
40
+ * @param {?} id
41
+ * @param {?} instance
42
+ * @return {?}
43
+ */
44
+ function (id, instance) {
45
+ return instances.set(id, instance);
46
+ };
47
+ /**
48
+ * @param {?} id
49
+ * @return {?}
50
+ */
51
+ HotTableRegisterer.prototype.removeInstance = /**
52
+ * @param {?} id
53
+ * @return {?}
54
+ */
55
+ function (id) {
56
+ return instances.delete(id);
57
+ };
58
+ HotTableRegisterer.decorators = [
59
+ { type: Injectable }
60
+ ];
61
+ return HotTableRegisterer;
62
+ }());
63
+
64
+ /**
65
+ * @fileoverview added by tsickle
66
+ * Generated from: lib/hot-settings-resolver.service.ts
67
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
68
+ */
69
+ /** @type {?} */
70
+ var AVAILABLE_OPTIONS = Object.keys(Handsontable.DefaultSettings);
71
+ /** @type {?} */
72
+ var AVAILABLE_HOOKS = Handsontable.hooks.getRegistered();
73
+ var HotSettingsResolver = /** @class */ (function () {
74
+ function HotSettingsResolver() {
75
+ }
76
+ /**
77
+ * @param {?} component
78
+ * @return {?}
79
+ */
80
+ HotSettingsResolver.prototype.mergeSettings = /**
81
+ * @param {?} component
82
+ * @return {?}
83
+ */
84
+ function (component) {
85
+ /** @type {?} */
86
+ var isSettingsObject = typeof component['settings'] === 'object';
87
+ /** @type {?} */
88
+ var mergedSettings = isSettingsObject ? component['settings'] : {};
89
+ /** @type {?} */
90
+ var options = AVAILABLE_HOOKS.concat(AVAILABLE_OPTIONS);
91
+ options.forEach((/**
92
+ * @param {?} key
93
+ * @return {?}
94
+ */
95
+ function (key) {
96
+ /** @type {?} */
97
+ var isHook = AVAILABLE_HOOKS.indexOf(key) > -1;
98
+ /** @type {?} */
99
+ var option;
100
+ if (isSettingsObject && isHook) {
101
+ option = component['settings'][key];
102
+ }
103
+ if (component[key] !== void 0) {
104
+ option = component[key];
105
+ }
106
+ if (option === void 0) {
107
+ return;
108
+ }
109
+ else if (typeof option === 'function' && isHook) {
110
+ mergedSettings[key] = (/**
111
+ * @param {...?} args
112
+ * @return {?}
113
+ */
114
+ function () {
115
+ var _this = this;
116
+ var args = [];
117
+ for (var _i = 0; _i < arguments.length; _i++) {
118
+ args[_i] = arguments[_i];
119
+ }
120
+ return component._ngZone.run((/**
121
+ * @return {?}
122
+ */
123
+ function () {
124
+ return option.apply(_this, args);
125
+ }));
126
+ });
127
+ }
128
+ else {
129
+ mergedSettings[key] = option;
130
+ }
131
+ }));
132
+ return mergedSettings;
133
+ };
134
+ /**
135
+ * @param {?} changes
136
+ * @return {?}
137
+ */
138
+ HotSettingsResolver.prototype.prepareChanges = /**
139
+ * @param {?} changes
140
+ * @return {?}
141
+ */
142
+ function (changes) {
143
+ /** @type {?} */
144
+ var result = {};
145
+ /** @type {?} */
146
+ var parameters = Object.keys(changes);
147
+ parameters.forEach((/**
148
+ * @param {?} param
149
+ * @return {?}
150
+ */
151
+ function (param) {
152
+ if (changes.hasOwnProperty(param)) {
153
+ result[param] = changes[param].currentValue;
154
+ }
155
+ }));
156
+ return result;
157
+ };
158
+ HotSettingsResolver.decorators = [
159
+ { type: Injectable }
160
+ ];
161
+ return HotSettingsResolver;
162
+ }());
163
+
164
+ /**
165
+ * @fileoverview added by tsickle
166
+ * Generated from: lib/hot-table.component.ts
167
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
168
+ */
169
+ var HotTableComponent = /** @class */ (function () {
170
+ function HotTableComponent(_ngZone, _hotTableRegisterer, _hotSettingsResolver) {
171
+ this._ngZone = _ngZone;
172
+ this._hotTableRegisterer = _hotTableRegisterer;
173
+ this._hotSettingsResolver = _hotSettingsResolver;
174
+ this.__hotInstance = null;
175
+ this.columnsComponents = [];
176
+ this.hotId = '';
177
+ }
178
+ Object.defineProperty(HotTableComponent.prototype, "hotInstance", {
179
+ get: /**
180
+ * @private
181
+ * @return {?}
182
+ */
183
+ function () {
184
+ if (!this.__hotInstance || (this.__hotInstance && !this.__hotInstance.isDestroyed)) {
185
+ // Will return the Handsontable instance or `null` if it's not yet been created.
186
+ return this.__hotInstance;
187
+ }
188
+ else {
189
+ this._hotTableRegisterer.removeInstance(this.hotId);
190
+ console.warn(HOT_DESTROYED_WARNING);
191
+ return null;
192
+ }
193
+ },
194
+ set: /**
195
+ * @private
196
+ * @param {?} hotInstance
197
+ * @return {?}
198
+ */
199
+ function (hotInstance) {
200
+ this.__hotInstance = hotInstance;
201
+ },
202
+ enumerable: true,
203
+ configurable: true
204
+ });
205
+ /**
206
+ * @return {?}
207
+ */
208
+ HotTableComponent.prototype.ngAfterViewInit = /**
209
+ * @return {?}
210
+ */
211
+ function () {
212
+ var _this = this;
213
+ /** @type {?} */
214
+ var options = this._hotSettingsResolver.mergeSettings(this);
215
+ if (this.columnsComponents.length > 0) {
216
+ /** @type {?} */
217
+ var columns_1 = [];
218
+ this.columnsComponents.forEach((/**
219
+ * @param {?} column
220
+ * @return {?}
221
+ */
222
+ function (column) {
223
+ columns_1.push(_this._hotSettingsResolver.mergeSettings(column));
224
+ }));
225
+ options['columns'] = columns_1;
226
+ }
227
+ this._ngZone.runOutsideAngular((/**
228
+ * @return {?}
229
+ */
230
+ function () {
231
+ _this.hotInstance = new Handsontable.Core(_this.container.nativeElement, options);
232
+ if (_this.hotId) {
233
+ _this._hotTableRegisterer.registerInstance(_this.hotId, _this.hotInstance);
234
+ }
235
+ // @ts-ignore
236
+ _this.hotInstance.init();
237
+ }));
238
+ };
239
+ /**
240
+ * @param {?} changes
241
+ * @return {?}
242
+ */
243
+ HotTableComponent.prototype.ngOnChanges = /**
244
+ * @param {?} changes
245
+ * @return {?}
246
+ */
247
+ function (changes) {
248
+ if (this.hotInstance === null) {
249
+ return;
250
+ }
251
+ /** @type {?} */
252
+ var newOptions = this._hotSettingsResolver.prepareChanges(changes);
253
+ this.updateHotTable(newOptions);
254
+ };
255
+ /**
256
+ * @return {?}
257
+ */
258
+ HotTableComponent.prototype.ngOnDestroy = /**
259
+ * @return {?}
260
+ */
261
+ function () {
262
+ var _this = this;
263
+ this._ngZone.runOutsideAngular((/**
264
+ * @return {?}
265
+ */
266
+ function () {
267
+ if (_this.hotInstance) {
268
+ _this.hotInstance.destroy();
269
+ }
270
+ }));
271
+ if (this.hotId) {
272
+ this._hotTableRegisterer.removeInstance(this.hotId);
273
+ }
274
+ };
275
+ /**
276
+ * @param {?} newSettings
277
+ * @return {?}
278
+ */
279
+ HotTableComponent.prototype.updateHotTable = /**
280
+ * @param {?} newSettings
281
+ * @return {?}
282
+ */
283
+ function (newSettings) {
284
+ var _this = this;
285
+ if (!this.hotInstance) {
286
+ return;
287
+ }
288
+ this._ngZone.runOutsideAngular((/**
289
+ * @return {?}
290
+ */
291
+ function () {
292
+ _this.hotInstance.updateSettings(newSettings, false);
293
+ }));
294
+ };
295
+ /**
296
+ * @return {?}
297
+ */
298
+ HotTableComponent.prototype.onAfterColumnsChange = /**
299
+ * @return {?}
300
+ */
301
+ function () {
302
+ var _this = this;
303
+ if (this.columnsComponents === void 0) {
304
+ return;
305
+ }
306
+ if (this.columnsComponents.length > 0) {
307
+ /** @type {?} */
308
+ var columns_2 = [];
309
+ this.columnsComponents.forEach((/**
310
+ * @param {?} column
311
+ * @return {?}
312
+ */
313
+ function (column) {
314
+ columns_2.push(_this._hotSettingsResolver.mergeSettings(column));
315
+ }));
316
+ /** @type {?} */
317
+ var newOptions = {
318
+ columns: columns_2
319
+ };
320
+ this.updateHotTable(newOptions);
321
+ }
322
+ };
323
+ /**
324
+ * @return {?}
325
+ */
326
+ HotTableComponent.prototype.onAfterColumnsNumberChange = /**
327
+ * @return {?}
328
+ */
329
+ function () {
330
+ var _this = this;
331
+ /** @type {?} */
332
+ var columns = [];
333
+ if (this.columnsComponents.length > 0) {
334
+ this.columnsComponents.forEach((/**
335
+ * @param {?} column
336
+ * @return {?}
337
+ */
338
+ function (column) {
339
+ columns.push(_this._hotSettingsResolver.mergeSettings(column));
340
+ }));
341
+ }
342
+ this.updateHotTable({ columns: columns });
343
+ };
344
+ /**
345
+ * @param {?} column
346
+ * @return {?}
347
+ */
348
+ HotTableComponent.prototype.addColumn = /**
349
+ * @param {?} column
350
+ * @return {?}
351
+ */
352
+ function (column) {
353
+ this.columnsComponents.push(column);
354
+ this.onAfterColumnsNumberChange();
355
+ };
356
+ /**
357
+ * @param {?} column
358
+ * @return {?}
359
+ */
360
+ HotTableComponent.prototype.removeColumn = /**
361
+ * @param {?} column
362
+ * @return {?}
363
+ */
364
+ function (column) {
365
+ /** @type {?} */
366
+ var index = this.columnsComponents.indexOf(column);
367
+ this.columnsComponents.splice(index, 1);
368
+ this.onAfterColumnsNumberChange();
369
+ };
370
+ HotTableComponent.decorators = [
371
+ { type: Component, args: [{
372
+ selector: 'hot-table',
373
+ template: '<div #container [id]="hotId"></div>',
374
+ encapsulation: ViewEncapsulation.None,
375
+ providers: [HotTableRegisterer, HotSettingsResolver]
376
+ }] }
377
+ ];
378
+ /** @nocollapse */
379
+ HotTableComponent.ctorParameters = function () { return [
380
+ { type: NgZone },
381
+ { type: HotTableRegisterer },
382
+ { type: HotSettingsResolver }
383
+ ]; };
384
+ HotTableComponent.propDecorators = {
385
+ container: [{ type: ViewChild, args: ['container', { static: false },] }],
386
+ settings: [{ type: Input }],
387
+ hotId: [{ type: Input }],
388
+ activeHeaderClassName: [{ type: Input }],
389
+ allowEmpty: [{ type: Input }],
390
+ allowHtml: [{ type: Input }],
391
+ allowInsertColumn: [{ type: Input }],
392
+ allowInsertRow: [{ type: Input }],
393
+ allowInvalid: [{ type: Input }],
394
+ allowRemoveColumn: [{ type: Input }],
395
+ allowRemoveRow: [{ type: Input }],
396
+ autoColumnSize: [{ type: Input }],
397
+ autoRowSize: [{ type: Input }],
398
+ autoWrapCol: [{ type: Input }],
399
+ autoWrapRow: [{ type: Input }],
400
+ bindRowsWithHeaders: [{ type: Input }],
401
+ cell: [{ type: Input }],
402
+ cells: [{ type: Input }],
403
+ checkedTemplate: [{ type: Input }],
404
+ className: [{ type: Input }],
405
+ colHeaders: [{ type: Input }],
406
+ collapsibleColumns: [{ type: Input }],
407
+ columnHeaderHeight: [{ type: Input }],
408
+ columns: [{ type: Input }],
409
+ columnSorting: [{ type: Input }],
410
+ columnSummary: [{ type: Input }],
411
+ colWidths: [{ type: Input }],
412
+ commentedCellClassName: [{ type: Input }],
413
+ comments: [{ type: Input }],
414
+ contextMenu: [{ type: Input }],
415
+ copyable: [{ type: Input }],
416
+ copyPaste: [{ type: Input }],
417
+ correctFormat: [{ type: Input }],
418
+ currentColClassName: [{ type: Input }],
419
+ currentHeaderClassName: [{ type: Input }],
420
+ currentRowClassName: [{ type: Input }],
421
+ customBorders: [{ type: Input }],
422
+ data: [{ type: Input }],
423
+ dataSchema: [{ type: Input }],
424
+ dateFormat: [{ type: Input }],
425
+ defaultDate: [{ type: Input }],
426
+ disableVisualSelection: [{ type: Input }],
427
+ dragToScroll: [{ type: Input }],
428
+ dropdownMenu: [{ type: Input }],
429
+ editor: [{ type: Input }],
430
+ enterBeginsEditing: [{ type: Input }],
431
+ enterMoves: [{ type: Input }],
432
+ fillHandle: [{ type: Input }],
433
+ filter: [{ type: Input }],
434
+ filteringCaseSensitive: [{ type: Input }],
435
+ filters: [{ type: Input }],
436
+ fixedColumnsLeft: [{ type: Input }],
437
+ fixedRowsBottom: [{ type: Input }],
438
+ fixedRowsTop: [{ type: Input }],
439
+ formulas: [{ type: Input }],
440
+ fragmentSelection: [{ type: Input }],
441
+ height: [{ type: Input }],
442
+ hiddenColumns: [{ type: Input }],
443
+ hiddenRows: [{ type: Input }],
444
+ invalidCellClassName: [{ type: Input }],
445
+ label: [{ type: Input }],
446
+ language: [{ type: Input }],
447
+ licenseKey: [{ type: Input }],
448
+ manualColumnFreeze: [{ type: Input }],
449
+ manualColumnMove: [{ type: Input }],
450
+ manualColumnResize: [{ type: Input }],
451
+ manualRowMove: [{ type: Input }],
452
+ manualRowResize: [{ type: Input }],
453
+ maxCols: [{ type: Input }],
454
+ maxRows: [{ type: Input }],
455
+ mergeCells: [{ type: Input }],
456
+ minCols: [{ type: Input }],
457
+ minRows: [{ type: Input }],
458
+ minSpareCols: [{ type: Input }],
459
+ minSpareRows: [{ type: Input }],
460
+ multiColumnSorting: [{ type: Input }],
461
+ nestedHeaders: [{ type: Input }],
462
+ nestedRows: [{ type: Input }],
463
+ noWordWrapClassName: [{ type: Input }],
464
+ numericFormat: [{ type: Input }],
465
+ observeDOMVisibility: [{ type: Input }],
466
+ outsideClickDeselects: [{ type: Input }],
467
+ persistentState: [{ type: Input }],
468
+ placeholder: [{ type: Input }],
469
+ placeholderCellClassName: [{ type: Input }],
470
+ preventOverflow: [{ type: Input }],
471
+ preventWheel: [{ type: Input }],
472
+ readOnly: [{ type: Input }],
473
+ readOnlyCellClassName: [{ type: Input }],
474
+ renderAllRows: [{ type: Input }],
475
+ renderer: [{ type: Input }],
476
+ rowHeaders: [{ type: Input }],
477
+ rowHeaderWidth: [{ type: Input }],
478
+ rowHeights: [{ type: Input }],
479
+ search: [{ type: Input }],
480
+ selectionMode: [{ type: Input }],
481
+ selectOptions: [{ type: Input }],
482
+ skipColumnOnPaste: [{ type: Input }],
483
+ skipRowOnPaste: [{ type: Input }],
484
+ sortByRelevance: [{ type: Input }],
485
+ source: [{ type: Input }],
486
+ startCols: [{ type: Input }],
487
+ startRows: [{ type: Input }],
488
+ stretchH: [{ type: Input }],
489
+ strict: [{ type: Input }],
490
+ tableClassName: [{ type: Input }],
491
+ tabMoves: [{ type: Input }],
492
+ title: [{ type: Input }],
493
+ trimDropdown: [{ type: Input }],
494
+ trimRows: [{ type: Input }],
495
+ trimWhitespace: [{ type: Input }],
496
+ type: [{ type: Input }],
497
+ uncheckedTemplate: [{ type: Input }],
498
+ undo: [{ type: Input }],
499
+ validator: [{ type: Input }],
500
+ viewportColumnRenderingOffset: [{ type: Input }],
501
+ viewportRowRenderingOffset: [{ type: Input }],
502
+ visibleRows: [{ type: Input }],
503
+ width: [{ type: Input }],
504
+ wordWrap: [{ type: Input }],
505
+ afterAddChild: [{ type: Input }],
506
+ afterAutofill: [{ type: Input }],
507
+ afterBeginEditing: [{ type: Input }],
508
+ afterCellMetaReset: [{ type: Input }],
509
+ afterChange: [{ type: Input }],
510
+ afterChangesObserved: [{ type: Input }],
511
+ afterColumnCollapse: [{ type: Input }],
512
+ afterColumnExpand: [{ type: Input }],
513
+ afterColumnMove: [{ type: Input }],
514
+ afterColumnResize: [{ type: Input }],
515
+ afterColumnSort: [{ type: Input }],
516
+ afterContextMenuDefaultOptions: [{ type: Input }],
517
+ afterContextMenuHide: [{ type: Input }],
518
+ afterContextMenuShow: [{ type: Input }],
519
+ afterCopy: [{ type: Input }],
520
+ afterCopyLimit: [{ type: Input }],
521
+ afterCreateCol: [{ type: Input }],
522
+ afterCreateRow: [{ type: Input }],
523
+ afterCut: [{ type: Input }],
524
+ afterDeselect: [{ type: Input }],
525
+ afterDestroy: [{ type: Input }],
526
+ afterDetachChild: [{ type: Input }],
527
+ afterDocumentKeyDown: [{ type: Input }],
528
+ afterDrawSelection: [{ type: Input }],
529
+ afterDropdownMenuDefaultOptions: [{ type: Input }],
530
+ afterDropdownMenuHide: [{ type: Input }],
531
+ afterDropdownMenuShow: [{ type: Input }],
532
+ afterFilter: [{ type: Input }],
533
+ afterGetCellMeta: [{ type: Input }],
534
+ afterGetColHeader: [{ type: Input }],
535
+ afterGetColumnHeaderRenderers: [{ type: Input }],
536
+ afterGetRowHeader: [{ type: Input }],
537
+ afterGetRowHeaderRenderers: [{ type: Input }],
538
+ afterHideColumns: [{ type: Input }],
539
+ afterHideRows: [{ type: Input }],
540
+ afterInit: [{ type: Input }],
541
+ afterLanguageChange: [{ type: Input }],
542
+ afterListen: [{ type: Input }],
543
+ afterLoadData: [{ type: Input }],
544
+ afterMergeCells: [{ type: Input }],
545
+ afterModifyTransformEnd: [{ type: Input }],
546
+ afterModifyTransformStart: [{ type: Input }],
547
+ afterMomentumScroll: [{ type: Input }],
548
+ afterOnCellContextMenu: [{ type: Input }],
549
+ afterOnCellCornerDblClick: [{ type: Input }],
550
+ afterOnCellCornerMouseDown: [{ type: Input }],
551
+ afterOnCellMouseDown: [{ type: Input }],
552
+ afterOnCellMouseOut: [{ type: Input }],
553
+ afterOnCellMouseOver: [{ type: Input }],
554
+ afterOnCellMouseUp: [{ type: Input }],
555
+ afterPaste: [{ type: Input }],
556
+ afterPluginsInitialized: [{ type: Input }],
557
+ afterRedo: [{ type: Input }],
558
+ afterRedoStackChange: [{ type: Input }],
559
+ afterRefreshDimensions: [{ type: Input }],
560
+ afterRemoveCellMeta: [{ type: Input }],
561
+ afterRemoveCol: [{ type: Input }],
562
+ afterRemoveRow: [{ type: Input }],
563
+ afterRender: [{ type: Input }],
564
+ afterRenderer: [{ type: Input }],
565
+ afterRowMove: [{ type: Input }],
566
+ afterRowResize: [{ type: Input }],
567
+ afterScrollHorizontally: [{ type: Input }],
568
+ afterScrollVertically: [{ type: Input }],
569
+ afterSelection: [{ type: Input }],
570
+ afterSelectionByProp: [{ type: Input }],
571
+ afterSelectionEnd: [{ type: Input }],
572
+ afterSelectionEndByProp: [{ type: Input }],
573
+ afterSetCellMeta: [{ type: Input }],
574
+ afterSetDataAtCell: [{ type: Input }],
575
+ afterSetDataAtRowProp: [{ type: Input }],
576
+ afterSetSourceDataAtCell: [{ type: Input }],
577
+ afterTrimRow: [{ type: Input }],
578
+ afterUndo: [{ type: Input }],
579
+ afterUndoStackChange: [{ type: Input }],
580
+ afterUnhideColumns: [{ type: Input }],
581
+ afterUnhideRows: [{ type: Input }],
582
+ afterUnlisten: [{ type: Input }],
583
+ afterUnmergeCells: [{ type: Input }],
584
+ afterUntrimRow: [{ type: Input }],
585
+ afterUpdateSettings: [{ type: Input }],
586
+ afterValidate: [{ type: Input }],
587
+ afterViewportColumnCalculatorOverride: [{ type: Input }],
588
+ afterViewportRowCalculatorOverride: [{ type: Input }],
589
+ afterViewRender: [{ type: Input }],
590
+ beforeAddChild: [{ type: Input }],
591
+ beforeAutofill: [{ type: Input }],
592
+ beforeAutofillInsidePopulate: [{ type: Input }],
593
+ beforeCellAlignment: [{ type: Input }],
594
+ beforeChange: [{ type: Input }],
595
+ beforeChangeRender: [{ type: Input }],
596
+ beforeColumnCollapse: [{ type: Input }],
597
+ beforeColumnExpand: [{ type: Input }],
598
+ beforeColumnMove: [{ type: Input }],
599
+ beforeColumnResize: [{ type: Input }],
600
+ beforeColumnSort: [{ type: Input }],
601
+ beforeContextMenuSetItems: [{ type: Input }],
602
+ beforeContextMenuShow: [{ type: Input }],
603
+ beforeCopy: [{ type: Input }],
604
+ beforeCreateCol: [{ type: Input }],
605
+ beforeCreateRow: [{ type: Input }],
606
+ beforeCut: [{ type: Input }],
607
+ beforeDetachChild: [{ type: Input }],
608
+ beforeDrawBorders: [{ type: Input }],
609
+ beforeDropdownMenuSetItems: [{ type: Input }],
610
+ beforeDropdownMenuShow: [{ type: Input }],
611
+ beforeFilter: [{ type: Input }],
612
+ beforeGetCellMeta: [{ type: Input }],
613
+ beforeHideColumns: [{ type: Input }],
614
+ beforeHideRows: [{ type: Input }],
615
+ beforeInit: [{ type: Input }],
616
+ beforeInitWalkontable: [{ type: Input }],
617
+ beforeKeyDown: [{ type: Input }],
618
+ beforeLanguageChange: [{ type: Input }],
619
+ beforeLoadData: [{ type: Input }],
620
+ beforeMergeCells: [{ type: Input }],
621
+ beforeOnCellContextMenu: [{ type: Input }],
622
+ beforeOnCellMouseDown: [{ type: Input }],
623
+ beforeOnCellMouseOut: [{ type: Input }],
624
+ beforeOnCellMouseOver: [{ type: Input }],
625
+ beforeOnCellMouseUp: [{ type: Input }],
626
+ beforePaste: [{ type: Input }],
627
+ beforeRedo: [{ type: Input }],
628
+ beforeRedoStackChange: [{ type: Input }],
629
+ beforeRefreshDimensions: [{ type: Input }],
630
+ beforeRemoveCellClassNames: [{ type: Input }],
631
+ beforeRemoveCellMeta: [{ type: Input }],
632
+ beforeRemoveCol: [{ type: Input }],
633
+ beforeRemoveRow: [{ type: Input }],
634
+ beforeRender: [{ type: Input }],
635
+ beforeRenderer: [{ type: Input }],
636
+ beforeRowMove: [{ type: Input }],
637
+ beforeRowResize: [{ type: Input }],
638
+ beforeSetCellMeta: [{ type: Input }],
639
+ beforeSetRangeEnd: [{ type: Input }],
640
+ beforeSetRangeStart: [{ type: Input }],
641
+ beforeSetRangeStartOnly: [{ type: Input }],
642
+ beforeStretchingColumnWidth: [{ type: Input }],
643
+ beforeTouchScroll: [{ type: Input }],
644
+ beforeTrimRow: [{ type: Input }],
645
+ beforeUndo: [{ type: Input }],
646
+ beforeUndoStackChange: [{ type: Input }],
647
+ beforeUnhideColumns: [{ type: Input }],
648
+ beforeUnhideRows: [{ type: Input }],
649
+ beforeUnmergeCells: [{ type: Input }],
650
+ beforeUntrimRow: [{ type: Input }],
651
+ beforeValidate: [{ type: Input }],
652
+ beforeValueRender: [{ type: Input }],
653
+ beforeViewRender: [{ type: Input }],
654
+ construct: [{ type: Input }],
655
+ init: [{ type: Input }],
656
+ modifyAutoColumnSizeSeed: [{ type: Input }],
657
+ modifyAutofillRange: [{ type: Input }],
658
+ modifyColHeader: [{ type: Input }],
659
+ modifyColumnHeaderHeight: [{ type: Input }],
660
+ modifyColWidth: [{ type: Input }],
661
+ modifyCopyableRange: [{ type: Input }],
662
+ modifyData: [{ type: Input }],
663
+ modifyGetCellCoords: [{ type: Input }],
664
+ modifyRowData: [{ type: Input }],
665
+ modifyRowHeader: [{ type: Input }],
666
+ modifyRowHeaderWidth: [{ type: Input }],
667
+ modifyRowHeight: [{ type: Input }],
668
+ modifySourceData: [{ type: Input }],
669
+ modifyTransformEnd: [{ type: Input }],
670
+ modifyTransformStart: [{ type: Input }],
671
+ persistentStateLoad: [{ type: Input }],
672
+ persistentStateReset: [{ type: Input }],
673
+ persistentStateSave: [{ type: Input }]
674
+ };
675
+ return HotTableComponent;
676
+ }());
677
+ if (false) {
678
+ /** @type {?} */
679
+ HotTableComponent.prototype.container;
680
+ /**
681
+ * @type {?}
682
+ * @private
683
+ */
684
+ HotTableComponent.prototype.__hotInstance;
685
+ /**
686
+ * @type {?}
687
+ * @private
688
+ */
689
+ HotTableComponent.prototype.columnsComponents;
690
+ /** @type {?} */
691
+ HotTableComponent.prototype.settings;
692
+ /** @type {?} */
693
+ HotTableComponent.prototype.hotId;
694
+ /** @type {?} */
695
+ HotTableComponent.prototype.activeHeaderClassName;
696
+ /** @type {?} */
697
+ HotTableComponent.prototype.allowEmpty;
698
+ /** @type {?} */
699
+ HotTableComponent.prototype.allowHtml;
700
+ /** @type {?} */
701
+ HotTableComponent.prototype.allowInsertColumn;
702
+ /** @type {?} */
703
+ HotTableComponent.prototype.allowInsertRow;
704
+ /** @type {?} */
705
+ HotTableComponent.prototype.allowInvalid;
706
+ /** @type {?} */
707
+ HotTableComponent.prototype.allowRemoveColumn;
708
+ /** @type {?} */
709
+ HotTableComponent.prototype.allowRemoveRow;
710
+ /** @type {?} */
711
+ HotTableComponent.prototype.autoColumnSize;
712
+ /** @type {?} */
713
+ HotTableComponent.prototype.autoRowSize;
714
+ /** @type {?} */
715
+ HotTableComponent.prototype.autoWrapCol;
716
+ /** @type {?} */
717
+ HotTableComponent.prototype.autoWrapRow;
718
+ /** @type {?} */
719
+ HotTableComponent.prototype.bindRowsWithHeaders;
720
+ /** @type {?} */
721
+ HotTableComponent.prototype.cell;
722
+ /** @type {?} */
723
+ HotTableComponent.prototype.cells;
724
+ /** @type {?} */
725
+ HotTableComponent.prototype.checkedTemplate;
726
+ /** @type {?} */
727
+ HotTableComponent.prototype.className;
728
+ /** @type {?} */
729
+ HotTableComponent.prototype.colHeaders;
730
+ /** @type {?} */
731
+ HotTableComponent.prototype.collapsibleColumns;
732
+ /** @type {?} */
733
+ HotTableComponent.prototype.columnHeaderHeight;
734
+ /** @type {?} */
735
+ HotTableComponent.prototype.columns;
736
+ /** @type {?} */
737
+ HotTableComponent.prototype.columnSorting;
738
+ /** @type {?} */
739
+ HotTableComponent.prototype.columnSummary;
740
+ /** @type {?} */
741
+ HotTableComponent.prototype.colWidths;
742
+ /** @type {?} */
743
+ HotTableComponent.prototype.commentedCellClassName;
744
+ /** @type {?} */
745
+ HotTableComponent.prototype.comments;
746
+ /** @type {?} */
747
+ HotTableComponent.prototype.contextMenu;
748
+ /** @type {?} */
749
+ HotTableComponent.prototype.copyable;
750
+ /** @type {?} */
751
+ HotTableComponent.prototype.copyPaste;
752
+ /** @type {?} */
753
+ HotTableComponent.prototype.correctFormat;
754
+ /** @type {?} */
755
+ HotTableComponent.prototype.currentColClassName;
756
+ /** @type {?} */
757
+ HotTableComponent.prototype.currentHeaderClassName;
758
+ /** @type {?} */
759
+ HotTableComponent.prototype.currentRowClassName;
760
+ /** @type {?} */
761
+ HotTableComponent.prototype.customBorders;
762
+ /** @type {?} */
763
+ HotTableComponent.prototype.data;
764
+ /** @type {?} */
765
+ HotTableComponent.prototype.dataSchema;
766
+ /** @type {?} */
767
+ HotTableComponent.prototype.dateFormat;
768
+ /** @type {?} */
769
+ HotTableComponent.prototype.defaultDate;
770
+ /** @type {?} */
771
+ HotTableComponent.prototype.disableVisualSelection;
772
+ /** @type {?} */
773
+ HotTableComponent.prototype.dragToScroll;
774
+ /** @type {?} */
775
+ HotTableComponent.prototype.dropdownMenu;
776
+ /** @type {?} */
777
+ HotTableComponent.prototype.editor;
778
+ /** @type {?} */
779
+ HotTableComponent.prototype.enterBeginsEditing;
780
+ /** @type {?} */
781
+ HotTableComponent.prototype.enterMoves;
782
+ /** @type {?} */
783
+ HotTableComponent.prototype.fillHandle;
784
+ /** @type {?} */
785
+ HotTableComponent.prototype.filter;
786
+ /** @type {?} */
787
+ HotTableComponent.prototype.filteringCaseSensitive;
788
+ /** @type {?} */
789
+ HotTableComponent.prototype.filters;
790
+ /** @type {?} */
791
+ HotTableComponent.prototype.fixedColumnsLeft;
792
+ /** @type {?} */
793
+ HotTableComponent.prototype.fixedRowsBottom;
794
+ /** @type {?} */
795
+ HotTableComponent.prototype.fixedRowsTop;
796
+ /** @type {?} */
797
+ HotTableComponent.prototype.formulas;
798
+ /** @type {?} */
799
+ HotTableComponent.prototype.fragmentSelection;
800
+ /** @type {?} */
801
+ HotTableComponent.prototype.height;
802
+ /** @type {?} */
803
+ HotTableComponent.prototype.hiddenColumns;
804
+ /** @type {?} */
805
+ HotTableComponent.prototype.hiddenRows;
806
+ /** @type {?} */
807
+ HotTableComponent.prototype.invalidCellClassName;
808
+ /** @type {?} */
809
+ HotTableComponent.prototype.label;
810
+ /** @type {?} */
811
+ HotTableComponent.prototype.language;
812
+ /** @type {?} */
813
+ HotTableComponent.prototype.licenseKey;
814
+ /** @type {?} */
815
+ HotTableComponent.prototype.manualColumnFreeze;
816
+ /** @type {?} */
817
+ HotTableComponent.prototype.manualColumnMove;
818
+ /** @type {?} */
819
+ HotTableComponent.prototype.manualColumnResize;
820
+ /** @type {?} */
821
+ HotTableComponent.prototype.manualRowMove;
822
+ /** @type {?} */
823
+ HotTableComponent.prototype.manualRowResize;
824
+ /** @type {?} */
825
+ HotTableComponent.prototype.maxCols;
826
+ /** @type {?} */
827
+ HotTableComponent.prototype.maxRows;
828
+ /** @type {?} */
829
+ HotTableComponent.prototype.mergeCells;
830
+ /** @type {?} */
831
+ HotTableComponent.prototype.minCols;
832
+ /** @type {?} */
833
+ HotTableComponent.prototype.minRows;
834
+ /** @type {?} */
835
+ HotTableComponent.prototype.minSpareCols;
836
+ /** @type {?} */
837
+ HotTableComponent.prototype.minSpareRows;
838
+ /** @type {?} */
839
+ HotTableComponent.prototype.multiColumnSorting;
840
+ /** @type {?} */
841
+ HotTableComponent.prototype.nestedHeaders;
842
+ /** @type {?} */
843
+ HotTableComponent.prototype.nestedRows;
844
+ /** @type {?} */
845
+ HotTableComponent.prototype.noWordWrapClassName;
846
+ /** @type {?} */
847
+ HotTableComponent.prototype.numericFormat;
848
+ /** @type {?} */
849
+ HotTableComponent.prototype.observeDOMVisibility;
850
+ /** @type {?} */
851
+ HotTableComponent.prototype.outsideClickDeselects;
852
+ /** @type {?} */
853
+ HotTableComponent.prototype.persistentState;
854
+ /** @type {?} */
855
+ HotTableComponent.prototype.placeholder;
856
+ /** @type {?} */
857
+ HotTableComponent.prototype.placeholderCellClassName;
858
+ /** @type {?} */
859
+ HotTableComponent.prototype.preventOverflow;
860
+ /** @type {?} */
861
+ HotTableComponent.prototype.preventWheel;
862
+ /** @type {?} */
863
+ HotTableComponent.prototype.readOnly;
864
+ /** @type {?} */
865
+ HotTableComponent.prototype.readOnlyCellClassName;
866
+ /** @type {?} */
867
+ HotTableComponent.prototype.renderAllRows;
868
+ /** @type {?} */
869
+ HotTableComponent.prototype.renderer;
870
+ /** @type {?} */
871
+ HotTableComponent.prototype.rowHeaders;
872
+ /** @type {?} */
873
+ HotTableComponent.prototype.rowHeaderWidth;
874
+ /** @type {?} */
875
+ HotTableComponent.prototype.rowHeights;
876
+ /** @type {?} */
877
+ HotTableComponent.prototype.search;
878
+ /** @type {?} */
879
+ HotTableComponent.prototype.selectionMode;
880
+ /** @type {?} */
881
+ HotTableComponent.prototype.selectOptions;
882
+ /** @type {?} */
883
+ HotTableComponent.prototype.skipColumnOnPaste;
884
+ /** @type {?} */
885
+ HotTableComponent.prototype.skipRowOnPaste;
886
+ /** @type {?} */
887
+ HotTableComponent.prototype.sortByRelevance;
888
+ /** @type {?} */
889
+ HotTableComponent.prototype.source;
890
+ /** @type {?} */
891
+ HotTableComponent.prototype.startCols;
892
+ /** @type {?} */
893
+ HotTableComponent.prototype.startRows;
894
+ /** @type {?} */
895
+ HotTableComponent.prototype.stretchH;
896
+ /** @type {?} */
897
+ HotTableComponent.prototype.strict;
898
+ /** @type {?} */
899
+ HotTableComponent.prototype.tableClassName;
900
+ /** @type {?} */
901
+ HotTableComponent.prototype.tabMoves;
902
+ /** @type {?} */
903
+ HotTableComponent.prototype.title;
904
+ /** @type {?} */
905
+ HotTableComponent.prototype.trimDropdown;
906
+ /** @type {?} */
907
+ HotTableComponent.prototype.trimRows;
908
+ /** @type {?} */
909
+ HotTableComponent.prototype.trimWhitespace;
910
+ /** @type {?} */
911
+ HotTableComponent.prototype.type;
912
+ /** @type {?} */
913
+ HotTableComponent.prototype.uncheckedTemplate;
914
+ /** @type {?} */
915
+ HotTableComponent.prototype.undo;
916
+ /** @type {?} */
917
+ HotTableComponent.prototype.validator;
918
+ /** @type {?} */
919
+ HotTableComponent.prototype.viewportColumnRenderingOffset;
920
+ /** @type {?} */
921
+ HotTableComponent.prototype.viewportRowRenderingOffset;
922
+ /** @type {?} */
923
+ HotTableComponent.prototype.visibleRows;
924
+ /** @type {?} */
925
+ HotTableComponent.prototype.width;
926
+ /** @type {?} */
927
+ HotTableComponent.prototype.wordWrap;
928
+ /** @type {?} */
929
+ HotTableComponent.prototype.afterAddChild;
930
+ /** @type {?} */
931
+ HotTableComponent.prototype.afterAutofill;
932
+ /** @type {?} */
933
+ HotTableComponent.prototype.afterBeginEditing;
934
+ /** @type {?} */
935
+ HotTableComponent.prototype.afterCellMetaReset;
936
+ /** @type {?} */
937
+ HotTableComponent.prototype.afterChange;
938
+ /** @type {?} */
939
+ HotTableComponent.prototype.afterChangesObserved;
940
+ /** @type {?} */
941
+ HotTableComponent.prototype.afterColumnCollapse;
942
+ /** @type {?} */
943
+ HotTableComponent.prototype.afterColumnExpand;
944
+ /** @type {?} */
945
+ HotTableComponent.prototype.afterColumnMove;
946
+ /** @type {?} */
947
+ HotTableComponent.prototype.afterColumnResize;
948
+ /** @type {?} */
949
+ HotTableComponent.prototype.afterColumnSort;
950
+ /** @type {?} */
951
+ HotTableComponent.prototype.afterContextMenuDefaultOptions;
952
+ /** @type {?} */
953
+ HotTableComponent.prototype.afterContextMenuHide;
954
+ /** @type {?} */
955
+ HotTableComponent.prototype.afterContextMenuShow;
956
+ /** @type {?} */
957
+ HotTableComponent.prototype.afterCopy;
958
+ /** @type {?} */
959
+ HotTableComponent.prototype.afterCopyLimit;
960
+ /** @type {?} */
961
+ HotTableComponent.prototype.afterCreateCol;
962
+ /** @type {?} */
963
+ HotTableComponent.prototype.afterCreateRow;
964
+ /** @type {?} */
965
+ HotTableComponent.prototype.afterCut;
966
+ /** @type {?} */
967
+ HotTableComponent.prototype.afterDeselect;
968
+ /** @type {?} */
969
+ HotTableComponent.prototype.afterDestroy;
970
+ /** @type {?} */
971
+ HotTableComponent.prototype.afterDetachChild;
972
+ /** @type {?} */
973
+ HotTableComponent.prototype.afterDocumentKeyDown;
974
+ /** @type {?} */
975
+ HotTableComponent.prototype.afterDrawSelection;
976
+ /** @type {?} */
977
+ HotTableComponent.prototype.afterDropdownMenuDefaultOptions;
978
+ /** @type {?} */
979
+ HotTableComponent.prototype.afterDropdownMenuHide;
980
+ /** @type {?} */
981
+ HotTableComponent.prototype.afterDropdownMenuShow;
982
+ /** @type {?} */
983
+ HotTableComponent.prototype.afterFilter;
984
+ /** @type {?} */
985
+ HotTableComponent.prototype.afterGetCellMeta;
986
+ /** @type {?} */
987
+ HotTableComponent.prototype.afterGetColHeader;
988
+ /** @type {?} */
989
+ HotTableComponent.prototype.afterGetColumnHeaderRenderers;
990
+ /** @type {?} */
991
+ HotTableComponent.prototype.afterGetRowHeader;
992
+ /** @type {?} */
993
+ HotTableComponent.prototype.afterGetRowHeaderRenderers;
994
+ /** @type {?} */
995
+ HotTableComponent.prototype.afterHideColumns;
996
+ /** @type {?} */
997
+ HotTableComponent.prototype.afterHideRows;
998
+ /** @type {?} */
999
+ HotTableComponent.prototype.afterInit;
1000
+ /** @type {?} */
1001
+ HotTableComponent.prototype.afterLanguageChange;
1002
+ /** @type {?} */
1003
+ HotTableComponent.prototype.afterListen;
1004
+ /** @type {?} */
1005
+ HotTableComponent.prototype.afterLoadData;
1006
+ /** @type {?} */
1007
+ HotTableComponent.prototype.afterMergeCells;
1008
+ /** @type {?} */
1009
+ HotTableComponent.prototype.afterModifyTransformEnd;
1010
+ /** @type {?} */
1011
+ HotTableComponent.prototype.afterModifyTransformStart;
1012
+ /** @type {?} */
1013
+ HotTableComponent.prototype.afterMomentumScroll;
1014
+ /** @type {?} */
1015
+ HotTableComponent.prototype.afterOnCellContextMenu;
1016
+ /** @type {?} */
1017
+ HotTableComponent.prototype.afterOnCellCornerDblClick;
1018
+ /** @type {?} */
1019
+ HotTableComponent.prototype.afterOnCellCornerMouseDown;
1020
+ /** @type {?} */
1021
+ HotTableComponent.prototype.afterOnCellMouseDown;
1022
+ /** @type {?} */
1023
+ HotTableComponent.prototype.afterOnCellMouseOut;
1024
+ /** @type {?} */
1025
+ HotTableComponent.prototype.afterOnCellMouseOver;
1026
+ /** @type {?} */
1027
+ HotTableComponent.prototype.afterOnCellMouseUp;
1028
+ /** @type {?} */
1029
+ HotTableComponent.prototype.afterPaste;
1030
+ /** @type {?} */
1031
+ HotTableComponent.prototype.afterPluginsInitialized;
1032
+ /** @type {?} */
1033
+ HotTableComponent.prototype.afterRedo;
1034
+ /** @type {?} */
1035
+ HotTableComponent.prototype.afterRedoStackChange;
1036
+ /** @type {?} */
1037
+ HotTableComponent.prototype.afterRefreshDimensions;
1038
+ /** @type {?} */
1039
+ HotTableComponent.prototype.afterRemoveCellMeta;
1040
+ /** @type {?} */
1041
+ HotTableComponent.prototype.afterRemoveCol;
1042
+ /** @type {?} */
1043
+ HotTableComponent.prototype.afterRemoveRow;
1044
+ /** @type {?} */
1045
+ HotTableComponent.prototype.afterRender;
1046
+ /** @type {?} */
1047
+ HotTableComponent.prototype.afterRenderer;
1048
+ /** @type {?} */
1049
+ HotTableComponent.prototype.afterRowMove;
1050
+ /** @type {?} */
1051
+ HotTableComponent.prototype.afterRowResize;
1052
+ /** @type {?} */
1053
+ HotTableComponent.prototype.afterScrollHorizontally;
1054
+ /** @type {?} */
1055
+ HotTableComponent.prototype.afterScrollVertically;
1056
+ /** @type {?} */
1057
+ HotTableComponent.prototype.afterSelection;
1058
+ /** @type {?} */
1059
+ HotTableComponent.prototype.afterSelectionByProp;
1060
+ /** @type {?} */
1061
+ HotTableComponent.prototype.afterSelectionEnd;
1062
+ /** @type {?} */
1063
+ HotTableComponent.prototype.afterSelectionEndByProp;
1064
+ /** @type {?} */
1065
+ HotTableComponent.prototype.afterSetCellMeta;
1066
+ /** @type {?} */
1067
+ HotTableComponent.prototype.afterSetDataAtCell;
1068
+ /** @type {?} */
1069
+ HotTableComponent.prototype.afterSetDataAtRowProp;
1070
+ /** @type {?} */
1071
+ HotTableComponent.prototype.afterSetSourceDataAtCell;
1072
+ /** @type {?} */
1073
+ HotTableComponent.prototype.afterTrimRow;
1074
+ /** @type {?} */
1075
+ HotTableComponent.prototype.afterUndo;
1076
+ /** @type {?} */
1077
+ HotTableComponent.prototype.afterUndoStackChange;
1078
+ /** @type {?} */
1079
+ HotTableComponent.prototype.afterUnhideColumns;
1080
+ /** @type {?} */
1081
+ HotTableComponent.prototype.afterUnhideRows;
1082
+ /** @type {?} */
1083
+ HotTableComponent.prototype.afterUnlisten;
1084
+ /** @type {?} */
1085
+ HotTableComponent.prototype.afterUnmergeCells;
1086
+ /** @type {?} */
1087
+ HotTableComponent.prototype.afterUntrimRow;
1088
+ /** @type {?} */
1089
+ HotTableComponent.prototype.afterUpdateSettings;
1090
+ /** @type {?} */
1091
+ HotTableComponent.prototype.afterValidate;
1092
+ /** @type {?} */
1093
+ HotTableComponent.prototype.afterViewportColumnCalculatorOverride;
1094
+ /** @type {?} */
1095
+ HotTableComponent.prototype.afterViewportRowCalculatorOverride;
1096
+ /** @type {?} */
1097
+ HotTableComponent.prototype.afterViewRender;
1098
+ /** @type {?} */
1099
+ HotTableComponent.prototype.beforeAddChild;
1100
+ /** @type {?} */
1101
+ HotTableComponent.prototype.beforeAutofill;
1102
+ /** @type {?} */
1103
+ HotTableComponent.prototype.beforeAutofillInsidePopulate;
1104
+ /** @type {?} */
1105
+ HotTableComponent.prototype.beforeCellAlignment;
1106
+ /** @type {?} */
1107
+ HotTableComponent.prototype.beforeChange;
1108
+ /** @type {?} */
1109
+ HotTableComponent.prototype.beforeChangeRender;
1110
+ /** @type {?} */
1111
+ HotTableComponent.prototype.beforeColumnCollapse;
1112
+ /** @type {?} */
1113
+ HotTableComponent.prototype.beforeColumnExpand;
1114
+ /** @type {?} */
1115
+ HotTableComponent.prototype.beforeColumnMove;
1116
+ /** @type {?} */
1117
+ HotTableComponent.prototype.beforeColumnResize;
1118
+ /** @type {?} */
1119
+ HotTableComponent.prototype.beforeColumnSort;
1120
+ /** @type {?} */
1121
+ HotTableComponent.prototype.beforeContextMenuSetItems;
1122
+ /** @type {?} */
1123
+ HotTableComponent.prototype.beforeContextMenuShow;
1124
+ /** @type {?} */
1125
+ HotTableComponent.prototype.beforeCopy;
1126
+ /** @type {?} */
1127
+ HotTableComponent.prototype.beforeCreateCol;
1128
+ /** @type {?} */
1129
+ HotTableComponent.prototype.beforeCreateRow;
1130
+ /** @type {?} */
1131
+ HotTableComponent.prototype.beforeCut;
1132
+ /** @type {?} */
1133
+ HotTableComponent.prototype.beforeDetachChild;
1134
+ /** @type {?} */
1135
+ HotTableComponent.prototype.beforeDrawBorders;
1136
+ /** @type {?} */
1137
+ HotTableComponent.prototype.beforeDropdownMenuSetItems;
1138
+ /** @type {?} */
1139
+ HotTableComponent.prototype.beforeDropdownMenuShow;
1140
+ /** @type {?} */
1141
+ HotTableComponent.prototype.beforeFilter;
1142
+ /** @type {?} */
1143
+ HotTableComponent.prototype.beforeGetCellMeta;
1144
+ /** @type {?} */
1145
+ HotTableComponent.prototype.beforeHideColumns;
1146
+ /** @type {?} */
1147
+ HotTableComponent.prototype.beforeHideRows;
1148
+ /** @type {?} */
1149
+ HotTableComponent.prototype.beforeInit;
1150
+ /** @type {?} */
1151
+ HotTableComponent.prototype.beforeInitWalkontable;
1152
+ /** @type {?} */
1153
+ HotTableComponent.prototype.beforeKeyDown;
1154
+ /** @type {?} */
1155
+ HotTableComponent.prototype.beforeLanguageChange;
1156
+ /** @type {?} */
1157
+ HotTableComponent.prototype.beforeLoadData;
1158
+ /** @type {?} */
1159
+ HotTableComponent.prototype.beforeMergeCells;
1160
+ /** @type {?} */
1161
+ HotTableComponent.prototype.beforeOnCellContextMenu;
1162
+ /** @type {?} */
1163
+ HotTableComponent.prototype.beforeOnCellMouseDown;
1164
+ /** @type {?} */
1165
+ HotTableComponent.prototype.beforeOnCellMouseOut;
1166
+ /** @type {?} */
1167
+ HotTableComponent.prototype.beforeOnCellMouseOver;
1168
+ /** @type {?} */
1169
+ HotTableComponent.prototype.beforeOnCellMouseUp;
1170
+ /** @type {?} */
1171
+ HotTableComponent.prototype.beforePaste;
1172
+ /** @type {?} */
1173
+ HotTableComponent.prototype.beforeRedo;
1174
+ /** @type {?} */
1175
+ HotTableComponent.prototype.beforeRedoStackChange;
1176
+ /** @type {?} */
1177
+ HotTableComponent.prototype.beforeRefreshDimensions;
1178
+ /** @type {?} */
1179
+ HotTableComponent.prototype.beforeRemoveCellClassNames;
1180
+ /** @type {?} */
1181
+ HotTableComponent.prototype.beforeRemoveCellMeta;
1182
+ /** @type {?} */
1183
+ HotTableComponent.prototype.beforeRemoveCol;
1184
+ /** @type {?} */
1185
+ HotTableComponent.prototype.beforeRemoveRow;
1186
+ /** @type {?} */
1187
+ HotTableComponent.prototype.beforeRender;
1188
+ /** @type {?} */
1189
+ HotTableComponent.prototype.beforeRenderer;
1190
+ /** @type {?} */
1191
+ HotTableComponent.prototype.beforeRowMove;
1192
+ /** @type {?} */
1193
+ HotTableComponent.prototype.beforeRowResize;
1194
+ /** @type {?} */
1195
+ HotTableComponent.prototype.beforeSetCellMeta;
1196
+ /** @type {?} */
1197
+ HotTableComponent.prototype.beforeSetRangeEnd;
1198
+ /** @type {?} */
1199
+ HotTableComponent.prototype.beforeSetRangeStart;
1200
+ /** @type {?} */
1201
+ HotTableComponent.prototype.beforeSetRangeStartOnly;
1202
+ /** @type {?} */
1203
+ HotTableComponent.prototype.beforeStretchingColumnWidth;
1204
+ /** @type {?} */
1205
+ HotTableComponent.prototype.beforeTouchScroll;
1206
+ /** @type {?} */
1207
+ HotTableComponent.prototype.beforeTrimRow;
1208
+ /** @type {?} */
1209
+ HotTableComponent.prototype.beforeUndo;
1210
+ /** @type {?} */
1211
+ HotTableComponent.prototype.beforeUndoStackChange;
1212
+ /** @type {?} */
1213
+ HotTableComponent.prototype.beforeUnhideColumns;
1214
+ /** @type {?} */
1215
+ HotTableComponent.prototype.beforeUnhideRows;
1216
+ /** @type {?} */
1217
+ HotTableComponent.prototype.beforeUnmergeCells;
1218
+ /** @type {?} */
1219
+ HotTableComponent.prototype.beforeUntrimRow;
1220
+ /** @type {?} */
1221
+ HotTableComponent.prototype.beforeValidate;
1222
+ /** @type {?} */
1223
+ HotTableComponent.prototype.beforeValueRender;
1224
+ /** @type {?} */
1225
+ HotTableComponent.prototype.beforeViewRender;
1226
+ /** @type {?} */
1227
+ HotTableComponent.prototype.construct;
1228
+ /** @type {?} */
1229
+ HotTableComponent.prototype.init;
1230
+ /** @type {?} */
1231
+ HotTableComponent.prototype.modifyAutoColumnSizeSeed;
1232
+ /** @type {?} */
1233
+ HotTableComponent.prototype.modifyAutofillRange;
1234
+ /** @type {?} */
1235
+ HotTableComponent.prototype.modifyColHeader;
1236
+ /** @type {?} */
1237
+ HotTableComponent.prototype.modifyColumnHeaderHeight;
1238
+ /** @type {?} */
1239
+ HotTableComponent.prototype.modifyColWidth;
1240
+ /** @type {?} */
1241
+ HotTableComponent.prototype.modifyCopyableRange;
1242
+ /** @type {?} */
1243
+ HotTableComponent.prototype.modifyData;
1244
+ /** @type {?} */
1245
+ HotTableComponent.prototype.modifyGetCellCoords;
1246
+ /** @type {?} */
1247
+ HotTableComponent.prototype.modifyRowData;
1248
+ /** @type {?} */
1249
+ HotTableComponent.prototype.modifyRowHeader;
1250
+ /** @type {?} */
1251
+ HotTableComponent.prototype.modifyRowHeaderWidth;
1252
+ /** @type {?} */
1253
+ HotTableComponent.prototype.modifyRowHeight;
1254
+ /** @type {?} */
1255
+ HotTableComponent.prototype.modifySourceData;
1256
+ /** @type {?} */
1257
+ HotTableComponent.prototype.modifyTransformEnd;
1258
+ /** @type {?} */
1259
+ HotTableComponent.prototype.modifyTransformStart;
1260
+ /** @type {?} */
1261
+ HotTableComponent.prototype.persistentStateLoad;
1262
+ /** @type {?} */
1263
+ HotTableComponent.prototype.persistentStateReset;
1264
+ /** @type {?} */
1265
+ HotTableComponent.prototype.persistentStateSave;
1266
+ /**
1267
+ * @type {?}
1268
+ * @private
1269
+ */
1270
+ HotTableComponent.prototype._ngZone;
1271
+ /**
1272
+ * @type {?}
1273
+ * @private
1274
+ */
1275
+ HotTableComponent.prototype._hotTableRegisterer;
1276
+ /**
1277
+ * @type {?}
1278
+ * @private
1279
+ */
1280
+ HotTableComponent.prototype._hotSettingsResolver;
1281
+ }
1282
+
1283
+ /**
1284
+ * @fileoverview added by tsickle
1285
+ * Generated from: lib/hot-column.component.ts
1286
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1287
+ */
1288
+ var HotColumnComponent = /** @class */ (function () {
1289
+ function HotColumnComponent(parentComponent) {
1290
+ this.parentComponent = parentComponent;
1291
+ this.firstRun = true;
1292
+ }
1293
+ /**
1294
+ * @return {?}
1295
+ */
1296
+ HotColumnComponent.prototype.ngOnInit = /**
1297
+ * @return {?}
1298
+ */
1299
+ function () {
1300
+ this.firstRun = false;
1301
+ this.parentComponent.addColumn(this);
1302
+ };
1303
+ /**
1304
+ * @return {?}
1305
+ */
1306
+ HotColumnComponent.prototype.ngOnChanges = /**
1307
+ * @return {?}
1308
+ */
1309
+ function () {
1310
+ if (this.firstRun) {
1311
+ return;
1312
+ }
1313
+ this.parentComponent.onAfterColumnsChange();
1314
+ };
1315
+ /**
1316
+ * @return {?}
1317
+ */
1318
+ HotColumnComponent.prototype.ngOnDestroy = /**
1319
+ * @return {?}
1320
+ */
1321
+ function () {
1322
+ this.parentComponent.removeColumn(this);
1323
+ };
1324
+ HotColumnComponent.decorators = [
1325
+ { type: Component, args: [{
1326
+ selector: 'hot-column',
1327
+ template: ''
1328
+ }] }
1329
+ ];
1330
+ /** @nocollapse */
1331
+ HotColumnComponent.ctorParameters = function () { return [
1332
+ { type: HotTableComponent }
1333
+ ]; };
1334
+ HotColumnComponent.propDecorators = {
1335
+ allowEmpty: [{ type: Input }],
1336
+ allowHtml: [{ type: Input }],
1337
+ allowInvalid: [{ type: Input }],
1338
+ checkedTemplate: [{ type: Input }],
1339
+ className: [{ type: Input }],
1340
+ columnSorting: [{ type: Input }],
1341
+ colWidths: [{ type: Input }],
1342
+ commentedCellClassName: [{ type: Input }],
1343
+ copyable: [{ type: Input }],
1344
+ correctFormat: [{ type: Input }],
1345
+ data: [{ type: Input }],
1346
+ dateFormat: [{ type: Input }],
1347
+ defaultDate: [{ type: Input }],
1348
+ editor: [{ type: Input }],
1349
+ filteringCaseSensitive: [{ type: Input }],
1350
+ invalidCellClassName: [{ type: Input }],
1351
+ label: [{ type: Input }],
1352
+ language: [{ type: Input }],
1353
+ noWordWrapClassName: [{ type: Input }],
1354
+ numericFormat: [{ type: Input }],
1355
+ placeholder: [{ type: Input }],
1356
+ placeholderCellClassName: [{ type: Input }],
1357
+ readOnly: [{ type: Input }],
1358
+ readOnlyCellClassName: [{ type: Input }],
1359
+ renderer: [{ type: Input }],
1360
+ selectOptions: [{ type: Input }],
1361
+ skipColumnOnPaste: [{ type: Input }],
1362
+ sortByRelevance: [{ type: Input }],
1363
+ source: [{ type: Input }],
1364
+ strict: [{ type: Input }],
1365
+ title: [{ type: Input }],
1366
+ trimDropdown: [{ type: Input }],
1367
+ type: [{ type: Input }],
1368
+ uncheckedTemplate: [{ type: Input }],
1369
+ validator: [{ type: Input }],
1370
+ visibleRows: [{ type: Input }],
1371
+ width: [{ type: Input }],
1372
+ wordWrap: [{ type: Input }]
1373
+ };
1374
+ return HotColumnComponent;
1375
+ }());
1376
+ if (false) {
1377
+ /**
1378
+ * @type {?}
1379
+ * @private
1380
+ */
1381
+ HotColumnComponent.prototype.firstRun;
1382
+ /** @type {?} */
1383
+ HotColumnComponent.prototype.allowEmpty;
1384
+ /** @type {?} */
1385
+ HotColumnComponent.prototype.allowHtml;
1386
+ /** @type {?} */
1387
+ HotColumnComponent.prototype.allowInvalid;
1388
+ /** @type {?} */
1389
+ HotColumnComponent.prototype.checkedTemplate;
1390
+ /** @type {?} */
1391
+ HotColumnComponent.prototype.className;
1392
+ /** @type {?} */
1393
+ HotColumnComponent.prototype.columnSorting;
1394
+ /** @type {?} */
1395
+ HotColumnComponent.prototype.colWidths;
1396
+ /** @type {?} */
1397
+ HotColumnComponent.prototype.commentedCellClassName;
1398
+ /** @type {?} */
1399
+ HotColumnComponent.prototype.copyable;
1400
+ /** @type {?} */
1401
+ HotColumnComponent.prototype.correctFormat;
1402
+ /** @type {?} */
1403
+ HotColumnComponent.prototype.data;
1404
+ /** @type {?} */
1405
+ HotColumnComponent.prototype.dateFormat;
1406
+ /** @type {?} */
1407
+ HotColumnComponent.prototype.defaultDate;
1408
+ /** @type {?} */
1409
+ HotColumnComponent.prototype.editor;
1410
+ /** @type {?} */
1411
+ HotColumnComponent.prototype.filteringCaseSensitive;
1412
+ /** @type {?} */
1413
+ HotColumnComponent.prototype.invalidCellClassName;
1414
+ /** @type {?} */
1415
+ HotColumnComponent.prototype.label;
1416
+ /** @type {?} */
1417
+ HotColumnComponent.prototype.language;
1418
+ /** @type {?} */
1419
+ HotColumnComponent.prototype.noWordWrapClassName;
1420
+ /** @type {?} */
1421
+ HotColumnComponent.prototype.numericFormat;
1422
+ /** @type {?} */
1423
+ HotColumnComponent.prototype.placeholder;
1424
+ /** @type {?} */
1425
+ HotColumnComponent.prototype.placeholderCellClassName;
1426
+ /** @type {?} */
1427
+ HotColumnComponent.prototype.readOnly;
1428
+ /** @type {?} */
1429
+ HotColumnComponent.prototype.readOnlyCellClassName;
1430
+ /** @type {?} */
1431
+ HotColumnComponent.prototype.renderer;
1432
+ /** @type {?} */
1433
+ HotColumnComponent.prototype.selectOptions;
1434
+ /** @type {?} */
1435
+ HotColumnComponent.prototype.skipColumnOnPaste;
1436
+ /** @type {?} */
1437
+ HotColumnComponent.prototype.sortByRelevance;
1438
+ /** @type {?} */
1439
+ HotColumnComponent.prototype.source;
1440
+ /** @type {?} */
1441
+ HotColumnComponent.prototype.strict;
1442
+ /** @type {?} */
1443
+ HotColumnComponent.prototype.title;
1444
+ /** @type {?} */
1445
+ HotColumnComponent.prototype.trimDropdown;
1446
+ /** @type {?} */
1447
+ HotColumnComponent.prototype.type;
1448
+ /** @type {?} */
1449
+ HotColumnComponent.prototype.uncheckedTemplate;
1450
+ /** @type {?} */
1451
+ HotColumnComponent.prototype.validator;
1452
+ /** @type {?} */
1453
+ HotColumnComponent.prototype.visibleRows;
1454
+ /** @type {?} */
1455
+ HotColumnComponent.prototype.width;
1456
+ /** @type {?} */
1457
+ HotColumnComponent.prototype.wordWrap;
1458
+ /**
1459
+ * @type {?}
1460
+ * @private
1461
+ */
1462
+ HotColumnComponent.prototype.parentComponent;
1463
+ }
1464
+
1465
+ /**
1466
+ * @fileoverview added by tsickle
1467
+ * Generated from: lib/hot-table.module.ts
1468
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1469
+ */
1470
+ var HotTableModule = /** @class */ (function () {
1471
+ function HotTableModule() {
1472
+ }
1473
+ /**
1474
+ * @return {?}
1475
+ */
1476
+ HotTableModule.forRoot = /**
1477
+ * @return {?}
1478
+ */
1479
+ function () {
1480
+ return {
1481
+ ngModule: HotTableModule,
1482
+ providers: [HotTableRegisterer],
1483
+ };
1484
+ };
1485
+ HotTableModule.version = '10.0.0';
1486
+ HotTableModule.decorators = [
1487
+ { type: NgModule, args: [{
1488
+ declarations: [
1489
+ HotTableComponent,
1490
+ HotColumnComponent,
1491
+ ],
1492
+ exports: [
1493
+ HotTableComponent,
1494
+ HotColumnComponent,
1495
+ ]
1496
+ },] }
1497
+ ];
1498
+ return HotTableModule;
1499
+ }());
1500
+ if (false) {
1501
+ /** @type {?} */
1502
+ HotTableModule.version;
1503
+ }
1504
+
1505
+ /**
1506
+ * @fileoverview added by tsickle
1507
+ * Generated from: public_api.ts
1508
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1509
+ */
1510
+
1511
+ /**
1512
+ * @fileoverview added by tsickle
1513
+ * Generated from: handsontable-angular.ts
1514
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1515
+ */
1516
+
1517
+ export { HOT_DESTROYED_WARNING, HotColumnComponent, HotSettingsResolver, HotTableComponent, HotTableModule, HotTableRegisterer };
1518
+ //# sourceMappingURL=handsontable-angular.js.map