venus-design 1.0.63 → 1.0.65

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.
@@ -212,6 +212,9 @@ var VenusForm = /*#__PURE__*/forwardRef(function (props, ref) {
212
212
  * @param allValues
213
213
  */
214
214
  var onValuesChange = function onValuesChange(changedValues, allValues) {
215
+ if (props.onValuesChange) {
216
+ props.onValuesChange(changedValues, allValues);
217
+ }
215
218
  setWatchData(allValues);
216
219
  };
217
220
 
@@ -109,7 +109,7 @@ export var handleColumnFilterFns = function handleColumnFilterFns(columnList, fi
109
109
  export var getMenuId = function getMenuId() {
110
110
  var usermenu = storage.getSessionItem("usermenu");
111
111
  var menuID = usermenu[window.location.pathname];
112
- return menuID.id || "-1";
112
+ return (menuID === null || menuID === void 0 ? void 0 : menuID.id) || "-1";
113
113
  };
114
114
 
115
115
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venus-design",
3
- "version": "1.0.63",
3
+ "version": "1.0.65",
4
4
  "description": "venus all compoments",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",