mirror of https://github.com/sveltejs/svelte
75 lines
1.2 KiB
75 lines
1.2 KiB
/* generated by Svelte vX.Y.Z */
|
|
import {
|
|
SvelteComponent,
|
|
attr,
|
|
detach,
|
|
element,
|
|
init,
|
|
insert,
|
|
listen,
|
|
noop,
|
|
run_all,
|
|
safe_not_equal,
|
|
to_number
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
var input, dispose;
|
|
|
|
return {
|
|
c() {
|
|
input = element("input");
|
|
attr(input, "type", "range");
|
|
|
|
dispose = [
|
|
listen(input, "change", ctx.input_change_input_handler),
|
|
listen(input, "input", ctx.input_change_input_handler)
|
|
];
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, input, anchor);
|
|
|
|
input.value = ctx.value;
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
if (changed.value) input.value = ctx.value;
|
|
},
|
|
|
|
i: noop,
|
|
o: noop,
|
|
|
|
d(detaching) {
|
|
if (detaching) {
|
|
detach(input);
|
|
}
|
|
|
|
run_all(dispose);
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { value } = $$props;
|
|
|
|
function input_change_input_handler() {
|
|
value = to_number(this.value);
|
|
$$invalidate('value', value);
|
|
}
|
|
|
|
$$self.$set = $$props => {
|
|
if ('value' in $$props) $$invalidate('value', value = $$props.value);
|
|
};
|
|
|
|
return { value, input_change_input_handler };
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal, ["value"]);
|
|
}
|
|
}
|
|
|
|
export default Component; |