@lwc/engine-core 8.12.1 → 8.12.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/framework/main.d.ts +1 -0
- package/dist/index.cjs.js +4 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +5 -24
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/framework/attributes.d.ts +0 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Copyright (c) 2024 Salesforce, Inc.
|
|
3
3
|
*/
|
|
4
|
-
import { noop, StringToLowerCase, isNull, ArrayPush as ArrayPush$1, ArrayJoin, isFrozen, isUndefined as isUndefined$1, defineProperty, seal, create, isAPIFeatureEnabled, isFunction as isFunction$1, keys, ArrayFilter, isObject, isArray as isArray$1, getOwnPropertyNames as getOwnPropertyNames$1, getOwnPropertySymbols as getOwnPropertySymbols$1, toString, isString, ArrayIndexOf, ArrayPop, isFalse, isTrustedSignal, hasOwnProperty as hasOwnProperty$1, entries, AriaPropNameToAttrNameMap, getPropertyDescriptor, AriaAttrNameToPropNameMap, forEach, defineProperties, getPrototypeOf as getPrototypeOf$1, setPrototypeOf, assign, assert, freeze, KEY__SYNTHETIC_MODE, getOwnPropertyDescriptor as getOwnPropertyDescriptor$1, LWC_VERSION_COMMENT_REGEX, LWC_VERSION, getOwnPropertyDescriptors, htmlPropertyToAttribute, ArraySlice, ArrayMap, isTrue, KEY__SCOPED_CSS, KEY__NATIVE_ONLY_CSS, ArraySplice, flattenStylesheets, kebabCaseToCamelCase, StringCharCodeAt, XML_NAMESPACE, XLINK_NAMESPACE, StringSlice, SVG_NAMESPACE, KEY__SHADOW_STATIC, KEY__SHADOW_RESOLVER, ArraySome, isNumber, StringReplace, sanitizeHtmlContent, normalizeClass, ArraySort, ArrayFrom, htmlEscape, StringCharAt, LOWEST_API_VERSION, ArrayUnshift, KEY__NATIVE_GET_ELEMENT_BY_ID, KEY__NATIVE_QUERY_SELECTOR_ALL, ID_REFERENCING_ATTRIBUTES_SET, KEY__SHADOW_TOKEN, StringSplit, parseStyleText, arrayEvery, ArrayCopyWithin, ArrayFill, ArrayReverse, ArrayShift } from '@lwc/shared';
|
|
4
|
+
import { noop, StringToLowerCase, isNull, ArrayPush as ArrayPush$1, ArrayJoin, isFrozen, isUndefined as isUndefined$1, defineProperty, seal, create, isAPIFeatureEnabled, isFunction as isFunction$1, keys, ArrayFilter, isObject, isArray as isArray$1, getOwnPropertyNames as getOwnPropertyNames$1, getOwnPropertySymbols as getOwnPropertySymbols$1, toString, isString, ArrayIndexOf, ArrayPop, isFalse, isTrustedSignal, hasOwnProperty as hasOwnProperty$1, entries, AriaPropNameToAttrNameMap, getPropertyDescriptor, AriaAttrNameToPropNameMap, forEach, REFLECTIVE_GLOBAL_PROPERTY_SET, defineProperties, getPrototypeOf as getPrototypeOf$1, setPrototypeOf, assign, assert, freeze, KEY__SYNTHETIC_MODE, getOwnPropertyDescriptor as getOwnPropertyDescriptor$1, LWC_VERSION_COMMENT_REGEX, LWC_VERSION, getOwnPropertyDescriptors, htmlPropertyToAttribute, ArraySlice, ArrayMap, isTrue, KEY__SCOPED_CSS, KEY__NATIVE_ONLY_CSS, ArraySplice, flattenStylesheets, kebabCaseToCamelCase, StringCharCodeAt, XML_NAMESPACE, XLINK_NAMESPACE, StringSlice, SVG_NAMESPACE, KEY__SHADOW_STATIC, KEY__SHADOW_RESOLVER, ArraySome, isNumber, StringReplace, sanitizeHtmlContent, normalizeClass, ArraySort, ArrayFrom, htmlEscape, StringCharAt, LOWEST_API_VERSION, ArrayUnshift, KEY__NATIVE_GET_ELEMENT_BY_ID, KEY__NATIVE_QUERY_SELECTOR_ALL, ID_REFERENCING_ATTRIBUTES_SET, KEY__SHADOW_TOKEN, StringSplit, parseStyleText, arrayEvery, ArrayCopyWithin, ArrayFill, ArrayReverse, ArrayShift } from '@lwc/shared';
|
|
5
5
|
export { setHooks, setTrustedSignalSet } from '@lwc/shared';
|
|
6
6
|
export { setFeatureFlag, setFeatureFlagForTest } from '@lwc/features';
|
|
7
7
|
|
|
@@ -805,25 +805,6 @@ for (const [attrName, propName] of entries(AriaAttrNameToPropNameMap)) {
|
|
|
805
805
|
descriptors[propName] = ariaDescriptor(attrName);
|
|
806
806
|
}
|
|
807
807
|
|
|
808
|
-
/*
|
|
809
|
-
* Copyright (c) 2018, salesforce.com, inc.
|
|
810
|
-
* All rights reserved.
|
|
811
|
-
* SPDX-License-Identifier: MIT
|
|
812
|
-
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
813
|
-
*/
|
|
814
|
-
// These properties get added to LWCElement.prototype publicProps automatically
|
|
815
|
-
const defaultDefHTMLPropertyNames = [
|
|
816
|
-
'accessKey',
|
|
817
|
-
'dir',
|
|
818
|
-
'draggable',
|
|
819
|
-
'hidden',
|
|
820
|
-
'id',
|
|
821
|
-
'lang',
|
|
822
|
-
'spellcheck',
|
|
823
|
-
'tabIndex',
|
|
824
|
-
'title',
|
|
825
|
-
];
|
|
826
|
-
|
|
827
808
|
/*
|
|
828
809
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
829
810
|
* All rights reserved.
|
|
@@ -845,7 +826,7 @@ forEach.call(keys(AriaPropNameToAttrNameMap), (propName) => {
|
|
|
845
826
|
HTMLElementOriginalDescriptors[propName] = descriptor;
|
|
846
827
|
}
|
|
847
828
|
});
|
|
848
|
-
|
|
829
|
+
for (const propName of REFLECTIVE_GLOBAL_PROPERTY_SET) {
|
|
849
830
|
// Note: intentionally using our in-house getPropertyDescriptor instead of getOwnPropertyDescriptor here because
|
|
850
831
|
// in IE11, id property is on Element.prototype instead of HTMLElement, and we suspect that more will fall into
|
|
851
832
|
// this category, so, better to be sure.
|
|
@@ -853,7 +834,7 @@ forEach.call(defaultDefHTMLPropertyNames, (propName) => {
|
|
|
853
834
|
if (!isUndefined$1(descriptor)) {
|
|
854
835
|
HTMLElementOriginalDescriptors[propName] = descriptor;
|
|
855
836
|
}
|
|
856
|
-
}
|
|
837
|
+
}
|
|
857
838
|
|
|
858
839
|
/*
|
|
859
840
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -8385,6 +8366,6 @@ function readonly(obj) {
|
|
|
8385
8366
|
return getReadOnlyProxy(obj);
|
|
8386
8367
|
}
|
|
8387
8368
|
|
|
8388
|
-
export { LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, computeShadowAndRenderMode, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, runFormAssociatedCallback, runFormDisabledCallback, runFormResetCallback, runFormStateRestoreCallback, sanitizeAttribute, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
8389
|
-
/** version: 8.12.
|
|
8369
|
+
export { BaseBridgeElement, LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, computeShadowAndRenderMode, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, runFormAssociatedCallback, runFormDisabledCallback, runFormResetCallback, runFormStateRestoreCallback, sanitizeAttribute, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
8370
|
+
/** version: 8.12.2 */
|
|
8390
8371
|
//# sourceMappingURL=index.js.map
|