mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
36 lines
713 B
JavaScript
36 lines
713 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
var radioRole = {
|
||
|
abstract: false,
|
||
|
accessibleNameRequired: true,
|
||
|
baseConcepts: [],
|
||
|
childrenPresentational: true,
|
||
|
nameFrom: ['author', 'contents'],
|
||
|
props: {
|
||
|
'aria-checked': 'false',
|
||
|
'aria-posinset': null,
|
||
|
'aria-selected': null,
|
||
|
'aria-setsize': null
|
||
|
},
|
||
|
relatedConcepts: [{
|
||
|
module: 'HTML',
|
||
|
concept: {
|
||
|
name: 'input',
|
||
|
attributes: [{
|
||
|
name: 'type',
|
||
|
value: 'radio'
|
||
|
}]
|
||
|
}
|
||
|
}],
|
||
|
requireContextRole: [],
|
||
|
requiredOwnedElements: [],
|
||
|
requiredProps: {
|
||
|
'aria-checked': 'false'
|
||
|
},
|
||
|
superClass: [['roletype', 'widget', 'input']]
|
||
|
};
|
||
|
|
||
|
exports.default = radioRole;
|