|
|
|
/* generated by Svelte vX.Y.Z */
|
|
|
|
import {
|
|
|
|
SvelteComponent,
|
|
|
|
append,
|
|
|
|
destroy_each,
|
|
|
|
detach,
|
|
|
|
element,
|
|
|
|
empty,
|
|
|
|
init,
|
|
|
|
insert,
|
|
|
|
noop,
|
|
|
|
safe_not_equal,
|
|
|
|
set_data,
|
|
|
|
text
|
|
|
|
} from "svelte/internal";
|
|
|
|
|
|
|
|
function get_each_context(ctx, list, i) {
|
|
|
|
const child_ctx = Object.create(ctx);
|
|
|
|
child_ctx.node = list[i];
|
|
|
|
return child_ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (5:0) {#each createElement as node}
|
|
|
|
function create_each_block(ctx) {
|
|
|
|
let span;
|
|
|
|
let t_value = ctx.node + "";
|
|
|
|
let t;
|
|
|
|
|
|
|
|
return {
|
|
|
|
c() {
|
|
|
|
span = element("span");
|
|
|
|
t = text(t_value);
|
|
|
|
},
|
|
|
|
m(target, anchor) {
|
|
|
|
insert(target, span, anchor);
|
|
|
|
append(span, t);
|
|
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
|
|
if (changed.createElement && t_value !== (t_value = ctx.node + "")) set_data(t, t_value);
|
|
|
|
},
|
|
|
|
d(detaching) {
|
|
|
|
if (detaching) detach(span);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function create_fragment(ctx) {
|
|
|
|
let each_1_anchor;
|
|
|
|
let each_value = ctx.createElement;
|
|
|
|
let each_blocks = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < each_value.length; i += 1) {
|
|
|
|
each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i));
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
c() {
|
|
|
|
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
|
|
each_blocks[i].c();
|
|
|
|
}
|
|
|
|
|
|
|
|
each_1_anchor = empty();
|
|
|
|
},
|
|
|
|
m(target, anchor) {
|
|
|
|
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
|
|
each_blocks[i].m(target, anchor);
|
|
|
|
}
|
|
|
|
|
|
|
|
insert(target, each_1_anchor, anchor);
|
|
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
|
|
if (changed.createElement) {
|
|
|
|
each_value = ctx.createElement;
|
|
|
|
let i;
|
|
|
|
|
|
|
|
for (i = 0; i < each_value.length; i += 1) {
|
|
|
|
const child_ctx = get_each_context(ctx, each_value, i);
|
|
|
|
|
|
|
|
if (each_blocks[i]) {
|
|
|
|
each_blocks[i].p(changed, child_ctx);
|
|
|
|
} else {
|
|
|
|
each_blocks[i] = create_each_block(child_ctx);
|
|
|
|
each_blocks[i].c();
|
|
|
|
each_blocks[i].m(each_1_anchor.parentNode, each_1_anchor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; i < each_blocks.length; i += 1) {
|
|
|
|
each_blocks[i].d(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
each_blocks.length = each_value.length;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
i: noop,
|
|
|
|
o: noop,
|
|
|
|
d(detaching) {
|
|
|
|
destroy_each(each_blocks, detaching);
|
|
|
|
if (detaching) detach(each_1_anchor);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
|
|
let { createElement } = $$props;
|
|
|
|
|
|
|
|
$$self.$set = $$props => {
|
|
|
|
if ("createElement" in $$props) $$invalidate("createElement", createElement = $$props.createElement);
|
|
|
|
};
|
|
|
|
|
|
|
|
return { createElement };
|
|
|
|
}
|
|
|
|
|
|
|
|
class Component extends SvelteComponent {
|
|
|
|
constructor(options) {
|
|
|
|
super();
|
|
|
|
init(this, options, instance, create_fragment, safe_not_equal, { createElement: 0 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Component;
|