@handsontable/angular 12.4.0 → 13.0.0-next-4dc1066-20230615

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