@evoke-platform/context 1.8.0-dev.1 → 1.8.0-dev.2

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.
@@ -52,13 +52,18 @@ export type PanelViewSection = {
52
52
  entries?: PanelViewEntry[];
53
53
  };
54
54
  export type PanelViewSections = {
55
+ type: 'sections';
55
56
  sections: PanelViewSection[];
57
+ visibility?: VisibilityConfiguration | JsonLogic;
56
58
  };
57
59
  export type PanelViewColumn = {
58
60
  entries?: PanelViewEntry[];
61
+ width: number;
59
62
  };
60
63
  export type PanelViewColumns = {
64
+ type: 'columns';
61
65
  columns: PanelViewColumn[];
66
+ visibility?: VisibilityConfiguration | JsonLogic;
62
67
  };
63
68
  export type PanelViewEntry = ReadonlyField | PanelViewSections | PanelViewColumns | Content;
64
69
  export type PanelViewLayout = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.8.0-dev.1",
3
+ "version": "1.8.0-dev.2",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",