@ansible/ansible-ui-framework 0.0.669 → 0.0.670

Sign up to get free protection for your applications and to get access to all the features.
@@ -44,7 +44,7 @@ type IPageSingleActionWithLink<T extends object> = IPageActionCommon & {
44
44
  type IPageSingleActionWithOnClick<T extends object> = IPageActionCommon & {
45
45
  type: PageActionType.single;
46
46
  variant?: ButtonVariant;
47
- onClick: (item: T) => void | (() => Promise<unknown>);
47
+ onClick: (item: T) => void | Promise<unknown>;
48
48
  href?: never;
49
49
  isDisabled?: (item: T) => string | undefined;
50
50
  isHidden?: (item: T) => boolean;
@@ -1,6 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { ICatalogBreadcrumb } from '../PageHeader';
3
2
  export declare function LoadingPage(props: {
4
- title?: string;
5
- breadcrumbs?: ICatalogBreadcrumb[];
3
+ breadcrumbs?: boolean;
4
+ tabs?: boolean;
6
5
  }): JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ansible/ansible-ui-framework",
3
3
  "description": "A framework for building applications using PatternFly.",
4
- "version": "0.0.669",
4
+ "version": "0.0.670",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",