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