@omegagrid/bundle 0.3.19 → 0.3.21
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/index.ts +3 -3
- package/omegagrid.js +3 -3
- package/package.json +14 -13
- package/tsconfig.json +2 -0
package/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as bucket from "@omegagrid/bucket";
|
|
2
2
|
export * as code from "@omegagrid/code";
|
|
3
3
|
export * as commands from "@omegagrid/commands";
|
|
4
|
-
|
|
4
|
+
export * as core from "@omegagrid/core";
|
|
5
5
|
export * as editor from "@omegagrid/editor";
|
|
6
6
|
export * as form from "@omegagrid/form";
|
|
7
7
|
export * as grid from "@omegagrid/grid";
|
|
@@ -9,9 +9,9 @@ export * as statusbar from "@omegagrid/statusbar";
|
|
|
9
9
|
export * as tabs from "@omegagrid/tabs";
|
|
10
10
|
export * as toolbar from "@omegagrid/toolbar";
|
|
11
11
|
export * as tree from "@omegagrid/tree";
|
|
12
|
-
|
|
12
|
+
export * as localize from "@omegagrid/localize";
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
import * as pluginXLSX from "@omegagrid/plugin-xlsx";
|
|
15
15
|
|
|
16
16
|
export const plugins = {
|
|
17
17
|
xlsx: pluginXLSX
|