@signalplus/params-about 1.0.26-alpha11 → 1.0.26-alpha13
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/lib/es/index.js +6 -3
- package/package.json +1 -1
package/lib/es/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Bundle of @signalplus/params-about
|
|
3
3
|
* Generated: 2025-11-06
|
|
4
|
-
* Version: 1.0.26-
|
|
4
|
+
* Version: 1.0.26-alpha13
|
|
5
5
|
* License: MIT
|
|
6
6
|
* Author: 2631541504@qq.com
|
|
7
7
|
*/
|
|
@@ -3000,7 +3000,7 @@ var ExpiryVegaAlphaByEdgeList = /*#__PURE__*/function (_PureComponent) {
|
|
|
3000
3000
|
style: {
|
|
3001
3001
|
position: 'absolute',
|
|
3002
3002
|
top: -4,
|
|
3003
|
-
right: -
|
|
3003
|
+
right: -30,
|
|
3004
3004
|
visibility: k === 0 ? 'hidden' : 'visible'
|
|
3005
3005
|
}
|
|
3006
3006
|
}, /*#__PURE__*/React.createElement(DeleteOutlined, {
|
|
@@ -4113,12 +4113,15 @@ var ParamValueEditorModalEl = /*#__PURE__*/function (_PureComponent2) {
|
|
|
4113
4113
|
_createClass(ParamValueEditorModalEl, [{
|
|
4114
4114
|
key: "render",
|
|
4115
4115
|
value: function render() {
|
|
4116
|
+
console.log('this.props===========================', this.props);
|
|
4117
|
+
var width = ParamTypeConfig[this.props.valueType].modalWidth || this.state.width || 740;
|
|
4116
4118
|
return /*#__PURE__*/React.createElement(Modal, {
|
|
4117
4119
|
key: String(this.state.visible),
|
|
4118
|
-
width:
|
|
4120
|
+
width: width,
|
|
4119
4121
|
title: 'Edit Value',
|
|
4120
4122
|
closable: false,
|
|
4121
4123
|
visible: this.state.visible,
|
|
4124
|
+
destroyOnClose: true,
|
|
4122
4125
|
footer: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Button, {
|
|
4123
4126
|
onClick: this.onHide
|
|
4124
4127
|
}, "Cancel"), /*#__PURE__*/React.createElement(Button, {
|