@depay/widgets 5.0.3 → 6.0.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/README.md +1 -1
- package/dist/{es → esm}/index.bundle.js +33 -35
- package/dist/{es → esm}/index.js +4 -2
- package/dist/umd/index.bundle.js +33 -35
- package/dist/umd/index.js +4 -2
- package/package.json +11 -10
- package/dist/cjs/index.bundle.js +0 -74207
- package/dist/cjs/index.js +0 -4496
package/dist/{es → esm}/index.js
RENAMED
|
@@ -1119,8 +1119,10 @@ var SelectWalletDialog = (function (props) {
|
|
|
1119
1119
|
}
|
|
1120
1120
|
|
|
1121
1121
|
var walletCards = availableWallets.map(function (wallet, index) {
|
|
1122
|
-
return /*#__PURE__*/React.createElement("
|
|
1122
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
1123
1123
|
key: index,
|
|
1124
|
+
className: "PaddingBottomXS"
|
|
1125
|
+
}, /*#__PURE__*/React.createElement("button", {
|
|
1124
1126
|
className: "Card small",
|
|
1125
1127
|
title: "Connect ".concat(wallet.name),
|
|
1126
1128
|
onClick: function onClick() {
|
|
@@ -1136,7 +1138,7 @@ var SelectWalletDialog = (function (props) {
|
|
|
1136
1138
|
className: "CardBodyWrapper PaddingLeftXS"
|
|
1137
1139
|
}, /*#__PURE__*/React.createElement("h2", {
|
|
1138
1140
|
className: "CardText FontWeightBold"
|
|
1139
|
-
}, wallet.name))));
|
|
1141
|
+
}, wallet.name)))));
|
|
1140
1142
|
});
|
|
1141
1143
|
return /*#__PURE__*/React.createElement(Dialog$1, {
|
|
1142
1144
|
header: /*#__PURE__*/React.createElement("div", {
|