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