@ansible/ansible-ui-framework 0.0.708 → 0.0.710

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,6 +37,7 @@ export type PageTableProps<T extends object> = {
37
37
  emptyStateTitle: string;
38
38
  emptyStateDescription?: string | null;
39
39
  emptyStateIcon?: React.ComponentType<any>;
40
+ emptyStateActions?: IPageAction<T>[];
40
41
  emptyStateButtonIcon?: React.ReactNode;
41
42
  emptyStateButtonText?: string | null;
42
43
  emptyStateButtonClick?: () => void;
@@ -4,4 +4,6 @@ export declare function EmptyStateCustom(props: {
4
4
  description: ReactNode;
5
5
  icon?: ComponentClass;
6
6
  button?: ReactElement;
7
+ footNote?: string;
8
+ image?: ReactElement;
7
9
  }): JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  export declare function EmptyStateUnauthorized(props: {
3
3
  adminMessage?: string;
4
- loginLink: React.ReactNode;
4
+ loginLink?: React.ReactNode;
5
5
  title?: string;
6
6
  }): JSX.Element;