@acvl/frontend-components 0.0.3 → 0.0.5

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/dist/cjs/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  'use strict';
2
3
 
3
4
  var jsxRuntime = require('react/jsx-runtime');
@@ -27716,6 +27717,8 @@ const EditGridWrapper = (props) => {
27716
27717
  setErrors(prevState => immer.produce(prevState, draft => {
27717
27718
  delete draft[newRow.id];
27718
27719
  }));
27720
+ if (props?.postAction)
27721
+ props.postAction(result);
27719
27722
  notifications.show(`Información actualizada!`, { severity: 'success' });
27720
27723
  return result.list;
27721
27724
  }