jspreadsheet 8.0.51 → 8.0.57
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/index.d.ts +4 -2
- package/dist/index.js +542 -535
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -103,6 +103,8 @@ declare namespace jspreadsheet {
|
|
|
103
103
|
interface ContextmenuItem {
|
|
104
104
|
/** Context menu item type: line | divisor | default */
|
|
105
105
|
type?: 'line' | 'divisor' | 'default';
|
|
106
|
+
/** Context menu item title */
|
|
107
|
+
title: string;
|
|
106
108
|
/** Context menu icon key. (Material icon key icon identification) */
|
|
107
109
|
icon?: string;
|
|
108
110
|
/** HTML id property of the item DOM element */
|
|
@@ -114,9 +116,9 @@ declare namespace jspreadsheet {
|
|
|
114
116
|
/** A short description or instruction for the item. Normally a shortcut. Ex. CTRL + C */
|
|
115
117
|
shortcut?: string;
|
|
116
118
|
/** Show this text when the user mouse over the element */
|
|
117
|
-
tooltip
|
|
119
|
+
tooltip?: string;
|
|
118
120
|
/** Subm menu */
|
|
119
|
-
submenu
|
|
121
|
+
submenu?: Array<ContextmenuItem>;
|
|
120
122
|
}
|
|
121
123
|
|
|
122
124
|
interface Contextmenu {
|