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/legacy-input-type/expected.js

40 lines
624 B

5 years ago
/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
detach,
element,
init,
insert,
noop,
safe_not_equal,
set_input_type
} from "svelte/internal";
function create_fragment(ctx) {
let input;
return {
6 years ago
c() {
6 years ago
input = element("input");
set_input_type(input, "search");
},
6 years ago
m(target, anchor) {
insert(target, input, anchor);
},
p: noop,
i: noop,
o: noop,
6 years ago
d(detaching) {
if (detaching) detach(input);
6 years ago
}
};
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, null, create_fragment, safe_not_equal, {});
}
}
export default Component;