centaline-data-driven-v3 0.1.44 → 0.1.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven-v3",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
4
4
  "private": false,
5
5
  "description": "centaline-data-driven-v3",
6
6
  "main": "dist/centaline-data-driven-v3.umd.js",
@@ -105,6 +105,7 @@ defineExpose({
105
105
  line-height: 26px;
106
106
  font-size: 12px;
107
107
  color: #3D5ECC;
108
+ word-break: break-all;
108
109
  }
109
110
 
110
111
  .el-tag.el-tag--info {
@@ -15,7 +15,7 @@
15
15
  </div>
16
16
  <el-input v-else :type="model.inputType" v-model="model.code1" v-bind="model.attrs" @input="input()"
17
17
  @change="change()" :disabled="model.locked" :rows="model.rows" :readonly="model.readonly"
18
- :show-password="model.inputType == 'password'" autocomplete="on"
18
+ :show-password="model.inputType == 'password'" :autocomplete="model.inputType == 'password'? 'new-password' : 'on'"
19
19
  :maxlength="model.controlType !== Enum.ControlType.NumericTextBox ? model.maxValue1 : ''"
20
20
  :show-word-limit="model.showWordLimit" clearable @keyup.enter.native="search()"
21
21
  @keydown.enter.native="handleKeyDown" class="fieldControl">