@vuu-ui/vuu-data-local 0.8.23-debug → 0.8.24-debug
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/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-local",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.24-debug",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-data-types": "0.8.
|
|
8
|
-
"@vuu-ui/vuu-table-types": "0.8.
|
|
9
|
-
"@vuu-ui/vuu-filter-types": "0.8.
|
|
10
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
7
|
+
"@vuu-ui/vuu-data-types": "0.8.24-debug",
|
|
8
|
+
"@vuu-ui/vuu-table-types": "0.8.24-debug",
|
|
9
|
+
"@vuu-ui/vuu-filter-types": "0.8.24-debug",
|
|
10
|
+
"@vuu-ui/vuu-protocol-types": "0.8.24-debug"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@vuu-ui/vuu-utils": "0.8.
|
|
13
|
+
"@vuu-ui/vuu-utils": "0.8.24-debug"
|
|
14
14
|
},
|
|
15
|
+
"sideEffects": false,
|
|
15
16
|
"files": [
|
|
16
17
|
"cjs",
|
|
17
18
|
"esm",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DataSource, DataSourceConfig, DataSourceConstructorProps, DataSourceEvents, DataSourceFilter, DataSourceRow, DataSourceStatus, MenuRpcResponse, Selection, SubscribeCallback, SubscribeProps, TableSchema, VuuUIMessageInRPCEditReject, VuuUIMessageInRPCEditResponse } from "@vuu-ui/vuu-data-types";
|
|
2
2
|
import { ClientToServerEditRpc, ClientToServerMenuRPC, LinkDescriptorWithLabel, VuuAggregation, VuuGroupBy, VuuMenu, VuuRange, VuuRowDataItemType, VuuSort } from "@vuu-ui/vuu-protocol-types";
|
|
3
3
|
import { ColumnDescriptor } from "@vuu-ui/vuu-table-types";
|
|
4
|
-
import { ColumnMap, EventEmitter } from "@vuu-ui/vuu-utils";
|
|
4
|
+
import { ColumnMap, EventEmitter, DataSourceConfigChanges } from "@vuu-ui/vuu-utils";
|
|
5
5
|
export interface ArrayDataSourceConstructorProps extends Omit<DataSourceConstructorProps, "bufferSize" | "table"> {
|
|
6
6
|
columnDescriptors: ColumnDescriptor[];
|
|
7
7
|
data: Array<VuuRowDataItemType[]>;
|
|
@@ -49,7 +49,7 @@ export declare class ArrayDataSource extends EventEmitter<DataSourceEvents> impl
|
|
|
49
49
|
get table(): import("@vuu-ui/vuu-data-types").TableSchemaTable;
|
|
50
50
|
get config(): DataSourceConfig;
|
|
51
51
|
set config(config: DataSourceConfig);
|
|
52
|
-
applyConfig(config: DataSourceConfig):
|
|
52
|
+
applyConfig(config: DataSourceConfig): DataSourceConfigChanges | undefined;
|
|
53
53
|
get selectedRowsCount(): number;
|
|
54
54
|
get size(): number;
|
|
55
55
|
get range(): VuuRange;
|
|
@@ -27,7 +27,7 @@ export declare class JsonDataSource extends EventEmitter<DataSourceEvents> imple
|
|
|
27
27
|
closeTreeNode(key: string, cascade?: boolean): void;
|
|
28
28
|
get status(): DataSourceStatus;
|
|
29
29
|
get config(): WithFullConfig;
|
|
30
|
-
applyConfig():
|
|
30
|
+
applyConfig(): import("@vuu-ui/vuu-utils").MaybeDataSourceConfigChanges;
|
|
31
31
|
get selectedRowsCount(): number;
|
|
32
32
|
get size(): number;
|
|
33
33
|
get range(): VuuRange;
|