@handsontable/angular 0.0.0-next-9ec04ce-20221121

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