mirror of https://github.com/sveltejs/svelte
69 lines
1.2 KiB
69 lines
1.2 KiB
/* generated by Svelte vX.Y.Z */
|
|
import {
|
|
SvelteComponent,
|
|
detach,
|
|
element,
|
|
init,
|
|
insert,
|
|
listen,
|
|
noop,
|
|
safe_not_equal
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
let details;
|
|
let mounted;
|
|
let dispose;
|
|
|
|
return {
|
|
c() {
|
|
details = element("details");
|
|
details.innerHTML = `<summary>summary</summary>content`;
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, details, anchor);
|
|
details.open = /*open*/ ctx[0];
|
|
|
|
if (!mounted) {
|
|
dispose = listen(details, "toggle", /*details_toggle_handler*/ ctx[1]);
|
|
mounted = true;
|
|
}
|
|
},
|
|
p(ctx, [dirty]) {
|
|
if (dirty & /*open*/ 1) {
|
|
details.open = /*open*/ ctx[0];
|
|
}
|
|
},
|
|
i: noop,
|
|
o: noop,
|
|
d(detaching) {
|
|
if (detaching) detach(details);
|
|
mounted = false;
|
|
dispose();
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { open } = $$props;
|
|
|
|
function details_toggle_handler() {
|
|
open = this.open;
|
|
$$invalidate(0, open);
|
|
}
|
|
|
|
$$self.$$set = $$props => {
|
|
if ("open" in $$props) $$invalidate(0, 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: 0 });
|
|
}
|
|
}
|
|
|
|
export default Component; |