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/bind-width-height/expected.js

55 lines
1.2 KiB

/* generated by Svelte vX.Y.Z */
import { addResizeListener, assign, callAll, createElement, detachNode, init, insertNode, noop, proto } from "svelte/shared.js";
function create_main_fragment(component, ctx) {
var div, div_resize_listener;
function div_resize_handler() {
component.set({ w: div.offsetWidth, h: div.offsetHeight });
}
return {
c() {
div = createElement("div");
div.textContent = "some content";
component.root._beforecreate.push(div_resize_handler);
},
m(target, anchor) {
insertNode(div, target, anchor);
div_resize_listener = addResizeListener(div, div_resize_handler);
},
p: noop,
d(detach) {
if (detach) {
detachNode(div);
}
div_resize_listener.cancel();
}
};
}
function SvelteComponent(options) {
init(this, options);
this._state = assign({}, options.data);
if (!options.root) {
this._oncreate = [];
this._beforecreate = [];
}
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor);
callAll(this._beforecreate);
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;