@vuu-ui/vuu-table-types 0.8.26-debug → 0.8.27-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 +4 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -359,10 +359,13 @@ export type TableColumnResizeHandler = (
|
|
|
359
359
|
width?: number
|
|
360
360
|
) => void;
|
|
361
361
|
|
|
362
|
-
export interface HeaderCellProps
|
|
362
|
+
export interface HeaderCellProps
|
|
363
|
+
extends Omit<HTMLAttributes<HTMLDivElement>, "onClick"> {
|
|
363
364
|
classBase?: string;
|
|
364
365
|
column: RuntimeColumnDescriptor;
|
|
366
|
+
onClick?: (evt: React.MouseEvent | React.KeyboardEvent) => void;
|
|
365
367
|
onResize?: TableColumnResizeHandler;
|
|
368
|
+
showMenu?: boolean;
|
|
366
369
|
}
|
|
367
370
|
|
|
368
371
|
export type TableConfigChangeHandler = (config: TableConfig) => void;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-table-types",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.27-debug",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
5
|
+
"@vuu-ui/vuu-protocol-types": "0.8.27-debug"
|
|
6
6
|
},
|
|
7
7
|
"author": "heswell",
|
|
8
8
|
"license": "Apache-2.0",
|