@vuu-ui/vuu-table-types 0.13.49 → 0.13.50
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 -0
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -417,6 +417,7 @@ export interface ColumnMenuPermissions extends SettingsPermissions {
|
|
|
417
417
|
allowGroup?: boolean;
|
|
418
418
|
allowAggregation?: boolean;
|
|
419
419
|
allowHide?: boolean;
|
|
420
|
+
allowRemove?: boolean;
|
|
420
421
|
allowPin: boolean;
|
|
421
422
|
}
|
|
422
423
|
|
|
@@ -471,10 +472,13 @@ export interface RowProps extends BaseRowProps {
|
|
|
471
472
|
export interface HeaderCellProps
|
|
472
473
|
extends Omit<HTMLAttributes<HTMLDivElement>, "id" | "onClick"> {
|
|
473
474
|
allowDragColumnHeader?: boolean;
|
|
475
|
+
allowSelectAll?: boolean;
|
|
476
|
+
allRowsSelected?: boolean;
|
|
474
477
|
classBase?: string;
|
|
475
478
|
column: RuntimeColumnDescriptor;
|
|
476
479
|
id: string;
|
|
477
480
|
index: number;
|
|
481
|
+
onCheckBoxColumnHeaderClick?: () => void;
|
|
478
482
|
onClick?: (evt: React.MouseEvent | React.KeyboardEvent) => void;
|
|
479
483
|
onResize?: TableColumnResizeHandler;
|
|
480
484
|
showColumnHeaderMenus?: ShowColumnHeaderNMenus;
|
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.50",
|
|
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.50",
|
|
6
|
+
"@vuu-ui/vuu-filter-types": "0.13.50",
|
|
7
|
+
"@vuu-ui/vuu-protocol-types": "0.13.50"
|
|
8
8
|
},
|
|
9
9
|
"author": "heswell",
|
|
10
10
|
"license": "Apache-2.0",
|