source: frontend/node_modules/aria-query/lib/etc/roles/literal/comboboxRole.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.4 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7var comboboxRole = {
8 abstract: false,
9 accessibleNameRequired: true,
10 baseConcepts: [],
11 childrenPresentational: false,
12 nameFrom: ['author'],
13 prohibitedProps: [],
14 props: {
15 'aria-activedescendant': null,
16 'aria-autocomplete': null,
17 'aria-errormessage': null,
18 'aria-invalid': null,
19 'aria-readonly': null,
20 'aria-required': null,
21 'aria-expanded': 'false',
22 'aria-haspopup': 'listbox'
23 },
24 relatedConcepts: [{
25 concept: {
26 attributes: [{
27 constraints: ['set'],
28 name: 'list'
29 }, {
30 name: 'type',
31 value: 'email'
32 }],
33 name: 'input'
34 },
35 module: 'HTML'
36 }, {
37 concept: {
38 attributes: [{
39 constraints: ['set'],
40 name: 'list'
41 }, {
42 name: 'type',
43 value: 'search'
44 }],
45 name: 'input'
46 },
47 module: 'HTML'
48 }, {
49 concept: {
50 attributes: [{
51 constraints: ['set'],
52 name: 'list'
53 }, {
54 name: 'type',
55 value: 'tel'
56 }],
57 name: 'input'
58 },
59 module: 'HTML'
60 }, {
61 concept: {
62 attributes: [{
63 constraints: ['set'],
64 name: 'list'
65 }, {
66 name: 'type',
67 value: 'text'
68 }],
69 name: 'input'
70 },
71 module: 'HTML'
72 }, {
73 concept: {
74 attributes: [{
75 constraints: ['set'],
76 name: 'list'
77 }, {
78 name: 'type',
79 value: 'url'
80 }],
81 name: 'input'
82 },
83 module: 'HTML'
84 }, {
85 concept: {
86 attributes: [{
87 constraints: ['set'],
88 name: 'list'
89 }, {
90 name: 'type',
91 value: 'url'
92 }],
93 name: 'input'
94 },
95 module: 'HTML'
96 }, {
97 concept: {
98 attributes: [{
99 constraints: ['undefined'],
100 name: 'multiple'
101 }, {
102 constraints: ['undefined'],
103 name: 'size'
104 }],
105 constraints: ['the multiple attribute is not set and the size attribute does not have a value greater than 1'],
106 name: 'select'
107 },
108 module: 'HTML'
109 }, {
110 concept: {
111 name: 'select'
112 },
113 module: 'XForms'
114 }],
115 requireContextRole: [],
116 requiredContextRole: [],
117 requiredOwnedElements: [],
118 requiredProps: {
119 'aria-controls': null,
120 'aria-expanded': 'false'
121 },
122 superClass: [['roletype', 'widget', 'input']]
123};
124var _default = exports.default = comboboxRole;
Note: See TracBrowser for help on using the repository browser.