@myunisoft/design-system 0.9.3 → 0.9.4
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/CHANGELOG.md +11 -0
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.9.4 (16/12/2021)
|
|
4
|
+
|
|
5
|
+
#### Enhancements
|
|
6
|
+
|
|
7
|
+
- [MYUN-17509](https://myunisoft.atlassian.net/browse/MYUN-17509) Add disabled, className and style property to `select` typeCell
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [MYUN-17850](https://myunisoft.atlassian.net/browse/MYUN-17850) Fix export of empty wallet cell
|
|
12
|
+
|
|
13
|
+
---
|
|
3
14
|
|
|
4
15
|
## v0.9.3 (13/12/2021)
|
|
5
16
|
|
package/dist/index.js
CHANGED
|
@@ -3563,6 +3563,9 @@ var $7bb2215df9eff6f3$var$EditSelectCell = /*#__PURE__*/ $7bb2215df9eff6f3$var$_
|
|
|
3563
3563
|
disabled: true
|
|
3564
3564
|
}, $7bb2215df9eff6f3$var$_I18n["default"].t('common.select')), _options.map(function(element, i) {
|
|
3565
3565
|
return(/*#__PURE__*/ $7bb2215df9eff6f3$var$_react["default"].createElement($7bb2215df9eff6f3$var$_MenuItem["default"], {
|
|
3566
|
+
style: element.style,
|
|
3567
|
+
className: element.className,
|
|
3568
|
+
disabled: element.disabled,
|
|
3566
3569
|
key: i,
|
|
3567
3570
|
value: element.value
|
|
3568
3571
|
}, (element === null || element === void 0 ? void 0 : element.name) || (element === null || element === void 0 ? void 0 : element.label)));
|
|
@@ -5816,6 +5819,7 @@ var $8614a7f4dd6dc787$var$formatDataToCSV = function formatDataToCSV(row, _ref)
|
|
|
5816
5819
|
case $fjngL.TYPE_CELL.WALLET:
|
|
5817
5820
|
if (!value) return '';
|
|
5818
5821
|
var _value$array = value.array, array = _value$array === void 0 ? [] : _value$array;
|
|
5822
|
+
if (!array) return '';
|
|
5819
5823
|
return array.map(function(_ref4) {
|
|
5820
5824
|
var id = _ref4.id;
|
|
5821
5825
|
return id;
|
|
@@ -7655,7 +7659,10 @@ var $3b934575ab4d7380$var$useStyles = $ByO3L$materialuicore.makeStyles(function(
|
|
|
7655
7659
|
display: 'flex'
|
|
7656
7660
|
},
|
|
7657
7661
|
pointer: {
|
|
7658
|
-
cursor: 'pointer'
|
|
7662
|
+
cursor: 'pointer',
|
|
7663
|
+
'&:hover': {
|
|
7664
|
+
textDecoration: 'underline'
|
|
7665
|
+
}
|
|
7659
7666
|
},
|
|
7660
7667
|
selectedRow: {
|
|
7661
7668
|
backgroundColor: '#ddfafa'
|