mirror of https://github.com/sveltejs/svelte
65 lines
1.1 KiB
65 lines
1.1 KiB
import {
|
|
SvelteComponent,
|
|
detach,
|
|
element,
|
|
init,
|
|
insert,
|
|
listen,
|
|
noop,
|
|
safe_not_equal
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
let details;
|
|
let dispose;
|
|
|
|
return {
|
|
c() {
|
|
details = element("details");
|
|
|
|
details.innerHTML = `<summary>summary</summary>content
|
|
`;
|
|
|
|
dispose = listen(details, "toggle", ctx.details_toggle_handler);
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, details, anchor);
|
|
details.open = ctx.open;
|
|
},
|
|
p(changed, ctx) {
|
|
if (changed.open) {
|
|
details.open = ctx.open;
|
|
}
|
|
},
|
|
i: noop,
|
|
o: noop,
|
|
d(detaching) {
|
|
if (detaching) detach(details);
|
|
dispose();
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { open } = $$props;
|
|
|
|
function details_toggle_handler() {
|
|
open = this.open;
|
|
$$invalidate("open", open);
|
|
}
|
|
|
|
$$self.$set = $$props => {
|
|
if ("open" in $$props) $$invalidate("open", open = $$props.open);
|
|
};
|
|
|
|
return { open, details_toggle_handler };
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal, ["open"]);
|
|
}
|
|
}
|
|
|
|
export default Component; |