@omegagrid/plugin-xlsx 0.3.62 → 0.3.63
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/editorPlugin.d.ts +1 -1
- package/dist/editorPlugin.js +4 -4
- package/package.json +4 -4
package/dist/editorPlugin.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Plugin } from '@omegagrid/core';
|
|
2
2
|
import { Editor } from '@omegagrid/editor';
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class XlsxEditorPlugin extends Plugin<Editor> {
|
|
4
4
|
static pluginName: string;
|
|
5
5
|
init(editor: Editor): void;
|
|
6
6
|
}
|
package/dist/editorPlugin.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.XlsxEditorPlugin = void 0;
|
|
4
4
|
const core_1 = require("@omegagrid/core");
|
|
5
5
|
const import_1 = require("./import");
|
|
6
6
|
const export_1 = require("./export");
|
|
7
|
-
class
|
|
7
|
+
class XlsxEditorPlugin extends core_1.Plugin {
|
|
8
8
|
init(editor) {
|
|
9
9
|
editor.commands.register({
|
|
10
10
|
section: 'plugin',
|
|
@@ -24,6 +24,6 @@ class EditorXlsxPlugin extends core_1.Plugin {
|
|
|
24
24
|
});
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
exports.
|
|
28
|
-
|
|
27
|
+
exports.XlsxEditorPlugin = XlsxEditorPlugin;
|
|
28
|
+
XlsxEditorPlugin.pluginName = 'xlsx';
|
|
29
29
|
//# sourceMappingURL=editorPlugin.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omegagrid/plugin-xlsx",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.63",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"description": "Xlsx import/export plugin",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"_prepublish": "yarn test && yarn lint"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@omegagrid/core": "^0.3.
|
|
31
|
-
"@omegagrid/editor": "^0.3.
|
|
32
|
-
"@omegagrid/grid": "^0.3.
|
|
30
|
+
"@omegagrid/core": "^0.3.63",
|
|
31
|
+
"@omegagrid/editor": "^0.3.63",
|
|
32
|
+
"@omegagrid/grid": "^0.3.63",
|
|
33
33
|
"@sheet/core": "^1",
|
|
34
34
|
"lit": "^3.1.1",
|
|
35
35
|
"lit-html": "^3.1.1",
|