|
|
|
/* generated by Svelte vX.Y.Z */
|
|
|
|
import { assign, createElement, detachNode, init, insert, proto, setStyle } from "svelte/shared.js";
|
|
|
|
|
|
|
|
function create_main_fragment(component, ctx) {
|
|
|
|
var div;
|
|
|
|
|
|
|
|
return {
|
|
|
|
c() {
|
|
|
|
div = createElement("div");
|
|
|
|
setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")");
|
|
|
|
},
|
|
|
|
|
|
|
|
m(target, anchor) {
|
|
|
|
insert(target, div, anchor);
|
|
|
|
},
|
|
|
|
|
|
|
|
p(changed, ctx) {
|
|
|
|
if (changed.data) {
|
|
|
|
setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
d(detach) {
|
|
|
|
if (detach) {
|
|
|
|
detachNode(div);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function SvelteComponent(options) {
|
|
|
|
init(this, options);
|
|
|
|
this._state = assign({}, options.data);
|
|
|
|
this._intro = true;
|
|
|
|
|
|
|
|
this._fragment = create_main_fragment(this, this._state);
|
|
|
|
|
|
|
|
if (options.target) {
|
|
|
|
this._fragment.c();
|
|
|
|
this._mount(options.target, options.anchor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assign(SvelteComponent.prototype, proto);
|
|
|
|
export default SvelteComponent;
|