@reltio/components 1.4.1584 → 1.4.1586
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/components/crosswalks/AttributesTable/AttributesTable.js +1 -1
- package/cjs/components/crosswalks/AttributesTable/cell-renderers/styles.js +4 -4
- package/esm/components/crosswalks/AttributesTable/AttributesTable.js +1 -1
- package/esm/components/crosswalks/AttributesTable/cell-renderers/styles.js +4 -4
- package/package.json +3 -3
|
@@ -135,7 +135,7 @@ var AttributesTable = function (_a) {
|
|
|
135
135
|
react_1.default.createElement(BasicTableView_1.ColumnsSettings, { columnsData: helpers_1.COLUMNS_DATA, selectedColumns: visibleColumns, onChangeColumns: onChangeVisibleColumns })),
|
|
136
136
|
react_1.default.createElement("div", { className: styles.tableContent },
|
|
137
137
|
isLoading && react_1.default.createElement(LinearLoadIndicator_1.default, null),
|
|
138
|
-
react_1.default.createElement(BasicTableView_1.BasicTable, { fixFirstColumn: true, headRowHeight: 48, defaultColumnWidth: 250, defaultColumnMinWidth: 200, columnsData: visibleColumnsData, dndRowReorderingEnabled:
|
|
138
|
+
react_1.default.createElement(BasicTableView_1.BasicTable, { fixFirstColumn: true, headRowHeight: 48, defaultColumnWidth: 250, defaultColumnMinWidth: 200, columnsData: visibleColumnsData, dndRowReorderingEnabled: false, dndRowReorderingHandler: handleReorderAttributeTypes, getIdFromRowValue: getIdFromRowValue, rowsData: rowsData, renderRowCell: renderRowCell, getRowCellHeight: getRowCellHeight, context: tableContext })),
|
|
139
139
|
react_1.default.createElement(ConfirmDeleteDialog_1.default, { open: !!pendingDeletion, onClose: function () { return setPendingDeletion(null); }, onConfirm: handleDelete }),
|
|
140
140
|
react_1.default.createElement(ConfirmEditIgnoredDialog_1.default, { open: !!pendingIgnoredEditing, onClose: function () { return setPendingIgnoredEditing(null); }, onConfirmEditWithIgnore: function () { return onEdit(pendingIgnoredEditing); }, onConfirmEditWithoutIgnore: function () {
|
|
141
141
|
onIgnore({ attributeValue: pendingIgnoredEditing.attributeValue });
|
|
@@ -31,10 +31,10 @@ exports.useStyles = (0, styles_1.makeStyles)(function (theme) { return ({
|
|
|
31
31
|
padding: '15px 15px 0 15px',
|
|
32
32
|
'&:last-child': {
|
|
33
33
|
paddingBottom: '15px'
|
|
34
|
-
}
|
|
35
|
-
'&:hover $dragIndicator': {
|
|
36
|
-
|
|
37
|
-
},
|
|
34
|
+
}
|
|
35
|
+
// '&:hover $dragIndicator': {
|
|
36
|
+
// display: 'block'
|
|
37
|
+
// },
|
|
38
38
|
},
|
|
39
39
|
dragIndicator: {
|
|
40
40
|
display: 'none',
|
|
@@ -107,7 +107,7 @@ var AttributesTable = function (_a) {
|
|
|
107
107
|
React.createElement(ColumnsSettings, { columnsData: COLUMNS_DATA, selectedColumns: visibleColumns, onChangeColumns: onChangeVisibleColumns })),
|
|
108
108
|
React.createElement("div", { className: styles.tableContent },
|
|
109
109
|
isLoading && React.createElement(LinearLoadIndicator, null),
|
|
110
|
-
React.createElement(BasicTable, { fixFirstColumn: true, headRowHeight: 48, defaultColumnWidth: 250, defaultColumnMinWidth: 200, columnsData: visibleColumnsData, dndRowReorderingEnabled:
|
|
110
|
+
React.createElement(BasicTable, { fixFirstColumn: true, headRowHeight: 48, defaultColumnWidth: 250, defaultColumnMinWidth: 200, columnsData: visibleColumnsData, dndRowReorderingEnabled: false, dndRowReorderingHandler: handleReorderAttributeTypes, getIdFromRowValue: getIdFromRowValue, rowsData: rowsData, renderRowCell: renderRowCell, getRowCellHeight: getRowCellHeight, context: tableContext })),
|
|
111
111
|
React.createElement(ConfirmDeleteDialog, { open: !!pendingDeletion, onClose: function () { return setPendingDeletion(null); }, onConfirm: handleDelete }),
|
|
112
112
|
React.createElement(ConfirmEditIgnoredDialog, { open: !!pendingIgnoredEditing, onClose: function () { return setPendingIgnoredEditing(null); }, onConfirmEditWithIgnore: function () { return onEdit(pendingIgnoredEditing); }, onConfirmEditWithoutIgnore: function () {
|
|
113
113
|
onIgnore({ attributeValue: pendingIgnoredEditing.attributeValue });
|
|
@@ -28,10 +28,10 @@ export var useStyles = makeStyles(function (theme) { return ({
|
|
|
28
28
|
padding: '15px 15px 0 15px',
|
|
29
29
|
'&:last-child': {
|
|
30
30
|
paddingBottom: '15px'
|
|
31
|
-
}
|
|
32
|
-
'&:hover $dragIndicator': {
|
|
33
|
-
|
|
34
|
-
},
|
|
31
|
+
}
|
|
32
|
+
// '&:hover $dragIndicator': {
|
|
33
|
+
// display: 'block'
|
|
34
|
+
// },
|
|
35
35
|
},
|
|
36
36
|
dragIndicator: {
|
|
37
37
|
display: 'none',
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1586",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"module": "./esm/index.js",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@date-io/moment": "^1.3.5",
|
|
9
9
|
"@react-google-maps/api": "2.7.0",
|
|
10
|
-
"@reltio/mdm-module": "^1.4.
|
|
11
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
10
|
+
"@reltio/mdm-module": "^1.4.1586",
|
|
11
|
+
"@reltio/mdm-sdk": "^1.4.1586",
|
|
12
12
|
"classnames": "^2.2.5",
|
|
13
13
|
"d3-cloud": "^1.2.5",
|
|
14
14
|
"d3-geo": "^2.0.1",
|