@data-c/ui 0.2.45 → 0.2.47

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
@@ -463,11 +463,14 @@ interface DialogAdicionarButtonProps<T> extends Omit<ButtonProps$4, 'onClick'> {
463
463
  }
464
464
  declare function DialogAdicionarButton<T>(props: DialogAdicionarButtonProps<T>): react_jsx_runtime.JSX.Element;
465
465
 
466
- interface DialogConfirmProps<T = any> extends DialogProps<T, T | false> {
466
+ interface _Props {
467
467
  title?: string;
468
468
  message?: string;
469
469
  confirmButtonLabel?: string;
470
470
  cancelButtonLabel?: string;
471
+ payload: any;
472
+ }
473
+ interface DialogConfirmProps<T extends _Props = any> extends DialogProps<T, T | false> {
471
474
  }
472
475
  declare function DialogConfirm(props: DialogConfirmProps): react_jsx_runtime.JSX.Element;
473
476