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.
64 lines
1.2 KiB
64 lines
1.2 KiB
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent as SvelteComponent_1, addListener, createElement, detachNode, flush, init, insert, noop, safe_not_equal, setAttribute } from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
var input, dispose;
|
|
|
|
return {
|
|
c() {
|
|
input = createElement("input");
|
|
setAttribute(input, "type", "file");
|
|
input.multiple = true;
|
|
dispose = addListener(input, "input", ctx.input_input_handler);
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, input, anchor);
|
|
},
|
|
|
|
p: noop,
|
|
i: noop,
|
|
o: noop,
|
|
|
|
d(detach) {
|
|
if (detach) {
|
|
detachNode(input);
|
|
}
|
|
|
|
dispose();
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { files } = $$props;
|
|
|
|
function input_input_handler() {
|
|
files = this.files;
|
|
$$invalidate('files', files);
|
|
}
|
|
|
|
$$self.$set = $$props => {
|
|
if ('files' in $$props) $$invalidate('files', files = $$props.files);
|
|
};
|
|
|
|
return { files, input_input_handler };
|
|
}
|
|
|
|
class SvelteComponent extends SvelteComponent_1 {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal);
|
|
}
|
|
|
|
get files() {
|
|
return this.$$.ctx.files;
|
|
}
|
|
|
|
set files(files) {
|
|
this.$set({ files });
|
|
flush();
|
|
}
|
|
}
|
|
|
|
export default SvelteComponent; |