@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.
- package/index.d.ts +6 -1
- 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 =
|
|
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
|
}
|