@vuu-ui/vuu-table-types 0.13.34 → 0.13.35
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 +9 -0
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -491,3 +491,12 @@ export declare type CustomHeader = CustomHeaderComponent | CustomHeaderElement;
|
|
|
491
491
|
* [rowIndex, colIndex]
|
|
492
492
|
*/
|
|
493
493
|
export declare type CellPos = [number, number];
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* A callback prop, called when a custom row action is invoked. This will
|
|
497
|
+
* typically be from a buttom rendered within a row cell
|
|
498
|
+
*/
|
|
499
|
+
export declare type RowActionHandler<T extends string = string> = (
|
|
500
|
+
rowActionId: T,
|
|
501
|
+
row: DataSourceRow,
|
|
502
|
+
) => void;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-table-types",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.35",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@vuu-ui/vuu-data-types": "0.13.
|
|
6
|
-
"@vuu-ui/vuu-filter-types": "0.13.
|
|
7
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
5
|
+
"@vuu-ui/vuu-data-types": "0.13.35",
|
|
6
|
+
"@vuu-ui/vuu-filter-types": "0.13.35",
|
|
7
|
+
"@vuu-ui/vuu-protocol-types": "0.13.35"
|
|
8
8
|
},
|
|
9
9
|
"author": "heswell",
|
|
10
10
|
"license": "Apache-2.0",
|