@ebiz/designer-components 0.0.18-beta.34 → 0.0.18-beta.37

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": "@ebiz/designer-components",
3
- "version": "0.0.18-beta.34",
3
+ "version": "0.0.18-beta.37",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -130,9 +130,9 @@ const emit = defineEmits([
130
130
  ]);
131
131
 
132
132
  // 处理值变更事件
133
- const handleChange = (value, { dayjsValue, trigger }) => {
133
+ const handleChange = (value) => {
134
134
  emit('update:modelValue', value);
135
- emit('change', value, { dayjsValue, trigger });
135
+ emit('change', value);
136
136
  };
137
137
 
138
138
  </script>