@bit-sun/business-component 3.0.0-alpha.7 → 3.0.0-alpha.8
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/dist/index.esm.js
CHANGED
|
@@ -30625,7 +30625,7 @@ var RuleField$1 = /*#__PURE__*/function (_Component) {
|
|
|
30625
30625
|
|
|
30626
30626
|
var RangePicker$1 = DatePicker.RangePicker;
|
|
30627
30627
|
function RenderCompItem(props) {
|
|
30628
|
-
var _showValue
|
|
30628
|
+
var _showValue;
|
|
30629
30629
|
var regularDataList = props.regularDataList,
|
|
30630
30630
|
ites = props.ites,
|
|
30631
30631
|
showValue = props.showValue,
|
|
@@ -30700,10 +30700,6 @@ function RenderCompItem(props) {
|
|
|
30700
30700
|
var style2 = {
|
|
30701
30701
|
width: '100px'
|
|
30702
30702
|
};
|
|
30703
|
-
console.log('value');
|
|
30704
|
-
console.log(ites === null || ites === void 0 ? void 0 : ites.code);
|
|
30705
|
-
console.log(showValue(ites.code));
|
|
30706
|
-
console.log((_showValue = showValue(ites.code)) === null || _showValue === void 0 ? void 0 : _showValue.split(','));
|
|
30707
30703
|
return /*#__PURE__*/React.createElement(React.Fragment, null, (ites === null || ites === void 0 ? void 0 : ites.inputType) === 10 && (ites === null || ites === void 0 ? void 0 : ites.valueType) === 21 && ( /*#__PURE__*/React.createElement(Input, {
|
|
30708
30704
|
disabled: disabled,
|
|
30709
30705
|
allowClear: true,
|
|
@@ -30776,7 +30772,7 @@ function RenderCompItem(props) {
|
|
|
30776
30772
|
} : {}), {}, {
|
|
30777
30773
|
defaultValue: ites.defaultValue,
|
|
30778
30774
|
style: styleCommon,
|
|
30779
|
-
value: (
|
|
30775
|
+
value: (_showValue = showValue(ites.code)) === null || _showValue === void 0 ? void 0 : _showValue.split(','),
|
|
30780
30776
|
onChange: function onChange(value) {
|
|
30781
30777
|
handleEdit(ites.code, value);
|
|
30782
30778
|
},
|
package/dist/index.js
CHANGED
|
@@ -30647,7 +30647,7 @@ var RuleField$1 = /*#__PURE__*/function (_Component) {
|
|
|
30647
30647
|
|
|
30648
30648
|
var RangePicker$1 = antd.DatePicker.RangePicker;
|
|
30649
30649
|
function RenderCompItem(props) {
|
|
30650
|
-
var _showValue
|
|
30650
|
+
var _showValue;
|
|
30651
30651
|
var regularDataList = props.regularDataList,
|
|
30652
30652
|
ites = props.ites,
|
|
30653
30653
|
showValue = props.showValue,
|
|
@@ -30722,10 +30722,6 @@ function RenderCompItem(props) {
|
|
|
30722
30722
|
var style2 = {
|
|
30723
30723
|
width: '100px'
|
|
30724
30724
|
};
|
|
30725
|
-
console.log('value');
|
|
30726
|
-
console.log(ites === null || ites === void 0 ? void 0 : ites.code);
|
|
30727
|
-
console.log(showValue(ites.code));
|
|
30728
|
-
console.log((_showValue = showValue(ites.code)) === null || _showValue === void 0 ? void 0 : _showValue.split(','));
|
|
30729
30725
|
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, (ites === null || ites === void 0 ? void 0 : ites.inputType) === 10 && (ites === null || ites === void 0 ? void 0 : ites.valueType) === 21 && ( /*#__PURE__*/React__default['default'].createElement(antd.Input, {
|
|
30730
30726
|
disabled: disabled,
|
|
30731
30727
|
allowClear: true,
|
|
@@ -30798,7 +30794,7 @@ function RenderCompItem(props) {
|
|
|
30798
30794
|
} : {}), {}, {
|
|
30799
30795
|
defaultValue: ites.defaultValue,
|
|
30800
30796
|
style: styleCommon,
|
|
30801
|
-
value: (
|
|
30797
|
+
value: (_showValue = showValue(ites.code)) === null || _showValue === void 0 ? void 0 : _showValue.split(','),
|
|
30802
30798
|
onChange: function onChange(value) {
|
|
30803
30799
|
handleEdit(ites.code, value);
|
|
30804
30800
|
},
|
package/package.json
CHANGED
|
@@ -49,10 +49,6 @@ export default function RenderCompItem(props:any){
|
|
|
49
49
|
const style2 = {
|
|
50
50
|
width: '100px',
|
|
51
51
|
};
|
|
52
|
-
console.log('value')
|
|
53
|
-
console.log(ites?.code)
|
|
54
|
-
console.log(showValue(ites.code))
|
|
55
|
-
console.log(showValue(ites.code)?.split(','))
|
|
56
52
|
return (
|
|
57
53
|
<>
|
|
58
54
|
{/* 输入/字符串 */}
|