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