Skip to content

Commit

Permalink
docs: add missing enableDelete document
Browse files Browse the repository at this point in the history
  • Loading branch information
pionxzh committed Jan 16, 2024
1 parent 30f9dc3 commit ec741f1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/pages/apis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
| `keyRenderer` | `{when: (props) => boolean}` | - | Customize a key, if `keyRenderer.when` returns `true`. |
| `valueTypes` | `ValueTypes` | - | Customize the definition of data types. See [Defining Data Types](/how-to/data-types) |
| `enableAdd` | `boolean` \|<br />`(path, currentValue) => boolean` | `false` | Whether enable add feature. Provide a function to customize this behavior by returning a boolean based on the value and path. |
| `enableDelete` | `boolean` \|<br />`(path, currentValue) => boolean` | `false` | Whether enable delete feature. Provide a function to customize this behavior by returning a boolean based on the value and path. |
| `enableClipboard` | `boolean` | `false` | Whether enable clipboard feature. |
| `editable` | `boolean` \|<br />`(path, currentValue) => boolean` | `false` | Whether enable edit feature. Provide a function to customize this behavior by returning a boolean based on the value and path. |
| `onChange` | `(path, oldVal, newVal) => void` | - | Callback when value changed. |
Expand Down

0 comments on commit ec741f1

Please sign in to comment.