Skip to content

Commit 6339180

Browse files
committed
[ch-action-list-render] Update readme
1 parent 75f5ab6 commit 6339180

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/action-list/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
| `model` | -- | This property lets you define the model of the control. | `ActionListItemModel[]` | `[]` |
2121
| `modifyItemCaptionCallback` | -- | Callback that is executed when a item request to modify its caption. | `(actionListItemId: string, newCaption: string) => Promise<void>` | `undefined` |
2222
| `removeItemCallback` | -- | Callback that is executed when and item requests to be removed. If the callback is not defined, the item will be removed without further confirmation. | `(itemInfo: ActionListItemActionable) => Promise<boolean>` | `undefined` |
23-
| `renderItem` | -- | This property allows us to implement custom rendering of tree items. | `(itemModel: ActionListItemModel, actionListRenderState: ChActionListRender, disabled?: boolean, nested?: boolean, nestedExpandable?: boolean) => any` | `defaultRenderItem` |
23+
| `renderItem` | -- | This property allows us to implement custom rendering of action-list items. | `(itemModel: ActionListItemModel, actionListRenderState: ChActionListRender, disabled?: boolean, nested?: boolean, nestedExpandable?: boolean) => any` | `defaultRenderItem` |
2424
| `selection` | `selection` | Specifies the type of selection implemented by the control. | `"multiple" \| "none" \| "single"` | `"none"` |
25-
| `sortItemsCallback` | -- | Callback that is executed when the treeModel is changed to order its items. | `(subModel: ActionListModel) => void` | `defaultSortItemsCallback` |
25+
| `sortItemsCallback` | -- | Callback that is executed when the action-list model is changed to order its items. | `(subModel: ActionListModel) => void` | `defaultSortItemsCallback` |
2626
| `translations` | -- | Specifies the literals required for the control. | `{ confirmDelete: string; cancelDelete: string; confirmModify: string; cancelModify: string; }` | `actionListDefaultTranslations` |
2727

2828

0 commit comments

Comments
 (0)