|
|
@ -11,7 +11,8 @@ import {
|
|
|
|
insert_dev,
|
|
|
|
insert_dev,
|
|
|
|
loop_guard,
|
|
|
|
loop_guard,
|
|
|
|
noop,
|
|
|
|
noop,
|
|
|
|
safe_not_equal
|
|
|
|
safe_not_equal,
|
|
|
|
|
|
|
|
validate_slot
|
|
|
|
} from "svelte/internal";
|
|
|
|
} from "svelte/internal";
|
|
|
|
|
|
|
|
|
|
|
|
const { console: console_1 } = globals;
|
|
|
|
const { console: console_1 } = globals;
|
|
|
@ -110,6 +111,9 @@ function instance($$self, $$props, $$invalidate) {
|
|
|
|
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(`<Component> was created with unknown prop '${key}'`);
|
|
|
|
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(`<Component> was created with unknown prop '${key}'`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let { $$slots = {}, $$scope } = $$props;
|
|
|
|
|
|
|
|
validate_slot($$slots, []);
|
|
|
|
|
|
|
|
|
|
|
|
function div_binding($$value) {
|
|
|
|
function div_binding($$value) {
|
|
|
|
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
|
|
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
|
|
$$invalidate(0, node = $$value);
|
|
|
|
$$invalidate(0, node = $$value);
|
|
|
|