@kne/form-creator 0.1.20 → 0.1.21

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.
@@ -244,7 +244,7 @@ const locale$1 = {
244
244
  propSwitchOffText: '关闭时显示的文字',
245
245
  propSwitchOnTextHint: '例如:开',
246
246
  propSwitchOffTextHint: '例如:关',
247
- propOptionsInline: '选项单行显示',
247
+ propOptionsInline: '选项横向排列',
248
248
  ruleLen: '长度限制',
249
249
  ruleLenRange: '长度范围',
250
250
  ruleLenMin: '最少字数',
@@ -470,7 +470,7 @@ const locale = {
470
470
  propSwitchOffText: 'Text when off',
471
471
  propSwitchOnTextHint: 'e.g. On',
472
472
  propSwitchOffTextHint: 'e.g. Off',
473
- propOptionsInline: 'Options in a single row',
473
+ propOptionsInline: 'Arrange options horizontally',
474
474
  ruleLen: 'Length Limit',
475
475
  ruleLenRange: 'Length Range',
476
476
  ruleLenMin: 'Min',
@@ -2263,7 +2263,7 @@ const applyFieldProps = (props, values, definition) => {
2263
2263
  break;
2264
2264
  case 'RadioGroup':
2265
2265
  case 'CheckboxGroup':
2266
- // 始终落盘布尔值,避免 Checkbox 未勾选时字段缺失被当成默认单行
2266
+ // 始终落盘布尔值,避免 Checkbox 未勾选时字段缺失被当成默认横向
2267
2267
  props.inline = values.inline !== false;
2268
2268
  break;
2269
2269
  default: