@mcurros2/microm 1.1.435-0 → 1.1.436-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/dist/index.d.ts CHANGED
@@ -1171,6 +1171,10 @@ export interface EntityClientAction {
1171
1171
  showActionInViewMode?: boolean;
1172
1172
  onClick: (props: EntityClientActionOnClickProps) => Promise<boolean>;
1173
1173
  }
1174
+ /** Form actions complete through onClose(true, status). Successful completion clears
1175
+ * dirty state before invoking onSaved (OK) or onCancel (Cancel), including silent actions.
1176
+ * Failed statuses do not complete the form. Returning from onClick alone does not complete it.
1177
+ */
1174
1178
  export interface EntityFormClientActionOnClickProps extends EntityClientActionOnClickProps {
1175
1179
  silent: boolean;
1176
1180
  }