@desynova-digital/components 8.17.10 → 8.17.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/molecules/table/table.js +4 -3
- package/package.json +2 -2
package/molecules/table/table.js
CHANGED
|
@@ -871,7 +871,8 @@ var Table = function (_Component) {
|
|
|
871
871
|
isRefreshDotVisible = _props.isRefreshDotVisible,
|
|
872
872
|
showSearchBox = _props.showSearchBox,
|
|
873
873
|
pageDropdown = _props.pageDropdown,
|
|
874
|
-
getTableData = _props.getTableData
|
|
874
|
+
getTableData = _props.getTableData,
|
|
875
|
+
downloadAvailable = _props.downloadAvailable;
|
|
875
876
|
var _state = this.state,
|
|
876
877
|
nestedTable = _state.nestedTable,
|
|
877
878
|
searchedText = _state.searchedText;
|
|
@@ -1103,7 +1104,7 @@ var Table = function (_Component) {
|
|
|
1103
1104
|
handleUserIdFilterChange: this.props.handleUserIdFilterChange,
|
|
1104
1105
|
userIdsList: this.props.userIdsList
|
|
1105
1106
|
}) : null,
|
|
1106
|
-
_react2.default.createElement(
|
|
1107
|
+
downloadAvailable && _react2.default.createElement(
|
|
1107
1108
|
"div",
|
|
1108
1109
|
{ className: "refresh-section" },
|
|
1109
1110
|
_react2.default.createElement(
|
|
@@ -1124,7 +1125,7 @@ var Table = function (_Component) {
|
|
|
1124
1125
|
iconHeight: 12
|
|
1125
1126
|
})
|
|
1126
1127
|
)
|
|
1127
|
-
),
|
|
1128
|
+
) || null,
|
|
1128
1129
|
false && _react2.default.createElement(
|
|
1129
1130
|
"div",
|
|
1130
1131
|
{ className: "column-show-holder" },
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynova-digital/components",
|
|
3
|
-
"version": "8.17.
|
|
3
|
+
"version": "8.17.11",
|
|
4
4
|
"description": "Components for Desynova Digital",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "desynova-digital",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": "desynova-digital",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@desynova-digital/tokens": "8.17.
|
|
10
|
+
"@desynova-digital/tokens": "8.17.11",
|
|
11
11
|
"prop-types": "^15.7.2",
|
|
12
12
|
"styled-components": "^4.3.2"
|
|
13
13
|
},
|