@desynova-digital/components 8.19.45 → 8.19.47
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.
|
@@ -243,7 +243,7 @@ var Thumbnail = function Thumbnail(props) {
|
|
|
243
243
|
}) || null
|
|
244
244
|
)
|
|
245
245
|
),
|
|
246
|
-
file_type &&
|
|
246
|
+
file_type && !thumbnail ? _react2.default.createElement(
|
|
247
247
|
"div",
|
|
248
248
|
{ className: "thumbnail-image-block background-block" },
|
|
249
249
|
_react2.default.createElement(
|
package/atoms/icon/icons.json
CHANGED
|
@@ -1565,6 +1565,13 @@
|
|
|
1565
1565
|
],
|
|
1566
1566
|
"width": 24,
|
|
1567
1567
|
"height": 24
|
|
1568
|
+
},
|
|
1569
|
+
"video-icon": {
|
|
1570
|
+
"paths": [
|
|
1571
|
+
"M1.8 3.6H0V16.2C0 17.19 0.81 18 1.8 18H14.4V16.2H1.8V3.6ZM16.2 0H5.4C4.41 0 3.6 0.81 3.6 1.8V12.6C3.6 13.59 4.41 14.4 5.4 14.4H16.2C17.19 14.4 18 13.59 18 12.6V1.8C18 0.81 17.19 0 16.2 0ZM16.2 12.6H5.4V1.8H16.2V12.6ZM9 3.15V11.25L14.4 7.2L9 3.15Z"
|
|
1572
|
+
],
|
|
1573
|
+
"width": 18,
|
|
1574
|
+
"height": 18
|
|
1568
1575
|
}
|
|
1569
1576
|
}
|
|
1570
1577
|
}
|
package/molecules/table/table.js
CHANGED
|
@@ -465,7 +465,11 @@ var Table = function (_Component) {
|
|
|
465
465
|
if (item[column.field] || column.percentageField && column.percentageField.field && item[column.percentageField.field]) {
|
|
466
466
|
return _react2.default.createElement(
|
|
467
467
|
_label2.default,
|
|
468
|
-
{
|
|
468
|
+
{
|
|
469
|
+
percentageStatus: column.percentageField && column.percentageField.field && item[column.percentageField.field],
|
|
470
|
+
percentageField: column.percentageField,
|
|
471
|
+
status: item[column.field]
|
|
472
|
+
},
|
|
469
473
|
item[column.field]
|
|
470
474
|
);
|
|
471
475
|
}
|
|
@@ -1652,7 +1656,7 @@ Table.Cell = _styledComponents2.default.td(_templateObject10, function (props) {
|
|
|
1652
1656
|
}, function (props) {
|
|
1653
1657
|
return props.column.width;
|
|
1654
1658
|
}, function (props) {
|
|
1655
|
-
return props.maxWidth ||
|
|
1659
|
+
return props.maxWidth || "175px";
|
|
1656
1660
|
}, function (props) {
|
|
1657
1661
|
return _tokens.colors[props.theme].table.innerTableBackground;
|
|
1658
1662
|
});
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynova-digital/components",
|
|
3
|
-
"version": "8.19.
|
|
3
|
+
"version": "8.19.47",
|
|
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.47",
|
|
11
11
|
"prop-types": "^15.7.2",
|
|
12
12
|
"styled-components": "^4.3.2"
|
|
13
13
|
},
|