@vuu-ui/vuu-data-types 0.13.65 → 0.13.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.
- package/index.d.ts +16 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -261,6 +261,13 @@ export interface DataSourceDisabledMessage extends MessageWithClientViewportId {
|
|
|
261
261
|
export interface DataSourceEnabledMessage extends MessageWithClientViewportId {
|
|
262
262
|
type: "enabled";
|
|
263
263
|
}
|
|
264
|
+
export interface DataSourceFrozenMessage extends MessageWithClientViewportId {
|
|
265
|
+
type: "frozen";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
export interface DataSourceUnfrozenMessage extends MessageWithClientViewportId {
|
|
269
|
+
type: "unfrozen";
|
|
270
|
+
}
|
|
264
271
|
|
|
265
272
|
export interface DataSourceColumnsMessage extends MessageWithClientViewportId {
|
|
266
273
|
type: "columns";
|
|
@@ -349,6 +356,8 @@ export declare type DataSourceCallbackMessage =
|
|
|
349
356
|
| DataSourceDebounceRequest
|
|
350
357
|
| DataSourceDisabledMessage
|
|
351
358
|
| DataSourceEnabledMessage
|
|
359
|
+
| DataSourceFrozenMessage
|
|
360
|
+
| DataSourceUnfrozenMessage
|
|
352
361
|
| DataSourceMenusMessage
|
|
353
362
|
| DataSourceSubscribedMessage
|
|
354
363
|
| DataSourceVisualLinkCreatedMessage
|
|
@@ -419,6 +428,13 @@ export interface WithSort extends DataSourceConfig {
|
|
|
419
428
|
|
|
420
429
|
export interface DataSourceConstructorProps
|
|
421
430
|
extends WithBaseFilter<DataSourceConfig> {
|
|
431
|
+
/**
|
|
432
|
+
* If provided, these column names will always be included in subscription, even
|
|
433
|
+
* if not directly requested, via columns property. Useful where columns may not
|
|
434
|
+
* be required/wanted in table, but are required for other purposes, e.g to support
|
|
435
|
+
* filters on columns not in rendered table.
|
|
436
|
+
*/
|
|
437
|
+
autosubscribeColumns?: string[];
|
|
422
438
|
bufferSize?: number;
|
|
423
439
|
table: VuuTable;
|
|
424
440
|
title?: string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.67",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.13.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.13.67",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.13.67"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|