Merge pull request #156 from johndoe6345789/codex/extend-delete-action-logic-in-use-action-executor

Support computed and nested selectors for `delete` actions
This commit is contained in:
2026-01-18 13:37:02 +00:00
committed by GitHub
2 changed files with 29 additions and 3 deletions

View File

@@ -154,6 +154,18 @@ Remove an item from an array.
}
```
Example with the selector derived from event data:
```json
{
"id": "remove-clicked",
"type": "delete",
"target": "todos",
"path": "meta.id",
"expression": "event.todoId ?? data.selectedId"
}
```
## Common Patterns
### 1. Input Field Updates