kts-component-invoice-operate 3.2.238 → 3.2.239

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
@@ -20289,6 +20289,9 @@ var NationalSelect = /*#__PURE__*/function (_React$Component3) {
20289
20289
  }, getLable(props.value));
20290
20290
  } else {
20291
20291
  return /*#__PURE__*/React.createElement(Select$1, _objectSpread2({
20292
+ style: {
20293
+ width: 100
20294
+ },
20292
20295
  options: option
20293
20296
  }, props));
20294
20297
  }
package/dist/index.js CHANGED
@@ -20299,6 +20299,9 @@ var NationalSelect = /*#__PURE__*/function (_React$Component3) {
20299
20299
  }, getLable(props.value));
20300
20300
  } else {
20301
20301
  return /*#__PURE__*/React__default['default'].createElement(ktsXui.Select, _objectSpread2({
20302
+ style: {
20303
+ width: 100
20304
+ },
20302
20305
  options: option
20303
20306
  }, props));
20304
20307
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kts-component-invoice-operate",
3
- "version": "3.2.238",
3
+ "version": "3.2.239",
4
4
  "scripts": {
5
5
  "dev": "dumi dev --max-old-space-size=6096",
6
6
  "start": "dumi dev",
@@ -1080,7 +1080,7 @@ class NationalSelect extends React.Component<any> {
1080
1080
  if (props.readOnly) {
1081
1081
  return <span className='digtal-stakeholder-form-text'>{getLable(props.value)}</span>
1082
1082
  } else {
1083
- return <Select options={option} {...props} />
1083
+ return <Select style={{ width: 100 }} options={option} {...props} />
1084
1084
  }
1085
1085
  }
1086
1086
  }