@vuu-ui/vuu-table 2.1.9 → 2.1.11
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/cjs/Table.js.map +1 -1
- package/cjs/cell-renderers/input-cell/InputCell.js +0 -1
- package/cjs/cell-renderers/input-cell/InputCell.js.map +1 -1
- package/cjs/data-row/DataRow.js +9 -2
- package/cjs/data-row/DataRow.js.map +1 -1
- package/cjs/table-cell/TableCell.js +7 -1
- package/cjs/table-cell/TableCell.js.map +1 -1
- package/cjs/table-data-source/useDataSource.js +0 -3
- package/cjs/table-data-source/useDataSource.js.map +1 -1
- package/cjs/useKeyboardNavigation.js.map +1 -1
- package/esm/Table.js.map +1 -1
- package/esm/cell-renderers/input-cell/InputCell.js +0 -1
- package/esm/cell-renderers/input-cell/InputCell.js.map +1 -1
- package/esm/data-row/DataRow.js +9 -2
- package/esm/data-row/DataRow.js.map +1 -1
- package/esm/table-cell/TableCell.js +7 -1
- package/esm/table-cell/TableCell.js.map +1 -1
- package/esm/table-data-source/useDataSource.js +0 -3
- package/esm/table-data-source/useDataSource.js.map +1 -1
- package/esm/useKeyboardNavigation.js.map +1 -1
- package/package.json +10 -10
- package/types/Table.d.ts +13 -0
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.1.
|
|
2
|
+
"version": "2.1.11",
|
|
3
3
|
"author": "heswell",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"devDependencies": {
|
|
6
|
-
"@vuu-ui/vuu-data-types": "2.1.
|
|
7
|
-
"@vuu-ui/vuu-table-types": "2.1.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "2.1.
|
|
6
|
+
"@vuu-ui/vuu-data-types": "2.1.11",
|
|
7
|
+
"@vuu-ui/vuu-table-types": "2.1.11",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "2.1.11"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@salt-ds/core": "1.54.1",
|
|
12
12
|
"@salt-ds/styles": "0.2.1",
|
|
13
13
|
"@salt-ds/window": "0.1.1",
|
|
14
|
-
"@vuu-ui/vuu-context-menu": "2.1.
|
|
15
|
-
"@vuu-ui/vuu-data-react": "2.1.
|
|
16
|
-
"@vuu-ui/vuu-popups": "2.1.
|
|
17
|
-
"@vuu-ui/vuu-table-extras": "2.1.
|
|
18
|
-
"@vuu-ui/vuu-ui-controls": "2.1.
|
|
19
|
-
"@vuu-ui/vuu-utils": "2.1.
|
|
14
|
+
"@vuu-ui/vuu-context-menu": "2.1.11",
|
|
15
|
+
"@vuu-ui/vuu-data-react": "2.1.11",
|
|
16
|
+
"@vuu-ui/vuu-popups": "2.1.11",
|
|
17
|
+
"@vuu-ui/vuu-table-extras": "2.1.11",
|
|
18
|
+
"@vuu-ui/vuu-ui-controls": "2.1.11",
|
|
19
|
+
"@vuu-ui/vuu-utils": "2.1.11"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"clsx": "^2.0.0",
|
package/types/Table.d.ts
CHANGED
|
@@ -26,6 +26,19 @@ export interface TableProps extends Omit<MeasuredContainerProps, "onDragStart" |
|
|
|
26
26
|
* Allow a block of cells to be selected. Typically to be copied.
|
|
27
27
|
*/
|
|
28
28
|
allowCellBlockSelection?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Allow columns to be manually resized by user. Default is true. This can also be
|
|
31
|
+
* set on individual ColumnDescriptors for more fine grained control.
|
|
32
|
+
*/
|
|
33
|
+
allowColumnResizing?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* If a ColumnPicker is offered for a table, default behaviour is to allow column
|
|
36
|
+
* addition and removal. If a ColumnMenu is configured, default behaviour is likewise
|
|
37
|
+
* to offer a 'remove' option. By setting this prop to false, column removal will not
|
|
38
|
+
* be supported. No 'remove' menu item will be made available in the column menu and the
|
|
39
|
+
* ColumnPicker will offer column position management only.
|
|
40
|
+
*/
|
|
41
|
+
allowColumnRemoval?: boolean;
|
|
29
42
|
/**
|
|
30
43
|
* Allow column headers to be dragged to re-arrange
|
|
31
44
|
*/
|