@ansible/ansible-ui-framework 2.4.59 → 2.4.61

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { ComponentClass, ReactElement, ReactNode } from 'react';
1
+ import React, { ComponentClass, ReactElement, ReactNode } from 'react';
2
2
  export declare function EmptyStateCustom(props: {
3
3
  title: string;
4
4
  description: ReactNode;
@@ -6,4 +6,6 @@ export declare function EmptyStateCustom(props: {
6
6
  button?: ReactElement;
7
7
  footNote?: string;
8
8
  image?: ReactElement;
9
+ variant?: 'xs' | 'xl' | 'small' | 'large' | 'full' | undefined;
10
+ style?: React.CSSProperties;
9
11
  }): JSX.Element;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export declare function EmptyStateError(props: {
3
+ titleProp?: string;
4
+ message?: string;
5
+ }): JSX.Element;
@@ -3,4 +3,5 @@ export declare function EmptyStateNoData(props: {
3
3
  button?: ReactElement;
4
4
  title: string;
5
5
  description: ReactNode;
6
+ variant: 'xs' | 'xl' | 'small' | 'large' | 'full' | undefined;
6
7
  }): JSX.Element;