@tmagic/form 1.4.10 → 1.4.12

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.
@@ -953,6 +953,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
953
953
  initValues
954
954
  });
955
955
  props.model[props.name].push(groupValue);
956
+ changeHandler();
956
957
  };
957
958
  const removeHandler = (index) => {
958
959
  if (!props.name) return false;
@@ -952,6 +952,7 @@
952
952
  initValues
953
953
  });
954
954
  props.model[props.name].push(groupValue);
955
+ changeHandler();
955
956
  };
956
957
  const removeHandler = (index) => {
957
958
  if (!props.name) return false;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.10",
2
+ "version": "1.4.12",
3
3
  "name": "@tmagic/form",
4
4
  "type": "module",
5
5
  "sideEffects": [
@@ -54,8 +54,8 @@
54
54
  "peerDependencies": {
55
55
  "vue": "^3.4.27",
56
56
  "typescript": "*",
57
- "@tmagic/design": "1.4.10",
58
- "@tmagic/utils": "1.4.10"
57
+ "@tmagic/design": "1.4.12",
58
+ "@tmagic/utils": "1.4.12"
59
59
  },
60
60
  "peerDependenciesMeta": {
61
61
  "typescript": {
@@ -105,6 +105,7 @@ const addHandler = async () => {
105
105
  });
106
106
 
107
107
  props.model[props.name].push(groupValue);
108
+ changeHandler();
108
109
  };
109
110
 
110
111
  const removeHandler = (index: number) => {