intentful
Version:
Create Custom Skills with less headache
29 lines (28 loc) • 1.1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlexaRating = void 0;
const component_1 = require("../../component");
class AlexaRating extends component_1.APLComponent {
constructor(props) {
super('AlexaRating', props);
}
componentSpecificModel() {
return {
emptyRatingGraphic: this.props.emptyRatingGraphic,
fullRatingGraphic: this.props.fullRatingGraphic,
halfRatingGraphic: this.props.halfRatingGraphic,
ratingGraphicType: this.props.ratingGraphicType,
ratingNumber: this.props.ratingNumber,
ratingSlotMode: this.props.ratingSlotMode,
ratingSlotPadding: this.props.ratingSlotPadding,
ratingText: this.props.ratingText,
ratingTextOpacity: this.props.ratingTextOpacity,
singleRatingGraphic: this.props.singleRatingGraphic,
singleRatingGraphicWidth: this.props.singleRatingGraphicWidth
};
}
componentSpecificRequestHandlers() {
return [];
}
}
exports.AlexaRating = AlexaRating;