@vuu-ui/vuu-data-types 0.8.24-debug → 0.8.25-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/index.d.ts +8 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -62,6 +62,14 @@ export type DataSourceRow = [
|
|
|
62
62
|
...VuuRowDataItemType[]
|
|
63
63
|
];
|
|
64
64
|
|
|
65
|
+
export type DataSourceRowObject = {
|
|
66
|
+
index: number;
|
|
67
|
+
key: string;
|
|
68
|
+
isGroupRow: boolean;
|
|
69
|
+
isSelected: boolean;
|
|
70
|
+
data: VuuDataRowDto;
|
|
71
|
+
};
|
|
72
|
+
|
|
65
73
|
export type DataSourceRowPredicate = (row: DataSourceRow) => boolean;
|
|
66
74
|
|
|
67
75
|
export interface ContextMenuItemBase {
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.25-debug",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.8.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.8.25-debug",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.8.25-debug"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|