@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,1446 @@
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
+ 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
+ fixedColumnsStart: [{ type: Input }],
375
+ fixedRowsBottom: [{ type: Input }],
376
+ fixedRowsTop: [{ type: Input }],
377
+ formulas: [{ type: Input }],
378
+ fragmentSelection: [{ type: Input }],
379
+ height: [{ type: Input }],
380
+ hiddenColumns: [{ type: Input }],
381
+ hiddenRows: [{ type: Input }],
382
+ invalidCellClassName: [{ type: Input }],
383
+ label: [{ type: Input }],
384
+ language: [{ type: Input }],
385
+ layoutDirection: [{ type: Input }],
386
+ licenseKey: [{ type: Input }],
387
+ manualColumnFreeze: [{ type: Input }],
388
+ manualColumnMove: [{ type: Input }],
389
+ manualColumnResize: [{ type: Input }],
390
+ manualRowMove: [{ type: Input }],
391
+ manualRowResize: [{ type: Input }],
392
+ maxCols: [{ type: Input }],
393
+ maxRows: [{ type: Input }],
394
+ mergeCells: [{ type: Input }],
395
+ minCols: [{ type: Input }],
396
+ minRows: [{ type: Input }],
397
+ minSpareCols: [{ type: Input }],
398
+ minSpareRows: [{ type: Input }],
399
+ multiColumnSorting: [{ type: Input }],
400
+ nestedHeaders: [{ type: Input }],
401
+ nestedRows: [{ type: Input }],
402
+ noWordWrapClassName: [{ type: Input }],
403
+ numericFormat: [{ type: Input }],
404
+ observeDOMVisibility: [{ type: Input }],
405
+ outsideClickDeselects: [{ type: Input }],
406
+ persistentState: [{ type: Input }],
407
+ placeholder: [{ type: Input }],
408
+ placeholderCellClassName: [{ type: Input }],
409
+ preventOverflow: [{ type: Input }],
410
+ preventWheel: [{ type: Input }],
411
+ readOnly: [{ type: Input }],
412
+ readOnlyCellClassName: [{ type: Input }],
413
+ renderAllRows: [{ type: Input }],
414
+ renderer: [{ type: Input }],
415
+ rowHeaders: [{ type: Input }],
416
+ rowHeaderWidth: [{ type: Input }],
417
+ rowHeights: [{ type: Input }],
418
+ search: [{ type: Input }],
419
+ selectionMode: [{ type: Input }],
420
+ selectOptions: [{ type: Input }],
421
+ skipColumnOnPaste: [{ type: Input }],
422
+ skipRowOnPaste: [{ type: Input }],
423
+ sortByRelevance: [{ type: Input }],
424
+ source: [{ type: Input }],
425
+ startCols: [{ type: Input }],
426
+ startRows: [{ type: Input }],
427
+ stretchH: [{ type: Input }],
428
+ strict: [{ type: Input }],
429
+ tableClassName: [{ type: Input }],
430
+ tabMoves: [{ type: Input }],
431
+ title: [{ type: Input }],
432
+ trimDropdown: [{ type: Input }],
433
+ trimRows: [{ type: Input }],
434
+ trimWhitespace: [{ type: Input }],
435
+ type: [{ type: Input }],
436
+ uncheckedTemplate: [{ type: Input }],
437
+ undo: [{ type: Input }],
438
+ validator: [{ type: Input }],
439
+ viewportColumnRenderingOffset: [{ type: Input }],
440
+ viewportRowRenderingOffset: [{ type: Input }],
441
+ visibleRows: [{ type: Input }],
442
+ width: [{ type: Input }],
443
+ wordWrap: [{ type: Input }],
444
+ afterAddChild: [{ type: Input }],
445
+ afterAutofill: [{ type: Input }],
446
+ afterBeginEditing: [{ type: Input }],
447
+ afterCellMetaReset: [{ type: Input }],
448
+ afterChange: [{ type: Input }],
449
+ afterChangesObserved: [{ type: Input }],
450
+ afterColumnCollapse: [{ type: Input }],
451
+ afterColumnExpand: [{ type: Input }],
452
+ afterColumnMove: [{ type: Input }],
453
+ afterColumnResize: [{ type: Input }],
454
+ afterColumnSort: [{ type: Input }],
455
+ afterContextMenuDefaultOptions: [{ type: Input }],
456
+ afterContextMenuHide: [{ type: Input }],
457
+ afterContextMenuShow: [{ type: Input }],
458
+ afterCopy: [{ type: Input }],
459
+ afterCopyLimit: [{ type: Input }],
460
+ afterCreateCol: [{ type: Input }],
461
+ afterCreateRow: [{ type: Input }],
462
+ afterCut: [{ type: Input }],
463
+ afterDeselect: [{ type: Input }],
464
+ afterDestroy: [{ type: Input }],
465
+ afterDetachChild: [{ type: Input }],
466
+ afterDocumentKeyDown: [{ type: Input }],
467
+ afterDrawSelection: [{ type: Input }],
468
+ afterDropdownMenuDefaultOptions: [{ type: Input }],
469
+ afterDropdownMenuHide: [{ type: Input }],
470
+ afterDropdownMenuShow: [{ type: Input }],
471
+ afterFilter: [{ type: Input }],
472
+ afterGetCellMeta: [{ type: Input }],
473
+ afterGetColHeader: [{ type: Input }],
474
+ afterGetColumnHeaderRenderers: [{ type: Input }],
475
+ afterGetRowHeader: [{ type: Input }],
476
+ afterGetRowHeaderRenderers: [{ type: Input }],
477
+ afterHideColumns: [{ type: Input }],
478
+ afterHideRows: [{ type: Input }],
479
+ afterInit: [{ type: Input }],
480
+ afterLanguageChange: [{ type: Input }],
481
+ afterListen: [{ type: Input }],
482
+ afterLoadData: [{ type: Input }],
483
+ afterMergeCells: [{ type: Input }],
484
+ afterModifyTransformEnd: [{ type: Input }],
485
+ afterModifyTransformStart: [{ type: Input }],
486
+ afterMomentumScroll: [{ type: Input }],
487
+ afterOnCellContextMenu: [{ type: Input }],
488
+ afterOnCellCornerDblClick: [{ type: Input }],
489
+ afterOnCellCornerMouseDown: [{ type: Input }],
490
+ afterOnCellMouseDown: [{ type: Input }],
491
+ afterOnCellMouseOut: [{ type: Input }],
492
+ afterOnCellMouseOver: [{ type: Input }],
493
+ afterOnCellMouseUp: [{ type: Input }],
494
+ afterPaste: [{ type: Input }],
495
+ afterPluginsInitialized: [{ type: Input }],
496
+ afterRedo: [{ type: Input }],
497
+ afterRedoStackChange: [{ type: Input }],
498
+ afterRefreshDimensions: [{ type: Input }],
499
+ afterRemoveCellMeta: [{ type: Input }],
500
+ afterRemoveCol: [{ type: Input }],
501
+ afterRemoveRow: [{ type: Input }],
502
+ afterRender: [{ type: Input }],
503
+ afterRenderer: [{ type: Input }],
504
+ afterRowMove: [{ type: Input }],
505
+ afterRowResize: [{ type: Input }],
506
+ afterScrollHorizontally: [{ type: Input }],
507
+ afterScrollVertically: [{ type: Input }],
508
+ afterSelection: [{ type: Input }],
509
+ afterSelectionByProp: [{ type: Input }],
510
+ afterSelectionEnd: [{ type: Input }],
511
+ afterSelectionEndByProp: [{ type: Input }],
512
+ afterSetCellMeta: [{ type: Input }],
513
+ afterSetDataAtCell: [{ type: Input }],
514
+ afterSetDataAtRowProp: [{ type: Input }],
515
+ afterSetSourceDataAtCell: [{ type: Input }],
516
+ afterTrimRow: [{ type: Input }],
517
+ afterUndo: [{ type: Input }],
518
+ afterUndoStackChange: [{ type: Input }],
519
+ afterUnhideColumns: [{ type: Input }],
520
+ afterUnhideRows: [{ type: Input }],
521
+ afterUnlisten: [{ type: Input }],
522
+ afterUnmergeCells: [{ type: Input }],
523
+ afterUntrimRow: [{ type: Input }],
524
+ afterUpdateSettings: [{ type: Input }],
525
+ afterValidate: [{ type: Input }],
526
+ afterViewportColumnCalculatorOverride: [{ type: Input }],
527
+ afterViewportRowCalculatorOverride: [{ type: Input }],
528
+ afterViewRender: [{ type: Input }],
529
+ beforeAddChild: [{ type: Input }],
530
+ beforeAutofill: [{ type: Input }],
531
+ beforeAutofillInsidePopulate: [{ type: Input }],
532
+ beforeCellAlignment: [{ type: Input }],
533
+ beforeChange: [{ type: Input }],
534
+ beforeChangeRender: [{ type: Input }],
535
+ beforeColumnCollapse: [{ type: Input }],
536
+ beforeColumnExpand: [{ type: Input }],
537
+ beforeColumnMove: [{ type: Input }],
538
+ beforeColumnResize: [{ type: Input }],
539
+ beforeColumnSort: [{ type: Input }],
540
+ beforeContextMenuSetItems: [{ type: Input }],
541
+ beforeContextMenuShow: [{ type: Input }],
542
+ beforeCopy: [{ type: Input }],
543
+ beforeCreateCol: [{ type: Input }],
544
+ beforeCreateRow: [{ type: Input }],
545
+ beforeCut: [{ type: Input }],
546
+ beforeDetachChild: [{ type: Input }],
547
+ beforeDrawBorders: [{ type: Input }],
548
+ beforeDropdownMenuSetItems: [{ type: Input }],
549
+ beforeDropdownMenuShow: [{ type: Input }],
550
+ beforeFilter: [{ type: Input }],
551
+ beforeGetCellMeta: [{ type: Input }],
552
+ beforeHideColumns: [{ type: Input }],
553
+ beforeHideRows: [{ type: Input }],
554
+ beforeInit: [{ type: Input }],
555
+ beforeInitWalkontable: [{ type: Input }],
556
+ beforeKeyDown: [{ type: Input }],
557
+ beforeLanguageChange: [{ type: Input }],
558
+ beforeLoadData: [{ type: Input }],
559
+ beforeMergeCells: [{ type: Input }],
560
+ beforeOnCellContextMenu: [{ type: Input }],
561
+ beforeOnCellMouseDown: [{ type: Input }],
562
+ beforeOnCellMouseOut: [{ type: Input }],
563
+ beforeOnCellMouseOver: [{ type: Input }],
564
+ beforeOnCellMouseUp: [{ type: Input }],
565
+ beforePaste: [{ type: Input }],
566
+ beforeRedo: [{ type: Input }],
567
+ beforeRedoStackChange: [{ type: Input }],
568
+ beforeRefreshDimensions: [{ type: Input }],
569
+ beforeRemoveCellClassNames: [{ type: Input }],
570
+ beforeRemoveCellMeta: [{ type: Input }],
571
+ beforeRemoveCol: [{ type: Input }],
572
+ beforeRemoveRow: [{ type: Input }],
573
+ beforeRender: [{ type: Input }],
574
+ beforeRenderer: [{ type: Input }],
575
+ beforeRowMove: [{ type: Input }],
576
+ beforeRowResize: [{ type: Input }],
577
+ beforeSetCellMeta: [{ type: Input }],
578
+ beforeSetRangeEnd: [{ type: Input }],
579
+ beforeSetRangeStart: [{ type: Input }],
580
+ beforeSetRangeStartOnly: [{ type: Input }],
581
+ beforeStretchingColumnWidth: [{ type: Input }],
582
+ beforeTouchScroll: [{ type: Input }],
583
+ beforeTrimRow: [{ type: Input }],
584
+ beforeUndo: [{ type: Input }],
585
+ beforeUndoStackChange: [{ type: Input }],
586
+ beforeUnhideColumns: [{ type: Input }],
587
+ beforeUnhideRows: [{ type: Input }],
588
+ beforeUnmergeCells: [{ type: Input }],
589
+ beforeUntrimRow: [{ type: Input }],
590
+ beforeValidate: [{ type: Input }],
591
+ beforeValueRender: [{ type: Input }],
592
+ beforeViewRender: [{ type: Input }],
593
+ construct: [{ type: Input }],
594
+ init: [{ type: Input }],
595
+ modifyAutoColumnSizeSeed: [{ type: Input }],
596
+ modifyAutofillRange: [{ type: Input }],
597
+ modifyColHeader: [{ type: Input }],
598
+ modifyColumnHeaderHeight: [{ type: Input }],
599
+ modifyColWidth: [{ type: Input }],
600
+ modifyCopyableRange: [{ type: Input }],
601
+ modifyData: [{ type: Input }],
602
+ modifyGetCellCoords: [{ type: Input }],
603
+ modifyRowData: [{ type: Input }],
604
+ modifyRowHeader: [{ type: Input }],
605
+ modifyRowHeaderWidth: [{ type: Input }],
606
+ modifyRowHeight: [{ type: Input }],
607
+ modifySourceData: [{ type: Input }],
608
+ modifyTransformEnd: [{ type: Input }],
609
+ modifyTransformStart: [{ type: Input }],
610
+ persistentStateLoad: [{ type: Input }],
611
+ persistentStateReset: [{ type: Input }],
612
+ persistentStateSave: [{ type: Input }]
613
+ };
614
+ if (false) {
615
+ /** @type {?} */
616
+ HotTableComponent.prototype.container;
617
+ /**
618
+ * @type {?}
619
+ * @private
620
+ */
621
+ HotTableComponent.prototype.__hotInstance;
622
+ /**
623
+ * @type {?}
624
+ * @private
625
+ */
626
+ HotTableComponent.prototype.columnsComponents;
627
+ /** @type {?} */
628
+ HotTableComponent.prototype.settings;
629
+ /** @type {?} */
630
+ HotTableComponent.prototype.hotId;
631
+ /** @type {?} */
632
+ HotTableComponent.prototype.activeHeaderClassName;
633
+ /** @type {?} */
634
+ HotTableComponent.prototype.allowEmpty;
635
+ /** @type {?} */
636
+ HotTableComponent.prototype.allowHtml;
637
+ /** @type {?} */
638
+ HotTableComponent.prototype.allowInsertColumn;
639
+ /** @type {?} */
640
+ HotTableComponent.prototype.allowInsertRow;
641
+ /** @type {?} */
642
+ HotTableComponent.prototype.allowInvalid;
643
+ /** @type {?} */
644
+ HotTableComponent.prototype.allowRemoveColumn;
645
+ /** @type {?} */
646
+ HotTableComponent.prototype.allowRemoveRow;
647
+ /** @type {?} */
648
+ HotTableComponent.prototype.autoColumnSize;
649
+ /** @type {?} */
650
+ HotTableComponent.prototype.autoRowSize;
651
+ /** @type {?} */
652
+ HotTableComponent.prototype.autoWrapCol;
653
+ /** @type {?} */
654
+ HotTableComponent.prototype.autoWrapRow;
655
+ /** @type {?} */
656
+ HotTableComponent.prototype.bindRowsWithHeaders;
657
+ /** @type {?} */
658
+ HotTableComponent.prototype.cell;
659
+ /** @type {?} */
660
+ HotTableComponent.prototype.cells;
661
+ /** @type {?} */
662
+ HotTableComponent.prototype.checkedTemplate;
663
+ /** @type {?} */
664
+ HotTableComponent.prototype.className;
665
+ /** @type {?} */
666
+ HotTableComponent.prototype.colHeaders;
667
+ /** @type {?} */
668
+ HotTableComponent.prototype.collapsibleColumns;
669
+ /** @type {?} */
670
+ HotTableComponent.prototype.columnHeaderHeight;
671
+ /** @type {?} */
672
+ HotTableComponent.prototype.columns;
673
+ /** @type {?} */
674
+ HotTableComponent.prototype.columnSorting;
675
+ /** @type {?} */
676
+ HotTableComponent.prototype.columnSummary;
677
+ /** @type {?} */
678
+ HotTableComponent.prototype.colWidths;
679
+ /** @type {?} */
680
+ HotTableComponent.prototype.commentedCellClassName;
681
+ /** @type {?} */
682
+ HotTableComponent.prototype.comments;
683
+ /** @type {?} */
684
+ HotTableComponent.prototype.contextMenu;
685
+ /** @type {?} */
686
+ HotTableComponent.prototype.copyable;
687
+ /** @type {?} */
688
+ HotTableComponent.prototype.copyPaste;
689
+ /** @type {?} */
690
+ HotTableComponent.prototype.correctFormat;
691
+ /** @type {?} */
692
+ HotTableComponent.prototype.currentColClassName;
693
+ /** @type {?} */
694
+ HotTableComponent.prototype.currentHeaderClassName;
695
+ /** @type {?} */
696
+ HotTableComponent.prototype.currentRowClassName;
697
+ /** @type {?} */
698
+ HotTableComponent.prototype.customBorders;
699
+ /** @type {?} */
700
+ HotTableComponent.prototype.data;
701
+ /** @type {?} */
702
+ HotTableComponent.prototype.dataSchema;
703
+ /** @type {?} */
704
+ HotTableComponent.prototype.dateFormat;
705
+ /** @type {?} */
706
+ HotTableComponent.prototype.defaultDate;
707
+ /** @type {?} */
708
+ HotTableComponent.prototype.disableVisualSelection;
709
+ /** @type {?} */
710
+ HotTableComponent.prototype.dragToScroll;
711
+ /** @type {?} */
712
+ HotTableComponent.prototype.dropdownMenu;
713
+ /** @type {?} */
714
+ HotTableComponent.prototype.editor;
715
+ /** @type {?} */
716
+ HotTableComponent.prototype.enterBeginsEditing;
717
+ /** @type {?} */
718
+ HotTableComponent.prototype.enterMoves;
719
+ /** @type {?} */
720
+ HotTableComponent.prototype.fillHandle;
721
+ /** @type {?} */
722
+ HotTableComponent.prototype.filter;
723
+ /** @type {?} */
724
+ HotTableComponent.prototype.filteringCaseSensitive;
725
+ /** @type {?} */
726
+ HotTableComponent.prototype.filters;
727
+ /** @type {?} */
728
+ HotTableComponent.prototype.fixedColumnsLeft;
729
+ /** @type {?} */
730
+ HotTableComponent.prototype.fixedColumnsStart;
731
+ /** @type {?} */
732
+ HotTableComponent.prototype.fixedRowsBottom;
733
+ /** @type {?} */
734
+ HotTableComponent.prototype.fixedRowsTop;
735
+ /** @type {?} */
736
+ HotTableComponent.prototype.formulas;
737
+ /** @type {?} */
738
+ HotTableComponent.prototype.fragmentSelection;
739
+ /** @type {?} */
740
+ HotTableComponent.prototype.height;
741
+ /** @type {?} */
742
+ HotTableComponent.prototype.hiddenColumns;
743
+ /** @type {?} */
744
+ HotTableComponent.prototype.hiddenRows;
745
+ /** @type {?} */
746
+ HotTableComponent.prototype.invalidCellClassName;
747
+ /** @type {?} */
748
+ HotTableComponent.prototype.label;
749
+ /** @type {?} */
750
+ HotTableComponent.prototype.language;
751
+ /** @type {?} */
752
+ HotTableComponent.prototype.layoutDirection;
753
+ /** @type {?} */
754
+ HotTableComponent.prototype.licenseKey;
755
+ /** @type {?} */
756
+ HotTableComponent.prototype.manualColumnFreeze;
757
+ /** @type {?} */
758
+ HotTableComponent.prototype.manualColumnMove;
759
+ /** @type {?} */
760
+ HotTableComponent.prototype.manualColumnResize;
761
+ /** @type {?} */
762
+ HotTableComponent.prototype.manualRowMove;
763
+ /** @type {?} */
764
+ HotTableComponent.prototype.manualRowResize;
765
+ /** @type {?} */
766
+ HotTableComponent.prototype.maxCols;
767
+ /** @type {?} */
768
+ HotTableComponent.prototype.maxRows;
769
+ /** @type {?} */
770
+ HotTableComponent.prototype.mergeCells;
771
+ /** @type {?} */
772
+ HotTableComponent.prototype.minCols;
773
+ /** @type {?} */
774
+ HotTableComponent.prototype.minRows;
775
+ /** @type {?} */
776
+ HotTableComponent.prototype.minSpareCols;
777
+ /** @type {?} */
778
+ HotTableComponent.prototype.minSpareRows;
779
+ /** @type {?} */
780
+ HotTableComponent.prototype.multiColumnSorting;
781
+ /** @type {?} */
782
+ HotTableComponent.prototype.nestedHeaders;
783
+ /** @type {?} */
784
+ HotTableComponent.prototype.nestedRows;
785
+ /** @type {?} */
786
+ HotTableComponent.prototype.noWordWrapClassName;
787
+ /** @type {?} */
788
+ HotTableComponent.prototype.numericFormat;
789
+ /** @type {?} */
790
+ HotTableComponent.prototype.observeDOMVisibility;
791
+ /** @type {?} */
792
+ HotTableComponent.prototype.outsideClickDeselects;
793
+ /** @type {?} */
794
+ HotTableComponent.prototype.persistentState;
795
+ /** @type {?} */
796
+ HotTableComponent.prototype.placeholder;
797
+ /** @type {?} */
798
+ HotTableComponent.prototype.placeholderCellClassName;
799
+ /** @type {?} */
800
+ HotTableComponent.prototype.preventOverflow;
801
+ /** @type {?} */
802
+ HotTableComponent.prototype.preventWheel;
803
+ /** @type {?} */
804
+ HotTableComponent.prototype.readOnly;
805
+ /** @type {?} */
806
+ HotTableComponent.prototype.readOnlyCellClassName;
807
+ /** @type {?} */
808
+ HotTableComponent.prototype.renderAllRows;
809
+ /** @type {?} */
810
+ HotTableComponent.prototype.renderer;
811
+ /** @type {?} */
812
+ HotTableComponent.prototype.rowHeaders;
813
+ /** @type {?} */
814
+ HotTableComponent.prototype.rowHeaderWidth;
815
+ /** @type {?} */
816
+ HotTableComponent.prototype.rowHeights;
817
+ /** @type {?} */
818
+ HotTableComponent.prototype.search;
819
+ /** @type {?} */
820
+ HotTableComponent.prototype.selectionMode;
821
+ /** @type {?} */
822
+ HotTableComponent.prototype.selectOptions;
823
+ /** @type {?} */
824
+ HotTableComponent.prototype.skipColumnOnPaste;
825
+ /** @type {?} */
826
+ HotTableComponent.prototype.skipRowOnPaste;
827
+ /** @type {?} */
828
+ HotTableComponent.prototype.sortByRelevance;
829
+ /** @type {?} */
830
+ HotTableComponent.prototype.source;
831
+ /** @type {?} */
832
+ HotTableComponent.prototype.startCols;
833
+ /** @type {?} */
834
+ HotTableComponent.prototype.startRows;
835
+ /** @type {?} */
836
+ HotTableComponent.prototype.stretchH;
837
+ /** @type {?} */
838
+ HotTableComponent.prototype.strict;
839
+ /** @type {?} */
840
+ HotTableComponent.prototype.tableClassName;
841
+ /** @type {?} */
842
+ HotTableComponent.prototype.tabMoves;
843
+ /** @type {?} */
844
+ HotTableComponent.prototype.title;
845
+ /** @type {?} */
846
+ HotTableComponent.prototype.trimDropdown;
847
+ /** @type {?} */
848
+ HotTableComponent.prototype.trimRows;
849
+ /** @type {?} */
850
+ HotTableComponent.prototype.trimWhitespace;
851
+ /** @type {?} */
852
+ HotTableComponent.prototype.type;
853
+ /** @type {?} */
854
+ HotTableComponent.prototype.uncheckedTemplate;
855
+ /** @type {?} */
856
+ HotTableComponent.prototype.undo;
857
+ /** @type {?} */
858
+ HotTableComponent.prototype.validator;
859
+ /** @type {?} */
860
+ HotTableComponent.prototype.viewportColumnRenderingOffset;
861
+ /** @type {?} */
862
+ HotTableComponent.prototype.viewportRowRenderingOffset;
863
+ /** @type {?} */
864
+ HotTableComponent.prototype.visibleRows;
865
+ /** @type {?} */
866
+ HotTableComponent.prototype.width;
867
+ /** @type {?} */
868
+ HotTableComponent.prototype.wordWrap;
869
+ /** @type {?} */
870
+ HotTableComponent.prototype.afterAddChild;
871
+ /** @type {?} */
872
+ HotTableComponent.prototype.afterAutofill;
873
+ /** @type {?} */
874
+ HotTableComponent.prototype.afterBeginEditing;
875
+ /** @type {?} */
876
+ HotTableComponent.prototype.afterCellMetaReset;
877
+ /** @type {?} */
878
+ HotTableComponent.prototype.afterChange;
879
+ /** @type {?} */
880
+ HotTableComponent.prototype.afterChangesObserved;
881
+ /** @type {?} */
882
+ HotTableComponent.prototype.afterColumnCollapse;
883
+ /** @type {?} */
884
+ HotTableComponent.prototype.afterColumnExpand;
885
+ /** @type {?} */
886
+ HotTableComponent.prototype.afterColumnMove;
887
+ /** @type {?} */
888
+ HotTableComponent.prototype.afterColumnResize;
889
+ /** @type {?} */
890
+ HotTableComponent.prototype.afterColumnSort;
891
+ /** @type {?} */
892
+ HotTableComponent.prototype.afterContextMenuDefaultOptions;
893
+ /** @type {?} */
894
+ HotTableComponent.prototype.afterContextMenuHide;
895
+ /** @type {?} */
896
+ HotTableComponent.prototype.afterContextMenuShow;
897
+ /** @type {?} */
898
+ HotTableComponent.prototype.afterCopy;
899
+ /** @type {?} */
900
+ HotTableComponent.prototype.afterCopyLimit;
901
+ /** @type {?} */
902
+ HotTableComponent.prototype.afterCreateCol;
903
+ /** @type {?} */
904
+ HotTableComponent.prototype.afterCreateRow;
905
+ /** @type {?} */
906
+ HotTableComponent.prototype.afterCut;
907
+ /** @type {?} */
908
+ HotTableComponent.prototype.afterDeselect;
909
+ /** @type {?} */
910
+ HotTableComponent.prototype.afterDestroy;
911
+ /** @type {?} */
912
+ HotTableComponent.prototype.afterDetachChild;
913
+ /** @type {?} */
914
+ HotTableComponent.prototype.afterDocumentKeyDown;
915
+ /** @type {?} */
916
+ HotTableComponent.prototype.afterDrawSelection;
917
+ /** @type {?} */
918
+ HotTableComponent.prototype.afterDropdownMenuDefaultOptions;
919
+ /** @type {?} */
920
+ HotTableComponent.prototype.afterDropdownMenuHide;
921
+ /** @type {?} */
922
+ HotTableComponent.prototype.afterDropdownMenuShow;
923
+ /** @type {?} */
924
+ HotTableComponent.prototype.afterFilter;
925
+ /** @type {?} */
926
+ HotTableComponent.prototype.afterGetCellMeta;
927
+ /** @type {?} */
928
+ HotTableComponent.prototype.afterGetColHeader;
929
+ /** @type {?} */
930
+ HotTableComponent.prototype.afterGetColumnHeaderRenderers;
931
+ /** @type {?} */
932
+ HotTableComponent.prototype.afterGetRowHeader;
933
+ /** @type {?} */
934
+ HotTableComponent.prototype.afterGetRowHeaderRenderers;
935
+ /** @type {?} */
936
+ HotTableComponent.prototype.afterHideColumns;
937
+ /** @type {?} */
938
+ HotTableComponent.prototype.afterHideRows;
939
+ /** @type {?} */
940
+ HotTableComponent.prototype.afterInit;
941
+ /** @type {?} */
942
+ HotTableComponent.prototype.afterLanguageChange;
943
+ /** @type {?} */
944
+ HotTableComponent.prototype.afterListen;
945
+ /** @type {?} */
946
+ HotTableComponent.prototype.afterLoadData;
947
+ /** @type {?} */
948
+ HotTableComponent.prototype.afterMergeCells;
949
+ /** @type {?} */
950
+ HotTableComponent.prototype.afterModifyTransformEnd;
951
+ /** @type {?} */
952
+ HotTableComponent.prototype.afterModifyTransformStart;
953
+ /** @type {?} */
954
+ HotTableComponent.prototype.afterMomentumScroll;
955
+ /** @type {?} */
956
+ HotTableComponent.prototype.afterOnCellContextMenu;
957
+ /** @type {?} */
958
+ HotTableComponent.prototype.afterOnCellCornerDblClick;
959
+ /** @type {?} */
960
+ HotTableComponent.prototype.afterOnCellCornerMouseDown;
961
+ /** @type {?} */
962
+ HotTableComponent.prototype.afterOnCellMouseDown;
963
+ /** @type {?} */
964
+ HotTableComponent.prototype.afterOnCellMouseOut;
965
+ /** @type {?} */
966
+ HotTableComponent.prototype.afterOnCellMouseOver;
967
+ /** @type {?} */
968
+ HotTableComponent.prototype.afterOnCellMouseUp;
969
+ /** @type {?} */
970
+ HotTableComponent.prototype.afterPaste;
971
+ /** @type {?} */
972
+ HotTableComponent.prototype.afterPluginsInitialized;
973
+ /** @type {?} */
974
+ HotTableComponent.prototype.afterRedo;
975
+ /** @type {?} */
976
+ HotTableComponent.prototype.afterRedoStackChange;
977
+ /** @type {?} */
978
+ HotTableComponent.prototype.afterRefreshDimensions;
979
+ /** @type {?} */
980
+ HotTableComponent.prototype.afterRemoveCellMeta;
981
+ /** @type {?} */
982
+ HotTableComponent.prototype.afterRemoveCol;
983
+ /** @type {?} */
984
+ HotTableComponent.prototype.afterRemoveRow;
985
+ /** @type {?} */
986
+ HotTableComponent.prototype.afterRender;
987
+ /** @type {?} */
988
+ HotTableComponent.prototype.afterRenderer;
989
+ /** @type {?} */
990
+ HotTableComponent.prototype.afterRowMove;
991
+ /** @type {?} */
992
+ HotTableComponent.prototype.afterRowResize;
993
+ /** @type {?} */
994
+ HotTableComponent.prototype.afterScrollHorizontally;
995
+ /** @type {?} */
996
+ HotTableComponent.prototype.afterScrollVertically;
997
+ /** @type {?} */
998
+ HotTableComponent.prototype.afterSelection;
999
+ /** @type {?} */
1000
+ HotTableComponent.prototype.afterSelectionByProp;
1001
+ /** @type {?} */
1002
+ HotTableComponent.prototype.afterSelectionEnd;
1003
+ /** @type {?} */
1004
+ HotTableComponent.prototype.afterSelectionEndByProp;
1005
+ /** @type {?} */
1006
+ HotTableComponent.prototype.afterSetCellMeta;
1007
+ /** @type {?} */
1008
+ HotTableComponent.prototype.afterSetDataAtCell;
1009
+ /** @type {?} */
1010
+ HotTableComponent.prototype.afterSetDataAtRowProp;
1011
+ /** @type {?} */
1012
+ HotTableComponent.prototype.afterSetSourceDataAtCell;
1013
+ /** @type {?} */
1014
+ HotTableComponent.prototype.afterTrimRow;
1015
+ /** @type {?} */
1016
+ HotTableComponent.prototype.afterUndo;
1017
+ /** @type {?} */
1018
+ HotTableComponent.prototype.afterUndoStackChange;
1019
+ /** @type {?} */
1020
+ HotTableComponent.prototype.afterUnhideColumns;
1021
+ /** @type {?} */
1022
+ HotTableComponent.prototype.afterUnhideRows;
1023
+ /** @type {?} */
1024
+ HotTableComponent.prototype.afterUnlisten;
1025
+ /** @type {?} */
1026
+ HotTableComponent.prototype.afterUnmergeCells;
1027
+ /** @type {?} */
1028
+ HotTableComponent.prototype.afterUntrimRow;
1029
+ /** @type {?} */
1030
+ HotTableComponent.prototype.afterUpdateSettings;
1031
+ /** @type {?} */
1032
+ HotTableComponent.prototype.afterValidate;
1033
+ /** @type {?} */
1034
+ HotTableComponent.prototype.afterViewportColumnCalculatorOverride;
1035
+ /** @type {?} */
1036
+ HotTableComponent.prototype.afterViewportRowCalculatorOverride;
1037
+ /** @type {?} */
1038
+ HotTableComponent.prototype.afterViewRender;
1039
+ /** @type {?} */
1040
+ HotTableComponent.prototype.beforeAddChild;
1041
+ /** @type {?} */
1042
+ HotTableComponent.prototype.beforeAutofill;
1043
+ /** @type {?} */
1044
+ HotTableComponent.prototype.beforeAutofillInsidePopulate;
1045
+ /** @type {?} */
1046
+ HotTableComponent.prototype.beforeCellAlignment;
1047
+ /** @type {?} */
1048
+ HotTableComponent.prototype.beforeChange;
1049
+ /** @type {?} */
1050
+ HotTableComponent.prototype.beforeChangeRender;
1051
+ /** @type {?} */
1052
+ HotTableComponent.prototype.beforeColumnCollapse;
1053
+ /** @type {?} */
1054
+ HotTableComponent.prototype.beforeColumnExpand;
1055
+ /** @type {?} */
1056
+ HotTableComponent.prototype.beforeColumnMove;
1057
+ /** @type {?} */
1058
+ HotTableComponent.prototype.beforeColumnResize;
1059
+ /** @type {?} */
1060
+ HotTableComponent.prototype.beforeColumnSort;
1061
+ /** @type {?} */
1062
+ HotTableComponent.prototype.beforeContextMenuSetItems;
1063
+ /** @type {?} */
1064
+ HotTableComponent.prototype.beforeContextMenuShow;
1065
+ /** @type {?} */
1066
+ HotTableComponent.prototype.beforeCopy;
1067
+ /** @type {?} */
1068
+ HotTableComponent.prototype.beforeCreateCol;
1069
+ /** @type {?} */
1070
+ HotTableComponent.prototype.beforeCreateRow;
1071
+ /** @type {?} */
1072
+ HotTableComponent.prototype.beforeCut;
1073
+ /** @type {?} */
1074
+ HotTableComponent.prototype.beforeDetachChild;
1075
+ /** @type {?} */
1076
+ HotTableComponent.prototype.beforeDrawBorders;
1077
+ /** @type {?} */
1078
+ HotTableComponent.prototype.beforeDropdownMenuSetItems;
1079
+ /** @type {?} */
1080
+ HotTableComponent.prototype.beforeDropdownMenuShow;
1081
+ /** @type {?} */
1082
+ HotTableComponent.prototype.beforeFilter;
1083
+ /** @type {?} */
1084
+ HotTableComponent.prototype.beforeGetCellMeta;
1085
+ /** @type {?} */
1086
+ HotTableComponent.prototype.beforeHideColumns;
1087
+ /** @type {?} */
1088
+ HotTableComponent.prototype.beforeHideRows;
1089
+ /** @type {?} */
1090
+ HotTableComponent.prototype.beforeInit;
1091
+ /** @type {?} */
1092
+ HotTableComponent.prototype.beforeInitWalkontable;
1093
+ /** @type {?} */
1094
+ HotTableComponent.prototype.beforeKeyDown;
1095
+ /** @type {?} */
1096
+ HotTableComponent.prototype.beforeLanguageChange;
1097
+ /** @type {?} */
1098
+ HotTableComponent.prototype.beforeLoadData;
1099
+ /** @type {?} */
1100
+ HotTableComponent.prototype.beforeMergeCells;
1101
+ /** @type {?} */
1102
+ HotTableComponent.prototype.beforeOnCellContextMenu;
1103
+ /** @type {?} */
1104
+ HotTableComponent.prototype.beforeOnCellMouseDown;
1105
+ /** @type {?} */
1106
+ HotTableComponent.prototype.beforeOnCellMouseOut;
1107
+ /** @type {?} */
1108
+ HotTableComponent.prototype.beforeOnCellMouseOver;
1109
+ /** @type {?} */
1110
+ HotTableComponent.prototype.beforeOnCellMouseUp;
1111
+ /** @type {?} */
1112
+ HotTableComponent.prototype.beforePaste;
1113
+ /** @type {?} */
1114
+ HotTableComponent.prototype.beforeRedo;
1115
+ /** @type {?} */
1116
+ HotTableComponent.prototype.beforeRedoStackChange;
1117
+ /** @type {?} */
1118
+ HotTableComponent.prototype.beforeRefreshDimensions;
1119
+ /** @type {?} */
1120
+ HotTableComponent.prototype.beforeRemoveCellClassNames;
1121
+ /** @type {?} */
1122
+ HotTableComponent.prototype.beforeRemoveCellMeta;
1123
+ /** @type {?} */
1124
+ HotTableComponent.prototype.beforeRemoveCol;
1125
+ /** @type {?} */
1126
+ HotTableComponent.prototype.beforeRemoveRow;
1127
+ /** @type {?} */
1128
+ HotTableComponent.prototype.beforeRender;
1129
+ /** @type {?} */
1130
+ HotTableComponent.prototype.beforeRenderer;
1131
+ /** @type {?} */
1132
+ HotTableComponent.prototype.beforeRowMove;
1133
+ /** @type {?} */
1134
+ HotTableComponent.prototype.beforeRowResize;
1135
+ /** @type {?} */
1136
+ HotTableComponent.prototype.beforeSetCellMeta;
1137
+ /** @type {?} */
1138
+ HotTableComponent.prototype.beforeSetRangeEnd;
1139
+ /** @type {?} */
1140
+ HotTableComponent.prototype.beforeSetRangeStart;
1141
+ /** @type {?} */
1142
+ HotTableComponent.prototype.beforeSetRangeStartOnly;
1143
+ /** @type {?} */
1144
+ HotTableComponent.prototype.beforeStretchingColumnWidth;
1145
+ /** @type {?} */
1146
+ HotTableComponent.prototype.beforeTouchScroll;
1147
+ /** @type {?} */
1148
+ HotTableComponent.prototype.beforeTrimRow;
1149
+ /** @type {?} */
1150
+ HotTableComponent.prototype.beforeUndo;
1151
+ /** @type {?} */
1152
+ HotTableComponent.prototype.beforeUndoStackChange;
1153
+ /** @type {?} */
1154
+ HotTableComponent.prototype.beforeUnhideColumns;
1155
+ /** @type {?} */
1156
+ HotTableComponent.prototype.beforeUnhideRows;
1157
+ /** @type {?} */
1158
+ HotTableComponent.prototype.beforeUnmergeCells;
1159
+ /** @type {?} */
1160
+ HotTableComponent.prototype.beforeUntrimRow;
1161
+ /** @type {?} */
1162
+ HotTableComponent.prototype.beforeValidate;
1163
+ /** @type {?} */
1164
+ HotTableComponent.prototype.beforeValueRender;
1165
+ /** @type {?} */
1166
+ HotTableComponent.prototype.beforeViewRender;
1167
+ /** @type {?} */
1168
+ HotTableComponent.prototype.construct;
1169
+ /** @type {?} */
1170
+ HotTableComponent.prototype.init;
1171
+ /** @type {?} */
1172
+ HotTableComponent.prototype.modifyAutoColumnSizeSeed;
1173
+ /** @type {?} */
1174
+ HotTableComponent.prototype.modifyAutofillRange;
1175
+ /** @type {?} */
1176
+ HotTableComponent.prototype.modifyColHeader;
1177
+ /** @type {?} */
1178
+ HotTableComponent.prototype.modifyColumnHeaderHeight;
1179
+ /** @type {?} */
1180
+ HotTableComponent.prototype.modifyColWidth;
1181
+ /** @type {?} */
1182
+ HotTableComponent.prototype.modifyCopyableRange;
1183
+ /** @type {?} */
1184
+ HotTableComponent.prototype.modifyData;
1185
+ /** @type {?} */
1186
+ HotTableComponent.prototype.modifyGetCellCoords;
1187
+ /** @type {?} */
1188
+ HotTableComponent.prototype.modifyRowData;
1189
+ /** @type {?} */
1190
+ HotTableComponent.prototype.modifyRowHeader;
1191
+ /** @type {?} */
1192
+ HotTableComponent.prototype.modifyRowHeaderWidth;
1193
+ /** @type {?} */
1194
+ HotTableComponent.prototype.modifyRowHeight;
1195
+ /** @type {?} */
1196
+ HotTableComponent.prototype.modifySourceData;
1197
+ /** @type {?} */
1198
+ HotTableComponent.prototype.modifyTransformEnd;
1199
+ /** @type {?} */
1200
+ HotTableComponent.prototype.modifyTransformStart;
1201
+ /** @type {?} */
1202
+ HotTableComponent.prototype.persistentStateLoad;
1203
+ /** @type {?} */
1204
+ HotTableComponent.prototype.persistentStateReset;
1205
+ /** @type {?} */
1206
+ HotTableComponent.prototype.persistentStateSave;
1207
+ /**
1208
+ * @type {?}
1209
+ * @private
1210
+ */
1211
+ HotTableComponent.prototype._ngZone;
1212
+ /**
1213
+ * @type {?}
1214
+ * @private
1215
+ */
1216
+ HotTableComponent.prototype._hotTableRegisterer;
1217
+ /**
1218
+ * @type {?}
1219
+ * @private
1220
+ */
1221
+ HotTableComponent.prototype._hotSettingsResolver;
1222
+ }
1223
+
1224
+ /**
1225
+ * @fileoverview added by tsickle
1226
+ * Generated from: lib/hot-column.component.ts
1227
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1228
+ */
1229
+ class HotColumnComponent {
1230
+ /**
1231
+ * @param {?} parentComponent
1232
+ */
1233
+ constructor(parentComponent) {
1234
+ this.parentComponent = parentComponent;
1235
+ this.firstRun = true;
1236
+ }
1237
+ /**
1238
+ * @return {?}
1239
+ */
1240
+ ngOnInit() {
1241
+ this.firstRun = false;
1242
+ this.parentComponent.addColumn(this);
1243
+ }
1244
+ /**
1245
+ * @return {?}
1246
+ */
1247
+ ngOnChanges() {
1248
+ if (this.firstRun) {
1249
+ return;
1250
+ }
1251
+ this.parentComponent.onAfterColumnsChange();
1252
+ }
1253
+ /**
1254
+ * @return {?}
1255
+ */
1256
+ ngOnDestroy() {
1257
+ this.parentComponent.removeColumn(this);
1258
+ }
1259
+ }
1260
+ HotColumnComponent.decorators = [
1261
+ { type: Component, args: [{
1262
+ selector: 'hot-column',
1263
+ template: ''
1264
+ }] }
1265
+ ];
1266
+ /** @nocollapse */
1267
+ HotColumnComponent.ctorParameters = () => [
1268
+ { type: HotTableComponent }
1269
+ ];
1270
+ HotColumnComponent.propDecorators = {
1271
+ allowEmpty: [{ type: Input }],
1272
+ allowHtml: [{ type: Input }],
1273
+ allowInvalid: [{ type: Input }],
1274
+ checkedTemplate: [{ type: Input }],
1275
+ className: [{ type: Input }],
1276
+ columnSorting: [{ type: Input }],
1277
+ colWidths: [{ type: Input }],
1278
+ commentedCellClassName: [{ type: Input }],
1279
+ copyable: [{ type: Input }],
1280
+ correctFormat: [{ type: Input }],
1281
+ data: [{ type: Input }],
1282
+ dateFormat: [{ type: Input }],
1283
+ defaultDate: [{ type: Input }],
1284
+ editor: [{ type: Input }],
1285
+ filteringCaseSensitive: [{ type: Input }],
1286
+ invalidCellClassName: [{ type: Input }],
1287
+ label: [{ type: Input }],
1288
+ language: [{ type: Input }],
1289
+ noWordWrapClassName: [{ type: Input }],
1290
+ numericFormat: [{ type: Input }],
1291
+ placeholder: [{ type: Input }],
1292
+ placeholderCellClassName: [{ type: Input }],
1293
+ readOnly: [{ type: Input }],
1294
+ readOnlyCellClassName: [{ type: Input }],
1295
+ renderer: [{ type: Input }],
1296
+ selectOptions: [{ type: Input }],
1297
+ skipColumnOnPaste: [{ type: Input }],
1298
+ sortByRelevance: [{ type: Input }],
1299
+ source: [{ type: Input }],
1300
+ strict: [{ type: Input }],
1301
+ title: [{ type: Input }],
1302
+ trimDropdown: [{ type: Input }],
1303
+ type: [{ type: Input }],
1304
+ uncheckedTemplate: [{ type: Input }],
1305
+ validator: [{ type: Input }],
1306
+ visibleRows: [{ type: Input }],
1307
+ width: [{ type: Input }],
1308
+ wordWrap: [{ type: Input }]
1309
+ };
1310
+ if (false) {
1311
+ /**
1312
+ * @type {?}
1313
+ * @private
1314
+ */
1315
+ HotColumnComponent.prototype.firstRun;
1316
+ /** @type {?} */
1317
+ HotColumnComponent.prototype.allowEmpty;
1318
+ /** @type {?} */
1319
+ HotColumnComponent.prototype.allowHtml;
1320
+ /** @type {?} */
1321
+ HotColumnComponent.prototype.allowInvalid;
1322
+ /** @type {?} */
1323
+ HotColumnComponent.prototype.checkedTemplate;
1324
+ /** @type {?} */
1325
+ HotColumnComponent.prototype.className;
1326
+ /** @type {?} */
1327
+ HotColumnComponent.prototype.columnSorting;
1328
+ /** @type {?} */
1329
+ HotColumnComponent.prototype.colWidths;
1330
+ /** @type {?} */
1331
+ HotColumnComponent.prototype.commentedCellClassName;
1332
+ /** @type {?} */
1333
+ HotColumnComponent.prototype.copyable;
1334
+ /** @type {?} */
1335
+ HotColumnComponent.prototype.correctFormat;
1336
+ /** @type {?} */
1337
+ HotColumnComponent.prototype.data;
1338
+ /** @type {?} */
1339
+ HotColumnComponent.prototype.dateFormat;
1340
+ /** @type {?} */
1341
+ HotColumnComponent.prototype.defaultDate;
1342
+ /** @type {?} */
1343
+ HotColumnComponent.prototype.editor;
1344
+ /** @type {?} */
1345
+ HotColumnComponent.prototype.filteringCaseSensitive;
1346
+ /** @type {?} */
1347
+ HotColumnComponent.prototype.invalidCellClassName;
1348
+ /** @type {?} */
1349
+ HotColumnComponent.prototype.label;
1350
+ /** @type {?} */
1351
+ HotColumnComponent.prototype.language;
1352
+ /** @type {?} */
1353
+ HotColumnComponent.prototype.noWordWrapClassName;
1354
+ /** @type {?} */
1355
+ HotColumnComponent.prototype.numericFormat;
1356
+ /** @type {?} */
1357
+ HotColumnComponent.prototype.placeholder;
1358
+ /** @type {?} */
1359
+ HotColumnComponent.prototype.placeholderCellClassName;
1360
+ /** @type {?} */
1361
+ HotColumnComponent.prototype.readOnly;
1362
+ /** @type {?} */
1363
+ HotColumnComponent.prototype.readOnlyCellClassName;
1364
+ /** @type {?} */
1365
+ HotColumnComponent.prototype.renderer;
1366
+ /** @type {?} */
1367
+ HotColumnComponent.prototype.selectOptions;
1368
+ /** @type {?} */
1369
+ HotColumnComponent.prototype.skipColumnOnPaste;
1370
+ /** @type {?} */
1371
+ HotColumnComponent.prototype.sortByRelevance;
1372
+ /** @type {?} */
1373
+ HotColumnComponent.prototype.source;
1374
+ /** @type {?} */
1375
+ HotColumnComponent.prototype.strict;
1376
+ /** @type {?} */
1377
+ HotColumnComponent.prototype.title;
1378
+ /** @type {?} */
1379
+ HotColumnComponent.prototype.trimDropdown;
1380
+ /** @type {?} */
1381
+ HotColumnComponent.prototype.type;
1382
+ /** @type {?} */
1383
+ HotColumnComponent.prototype.uncheckedTemplate;
1384
+ /** @type {?} */
1385
+ HotColumnComponent.prototype.validator;
1386
+ /** @type {?} */
1387
+ HotColumnComponent.prototype.visibleRows;
1388
+ /** @type {?} */
1389
+ HotColumnComponent.prototype.width;
1390
+ /** @type {?} */
1391
+ HotColumnComponent.prototype.wordWrap;
1392
+ /**
1393
+ * @type {?}
1394
+ * @private
1395
+ */
1396
+ HotColumnComponent.prototype.parentComponent;
1397
+ }
1398
+
1399
+ /**
1400
+ * @fileoverview added by tsickle
1401
+ * Generated from: lib/hot-table.module.ts
1402
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1403
+ */
1404
+ class HotTableModule {
1405
+ /**
1406
+ * @return {?}
1407
+ */
1408
+ static forRoot() {
1409
+ return {
1410
+ ngModule: HotTableModule,
1411
+ providers: [HotTableRegisterer],
1412
+ };
1413
+ }
1414
+ }
1415
+ HotTableModule.version = '0.0.0-next-9ec04ce-20221121';
1416
+ HotTableModule.decorators = [
1417
+ { type: NgModule, args: [{
1418
+ declarations: [
1419
+ HotTableComponent,
1420
+ HotColumnComponent,
1421
+ ],
1422
+ exports: [
1423
+ HotTableComponent,
1424
+ HotColumnComponent,
1425
+ ]
1426
+ },] }
1427
+ ];
1428
+ if (false) {
1429
+ /** @type {?} */
1430
+ HotTableModule.version;
1431
+ }
1432
+
1433
+ /**
1434
+ * @fileoverview added by tsickle
1435
+ * Generated from: public_api.ts
1436
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1437
+ */
1438
+
1439
+ /**
1440
+ * @fileoverview added by tsickle
1441
+ * Generated from: handsontable-angular.ts
1442
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1443
+ */
1444
+
1445
+ export { HOT_DESTROYED_WARNING, HotColumnComponent, HotSettingsResolver, HotTableComponent, HotTableModule, HotTableRegisterer };
1446
+ //# sourceMappingURL=handsontable-angular.js.map