@lwc/ssr-runtime 8.11.0 → 8.12.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs.js +1054 -976
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1053 -977
- package/dist/index.js.map +1 -1
- package/dist/render-text-content.d.ts +5 -0
- package/dist/render.d.ts +3 -3
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
export * from './stubs';
|
2
|
-
export { htmlEscape, setHooks, sanitizeHtmlContent } from '@lwc/shared';
|
2
|
+
export { htmlEscape, setHooks, sanitizeHtmlContent, normalizeClass } from '@lwc/shared';
|
3
3
|
export { ClassList } from './class-list';
|
4
|
+
export { getReadOnlyProxy } from './get-read-only-proxy';
|
4
5
|
export { LightningElement, LightningElementConstructor, SYMBOL__DEFAULT_TEMPLATE, SYMBOL__GENERATE_MARKUP, SYMBOL__SET_INTERNALS, } from './lightning-element';
|
5
6
|
export { mutationTracker } from './mutation-tracker';
|
6
7
|
export { filterProperties } from './reflection';
|
7
8
|
export { fallbackTmpl, fallbackTmplNoYield, GenerateMarkupFn, renderAttrs, renderAttrsNoYield, serverSideRenderComponent, serverSideRenderComponent as renderComponent, } from './render';
|
9
|
+
export { massageTextContent } from './render-text-content';
|
8
10
|
export { hasScopedStaticStylesheets, renderStylesheets } from './styles';
|
9
11
|
export { toIteratorDirective } from './to-iterator-directive';
|
10
12
|
export { validateStyleTextContents } from './validate-style-text-contents';
|
11
|
-
export { getReadOnlyProxy } from './get-read-only-proxy';
|
12
13
|
export { createContextProvider, establishContextfulRelationship, connectContext } from './wire';
|