@data-c/ui 0.1.49 → 0.1.51

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
@@ -239,6 +239,7 @@ interface MioAuthProps {
239
239
  onLoginFailed: (err: any) => void;
240
240
  appName: string;
241
241
  banner?: ReactNode;
242
+ loginSection?: ReactNode;
242
243
  }
243
244
  declare function MioAuth(props: MioAuthProps): react_jsx_runtime.JSX.Element;
244
245
 
@@ -685,7 +686,7 @@ declare function CellActionEdit({ onClick, ...rest }: CellActionEditProps): reac
685
686
 
686
687
  interface CellActionsProps {
687
688
  children: ReactNode;
688
- onClick: (event: 'edit' | 'delete') => void;
689
+ onClick: (event: any) => void;
689
690
  }
690
691
  declare function CellActions(props: CellActionsProps): react_jsx_runtime.JSX.Element;
691
692