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-files/expected.js

60 lines
1.0 KiB

5 years ago
/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
attr,
detach,
element,
init,
insert,
listen,
noop,
safe_not_equal
} from "svelte/internal";
function create_fragment(ctx) {
let input;
let dispose;
return {
c() {
6 years ago
input = element("input");
attr(input, "type", "file");
input.multiple = true;
},
m(target, anchor) {
insert(target, input, anchor);
dispose = listen(input, "change", /*input_change_handler*/ ctx[1]);
},
p: noop,
i: noop,
o: noop,
6 years ago
d(detaching) {
if (detaching) detach(input);
dispose();
}
};
}
function instance($$self, $$props, $$invalidate) {
let { files } = $$props;
function input_change_handler() {
files = this.files;
$$invalidate(0, files);
}
6 years ago
$$self.$set = $$props => {
if ("files" in $$props) $$invalidate(0, files = $$props.files);
};
return [files, input_change_handler];
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { files: 0 });
}
}
export default Component;