@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.
Files changed (2) hide show
  1. package/index.d.ts +9 -0
  2. 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.34",
3
+ "version": "0.13.35",
4
4
  "devDependencies": {
5
- "@vuu-ui/vuu-data-types": "0.13.34",
6
- "@vuu-ui/vuu-filter-types": "0.13.34",
7
- "@vuu-ui/vuu-protocol-types": "0.13.34"
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",