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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/// The HTML id for the callback input element.
pub const CALLBACK_INPUT_ID: &str = "callback-input";
/// The HTML id for the child input text element.
pub const CHILD_INPUT_TEXT_ID: &str = "child-input-text";
/// The HTML id for the celsius input element.
pub const TEMPERATURE_CELSIUS_ID: &str = "temperature-celsius";
/// The HTML id for the fahrenheit input element.
pub const TEMPERATURE_FAHRENHEIT_ID: &str = "temperature-fahrenheit";
/// The HTML id for the red slider element.
pub const COLOR_MIXER_RED_ID: &str = "color-mixer-red";
/// The HTML id for the green slider element.
pub const COLOR_MIXER_GREEN_ID: &str = "color-mixer-green";
/// The HTML id for the blue slider element.
pub const COLOR_MIXER_BLUE_ID: &str = "color-mixer-blue";
/// The HTML id for the parent message input element.
pub const BINDING_PARENT_MESSAGE_ID: &str = "binding-parent-message";
/// The HTML name attribute for the callback input element.
pub const CALLBACK_INPUT_NAME: &str = "callback_input";
/// The HTML name attribute for the child input text element.
pub const CHILD_INPUT_TEXT_NAME: &str = "shared_text";
/// The HTML name attribute for the celsius input element.
pub const TEMPERATURE_CELSIUS_NAME: &str = "celsius";
/// The HTML name attribute for the fahrenheit input element.
pub const TEMPERATURE_FAHRENHEIT_NAME: &str = "fahrenheit";
/// The HTML name attribute for the red slider element.
pub const COLOR_MIXER_RED_NAME: &str = "red";
/// The HTML name attribute for the green slider element.
pub const COLOR_MIXER_GREEN_NAME: &str = "green";
/// The HTML name attribute for the blue slider element.
pub const COLOR_MIXER_BLUE_NAME: &str = "blue";
/// The HTML name attribute for the parent message input element.
pub const BINDING_PARENT_MESSAGE_NAME: &str = "parent_message";
/// The HTML input type for text.
pub const BINDING_TEXT_TYPE: &str = "text";
/// The HTML input type for number.
pub const BINDING_NUMBER_TYPE: &str = "number";
/// The HTML input type for range.
pub const BINDING_RANGE_TYPE: &str = "range";
/// The HTML autocomplete attribute value for off.
pub const BINDING_AUTOCOMPLETE_OFF: &str = "off";
/// The HTML placeholder for the callback input element.
pub const CALLBACK_INPUT_PLACEHOLDER: &str = "Type something...";
/// The HTML min attribute for the color mixer slider.
pub const COLOR_MIXER_MIN: &str = "0";
/// The HTML max attribute for the color mixer slider.
pub const COLOR_MIXER_MAX: &str = "255";