source: frontend/node_modules/aria-query/lib/etc/roles/literal/textboxRole.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.2 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7var textboxRole = {
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-haspopup': null,
19 'aria-invalid': null,
20 'aria-multiline': null,
21 'aria-placeholder': null,
22 'aria-readonly': null,
23 'aria-required': null
24 },
25 relatedConcepts: [{
26 concept: {
27 attributes: [{
28 constraints: ['undefined'],
29 name: 'type'
30 }, {
31 constraints: ['undefined'],
32 name: 'list'
33 }],
34 constraints: ['the list attribute is not set'],
35 name: 'input'
36 },
37 module: 'HTML'
38 }, {
39 concept: {
40 attributes: [{
41 constraints: ['undefined'],
42 name: 'list'
43 }, {
44 name: 'type',
45 value: 'email'
46 }],
47 constraints: ['the list attribute is not set'],
48 name: 'input'
49 },
50 module: 'HTML'
51 }, {
52 concept: {
53 attributes: [{
54 constraints: ['undefined'],
55 name: 'list'
56 }, {
57 name: 'type',
58 value: 'tel'
59 }],
60 constraints: ['the list attribute is not set'],
61 name: 'input'
62 },
63 module: 'HTML'
64 }, {
65 concept: {
66 attributes: [{
67 constraints: ['undefined'],
68 name: 'list'
69 }, {
70 name: 'type',
71 value: 'text'
72 }],
73 constraints: ['the list attribute is not set'],
74 name: 'input'
75 },
76 module: 'HTML'
77 }, {
78 concept: {
79 attributes: [{
80 constraints: ['undefined'],
81 name: 'list'
82 }, {
83 name: 'type',
84 value: 'url'
85 }],
86 constraints: ['the list attribute is not set'],
87 name: 'input'
88 },
89 module: 'HTML'
90 }, {
91 concept: {
92 name: 'input'
93 },
94 module: 'XForms'
95 }, {
96 concept: {
97 name: 'textarea'
98 },
99 module: 'HTML'
100 }],
101 requireContextRole: [],
102 requiredContextRole: [],
103 requiredOwnedElements: [],
104 requiredProps: {},
105 superClass: [['roletype', 'widget', 'input']]
106};
107var _default = exports.default = textboxRole;
Note: See TracBrowser for help on using the repository browser.