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