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/input-without-blowback-guard/expected.js

74 lines
1.4 KiB

/* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, addListener, createElement, detachNode, flush, init, insert, run, safe_not_equal, setAttribute } from "svelte/internal";
function create_fragment(component, ctx) {
var input, current, dispose;
return {
7 years ago
c() {
input = createElement("input");
setAttribute(input, "type", "checkbox");
dispose = addListener(input, "change", ctx.input_change_handler);
},
7 years ago
m(target, anchor) {
insert(target, input, anchor);
input.checked = ctx.foo;
current = true;
},
7 years ago
p(changed, ctx) {
if (changed.foo) input.checked = ctx.foo;
},
i(target, anchor) {
if (current) return;
this.m(target, anchor);
},
o: run,
7 years ago
d(detach) {
if (detach) {
detachNode(input);
}
dispose();
}
};
}
function instance($$self, $$props, $$invalidate) {
let { foo } = $$props;
function input_change_handler() {
foo = this.checked;
$$invalidate('foo', foo);
}
6 years ago
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};
return { foo, input_change_handler };
}
class SvelteComponent extends SvelteComponent_1 {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal);
}
get foo() {
return this.$$.ctx.foo;
}
set foo(foo) {
this.$set({ foo });
flush();
}
}
export default SvelteComponent;