textboxRole.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var textboxRole = {
  7. abstract: false,
  8. accessibleNameRequired: true,
  9. baseConcepts: [],
  10. childrenPresentational: false,
  11. nameFrom: ['author'],
  12. prohibitedProps: [],
  13. props: {
  14. 'aria-activedescendant': null,
  15. 'aria-autocomplete': null,
  16. 'aria-errormessage': null,
  17. 'aria-haspopup': null,
  18. 'aria-invalid': null,
  19. 'aria-multiline': null,
  20. 'aria-placeholder': null,
  21. 'aria-readonly': null,
  22. 'aria-required': null
  23. },
  24. relatedConcepts: [{
  25. concept: {
  26. attributes: [{
  27. constraints: ['undefined'],
  28. name: 'type'
  29. }, {
  30. constraints: ['undefined'],
  31. name: 'list'
  32. }],
  33. constraints: ['the list attribute is not set'],
  34. name: 'input'
  35. },
  36. module: 'HTML'
  37. }, {
  38. concept: {
  39. attributes: [{
  40. constraints: ['undefined'],
  41. name: 'list'
  42. }, {
  43. name: 'type',
  44. value: 'email'
  45. }],
  46. constraints: ['the list attribute is not set'],
  47. name: 'input'
  48. },
  49. module: 'HTML'
  50. }, {
  51. concept: {
  52. attributes: [{
  53. constraints: ['undefined'],
  54. name: 'list'
  55. }, {
  56. name: 'type',
  57. value: 'tel'
  58. }],
  59. constraints: ['the list attribute is not set'],
  60. name: 'input'
  61. },
  62. module: 'HTML'
  63. }, {
  64. concept: {
  65. attributes: [{
  66. constraints: ['undefined'],
  67. name: 'list'
  68. }, {
  69. name: 'type',
  70. value: 'text'
  71. }],
  72. constraints: ['the list attribute is not set'],
  73. name: 'input'
  74. },
  75. module: 'HTML'
  76. }, {
  77. concept: {
  78. attributes: [{
  79. constraints: ['undefined'],
  80. name: 'list'
  81. }, {
  82. name: 'type',
  83. value: 'url'
  84. }],
  85. constraints: ['the list attribute is not set'],
  86. name: 'input'
  87. },
  88. module: 'HTML'
  89. }, {
  90. concept: {
  91. name: 'input'
  92. },
  93. module: 'XForms'
  94. }, {
  95. concept: {
  96. name: 'textarea'
  97. },
  98. module: 'HTML'
  99. }],
  100. requireContextRole: [],
  101. requiredContextRole: [],
  102. requiredOwnedElements: [],
  103. requiredProps: {},
  104. superClass: [['roletype', 'widget', 'input']]
  105. };
  106. var _default = textboxRole;
  107. exports.default = _default;