Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | /** @import { TemplateNode } from '#client' */ import { render_effect, teardown } from '../../reactivity/effects.js'; import { hydrate_node, hydrating, set_hydrate_node } from '../hydration.js'; /** * @param {HTMLDivElement | SVGGElement} element * @param {() => Record<string, string>} get_styles * @returns {void} */ export function css_props(element, get_styles) { if (hydrating) { set_hydrate_node(/** @type {TemplateNode} */ (element.firstChild)); } render_effect(() => { var styles = get_styles(); for (var key in styles) { var value = styles[key]; if (value) { element.style.setProperty(key, value); } else { element.style.removeProperty(key); } } }); teardown(() => { element.remove(); }); } |