@lwc/engine-core 3.1.1 → 3.1.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.js +3 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs.js
CHANGED
|
@@ -3157,7 +3157,8 @@ function evaluateStylesheetsContent(stylesheets, stylesheetToken, vm) {
|
|
|
3157
3157
|
if (lwcRuntimeFlags.DISABLE_LIGHT_DOM_UNSCOPED_CSS &&
|
|
3158
3158
|
!isScopedCss &&
|
|
3159
3159
|
vm.renderMode === 0 /* RenderMode.Light */) {
|
|
3160
|
-
logError('Unscoped CSS is not supported in Light DOM. Please use scoped CSS
|
|
3160
|
+
logError('Unscoped CSS is not supported in Light DOM in this environment. Please use scoped CSS ' +
|
|
3161
|
+
'(*.scoped.css) instead of unscoped CSS (*.css). See also: https://sfdc.co/scoped-styles-light-dom');
|
|
3161
3162
|
continue;
|
|
3162
3163
|
}
|
|
3163
3164
|
// Apply the scope token only if the stylesheet itself is scoped, or if we're rendering synthetic shadow.
|
|
@@ -6929,5 +6930,5 @@ exports.swapTemplate = swapTemplate;
|
|
|
6929
6930
|
exports.track = track;
|
|
6930
6931
|
exports.unwrap = unwrap;
|
|
6931
6932
|
exports.wire = wire;
|
|
6932
|
-
/** version: 3.1.
|
|
6933
|
+
/** version: 3.1.2 */
|
|
6933
6934
|
//# sourceMappingURL=index.cjs.js.map
|