ariaPropsMap.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. "use strict";
  2. var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
  3. var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
  4. _Object$defineProperty(exports, "__esModule", {
  5. value: true
  6. });
  7. exports.default = void 0;
  8. var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/map"));
  9. var ariaPropsMap = new _map.default([['aria-activedescendant', {
  10. 'type': 'id'
  11. }], ['aria-atomic', {
  12. 'type': 'boolean'
  13. }], ['aria-autocomplete', {
  14. 'type': 'token',
  15. 'values': ['inline', 'list', 'both', 'none']
  16. }], ['aria-busy', {
  17. 'type': 'boolean'
  18. }], ['aria-checked', {
  19. 'type': 'tristate'
  20. }], ['aria-colcount', {
  21. type: 'integer'
  22. }], ['aria-colindex', {
  23. type: 'integer'
  24. }], ['aria-colspan', {
  25. type: 'integer'
  26. }], ['aria-controls', {
  27. 'type': 'idlist'
  28. }], ['aria-current', {
  29. type: 'token',
  30. values: ['page', 'step', 'location', 'date', 'time', true, false]
  31. }], ['aria-describedby', {
  32. 'type': 'idlist'
  33. }], ['aria-details', {
  34. 'type': 'id'
  35. }], ['aria-disabled', {
  36. 'type': 'boolean'
  37. }], ['aria-dropeffect', {
  38. 'type': 'tokenlist',
  39. 'values': ['copy', 'execute', 'link', 'move', 'none', 'popup']
  40. }], ['aria-errormessage', {
  41. 'type': 'id'
  42. }], ['aria-expanded', {
  43. 'type': 'boolean',
  44. 'allowundefined': true
  45. }], ['aria-flowto', {
  46. 'type': 'idlist'
  47. }], ['aria-grabbed', {
  48. 'type': 'boolean',
  49. 'allowundefined': true
  50. }], ['aria-haspopup', {
  51. 'type': 'token',
  52. 'values': [false, true, 'menu', 'listbox', 'tree', 'grid', 'dialog']
  53. }], ['aria-hidden', {
  54. 'type': 'boolean',
  55. 'allowundefined': true
  56. }], ['aria-invalid', {
  57. 'type': 'token',
  58. 'values': ['grammar', false, 'spelling', true]
  59. }], ['aria-keyshortcuts', {
  60. type: 'string'
  61. }], ['aria-label', {
  62. 'type': 'string'
  63. }], ['aria-labelledby', {
  64. 'type': 'idlist'
  65. }], ['aria-level', {
  66. 'type': 'integer'
  67. }], ['aria-live', {
  68. 'type': 'token',
  69. 'values': ['assertive', 'off', 'polite']
  70. }], ['aria-modal', {
  71. type: 'boolean'
  72. }], ['aria-multiline', {
  73. 'type': 'boolean'
  74. }], ['aria-multiselectable', {
  75. 'type': 'boolean'
  76. }], ['aria-orientation', {
  77. 'type': 'token',
  78. 'values': ['vertical', 'undefined', 'horizontal']
  79. }], ['aria-owns', {
  80. 'type': 'idlist'
  81. }], ['aria-placeholder', {
  82. type: 'string'
  83. }], ['aria-posinset', {
  84. 'type': 'integer'
  85. }], ['aria-pressed', {
  86. 'type': 'tristate'
  87. }], ['aria-readonly', {
  88. 'type': 'boolean'
  89. }], ['aria-relevant', {
  90. 'type': 'tokenlist',
  91. 'values': ['additions', 'all', 'removals', 'text']
  92. }], ['aria-required', {
  93. 'type': 'boolean'
  94. }], ['aria-roledescription', {
  95. type: 'string'
  96. }], ['aria-rowcount', {
  97. type: 'integer'
  98. }], ['aria-rowindex', {
  99. type: 'integer'
  100. }], ['aria-rowspan', {
  101. type: 'integer'
  102. }], ['aria-selected', {
  103. 'type': 'boolean',
  104. 'allowundefined': true
  105. }], ['aria-setsize', {
  106. 'type': 'integer'
  107. }], ['aria-sort', {
  108. 'type': 'token',
  109. 'values': ['ascending', 'descending', 'none', 'other']
  110. }], ['aria-valuemax', {
  111. 'type': 'number'
  112. }], ['aria-valuemin', {
  113. 'type': 'number'
  114. }], ['aria-valuenow', {
  115. 'type': 'number'
  116. }], ['aria-valuetext', {
  117. 'type': 'string'
  118. }]]);
  119. var _default = ariaPropsMap;
  120. exports.default = _default;