@vuu-ui/vuu-protocol-types 0.8.93 → 0.8.95
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 +25 -22
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -156,10 +156,17 @@ export interface VuuViewportChangeResponse {
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
export interface VuuViewportRangeRequest {
|
|
159
|
-
|
|
159
|
+
from: number;
|
|
160
|
+
to: number;
|
|
161
|
+
type: "CHANGE_VP_RANGE";
|
|
160
162
|
viewPortId: string;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface VuuViewportRangeResponse {
|
|
161
166
|
from: number;
|
|
162
167
|
to: number;
|
|
168
|
+
type: "CHANGE_VP_RANGE_SUCCESS";
|
|
169
|
+
viewPortId: string;
|
|
163
170
|
}
|
|
164
171
|
export interface ServerToClientDisableViewPortSuccess {
|
|
165
172
|
type: "DISABLE_VP_SUCCESS";
|
|
@@ -169,7 +176,13 @@ export interface ServerToClientEnableViewPortSuccess {
|
|
|
169
176
|
type: "ENABLE_VP_SUCCESS";
|
|
170
177
|
viewPortId: string;
|
|
171
178
|
}
|
|
172
|
-
|
|
179
|
+
|
|
180
|
+
export interface VuuViewportRemoveRequest {
|
|
181
|
+
type: "REMOVE_VP";
|
|
182
|
+
viewPortId: string;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export interface VuuViewportRemoveResponse {
|
|
173
186
|
type: "REMOVE_VP_SUCCESS";
|
|
174
187
|
viewPortId: string;
|
|
175
188
|
}
|
|
@@ -200,10 +213,10 @@ export declare type ServerMessageBody =
|
|
|
200
213
|
| ServerToClientLoginSuccess
|
|
201
214
|
| VuuViewportCreateResponse
|
|
202
215
|
| VuuViewportChangeResponse
|
|
203
|
-
|
|
|
216
|
+
| VuuViewportRangeResponse
|
|
204
217
|
| ServerToClientDisableViewPortSuccess
|
|
205
218
|
| ServerToClientEnableViewPortSuccess
|
|
206
|
-
|
|
|
219
|
+
| VuuViewportRemoveResponse
|
|
207
220
|
| ServerToClientSelectSuccess
|
|
208
221
|
| VuuTableMetaResponse
|
|
209
222
|
| VuuTableListResponse
|
|
@@ -245,21 +258,11 @@ export interface ClientToServerEnable {
|
|
|
245
258
|
type: "ENABLE_VP";
|
|
246
259
|
viewPortId: string;
|
|
247
260
|
}
|
|
248
|
-
export interface ClientToServerRemoveViewPort {
|
|
249
|
-
type: "REMOVE_VP";
|
|
250
|
-
viewPortId: string;
|
|
251
|
-
}
|
|
252
261
|
export interface ClientToServerSelection {
|
|
253
262
|
type: "SET_SELECTION";
|
|
254
263
|
selection: number[];
|
|
255
264
|
vpId: string;
|
|
256
265
|
}
|
|
257
|
-
export interface ClientToServerViewPortRange {
|
|
258
|
-
from: number;
|
|
259
|
-
to: number;
|
|
260
|
-
type: "CHANGE_VP_RANGE";
|
|
261
|
-
viewPortId: string;
|
|
262
|
-
}
|
|
263
266
|
export interface ClientToServerOpenTreeNode {
|
|
264
267
|
type: "OPEN_TREE_NODE";
|
|
265
268
|
vpId: string;
|
|
@@ -303,9 +306,9 @@ export declare type ClientMessageBody =
|
|
|
303
306
|
| VuuTableMetaRequest
|
|
304
307
|
| VuuViewportCreateRequest
|
|
305
308
|
| VuuViewportChangeRequest
|
|
306
|
-
|
|
|
309
|
+
| VuuViewportRemoveRequest
|
|
307
310
|
| ClientToServerSelection
|
|
308
|
-
|
|
|
311
|
+
| VuuViewportRangeRequest
|
|
309
312
|
| VuuViewportVisualLinksRequest
|
|
310
313
|
| VuuViewportMenusRequest
|
|
311
314
|
| ClientToServerOpenTreeNode
|
|
@@ -578,12 +581,12 @@ export interface VuuMenu {
|
|
|
578
581
|
|
|
579
582
|
export declare type VuuRowDataItemType = string | number | boolean;
|
|
580
583
|
|
|
581
|
-
export type VuuGroupDepth = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
582
|
-
export type VuuGroupExpanded = true | false;
|
|
583
|
-
export type VuuGroupPath = string;
|
|
584
|
-
export type VuuGroupLeaf = true | false;
|
|
585
|
-
export type VuuGroupLabel = string;
|
|
586
|
-
export type VuuGroupCount = number;
|
|
584
|
+
export declare type VuuGroupDepth = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
585
|
+
export declare type VuuGroupExpanded = true | false;
|
|
586
|
+
export declare type VuuGroupPath = string;
|
|
587
|
+
export declare type VuuGroupLeaf = true | false;
|
|
588
|
+
export declare type VuuGroupLabel = string;
|
|
589
|
+
export declare type VuuGroupCount = number;
|
|
587
590
|
|
|
588
591
|
export declare type VuuGroupDataRow = [
|
|
589
592
|
VuuGroupDepth,
|