@ansible/ansible-ui-framework 0.0.720 → 0.0.722

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/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.720",
4
+ "version": "0.0.722",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,8 +0,0 @@
1
- export declare enum PageActionType {
2
- seperator = "seperator",
3
- button = "button",
4
- single = "single",
5
- singleLink = "singleLink",
6
- bulk = "bulk",
7
- dropdown = "dropdown"
8
- }
@@ -1,7 +0,0 @@
1
- import { ComponentClass, FunctionComponent } from 'react';
2
- import { IPageBulkAction } from './PageAction';
3
- export declare function PageBulkAction<T extends object>(props: {
4
- action: IPageBulkAction<T>;
5
- selectedItems?: T[];
6
- wrapper?: ComponentClass | FunctionComponent;
7
- }): JSX.Element;
@@ -1,8 +0,0 @@
1
- import { ComponentClass, FunctionComponent } from 'react';
2
- import { IPageActionButton } from './PageAction';
3
- export declare function PageButtonAction(props: {
4
- action: IPageActionButton;
5
- isSecondary?: boolean;
6
- wrapper?: ComponentClass | FunctionComponent;
7
- iconOnly?: boolean;
8
- }): JSX.Element;
@@ -1,8 +0,0 @@
1
- import { ComponentClass, FunctionComponent } from 'react';
2
- import { IPageSingleAction } from './PageAction';
3
- export declare function PageSingleAction<T extends object>(props: {
4
- action: IPageSingleAction<T>;
5
- selectedItem?: T;
6
- iconOnly?: boolean;
7
- wrapper?: ComponentClass | FunctionComponent;
8
- }): JSX.Element;