@lwc/shared 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 +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -170,7 +170,7 @@ function isBoolean(obj) {
|
|
|
170
170
|
* @returns `true` if the value is a function.
|
|
171
171
|
*/
|
|
172
172
|
// Replacing `Function` with a narrower type that works for all our use cases is tricky...
|
|
173
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
173
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
174
174
|
function isFunction(obj) {
|
|
175
175
|
return typeof obj === 'function';
|
|
176
176
|
}
|
|
@@ -748,7 +748,7 @@ function htmlEscape(str, attrMode = false) {
|
|
|
748
748
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
749
749
|
*/
|
|
750
750
|
// Increment whenever the LWC template compiler changes
|
|
751
|
-
const LWC_VERSION = "7.2.
|
|
751
|
+
const LWC_VERSION = "7.2.3";
|
|
752
752
|
const LWC_VERSION_COMMENT = `LWC compiler v${LWC_VERSION}`;
|
|
753
753
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
754
754
|
|
|
@@ -848,5 +848,5 @@ exports.reservedKeywords = reservedKeywords;
|
|
|
848
848
|
exports.seal = seal;
|
|
849
849
|
exports.setPrototypeOf = setPrototypeOf;
|
|
850
850
|
exports.toString = toString;
|
|
851
|
-
/** version: 7.2.
|
|
851
|
+
/** version: 7.2.3 */
|
|
852
852
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.js
CHANGED
|
@@ -166,7 +166,7 @@ function isBoolean(obj) {
|
|
|
166
166
|
* @returns `true` if the value is a function.
|
|
167
167
|
*/
|
|
168
168
|
// Replacing `Function` with a narrower type that works for all our use cases is tricky...
|
|
169
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
169
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
170
170
|
function isFunction(obj) {
|
|
171
171
|
return typeof obj === 'function';
|
|
172
172
|
}
|
|
@@ -744,10 +744,10 @@ function htmlEscape(str, attrMode = false) {
|
|
|
744
744
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
745
745
|
*/
|
|
746
746
|
// Increment whenever the LWC template compiler changes
|
|
747
|
-
const LWC_VERSION = "7.2.
|
|
747
|
+
const LWC_VERSION = "7.2.3";
|
|
748
748
|
const LWC_VERSION_COMMENT = `LWC compiler v${LWC_VERSION}`;
|
|
749
749
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
750
750
|
|
|
751
751
|
export { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap, ArrayConcat, ArrayCopyWithin, ArrayEvery, ArrayFill, ArrayFilter, ArrayFind, ArrayFindIndex, ArrayFrom, ArrayIncludes, ArrayIndexOf, ArrayJoin, ArrayMap, ArrayPop, ArrayPush, ArrayReduce, ArrayReverse, ArrayShift, ArraySlice, ArraySome, ArraySort, ArraySplice, ArrayUnshift, HIGHEST_API_VERSION, HTML_NAMESPACE, ID_REFERENCING_ATTRIBUTES_SET, KEY__LEGACY_SHADOW_TOKEN, KEY__LEGACY_SHADOW_TOKEN_PRIVATE, KEY__NATIVE_GET_ELEMENT_BY_ID, KEY__NATIVE_QUERY_SELECTOR_ALL, KEY__SCOPED_CSS, KEY__SHADOW_RESOLVER, KEY__SHADOW_RESOLVER_PRIVATE, KEY__SHADOW_STATIC, KEY__SHADOW_STATIC_PRIVATE, KEY__SHADOW_TOKEN, KEY__SHADOW_TOKEN_PRIVATE, KEY__SYNTHETIC_MODE, LOWEST_API_VERSION, LWC_VERSION, LWC_VERSION_COMMENT, LWC_VERSION_COMMENT_REGEX, MATHML_NAMESPACE, SVG_NAMESPACE, StringCharAt, StringCharCodeAt, StringFromCharCode, StringReplace, StringSlice, StringSplit, StringToLowerCase, StringTrim, XLINK_NAMESPACE, XML_NAMESPACE, arrayEvery, assert, assign, create, defineProperties, defineProperty, entries, forEach, freeze, getAPIVersionFromNumber, getOwnPropertyDescriptor, getOwnPropertyDescriptors, getOwnPropertyNames, getPropertyDescriptor, getPrototypeOf, hasOwnProperty, htmlEscape, htmlPropertyToAttribute, isAPIFeatureEnabled, isAriaAttribute, isArray, isBoolean, isBooleanAttribute, isFalse, isFrozen, isFunction, isGlobalHtmlAttribute, isNull, isNumber, isObject, isString, isTrue, isUndefined, isVoidElement, kebabCaseToCamelCase, keys, noop, reservedKeywords, seal, setPrototypeOf, toString };
|
|
752
|
-
/** version: 7.2.
|
|
752
|
+
/** version: 7.2.3 */
|
|
753
753
|
//# 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/shared",
|
|
7
|
-
"version": "7.2.
|
|
7
|
+
"version": "7.2.3",
|
|
8
8
|
"description": "Utilities and methods that are shared across packages",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|