@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
42 lines • 1.25 kB
JavaScript
var CanvasStyle = /** @class */ (function () {
function CanvasStyle() {
this.selection = new SelectionStyleConfig();
this.hover = new HoverStyle();
this.spotlight = new SpotlightStyle();
this.rubberband = new RubberbandStyle();
this.interactiveZones = new InteractiveZonesStyles();
}
return CanvasStyle;
}());
export { CanvasStyle };
var InteractiveZonesStyles = /** @class */ (function () {
function InteractiveZonesStyles() {
}
return InteractiveZonesStyles;
}());
export { InteractiveZonesStyles };
var SelectionStyleConfig = /** @class */ (function () {
function SelectionStyleConfig() {
}
return SelectionStyleConfig;
}());
export { SelectionStyleConfig };
var HoverStyle = /** @class */ (function () {
function HoverStyle() {
}
return HoverStyle;
}());
export { HoverStyle };
var SpotlightStyle = /** @class */ (function () {
function SpotlightStyle() {
}
return SpotlightStyle;
}());
export { SpotlightStyle };
var RubberbandStyle = /** @class */ (function () {
function RubberbandStyle() {
}
return RubberbandStyle;
}());
export { RubberbandStyle };
//# sourceMappingURL=CanvasStyle.js.map