/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: BSD-3-Clause */ import { _$LH as p, noChange, } from './lit-html.js'; /** * END USERS SHOULD NOT RELY ON THIS OBJECT. * * We currently do not make a mangled rollup build of the lit-ssr code. In order * to keep a number of (otherwise private) top-level exports mangled in the * client side code, we export a _$LH object containing those members (or * helper methods for accessing private fields of those members), and then * re-export them for use in lit-ssr. This keeps lit-ssr agnostic to whether the * client-side code is being used in `dev` mode or `prod` mode. * @private */ export const _$LH = { boundAttributeSuffix: p._boundAttributeSuffix, marker: p._marker, markerMatch: p._markerMatch, HTML_RESULT: p._HTML_RESULT, getTemplateHtml: p._getTemplateHtml, overrideDirectiveResolve: (directiveClass, resolveOverrideFn) => class extends directiveClass { _$resolve(_part, values) { return resolveOverrideFn(this, values); } }, setDirectiveClass(value, directiveClass) { // This property needs to remain unminified. value['_$litDirective$'] = directiveClass; }, getAttributePartCommittedValue: (part, value, index) => { // Use the part setter to resolve directives/concatenate multiple parts // into a final value (captured by passing in a commitValue override) let committedValue = noChange; // Note that _commitValue need not be in `stableProperties` because this // method is only run on `AttributePart`s created by lit-ssr using the same // version of the library as this file part._commitValue = (value) => (committedValue = value); part._$setValue(value, part, index); return committedValue; }, connectedDisconnectable: (props) => ({ ...props, _$isConnected: true, }), resolveDirective: p._resolveDirective, AttributePart: p._AttributePart, PropertyPart: p._PropertyPart, BooleanAttributePart: p._BooleanAttributePart, EventPart: p._EventPart, ElementPart: p._ElementPart, TemplateInstance: p._TemplateInstance, isIterable: p._isIterable, ChildPart: p._ChildPart, }; //# sourceMappingURL=private-ssr-support.js.map