You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/js/samples/inline-style-optimized-mult.../expected.js

85 lines
1.5 KiB

/* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, createElement, detachNode, flush, init, insert, noop, safe_not_equal, setStyle } from "svelte/internal";
function create_fragment(ctx) {
var div;
return {
6 years ago
c() {
div = createElement("div");
setStyle(div, "color", ctx.color);
setStyle(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)");
},
6 years ago
m(target, anchor) {
insert(target, div, anchor);
},
6 years ago
p(changed, ctx) {
if (changed.color) {
setStyle(div, "color", ctx.color);
}
if (changed.x || changed.y) {
setStyle(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)");
}
},
i: noop,
o: noop,
6 years ago
d(detach) {
if (detach) {
detachNode(div);
}
}
};
}
function instance($$self, $$props, $$invalidate) {
let { color, x, y } = $$props;
6 years ago
$$self.$set = $$props => {
if ('color' in $$props) $$invalidate('color', color = $$props.color);
if ('x' in $$props) $$invalidate('x', x = $$props.x);
if ('y' in $$props) $$invalidate('y', y = $$props.y);
};
return { color, x, y };
}
class SvelteComponent extends SvelteComponent_1 {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal);
}
get color() {
return this.$$.ctx.color;
}
set color(color) {
this.$set({ color });
flush();
}
get x() {
return this.$$.ctx.x;
}
set x(x) {
this.$set({ x });
flush();
}
get y() {
return this.$$.ctx.y;
}
set y(y) {
this.$set({ y });
flush();
}
}
export default SvelteComponent;