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