@vuu-ui/vuu-data-remote 3.3.3 → 3.3.5
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 +7 -7
- package/src/VuuDataSource.js +2 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.3.
|
|
2
|
+
"version": "3.3.5",
|
|
3
3
|
"main": "./src/index.js",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
"type-defs": "node ../../scripts/build-type-defs.mjs"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@vuu-ui/vuu-data-types": "3.3.
|
|
15
|
-
"@vuu-ui/vuu-table-types": "3.3.
|
|
16
|
-
"@vuu-ui/vuu-filter-types": "3.3.
|
|
17
|
-
"@vuu-ui/vuu-protocol-types": "3.3.
|
|
14
|
+
"@vuu-ui/vuu-data-types": "3.3.5",
|
|
15
|
+
"@vuu-ui/vuu-table-types": "3.3.5",
|
|
16
|
+
"@vuu-ui/vuu-filter-types": "3.3.5",
|
|
17
|
+
"@vuu-ui/vuu-protocol-types": "3.3.5"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@vuu-ui/vuu-filter-parser": "3.3.
|
|
21
|
-
"@vuu-ui/vuu-utils": "3.3.
|
|
20
|
+
"@vuu-ui/vuu-filter-parser": "3.3.5",
|
|
21
|
+
"@vuu-ui/vuu-utils": "3.3.5"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"README.md",
|
package/src/VuuDataSource.js
CHANGED
|
@@ -436,11 +436,12 @@ class VuuDataSource extends BaseDataSource {
|
|
|
436
436
|
const { table: sessionTable } = rpcResponse.data;
|
|
437
437
|
const effectiveOverrides = overrides ?? this.#session;
|
|
438
438
|
assertExpectedSessionTable(sessionTable, effectiveOverrides?.table);
|
|
439
|
-
|
|
439
|
+
const sessionDataSource = new VuuDataSource({
|
|
440
440
|
...sessionDataSourceConfig(this.config, effectiveOverrides?.columns),
|
|
441
441
|
table: sessionTable,
|
|
442
442
|
viewport: sessionTable.table
|
|
443
443
|
});
|
|
444
|
+
return sessionDataSource;
|
|
444
445
|
}
|
|
445
446
|
throw Error(`[VuuDataSource] createSessionDataSource ${rpcResponse?.errorMessage}`);
|
|
446
447
|
}
|