@pisell/materials 1.0.694 → 1.0.696
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +2 -2
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/walletCard/index.js +1 -2
- package/lib/components/walletCard/index.js +1 -2
- package/lowcode/wallet-card/meta.ts +6 -10
- package/lowcode/wallet-card/snippets.ts +1 -1
- package/package.json +1 -1
|
@@ -288,7 +288,6 @@ var WalletCard = function WalletCard(props) {
|
|
|
288
288
|
};
|
|
289
289
|
}
|
|
290
290
|
}, [props.customBackgroundImage, mode]);
|
|
291
|
-
console.log(isLogin, props, 'wh987976');
|
|
292
291
|
return /*#__PURE__*/React.createElement("div", {
|
|
293
292
|
className: classNames('pisell-wallet-card-wrapper', className),
|
|
294
293
|
style: style,
|
|
@@ -323,7 +322,7 @@ var WalletCard = function WalletCard(props) {
|
|
|
323
322
|
symbol: symbol
|
|
324
323
|
})) : /*#__PURE__*/React.createElement(Guest, {
|
|
325
324
|
setting: props
|
|
326
|
-
})), cardStyle === 'full' && /*#__PURE__*/React.createElement("div", {
|
|
325
|
+
})), cardStyle === 'full' && isLogin && /*#__PURE__*/React.createElement("div", {
|
|
327
326
|
className: classNames('pisell-wallet-card-showCode', codeDirection === 'top' ? 'code-top' : 'code-bottom')
|
|
328
327
|
}, /*#__PURE__*/React.createElement(CodeDisplay, {
|
|
329
328
|
codeType: codeType,
|
|
@@ -233,7 +233,6 @@ var WalletCard = (props) => {
|
|
|
233
233
|
};
|
|
234
234
|
}
|
|
235
235
|
}, [props.customBackgroundImage, mode]);
|
|
236
|
-
console.log(isLogin, props, "wh987976");
|
|
237
236
|
return /* @__PURE__ */ import_react.default.createElement(
|
|
238
237
|
"div",
|
|
239
238
|
{
|
|
@@ -283,7 +282,7 @@ var WalletCard = (props) => {
|
|
|
283
282
|
}
|
|
284
283
|
)) : /* @__PURE__ */ import_react.default.createElement(import_Guest.default, { setting: props })
|
|
285
284
|
),
|
|
286
|
-
cardStyle === "full" && /* @__PURE__ */ import_react.default.createElement(
|
|
285
|
+
cardStyle === "full" && isLogin && /* @__PURE__ */ import_react.default.createElement(
|
|
287
286
|
"div",
|
|
288
287
|
{
|
|
289
288
|
className: (0, import_classnames.default)(
|
|
@@ -221,23 +221,19 @@ export default {
|
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
name: 'align',
|
|
224
|
-
title: {
|
|
224
|
+
title: {
|
|
225
|
+
label: '对齐方式',
|
|
226
|
+
tip: '内容区域文字对齐方式 left | center'
|
|
227
|
+
},
|
|
225
228
|
setter: {
|
|
226
229
|
componentName: 'RadioGroupSetter',
|
|
227
230
|
props: {
|
|
228
231
|
options: [
|
|
229
|
-
{
|
|
230
|
-
|
|
231
|
-
value: 'left',
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
title: '居中对齐',
|
|
235
|
-
value: 'center',
|
|
236
|
-
},
|
|
232
|
+
{ title: '左对齐', value: 'left' },
|
|
233
|
+
{ title: '居中对齐', value: 'center' },
|
|
237
234
|
],
|
|
238
235
|
},
|
|
239
236
|
},
|
|
240
|
-
propType: { type: 'oneOf', value: ['left', 'center'] },
|
|
241
237
|
defaultValue: 'left',
|
|
242
238
|
},
|
|
243
239
|
{
|