freya_elements/attributes/
accessibility_attributes.rs1use crate::def_attribute;
2
3def_attribute!(
4 a11y_id,
5 a11y_focusable,
6 a11y_auto_focus,
7 a11y_name,
8 a11y_description,
9 a11y_value,
10 a11y_access_key,
11 a11y_author_id,
12 a11y_member_of,
13 a11y_keyboard_shortcut,
14 a11y_language,
15 a11y_placeholder,
16 a11y_role_description,
17 a11y_state_description,
18 a11y_tooltip,
19 a11y_url,
20 a11y_row_index_text,
21 a11y_column_index_text,
22 a11y_scroll_x,
23 a11y_scroll_x_min,
24 a11y_scroll_x_max,
25 a11y_scroll_y,
26 a11y_scroll_y_min,
27 a11y_scroll_y_max,
28 a11y_numeric_value,
29 a11y_min_numeric_value,
30 a11y_max_numeric_value,
31 a11y_numeric_value_step,
32 a11y_numeric_value_jump,
33 a11y_row_count,
34 a11y_column_count,
35 a11y_row_index,
36 a11y_column_index,
37 a11y_row_span,
38 a11y_column_span,
39 a11y_level,
40 a11y_size_of_set,
41 a11y_position_in_set,
42 a11y_color_value,
43 a11y_expanded,
44 a11y_selected,
45 a11y_hovered,
46 a11y_hidden,
47 a11y_linked,
48 a11y_multiselectable,
49 a11y_required,
50 a11y_visited,
51 a11y_busy,
52 a11y_live_atomic,
53 a11y_modal,
54 a11y_touch_transparent,
55 a11y_read_only,
56 a11y_disabled,
57 a11y_is_spelling_error,
58 a11y_is_grammar_error,
59 a11y_is_search_match,
60 a11y_is_suggestion,
61 a11y_role,
62 a11y_invalid,
63 a11y_toggled,
64 a11y_live,
65 a11y_default_action_verb,
66 a11y_orientation,
67 a11y_sort_direction,
68 a11y_current,
69 a11y_auto_complete,
70 a11y_has_popup,
71 a11y_list_style,
72 a11y_vertical_offset,
73);