mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
33 lines
703 B
JavaScript
33 lines
703 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
var gridcellRole = {
|
||
|
abstract: false,
|
||
|
accessibleNameRequired: true,
|
||
|
baseConcepts: [{
|
||
|
module: 'HTML',
|
||
|
concept: {
|
||
|
name: 'td',
|
||
|
attributes: [{
|
||
|
name: 'role',
|
||
|
value: 'gridcell'
|
||
|
}]
|
||
|
}
|
||
|
}],
|
||
|
childrenPresentational: false,
|
||
|
nameFrom: ['author', 'contents'],
|
||
|
props: {
|
||
|
'aria-readonly': null,
|
||
|
'aria-required': null,
|
||
|
'aria-selected': null
|
||
|
},
|
||
|
relatedConcepts: [],
|
||
|
requireContextRole: ['row'],
|
||
|
requiredOwnedElements: [],
|
||
|
requiredProps: {},
|
||
|
superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'widget']]
|
||
|
};
|
||
|
|
||
|
exports.default = gridcellRole;
|