@vuu-ui/vuu-protocol-types 0.6.3 → 0.6.5
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.
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -80,9 +80,13 @@ export declare type VuuLinkDescriptor = {
|
|
|
80
80
|
*
|
|
81
81
|
* The Label is added by client code, if user has assigned a custom
|
|
82
82
|
* Title to component bound to viewport.
|
|
83
|
+
* The parentClientVpId is also added by client. This is needed as the
|
|
84
|
+
* client vpId persists across sessions, whereas the server vpId does
|
|
85
|
+
* not.
|
|
83
86
|
*/
|
|
84
87
|
export type LinkDescriptorWithLabel = VuuLinkDescriptor & {
|
|
85
88
|
label?: string;
|
|
89
|
+
parentClientVpId: string;
|
|
86
90
|
};
|
|
87
91
|
|
|
88
92
|
export declare type VuuColumns = string[];
|