handsontable 0.0.0-next-6b996e8-20230714 → 0.0.0-next-e8dd43f-20230731
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.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +3 -7
- package/dist/handsontable.full.css +3 -7
- package/dist/handsontable.full.js +13 -13
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +1 -1
- package/dist/handsontable.js +13 -13
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +1 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/copyPaste/copyPaste.js +8 -8
- package/plugins/copyPaste/copyPaste.mjs +8 -8
@@ -168,10 +168,10 @@ class CopyPaste extends _base.BasePlugin {
|
|
168
168
|
* Defines the data range to copy. Possible values:
|
169
169
|
* * `'cells-only'` Copy selected cells only;
|
170
170
|
* * `'column-headers-only'` Copy column headers only;
|
171
|
-
* * `'with-
|
171
|
+
* * `'with-column-group-headers'` Copy cells with all column headers;
|
172
172
|
* * `'with-column-headers'` Copy cells with column headers;
|
173
173
|
*
|
174
|
-
* @type {'cells-only' | 'column-headers-only' | 'with-
|
174
|
+
* @type {'cells-only' | 'column-headers-only' | 'with-column-group-headers' | 'with-column-headers'}
|
175
175
|
*/
|
176
176
|
_classPrivateFieldInitSpec(this, _copyMode, {
|
177
177
|
writable: true,
|
@@ -306,12 +306,12 @@ class CopyPaste extends _base.BasePlugin {
|
|
306
306
|
*
|
307
307
|
* Takes an optional parameter (`copyMode`) that defines the scope of copying:
|
308
308
|
*
|
309
|
-
* | `copyMode` value
|
310
|
-
* |
|
311
|
-
* | `'cells-only'` (default)
|
312
|
-
* | `'with-column-headers'`
|
313
|
-
* | `'with-
|
314
|
-
* | `'column-headers-only'`
|
309
|
+
* | `copyMode` value | Description |
|
310
|
+
* | ----------------------------- | --------------------------------------------------------------- |
|
311
|
+
* | `'cells-only'` (default) | Copy the selected cells |
|
312
|
+
* | `'with-column-headers'` | - Copy the selected cells<br>- Copy the nearest column headers |
|
313
|
+
* | `'with-column-group-headers'` | - Copy the selected cells<br>- Copy all related columns headers |
|
314
|
+
* | `'column-headers-only'` | Copy the nearest column headers (without copying cells) |
|
315
315
|
*
|
316
316
|
* @param {string} [copyMode='cells-only'] Copy mode.
|
317
317
|
*/
|
@@ -162,10 +162,10 @@ export class CopyPaste extends BasePlugin {
|
|
162
162
|
* Defines the data range to copy. Possible values:
|
163
163
|
* * `'cells-only'` Copy selected cells only;
|
164
164
|
* * `'column-headers-only'` Copy column headers only;
|
165
|
-
* * `'with-
|
165
|
+
* * `'with-column-group-headers'` Copy cells with all column headers;
|
166
166
|
* * `'with-column-headers'` Copy cells with column headers;
|
167
167
|
*
|
168
|
-
* @type {'cells-only' | 'column-headers-only' | 'with-
|
168
|
+
* @type {'cells-only' | 'column-headers-only' | 'with-column-group-headers' | 'with-column-headers'}
|
169
169
|
*/
|
170
170
|
_classPrivateFieldInitSpec(this, _copyMode, {
|
171
171
|
writable: true,
|
@@ -300,12 +300,12 @@ export class CopyPaste extends BasePlugin {
|
|
300
300
|
*
|
301
301
|
* Takes an optional parameter (`copyMode`) that defines the scope of copying:
|
302
302
|
*
|
303
|
-
* | `copyMode` value
|
304
|
-
* |
|
305
|
-
* | `'cells-only'` (default)
|
306
|
-
* | `'with-column-headers'`
|
307
|
-
* | `'with-
|
308
|
-
* | `'column-headers-only'`
|
303
|
+
* | `copyMode` value | Description |
|
304
|
+
* | ----------------------------- | --------------------------------------------------------------- |
|
305
|
+
* | `'cells-only'` (default) | Copy the selected cells |
|
306
|
+
* | `'with-column-headers'` | - Copy the selected cells<br>- Copy the nearest column headers |
|
307
|
+
* | `'with-column-group-headers'` | - Copy the selected cells<br>- Copy all related columns headers |
|
308
|
+
* | `'column-headers-only'` | Copy the nearest column headers (without copying cells) |
|
309
309
|
*
|
310
310
|
* @param {string} [copyMode='cells-only'] Copy mode.
|
311
311
|
*/
|