mirror of https://github.com/sveltejs/svelte
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.
67 lines
1.2 KiB
67 lines
1.2 KiB
/* generated by Svelte vX.Y.Z */
|
|
import {
|
|
SvelteComponent,
|
|
detach,
|
|
element,
|
|
init,
|
|
insert,
|
|
noop,
|
|
safe_not_equal,
|
|
set_style
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
var div;
|
|
|
|
return {
|
|
c() {
|
|
div = element("div");
|
|
set_style(div, "color", ctx.color);
|
|
set_style(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)");
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, div, anchor);
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
if (changed.color) {
|
|
set_style(div, "color", ctx.color);
|
|
}
|
|
|
|
if (changed.x || changed.y) {
|
|
set_style(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)");
|
|
}
|
|
},
|
|
|
|
i: noop,
|
|
o: noop,
|
|
|
|
d(detaching) {
|
|
if (detaching) {
|
|
detach(div);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { color, x, y } = $$props;
|
|
|
|
$$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 Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal, ["color", "x", "y"]);
|
|
}
|
|
}
|
|
|
|
export default Component; |