refactor(techdemo): scope card handles to partials

Move board card and lane actions onto their reusable partial templates, register the scoped generated handles directly, and remove hidden shell-level handle anchors and manual handle fields from the rendered view data.

req: component/003

req: view/001

req: examples/001
This commit is contained in:
slhx agent
2026-06-01 21:58:40 +02:00
parent c69eb9932c
commit 4319dea171
7 changed files with 22 additions and 33 deletions
+2 -2
View File
@@ -72,7 +72,7 @@ async fn browser_drives_typed_product_end_to_end() -> WebDriverResult<()> {
wait_for_text(&driver, &slot_selector(ui::control_center::slots::notice), "Drag-and-drop move persisted").await?;
driver
.find(By::Css(&card_button_selector(ui::control_center::handles::spotlight_work, 2)))
.find(By::Css(&card_button_selector(ui::issue_card::handles::spotlight_work, 2)))
.await?
.click()
.await?;
@@ -84,7 +84,7 @@ async fn browser_drives_typed_product_end_to_end() -> WebDriverResult<()> {
.await?;
driver
.find(By::Css(&card_button_selector(ui::control_center::handles::advance_work, 3)))
.find(By::Css(&card_button_selector(ui::issue_card::handles::advance_work, 3)))
.await?
.click()
.await?;