@vuu-ui/vuu-table-types 0.8.88 → 0.8.89
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 +6 -0
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -246,6 +246,8 @@ export type PinLocation = "left" | "right" | "floating";
|
|
|
246
246
|
|
|
247
247
|
export type ColumnAlignment = "left" | "right";
|
|
248
248
|
|
|
249
|
+
export type BulkEdit = "bulk" | false | "read-only";
|
|
250
|
+
|
|
249
251
|
/** This is a public description of a Column, defining all the
|
|
250
252
|
* column attributes that can be defined by client. */
|
|
251
253
|
export interface ColumnDescriptor {
|
|
@@ -255,6 +257,10 @@ export interface ColumnDescriptor {
|
|
|
255
257
|
colHeaderContentRenderer?: string;
|
|
256
258
|
colHeaderLabelRenderer?: string;
|
|
257
259
|
editable?: boolean;
|
|
260
|
+
/**
|
|
261
|
+
There are three values for editableBulk. When editableBulk is false, user will not see the column in BulkEditPanel. When editableBulk is "bulk", user will see the column in BulkEditPanel and be able to bulk-edit on BulkEditRow. When editableBulk is "read-only", user will see the column but won't be able to edit.
|
|
262
|
+
*/
|
|
263
|
+
editableBulk?: BulkEdit;
|
|
258
264
|
flex?: number;
|
|
259
265
|
/**
|
|
260
266
|
Optional additional level(s) of heading to display above label.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-table-types",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.89",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@vuu-ui/vuu-data-types": "0.8.
|
|
6
|
-
"@vuu-ui/vuu-filter-types": "0.8.
|
|
7
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
5
|
+
"@vuu-ui/vuu-data-types": "0.8.89",
|
|
6
|
+
"@vuu-ui/vuu-filter-types": "0.8.89",
|
|
7
|
+
"@vuu-ui/vuu-protocol-types": "0.8.89"
|
|
8
8
|
},
|
|
9
9
|
"author": "heswell",
|
|
10
10
|
"license": "Apache-2.0",
|