@@ -66,7 +66,6 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
6666 @Input ( ) data : Handsontable . GridSettings [ 'data' ] ;
6767 @Input ( ) dataSchema : Handsontable . GridSettings [ 'dataSchema' ] ;
6868 @Input ( ) dateFormat : Handsontable . GridSettings [ 'dateFormat' ] ;
69- @Input ( ) debug : Handsontable . GridSettings [ 'debug' ] ;
7069 @Input ( ) defaultDate : Handsontable . GridSettings [ 'defaultDate' ] ;
7170 @Input ( ) disableVisualSelection : Handsontable . GridSettings [ 'disableVisualSelection' ] ;
7271 @Input ( ) dragToScroll : Handsontable . GridSettings [ 'dragToScroll' ] ;
@@ -83,7 +82,6 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
8382 @Input ( ) fixedRowsTop : Handsontable . GridSettings [ 'fixedRowsTop' ] ;
8483 @Input ( ) formulas : Handsontable . GridSettings [ 'formulas' ] ;
8584 @Input ( ) fragmentSelection : Handsontable . GridSettings [ 'fragmentSelection' ] ;
86- @Input ( ) ganttChart : Handsontable . GridSettings [ 'ganttChart' ] ;
8785 @Input ( ) headerTooltips : Handsontable . GridSettings [ 'headerTooltips' ] ;
8886 @Input ( ) height : Handsontable . GridSettings [ 'height' ] ;
8987 @Input ( ) hiddenColumns : Handsontable . GridSettings [ 'hiddenColumns' ] ;
@@ -116,6 +114,7 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
116114 @Input ( ) placeholder : Handsontable . GridSettings [ 'placeholder' ] ;
117115 @Input ( ) placeholderCellClassName : Handsontable . GridSettings [ 'placeholderCellClassName' ] ;
118116 @Input ( ) preventOverflow : Handsontable . GridSettings [ 'preventOverflow' ] ;
117+ @Input ( ) preventWheel : Handsontable . GridSettings [ 'preventWheel' ] ;
119118 @Input ( ) readOnly : Handsontable . GridSettings [ 'readOnly' ] ;
120119 @Input ( ) readOnlyCellClassName : Handsontable . GridSettings [ 'readOnlyCellClassName' ] ;
121120 @Input ( ) renderAllRows : Handsontable . GridSettings [ 'renderAllRows' ] ;
@@ -152,10 +151,13 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
152151
153152 // handsontable hooks
154153 @Input ( ) afterAddChild : Handsontable . GridSettings [ 'afterAddChild' ] ;
154+ @Input ( ) afterAutofill : Handsontable . GridSettings [ 'afterAutofill' ] ;
155155 @Input ( ) afterBeginEditing : Handsontable . GridSettings [ 'afterBeginEditing' ] ;
156156 @Input ( ) afterCellMetaReset : Handsontable . GridSettings [ 'afterCellMetaReset' ] ;
157157 @Input ( ) afterChange : Handsontable . GridSettings [ 'afterChange' ] ;
158158 @Input ( ) afterChangesObserved : Handsontable . GridSettings [ 'afterChangesObserved' ] ;
159+ @Input ( ) afterColumnCollapse : Handsontable . GridSettings [ 'afterColumnCollapse' ] ;
160+ @Input ( ) afterColumnExpand : Handsontable . GridSettings [ 'afterColumnExpand' ] ;
159161 @Input ( ) afterColumnMove : Handsontable . GridSettings [ 'afterColumnMove' ] ;
160162 @Input ( ) afterColumnResize : Handsontable . GridSettings [ 'afterColumnResize' ] ;
161163 @Input ( ) afterColumnSort : Handsontable . GridSettings [ 'afterColumnSort' ] ;
@@ -218,6 +220,7 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
218220 @Input ( ) afterSetCellMeta : Handsontable . GridSettings [ 'afterSetCellMeta' ] ;
219221 @Input ( ) afterSetDataAtCell : Handsontable . GridSettings [ 'afterSetDataAtCell' ] ;
220222 @Input ( ) afterSetDataAtRowProp : Handsontable . GridSettings [ 'afterSetDataAtRowProp' ] ;
223+ @Input ( ) afterSetSourceDataAtCell : Handsontable . GridSettings [ 'afterSetSourceDataAtCell' ] ;
221224 @Input ( ) afterTrimRow : Handsontable . GridSettings [ 'afterTrimRow' ] ;
222225 @Input ( ) afterUndo : Handsontable . GridSettings [ 'afterUndo' ] ;
223226 @Input ( ) afterUnhideColumns : Handsontable . GridSettings [ 'afterUnhideColumns' ] ;
@@ -235,6 +238,8 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
235238 @Input ( ) beforeCellAlignment : Handsontable . GridSettings [ 'beforeCellAlignment' ] ;
236239 @Input ( ) beforeChange : Handsontable . GridSettings [ 'beforeChange' ] ;
237240 @Input ( ) beforeChangeRender : Handsontable . GridSettings [ 'beforeChangeRender' ] ;
241+ @Input ( ) beforeColumnCollapse : Handsontable . GridSettings [ 'beforeColumnCollapse' ] ;
242+ @Input ( ) beforeColumnExpand : Handsontable . GridSettings [ 'beforeColumnExpand' ] ;
238243 @Input ( ) beforeColumnMove : Handsontable . GridSettings [ 'beforeColumnMove' ] ;
239244 @Input ( ) beforeColumnResize : Handsontable . GridSettings [ 'beforeColumnResize' ] ;
240245 @Input ( ) beforeColumnSort : Handsontable . GridSettings [ 'beforeColumnSort' ] ;
@@ -256,6 +261,7 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
256261 @Input ( ) beforeInitWalkontable : Handsontable . GridSettings [ 'beforeInitWalkontable' ] ;
257262 @Input ( ) beforeKeyDown : Handsontable . GridSettings [ 'beforeKeyDown' ] ;
258263 @Input ( ) beforeLanguageChange : Handsontable . GridSettings [ 'beforeLanguageChange' ] ;
264+ @Input ( ) beforeLoadData : Handsontable . GridSettings [ 'beforeLoadData' ] ;
259265 @Input ( ) beforeMergeCells : Handsontable . GridSettings [ 'beforeMergeCells' ] ;
260266 @Input ( ) beforeOnCellContextMenu : Handsontable . GridSettings [ 'beforeOnCellContextMenu' ] ;
261267 @Input ( ) beforeOnCellMouseDown : Handsontable . GridSettings [ 'beforeOnCellMouseDown' ] ;
@@ -273,6 +279,7 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
273279 @Input ( ) beforeRenderer : Handsontable . GridSettings [ 'beforeRenderer' ] ;
274280 @Input ( ) beforeRowMove : Handsontable . GridSettings [ 'beforeRowMove' ] ;
275281 @Input ( ) beforeRowResize : Handsontable . GridSettings [ 'beforeRowResize' ] ;
282+ @Input ( ) beforeSetCellMeta : Handsontable . GridSettings [ 'beforeSetCellMeta' ] ;
276283 @Input ( ) beforeSetRangeEnd : Handsontable . GridSettings [ 'beforeSetRangeEnd' ] ;
277284 @Input ( ) beforeSetRangeStart : Handsontable . GridSettings [ 'beforeSetRangeStart' ] ;
278285 @Input ( ) beforeSetRangeStartOnly : Handsontable . GridSettings [ 'beforeSetRangeStartOnly' ] ;
@@ -287,30 +294,24 @@ export class HotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
287294 @Input ( ) beforeValidate : Handsontable . GridSettings [ 'beforeValidate' ] ;
288295 @Input ( ) beforeValueRender : Handsontable . GridSettings [ 'beforeValueRender' ] ;
289296 @Input ( ) construct : Handsontable . GridSettings [ 'construct' ] ;
290- @Input ( ) hiddenColumn : Handsontable . GridSettings [ 'hiddenColumn' ] ;
291- @Input ( ) hiddenRow : Handsontable . GridSettings [ 'hiddenRow' ] ;
292297 @Input ( ) init : Handsontable . GridSettings [ 'init' ] ;
293298 @Input ( ) modifyAutofillRange : Handsontable . GridSettings [ 'modifyAutofillRange' ] ;
294- @Input ( ) modifyCol : Handsontable . GridSettings [ 'modifyCol' ] ;
295299 @Input ( ) modifyColHeader : Handsontable . GridSettings [ 'modifyColHeader' ] ;
296300 @Input ( ) modifyColumnHeaderHeight : Handsontable . GridSettings [ 'modifyColumnHeaderHeight' ] ;
297301 @Input ( ) modifyColWidth : Handsontable . GridSettings [ 'modifyColWidth' ] ;
298302 @Input ( ) modifyCopyableRange : Handsontable . GridSettings [ 'modifyCopyableRange' ] ;
299303 @Input ( ) modifyData : Handsontable . GridSettings [ 'modifyData' ] ;
300304 @Input ( ) modifyGetCellCoords : Handsontable . GridSettings [ 'modifyGetCellCoords' ] ;
301- @Input ( ) modifyRow : Handsontable . GridSettings [ 'modifyRow' ] ;
302305 @Input ( ) modifyRowData : Handsontable . GridSettings [ 'modifyRowData' ] ;
303306 @Input ( ) modifyRowHeader : Handsontable . GridSettings [ 'modifyRowHeader' ] ;
304307 @Input ( ) modifyRowHeaderWidth : Handsontable . GridSettings [ 'modifyRowHeaderWidth' ] ;
305308 @Input ( ) modifyRowHeight : Handsontable . GridSettings [ 'modifyRowHeight' ] ;
309+ @Input ( ) modifySourceData : Handsontable . GridSettings [ 'modifySourceData' ] ;
306310 @Input ( ) modifyTransformEnd : Handsontable . GridSettings [ 'modifyTransformEnd' ] ;
307311 @Input ( ) modifyTransformStart : Handsontable . GridSettings [ 'modifyTransformStart' ] ;
308312 @Input ( ) persistentStateLoad : Handsontable . GridSettings [ 'persistentStateLoad' ] ;
309313 @Input ( ) persistentStateReset : Handsontable . GridSettings [ 'persistentStateReset' ] ;
310314 @Input ( ) persistentStateSave : Handsontable . GridSettings [ 'persistentStateSave' ] ;
311- @Input ( ) skipLengthCache : Handsontable . GridSettings [ 'skipLengthCache' ] ;
312- @Input ( ) unmodifyCol : Handsontable . GridSettings [ 'unmodifyCol' ] ;
313- @Input ( ) unmodifyRow : Handsontable . GridSettings [ 'unmodifyRow' ] ;
314315
315316 constructor (
316317 private _ngZone : NgZone ,
0 commit comments