intentful
Version:
Create Custom Skills with less headache
22 lines (21 loc) • 743 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlexaRadioButton = void 0;
const component_1 = require("../../component");
class AlexaRadioButton extends component_1.APLComponent {
constructor(props) {
super('AlexaRadioButton', props);
}
componentSpecificModel() {
return {
primaryAction: this.props.primaryAction,
radioButtonColor: this.props.radioButtonColor,
radioButtonHeight: this.props.radioButtonHeight,
radioButtonWidth: this.props.radioButtonWidth
};
}
componentSpecificRequestHandlers() {
return this.props.primaryAction.getRequestHandlers();
}
}
exports.AlexaRadioButton = AlexaRadioButton;