@ansible/ansible-ui-framework 0.0.295 → 0.0.297
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/cjs/BulkActionDialog.d.ts +0 -4
- package/cjs/BulkActionDialog.js +6 -1
- package/docs/BulkActionDialog.md +15 -0
- package/docs/{framework.md → Framework.md} +0 -0
- package/docs/PageHeader.md +29 -0
- package/docs/PageLayout.md +14 -0
- package/docs/{tables.md → PageTable-Guide.md} +0 -0
- package/package.json +1 -1
@@ -1,9 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { ITableColumn } from './PageTable';
|
3
|
-
/**
|
4
|
-
* BulkActionDialogProps
|
5
|
-
* @typedef {Object} BulkActionDialogProps
|
6
|
-
*/
|
7
3
|
export interface BulkActionDialogProps<T extends object> {
|
8
4
|
/** The title of the model.
|
9
5
|
* @link https://www.patternfly.org/v4/components/modal/design-guidelines#confirmation-dialogs
|
package/cjs/BulkActionDialog.js
CHANGED
@@ -101,8 +101,13 @@ var useTableItems_1 = require("./useTableItems");
|
|
101
101
|
* BulkActionDialog
|
102
102
|
* @param {string} title - The title of the model.
|
103
103
|
* @param {Array(T)} items - The items to confirm for the bulk action.
|
104
|
-
* @param {function
|
104
|
+
* @param {function} keyFn - A function that gets a unique key for each item.
|
105
105
|
* @param {Array(ITableColumn<T>)} actionColumns - The columns to display when processing the actions.
|
106
|
+
* @param {function} actionFn - The action function to perform on each item
|
107
|
+
* @param {function=} onComplete - Callback when all the actions are complete. Returns the successful items.
|
108
|
+
* @param {function=} onClose - Callback called when the dialog closes.
|
109
|
+
* @param {string=} processingText - The text to show for each item when the action is happening.
|
110
|
+
* @param {boolean=} isDanger - Indicates if this is a destructive operation.
|
106
111
|
*/
|
107
112
|
function BulkActionDialog(props) {
|
108
113
|
var title = props.title, items = props.items, keyFn = props.keyFn, actionColumns = props.actionColumns, actionFn = props.actionFn, onComplete = props.onComplete, onClose = props.onClose, processingText = props.processingText, isDanger = props.isDanger;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# BulkActionDialog
|
2
|
+
|
3
|
+
BulkActionDialog
|
4
|
+
|
5
|
+
| Param | Type | Description |
|
6
|
+
| ---------------- | ------------------------ | ------------------------------------------------------------------------- |
|
7
|
+
| title | `string` | The title of the model. |
|
8
|
+
| items | `Array(T)` | The items to confirm for the bulk action. |
|
9
|
+
| keyFn | `function` | A function that gets a unique key for each item. |
|
10
|
+
| actionColumns | `Array(ITableColumn<T>)` | The columns to display when processing the actions. |
|
11
|
+
| actionFn | `function` | The action function to perform on each item |
|
12
|
+
| [onComplete] | `function` | Callback when all the actions are complete. Returns the successful items. |
|
13
|
+
| [onClose] | `function` | Callback called when the dialog closes. |
|
14
|
+
| [processingText] | `string` | The text to show for each item when the action is happening. |
|
15
|
+
| [isDanger] | `boolean` | Indicates if this is a destructive operation. |
|
File without changes
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# PageHeader
|
2
|
+
|
3
|
+
PageHeader enables the responsive layout of the header.
|
4
|
+
|
5
|
+
| Param | Type | Description |
|
6
|
+
| -------------- | -------------------- | --------------------------------- |
|
7
|
+
| breadcrumbs | `Array.<Breadcrumb>` | The breadcrumbs for the page. |
|
8
|
+
| title | `string` | The title of the page. |
|
9
|
+
| titleHelpTitle | `string` | The title of help popover. |
|
10
|
+
| titleHelp | `ReactNode` | The content for the help popover. |
|
11
|
+
| description | `string` | The description of the page. |
|
12
|
+
| controls | `ReactNode` | Support for extra page controls. |
|
13
|
+
| headerActions | `ReactNode` | The actions for the page. |
|
14
|
+
|
15
|
+
## Example
|
16
|
+
|
17
|
+
```js
|
18
|
+
<Page>
|
19
|
+
<PageLayout>
|
20
|
+
<PageHeader
|
21
|
+
breadcrumbs={[{ label: 'Home', to: '/home' }, { label: 'Page title' }]}
|
22
|
+
title='Page title'
|
23
|
+
description='Page description'
|
24
|
+
headerActions={<PageActions actions={actions} />}
|
25
|
+
/>
|
26
|
+
<PageBody />...</PageBody>
|
27
|
+
</PageLayout>
|
28
|
+
<Page>
|
29
|
+
```
|
File without changes
|
package/package.json
CHANGED