mirror of https://github.com/sveltejs/svelte
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.
79 lines
1.5 KiB
79 lines
1.5 KiB
/* generated by Svelte vX.Y.Z */
|
|
import {
|
|
SvelteComponent,
|
|
attr,
|
|
detach,
|
|
element,
|
|
init,
|
|
insert,
|
|
listen,
|
|
noop,
|
|
run_all,
|
|
safe_not_equal,
|
|
space
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
let input0;
|
|
let t;
|
|
let input1;
|
|
let dispose;
|
|
|
|
return {
|
|
c() {
|
|
input0 = element("input");
|
|
t = space();
|
|
input1 = element("input");
|
|
attr(input0, "type", "file");
|
|
attr(input1, "type", "file");
|
|
|
|
dispose = [
|
|
listen(input0, "change", /*input0_change_handler*/ ctx[1]),
|
|
listen(input1, "change", /*input1_change_handler*/ ctx[2])
|
|
];
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, input0, anchor);
|
|
insert(target, t, anchor);
|
|
insert(target, input1, anchor);
|
|
},
|
|
p: noop,
|
|
i: noop,
|
|
o: noop,
|
|
d(detaching) {
|
|
if (detaching) detach(input0);
|
|
if (detaching) detach(t);
|
|
if (detaching) detach(input1);
|
|
run_all(dispose);
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { files } = $$props;
|
|
|
|
function input0_change_handler() {
|
|
files = this.files;
|
|
$$invalidate(0, files);
|
|
}
|
|
|
|
function input1_change_handler() {
|
|
files = this.files;
|
|
$$invalidate(0, files);
|
|
}
|
|
|
|
$$self.$set = $$props => {
|
|
if ("files" in $$props) $$invalidate(0, files = $$props.files);
|
|
};
|
|
|
|
return [files, input0_change_handler, input1_change_handler];
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal, { files: 0 });
|
|
}
|
|
}
|
|
|
|
export default Component; |