3h1-ui 2.14.99 → 2.15.0
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/es/index.js +3 -1
- package/lib/index.js +3 -1
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -10989,7 +10989,9 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
10989
10989
|
dynamicRules,
|
|
10990
10990
|
required
|
|
10991
10991
|
} = props2.schema;
|
|
10992
|
-
|
|
10992
|
+
if (props2.schema.component !== "Table") {
|
|
10993
|
+
emit("clearCurrValidate", unref(getValues).field);
|
|
10994
|
+
}
|
|
10993
10995
|
if (isFunction$4(dynamicRules)) {
|
|
10994
10996
|
return dynamicRules(unref(getValues));
|
|
10995
10997
|
}
|
package/lib/index.js
CHANGED
|
@@ -11013,7 +11013,9 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
11013
11013
|
dynamicRules,
|
|
11014
11014
|
required
|
|
11015
11015
|
} = props2.schema;
|
|
11016
|
-
|
|
11016
|
+
if (props2.schema.component !== "Table") {
|
|
11017
|
+
emit("clearCurrValidate", vue.unref(getValues).field);
|
|
11018
|
+
}
|
|
11017
11019
|
if (utils.isFunction(dynamicRules)) {
|
|
11018
11020
|
return dynamicRules(vue.unref(getValues));
|
|
11019
11021
|
}
|