@desynova-digital/components 8.19.31 → 8.19.33
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/atoms/icon/icons.json
CHANGED
|
@@ -1544,6 +1544,13 @@
|
|
|
1544
1544
|
"clipRule": "evenodd",
|
|
1545
1545
|
"width": 21,
|
|
1546
1546
|
"height":16
|
|
1547
|
+
},
|
|
1548
|
+
"export-download-icon": {
|
|
1549
|
+
"paths": [
|
|
1550
|
+
"M7.35685 14.632C6.51241 14.5431 5.72907 14.3098 5.00685 13.932C4.28463 13.5543 3.65963 13.0654 3.13185 12.4654C2.60407 11.8654 2.19019 11.182 1.89019 10.4154C1.59019 9.6487 1.44019 8.83759 1.44019 7.98203C1.44019 6.25981 2.00407 4.76536 3.13185 3.4987C4.25963 2.23203 5.67352 1.50981 7.37352 1.33203V2.33203C5.9513 2.54314 4.77352 3.18203 3.84019 4.2487C2.90685 5.31536 2.44019 6.55981 2.44019 7.98203C2.44019 9.40425 2.90407 10.6487 3.83185 11.7154C4.75963 12.782 5.93463 13.4209 7.35685 13.632V14.632ZM8.09019 11.332L4.75685 7.9987L5.47352 7.28203L7.59019 9.3987V4.66536H8.59019V9.3987L10.7069 7.28203L11.4235 7.9987L8.09019 11.332ZM8.82352 14.632V13.632C9.33463 13.5654 9.8263 13.4348 10.2985 13.2404C10.7707 13.0459 11.2069 12.7876 11.6069 12.4654L12.3402 13.1987C11.8291 13.5876 11.2763 13.9098 10.6819 14.1654C10.0874 14.4209 9.46796 14.5765 8.82352 14.632ZM11.6235 3.51536C11.2013 3.21536 10.7569 2.96259 10.2902 2.75703C9.82352 2.55148 9.33463 2.40981 8.82352 2.33203V1.33203C9.46796 1.40981 10.0846 1.5737 10.6735 1.8237C11.2624 2.0737 11.818 2.39314 12.3402 2.78203L11.6235 3.51536ZM13.2902 12.1654L12.5735 11.4654C12.8957 11.0543 13.1513 10.6126 13.3402 10.1404C13.5291 9.66814 13.6569 9.17648 13.7235 8.66536H14.7402C14.6624 9.30981 14.5013 9.92925 14.2569 10.5237C14.0124 11.1181 13.6902 11.6654 13.2902 12.1654ZM13.7235 7.2987C13.6569 6.78759 13.5291 6.29314 13.3402 5.81536C13.1513 5.33759 12.8957 4.8987 12.5735 4.4987L13.3569 3.81536C13.7457 4.32648 14.0569 4.87648 14.2902 5.46536C14.5235 6.05425 14.6735 6.66536 14.7402 7.2987H13.7235Z"
|
|
1551
|
+
],
|
|
1552
|
+
"width": 17,
|
|
1553
|
+
"height":16
|
|
1547
1554
|
}
|
|
1548
1555
|
}
|
|
1549
1556
|
}
|
package/molecules/table/table.js
CHANGED
|
@@ -1159,7 +1159,8 @@ var Table = function (_Component) {
|
|
|
1159
1159
|
getTableData = _props2.getTableData,
|
|
1160
1160
|
downloadAvailable = _props2.downloadAvailable,
|
|
1161
1161
|
tableLoading = _props2.tableLoading,
|
|
1162
|
-
tableLoadingAction = _props2.tableLoadingAction
|
|
1162
|
+
tableLoadingAction = _props2.tableLoadingAction,
|
|
1163
|
+
filtersStructure = _props2.filtersStructure;
|
|
1163
1164
|
var _state2 = this.state,
|
|
1164
1165
|
nestedTable = _state2.nestedTable,
|
|
1165
1166
|
searchedText = _state2.searchedText,
|
|
@@ -1397,7 +1398,7 @@ var Table = function (_Component) {
|
|
|
1397
1398
|
})
|
|
1398
1399
|
) || _react2.default.createElement(_Shimmer2.default, { height: "24px", width: "30px" })
|
|
1399
1400
|
),
|
|
1400
|
-
this.props.filtersStructure && this.props.filtersStructure.length && !tableLoading || tableLoadingAction ? _react2.default.createElement(_filter2.default, {
|
|
1401
|
+
this.props.filtersStructure && this.props.filtersStructure.length && !tableLoading || tableLoadingAction && filtersStructure.length ? _react2.default.createElement(_filter2.default, {
|
|
1401
1402
|
ref: this._filterRef,
|
|
1402
1403
|
initialFilters: this.props.initialFilters,
|
|
1403
1404
|
filtersStructure: this.props.filtersStructure,
|
|
@@ -1407,7 +1408,7 @@ var Table = function (_Component) {
|
|
|
1407
1408
|
filterMessage: this.props.filterMessage,
|
|
1408
1409
|
handleUserIdFilterChange: this.props.handleUserIdFilterChange,
|
|
1409
1410
|
userIdsList: this.props.userIdsList
|
|
1410
|
-
}) : tableLoading ? _react2.default.createElement(_Shimmer2.default, { height: "24px", width: "30px" }) : null,
|
|
1411
|
+
}) : tableLoading && filtersStructure.length ? _react2.default.createElement(_Shimmer2.default, { height: "24px", width: "30px" }) : null,
|
|
1411
1412
|
downloadAvailable && (!tableLoading || tableLoading && tableLoadingAction) && _react2.default.createElement(
|
|
1412
1413
|
"div",
|
|
1413
1414
|
{ className: "refresh-section" },
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynova-digital/components",
|
|
3
|
-
"version": "8.19.
|
|
3
|
+
"version": "8.19.33",
|
|
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.19.
|
|
10
|
+
"@desynova-digital/tokens": "8.19.33",
|
|
11
11
|
"prop-types": "^15.7.2",
|
|
12
12
|
"styled-components": "^4.3.2"
|
|
13
13
|
},
|