Skip to content

Commit 53bcb44

Browse files
committed
build(lib): lib build
1 parent 378c2e1 commit 53bcb44

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

packages/lib/vue3/vue3-form-ant/dist/vue3-form-ant.esm.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11830,11 +11830,16 @@ var WIDGET_MAP = {
1183011830
})
1183111831
}), {
1183211832
addonAfter: function addonAfter() {
11833-
return h(InputWidget, {
11833+
return h('input', {
1183411834
disabled: attrs.disabled,
1183511835
readonly: attrs.readonly,
11836-
moduleValue: attrs.moduleValue,
11837-
'onUpdate:modelValue': attrs['onUpdate:modelValue'],
11836+
value: attrs.modelValue,
11837+
onInput: function onInput(e) {
11838+
attrs['onUpdate:modelValue'](e.target.value);
11839+
},
11840+
onChange: function onChange(e) {
11841+
attrs['onUpdate:modelValue'](e.target.value);
11842+
},
1183811843
type: 'color',
1183911844
style: {
1184011845
padding: '0',

packages/lib/vue3/vue3-form-ant/dist/vue3-form-ant.esm.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/lib/vue3/vue3-form-ant/dist/vue3-form-ant.umd.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11834,11 +11834,16 @@
1183411834
})
1183511835
}), {
1183611836
addonAfter: function addonAfter() {
11837-
return Vue.h(InputWidget, {
11837+
return Vue.h('input', {
1183811838
disabled: attrs.disabled,
1183911839
readonly: attrs.readonly,
11840-
moduleValue: attrs.moduleValue,
11841-
'onUpdate:modelValue': attrs['onUpdate:modelValue'],
11840+
value: attrs.modelValue,
11841+
onInput: function onInput(e) {
11842+
attrs['onUpdate:modelValue'](e.target.value);
11843+
},
11844+
onChange: function onChange(e) {
11845+
attrs['onUpdate:modelValue'](e.target.value);
11846+
},
1184211847
type: 'color',
1184311848
style: {
1184411849
padding: '0',

packages/lib/vue3/vue3-form-ant/dist/vue3-form-ant.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)