@vuu-ui/vuu-data-types 0.8.65 → 0.8.67

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 (2) hide show
  1. package/index.d.ts +18 -9
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -491,6 +491,11 @@ export interface DataSource
491
491
  ) => Promise<void>;
492
492
  table?: VuuTable;
493
493
  readonly tableSchema?: TableSchema;
494
+ /**
495
+ * We allow a title because a context menu action can reference a target table, e.g. as a Visual Link target.
496
+ * Users can edit titles on components. If so, and this is a table component, we will display this title in
497
+ * the context menu rather than the underlying table name (which may not be unique within the layout)
498
+ */
494
499
  title?: string;
495
500
  unsubscribe: () => void;
496
501
  viewport?: string;
@@ -620,18 +625,22 @@ export interface VuuUIMessageInMenuRej {
620
625
  type: "VIEW_PORT_MENU_REJ";
621
626
  }
622
627
 
623
- export type VuuUIMessageIn =
624
- | VuuUIMessageInConnected
625
- | VuuUIMessageInConnectionFailed
626
- | VuuUIMessageInWorkerReady
627
- | VuuUIMessageInRPC
628
- | ViewportRpcResponse
628
+ export type VuuUiMessageInRequestResponse =
629
+ | VuuUIMessageInMenuRej
629
630
  | MenuRpcResponse
630
631
  | MenuRpcReject
631
- | VuuUIMessageInTableList
632
- | VuuUIMessageInTableMeta
632
+ | VuuUIMessageInRPC
633
633
  | VuuUIMessageInRPCEditReject
634
- | VuuUIMessageInRPCEditResponse;
634
+ | VuuUIMessageInRPCEditResponse
635
+ | ViewportRpcResponse
636
+ | VuuUIMessageInTableList
637
+ | VuuUIMessageInTableMeta;
638
+
639
+ export type VuuUIMessageIn =
640
+ | VuuUiMessageInRequestResponse
641
+ | VuuUIMessageInConnected
642
+ | VuuUIMessageInConnectionFailed
643
+ | VuuUIMessageInWorkerReady;
635
644
 
636
645
  export type WebSocketProtocol = string | string[] | undefined;
637
646
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-data-types",
3
- "version": "0.8.65",
3
+ "version": "0.8.67",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-filter-types": "0.8.65",
8
- "@vuu-ui/vuu-protocol-types": "0.8.65"
7
+ "@vuu-ui/vuu-filter-types": "0.8.67",
8
+ "@vuu-ui/vuu-protocol-types": "0.8.67"
9
9
  },
10
10
  "dependencies": {},
11
11
  "peerDependencies": {},