@lwc/synthetic-shadow 7.2.2 → 7.2.3
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 +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
@@ -145,7 +145,7 @@ function isFalse(obj) {
|
|
145
145
|
* @returns `true` if the value is a function.
|
146
146
|
*/
|
147
147
|
// Replacing `Function` with a narrower type that works for all our use cases is tricky...
|
148
|
-
// eslint-disable-next-line @typescript-eslint/
|
148
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
149
149
|
function isFunction(obj) {
|
150
150
|
return typeof obj === 'function';
|
151
151
|
}
|
@@ -211,7 +211,7 @@ const KEY__LEGACY_SHADOW_TOKEN_PRIVATE = '$$LegacyShadowTokenKey$$';
|
|
211
211
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
212
212
|
const KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
|
213
213
|
const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
214
|
-
/** version: 7.2.
|
214
|
+
/** version: 7.2.3 */
|
215
215
|
|
216
216
|
/**
|
217
217
|
* Copyright (c) 2024 Salesforce, Inc.
|
@@ -219,7 +219,7 @@ const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
|
219
219
|
if (!globalThis.lwcRuntimeFlags) {
|
220
220
|
Object.defineProperty(globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
221
221
|
}
|
222
|
-
/** version: 7.2.
|
222
|
+
/** version: 7.2.3 */
|
223
223
|
|
224
224
|
/*
|
225
225
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -4377,6 +4377,6 @@ defineProperty(Element.prototype, '$domManual$', {
|
|
4377
4377
|
},
|
4378
4378
|
configurable: true,
|
4379
4379
|
});
|
4380
|
-
/** version: 7.2.
|
4380
|
+
/** version: 7.2.3 */
|
4381
4381
|
}
|
4382
4382
|
//# sourceMappingURL=index.js.map
|