@desynova-digital/components 8.18.9 → 8.19.0
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
|
@@ -1426,6 +1426,20 @@
|
|
|
1426
1426
|
],
|
|
1427
1427
|
"width": 15,
|
|
1428
1428
|
"height": 13
|
|
1429
|
+
},
|
|
1430
|
+
"remove_small": {
|
|
1431
|
+
"paths": [
|
|
1432
|
+
"M6 0.929408H0V0.0722656H6V0.929408Z"
|
|
1433
|
+
],
|
|
1434
|
+
"width": 6,
|
|
1435
|
+
"height": 1
|
|
1436
|
+
},
|
|
1437
|
+
"add_small": {
|
|
1438
|
+
"paths": [
|
|
1439
|
+
"M3.42857 4.57143L0.5 4.57143L0.5 4.42857L3.42857 4.42857L3.92857 4.42857L3.92857 3.92857L3.92857 1L4.07143 1L4.07143 3.92857L4.07143 4.42857L4.57143 4.42857L7.5 4.42857L7.5 4.57143L4.57143 4.57143L4.07143 4.57143L4.07143 5.07143L4.07143 8L3.92857 8L3.92857 5.07143L3.92857 4.57143L3.42857 4.57143Z"
|
|
1440
|
+
],
|
|
1441
|
+
"width": 8,
|
|
1442
|
+
"height": 8
|
|
1429
1443
|
}
|
|
1430
1444
|
}
|
|
1431
1445
|
}
|
package/molecules/table/table.js
CHANGED
|
@@ -870,6 +870,7 @@ var Table = function (_Component) {
|
|
|
870
870
|
isRefreshActivated = _props.isRefreshActivated,
|
|
871
871
|
isRefreshDotVisible = _props.isRefreshDotVisible,
|
|
872
872
|
showSearchBox = _props.showSearchBox,
|
|
873
|
+
showTableHeader = _props.showTableHeader,
|
|
873
874
|
pageDropdown = _props.pageDropdown,
|
|
874
875
|
getTableData = _props.getTableData,
|
|
875
876
|
downloadAvailable = _props.downloadAvailable;
|
|
@@ -1001,7 +1002,7 @@ var Table = function (_Component) {
|
|
|
1001
1002
|
return _react2.default.createElement(
|
|
1002
1003
|
_react2.default.Fragment,
|
|
1003
1004
|
null,
|
|
1004
|
-
_react2.default.createElement(
|
|
1005
|
+
showTableHeader && _react2.default.createElement(
|
|
1005
1006
|
Table.Title,
|
|
1006
1007
|
{ className: "table-title-holder", theme: this.props.theme },
|
|
1007
1008
|
_react2.default.createElement(
|
|
@@ -1346,7 +1347,8 @@ Table.defaultProps = {
|
|
|
1346
1347
|
},
|
|
1347
1348
|
maxShowNoOfColumns: 8,
|
|
1348
1349
|
searchable: false,
|
|
1349
|
-
selectable: false
|
|
1350
|
+
selectable: false,
|
|
1351
|
+
showTableHeader: true
|
|
1350
1352
|
};
|
|
1351
1353
|
|
|
1352
1354
|
exports.default = Table;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynova-digital/components",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.19.0",
|
|
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.
|
|
10
|
+
"@desynova-digital/tokens": "8.19.0",
|
|
11
11
|
"prop-types": "^15.7.2",
|
|
12
12
|
"styled-components": "^4.3.2"
|
|
13
13
|
},
|