@cloudtower/eagle 0.34.2 → 0.34.3

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.
@@ -132,6 +132,7 @@ export type RowAddConfigurations = {
132
132
  buttonProps?: ButtonProps;
133
133
  maximum?: number;
134
134
  className?: string;
135
+ extraAction?: React.ReactNode;
135
136
  CustomizedButton?: (props: AddRowButtonProps) => React.ReactElement;
136
137
  };
137
138
  export interface TableFormRowsProps extends Pick<TableFormProps, "columns" | "disabled" | "deleteConfig" | "disableBatchFilling" | "validateTriggerType" | "renderRowDescription" | "rowValidator" | "onBodyBlur" | "row" | "errors"> {
@@ -47,3 +47,6 @@ export declare const HideTableFormWhenNoData: {
47
47
  export declare const TitleAndSubTitle: {
48
48
  render: () => React.JSX.Element;
49
49
  };
50
+ export declare const ExtraAction: {
51
+ render: () => React.JSX.Element;
52
+ };