@lwc/ssr-runtime 9.0.4-alpha.1 → 9.0.4-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index.cjs → index.cjs.js} +6 -7
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -6
- package/package.json +6 -11
|
@@ -680,7 +680,7 @@ function normalizeTabIndex(value) {
|
|
|
680
680
|
const shouldNormalize = value > 0 && typeof value !== 'boolean';
|
|
681
681
|
return shouldNormalize ? 0 : value;
|
|
682
682
|
}
|
|
683
|
-
/** version: 9.0.4-alpha.
|
|
683
|
+
/** version: 9.0.4-alpha.2 */
|
|
684
684
|
|
|
685
685
|
/**
|
|
686
686
|
* Copyright (c) 2026 Salesforce, Inc.
|
|
@@ -704,7 +704,7 @@ function normalizeTabIndex(value) {
|
|
|
704
704
|
* @param value
|
|
705
705
|
* @param msg
|
|
706
706
|
*/
|
|
707
|
-
/** version: 9.0.4-alpha.
|
|
707
|
+
/** version: 9.0.4-alpha.2 */
|
|
708
708
|
|
|
709
709
|
/*
|
|
710
710
|
* Copyright (c) 2023, salesforce.com, inc.
|
|
@@ -728,7 +728,7 @@ class SignalBaseClass {
|
|
|
728
728
|
}
|
|
729
729
|
}
|
|
730
730
|
}
|
|
731
|
-
/** version: 9.0.4-alpha.
|
|
731
|
+
/** version: 9.0.4-alpha.2 */
|
|
732
732
|
|
|
733
733
|
/**
|
|
734
734
|
* Copyright (c) 2026 Salesforce, Inc.
|
|
@@ -819,7 +819,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
819
819
|
setFeatureFlag(name, value);
|
|
820
820
|
}
|
|
821
821
|
}
|
|
822
|
-
/** version: 9.0.4-alpha.
|
|
822
|
+
/** version: 9.0.4-alpha.2 */
|
|
823
823
|
|
|
824
824
|
/*
|
|
825
825
|
* Copyright (c) 2024, Salesforce, Inc.
|
|
@@ -1644,7 +1644,6 @@ function connectContext(le) {
|
|
|
1644
1644
|
}
|
|
1645
1645
|
catch (err) {
|
|
1646
1646
|
if (process.env.NODE_ENV !== 'production') {
|
|
1647
|
-
// eslint-disable-next-line preserve-caught-error
|
|
1648
1647
|
throw new Error(`Attempted to connect to trusted context but received the following error: ${err.message}`);
|
|
1649
1648
|
}
|
|
1650
1649
|
}
|
|
@@ -2191,5 +2190,5 @@ exports.track = track;
|
|
|
2191
2190
|
exports.unwrap = unwrap$1;
|
|
2192
2191
|
exports.validateStyleTextContents = validateStyleTextContents;
|
|
2193
2192
|
exports.wire = wire;
|
|
2194
|
-
/** version: 9.0.4-alpha.
|
|
2195
|
-
//# sourceMappingURL=index.cjs.map
|
|
2193
|
+
/** version: 9.0.4-alpha.2 */
|
|
2194
|
+
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ export { htmlEscape, setHooks, sanitizeHtmlContent, normalizeClass, normalizeTab
|
|
|
3
3
|
export { SignalBaseClass } from '@lwc/signals';
|
|
4
4
|
export { setFeatureFlag, setFeatureFlagForTest } from '@lwc/features';
|
|
5
5
|
export { ClassList } from './class-list';
|
|
6
|
-
export { LightningElement,
|
|
6
|
+
export { LightningElement, LightningElementConstructor, SYMBOL__DEFAULT_TEMPLATE, SYMBOL__GENERATE_MARKUP, SYMBOL__SET_INTERNALS, } from './lightning-element';
|
|
7
7
|
export { mutationTracker } from './mutation-tracker';
|
|
8
|
-
export { fallbackTmpl, fallbackTmplNoYield,
|
|
8
|
+
export { fallbackTmpl, fallbackTmplNoYield, GenerateMarkupAsyncYield, renderAttrs, renderAttrsNoYield, addSlottedContent, serverSideRenderComponent, serverSideRenderComponent as renderComponent, } from './render';
|
|
9
9
|
export { normalizeTextContent, renderTextContent } from './render-text-content';
|
|
10
10
|
export { hasScopedStaticStylesheets, renderStylesheets } from './styles';
|
|
11
11
|
export { toIteratorDirective } from './to-iterator-directive';
|
package/dist/index.js
CHANGED
|
@@ -676,7 +676,7 @@ function normalizeTabIndex(value) {
|
|
|
676
676
|
const shouldNormalize = value > 0 && typeof value !== 'boolean';
|
|
677
677
|
return shouldNormalize ? 0 : value;
|
|
678
678
|
}
|
|
679
|
-
/** version: 9.0.4-alpha.
|
|
679
|
+
/** version: 9.0.4-alpha.2 */
|
|
680
680
|
|
|
681
681
|
/**
|
|
682
682
|
* Copyright (c) 2026 Salesforce, Inc.
|
|
@@ -700,7 +700,7 @@ function normalizeTabIndex(value) {
|
|
|
700
700
|
* @param value
|
|
701
701
|
* @param msg
|
|
702
702
|
*/
|
|
703
|
-
/** version: 9.0.4-alpha.
|
|
703
|
+
/** version: 9.0.4-alpha.2 */
|
|
704
704
|
|
|
705
705
|
/*
|
|
706
706
|
* Copyright (c) 2023, salesforce.com, inc.
|
|
@@ -724,7 +724,7 @@ class SignalBaseClass {
|
|
|
724
724
|
}
|
|
725
725
|
}
|
|
726
726
|
}
|
|
727
|
-
/** version: 9.0.4-alpha.
|
|
727
|
+
/** version: 9.0.4-alpha.2 */
|
|
728
728
|
|
|
729
729
|
/**
|
|
730
730
|
* Copyright (c) 2026 Salesforce, Inc.
|
|
@@ -815,7 +815,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
815
815
|
setFeatureFlag(name, value);
|
|
816
816
|
}
|
|
817
817
|
}
|
|
818
|
-
/** version: 9.0.4-alpha.
|
|
818
|
+
/** version: 9.0.4-alpha.2 */
|
|
819
819
|
|
|
820
820
|
/*
|
|
821
821
|
* Copyright (c) 2024, Salesforce, Inc.
|
|
@@ -1640,7 +1640,6 @@ function connectContext(le) {
|
|
|
1640
1640
|
}
|
|
1641
1641
|
catch (err) {
|
|
1642
1642
|
if (process.env.NODE_ENV !== 'production') {
|
|
1643
|
-
// eslint-disable-next-line preserve-caught-error
|
|
1644
1643
|
throw new Error(`Attempted to connect to trusted context but received the following error: ${err.message}`);
|
|
1645
1644
|
}
|
|
1646
1645
|
}
|
|
@@ -2133,5 +2132,5 @@ function* toIteratorDirective(iterable) {
|
|
|
2133
2132
|
}
|
|
2134
2133
|
|
|
2135
2134
|
export { ClassList, LightningElement, SYMBOL__DEFAULT_TEMPLATE, SYMBOL__GENERATE_MARKUP, SYMBOL__SET_INTERNALS, SignalBaseClass, addTrustedContext as __dangerous_do_not_use_addTrustedContext, addSlottedContent, api, connectContext$1 as connectContext, createContextProvider, createElement, establishContextfulRelationship, fallbackTmpl, fallbackTmplNoYield, freezeTemplate, getComponentDef, hasScopedStaticStylesheets, hot, htmlEscape, isComponentConstructor, isTrustedSignal, mutationTracker, normalizeClass, normalizeTabIndex, normalizeTextContent, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, renderAttrs, renderAttrsNoYield, serverSideRenderComponent as renderComponent, renderStylesheets, renderTextContent, renderer, sanitizeAttribute, sanitizeHtmlContent, serverSideRenderComponent, setContextKeys, setFeatureFlag, setFeatureFlagForTest, setHooks, setTrustedContextSet, setTrustedSignalSet, swapComponent, swapStyle, swapTemplate, toIteratorDirective, track, unwrap$1 as unwrap, validateStyleTextContents, wire };
|
|
2136
|
-
/** version: 9.0.4-alpha.
|
|
2135
|
+
/** version: 9.0.4-alpha.2 */
|
|
2137
2136
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/ssr-runtime",
|
|
7
|
-
"version": "9.0.4-alpha.
|
|
7
|
+
"version": "9.0.4-alpha.2",
|
|
8
8
|
"description": "Runtime complement to @lwc/ssr-compiler",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc",
|
|
@@ -21,22 +21,17 @@
|
|
|
21
21
|
"url": "https://github.com/salesforce/lwc/issues"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|
|
24
|
-
"type": "module",
|
|
25
24
|
"publishConfig": {
|
|
26
25
|
"access": "public"
|
|
27
26
|
},
|
|
28
|
-
"engines": {
|
|
29
|
-
"node": ">=16.6.0"
|
|
30
|
-
},
|
|
31
27
|
"volta": {
|
|
32
28
|
"extends": "../../../package.json"
|
|
33
29
|
},
|
|
34
|
-
"main": "dist/index.js",
|
|
30
|
+
"main": "dist/index.cjs.js",
|
|
35
31
|
"module": "dist/index.js",
|
|
36
32
|
"types": "dist/index.d.ts",
|
|
37
33
|
"files": [
|
|
38
34
|
"dist/**/*.js",
|
|
39
|
-
"dist/**/*.cjs",
|
|
40
35
|
"dist/**/*.d.ts"
|
|
41
36
|
],
|
|
42
37
|
"scripts": {
|
|
@@ -53,10 +48,10 @@
|
|
|
53
48
|
}
|
|
54
49
|
},
|
|
55
50
|
"devDependencies": {
|
|
56
|
-
"@lwc/shared": "9.0.4-alpha.
|
|
57
|
-
"@lwc/engine-core": "9.0.4-alpha.
|
|
58
|
-
"@lwc/features": "9.0.4-alpha.
|
|
59
|
-
"@lwc/signals": "9.0.4-alpha.
|
|
51
|
+
"@lwc/shared": "9.0.4-alpha.2",
|
|
52
|
+
"@lwc/engine-core": "9.0.4-alpha.2",
|
|
53
|
+
"@lwc/features": "9.0.4-alpha.2",
|
|
54
|
+
"@lwc/signals": "9.0.4-alpha.2",
|
|
60
55
|
"observable-membrane": "2.0.0"
|
|
61
56
|
}
|
|
62
57
|
}
|