(instance: UI5Element, container: HTMLElement | DocumentFragment)
| 25 | }; |
| 26 | |
| 27 | const litRender: Renderer = (instance: UI5Element, container: HTMLElement | DocumentFragment) => { |
| 28 | let templateResult = instance.render(); |
| 29 | const openUI5Enablement = getFeature<typeof OpenUI5Enablement>("OpenUI5Enablement"); |
| 30 | if (openUI5Enablement) { |
| 31 | templateResult = openUI5Enablement.wrapTemplateResultInBusyMarkup(effectiveHtml, instance, templateResult as TemplateResult); |
| 32 | } |
| 33 | |
| 34 | render(templateResult as TemplateResult, container, { host: instance }); |
| 35 | }; |
| 36 | |
| 37 | const scopeTag = (tag: string, tags: Array<string>, suffix: string) => { |
| 38 | const litStatic = getFeature<typeof LitStatic>("LitStatic"); |
nothing calls this directly
no test coverage detected
searching dependent graphs…