@omegagrid/bundle 0.2.56 → 0.2.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.
Files changed (3) hide show
  1. package/index.ts +6 -1
  2. package/omegagrid.js +1 -1
  3. package/package.json +13 -13
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
- export * as core from "@omegagrid/core";
4
+ import * 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";
@@ -11,6 +11,8 @@ export * as toolbar from "@omegagrid/toolbar";
11
11
  export * as tree from "@omegagrid/tree";
12
12
  import * as pluginXLSX from "@omegagrid/plugin-xlsx";
13
13
 
14
+ export { core };
15
+
14
16
  export const plugins = {
15
17
  xlsx: pluginXLSX
16
18
  };
@@ -23,5 +25,8 @@ const pkg = {
23
25
  export { pkg as package };
24
26
 
25
27
  import { registerIcons } from './icons';
28
+ import { getThemeManager } from "@omegagrid/core";
29
+
30
+ getThemeManager().activate('light');
26
31
 
27
32
  registerIcons();