handsontable 0.0.0-next-d9b3885-20250415 → 0.0.0-next-9410a76-20250416

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.

Potentially problematic release.


This version of handsontable might be problematic. Click here for more details.

Files changed (55) hide show
  1. package/base.js +2 -2
  2. package/base.mjs +2 -2
  3. package/core/hooks/constants.js +0 -258
  4. package/core/hooks/constants.mjs +0 -258
  5. package/core.js +0 -39
  6. package/core.mjs +0 -39
  7. package/dataMap/metaManager/metaSchema.js +0 -27
  8. package/dataMap/metaManager/metaSchema.mjs +0 -27
  9. package/dist/handsontable.css +2 -2
  10. package/dist/handsontable.full.css +2 -2
  11. package/dist/handsontable.full.js +5 -943
  12. package/dist/handsontable.full.min.css +2 -2
  13. package/dist/handsontable.full.min.js +4 -4
  14. package/dist/handsontable.js +5 -943
  15. package/dist/handsontable.min.css +2 -2
  16. package/dist/handsontable.min.js +4 -4
  17. package/helpers/mixed.js +1 -1
  18. package/helpers/mixed.mjs +1 -1
  19. package/package.json +1 -1
  20. package/plugins/autoColumnSize/autoColumnSize.js +0 -47
  21. package/plugins/autoColumnSize/autoColumnSize.mjs +0 -47
  22. package/plugins/autoRowSize/autoRowSize.js +0 -45
  23. package/plugins/autoRowSize/autoRowSize.mjs +0 -45
  24. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +0 -13
  25. package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +0 -13
  26. package/plugins/collapsibleColumns/collapsibleColumns.js +0 -31
  27. package/plugins/collapsibleColumns/collapsibleColumns.mjs +0 -31
  28. package/plugins/columnSummary/columnSummary.js +0 -33
  29. package/plugins/columnSummary/columnSummary.mjs +0 -33
  30. package/plugins/comments/comments.js +0 -53
  31. package/plugins/comments/comments.mjs +0 -53
  32. package/plugins/dropdownMenu/dropdownMenu.js +0 -15
  33. package/plugins/dropdownMenu/dropdownMenu.mjs +0 -15
  34. package/plugins/exportFile/exportFile.js +0 -58
  35. package/plugins/exportFile/exportFile.mjs +0 -58
  36. package/plugins/filters/filters.js +0 -74
  37. package/plugins/filters/filters.mjs +0 -74
  38. package/plugins/hiddenColumns/hiddenColumns.js +0 -64
  39. package/plugins/hiddenColumns/hiddenColumns.mjs +0 -64
  40. package/plugins/hiddenRows/hiddenRows.js +0 -64
  41. package/plugins/hiddenRows/hiddenRows.mjs +0 -64
  42. package/plugins/mergeCells/mergeCells.js +0 -18
  43. package/plugins/mergeCells/mergeCells.mjs +0 -18
  44. package/plugins/nestedHeaders/nestedHeaders.js +0 -25
  45. package/plugins/nestedHeaders/nestedHeaders.mjs +0 -25
  46. package/plugins/stretchColumns/stretchColumns.js +0 -13
  47. package/plugins/stretchColumns/stretchColumns.mjs +0 -13
  48. package/plugins/trimRows/trimRows.js +0 -61
  49. package/plugins/trimRows/trimRows.mjs +0 -61
  50. package/styles/handsontable.css +2 -2
  51. package/styles/handsontable.min.css +2 -2
  52. package/styles/ht-theme-horizon.css +2 -2
  53. package/styles/ht-theme-horizon.min.css +2 -2
  54. package/styles/ht-theme-main.css +2 -2
  55. package/styles/ht-theme-main.min.css +2 -2
package/base.js CHANGED
@@ -45,8 +45,8 @@ Handsontable.hooks = _hooks.Hooks.getSingleton();
45
45
  Handsontable.CellCoords = _src.CellCoords;
46
46
  Handsontable.CellRange = _src.CellRange;
47
47
  Handsontable.packageName = 'handsontable';
