handsontable 0.0.0-next-1b1acbd-20221123 → 0.0.0-next-561a94b-20221129

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

@@ -25,8 +25,8 @@
25
25
  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
26
26
  * USE OR INABILITY TO USE THIS SOFTWARE.
27
27
  *
28
- * Version: 0.0.0-next-1b1acbd-20221123
29
- * Release date: 25/10/2022 (built at 23/11/2022 12:56:32)
28
+ * Version: 0.0.0-next-561a94b-20221129
29
+ * Release date: 25/10/2022 (built at 29/11/2022 07:43:50)
30
30
  */
31
31
  (function webpackUniversalModuleDefinition(root, factory) {
32
32
  if(typeof exports === 'object' && typeof module === 'object')
@@ -2795,7 +2795,7 @@ var domMessages = {
2795
2795
  function _injectProductInfo(key, element) {
2796
2796
  var hasValidType = !isEmpty(key);
2797
2797
  var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
2798
- var hotVersion = "0.0.0-next-1b1acbd-20221123";
2798
+ var hotVersion = "0.0.0-next-561a94b-20221129";
2799
2799
  var keyValidityDate;
2800
2800
  var consoleMessageState = 'invalid';
2801
2801
  var domMessageState = 'invalid';
@@ -4578,14 +4578,12 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
4578
4578
  /**
4579
4579
  * Fired after retrieving information about a column header and appending it to the table header.
4580
4580
  *
4581
- * Since the 12.2 the hook is triggered with the 3rd `headerLevel` argument.
4582
- *
4583
4581
  * @event Hooks#afterGetColHeader
4584
4582
  * @param {number} column Visual column index.
4585
4583
  * @param {HTMLTableCellElement} TH Header's TH element.
4586
- * @param {number} [headerLevel=0] The index of header level. The header level accepts positive (0 to N)
4587
- * and negative (-1 to -N) values. For positive values, 0 points to the
4588
- * top most header, and for negative direction, -1 points to the most bottom
4584
+ * @param {number} [headerLevel=0] (Since 12.2.0) Header level index. Accepts positive (0 to n)
4585
+ * and negative (-1 to -n) values. For positive values, 0 points to the
4586
+ * topmost header. For negative values, -1 points to the bottom-most
4589
4587
  * header (the header closest to the cells).
4590
4588
  */
4591
4589
  'afterGetColHeader',
@@ -5537,7 +5535,7 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
5537
5535
  */
5538
5536
  'modifyCopyableRange',
5539
5537
  /**
5540
- * Fired by {@link CopyPaste} plugin before copying the values into clipboard and before clearing values of
5538
+ * Fired by {@link CopyPaste} plugin before copying the values to the clipboard and before clearing values of
5541
5539
  * the selected cells. This hook is fired when {@link Options#copyPaste} option is enabled.
5542
5540
  *
5543
5541
  * @event Hooks#beforeCut
@@ -5592,22 +5590,19 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
5592
5590
  * {@link Options#copyPaste} option is enabled.
5593
5591
  *
5594
5592
  * @event Hooks#afterCut
5595
- * @param {Array[]} data An array of arrays which contains the cut out data.
5593
+ * @param {Array[]} data An array of arrays with the cut data.
5596
5594
  * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
5597
5595
  * which was cut out.
5598
5596
  */
5599
5597
  'afterCut',
5600
5598
  /**
5601
- * Fired before values are copied into clipboard.
5602
- *
5603
- * Since the 12.3.0 the hook is triggered with the 3rd `copiedHeadersCount` argument.
5599
+ * Fired before values are copied to the clipboard.
5604
5600
  *
5605
5601
  * @event Hooks#beforeCopy
5606
5602
  * @param {Array[]} data An array of arrays which contains data to copied.
5607
5603
  * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
5608
5604
  * which will copied.
5609
- * @param {{ columnHeadersCount: number }} copiedHeadersCount An object with keys that holds information with
5610
- * the number of copied headers.
5605
+ * @param {{ columnHeadersCount: number }} copiedHeadersCount (Since 12.3.0) The number of copied column headers.
5611
5606
  * @returns {*} If returns `false` then copying is canceled.
5612
5607
  *
5613
5608
  * @example
@@ -5670,6 +5665,7 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
5670
5665
  * @param {Array[]} data An array of arrays which contains the copied data.
5671
5666
  * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
5672
5667
  * which was copied.
5668
+ * @param {{ columnHeadersCount: number }} copiedHeadersCount (Since 12.3.0) The number of copied column headers.
5673
5669
  */
5674
5670
  'afterCopy',
5675
5671
  /**
@@ -5728,7 +5724,7 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
5728
5724
  * {@link Options#copyPaste} option is enabled.
5729
5725
  *
5730
5726
  * @event Hooks#afterPaste
5731
- * @param {Array[]} data An array of arrays which contains the pasted data.
5727
+ * @param {Array[]} data An array of arrays with the pasted data.
5732
5728
  * @param {object[]} coords An array of objects with ranges of the visual indexes (`startRow`, `startCol`, `endRow`, `endCol`)
5733
5729
  * that correspond to the previously selected area.
5734
5730
  */
@@ -6036,17 +6032,17 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
6036
6032
  */
6037
6033
  'modifyColumnHeaderHeight',
6038
6034
  /**
6039
- * Fired while retrieving the column header value.
6035
+ * Fired while retrieving a column header's value.
6040
6036
  *
6041
6037
  * @since 12.3.0
6042
6038
  * @event Hooks#modifyColumnHeaderValue
6043
- * @param {string} value The column header value.
6044
- * @param {number} visualColumnIndex The visual column index.
6045
- * @param {number} [headerLevel=0] The index of header level. The header level accepts positive (0 to N)
6046
- * and negative (-1 to -N) values. For positive values, 0 points to the
6047
- * top most header, and for negative direction, -1 points to the most bottom
6039
+ * @param {string} value A column header value.
6040
+ * @param {number} visualColumnIndex A visual column index.
6041
+ * @param {number} [headerLevel=0] Header level index. Accepts positive (0 to n)
6042
+ * and negative (-1 to -n) values. For positive values, 0 points to the
6043
+ * topmost header. For negative values, -1 points to the bottom-most
6048
6044
  * header (the header closest to the cells).
6049
- * @returns {string} Returns the column header value to update.
6045
+ * @returns {string} The column header value to be updated.
6050
6046
  */
6051
6047
  'modifyColumnHeaderValue',
6052
6048
  /**
@@ -25923,21 +25919,43 @@ function Core(rootElement, userSettings) {
25923
25919
  };
25924
25920
 
25925
25921
  /**
25926
- * Returns an array of column headers (in string format, if they are enabled). If param `column` is given, it
25927
- * returns the header at the given column.
25922
+ * Gets the values of column headers (if column headers are [enabled](@/api/options.md#colheaders)).
25923
+ *
25924
+ * To get an array with the values of all
25925
+ * [bottom-most](@/guides/cell-features/clipboard.md#copy-with-headers) column headers,
25926
+ * call `getColHeader()` with no arguments.
25927
+ *
25928
+ * To get the value of the bottom-most header of a specific column, use the `column` parameter.
25929
+ *
25930
+ * To get the value of a [specific-level](@/guides/columns/column-groups.md) header
25931
+ * of a specific column, use the `column` and `headerLevel` parameters.
25928
25932
  *
25929
- * Since the 12.3.0 the method accepts the 2nd `headerLevel` argument.
25933
+ * Read more:
25934
+ * - [Guides: Column groups](@/guides/columns/column-groups.md)
25935
+ * - [Options: `colHeaders`](@/api/options.md#colheaders)
25936
+ * - [Guides: Copy with headers](@/guides/cell-features/clipboard.md#copy-with-headers)
25937
+ *
25938
+ * ```js
25939
+ * // get the contents of all bottom-most column headers
25940
+ * hot.getColHeader();
25941
+ *
25942
+ * // get the contents of the bottom-most header of a specific column
25943
+ * hot.getColHeader(5);
25944
+ *
25945
+ * // get the contents of a specific column header at a specific level
25946
+ * hot.getColHeader(5, -2);
25947
+ * ```
25930
25948
  *
25931
25949
  * @memberof Core#
25932
25950
  * @function getColHeader
25933
- * @param {number} [column] Visual column index.
25934
- * @param {number} [headerLevel=-1] The index of header level. The header level accepts positive (0 to N)
25935
- * and negative (-1 to -N) values. For positive values, 0 points to the
25936
- * top most header, and for negative direction, -1 points to the most bottom
25951
+ * @param {number} [column] A visual column index.
25952
+ * @param {number} [headerLevel=-1] (Since 12.3.0) Header level index. Accepts positive (0 to n)
25953
+ * and negative (-1 to -n) values. For positive values, 0 points to the
25954
+ * topmost header. For negative values, -1 points to the bottom-most
25937
25955
  * header (the header closest to the cells).
25938
25956
  * @fires Hooks#modifyColHeader
25939
25957
  * @fires Hooks#modifyColumnHeaderValue
25940
- * @returns {Array|string|number} The column header(s).
25958
+ * @returns {Array|string|number} Column header values.
25941
25959
  */
25942
25960
  this.getColHeader = function (column) {
25943
25961
  var headerLevel = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : -1;
@@ -28634,7 +28652,7 @@ var CellRange = /*#__PURE__*/function () {
28634
28652
  }, {
28635
28653
  key: "getHeight",
28636
28654
  value: function getHeight() {
28637
- // If the selection contains only rows headers return 0.
28655
+ // if the selection contains only row headers, return 0
28638
28656
  if (this.from.row < 0 && this.to.row < 0) {
28639
28657
  return 0;
28640
28658
  }
@@ -28651,7 +28669,7 @@ var CellRange = /*#__PURE__*/function () {
28651
28669
  }, {
28652
28670
  key: "getWidth",
28653
28671
  value: function getWidth() {
28654
- // If the selection contains only columns headers return 0.
28672
+ // if the selection contains only column headers, return 0
28655
28673
  if (this.from.col < 0 && this.to.col < 0) {
28656
28674
  return 0;
28657
28675
  }
@@ -33623,17 +33641,23 @@ var _default = function _default() {
33623
33641
  * | `false` | Disable the [`CopyPaste`](@/api/copyPaste.md) plugin |
33624
33642
  * | An object | - Enable the [`CopyPaste`](@/api/copyPaste.md) plugin<br>- Modify the [`CopyPaste`](@/api/copyPaste.md) plugin options |
33625
33643
  *
33644
+ * ##### copyPaste: Additional options
33645
+ *
33626
33646
  * If you set the `copyPaste` option to an object, you can set the following `CopyPaste` plugin options:
33627
33647
  *
33628
- * | Option | Possible settings | Description |
33629
- * | -------------- | -------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
33630
- * | `columnsLimit` | A number (default: `Infinity`) | A maximum number of columns that can be copied |
33631
- * | `rowsLimit` | A number (default: `Infinity`) | A maximum number of columns that can be copied |
33632
- * | `pasteMode` | `'overwrite'` \| `'shift_down'` \| `'shift_right'` | When pasting:<br>`'overwrite'`: overwrite currently-selected cells<br>`'shift_down'`: move currently-selected cells down<br>`'shift_right'`: move currently-selected cells to the right |
33633
- * | `uiContainer` | An HTML element | A UI container for the secondary focusable element |
33648
+ * | Option | Possible settings | Description |
33649
+ * | ------------------------ | -------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
33650
+ * | `columnsLimit` | A number (default: `Infinity`) | The maximum number of columns that can be copied |
33651
+ * | `rowsLimit` | A number (default: `Infinity`) | The maximum number of columns that can be copied |
33652
+ * | `pasteMode` | `'overwrite'` \| `'shift_down'` \| `'shift_right'` | When pasting:<br>`'overwrite'`: overwrite the currently-selected cells<br>`'shift_down'`: move the currently-selected cells down<br>`'shift_right'`: move the currently-selected cells to the right |
33653
+ * | `copyColumnHeaders` | Boolean (default: `false`) | `true`: add a context menu option for copying cells along with their nearest column headers |
33654
+ * | `copyColumnGroupHeaders` | Boolean (default: `false`) | `true`: add a context menu option for copying cells along with all their related columns headers |
33655
+ * | `copyColumnHeadersOnly` | Boolean (default: `false`) | `true`: add a context menu option for copying column headers nearest to the selected cells (without copying cells) |
33656
+ * | `uiContainer` | An HTML element | The UI container for the secondary focusable element |
33634
33657
  *
33635
33658
  * Read more:
33636
33659
  * - [Plugins: `CopyPaste`](@/api/copyPaste.md)
33660
+ * - [Guides: Clipboard](@/guides/cell-features/clipboard.md)
33637
33661
  *
33638
33662
  * @memberof Options#
33639
33663
  * @type {object|boolean}
@@ -33642,19 +33666,33 @@ var _default = function _default() {
33642
33666
  *
33643
33667
  * @example
33644
33668
  * ```js
33645
- * // disable the `CopyPaste` plugin
33669
+ * // enable the plugin with the default configuration
33670
+ * copyPaste: true // set by default
33671
+ *
33672
+ * // disable the plugin
33646
33673
  * copyPaste: false,
33647
33674
  *
33648
- * // enable the `CopyPaste` plugin
33649
- * // and modify the `CopyPaste` plugin options
33675
+ * // enable the plugin with a custom configuration
33650
33676
  * copyPaste: {
33651
- * // set the maximum number of columns that can be copied
33677
+ * // set a maximum number of columns that can be copied
33652
33678
  * columnsLimit: 25,
33653
- * // set the maximum number of rows that can be copied
33679
+ *
33680
+ * // set a maximum number of rows that can be copied
33654
33681
  * rowsLimit: 50,
33682
+ *
33655
33683
  * // set the paste behavior
33656
33684
  * pasteMode: 'shift_down',
33657
- * // set the UI container
33685
+ *
33686
+ * // add the option to copy cells along with their nearest column headers
33687
+ * copyColumnHeaders: true,
33688
+ *
33689
+ * // add the option to copy cells along with all their related columns headers
33690
+ * copyColumnGroupHeaders: true,
33691
+ *
33692
+ * // add the option to copy just column headers (without copying cells)
33693
+ * copyColumnHeadersOnly: true,
33694
+ *
33695
+ * // set a UI container
33658
33696
  * uiContainer: document.body,
33659
33697
  * },
33660
33698
  * ```
@@ -41381,8 +41419,8 @@ Handsontable.Core = function (rootElement) {
41381
41419
  Handsontable.DefaultSettings = (0, _dataMap.metaSchemaFactory)();
41382
41420
  Handsontable.hooks = _pluginHooks.default.getSingleton();
41383
41421
  Handsontable.packageName = 'handsontable';
41384
- Handsontable.buildDate = "23/11/2022 12:56:32";
41385
- Handsontable.version = "0.0.0-next-1b1acbd-20221123";
41422
+ Handsontable.buildDate = "29/11/2022 07:43:50";
41423
+ Handsontable.version = "0.0.0-next-561a94b-20221129";
41386
41424
  Handsontable.languages = {
41387
41425
  dictionaryKeys: _registry.dictionaryKeys,
41388
41426
  getLanguageDictionary: _registry.getLanguageDictionary,
@@ -51724,10 +51762,10 @@ var IndexMapper = /*#__PURE__*/function () {
51724
51762
  }
51725
51763
 
51726
51764
  /**
51727
- * Creates and register the new IndexMap for specified IndexMapper instance.
51765
+ * Creates and registers a new `IndexMap` for a specified `IndexMapper` instance.
51728
51766
  *
51729
- * @param {string} indexName The uniq index name.
51730
- * @param {string} mapType The index map type (e.q. "hiding, "trimming", "physicalIndexToValue").
51767
+ * @param {string} indexName A unique index name.
51768
+ * @param {string} mapType The index map type (e.g., "hiding", "trimming", "physicalIndexToValue").
51731
51769
  * @param {*} [initValueOrFn] The initial value for the index map.
51732
51770
  * @returns {IndexMap}
51733
51771
  */
@@ -69153,22 +69191,7 @@ _pluginHooks.default.getSingleton().register('afterContextMenuExecute');
69153
69191
  * * `true` (to enable default options),
69154
69192
  * * `false` (to disable completely)
69155
69193
  * * `{ uiContainer: containerDomElement }` (to declare a container for all of the Context Menu's dom elements to be placed in).
69156
- *
69157
- * or array of any available strings:
69158
- * * `'row_above'`
69159
- * * `'row_below'`
69160
- * * `'col_left'`
69161
- * * `'col_right'`
69162
- * * `'remove_row'`
69163
- * * `'remove_col'`
69164
- * * `'undo'`
69165
- * * `'redo'`
69166
- * * `'make_read_only'`
69167
- * * `'alignment'`
69168
- * * `'---------'` (menu item separator)
69169
- * * `'borders'` (with {@link Options#customBorders} turned on)
69170
- * * `'commentsAddEdit'` (with {@link Options#comments} turned on)
69171
- * * `'commentsRemove'` (with {@link Options#comments} turned on).
69194
+ * * An array of [the available strings](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options)
69172
69195
  *
69173
69196
  * See [the context menu demo](@/guides/accessories-and-menus/context-menu.md) for examples.
69174
69197
  *
@@ -70662,28 +70685,25 @@ var META_HEAD = ['<meta name="generator" content="Handsontable"/>', '<style type
70662
70685
  /* eslint-disable jsdoc/require-description-complete-sentence */
70663
70686
  /**
70664
70687
  * @description
70665
- * This plugin enables the copy/paste functionality in the Handsontable. The functionality works for API, Context Menu,
70666
- * using keyboard shortcuts and menu bar from the browser.
70667
- * Possible values:
70668
- * * `true` (to enable default options),
70669
- * * `false` (to disable completely).
70688
+ * Copy, cut, and paste data by using the `CopyPaste` plugin.
70689
+ *
70690
+ * Control the `CopyPaste` plugin programmatically through its [API methods](#methods).
70670
70691
  *
70671
- * or an object with values:
70672
- * * `'columnsLimit'` (see {@link CopyPaste#columnsLimit})
70673
- * * `'rowsLimit'` (see {@link CopyPaste#rowsLimit})
70674
- * * `'pasteMode'` (see {@link CopyPaste#pasteMode})
70675
- * * `'copyColumnHeaders'`
70676
- * * `'copyColumnGroupHeaders'`
70677
- * * `'copyColumnHeadersOnly'`
70678
- * * `'uiContainer'` (see {@link CopyPaste#uiContainer}).
70692
+ * The user can access the copy-paste features through:
70693
+ * - The [context menu](@/guides/cell-features/clipboard.md#context-menu).
70694
+ * - The [keyboard shortcuts](@/guides/cell-features/clipboard.md#related-keyboard-shortcuts).
70695
+ * - The browser's menu bar.
70679
70696
  *
70680
- * See [the copy/paste demo](@/guides/cell-features/clipboard.md) for examples.
70697
+ * Read more:
70698
+ * - [Guides: Clipboard](@/guides/cell-features/clipboard.md)
70699
+ * - [Configuration options: `copyPaste`](@/api/options.md#copypaste)
70681
70700
  *
70682
70701
  * @example
70683
70702
  * ```js
70684
- * // Enables the plugin with default values
70703
+ * // enable the plugin with the default configuration
70685
70704
  * copyPaste: true,
70686
- * // Enables the plugin with custom values
70705
+ *
70706
+ * // or, enable the plugin with a custom configuration
70687
70707
  * copyPaste: {
70688
70708
  * columnsLimit: 25,
70689
70709
  * rowsLimit: 50,
@@ -70772,8 +70792,10 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70772
70792
  key: "isEnabled",
70773
70793
  value:
70774
70794
  /**
70775
- * Checks if the plugin is enabled in the handsontable settings. This method is executed in {@link Hooks#beforeInit}
70776
- * hook and if it returns `true` then the {@link CopyPaste#enablePlugin} method is called.
70795
+ * Checks if the [`CopyPaste`](#copypaste) plugin is enabled.
70796
+ *
70797
+ * This method gets called by Handsontable's [`beforeInit`](@/api/hooks.md#beforeinit) hook.
70798
+ * If it returns `true`, the [`enablePlugin()`](#enableplugin) method gets called.
70777
70799
  *
70778
70800
  * @returns {boolean}
70779
70801
  */
@@ -70782,7 +70804,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70782
70804
  }
70783
70805
 
70784
70806
  /**
70785
- * Enables the plugin functionality for this Handsontable instance.
70807
+ * Enables the [`CopyPaste`](#copypaste) plugin for your Handsontable instance.
70786
70808
  */
70787
70809
  }, {
70788
70810
  key: "enablePlugin",
@@ -70827,9 +70849,10 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70827
70849
  }
70828
70850
 
70829
70851
  /**
70830
- * Updates the plugin's state.
70852
+ * Updates the state of the [`CopyPaste`](#copypaste) plugin.
70831
70853
  *
70832
- * This method is executed when [`updateSettings()`](@/api/core.md#updatesettings) is invoked with any of the following configuration options:
70854
+ * Gets called when [`updateSettings()`](@/api/core.md#updatesettings)
70855
+ * is invoked with any of the following configuration options:
70833
70856
  * - [`copyPaste`](@/api/options.md#copypaste)
70834
70857
  * - [`fragmentSelection`](@/api/options.md#fragmentselection)
70835
70858
  */
@@ -70843,7 +70866,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70843
70866
  }
70844
70867
 
70845
70868
  /**
70846
- * Disables the plugin functionality for this Handsontable instance.
70869
+ * Disables the [`CopyPaste`](#copypaste) plugin for your Handsontable instance.
70847
70870
  */
70848
70871
  }, {
70849
70872
  key: "disablePlugin",
@@ -70855,12 +70878,18 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70855
70878
  }
70856
70879
 
70857
70880
  /**
70858
- * Copies the selected cell with or without column headers into the clipboard.
70881
+ * Copies the contents of the selected cells (and/or their related column headers) to the system clipboard.
70882
+ *
70883
+ * Takes an optional parameter (`copyMode`) that defines the scope of copying:
70859
70884
  *
70860
- * @param {'cells-only' | 'column-headers-only' | 'with-all-column-headers' | 'with-column-headers'} [copyMode='cells-only']
70861
- * Defines the data range to copy. Possible values: `cells-only` (copy selected cells only),
70862
- * `column-headers-only` (copy the most-bottom column headers only), `with-all-column-headers` (copy cells
70863
- * with all column headers levels) or `with-column-headers` (copy cells with the most-bottom column headers).
70885
+ * | `copyMode` value | Description |
70886
+ * | --------------------------- | --------------------------------------------------------------- |
70887
+ * | `'cells-only'` (default) | Copy the selected cells |
70888
+ * | `'with-column-headers'` | - Copy the selected cells<br>- Copy the nearest column headers |
70889
+ * | `'with-all-column-headers'` | - Copy the selected cells<br>- Copy all related columns headers |
70890
+ * | `'column-headers-only'` | Copy the nearest column headers (without copying cells) |
70891
+ *
70892
+ * @param {string} [copyMode='cells-only'] Copy mode.
70864
70893
  */
70865
70894
  }, {
70866
70895
  key: "copy",
@@ -70874,7 +70903,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70874
70903
  }
70875
70904
 
70876
70905
  /**
70877
- * Copies the selected cell/cells into the clipboard.
70906
+ * Copies the contents of the selected cells.
70878
70907
  */
70879
70908
  }, {
70880
70909
  key: "copyCellsOnly",
@@ -70882,7 +70911,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70882
70911
  this.copy('cells-only');
70883
70912
  }
70884
70913
  /**
70885
- * Copies only the most-bottom column headers into the clipboard.
70914
+ * Copies the contents of column headers that are nearest to the selected cells.
70886
70915
  */
70887
70916
  }, {
70888
70917
  key: "copyColumnHeadersOnly",
@@ -70890,7 +70919,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70890
70919
  this.copy('column-headers-only');
70891
70920
  }
70892
70921
  /**
70893
- * Copies the selected cell/cells and all column headers levels (including column group) into the clipboard.
70922
+ * Copies the contents of the selected cells and all their related column headers.
70894
70923
  */
70895
70924
  }, {
70896
70925
  key: "copyWithAllColumnHeaders",
@@ -70898,7 +70927,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70898
70927
  this.copy('with-column-group-headers');
70899
70928
  }
70900
70929
  /**
70901
- * Copies the selected cell/cells and most-bottom column headers into the clipboard.
70930
+ * Copies the contents of the selected cells and their nearest column headers.
70902
70931
  */
70903
70932
  }, {
70904
70933
  key: "copyWithColumnHeaders",
@@ -70907,7 +70936,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70907
70936
  }
70908
70937
 
70909
70938
  /**
70910
- * Cuts the selected cell into the clipboard.
70939
+ * Cuts the contents of the selected cells to the system clipboard.
70911
70940
  */
70912
70941
  }, {
70913
70942
  key: "cut",
@@ -70919,10 +70948,10 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70919
70948
  }
70920
70949
 
70921
70950
  /**
70922
- * Creates copyable text related to range objects.
70951
+ * Converts the contents of multiple ranges (`ranges`) into a single string.
70923
70952
  *
70924
70953
  * @param {Array<{startRow: number, startCol: number, endRow: number, endCol: number}>} ranges Array of objects with properties `startRow`, `endRow`, `startCol` and `endCol`.
70925
- * @returns {string} Returns string which will be copied into clipboard.
70954
+ * @returns {string} A string that will be copied to the clipboard.
70926
70955
  */
70927
70956
  }, {
70928
70957
  key: "getRangedCopyableData",
@@ -70931,10 +70960,10 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70931
70960
  }
70932
70961
 
70933
70962
  /**
70934
- * Creates copyable text related to range objects.
70963
+ * Converts the contents of multiple ranges (`ranges`) into an array of arrays.
70935
70964
  *
70936
70965
  * @param {Array<{startRow: number, startCol: number, endRow: number, endCol: number}>} ranges Array of objects with properties `startRow`, `startCol`, `endRow` and `endCol`.
70937
- * @returns {Array[]} Returns array of arrays which will be copied into clipboard.
70966
+ * @returns {Array[]} An array of arrays that will be copied to the clipboard.
70938
70967
  */
70939
70968
  }, {
70940
70969
  key: "getRangedData",
@@ -70945,12 +70974,12 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70945
70974
  rows = _normalizeRanges.rows,
70946
70975
  columns = _normalizeRanges.columns;
70947
70976
 
70948
- // Concat all rows and columns data defined in ranges into one copyable string
70977
+ // concatenate all rows and columns data defined in ranges into one copyable string
70949
70978
  (0, _array.arrayEach)(rows, function (row) {
70950
70979
  var rowSet = [];
70951
70980
  (0, _array.arrayEach)(columns, function (column) {
70952
70981
  if (row < 0) {
70953
- // 'row' as the second argument act here as 'headerLevel' argument
70982
+ // `row` as the second argument acts here as the `headerLevel` argument
70954
70983
  rowSet.push(_this3.hot.getColHeader(column, row));
70955
70984
  } else {
70956
70985
  rowSet.push(_this3.hot.getCopyableData(row, column));
@@ -70964,10 +70993,10 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
70964
70993
  /**
70965
70994
  * Simulates the paste action.
70966
70995
  *
70967
- * Due to security reasons, modern browsers disallow reading from the system clipboard.
70996
+ * For security reasons, modern browsers don't allow reading from the system clipboard.
70968
70997
  *
70969
- * @param {string} pastableText Value as raw string to paste.
70970
- * @param {string} [pastableHtml=''] Value as HTML to paste.
70998
+ * @param {string} pastableText The value to paste, as a raw string.
70999
+ * @param {string} [pastableHtml=''] The value to paste, as HTML.
70971
71000
  */
70972
71001
  }, {
70973
71002
  key: "paste",
@@ -71332,7 +71361,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
71332
71361
  }
71333
71362
 
71334
71363
  /**
71335
- * Destroys the plugin instance.
71364
+ * Destroys the `CopyPaste` plugin instance.
71336
71365
  */
71337
71366
  }, {
71338
71367
  key: "destroy",
@@ -71360,7 +71389,7 @@ var CopyPaste = /*#__PURE__*/function (_BasePlugin) {
71360
71389
  }
71361
71390
 
71362
71391
  /**
71363
- * Maximum number of columns than can be copied to clipboard using <kbd>**Ctrl**</kbd>/<kbd>**Cmd**</kbd> + <kbd>**C**</kbd>.
71392
+ * The maximum number of columns than can be copied to the clipboard.
71364
71393
  *
71365
71394
  * @type {number}
71366
71395
  * @default Infinity
@@ -26,8 +26,8 @@
26
26
  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
27
27
  * USE OR INABILITY TO USE THIS SOFTWARE.
28
28
  *
29
- * Version: 0.0.0-next-1b1acbd-20221123
30
- * Release date: 25/10/2022 (built at 23/11/2022 12:57:03)
29
+ * Version: 0.0.0-next-561a94b-20221129
30
+ * Release date: 25/10/2022 (built at 29/11/2022 07:44:34)
31
31
  */.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-2.handsontable,.col-lg-3.handsontable,.col-lg-4.handsontable,.col-lg-5.handsontable,.col-lg-6.handsontable,.col-lg-7.handsontable,.col-lg-8.handsontable,.col-lg-9.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.col-md-1.handsontable,.col-md-2.handsontable,.col-md-3.handsontable,.col-md-4.handsontable,.col-md-5.handsontable,.col-md-6.handsontable,.col-md-7.handsontable,.col-md-8.handsontable,.col-md-9.handsontable .col-sm-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.col-sm-2.handsontable,.col-sm-3.handsontable,.col-sm-4.handsontable,.col-sm-5.handsontable,.col-sm-6.handsontable,.col-sm-7.handsontable,.col-sm-8.handsontable,.col-sm-9.handsontable .col-xs-1.handsontable,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.col-xs-2.handsontable,.col-xs-3.handsontable,.col-xs-4.handsontable,.col-xs-5.handsontable,.col-xs-6.handsontable,.col-xs-7.handsontable,.col-xs-8.handsontable,.col-xs-9.handsontable,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable{position:relative}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{width:0}.handsontable .wtSpreader{position:relative;width:0;height:auto}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:0}.handsontable table.htCore{border-collapse:separate;border-spacing:0;margin:0;border-width:0;table-layout:fixed;width:0;outline-width:0;cursor:default;max-width:none;max-height:none}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{border-top-width:0;border-left-width:0;border-right:1px solid #ccc;border-bottom:1px solid #ccc;height:22px;empty-cells:show;line-height:21px;padding:0 4px;background-color:#fff;vertical-align:top;overflow:hidden;outline-width:0;white-space:pre-wrap}[dir=rtl].handsontable td,[dir=rtl].handsontable th{border-right-width:0;border-left:1px solid #ccc}.handsontable th:last-child{border-left:none;border-right:1px solid #ccc;border-bottom:1px solid #ccc}[dir=rtl].handsontable th:last-child{border-right:none;border-left:1px solid #ccc}.handsontable td:first-of-type,.handsontable th:first-child,.handsontable th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable td:first-of-type,[dir=rtl].handsontable th:first-child,[dir=rtl].handsontable th:nth-child(2){border-right:1px solid #ccc}.handsontable .ht_clone_top th:nth-child(2){border-left-width:0;border-right:1px solid #ccc}[dir=rtl].handsontable .ht_clone_top th:nth-child(2){border-right-width:0;border-left:1px solid #ccc}.handsontable.htRowHeaders thead tr th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2){border-right:1px solid #ccc}.handsontable tr:first-child td,.handsontable tr:first-child th{border-top:1px solid #ccc}.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) thead tr th:first-child,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable tbody tr th{border-right-width:0;border-left:1px solid #ccc}[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) thead tr th:first-child,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable tbody tr th{border-left-width:0;border-right:1px solid #ccc}.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr:last-child th{border-bottom-width:0}.handsontable th{background-color:#f0f0f0;color:#222;text-align:center;font-weight:400;white-space:nowrap}.handsontable thead th{padding:0}.handsontable th.active{background-color:#ccc}.handsontable thead th .relative{padding:2px 4px}.handsontable span.colHeader{display:inline-block;line-height:1.1}.handsontable .wtBorder{position:absolute;font-size:0}.handsontable .wtBorder.hidden{display:none!important}.handsontable .wtBorder.current{z-index:10}.handsontable .wtBorder.area{z-index:8}.handsontable .wtBorder.fill{z-index:6}.handsontable .wtBorder.corner{font-size:0;cursor:crosshair}.ht_clone_master{z-index:100}.ht_clone_inline_start{z-index:120}.ht_clone_bottom{z-index:130}.ht_clone_bottom_inline_start_corner{z-index:150}.ht_clone_top{z-index:160}.ht_clone_top_inline_start_corner{z-index:180}.handsontable col.hidden{width:0!important}.handsontable tr.hidden,.handsontable tr.hidden td,.handsontable tr.hidden th{display:none}.ht_clone_bottom,.ht_clone_inline_start,.ht_clone_top,.ht_master{overflow:hidden}.ht_master .wtHolder{overflow:auto}.handsontable .ht_clone_inline_start thead,.handsontable .ht_master thead,.handsontable .ht_master tr th{visibility:hidden}.ht_clone_bottom .wtHolder,.ht_clone_inline_start .wtHolder,.ht_clone_top .wtHolder{overflow:hidden}.handsontable{touch-action:manipulation;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:13px;font-weight:400;color:#373737}.handsontable a{color:#104acc}.handsontable.htAutoSize{visibility:hidden;left:-99000px;position:absolute;top:-99000px}.handsontable td.htInvalid{background-color:#ff4c42!important}.handsontable td.htNoWrap{white-space:nowrap}#hot-display-license-info{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:10px;font-weight:400;color:#373737;padding:5px 0 3px;text-align:left}#hot-display-license-info a{color:#104acc;font-size:10px}.handsontable .manualColumnResizer{position:absolute;top:0;cursor:col-resize;z-index:210;width:5px;height:25px}.handsontable .manualRowResizer{position:absolute;left:0;cursor:row-resize;z-index:210;height:5px;width:50px}.handsontable .manualColumnResizer.active,.handsontable .manualColumnResizer:hover,.handsontable .manualRowResizer.active,.handsontable .manualRowResizer:hover{background-color:#34a9db}.handsontable .manualColumnResizerGuide{position:absolute;right:unset;top:0;background-color:#34a9db;display:none;width:0;border-right:1px dashed #777;border-left:none;margin-left:5px;margin-right:unset}[dir=rtl].handsontable .manualColumnResizerGuide{left:unset;border-left:1px dashed #777;border-right:none;margin-right:5px;margin-left:unset}.handsontable .manualRowResizerGuide{position:absolute;left:0;bottom:0;background-color:#34a9db;display:none;height:0;border-bottom:1px dashed #777;margin-top:5px}.handsontable .manualColumnResizerGuide.active,.handsontable .manualRowResizerGuide.active{display:block;z-index:209}.handsontable .columnSorting{position:relative}.handsontable .columnSorting.sortAction:hover{text-decoration:underline;cursor:pointer}.handsontable span.colHeader.columnSorting:before{top:50%;margin-top:-6px;padding-left:8px;padding-right:0;position:absolute;right:-9px;left:unset;content:"";height:10px;width:5px;background-size:contain;background-repeat:no-repeat;background-position-x:right}[dir=rtl].handsontable span.colHeader.columnSorting:before{padding-right:8px;padding-left:0;left:-9px;right:unset;background-position-x:left}.handsontable span.colHeader.columnSorting.ascending:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC")}.handsontable span.colHeader.columnSorting.descending:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=")}.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled):after{content:"*";display:inline-block;position:relative;padding-right:20px}.handsontable td.area,.handsontable td.area-1,.handsontable td.area-2,.handsontable td.area-3,.handsontable td.area-4,.handsontable td.area-5,.handsontable td.area-6,.handsontable td.area-7{position:relative}.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;bottom:-100%\9;background:#005eff}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{bottom:-100%}}.handsontable td.area:before{opacity:.1}.handsontable td.area-1:before{opacity:.2}.handsontable td.area-2:before{opacity:.27}.handsontable td.area-3:before{opacity:.35}.handsontable td.area-4:before{opacity:.41}.handsontable td.area-5:before{opacity:.47}.handsontable td.area-6:before{opacity:.54}.handsontable td.area-7:before{opacity:.58}.handsontable tbody th.ht__highlight,.handsontable thead th.ht__highlight{background-color:#dcdcdc}.handsontable tbody th.ht__active_highlight,.handsontable thead th.ht__active_highlight{background-color:#8eb0e7;color:#000}.handsontableInput{border:none;outline-width:0;margin:0;padding:1px 5px 0;font-family:inherit;line-height:21px;font-size:inherit;box-shadow:inset 0 0 0 2px #5292f7;resize:none;display:block;color:#000;border-radius:0;background-color:#fff}.handsontableInput:focus{outline:none}.handsontableInputHolder{position:absolute;top:0;left:0}.htSelectEditor{-webkit-appearance:menulist-button!important;position:absolute;width:auto}.htSelectEditor:focus{outline:none}.handsontable .htDimmed{color:#777}.handsontable .htSubmenu{position:relative}.handsontable .htSubmenu :after{content:"▶";color:#777;position:absolute;right:5px;font-size:9px}[dir=rtl].handsontable .htSubmenu :after{content:""}[dir=rtl].handsontable .htSubmenu :before{content:"◀";color:#777;position:absolute;left:5px;font-size:9px}.handsontable .htLeft{text-align:left}.handsontable .htCenter{text-align:center}.handsontable .htRight{text-align:right}.handsontable .htJustify{text-align:justify}.handsontable .htTop{vertical-align:top}.handsontable .htMiddle{vertical-align:middle}.handsontable .htBottom{vertical-align:bottom}.handsontable .htPlaceholder{color:#999}.handsontable.listbox{margin:0}.handsontable.listbox .ht_master table{border:1px solid #ccc;border-collapse:separate;background:#fff}.handsontable.listbox td,.handsontable.listbox th,.handsontable.listbox tr:first-child td,.handsontable.listbox tr:first-child th,.handsontable.listbox tr:last-child th{border-color:transparent!important}.handsontable.listbox td,.handsontable.listbox th{white-space:nowrap;text-overflow:ellipsis}.handsontable.listbox td.htDimmed{cursor:default;color:inherit;font-style:inherit}.handsontable.listbox .wtBorder{visibility:hidden}.handsontable.listbox tr:hover td,.handsontable.listbox tr td.current{background:#eee}.ht_editor_hidden{z-index:-1}.ht_editor_visible{z-index:200}.handsontable td.htSearchResult{background:#fcedd9;color:#583707}.handsontable .collapsibleIndicator{position:absolute;top:50%;transform:translateY(-50%);left:unset;right:5px;border:1px solid #a6a6a6;line-height:8px;color:#222;border-radius:10px;font-size:10px;width:10px;height:10px;cursor:pointer;-webkit-box-shadow:0 0 0 6px #eee;-moz-box-shadow:0 0 0 6px #eee;box-shadow:0 0 0 6px #eee;background:#eee;text-align:center}[dir=rtl].handsontable .collapsibleIndicator{right:unset;left:5px}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch}.handsontable.mobile .handsontableInput:focus{-webkit-box-shadow:0 0 0 2px #5292f7 inset;-moz-box-shadow:0 0 0 2px #5292f7 inset;box-shadow:inset 0 0 0 2px #5292f7;-webkit-appearance:none}.topSelectionHandle-HitArea:not(.ht_master .topSelectionHandle-HitArea),.topSelectionHandle:not(.ht_master .topSelectionHandle){z-index:9999}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{right:-10000px;left:unset}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable .htAutocompleteArrow{float:right;font-size:10px;color:#eee;cursor:default;width:16px;text-align:center}[dir=rtl].handsontable .htAutocompleteArrow{float:left}.handsontable td .htAutocompleteArrow:hover{color:#777}.handsontable td.area .htAutocompleteArrow{color:#d3d3d3}.handsontable .htCheckboxRendererInput{display:inline-block}.handsontable .htCheckboxRendererInput.noValue{opacity:.5}.handsontable .htCheckboxRendererLabel{font-size:inherit;vertical-align:middle;cursor:pointer;display:inline-block}.handsontable .htCheckboxRendererLabel.fullWidth{width:100%}.handsontable .htCommentCell{position:relative}.handsontable .htCommentCell:after{content:"";position:absolute;top:0;right:0;left:unset;border-left:6px solid transparent;border-right:none;border-top:6px solid #000}[dir=rtl].handsontable .htCommentCell:after{left:0;right:unset;border-right:6px solid transparent;border-left:none}.htCommentsContainer .htComments{display:none;z-index:1059;position:absolute}.htCommentsContainer .htCommentTextArea{box-shadow:0 1px 3px rgba(0,0,0,.117647),0 1px 2px rgba(0,0,0,.239216);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:none;border-left:3px solid #ccc;background-color:#fff;width:215px;height:90px;font-size:12px;padding:5px;outline:0!important;-webkit-appearance:none}[dir=rtl].htCommentsContainer .htCommentTextArea{border-right:3px solid #ccc;border-left:none}.htCommentsContainer .htCommentTextArea:focus{box-shadow:0 1px 3px rgba(0,0,0,.117647),0 1px 2px rgba(0,0,0,.239216),inset 0 0 0 1px #5292f7;border-left:3px solid #5292f7;border-right:none}[dir=rtl].htCommentsContainer .htCommentTextArea:focus{border-right:3px solid #5292f7;border-left:none}
32
32
  /*!
33
33
  * Handsontable ContextMenu