-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathindex.ts
More file actions
37 lines (34 loc) · 1.35 KB
/
index.ts
File metadata and controls
37 lines (34 loc) · 1.35 KB
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
34
35
36
37
/*
* Copyright (c) 2024, Salesforce, Inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
// Must be first so that later exports take precedence
export * from './stubs';
export { htmlEscape, setHooks, sanitizeHtmlContent, normalizeClass } from '@lwc/shared';
export { ClassList } from './class-list';
export { getReadOnlyProxy } from './get-read-only-proxy';
export {
LightningElement,
LightningElementConstructor,
SYMBOL__DEFAULT_TEMPLATE,
SYMBOL__GENERATE_MARKUP,
SYMBOL__SET_INTERNALS,
} from './lightning-element';
export { mutationTracker } from './mutation-tracker';
export {
fallbackTmpl,
fallbackTmplNoYield,
GenerateMarkupFn,
renderAttrs,
renderAttrsNoYield,
serverSideRenderComponent,
// renderComponent is an alias for serverSideRenderComponent
serverSideRenderComponent as renderComponent,
} from './render';
export { massageTextContent, renderTextContent } from './render-text-content';
export { hasScopedStaticStylesheets, renderStylesheets } from './styles';
export { toIteratorDirective } from './to-iterator-directive';
export { validateStyleTextContents } from './validate-style-text-contents';
export { createContextProvider, establishContextfulRelationship, connectContext } from './wire';