@omegagrid/bundle 0.2.55 → 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 (4) hide show
  1. package/icons.ts +1 -1
  2. package/index.ts +6 -1
  3. package/omegagrid.js +396 -398
  4. package/package.json +13 -13
package/icons.ts CHANGED
@@ -134,7 +134,7 @@ import { faXmark as falXmark } from '@fortawesome/pro-light-svg-icons/faXmark';
134
134
  import { faSpinner as falSpinner } from '@fortawesome/pro-light-svg-icons/faSpinner';
135
135
  import { faObjectUnion as falObjectUnion } from '@fortawesome/pro-light-svg-icons/faObjectUnion';
136
136
  import { faInputText as falInputText } from '@fortawesome/pro-light-svg-icons/faInputText';
137
- import { faListTree as falListTree } from '@fortawesome/pro-solid-svg-icons/faListTree';
137
+ import { faListTree as falListTree } from '@fortawesome/pro-light-svg-icons/faListTree';
138
138
 
139
139
  const faIcons: IconDefinition[] = [
140
140
  fasChevronUp,
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();