@lwc/synthetic-shadow 2.11.3 → 2.12.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/synthetic-shadow.js +3 -3
- package/package.json +5 -4
package/dist/synthetic-shadow.js
CHANGED
@@ -146,7 +146,7 @@ const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
146
146
|
// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
|
147
147
|
// we can't use typeof since it will fail when transpiling.
|
148
148
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
149
|
-
/** version: 2.
|
149
|
+
/** version: 2.12.0 */
|
150
150
|
|
151
151
|
/*
|
152
152
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -1300,7 +1300,7 @@ if (!_globalThis.lwcRuntimeFlags) {
|
|
1300
1300
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
1301
1301
|
}
|
1302
1302
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
1303
|
-
/** version: 2.
|
1303
|
+
/** version: 2.12.0 */
|
1304
1304
|
|
1305
1305
|
/*
|
1306
1306
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -5066,4 +5066,4 @@ defineProperty(Element.prototype, '$domManual$', {
|
|
5066
5066
|
},
|
5067
5067
|
configurable: true,
|
5068
5068
|
});
|
5069
|
-
/** version: 2.
|
5069
|
+
/** version: 2.12.0 */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lwc/synthetic-shadow",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.12.0",
|
4
4
|
"description": "Synthetic Shadow Root for LWC",
|
5
5
|
"homepage": "https://lwc.dev/",
|
6
6
|
"repository": {
|
@@ -16,7 +16,8 @@
|
|
16
16
|
"module": "dist/synthetic-shadow.js",
|
17
17
|
"scripts": {
|
18
18
|
"clean": "rm -rf dist/",
|
19
|
-
"build": "rollup --config ./scripts/rollup/rollup.config.js"
|
19
|
+
"build": "rollup --config ./scripts/rollup/rollup.config.js",
|
20
|
+
"dev": "rollup --config scripts/rollup/rollup.config.js --watch --no-watch.clearScreen"
|
20
21
|
},
|
21
22
|
"files": [
|
22
23
|
"dist/"
|
@@ -36,7 +37,7 @@
|
|
36
37
|
"access": "public"
|
37
38
|
},
|
38
39
|
"devDependencies": {
|
39
|
-
"@lwc/features": "2.
|
40
|
-
"@lwc/shared": "2.
|
40
|
+
"@lwc/features": "2.12.0",
|
41
|
+
"@lwc/shared": "2.12.0"
|
41
42
|
}
|
42
43
|
}
|