1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use crate::*;
/// Creates an input event handler that updates the dynamic attribute key signal.
///
/// # Arguments
///
/// - `Signal<String>` - The signal holding the dynamic attribute key.
///
/// # Returns
///
/// - `Option<Rc<dyn Fn(Event)>>` - An input handler for the attribute key.
pub
/// Creates an input event handler that updates the dynamic attribute value signal.
///
/// # Arguments
///
/// - `Signal<String>` - The signal holding the dynamic attribute value.
///
/// # Returns
///
/// - `Option<Rc<dyn Fn(Event)>>` - An input handler for the attribute value.
pub