@evoke-platform/context 1.8.0-dev.0 → 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 = {
@@ -225,6 +230,11 @@ export type DisplayConfiguration = {
225
230
  * this specifies which object it relates to when the field entry is rendered.
226
231
  */
227
232
  relatedObjectId?: string;
233
+ /**
234
+ * The ID of the file object for parameters of type 'file'.
235
+ * This can be either the system File object or one of its subtypes.
236
+ */
237
+ fileObjectId?: string;
228
238
  visibility?: VisibilityConfiguration | JsonLogic;
229
239
  viewLayout?: ViewLayoutEntityReference;
230
240
  choicesDisplay?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.8.0-dev.0",
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",