@vuu-ui/vuu-table-types 0.13.72 → 0.13.73-beta.1
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 +18 -1
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -485,7 +485,24 @@ export interface HeaderCellProps
|
|
|
485
485
|
showColumnHeaderMenus?: ShowColumnHeaderNMenus;
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
-
export
|
|
488
|
+
export interface TableConfigChangeColumnRemoved {
|
|
489
|
+
type: "column-removed";
|
|
490
|
+
column: ColumnDescriptor;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export interface TableConfigChangeColumnPinned {
|
|
494
|
+
type: "column-pinned";
|
|
495
|
+
column: ColumnDescriptor;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
export declare type TableConfigChangeType =
|
|
499
|
+
| TableConfigChangeColumnRemoved
|
|
500
|
+
| TableConfigChangeColumnPinned;
|
|
501
|
+
|
|
502
|
+
export declare type TableConfigChangeHandler = (
|
|
503
|
+
config: TableConfig,
|
|
504
|
+
configChangeType?: TableConfigChangeType,
|
|
505
|
+
) => void;
|
|
489
506
|
|
|
490
507
|
export declare type CustomHeaderComponent = ComponentType<BaseRowProps>;
|
|
491
508
|
export declare type CustomHeaderElement =
|
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.73-beta.1",
|
|
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.73-beta.1",
|
|
6
|
+
"@vuu-ui/vuu-filter-types": "0.13.73-beta.1",
|
|
7
|
+
"@vuu-ui/vuu-protocol-types": "0.13.73-beta.1"
|
|
8
8
|
},
|
|
9
9
|
"author": "heswell",
|
|
10
10
|
"license": "Apache-2.0",
|