48
- Handsontable.buildDate = "15/04/2025 10:06:39";
49
- Handsontable.version = "0.0.0-next-d9b3885-20250415";
48
+ Handsontable.buildDate = "16/04/2025 06:18:04";
49
+ Handsontable.version = "0.0.0-next-9410a76-20250416";
50
50
  Handsontable.languages = {
51
51
  dictionaryKeys: _registry.dictionaryKeys,
52
52
  getLanguageDictionary: _registry.getLanguageDictionary,
package/base.mjs CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
35
35
  Handsontable.CellCoords = CellCoords;
36
36
  Handsontable.CellRange = CellRange;
37
37
  Handsontable.packageName = 'handsontable';
38
- Handsontable.buildDate = "15/04/2025 10:06:44";
39
- Handsontable.version = "0.0.0-next-d9b3885-20250415";
38
+ Handsontable.buildDate = "16/04/2025 06:18:10";
39
+ Handsontable.version = "0.0.0-next-9410a76-20250416";
40
40
  Handsontable.languages = {
41
41
  dictionaryKeys,
42
42
  getLanguageDictionary,
@@ -49,22 +49,6 @@ exports.__esModule = true;
49
49
  * />
50
50
  * :::
51
51
  *
52
- * ::: only-for angular
53
- * ```ts
54
- * settings = {
55
- * afterChange: (changes, source) => {
56
- * changes?.forEach(([row, prop, oldValue, newValue]) => {
57
- * // Some logic...
58
- * });
59
- * },
60
- * };
61
- * ```
62
- *
63
- * ```html
64
- * <hot-table [settings]="settings" />
65
- * ```
66
- * :::
67
- *
68
52
  * ::: only-for javascript
69
53
  * ```js
70
54
  * // using events as plugin hooks
@@ -169,22 +153,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
169
153
  * />
170
154
  * ```
171
155
  * :::
172
- *
173
- * ::: only-for angular
174
- * ```ts
175
- * settings = {
176
- * afterChange: (changes, source) => {
177
- * changes?.forEach(([row, prop, oldValue, newValue]) => {
178
- * // Some logic...
179
- * });
180
- * },
181
- * };
182
- * ```
183
- *
184
- * ```html
185
- * <hot-table [settings]="settings"></hot-table>
186
- * ```
187
- * :::
188
156
  */
189
157
  'afterChange',
190
158
  /**
@@ -288,21 +256,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
288
256
  * />
289
257
  * ```
290
258
  * :::
291
- *
292
- * ::: only-for angular
293
- * ```ts
294
- * settings = {
295
- * beforeCreateCol: (data, coords) => {
296
- * // Return `false` to cancel column inserting.
297
- * return false;
298
- * },
299
- * };
300
- * ```
301
- *
302
- * ```html
303
- * <hot-table [settings]="settings"></hot-table>
304
- * ```
305
- * :::
306
259
  */
307
260
  'beforeCreateCol',
308
261
  /**
@@ -686,31 +639,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
686
639
  * }}
687
640
  * />
688
641
  * ```
689
- * :::
690
- *
691
- * ::: only-for angular
692
- * ```ts
693
- * settings = {
694
- * afterSelection: (
695
- * row,
696
- * column,
697
- * row2,
698
- * column2,
699
- * preventScrolling,
700
- * selectionLayerLevel
701
- * ) => {
702
- * // If set to `false` (default): when cell selection is outside the viewport,
703
- * // Handsontable scrolls the viewport to cell selection's end corner.
704
- * // If set to `true`: when cell selection is outside the viewport,
705
- * // Handsontable doesn't scroll to cell selection's end corner.
706
- * preventScrolling.value = true;
707
- * },
708
- * };
709
- * ```
710
- *
711
- * ```html
712
- * <hot-table [settings]="settings"></hot-table>
713
- * ```
714
642
  * :::
715
643
  */
716
644
  'afterSelection',
@@ -750,28 +678,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
750
678
  * />
751
679
  * ```
752
680
  * :::
753
- *
754
- * ::: only-for angular
755
- * ```ts
756
- * settings = {
757
- * afterSelectionByProp: (
758
- * row,
759
- * column,
760
- * row2,
761
- * column2,
762
- * preventScrolling,
763
- * selectionLayerLevel
764
- * ) => {
765
- * // Setting if prevent scrolling after selection
766
- * preventScrolling.value = true;
767
- * },
768
- * };
769
- * ```
770
- *
771
- * ```html
772
- * <hot-table [settings]="settings"></hot-table>
773
- * ```
774
- * :::
775
681
  */
776
682
  'afterSelectionByProp',
777
683
  /**
@@ -836,24 +742,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
836
742
  * />
837
743
  * ```
838
744
  * :::
839
- *
840
- * ::: only-for angular
841
- * ```ts
842
- * settings = {
843
- * afterSelectionFocusSet: (row, column, preventScrolling) => {
844
- * // If set to `false` (default): when focused cell selection is outside the viewport,
845
- * // Handsontable scrolls the viewport to that cell.
846
- * // If set to `true`: when focused cell selection is outside the viewport,
847
- * // Handsontable doesn't scroll the viewport.
848
- * preventScrolling.value = true;
849
- * },
850
- * };
851
- * ```
852
- *
853
- * ```html
854
- * <hot-table [settings]="settings"></hot-table>
855
- * ```
856
- * :::
857
745
  */
858
746
  'afterSelectionFocusSet',
859
747
  /**
@@ -888,22 +776,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
888
776
  * />
889
777
  * ```
890
778
  * :::
891
- *
892
- * ::: only-for angular
893
- * ```ts
894
- * settings = {
895
- * beforeSelectColumns: (from, to, highlight) => {
896
- * // Extend the column selection by one column left and one column right.
897
- * from.col = Math.max(from.col - 1, 0);
898
- * to.col = Math.min(to.col + 1, this.countCols() - 1);
899
- * },
900
- * };
901
- * ```
902
- *
903
- * ```html
904
- * <hot-table [settings]="settings"></hot-table>
905
- * ```
906
- * :::
907
779
  */
908
780
  'beforeSelectColumns',
909
781
  /**
@@ -948,22 +820,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
948
820
  * />
949
821
  * ```
950
822
  * :::
951
- *
952
- * ::: only-for angular
953
- * ```ts
954
- * settings = {
955
- * beforeSelectRows: (from, to, highlight) => {
956
- * // Extend the row selection by one row up and one row down.
957
- * from.row = Math.max(from.row - 1, 0);
958
- * to.row = Math.min(to.row + 1, this.countRows() - 1);
959
- * },
960
- * };
961
- * ```
962
- *
963
- * ```html
964
- * <hot-table [settings]="settings"></hot-table>
965
- * ```
966
- * :::
967
823
  */
968
824
  'beforeSelectRows',
969
825
  /**
@@ -1184,42 +1040,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
1184
1040
  * />
1185
1041
  * ```
1186
1042
  * :::
1187
- * ::: only-for angular
1188
- *```ts
1189
- * // To alter a single change, overwrite the desired value with `changes[i][3]`
1190
- * settings1 = {
1191
- * beforeChange: (changes, source) => {
1192
- * // [[row, prop, oldVal, newVal], ...]
1193
- * changes[0][3] = 10;
1194
- * },
1195
- * };
1196
- *
1197
- * // To ignore a single change, set `changes[i]` to `null`
1198
- * // or remove `changes[i]` from the array, by using changes.splice(i, 1).
1199
- * settings2 = {
1200
- * beforeChange: (changes, source) => {
1201
- * // [[row, prop, oldVal, newVal], ...]
1202
- * changes[0] = null;
1203
- * },
1204
- * };
1205
- *
1206
- * // To ignore all changes, return `false`
1207
- * // or set the array's length to 0 (`changes.length = 0`)
1208
- * settings3 = {
1209
- * beforeChange: (changes, source) => {
1210
- * // [[row, prop, oldVal, newVal], ...]
1211
- * return false;
1212
- * },
1213
- * };
1214
- * ```
1215
- *
1216
- * ```html
1217
- * <hot-table [settings]="settings1"></hot-table>
1218
- * <hot-table [settings]="settings2"></hot-table>
1219
- * <hot-table [settings]="settings3"></hot-table>
1220
- * ```
1221
- *
1222
- * :::
1223
1043
  */
1224
1044
  'beforeChange',
1225
1045
  /**
@@ -1830,32 +1650,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
1830
1650
  * />
1831
1651
  * ```
1832
1652
  * :::
1833
- *
1834
- * ::: only-for angular
1835
- *```ts
1836
- * // To disregard a single row, remove it from the array using data.splice(i, 1).
1837
- * settings1 = {
1838
- * beforeCut: (data, coords) => {
1839
- * // data -> [[1, 2, 3], [4, 5, 6]]
1840
- * data.splice(0, 1);
1841
- * // data -> [[4, 5, 6]]
1842
- * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1843
- * },
1844
- * };
1845
- *
1846
- * // To cancel a cutting action, just return `false`.
1847
- * settings2 = {
1848
- * beforeCut: (data, coords) => {
1849
- * return false;
1850
- * },
1851
- * };
1852
- * ```
1853
- *
1854
- * ```html
1855
- * <hot-table [settings]="settings1"></hot-table>
1856
- * <hot-table [settings]="settings2"></hot-table>
1857
- * ```
1858
- * :::
1859
1653
  */
1860
1654
  'beforeCut',
1861
1655
  /**
@@ -1928,32 +1722,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
1928
1722
  * ...
1929
1723
  * ```
1930
1724
  * :::
1931
- *
1932
- * ::: only-for angular
1933
- * ```ts
1934
- * // To disregard a single row, remove it from the array using data.splice(i, 1).
1935
- * settings1 = {
1936
- * beforeCopy: (data, coords) => {
1937
- * // data -> [[1, 2, 3], [4, 5, 6]]
1938
- * data.splice(0, 1);
1939
- * // data -> [[4, 5, 6]]
1940
- * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1941
- * },
1942
- * };
1943
- *
1944
- * // To cancel copying, return false from the callback.
1945
- * settings2 = {
1946
- * beforeCopy: (data, coords) => {
1947
- * return false;
1948
- * },
1949
- * };
1950
- * ```
1951
- *
1952
- * ```html
1953
- * <hot-table [settings]="settings1"></hot-table>
1954
- * <hot-table [settings]="settings2"></hot-table>
1955
- * ```
1956
- * :::
1957
1725
  */
1958
1726
  'beforeCopy',
1959
1727
  /**
@@ -2016,32 +1784,6 @@ const REGISTERED_HOOKS = exports.REGISTERED_HOOKS = [/* eslint-disable jsdoc/req
2016
1784
  * />
2017
1785
  * ```
2018
1786
  * :::
2019
- *
2020
- * ::: only-for angular
2021
- * ```ts
2022
- * // To disregard a single row, remove it from the array using data.splice(i, 1).
2023
- * settings1 = {
2024
- * beforePaste: (data, coords) => {
2025
- * // data -> [[1, 2, 3], [4, 5, 6]]
2026
- * data.splice(0, 1);
2027
- * // data -> [[4, 5, 6]]
2028
- * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
2029
- * },
2030
- * };
2031
- *
2032
- * // To cancel pasting, return false from the callback.
2033
- * settings2 = {
2034
- * beforePaste: (data, coords) => {
2035
- * return false;
2036
- * },
2037
- * };
2038
- * ```
2039
- *
2040
- * ```html
2041
- * <hot-table [settings]="settings1"></hot-table>
2042
- * <hot-table [settings]="settings2"></hot-table>
2043
- * ```
2044
- * :::
2045
1787
  */
2046
1788
  'beforePaste',
2047
1789
  /**
@@ -46,22 +46,6 @@
46
46
  * />
47
47
  * :::
48
48
  *
49
- * ::: only-for angular
50
- * ```ts
51
- * settings = {
52
- * afterChange: (changes, source) => {
53
- * changes?.forEach(([row, prop, oldValue, newValue]) => {
54
- * // Some logic...
55
- * });
56
- * },
57
- * };
58
- * ```
59
- *
60
- * ```html
61
- * <hot-table [settings]="settings" />
62
- * ```
63
- * :::
64
- *
65
49
  * ::: only-for javascript
66
50
  * ```js
67
51
  * // using events as plugin hooks
@@ -166,22 +150,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
166
150
  * />
167
151
  * ```
168
152
  * :::
169
- *
170
- * ::: only-for angular
171
- * ```ts
172
- * settings = {
173
- * afterChange: (changes, source) => {
174
- * changes?.forEach(([row, prop, oldValue, newValue]) => {
175
- * // Some logic...
176
- * });
177
- * },
178
- * };
179
- * ```
180
- *
181
- * ```html
182
- * <hot-table [settings]="settings"></hot-table>
183
- * ```
184
- * :::
185
153
  */
186
154
  'afterChange',
187
155
  /**
@@ -285,21 +253,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
285
253
  * />
286
254
  * ```
287
255
  * :::
288
- *
289
- * ::: only-for angular
290
- * ```ts
291
- * settings = {
292
- * beforeCreateCol: (data, coords) => {
293
- * // Return `false` to cancel column inserting.
294
- * return false;
295
- * },
296
- * };
297
- * ```
298
- *
299
- * ```html
300
- * <hot-table [settings]="settings"></hot-table>
301
- * ```
302
- * :::
303
256
  */
304
257
  'beforeCreateCol',
305
258
  /**
@@ -683,31 +636,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
683
636
  * }}
684
637
  * />
685
638
  * ```
686
- * :::
687
- *
688
- * ::: only-for angular
689
- * ```ts
690
- * settings = {
691
- * afterSelection: (
692
- * row,
693
- * column,
694
- * row2,
695
- * column2,
696
- * preventScrolling,
697
- * selectionLayerLevel
698
- * ) => {
699
- * // If set to `false` (default): when cell selection is outside the viewport,
700
- * // Handsontable scrolls the viewport to cell selection's end corner.
701
- * // If set to `true`: when cell selection is outside the viewport,
702
- * // Handsontable doesn't scroll to cell selection's end corner.
703
- * preventScrolling.value = true;
704
- * },
705
- * };
706
- * ```
707
- *
708
- * ```html
709
- * <hot-table [settings]="settings"></hot-table>
710
- * ```
711
639
  * :::
712
640
  */
713
641
  'afterSelection',
@@ -747,28 +675,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
747
675
  * />
748
676
  * ```
749
677
  * :::
750
- *
751
- * ::: only-for angular
752
- * ```ts
753
- * settings = {
754
- * afterSelectionByProp: (
755
- * row,
756
- * column,
757
- * row2,
758
- * column2,
759
- * preventScrolling,
760
- * selectionLayerLevel
761
- * ) => {
762
- * // Setting if prevent scrolling after selection
763
- * preventScrolling.value = true;
764
- * },
765
- * };
766
- * ```
767
- *
768
- * ```html
769
- * <hot-table [settings]="settings"></hot-table>
770
- * ```
771
- * :::
772
678
  */
773
679
  'afterSelectionByProp',
774
680
  /**
@@ -833,24 +739,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
833
739
  * />
834
740
  * ```
835
741
  * :::
836
- *
837
- * ::: only-for angular
838
- * ```ts
839
- * settings = {
840
- * afterSelectionFocusSet: (row, column, preventScrolling) => {
841
- * // If set to `false` (default): when focused cell selection is outside the viewport,
842
- * // Handsontable scrolls the viewport to that cell.
843
- * // If set to `true`: when focused cell selection is outside the viewport,
844
- * // Handsontable doesn't scroll the viewport.
845
- * preventScrolling.value = true;
846
- * },
847
- * };
848
- * ```
849
- *
850
- * ```html
851
- * <hot-table [settings]="settings"></hot-table>
852
- * ```
853
- * :::
854
742
  */
855
743
  'afterSelectionFocusSet',
856
744
  /**
@@ -885,22 +773,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
885
773
  * />
886
774
  * ```
887
775
  * :::
888
- *
889
- * ::: only-for angular
890
- * ```ts
891
- * settings = {
892
- * beforeSelectColumns: (from, to, highlight) => {
893
- * // Extend the column selection by one column left and one column right.
894
- * from.col = Math.max(from.col - 1, 0);
895
- * to.col = Math.min(to.col + 1, this.countCols() - 1);
896
- * },
897
- * };
898
- * ```
899
- *
900
- * ```html
901
- * <hot-table [settings]="settings"></hot-table>
902
- * ```
903
- * :::
904
776
  */
905
777
  'beforeSelectColumns',
906
778
  /**
@@ -945,22 +817,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
945
817
  * />
946
818
  * ```
947
819
  * :::
948
- *
949
- * ::: only-for angular
950
- * ```ts
951
- * settings = {
952
- * beforeSelectRows: (from, to, highlight) => {
953
- * // Extend the row selection by one row up and one row down.
954
- * from.row = Math.max(from.row - 1, 0);
955
- * to.row = Math.min(to.row + 1, this.countRows() - 1);
956
- * },
957
- * };
958
- * ```
959
- *
960
- * ```html
961
- * <hot-table [settings]="settings"></hot-table>
962
- * ```
963
- * :::
964
820
  */
965
821
  'beforeSelectRows',
966
822
  /**
@@ -1181,42 +1037,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
1181
1037
  * />
1182
1038
  * ```
1183
1039
  * :::
1184
- * ::: only-for angular
1185
- *```ts
1186
- * // To alter a single change, overwrite the desired value with `changes[i][3]`
1187
- * settings1 = {
1188
- * beforeChange: (changes, source) => {
1189
- * // [[row, prop, oldVal, newVal], ...]
1190
- * changes[0][3] = 10;
1191
- * },
1192
- * };
1193
- *
1194
- * // To ignore a single change, set `changes[i]` to `null`
1195
- * // or remove `changes[i]` from the array, by using changes.splice(i, 1).
1196
- * settings2 = {
1197
- * beforeChange: (changes, source) => {
1198
- * // [[row, prop, oldVal, newVal], ...]
1199
- * changes[0] = null;
1200
- * },
1201
- * };
1202
- *
1203
- * // To ignore all changes, return `false`
1204
- * // or set the array's length to 0 (`changes.length = 0`)
1205
- * settings3 = {
1206
- * beforeChange: (changes, source) => {
1207
- * // [[row, prop, oldVal, newVal], ...]
1208
- * return false;
1209
- * },
1210
- * };
1211
- * ```
1212
- *
1213
- * ```html
1214
- * <hot-table [settings]="settings1"></hot-table>
1215
- * <hot-table [settings]="settings2"></hot-table>
1216
- * <hot-table [settings]="settings3"></hot-table>
1217
- * ```
1218
- *
1219
- * :::
1220
1040
  */
1221
1041
  'beforeChange',
1222
1042
  /**
@@ -1827,32 +1647,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
1827
1647
  * />
1828
1648
  * ```
1829
1649
  * :::
1830
- *
1831
- * ::: only-for angular
1832
- *```ts
1833
- * // To disregard a single row, remove it from the array using data.splice(i, 1).
1834
- * settings1 = {
1835
- * beforeCut: (data, coords) => {
1836
- * // data -> [[1, 2, 3], [4, 5, 6]]
1837
- * data.splice(0, 1);
1838
- * // data -> [[4, 5, 6]]
1839
- * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1840
- * },
1841
- * };
1842
- *
1843
- * // To cancel a cutting action, just return `false`.
1844
- * settings2 = {
1845
- * beforeCut: (data, coords) => {
1846
- * return false;
1847
- * },
1848
- * };
1849
- * ```
1850
- *
1851
- * ```html
1852
- * <hot-table [settings]="settings1"></hot-table>
1853
- * <hot-table [settings]="settings2"></hot-table>
1854
- * ```
1855
- * :::
1856
1650
  */
1857
1651
  'beforeCut',
1858
1652
  /**
@@ -1925,32 +1719,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
1925
1719
  * ...
1926
1720
  * ```
1927
1721
  * :::
1928
- *
1929
- * ::: only-for angular
1930
- * ```ts
1931
- * // To disregard a single row, remove it from the array using data.splice(i, 1).
1932
- * settings1 = {
1933
- * beforeCopy: (data, coords) => {
1934
- * // data -> [[1, 2, 3], [4, 5, 6]]
1935
- * data.splice(0, 1);
1936
- * // data -> [[4, 5, 6]]
1937
- * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
1938
- * },
1939
- * };
1940
- *
1941
- * // To cancel copying, return false from the callback.
1942
- * settings2 = {
1943
- * beforeCopy: (data, coords) => {
1944
- * return false;
1945
- * },
1946
- * };
1947
- * ```
1948
- *
1949
- * ```html
1950
- * <hot-table [settings]="settings1"></hot-table>
1951
- * <hot-table [settings]="settings2"></hot-table>
1952
- * ```
1953
- * :::
1954
1722
  */
1955
1723
  'beforeCopy',
1956
1724
  /**
@@ -2013,32 +1781,6 @@ export const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-com
2013
1781
  * />
2014
1782
  * ```
2015
1783
  * :::
2016
- *
2017
- * ::: only-for angular
2018
- * ```ts
2019
- * // To disregard a single row, remove it from the array using data.splice(i, 1).
2020
- * settings1 = {
2021
- * beforePaste: (data, coords) => {
2022
- * // data -> [[1, 2, 3], [4, 5, 6]]
2023
- * data.splice(0, 1);
2024
- * // data -> [[4, 5, 6]]
2025
- * // coords -> [{startRow: 0, startCol: 0, endRow: 1, endCol: 2}]
2026
- * },
2027
- * };
2028
- *
2029
- * // To cancel pasting, return false from the callback.
2030
- * settings2 = {
2031
- * beforePaste: (data, coords) => {
2032
- * return false;
2033
- * },
2034
- * };
2035
- * ```
2036
- *
2037
- * ```html
2038
- * <hot-table [settings]="settings1"></hot-table>
2039
- * <hot-table [settings]="settings2"></hot-table>
2040
- * ```
2041
- * :::
2042
1784
  */
2043
1785
  'beforePaste',
2044
1786
  /**