@pdg/react-table 1.0.60 → 1.0.62
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/dist/Table/Table.types.d.ts +3 -2
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2864,6 +2864,7 @@ var TableCommonCell = function (_a) {
|
|
|
2864
2864
|
if (!menuOpen &&
|
|
2865
2865
|
column.type !== 'check' &&
|
|
2866
2866
|
column.type !== 'button' &&
|
|
2867
|
+
column.type !== 'button-ellipsis' &&
|
|
2867
2868
|
column.type !== 'buttons' &&
|
|
2868
2869
|
column.type !== 'img') {
|
|
2869
2870
|
e.stopPropagation();
|
|
@@ -2964,6 +2965,7 @@ var TableBodyCell = function (_a) {
|
|
|
2964
2965
|
} })));
|
|
2965
2966
|
break;
|
|
2966
2967
|
case 'button':
|
|
2968
|
+
case 'button-ellipsis':
|
|
2967
2969
|
data = (React.createElement(material.Box, { className: 'TableBoxyCell-button-box', onClick: menuOpen ? undefined : function (e) { return e.stopPropagation(); } }, data));
|
|
2968
2970
|
break;
|
|
2969
2971
|
case 'buttons':
|