@odoo/o-spreadsheet 17.2.8 → 17.2.9
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.
- package/dist/o-spreadsheet.cjs.js +150 -113
- package/dist/o-spreadsheet.d.ts +4 -2
- package/dist/o-spreadsheet.esm.js +150 -113
- package/dist/o-spreadsheet.iife.js +150 -113
- package/dist/o-spreadsheet.iife.min.js +101 -101
- package/dist/o_spreadsheet.xml +3 -3
- package/package.json +2 -2
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -358,9 +358,9 @@ type ClipboardContent = {
|
|
|
358
358
|
[type in ClipboardMIMEType]?: string;
|
|
359
359
|
};
|
|
360
360
|
interface ClipboardOptions {
|
|
361
|
+
isCutOperation: boolean;
|
|
361
362
|
pasteOption?: ClipboardPasteOptions;
|
|
362
363
|
selectTarget?: boolean;
|
|
363
|
-
isCutOperation?: boolean;
|
|
364
364
|
}
|
|
365
365
|
type ClipboardPasteOptions = "onlyFormat" | "asValue";
|
|
366
366
|
type ClipboardOperation = "CUT" | "COPY";
|
|
@@ -4113,7 +4113,7 @@ declare class ClipboardPlugin extends UIPlugin {
|
|
|
4113
4113
|
private paintFormatStatus;
|
|
4114
4114
|
private originSheetId?;
|
|
4115
4115
|
private copiedData?;
|
|
4116
|
-
private _isCutOperation
|
|
4116
|
+
private _isCutOperation;
|
|
4117
4117
|
allowDispatch(cmd: LocalCommand): CommandResult;
|
|
4118
4118
|
handle(cmd: Command): void;
|
|
4119
4119
|
private convertOSClipboardData;
|
|
@@ -4580,6 +4580,7 @@ type Getters = {
|
|
|
4580
4580
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
4581
4581
|
interface ArgDefinition {
|
|
4582
4582
|
acceptMatrix?: boolean;
|
|
4583
|
+
acceptMatrixOnly?: boolean;
|
|
4583
4584
|
repeating?: boolean;
|
|
4584
4585
|
optional?: boolean;
|
|
4585
4586
|
description: string;
|
|
@@ -8225,6 +8226,7 @@ declare class BottomBarSheet extends Component<Props$b, SpreadsheetChildEnv> {
|
|
|
8225
8226
|
private sheetDivRef;
|
|
8226
8227
|
private sheetNameRef;
|
|
8227
8228
|
private editionState;
|
|
8229
|
+
private DOMFocusableElementStore;
|
|
8228
8230
|
setup(): void;
|
|
8229
8231
|
private focusInputAndSelectContent;
|
|
8230
8232
|
private scrollToSheet;
|