@vuu-ui/vuu-data-types 2.1.3 → 2.1.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/index.d.ts +5 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -546,10 +546,15 @@ export declare type DataSourceSuspenseProps = {
|
|
|
546
546
|
escalateDelay?: number;
|
|
547
547
|
};
|
|
548
548
|
|
|
549
|
+
export type EditSessionMode = "selected-rows" | "all-rows";
|
|
550
|
+
|
|
549
551
|
export interface DataSource
|
|
550
552
|
extends IEventEmitter<DataSourceEvents>,
|
|
551
553
|
Partial<TypeaheadSuggestionProvider> {
|
|
552
554
|
aggregations: VuuAggregation[];
|
|
555
|
+
beginEditSession?: (
|
|
556
|
+
editSessionMode?: EditSessionMode,
|
|
557
|
+
) => Promise<RpcResult> | undefined;
|
|
553
558
|
closeTreeNode: (keyOrIndex: string | number, cascade?: boolean) => void;
|
|
554
559
|
columns: string[];
|
|
555
560
|
config: WithBaseFilter<WithFullConfig>;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "2.1.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "2.1.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "2.1.5",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "2.1.5"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|