@vuu-ui/vuu-protocol-types 0.6.13 → 0.6.14

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 +6 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -36,7 +36,7 @@ export interface VuuMenu {
36
36
 
37
37
  export type VuuRowDataItemType = string | number | boolean;
38
38
 
39
- export type VuuDataRow = [number, number, ...data: VuuRowDataItemType[]];
39
+ export type VuuDataRow = VuuRowDataItemType[];
40
40
 
41
41
  export declare type VuuRow = {
42
42
  data: VuuDataRow;
@@ -155,6 +155,11 @@ export interface ServerToClientCreateViewPortSuccess {
155
155
  viewPortId: string;
156
156
  }
157
157
  export interface ServerToClientChangeViewPortSuccess {
158
+ aggregations: VuuAggregation[];
159
+ columns: VuuColumns;
160
+ filterSpec: VuuFilter;
161
+ groupBy: VuuGroupBy;
162
+ sort: VuuSort;
158
163
  type: "CHANGE_VP_SUCCESS";
159
164
  viewPortId: string;
160
165
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.6.13",
3
+ "version": "0.6.14",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},