@desynova-digital/components 8.17.9 → 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 +5 -3
- package/package.json +2 -2
package/molecules/table/table.js
CHANGED
|
@@ -870,7 +870,9 @@ var Table = function (_Component) {
|
|
|
870
870
|
isRefreshActivated = _props.isRefreshActivated,
|
|
871
871
|
isRefreshDotVisible = _props.isRefreshDotVisible,
|
|
872
872
|
showSearchBox = _props.showSearchBox,
|
|
873
|
-
pageDropdown = _props.pageDropdown
|
|
873
|
+
pageDropdown = _props.pageDropdown,
|
|
874
|
+
getTableData = _props.getTableData,
|
|
875
|
+
downloadAvailable = _props.downloadAvailable;
|
|
874
876
|
var _state = this.state,
|
|
875
877
|
nestedTable = _state.nestedTable,
|
|
876
878
|
searchedText = _state.searchedText;
|
|
@@ -1102,7 +1104,7 @@ var Table = function (_Component) {
|
|
|
1102
1104
|
handleUserIdFilterChange: this.props.handleUserIdFilterChange,
|
|
1103
1105
|
userIdsList: this.props.userIdsList
|
|
1104
1106
|
}) : null,
|
|
1105
|
-
_react2.default.createElement(
|
|
1107
|
+
downloadAvailable && _react2.default.createElement(
|
|
1106
1108
|
"div",
|
|
1107
1109
|
{ className: "refresh-section" },
|
|
1108
1110
|
_react2.default.createElement(
|
|
@@ -1123,7 +1125,7 @@ var Table = function (_Component) {
|
|
|
1123
1125
|
iconHeight: 12
|
|
1124
1126
|
})
|
|
1125
1127
|
)
|
|
1126
|
-
),
|
|
1128
|
+
) || null,
|
|
1127
1129
|
false && _react2.default.createElement(
|
|
1128
1130
|
"div",
|
|
1129
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
|
},
|