@lwc/wire-service 2.45.1 → 2.45.3
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/{wire-service.cjs.js → index.cjs.js} +13 -5
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.js +193 -0
- package/dist/index.js.map +1 -0
- package/dist/wire-service.js +11 -5
- package/package.json +34 -29
- package/dist/wire-service.cjs.js.map +0 -1
- package/dist/wire-service.js.map +0 -1
- /package/{types → dist}/index.d.ts +0 -0
- /package/{types → dist}/value-changed-event.d.ts +0 -0
package/README.md
CHANGED
@@ -1,15 +1,23 @@
|
|
1
1
|
/**
|
2
|
-
* Copyright (C)
|
2
|
+
* Copyright (C) 2023 salesforce.com, inc.
|
3
3
|
*/
|
4
4
|
'use strict';
|
5
5
|
|
6
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
7
|
+
|
6
8
|
/**
|
7
|
-
* Copyright (C)
|
9
|
+
* Copyright (C) 2023 salesforce.com, inc.
|
10
|
+
*/
|
11
|
+
/*
|
12
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
13
|
+
* All rights reserved.
|
14
|
+
* SPDX-License-Identifier: MIT
|
15
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
8
16
|
*/
|
9
17
|
function isUndefined(obj) {
|
10
18
|
return obj === undefined;
|
11
19
|
}
|
12
|
-
/** version: 2.45.
|
20
|
+
/** version: 2.45.3 */
|
13
21
|
|
14
22
|
/*
|
15
23
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -187,5 +195,5 @@ class LegacyWireAdapterBridge {
|
|
187
195
|
exports.ValueChangedEvent = ValueChangedEvent;
|
188
196
|
exports.register = register;
|
189
197
|
exports.registerWireService = registerWireService;
|
190
|
-
/** version: 2.45.
|
191
|
-
//# sourceMappingURL=
|
198
|
+
/** version: 2.45.3 */
|
199
|
+
//# sourceMappingURL=index.cjs.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":["../../shared/dist/index.js","../src/value-changed-event.ts","../src/index.ts"],"sourcesContent":["/**\n * Copyright (C) 2023 salesforce.com, inc.\n */\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nfunction invariant(value, msg) {\n if (!value) {\n throw new Error(`Invariant Violation: ${msg}`);\n }\n}\nfunction isTrue$1(value, msg) {\n if (!value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction isFalse$1(value, msg) {\n if (value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction fail(msg) {\n throw new Error(msg);\n}\n\nvar assert = /*#__PURE__*/Object.freeze({\n __proto__: null,\n fail: fail,\n invariant: invariant,\n isFalse: isFalse$1,\n isTrue: isTrue$1\n});\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;\nconst { isArray } = Array;\nconst { concat: ArrayConcat, copyWithin: ArrayCopyWithin, every: ArrayEvery, fill: ArrayFill, filter: ArrayFilter, find: ArrayFind, findIndex: ArrayFindIndex, includes: ArrayIncludes, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, pop: ArrayPop, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, shift: ArrayShift, slice: ArraySlice, some: ArraySome, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;\n// The type of the return value of Array.prototype.every is `this is T[]`. However, once this\n// Array method is pulled out of the prototype, the function is now referencing `this` where\n// `this` is meaningless, resulting in a TypeScript compilation error.\n//\n// Exposing this helper function is the closest we can get to preserving the usage patterns\n// of Array.prototype methods used elsewhere in the codebase.\nfunction arrayEvery(arr, predicate) {\n return ArrayEvery.call(arr, predicate);\n}\nconst { fromCharCode: StringFromCharCode } = String;\nconst { charCodeAt: StringCharCodeAt, replace: StringReplace, split: StringSplit, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;\nfunction isUndefined(obj) {\n return obj === undefined;\n}\nfunction isNull(obj) {\n return obj === null;\n}\nfunction isTrue(obj) {\n return obj === true;\n}\nfunction isFalse(obj) {\n return obj === false;\n}\nfunction isBoolean(obj) {\n return typeof obj === 'boolean';\n}\nfunction isFunction(obj) {\n return typeof obj === 'function';\n}\nfunction isObject(obj) {\n return typeof obj === 'object';\n}\nfunction isString(obj) {\n return typeof obj === 'string';\n}\nfunction isNumber(obj) {\n return typeof obj === 'number';\n}\nfunction noop() {\n /* Do nothing */\n}\nconst OtS = {}.toString;\nfunction toString(obj) {\n if (obj && obj.toString) {\n // Arrays might hold objects with \"null\" prototype So using\n // Array.prototype.toString directly will cause an error Iterate through\n // all the items and handle individually.\n if (isArray(obj)) {\n return ArrayJoin.call(ArrayMap.call(obj, toString), ',');\n }\n return obj.toString();\n }\n else if (typeof obj === 'object') {\n return OtS.call(obj);\n }\n else {\n return obj + '';\n }\n}\nfunction getPropertyDescriptor(o, p) {\n do {\n const d = getOwnPropertyDescriptor(o, p);\n if (!isUndefined(d)) {\n return d;\n }\n o = getPrototypeOf(o);\n } while (o !== null);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n/**\n * According to the following list, there are 48 aria attributes of which two (ariaDropEffect and\n * ariaGrabbed) are deprecated:\n * https://www.w3.org/TR/wai-aria-1.1/#x6-6-definitions-of-states-and-properties-all-aria-attributes\n *\n * The above list of 46 aria attributes is consistent with the following resources:\n * https://github.com/w3c/aria/pull/708/files#diff-eacf331f0ffc35d4b482f1d15a887d3bR11060\n * https://wicg.github.io/aom/spec/aria-reflection.html\n *\n * NOTE: If you update this list, please update test files that implicitly reference this list!\n * Searching the codebase for `aria-flowto` and `ariaFlowTo` should be good enough to find all usages.\n */\nconst AriaPropertyNames = [\n 'ariaActiveDescendant',\n 'ariaAtomic',\n 'ariaAutoComplete',\n 'ariaBusy',\n 'ariaChecked',\n 'ariaColCount',\n 'ariaColIndex',\n 'ariaColSpan',\n 'ariaControls',\n 'ariaCurrent',\n 'ariaDescribedBy',\n 'ariaDetails',\n 'ariaDisabled',\n 'ariaErrorMessage',\n 'ariaExpanded',\n 'ariaFlowTo',\n 'ariaHasPopup',\n 'ariaHidden',\n 'ariaInvalid',\n 'ariaKeyShortcuts',\n 'ariaLabel',\n 'ariaLabelledBy',\n 'ariaLevel',\n 'ariaLive',\n 'ariaModal',\n 'ariaMultiLine',\n 'ariaMultiSelectable',\n 'ariaOrientation',\n 'ariaOwns',\n 'ariaPlaceholder',\n 'ariaPosInSet',\n 'ariaPressed',\n 'ariaReadOnly',\n 'ariaRelevant',\n 'ariaRequired',\n 'ariaRoleDescription',\n 'ariaRowCount',\n 'ariaRowIndex',\n 'ariaRowSpan',\n 'ariaSelected',\n 'ariaSetSize',\n 'ariaSort',\n 'ariaValueMax',\n 'ariaValueMin',\n 'ariaValueNow',\n 'ariaValueText',\n 'role',\n];\nconst { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap } = /*@__PURE__*/ (() => {\n const AriaAttrNameToPropNameMap = create(null);\n const AriaPropNameToAttrNameMap = create(null);\n // Synthetic creation of all AOM property descriptors for Custom Elements\n forEach.call(AriaPropertyNames, (propName) => {\n const attrName = StringToLowerCase.call(StringReplace.call(propName, /^aria/, () => 'aria-'));\n AriaAttrNameToPropNameMap[attrName] = propName;\n AriaPropNameToAttrNameMap[propName] = attrName;\n });\n return { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap };\n})();\nfunction isAriaAttribute(attrName) {\n return attrName in AriaAttrNameToPropNameMap;\n}\n// These attributes take either an ID or a list of IDs as values.\n// This includes aria-* attributes as well as the special non-ARIA \"for\" attribute\nconst ID_REFERENCING_ATTRIBUTES_SET = /*@__PURE__*/ new Set([\n 'aria-activedescendant',\n 'aria-controls',\n 'aria-describedby',\n 'aria-details',\n 'aria-errormessage',\n 'aria-flowto',\n 'aria-labelledby',\n 'aria-owns',\n 'for',\n]);\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// See browser support for globalThis:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility\n/* istanbul ignore next */\n// @ts-ignore\nconst _globalThis = typeof globalThis === 'object' ? globalThis : window;\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst KEY__IS_NATIVE_SHADOW_ROOT_DEFINED = '$isNativeShadowRootDefined$';\nconst KEY__SHADOW_RESOLVER = '$shadowResolver$';\nconst KEY__SHADOW_RESOLVER_PRIVATE = '$$ShadowResolverKey$$';\nconst KEY__SHADOW_STATIC = '$shadowStaticNode$';\nconst KEY__SHADOW_STATIC_PRIVATE = '$shadowStaticNodeKey$';\nconst KEY__SHADOW_TOKEN = '$shadowToken$';\nconst KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';\nconst KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';\nconst KEY__SCOPED_CSS = '$scoped$';\nconst KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';\nconst KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';\n\n/*\n * Copyright (c) 2022, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\nconst XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';\nconst SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\nconst MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\nconst XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Void elements are elements that self-close even without an explicit solidus (slash),\n// e.g. `</tagName>` or `<tagName />`. For instance, `<meta>` closes on its own; no need for a slash.\n// These only come from HTML; there are no void elements in the SVG or MathML namespaces.\n// See: https://html.spec.whatwg.org/multipage/syntax.html#syntax-tags\nconst VOID_ELEMENTS = [\n 'area',\n 'base',\n 'br',\n 'col',\n 'embed',\n 'hr',\n 'img',\n 'input',\n 'link',\n 'meta',\n 'source',\n 'track',\n 'wbr',\n];\n// These elements have been deprecated but preserving their usage for backwards compatibility\n// until we can officially deprecate them from LWC.\n// See: https://html.spec.whatwg.org/multipage/obsolete.html#obsolete-but-conforming-features\nconst DEPRECATED_VOID_ELEMENTS = ['param', 'keygen', 'menuitem'];\nconst VOID_ELEMENTS_SET = /*@__PURE__*/ new Set([...VOID_ELEMENTS, ...DEPRECATED_VOID_ELEMENTS]);\nfunction isVoidElement(name, namespace) {\n return namespace === HTML_NAMESPACE && VOID_ELEMENTS_SET.has(name.toLowerCase());\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst CAMEL_REGEX = /-([a-z])/g;\n/**\n * Maps boolean attribute name to supported tags: 'boolean attr name' => Set of allowed tag names\n * that supports them.\n */\nconst BOOLEAN_ATTRIBUTES = /*@__PURE__@*/ new Map([\n ['autofocus', /*@__PURE__@*/ new Set(['button', 'input', 'keygen', 'select', 'textarea'])],\n ['autoplay', /*@__PURE__@*/ new Set(['audio', 'video'])],\n ['checked', /*@__PURE__@*/ new Set(['command', 'input'])],\n [\n 'disabled',\n /*@__PURE__@*/ new Set([\n 'button',\n 'command',\n 'fieldset',\n 'input',\n 'keygen',\n 'optgroup',\n 'select',\n 'textarea',\n ]),\n ],\n ['formnovalidate', /*@__PURE__@*/ new Set(['button'])],\n ['hidden', /*@__PURE__@*/ new Set()],\n ['loop', /*@__PURE__@*/ new Set(['audio', 'bgsound', 'marquee', 'video'])],\n ['multiple', /*@__PURE__@*/ new Set(['input', 'select'])],\n ['muted', /*@__PURE__@*/ new Set(['audio', 'video'])],\n ['novalidate', /*@__PURE__@*/ new Set(['form'])],\n ['open', /*@__PURE__@*/ new Set(['details'])],\n ['readonly', /*@__PURE__@*/ new Set(['input', 'textarea'])],\n ['readonly', /*@__PURE__@*/ new Set(['input', 'textarea'])],\n ['required', /*@__PURE__@*/ new Set(['input', 'select', 'textarea'])],\n ['reversed', /*@__PURE__@*/ new Set(['ol'])],\n ['selected', /*@__PURE__@*/ new Set(['option'])],\n]);\nfunction isBooleanAttribute(attrName, tagName) {\n const allowedTagNames = BOOLEAN_ATTRIBUTES.get(attrName);\n return (allowedTagNames !== undefined &&\n (allowedTagNames.size === 0 || allowedTagNames.has(tagName)));\n}\n// This list is based on https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes\nconst GLOBAL_ATTRIBUTE = /*@__PURE__*/ new Set([\n 'accesskey',\n 'autocapitalize',\n 'autofocus',\n 'class',\n 'contenteditable',\n 'contextmenu',\n 'dir',\n 'draggable',\n 'enterkeyhint',\n 'exportparts',\n 'hidden',\n 'id',\n 'inputmode',\n 'is',\n 'itemid',\n 'itemprop',\n 'itemref',\n 'itemscope',\n 'itemtype',\n 'lang',\n 'nonce',\n 'part',\n 'slot',\n 'spellcheck',\n 'style',\n 'tabindex',\n 'title',\n 'translate',\n]);\nfunction isGlobalHtmlAttribute(attrName) {\n return GLOBAL_ATTRIBUTE.has(attrName);\n}\n// Convoluted map generation so that @lwc/shared remains fully tree-shakable (verify-treeshakable)\nconst { NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING, NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING } = \n/*#__PURE__*/ (() => {\n /**\n * Map composed of properties to attributes not following the HTML property to attribute mapping\n * convention.\n */\n const NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING = new Map([\n ['accessKey', 'accesskey'],\n ['readOnly', 'readonly'],\n ['tabIndex', 'tabindex'],\n ['bgColor', 'bgcolor'],\n ['colSpan', 'colspan'],\n ['rowSpan', 'rowspan'],\n ['contentEditable', 'contenteditable'],\n ['crossOrigin', 'crossorigin'],\n ['dateTime', 'datetime'],\n ['formAction', 'formaction'],\n ['isMap', 'ismap'],\n ['maxLength', 'maxlength'],\n ['minLength', 'minlength'],\n ['noValidate', 'novalidate'],\n ['useMap', 'usemap'],\n ['htmlFor', 'for'],\n ]);\n /**\n * Inverted map with attribute name key and property name value.\n */\n const NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING = new Map();\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.forEach((value, key) => NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.set(value, key));\n return {\n NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING,\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING,\n };\n})();\n/**\n * Map associating previously transformed HTML property into HTML attribute.\n */\nconst CACHED_PROPERTY_ATTRIBUTE_MAPPING = /*@__PURE__@*/ new Map();\n/**\n * Map associating previously transformed HTML attribute into HTML property.\n */\nconst CACHED_ATTRIBUTE_PROPERTY_MAPPING = /*@__PURE__@*/ new Map();\nfunction htmlPropertyToAttribute(propName) {\n const ariaAttributeName = AriaPropNameToAttrNameMap[propName];\n if (!isUndefined(ariaAttributeName)) {\n return ariaAttributeName;\n }\n const specialAttributeName = NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(specialAttributeName)) {\n return specialAttributeName;\n }\n const cachedAttributeName = CACHED_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(cachedAttributeName)) {\n return cachedAttributeName;\n }\n let attributeName = '';\n for (let i = 0, len = propName.length; i < len; i++) {\n const code = StringCharCodeAt.call(propName, i);\n if (code >= 65 && // \"A\"\n code <= 90 // \"Z\"\n ) {\n attributeName += '-' + StringFromCharCode(code + 32);\n }\n else {\n attributeName += StringFromCharCode(code);\n }\n }\n CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);\n return attributeName;\n}\nfunction htmlAttributeToProperty(attrName) {\n const ariaPropertyName = AriaAttrNameToPropNameMap[attrName];\n if (!isUndefined(ariaPropertyName)) {\n return ariaPropertyName;\n }\n const specialPropertyName = NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(specialPropertyName)) {\n return specialPropertyName;\n }\n const cachedPropertyName = CACHED_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(cachedPropertyName)) {\n return cachedPropertyName;\n }\n const propertyName = StringReplace.call(attrName, CAMEL_REGEX, (g) => g[1].toUpperCase());\n CACHED_ATTRIBUTE_PROPERTY_MAPPING.set(attrName, propertyName);\n return propertyName;\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst ESCAPED_CHARS = {\n '\"': '"',\n \"'\": ''',\n '<': '<',\n '>': '>',\n '&': '&',\n};\nfunction htmlEscape(str, attrMode = false) {\n const searchValue = attrMode ? /[\"&]/g : /[\"'<>&]/g;\n return str.replace(searchValue, (char) => ESCAPED_CHARS[char]);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that\n// we can't use typeof since it will fail when transpiling.\nconst hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Increment whenever the LWC template compiler changes\nconst LWC_VERSION = \"2.45.3\";\nconst LWC_VERSION_COMMENT = `LWC compiler v${LWC_VERSION}`;\nconst LWC_VERSION_COMMENT_REGEX = /\\/\\*LWC compiler v([\\d.]+)\\*\\/\\s*}/;\n\nexport { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap, ArrayConcat, ArrayCopyWithin, ArrayFill, ArrayFilter, ArrayFind, ArrayFindIndex, ArrayIncludes, ArrayIndexOf, ArrayJoin, ArrayMap, ArrayPop, ArrayPush, ArrayReduce, ArrayReverse, ArrayShift, ArraySlice, ArraySome, ArraySort, ArraySplice, ArrayUnshift, HTML_NAMESPACE, ID_REFERENCING_ATTRIBUTES_SET, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, 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, LWC_VERSION, LWC_VERSION_COMMENT, LWC_VERSION_COMMENT_REGEX, MATHML_NAMESPACE, SVG_NAMESPACE, StringCharCodeAt, StringFromCharCode, StringReplace, StringSlice, StringSplit, StringToLowerCase, XLINK_NAMESPACE, XML_NAMESPACE, arrayEvery, assert, assign, create, defineProperties, defineProperty, forEach, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPropertyDescriptor, getPrototypeOf, _globalThis as globalThis, hasNativeSymbolSupport, hasOwnProperty, htmlAttributeToProperty, htmlEscape, htmlPropertyToAttribute, isAriaAttribute, isArray, isBoolean, isBooleanAttribute, isFalse, isFrozen, isFunction, isGlobalHtmlAttribute, isNull, isNumber, isObject, isString, isTrue, isUndefined, isVoidElement, keys, noop, seal, setPrototypeOf, toString };\n/** version: 2.45.3 */\n//# sourceMappingURL=index.js.map\n",null,null],"names":[],"mappings":"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"}
|
package/dist/index.js
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright (C) 2023 salesforce.com, inc.
|
3
|
+
*/
|
4
|
+
/**
|
5
|
+
* Copyright (C) 2023 salesforce.com, inc.
|
6
|
+
*/
|
7
|
+
/*
|
8
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
9
|
+
* All rights reserved.
|
10
|
+
* SPDX-License-Identifier: MIT
|
11
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
12
|
+
*/
|
13
|
+
function isUndefined(obj) {
|
14
|
+
return obj === undefined;
|
15
|
+
}
|
16
|
+
/** version: 2.45.3 */
|
17
|
+
|
18
|
+
/*
|
19
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
20
|
+
* All rights reserved.
|
21
|
+
* SPDX-License-Identifier: MIT
|
22
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
23
|
+
*/
|
24
|
+
const ValueChangedEventType = 'ValueChangedEvent';
|
25
|
+
/**
|
26
|
+
* Event fired by wire adapters to emit a new value.
|
27
|
+
*/
|
28
|
+
class ValueChangedEvent {
|
29
|
+
constructor(value) {
|
30
|
+
this.type = ValueChangedEventType;
|
31
|
+
this.value = value;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
/*
|
36
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
37
|
+
* All rights reserved.
|
38
|
+
* SPDX-License-Identifier: MIT
|
39
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
40
|
+
*/
|
41
|
+
const { freeze, defineProperty, isExtensible } = Object;
|
42
|
+
// This value needs to be in sync with wiring.ts from @lwc/engine-core
|
43
|
+
const DeprecatedWiredElementHost = '$$DeprecatedWiredElementHostKey$$';
|
44
|
+
const DeprecatedWiredParamsMeta = '$$DeprecatedWiredParamsMetaKey$$';
|
45
|
+
/**
|
46
|
+
* Registers a wire adapter factory for Lightning Platform.
|
47
|
+
* @deprecated
|
48
|
+
*/
|
49
|
+
function register(adapterId, adapterEventTargetCallback) {
|
50
|
+
if (adapterId == null || !isExtensible(adapterId)) {
|
51
|
+
throw new TypeError('adapter id must be extensible');
|
52
|
+
}
|
53
|
+
if (typeof adapterEventTargetCallback !== 'function') {
|
54
|
+
throw new TypeError('adapter factory must be a callable');
|
55
|
+
}
|
56
|
+
if ('adapter' in adapterId) {
|
57
|
+
throw new TypeError('adapter id is already associated to an adapter factory');
|
58
|
+
}
|
59
|
+
const AdapterClass = class extends LegacyWireAdapterBridge {
|
60
|
+
constructor(dataCallback) {
|
61
|
+
super(dataCallback);
|
62
|
+
adapterEventTargetCallback(this.eventTarget);
|
63
|
+
}
|
64
|
+
};
|
65
|
+
freeze(AdapterClass);
|
66
|
+
freeze(AdapterClass.prototype);
|
67
|
+
defineProperty(adapterId, 'adapter', {
|
68
|
+
writable: false,
|
69
|
+
configurable: false,
|
70
|
+
value: AdapterClass,
|
71
|
+
});
|
72
|
+
}
|
73
|
+
/**
|
74
|
+
* Registers the wire service. noop
|
75
|
+
* @deprecated
|
76
|
+
*/
|
77
|
+
function registerWireService() { }
|
78
|
+
const { forEach, splice: ArraySplice, indexOf: ArrayIndexOf } = Array.prototype;
|
79
|
+
// wire event target life cycle connectedCallback hook event type
|
80
|
+
const CONNECT = 'connect';
|
81
|
+
// wire event target life cycle disconnectedCallback hook event type
|
82
|
+
const DISCONNECT = 'disconnect';
|
83
|
+
// wire event target life cycle config changed hook event type
|
84
|
+
const CONFIG = 'config';
|
85
|
+
function removeListener(listeners, toRemove) {
|
86
|
+
const idx = ArrayIndexOf.call(listeners, toRemove);
|
87
|
+
if (idx > -1) {
|
88
|
+
ArraySplice.call(listeners, idx, 1);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
function isEmptyConfig(config) {
|
92
|
+
return Object.keys(config).length === 0;
|
93
|
+
}
|
94
|
+
function isValidConfig(config, params) {
|
95
|
+
// The config is valid if there is no params, or if exist a param for which config[param] !== undefined.
|
96
|
+
return params.length === 0 || params.some((param) => !isUndefined(config[param]));
|
97
|
+
}
|
98
|
+
function isDifferentConfig(newConfig, oldConfig, params) {
|
99
|
+
return params.some((param) => newConfig[param] !== oldConfig[param]);
|
100
|
+
}
|
101
|
+
class LegacyWireAdapterBridge {
|
102
|
+
constructor(callback) {
|
103
|
+
this.connecting = [];
|
104
|
+
this.disconnecting = [];
|
105
|
+
this.configuring = [];
|
106
|
+
this.isFirstUpdate = true;
|
107
|
+
this.callback = callback;
|
108
|
+
this.wiredElementHost = callback[DeprecatedWiredElementHost];
|
109
|
+
this.dynamicParamsNames = callback[DeprecatedWiredParamsMeta];
|
110
|
+
this.eventTarget = {
|
111
|
+
addEventListener: (type, listener) => {
|
112
|
+
switch (type) {
|
113
|
+
case CONNECT: {
|
114
|
+
this.connecting.push(listener);
|
115
|
+
break;
|
116
|
+
}
|
117
|
+
case DISCONNECT: {
|
118
|
+
this.disconnecting.push(listener);
|
119
|
+
break;
|
120
|
+
}
|
121
|
+
case CONFIG: {
|
122
|
+
this.configuring.push(listener);
|
123
|
+
if (this.currentConfig !== undefined) {
|
124
|
+
listener.call(undefined, this.currentConfig);
|
125
|
+
}
|
126
|
+
break;
|
127
|
+
}
|
128
|
+
default:
|
129
|
+
throw new Error(`Invalid event type ${type}.`);
|
130
|
+
}
|
131
|
+
},
|
132
|
+
removeEventListener: (type, listener) => {
|
133
|
+
switch (type) {
|
134
|
+
case CONNECT: {
|
135
|
+
removeListener(this.connecting, listener);
|
136
|
+
break;
|
137
|
+
}
|
138
|
+
case DISCONNECT: {
|
139
|
+
removeListener(this.disconnecting, listener);
|
140
|
+
break;
|
141
|
+
}
|
142
|
+
case CONFIG: {
|
143
|
+
removeListener(this.configuring, listener);
|
144
|
+
break;
|
145
|
+
}
|
146
|
+
default:
|
147
|
+
throw new Error(`Invalid event type ${type}.`);
|
148
|
+
}
|
149
|
+
},
|
150
|
+
dispatchEvent: (evt) => {
|
151
|
+
if (evt instanceof ValueChangedEvent) {
|
152
|
+
const value = evt.value;
|
153
|
+
this.callback(value);
|
154
|
+
}
|
155
|
+
else if (evt.type === 'wirecontextevent') {
|
156
|
+
// TODO [#1357]: remove this branch
|
157
|
+
return this.wiredElementHost.dispatchEvent(evt);
|
158
|
+
}
|
159
|
+
else {
|
160
|
+
throw new Error(`Invalid event type ${evt.type}.`);
|
161
|
+
}
|
162
|
+
return false; // canceling signal since we don't want this to propagate
|
163
|
+
},
|
164
|
+
};
|
165
|
+
}
|
166
|
+
update(config) {
|
167
|
+
if (this.isFirstUpdate) {
|
168
|
+
// this is a special case for legacy wire adapters: when all the config params are undefined,
|
169
|
+
// the config on the wire adapter should not be called until one of them changes.
|
170
|
+
this.isFirstUpdate = false;
|
171
|
+
if (!isEmptyConfig(config) && !isValidConfig(config, this.dynamicParamsNames)) {
|
172
|
+
return;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
if (isUndefined(this.currentConfig) ||
|
176
|
+
isDifferentConfig(config, this.currentConfig, this.dynamicParamsNames)) {
|
177
|
+
this.currentConfig = config;
|
178
|
+
forEach.call(this.configuring, (listener) => {
|
179
|
+
listener.call(undefined, config);
|
180
|
+
});
|
181
|
+
}
|
182
|
+
}
|
183
|
+
connect() {
|
184
|
+
forEach.call(this.connecting, (listener) => listener.call(undefined));
|
185
|
+
}
|
186
|
+
disconnect() {
|
187
|
+
forEach.call(this.disconnecting, (listener) => listener.call(undefined));
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
export { ValueChangedEvent, register, registerWireService };
|
192
|
+
/** version: 2.45.3 */
|
193
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../shared/dist/index.js","../src/value-changed-event.ts","../src/index.ts"],"sourcesContent":["/**\n * Copyright (C) 2023 salesforce.com, inc.\n */\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nfunction invariant(value, msg) {\n if (!value) {\n throw new Error(`Invariant Violation: ${msg}`);\n }\n}\nfunction isTrue$1(value, msg) {\n if (!value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction isFalse$1(value, msg) {\n if (value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction fail(msg) {\n throw new Error(msg);\n}\n\nvar assert = /*#__PURE__*/Object.freeze({\n __proto__: null,\n fail: fail,\n invariant: invariant,\n isFalse: isFalse$1,\n isTrue: isTrue$1\n});\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;\nconst { isArray } = Array;\nconst { concat: ArrayConcat, copyWithin: ArrayCopyWithin, every: ArrayEvery, fill: ArrayFill, filter: ArrayFilter, find: ArrayFind, findIndex: ArrayFindIndex, includes: ArrayIncludes, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, pop: ArrayPop, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, shift: ArrayShift, slice: ArraySlice, some: ArraySome, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;\n// The type of the return value of Array.prototype.every is `this is T[]`. However, once this\n// Array method is pulled out of the prototype, the function is now referencing `this` where\n// `this` is meaningless, resulting in a TypeScript compilation error.\n//\n// Exposing this helper function is the closest we can get to preserving the usage patterns\n// of Array.prototype methods used elsewhere in the codebase.\nfunction arrayEvery(arr, predicate) {\n return ArrayEvery.call(arr, predicate);\n}\nconst { fromCharCode: StringFromCharCode } = String;\nconst { charCodeAt: StringCharCodeAt, replace: StringReplace, split: StringSplit, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;\nfunction isUndefined(obj) {\n return obj === undefined;\n}\nfunction isNull(obj) {\n return obj === null;\n}\nfunction isTrue(obj) {\n return obj === true;\n}\nfunction isFalse(obj) {\n return obj === false;\n}\nfunction isBoolean(obj) {\n return typeof obj === 'boolean';\n}\nfunction isFunction(obj) {\n return typeof obj === 'function';\n}\nfunction isObject(obj) {\n return typeof obj === 'object';\n}\nfunction isString(obj) {\n return typeof obj === 'string';\n}\nfunction isNumber(obj) {\n return typeof obj === 'number';\n}\nfunction noop() {\n /* Do nothing */\n}\nconst OtS = {}.toString;\nfunction toString(obj) {\n if (obj && obj.toString) {\n // Arrays might hold objects with \"null\" prototype So using\n // Array.prototype.toString directly will cause an error Iterate through\n // all the items and handle individually.\n if (isArray(obj)) {\n return ArrayJoin.call(ArrayMap.call(obj, toString), ',');\n }\n return obj.toString();\n }\n else if (typeof obj === 'object') {\n return OtS.call(obj);\n }\n else {\n return obj + '';\n }\n}\nfunction getPropertyDescriptor(o, p) {\n do {\n const d = getOwnPropertyDescriptor(o, p);\n if (!isUndefined(d)) {\n return d;\n }\n o = getPrototypeOf(o);\n } while (o !== null);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n/**\n * According to the following list, there are 48 aria attributes of which two (ariaDropEffect and\n * ariaGrabbed) are deprecated:\n * https://www.w3.org/TR/wai-aria-1.1/#x6-6-definitions-of-states-and-properties-all-aria-attributes\n *\n * The above list of 46 aria attributes is consistent with the following resources:\n * https://github.com/w3c/aria/pull/708/files#diff-eacf331f0ffc35d4b482f1d15a887d3bR11060\n * https://wicg.github.io/aom/spec/aria-reflection.html\n *\n * NOTE: If you update this list, please update test files that implicitly reference this list!\n * Searching the codebase for `aria-flowto` and `ariaFlowTo` should be good enough to find all usages.\n */\nconst AriaPropertyNames = [\n 'ariaActiveDescendant',\n 'ariaAtomic',\n 'ariaAutoComplete',\n 'ariaBusy',\n 'ariaChecked',\n 'ariaColCount',\n 'ariaColIndex',\n 'ariaColSpan',\n 'ariaControls',\n 'ariaCurrent',\n 'ariaDescribedBy',\n 'ariaDetails',\n 'ariaDisabled',\n 'ariaErrorMessage',\n 'ariaExpanded',\n 'ariaFlowTo',\n 'ariaHasPopup',\n 'ariaHidden',\n 'ariaInvalid',\n 'ariaKeyShortcuts',\n 'ariaLabel',\n 'ariaLabelledBy',\n 'ariaLevel',\n 'ariaLive',\n 'ariaModal',\n 'ariaMultiLine',\n 'ariaMultiSelectable',\n 'ariaOrientation',\n 'ariaOwns',\n 'ariaPlaceholder',\n 'ariaPosInSet',\n 'ariaPressed',\n 'ariaReadOnly',\n 'ariaRelevant',\n 'ariaRequired',\n 'ariaRoleDescription',\n 'ariaRowCount',\n 'ariaRowIndex',\n 'ariaRowSpan',\n 'ariaSelected',\n 'ariaSetSize',\n 'ariaSort',\n 'ariaValueMax',\n 'ariaValueMin',\n 'ariaValueNow',\n 'ariaValueText',\n 'role',\n];\nconst { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap } = /*@__PURE__*/ (() => {\n const AriaAttrNameToPropNameMap = create(null);\n const AriaPropNameToAttrNameMap = create(null);\n // Synthetic creation of all AOM property descriptors for Custom Elements\n forEach.call(AriaPropertyNames, (propName) => {\n const attrName = StringToLowerCase.call(StringReplace.call(propName, /^aria/, () => 'aria-'));\n AriaAttrNameToPropNameMap[attrName] = propName;\n AriaPropNameToAttrNameMap[propName] = attrName;\n });\n return { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap };\n})();\nfunction isAriaAttribute(attrName) {\n return attrName in AriaAttrNameToPropNameMap;\n}\n// These attributes take either an ID or a list of IDs as values.\n// This includes aria-* attributes as well as the special non-ARIA \"for\" attribute\nconst ID_REFERENCING_ATTRIBUTES_SET = /*@__PURE__*/ new Set([\n 'aria-activedescendant',\n 'aria-controls',\n 'aria-describedby',\n 'aria-details',\n 'aria-errormessage',\n 'aria-flowto',\n 'aria-labelledby',\n 'aria-owns',\n 'for',\n]);\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// See browser support for globalThis:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility\n/* istanbul ignore next */\n// @ts-ignore\nconst _globalThis = typeof globalThis === 'object' ? globalThis : window;\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst KEY__IS_NATIVE_SHADOW_ROOT_DEFINED = '$isNativeShadowRootDefined$';\nconst KEY__SHADOW_RESOLVER = '$shadowResolver$';\nconst KEY__SHADOW_RESOLVER_PRIVATE = '$$ShadowResolverKey$$';\nconst KEY__SHADOW_STATIC = '$shadowStaticNode$';\nconst KEY__SHADOW_STATIC_PRIVATE = '$shadowStaticNodeKey$';\nconst KEY__SHADOW_TOKEN = '$shadowToken$';\nconst KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';\nconst KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';\nconst KEY__SCOPED_CSS = '$scoped$';\nconst KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';\nconst KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';\n\n/*\n * Copyright (c) 2022, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\nconst XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';\nconst SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\nconst MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\nconst XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Void elements are elements that self-close even without an explicit solidus (slash),\n// e.g. `</tagName>` or `<tagName />`. For instance, `<meta>` closes on its own; no need for a slash.\n// These only come from HTML; there are no void elements in the SVG or MathML namespaces.\n// See: https://html.spec.whatwg.org/multipage/syntax.html#syntax-tags\nconst VOID_ELEMENTS = [\n 'area',\n 'base',\n 'br',\n 'col',\n 'embed',\n 'hr',\n 'img',\n 'input',\n 'link',\n 'meta',\n 'source',\n 'track',\n 'wbr',\n];\n// These elements have been deprecated but preserving their usage for backwards compatibility\n// until we can officially deprecate them from LWC.\n// See: https://html.spec.whatwg.org/multipage/obsolete.html#obsolete-but-conforming-features\nconst DEPRECATED_VOID_ELEMENTS = ['param', 'keygen', 'menuitem'];\nconst VOID_ELEMENTS_SET = /*@__PURE__*/ new Set([...VOID_ELEMENTS, ...DEPRECATED_VOID_ELEMENTS]);\nfunction isVoidElement(name, namespace) {\n return namespace === HTML_NAMESPACE && VOID_ELEMENTS_SET.has(name.toLowerCase());\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst CAMEL_REGEX = /-([a-z])/g;\n/**\n * Maps boolean attribute name to supported tags: 'boolean attr name' => Set of allowed tag names\n * that supports them.\n */\nconst BOOLEAN_ATTRIBUTES = /*@__PURE__@*/ new Map([\n ['autofocus', /*@__PURE__@*/ new Set(['button', 'input', 'keygen', 'select', 'textarea'])],\n ['autoplay', /*@__PURE__@*/ new Set(['audio', 'video'])],\n ['checked', /*@__PURE__@*/ new Set(['command', 'input'])],\n [\n 'disabled',\n /*@__PURE__@*/ new Set([\n 'button',\n 'command',\n 'fieldset',\n 'input',\n 'keygen',\n 'optgroup',\n 'select',\n 'textarea',\n ]),\n ],\n ['formnovalidate', /*@__PURE__@*/ new Set(['button'])],\n ['hidden', /*@__PURE__@*/ new Set()],\n ['loop', /*@__PURE__@*/ new Set(['audio', 'bgsound', 'marquee', 'video'])],\n ['multiple', /*@__PURE__@*/ new Set(['input', 'select'])],\n ['muted', /*@__PURE__@*/ new Set(['audio', 'video'])],\n ['novalidate', /*@__PURE__@*/ new Set(['form'])],\n ['open', /*@__PURE__@*/ new Set(['details'])],\n ['readonly', /*@__PURE__@*/ new Set(['input', 'textarea'])],\n ['readonly', /*@__PURE__@*/ new Set(['input', 'textarea'])],\n ['required', /*@__PURE__@*/ new Set(['input', 'select', 'textarea'])],\n ['reversed', /*@__PURE__@*/ new Set(['ol'])],\n ['selected', /*@__PURE__@*/ new Set(['option'])],\n]);\nfunction isBooleanAttribute(attrName, tagName) {\n const allowedTagNames = BOOLEAN_ATTRIBUTES.get(attrName);\n return (allowedTagNames !== undefined &&\n (allowedTagNames.size === 0 || allowedTagNames.has(tagName)));\n}\n// This list is based on https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes\nconst GLOBAL_ATTRIBUTE = /*@__PURE__*/ new Set([\n 'accesskey',\n 'autocapitalize',\n 'autofocus',\n 'class',\n 'contenteditable',\n 'contextmenu',\n 'dir',\n 'draggable',\n 'enterkeyhint',\n 'exportparts',\n 'hidden',\n 'id',\n 'inputmode',\n 'is',\n 'itemid',\n 'itemprop',\n 'itemref',\n 'itemscope',\n 'itemtype',\n 'lang',\n 'nonce',\n 'part',\n 'slot',\n 'spellcheck',\n 'style',\n 'tabindex',\n 'title',\n 'translate',\n]);\nfunction isGlobalHtmlAttribute(attrName) {\n return GLOBAL_ATTRIBUTE.has(attrName);\n}\n// Convoluted map generation so that @lwc/shared remains fully tree-shakable (verify-treeshakable)\nconst { NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING, NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING } = \n/*#__PURE__*/ (() => {\n /**\n * Map composed of properties to attributes not following the HTML property to attribute mapping\n * convention.\n */\n const NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING = new Map([\n ['accessKey', 'accesskey'],\n ['readOnly', 'readonly'],\n ['tabIndex', 'tabindex'],\n ['bgColor', 'bgcolor'],\n ['colSpan', 'colspan'],\n ['rowSpan', 'rowspan'],\n ['contentEditable', 'contenteditable'],\n ['crossOrigin', 'crossorigin'],\n ['dateTime', 'datetime'],\n ['formAction', 'formaction'],\n ['isMap', 'ismap'],\n ['maxLength', 'maxlength'],\n ['minLength', 'minlength'],\n ['noValidate', 'novalidate'],\n ['useMap', 'usemap'],\n ['htmlFor', 'for'],\n ]);\n /**\n * Inverted map with attribute name key and property name value.\n */\n const NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING = new Map();\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.forEach((value, key) => NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.set(value, key));\n return {\n NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING,\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING,\n };\n})();\n/**\n * Map associating previously transformed HTML property into HTML attribute.\n */\nconst CACHED_PROPERTY_ATTRIBUTE_MAPPING = /*@__PURE__@*/ new Map();\n/**\n * Map associating previously transformed HTML attribute into HTML property.\n */\nconst CACHED_ATTRIBUTE_PROPERTY_MAPPING = /*@__PURE__@*/ new Map();\nfunction htmlPropertyToAttribute(propName) {\n const ariaAttributeName = AriaPropNameToAttrNameMap[propName];\n if (!isUndefined(ariaAttributeName)) {\n return ariaAttributeName;\n }\n const specialAttributeName = NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(specialAttributeName)) {\n return specialAttributeName;\n }\n const cachedAttributeName = CACHED_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(cachedAttributeName)) {\n return cachedAttributeName;\n }\n let attributeName = '';\n for (let i = 0, len = propName.length; i < len; i++) {\n const code = StringCharCodeAt.call(propName, i);\n if (code >= 65 && // \"A\"\n code <= 90 // \"Z\"\n ) {\n attributeName += '-' + StringFromCharCode(code + 32);\n }\n else {\n attributeName += StringFromCharCode(code);\n }\n }\n CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);\n return attributeName;\n}\nfunction htmlAttributeToProperty(attrName) {\n const ariaPropertyName = AriaAttrNameToPropNameMap[attrName];\n if (!isUndefined(ariaPropertyName)) {\n return ariaPropertyName;\n }\n const specialPropertyName = NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(specialPropertyName)) {\n return specialPropertyName;\n }\n const cachedPropertyName = CACHED_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(cachedPropertyName)) {\n return cachedPropertyName;\n }\n const propertyName = StringReplace.call(attrName, CAMEL_REGEX, (g) => g[1].toUpperCase());\n CACHED_ATTRIBUTE_PROPERTY_MAPPING.set(attrName, propertyName);\n return propertyName;\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst ESCAPED_CHARS = {\n '\"': '"',\n \"'\": ''',\n '<': '<',\n '>': '>',\n '&': '&',\n};\nfunction htmlEscape(str, attrMode = false) {\n const searchValue = attrMode ? /[\"&]/g : /[\"'<>&]/g;\n return str.replace(searchValue, (char) => ESCAPED_CHARS[char]);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that\n// we can't use typeof since it will fail when transpiling.\nconst hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Increment whenever the LWC template compiler changes\nconst LWC_VERSION = \"2.45.3\";\nconst LWC_VERSION_COMMENT = `LWC compiler v${LWC_VERSION}`;\nconst LWC_VERSION_COMMENT_REGEX = /\\/\\*LWC compiler v([\\d.]+)\\*\\/\\s*}/;\n\nexport { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap, ArrayConcat, ArrayCopyWithin, ArrayFill, ArrayFilter, ArrayFind, ArrayFindIndex, ArrayIncludes, ArrayIndexOf, ArrayJoin, ArrayMap, ArrayPop, ArrayPush, ArrayReduce, ArrayReverse, ArrayShift, ArraySlice, ArraySome, ArraySort, ArraySplice, ArrayUnshift, HTML_NAMESPACE, ID_REFERENCING_ATTRIBUTES_SET, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, 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, LWC_VERSION, LWC_VERSION_COMMENT, LWC_VERSION_COMMENT_REGEX, MATHML_NAMESPACE, SVG_NAMESPACE, StringCharCodeAt, StringFromCharCode, StringReplace, StringSlice, StringSplit, StringToLowerCase, XLINK_NAMESPACE, XML_NAMESPACE, arrayEvery, assert, assign, create, defineProperties, defineProperty, forEach, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPropertyDescriptor, getPrototypeOf, _globalThis as globalThis, hasNativeSymbolSupport, hasOwnProperty, htmlAttributeToProperty, htmlEscape, htmlPropertyToAttribute, isAriaAttribute, isArray, isBoolean, isBooleanAttribute, isFalse, isFrozen, isFunction, isGlobalHtmlAttribute, isNull, isNumber, isObject, isString, isTrue, isUndefined, isVoidElement, keys, noop, seal, setPrototypeOf, toString };\n/** version: 2.45.3 */\n//# sourceMappingURL=index.js.map\n",null,null],"names":[],"mappings":"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"}
|
package/dist/wire-service.js
CHANGED
@@ -1,13 +1,19 @@
|
|
1
1
|
/**
|
2
|
-
* Copyright (C)
|
2
|
+
* Copyright (C) 2023 salesforce.com, inc.
|
3
3
|
*/
|
4
4
|
/**
|
5
|
-
* Copyright (C)
|
5
|
+
* Copyright (C) 2023 salesforce.com, inc.
|
6
|
+
*/
|
7
|
+
/*
|
8
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
9
|
+
* All rights reserved.
|
10
|
+
* SPDX-License-Identifier: MIT
|
11
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
6
12
|
*/
|
7
13
|
function isUndefined(obj) {
|
8
14
|
return obj === undefined;
|
9
15
|
}
|
10
|
-
/** version: 2.45.
|
16
|
+
/** version: 2.45.3 */
|
11
17
|
|
12
18
|
/*
|
13
19
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -183,5 +189,5 @@ class LegacyWireAdapterBridge {
|
|
183
189
|
}
|
184
190
|
|
185
191
|
export { ValueChangedEvent, register, registerWireService };
|
186
|
-
/** version: 2.45.
|
187
|
-
//# sourceMappingURL=
|
192
|
+
/** version: 2.45.3 */
|
193
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
@@ -1,8 +1,15 @@
|
|
1
1
|
{
|
2
|
+
"//": [
|
3
|
+
"THIS FILE IS AUTOGENERATED. If you modify it, it will be rewritten by check-and-rewrite-package-json.js",
|
4
|
+
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
5
|
+
],
|
2
6
|
"name": "@lwc/wire-service",
|
3
|
-
"version": "2.45.
|
7
|
+
"version": "2.45.3",
|
4
8
|
"description": "@wire service",
|
5
|
-
"
|
9
|
+
"keywords": [
|
10
|
+
"lwc"
|
11
|
+
],
|
12
|
+
"homepage": "https://lwc.dev",
|
6
13
|
"repository": {
|
7
14
|
"type": "git",
|
8
15
|
"url": "https://github.com/salesforce/lwc.git",
|
@@ -12,48 +19,46 @@
|
|
12
19
|
"url": "https://github.com/salesforce/lwc/issues"
|
13
20
|
},
|
14
21
|
"license": "MIT",
|
15
|
-
"
|
16
|
-
|
17
|
-
"typings": "types/index.d.ts",
|
18
|
-
"scripts": {
|
19
|
-
"build": "rollup --config ./scripts/rollup/rollup.config.js",
|
20
|
-
"dev": "rollup --config scripts/rollup/rollup.config.js --watch --no-watch.clearScreen"
|
22
|
+
"publishConfig": {
|
23
|
+
"access": "public"
|
21
24
|
},
|
25
|
+
"main": "dist/index.cjs.js",
|
26
|
+
"module": "dist/index.js",
|
27
|
+
"types": "dist/index.d.ts",
|
22
28
|
"files": [
|
23
|
-
"dist
|
24
|
-
"types/"
|
29
|
+
"dist"
|
25
30
|
],
|
31
|
+
"scripts": {
|
32
|
+
"build": "rollup --config ../../../scripts/rollup/rollup.config.js",
|
33
|
+
"dev": "rollup --config ../../../scripts/rollup/rollup.config.js --watch --no-watch.clearScreen"
|
34
|
+
},
|
35
|
+
"nx": {
|
36
|
+
"targets": {
|
37
|
+
"build": {
|
38
|
+
"outputs": [
|
39
|
+
"./dist"
|
40
|
+
]
|
41
|
+
}
|
42
|
+
}
|
43
|
+
},
|
26
44
|
"devDependencies": {
|
27
|
-
"@lwc/engine-core": "2.45.
|
28
|
-
"@lwc/shared": "2.45.
|
45
|
+
"@lwc/engine-core": "2.45.3",
|
46
|
+
"@lwc/shared": "2.45.3"
|
29
47
|
},
|
30
48
|
"lwc": {
|
31
49
|
"modules": [
|
32
50
|
{
|
33
|
-
"name": "wire-service",
|
34
|
-
"path": "dist/
|
51
|
+
"name": "@lwc/wire-service",
|
52
|
+
"path": "dist/index.js"
|
35
53
|
},
|
36
54
|
{
|
37
|
-
"name": "
|
38
|
-
"path": "dist/
|
55
|
+
"name": "wire-service",
|
56
|
+
"path": "dist/index.js"
|
39
57
|
}
|
40
58
|
],
|
41
59
|
"expose": [
|
42
60
|
"@lwc/wire-service",
|
43
61
|
"wire-service"
|
44
62
|
]
|
45
|
-
},
|
46
|
-
"publishConfig": {
|
47
|
-
"access": "public"
|
48
|
-
},
|
49
|
-
"nx": {
|
50
|
-
"targets": {
|
51
|
-
"build": {
|
52
|
-
"outputs": [
|
53
|
-
"./dist",
|
54
|
-
"./types"
|
55
|
-
]
|
56
|
-
}
|
57
|
-
}
|
58
63
|
}
|
59
64
|
}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"wire-service.cjs.js","sources":["../shared/dist/index.js","src/src/value-changed-event.ts","src/src/index.ts"],"sourcesContent":["/**\n * Copyright (C) 2018 salesforce.com, inc.\n */\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nfunction invariant(value, msg) {\n if (!value) {\n throw new Error(`Invariant Violation: ${msg}`);\n }\n}\nfunction isTrue$1(value, msg) {\n if (!value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction isFalse$1(value, msg) {\n if (value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction fail(msg) {\n throw new Error(msg);\n}\n\nvar assert = /*#__PURE__*/Object.freeze({\n __proto__: null,\n fail: fail,\n invariant: invariant,\n isFalse: isFalse$1,\n isTrue: isTrue$1\n});\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;\nconst { isArray } = Array;\nconst { concat: ArrayConcat, copyWithin: ArrayCopyWithin, fill: ArrayFill, filter: ArrayFilter, find: ArrayFind, findIndex: ArrayFindIndex, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, pop: ArrayPop, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, shift: ArrayShift, slice: ArraySlice, some: ArraySome, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;\nconst { fromCharCode: StringFromCharCode } = String;\nconst { charCodeAt: StringCharCodeAt, replace: StringReplace, split: StringSplit, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;\nfunction isUndefined(obj) {\n return obj === undefined;\n}\nfunction isNull(obj) {\n return obj === null;\n}\nfunction isTrue(obj) {\n return obj === true;\n}\nfunction isFalse(obj) {\n return obj === false;\n}\nfunction isBoolean(obj) {\n return typeof obj === 'boolean';\n}\nfunction isFunction(obj) {\n return typeof obj === 'function';\n}\nfunction isObject(obj) {\n return typeof obj === 'object';\n}\nfunction isString(obj) {\n return typeof obj === 'string';\n}\nfunction isNumber(obj) {\n return typeof obj === 'number';\n}\nfunction noop() {\n /* Do nothing */\n}\nconst OtS = {}.toString;\nfunction toString(obj) {\n if (obj && obj.toString) {\n // Arrays might hold objects with \"null\" prototype So using\n // Array.prototype.toString directly will cause an error Iterate through\n // all the items and handle individually.\n if (isArray(obj)) {\n return ArrayJoin.call(ArrayMap.call(obj, toString), ',');\n }\n return obj.toString();\n }\n else if (typeof obj === 'object') {\n return OtS.call(obj);\n }\n else {\n return obj + '';\n }\n}\nfunction getPropertyDescriptor(o, p) {\n do {\n const d = getOwnPropertyDescriptor(o, p);\n if (!isUndefined(d)) {\n return d;\n }\n o = getPrototypeOf(o);\n } while (o !== null);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n/**\n * According to the following list, there are 48 aria attributes of which two (ariaDropEffect and\n * ariaGrabbed) are deprecated:\n * https://www.w3.org/TR/wai-aria-1.1/#x6-6-definitions-of-states-and-properties-all-aria-attributes\n *\n * The above list of 46 aria attributes is consistent with the following resources:\n * https://github.com/w3c/aria/pull/708/files#diff-eacf331f0ffc35d4b482f1d15a887d3bR11060\n * https://wicg.github.io/aom/spec/aria-reflection.html\n *\n * NOTE: If you update this list, please update test files that implicitly reference this list!\n * Searching the codebase for `aria-flowto` and `ariaFlowTo` should be good enough to find all usages.\n */\nconst AriaPropertyNames = [\n 'ariaActiveDescendant',\n 'ariaAtomic',\n 'ariaAutoComplete',\n 'ariaBusy',\n 'ariaChecked',\n 'ariaColCount',\n 'ariaColIndex',\n 'ariaColSpan',\n 'ariaControls',\n 'ariaCurrent',\n 'ariaDescribedBy',\n 'ariaDetails',\n 'ariaDisabled',\n 'ariaErrorMessage',\n 'ariaExpanded',\n 'ariaFlowTo',\n 'ariaHasPopup',\n 'ariaHidden',\n 'ariaInvalid',\n 'ariaKeyShortcuts',\n 'ariaLabel',\n 'ariaLabelledBy',\n 'ariaLevel',\n 'ariaLive',\n 'ariaModal',\n 'ariaMultiLine',\n 'ariaMultiSelectable',\n 'ariaOrientation',\n 'ariaOwns',\n 'ariaPlaceholder',\n 'ariaPosInSet',\n 'ariaPressed',\n 'ariaReadOnly',\n 'ariaRelevant',\n 'ariaRequired',\n 'ariaRoleDescription',\n 'ariaRowCount',\n 'ariaRowIndex',\n 'ariaRowSpan',\n 'ariaSelected',\n 'ariaSetSize',\n 'ariaSort',\n 'ariaValueMax',\n 'ariaValueMin',\n 'ariaValueNow',\n 'ariaValueText',\n 'role',\n];\nconst { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap } = /*@__PURE__*/ (() => {\n const AriaAttrNameToPropNameMap = create(null);\n const AriaPropNameToAttrNameMap = create(null);\n // Synthetic creation of all AOM property descriptors for Custom Elements\n forEach.call(AriaPropertyNames, (propName) => {\n const attrName = StringToLowerCase.call(StringReplace.call(propName, /^aria/, () => 'aria-'));\n AriaAttrNameToPropNameMap[attrName] = propName;\n AriaPropNameToAttrNameMap[propName] = attrName;\n });\n return { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap };\n})();\nfunction isAriaAttribute(attrName) {\n return attrName in AriaAttrNameToPropNameMap;\n}\n// These attributes take either an ID or a list of IDs as values.\n// This includes aria-* attributes as well as the special non-ARIA \"for\" attribute\nconst ID_REFERENCING_ATTRIBUTES_SET = new Set([\n 'aria-activedescendant',\n 'aria-controls',\n 'aria-describedby',\n 'aria-details',\n 'aria-errormessage',\n 'aria-flowto',\n 'aria-labelledby',\n 'aria-owns',\n 'for',\n]);\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// See browser support for globalThis:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility\n/* istanbul ignore next */\n// @ts-ignore\nconst _globalThis = typeof globalThis === 'object' ? globalThis : window;\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst KEY__IS_NATIVE_SHADOW_ROOT_DEFINED = '$isNativeShadowRootDefined$';\nconst KEY__SHADOW_RESOLVER = '$shadowResolver$';\nconst KEY__SHADOW_RESOLVER_PRIVATE = '$$ShadowResolverKey$$';\nconst KEY__SHADOW_STATIC = '$shadowStaticNode$';\nconst KEY__SHADOW_STATIC_PRIVATE = '$shadowStaticNodeKey$';\nconst KEY__SHADOW_TOKEN = '$shadowToken$';\nconst KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';\nconst KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';\nconst KEY__SCOPED_CSS = '$scoped$';\nconst KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';\nconst KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';\n\n/*\n * Copyright (c) 2022, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\nconst XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';\nconst SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\nconst MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\nconst XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Void elements are elements that self-close even without an explicit solidus (slash),\n// e.g. `</tagName>` or `<tagName />`. For instance, `<meta>` closes on its own; no need for a slash.\n// These only come from HTML; there are no void elements in the SVG or MathML namespaces.\n// See: https://html.spec.whatwg.org/multipage/syntax.html#syntax-tags\nconst VOID_ELEMENTS = [\n 'area',\n 'base',\n 'br',\n 'col',\n 'embed',\n 'hr',\n 'img',\n 'input',\n 'link',\n 'meta',\n 'source',\n 'track',\n 'wbr',\n];\n// These elements have been deprecated but preserving their usage for backwards compatibility\n// until we can officially deprecate them from LWC.\n// See: https://html.spec.whatwg.org/multipage/obsolete.html#obsolete-but-conforming-features\nconst DEPRECATED_VOID_ELEMENTS = ['param', 'keygen', 'menuitem'];\nconst VOID_ELEMENTS_SET = new Set([...VOID_ELEMENTS, ...DEPRECATED_VOID_ELEMENTS]);\nfunction isVoidElement(name, namespace) {\n return namespace === HTML_NAMESPACE && VOID_ELEMENTS_SET.has(name.toLowerCase());\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst CAMEL_REGEX = /-([a-z])/g;\n/**\n * Maps boolean attribute name to supported tags: 'boolean attr name' => Set of allowed tag names\n * that supports them.\n */\nconst BOOLEAN_ATTRIBUTES = new Map([\n ['autofocus', new Set(['button', 'input', 'keygen', 'select', 'textarea'])],\n ['autoplay', new Set(['audio', 'video'])],\n ['checked', new Set(['command', 'input'])],\n [\n 'disabled',\n new Set([\n 'button',\n 'command',\n 'fieldset',\n 'input',\n 'keygen',\n 'optgroup',\n 'select',\n 'textarea',\n ]),\n ],\n ['formnovalidate', new Set(['button'])],\n ['hidden', new Set()],\n ['loop', new Set(['audio', 'bgsound', 'marquee', 'video'])],\n ['multiple', new Set(['input', 'select'])],\n ['muted', new Set(['audio', 'video'])],\n ['novalidate', new Set(['form'])],\n ['open', new Set(['details'])],\n ['readonly', new Set(['input', 'textarea'])],\n ['required', new Set(['input', 'select', 'textarea'])],\n ['reversed', new Set(['ol'])],\n ['selected', new Set(['option'])],\n]);\nfunction isBooleanAttribute(attrName, tagName) {\n const allowedTagNames = BOOLEAN_ATTRIBUTES.get(attrName);\n return (allowedTagNames !== undefined &&\n (allowedTagNames.size === 0 || allowedTagNames.has(tagName)));\n}\n// This list is based on https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes\nconst GLOBAL_ATTRIBUTE = new Set([\n 'accesskey',\n 'autocapitalize',\n 'autofocus',\n 'class',\n 'contenteditable',\n 'contextmenu',\n 'dir',\n 'draggable',\n 'enterkeyhint',\n 'exportparts',\n 'hidden',\n 'id',\n 'inputmode',\n 'is',\n 'itemid',\n 'itemprop',\n 'itemref',\n 'itemscope',\n 'itemtype',\n 'lang',\n 'nonce',\n 'part',\n 'slot',\n 'spellcheck',\n 'style',\n 'tabindex',\n 'title',\n 'translate',\n]);\nfunction isGlobalHtmlAttribute(attrName) {\n return GLOBAL_ATTRIBUTE.has(attrName);\n}\n// Convoluted map generation so that @lwc/shared remains fully tree-shakable (verify-treeshakable)\nconst { NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING, NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING } = \n/*#__PURE__*/ (() => {\n /**\n * Map composed of properties to attributes not following the HTML property to attribute mapping\n * convention.\n */\n const NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING = new Map([\n ['accessKey', 'accesskey'],\n ['readOnly', 'readonly'],\n ['tabIndex', 'tabindex'],\n ['bgColor', 'bgcolor'],\n ['colSpan', 'colspan'],\n ['rowSpan', 'rowspan'],\n ['contentEditable', 'contenteditable'],\n ['crossOrigin', 'crossorigin'],\n ['dateTime', 'datetime'],\n ['formAction', 'formaction'],\n ['isMap', 'ismap'],\n ['maxLength', 'maxlength'],\n ['minLength', 'minlength'],\n ['noValidate', 'novalidate'],\n ['useMap', 'usemap'],\n ['htmlFor', 'for'],\n ]);\n /**\n * Inverted map with attribute name key and property name value.\n */\n const NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING = new Map();\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.forEach((value, key) => NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.set(value, key));\n return {\n NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING,\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING,\n };\n})();\n/**\n * Map associating previously transformed HTML property into HTML attribute.\n */\nconst CACHED_PROPERTY_ATTRIBUTE_MAPPING = new Map();\n/**\n * Map associating previously transformed HTML attribute into HTML property.\n */\nconst CACHED_ATTRIBUTE_PROPERTY_MAPPING = new Map();\nfunction htmlPropertyToAttribute(propName) {\n const ariaAttributeName = AriaPropNameToAttrNameMap[propName];\n if (!isUndefined(ariaAttributeName)) {\n return ariaAttributeName;\n }\n const specialAttributeName = NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(specialAttributeName)) {\n return specialAttributeName;\n }\n const cachedAttributeName = CACHED_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(cachedAttributeName)) {\n return cachedAttributeName;\n }\n let attributeName = '';\n for (let i = 0, len = propName.length; i < len; i++) {\n const code = StringCharCodeAt.call(propName, i);\n if (code >= 65 && // \"A\"\n code <= 90 // \"Z\"\n ) {\n attributeName += '-' + StringFromCharCode(code + 32);\n }\n else {\n attributeName += StringFromCharCode(code);\n }\n }\n CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);\n return attributeName;\n}\nfunction htmlAttributeToProperty(attrName) {\n const ariaPropertyName = AriaAttrNameToPropNameMap[attrName];\n if (!isUndefined(ariaPropertyName)) {\n return ariaPropertyName;\n }\n const specialPropertyName = NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(specialPropertyName)) {\n return specialPropertyName;\n }\n const cachedPropertyName = CACHED_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(cachedPropertyName)) {\n return cachedPropertyName;\n }\n const propertyName = StringReplace.call(attrName, CAMEL_REGEX, (g) => g[1].toUpperCase());\n CACHED_ATTRIBUTE_PROPERTY_MAPPING.set(attrName, propertyName);\n return propertyName;\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst ESCAPED_CHARS = {\n '\"': '"',\n \"'\": ''',\n '<': '<',\n '>': '>',\n '&': '&',\n};\nfunction htmlEscape(str, attrMode = false) {\n const searchValue = attrMode ? /[\"&]/g : /[\"'<>&]/g;\n return str.replace(searchValue, (char) => ESCAPED_CHARS[char]);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that\n// we can't use typeof since it will fail when transpiling.\nconst hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Increment whenever the LWC template compiler changes\nconst LWC_VERSION = \"2.45.1\";\nconst LWC_VERSION_COMMENT = `LWC compiler v${LWC_VERSION}`;\nconst LWC_VERSION_COMMENT_REGEX = /\\/\\*LWC compiler v([\\d.]+)\\*\\/\\s*}/;\n\nexport { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap, ArrayConcat, ArrayCopyWithin, ArrayFill, ArrayFilter, ArrayFind, ArrayFindIndex, ArrayIndexOf, ArrayJoin, ArrayMap, ArrayPop, ArrayPush, ArrayReduce, ArrayReverse, ArrayShift, ArraySlice, ArraySome, ArraySort, ArraySplice, ArrayUnshift, HTML_NAMESPACE, ID_REFERENCING_ATTRIBUTES_SET, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, 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, LWC_VERSION, LWC_VERSION_COMMENT, LWC_VERSION_COMMENT_REGEX, MATHML_NAMESPACE, SVG_NAMESPACE, StringCharCodeAt, StringFromCharCode, StringReplace, StringSlice, StringSplit, StringToLowerCase, XLINK_NAMESPACE, XML_NAMESPACE, assert, assign, create, defineProperties, defineProperty, forEach, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPropertyDescriptor, getPrototypeOf, _globalThis as globalThis, hasNativeSymbolSupport, hasOwnProperty, htmlAttributeToProperty, htmlEscape, htmlPropertyToAttribute, isAriaAttribute, isArray, isBoolean, isBooleanAttribute, isFalse, isFrozen, isFunction, isGlobalHtmlAttribute, isNull, isNumber, isObject, isString, isTrue, isUndefined, isVoidElement, keys, noop, seal, setPrototypeOf, toString };\n/** version: 2.45.1 */\n//# sourceMappingURL=index.js.map\n",null,null],"names":[],"mappings":"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"}
|
package/dist/wire-service.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"wire-service.js","sources":["../shared/dist/index.js","src/src/value-changed-event.ts","src/src/index.ts"],"sourcesContent":["/**\n * Copyright (C) 2018 salesforce.com, inc.\n */\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nfunction invariant(value, msg) {\n if (!value) {\n throw new Error(`Invariant Violation: ${msg}`);\n }\n}\nfunction isTrue$1(value, msg) {\n if (!value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction isFalse$1(value, msg) {\n if (value) {\n throw new Error(`Assert Violation: ${msg}`);\n }\n}\nfunction fail(msg) {\n throw new Error(msg);\n}\n\nvar assert = /*#__PURE__*/Object.freeze({\n __proto__: null,\n fail: fail,\n invariant: invariant,\n isFalse: isFalse$1,\n isTrue: isTrue$1\n});\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst { assign, create, defineProperties, defineProperty, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPrototypeOf, hasOwnProperty, isFrozen, keys, seal, setPrototypeOf, } = Object;\nconst { isArray } = Array;\nconst { concat: ArrayConcat, copyWithin: ArrayCopyWithin, fill: ArrayFill, filter: ArrayFilter, find: ArrayFind, findIndex: ArrayFindIndex, indexOf: ArrayIndexOf, join: ArrayJoin, map: ArrayMap, pop: ArrayPop, push: ArrayPush, reduce: ArrayReduce, reverse: ArrayReverse, shift: ArrayShift, slice: ArraySlice, some: ArraySome, sort: ArraySort, splice: ArraySplice, unshift: ArrayUnshift, forEach, } = Array.prototype;\nconst { fromCharCode: StringFromCharCode } = String;\nconst { charCodeAt: StringCharCodeAt, replace: StringReplace, split: StringSplit, slice: StringSlice, toLowerCase: StringToLowerCase, } = String.prototype;\nfunction isUndefined(obj) {\n return obj === undefined;\n}\nfunction isNull(obj) {\n return obj === null;\n}\nfunction isTrue(obj) {\n return obj === true;\n}\nfunction isFalse(obj) {\n return obj === false;\n}\nfunction isBoolean(obj) {\n return typeof obj === 'boolean';\n}\nfunction isFunction(obj) {\n return typeof obj === 'function';\n}\nfunction isObject(obj) {\n return typeof obj === 'object';\n}\nfunction isString(obj) {\n return typeof obj === 'string';\n}\nfunction isNumber(obj) {\n return typeof obj === 'number';\n}\nfunction noop() {\n /* Do nothing */\n}\nconst OtS = {}.toString;\nfunction toString(obj) {\n if (obj && obj.toString) {\n // Arrays might hold objects with \"null\" prototype So using\n // Array.prototype.toString directly will cause an error Iterate through\n // all the items and handle individually.\n if (isArray(obj)) {\n return ArrayJoin.call(ArrayMap.call(obj, toString), ',');\n }\n return obj.toString();\n }\n else if (typeof obj === 'object') {\n return OtS.call(obj);\n }\n else {\n return obj + '';\n }\n}\nfunction getPropertyDescriptor(o, p) {\n do {\n const d = getOwnPropertyDescriptor(o, p);\n if (!isUndefined(d)) {\n return d;\n }\n o = getPrototypeOf(o);\n } while (o !== null);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n/**\n * According to the following list, there are 48 aria attributes of which two (ariaDropEffect and\n * ariaGrabbed) are deprecated:\n * https://www.w3.org/TR/wai-aria-1.1/#x6-6-definitions-of-states-and-properties-all-aria-attributes\n *\n * The above list of 46 aria attributes is consistent with the following resources:\n * https://github.com/w3c/aria/pull/708/files#diff-eacf331f0ffc35d4b482f1d15a887d3bR11060\n * https://wicg.github.io/aom/spec/aria-reflection.html\n *\n * NOTE: If you update this list, please update test files that implicitly reference this list!\n * Searching the codebase for `aria-flowto` and `ariaFlowTo` should be good enough to find all usages.\n */\nconst AriaPropertyNames = [\n 'ariaActiveDescendant',\n 'ariaAtomic',\n 'ariaAutoComplete',\n 'ariaBusy',\n 'ariaChecked',\n 'ariaColCount',\n 'ariaColIndex',\n 'ariaColSpan',\n 'ariaControls',\n 'ariaCurrent',\n 'ariaDescribedBy',\n 'ariaDetails',\n 'ariaDisabled',\n 'ariaErrorMessage',\n 'ariaExpanded',\n 'ariaFlowTo',\n 'ariaHasPopup',\n 'ariaHidden',\n 'ariaInvalid',\n 'ariaKeyShortcuts',\n 'ariaLabel',\n 'ariaLabelledBy',\n 'ariaLevel',\n 'ariaLive',\n 'ariaModal',\n 'ariaMultiLine',\n 'ariaMultiSelectable',\n 'ariaOrientation',\n 'ariaOwns',\n 'ariaPlaceholder',\n 'ariaPosInSet',\n 'ariaPressed',\n 'ariaReadOnly',\n 'ariaRelevant',\n 'ariaRequired',\n 'ariaRoleDescription',\n 'ariaRowCount',\n 'ariaRowIndex',\n 'ariaRowSpan',\n 'ariaSelected',\n 'ariaSetSize',\n 'ariaSort',\n 'ariaValueMax',\n 'ariaValueMin',\n 'ariaValueNow',\n 'ariaValueText',\n 'role',\n];\nconst { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap } = /*@__PURE__*/ (() => {\n const AriaAttrNameToPropNameMap = create(null);\n const AriaPropNameToAttrNameMap = create(null);\n // Synthetic creation of all AOM property descriptors for Custom Elements\n forEach.call(AriaPropertyNames, (propName) => {\n const attrName = StringToLowerCase.call(StringReplace.call(propName, /^aria/, () => 'aria-'));\n AriaAttrNameToPropNameMap[attrName] = propName;\n AriaPropNameToAttrNameMap[propName] = attrName;\n });\n return { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap };\n})();\nfunction isAriaAttribute(attrName) {\n return attrName in AriaAttrNameToPropNameMap;\n}\n// These attributes take either an ID or a list of IDs as values.\n// This includes aria-* attributes as well as the special non-ARIA \"for\" attribute\nconst ID_REFERENCING_ATTRIBUTES_SET = new Set([\n 'aria-activedescendant',\n 'aria-controls',\n 'aria-describedby',\n 'aria-details',\n 'aria-errormessage',\n 'aria-flowto',\n 'aria-labelledby',\n 'aria-owns',\n 'for',\n]);\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// See browser support for globalThis:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis#browser_compatibility\n/* istanbul ignore next */\n// @ts-ignore\nconst _globalThis = typeof globalThis === 'object' ? globalThis : window;\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst KEY__IS_NATIVE_SHADOW_ROOT_DEFINED = '$isNativeShadowRootDefined$';\nconst KEY__SHADOW_RESOLVER = '$shadowResolver$';\nconst KEY__SHADOW_RESOLVER_PRIVATE = '$$ShadowResolverKey$$';\nconst KEY__SHADOW_STATIC = '$shadowStaticNode$';\nconst KEY__SHADOW_STATIC_PRIVATE = '$shadowStaticNodeKey$';\nconst KEY__SHADOW_TOKEN = '$shadowToken$';\nconst KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';\nconst KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';\nconst KEY__SCOPED_CSS = '$scoped$';\nconst KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';\nconst KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';\n\n/*\n * Copyright (c) 2022, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\nconst XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace';\nconst SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\nconst MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\nconst XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Void elements are elements that self-close even without an explicit solidus (slash),\n// e.g. `</tagName>` or `<tagName />`. For instance, `<meta>` closes on its own; no need for a slash.\n// These only come from HTML; there are no void elements in the SVG or MathML namespaces.\n// See: https://html.spec.whatwg.org/multipage/syntax.html#syntax-tags\nconst VOID_ELEMENTS = [\n 'area',\n 'base',\n 'br',\n 'col',\n 'embed',\n 'hr',\n 'img',\n 'input',\n 'link',\n 'meta',\n 'source',\n 'track',\n 'wbr',\n];\n// These elements have been deprecated but preserving their usage for backwards compatibility\n// until we can officially deprecate them from LWC.\n// See: https://html.spec.whatwg.org/multipage/obsolete.html#obsolete-but-conforming-features\nconst DEPRECATED_VOID_ELEMENTS = ['param', 'keygen', 'menuitem'];\nconst VOID_ELEMENTS_SET = new Set([...VOID_ELEMENTS, ...DEPRECATED_VOID_ELEMENTS]);\nfunction isVoidElement(name, namespace) {\n return namespace === HTML_NAMESPACE && VOID_ELEMENTS_SET.has(name.toLowerCase());\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst CAMEL_REGEX = /-([a-z])/g;\n/**\n * Maps boolean attribute name to supported tags: 'boolean attr name' => Set of allowed tag names\n * that supports them.\n */\nconst BOOLEAN_ATTRIBUTES = new Map([\n ['autofocus', new Set(['button', 'input', 'keygen', 'select', 'textarea'])],\n ['autoplay', new Set(['audio', 'video'])],\n ['checked', new Set(['command', 'input'])],\n [\n 'disabled',\n new Set([\n 'button',\n 'command',\n 'fieldset',\n 'input',\n 'keygen',\n 'optgroup',\n 'select',\n 'textarea',\n ]),\n ],\n ['formnovalidate', new Set(['button'])],\n ['hidden', new Set()],\n ['loop', new Set(['audio', 'bgsound', 'marquee', 'video'])],\n ['multiple', new Set(['input', 'select'])],\n ['muted', new Set(['audio', 'video'])],\n ['novalidate', new Set(['form'])],\n ['open', new Set(['details'])],\n ['readonly', new Set(['input', 'textarea'])],\n ['required', new Set(['input', 'select', 'textarea'])],\n ['reversed', new Set(['ol'])],\n ['selected', new Set(['option'])],\n]);\nfunction isBooleanAttribute(attrName, tagName) {\n const allowedTagNames = BOOLEAN_ATTRIBUTES.get(attrName);\n return (allowedTagNames !== undefined &&\n (allowedTagNames.size === 0 || allowedTagNames.has(tagName)));\n}\n// This list is based on https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes\nconst GLOBAL_ATTRIBUTE = new Set([\n 'accesskey',\n 'autocapitalize',\n 'autofocus',\n 'class',\n 'contenteditable',\n 'contextmenu',\n 'dir',\n 'draggable',\n 'enterkeyhint',\n 'exportparts',\n 'hidden',\n 'id',\n 'inputmode',\n 'is',\n 'itemid',\n 'itemprop',\n 'itemref',\n 'itemscope',\n 'itemtype',\n 'lang',\n 'nonce',\n 'part',\n 'slot',\n 'spellcheck',\n 'style',\n 'tabindex',\n 'title',\n 'translate',\n]);\nfunction isGlobalHtmlAttribute(attrName) {\n return GLOBAL_ATTRIBUTE.has(attrName);\n}\n// Convoluted map generation so that @lwc/shared remains fully tree-shakable (verify-treeshakable)\nconst { NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING, NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING } = \n/*#__PURE__*/ (() => {\n /**\n * Map composed of properties to attributes not following the HTML property to attribute mapping\n * convention.\n */\n const NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING = new Map([\n ['accessKey', 'accesskey'],\n ['readOnly', 'readonly'],\n ['tabIndex', 'tabindex'],\n ['bgColor', 'bgcolor'],\n ['colSpan', 'colspan'],\n ['rowSpan', 'rowspan'],\n ['contentEditable', 'contenteditable'],\n ['crossOrigin', 'crossorigin'],\n ['dateTime', 'datetime'],\n ['formAction', 'formaction'],\n ['isMap', 'ismap'],\n ['maxLength', 'maxlength'],\n ['minLength', 'minlength'],\n ['noValidate', 'novalidate'],\n ['useMap', 'usemap'],\n ['htmlFor', 'for'],\n ]);\n /**\n * Inverted map with attribute name key and property name value.\n */\n const NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING = new Map();\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.forEach((value, key) => NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.set(value, key));\n return {\n NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING,\n NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING,\n };\n})();\n/**\n * Map associating previously transformed HTML property into HTML attribute.\n */\nconst CACHED_PROPERTY_ATTRIBUTE_MAPPING = new Map();\n/**\n * Map associating previously transformed HTML attribute into HTML property.\n */\nconst CACHED_ATTRIBUTE_PROPERTY_MAPPING = new Map();\nfunction htmlPropertyToAttribute(propName) {\n const ariaAttributeName = AriaPropNameToAttrNameMap[propName];\n if (!isUndefined(ariaAttributeName)) {\n return ariaAttributeName;\n }\n const specialAttributeName = NO_STANDARD_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(specialAttributeName)) {\n return specialAttributeName;\n }\n const cachedAttributeName = CACHED_PROPERTY_ATTRIBUTE_MAPPING.get(propName);\n if (!isUndefined(cachedAttributeName)) {\n return cachedAttributeName;\n }\n let attributeName = '';\n for (let i = 0, len = propName.length; i < len; i++) {\n const code = StringCharCodeAt.call(propName, i);\n if (code >= 65 && // \"A\"\n code <= 90 // \"Z\"\n ) {\n attributeName += '-' + StringFromCharCode(code + 32);\n }\n else {\n attributeName += StringFromCharCode(code);\n }\n }\n CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);\n return attributeName;\n}\nfunction htmlAttributeToProperty(attrName) {\n const ariaPropertyName = AriaAttrNameToPropNameMap[attrName];\n if (!isUndefined(ariaPropertyName)) {\n return ariaPropertyName;\n }\n const specialPropertyName = NO_STANDARD_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(specialPropertyName)) {\n return specialPropertyName;\n }\n const cachedPropertyName = CACHED_ATTRIBUTE_PROPERTY_MAPPING.get(attrName);\n if (!isUndefined(cachedPropertyName)) {\n return cachedPropertyName;\n }\n const propertyName = StringReplace.call(attrName, CAMEL_REGEX, (g) => g[1].toUpperCase());\n CACHED_ATTRIBUTE_PROPERTY_MAPPING.set(attrName, propertyName);\n return propertyName;\n}\n\n/*\n * Copyright (c) 2020, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\nconst ESCAPED_CHARS = {\n '\"': '"',\n \"'\": ''',\n '<': '<',\n '>': '>',\n '&': '&',\n};\nfunction htmlEscape(str, attrMode = false) {\n const searchValue = attrMode ? /[\"&]/g : /[\"'<>&]/g;\n return str.replace(searchValue, (char) => ESCAPED_CHARS[char]);\n}\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that\n// we can't use typeof since it will fail when transpiling.\nconst hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();\n\n/*\n * Copyright (c) 2018, salesforce.com, inc.\n * All rights reserved.\n * SPDX-License-Identifier: MIT\n * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT\n */\n// Increment whenever the LWC template compiler changes\nconst LWC_VERSION = \"2.45.1\";\nconst LWC_VERSION_COMMENT = `LWC compiler v${LWC_VERSION}`;\nconst LWC_VERSION_COMMENT_REGEX = /\\/\\*LWC compiler v([\\d.]+)\\*\\/\\s*}/;\n\nexport { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap, ArrayConcat, ArrayCopyWithin, ArrayFill, ArrayFilter, ArrayFind, ArrayFindIndex, ArrayIndexOf, ArrayJoin, ArrayMap, ArrayPop, ArrayPush, ArrayReduce, ArrayReverse, ArrayShift, ArraySlice, ArraySome, ArraySort, ArraySplice, ArrayUnshift, HTML_NAMESPACE, ID_REFERENCING_ATTRIBUTES_SET, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, 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, LWC_VERSION, LWC_VERSION_COMMENT, LWC_VERSION_COMMENT_REGEX, MATHML_NAMESPACE, SVG_NAMESPACE, StringCharCodeAt, StringFromCharCode, StringReplace, StringSlice, StringSplit, StringToLowerCase, XLINK_NAMESPACE, XML_NAMESPACE, assert, assign, create, defineProperties, defineProperty, forEach, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPropertyDescriptor, getPrototypeOf, _globalThis as globalThis, hasNativeSymbolSupport, hasOwnProperty, htmlAttributeToProperty, htmlEscape, htmlPropertyToAttribute, isAriaAttribute, isArray, isBoolean, isBooleanAttribute, isFalse, isFrozen, isFunction, isGlobalHtmlAttribute, isNull, isNumber, isObject, isString, isTrue, isUndefined, isVoidElement, keys, noop, seal, setPrototypeOf, toString };\n/** version: 2.45.1 */\n//# sourceMappingURL=index.js.map\n",null,null],"names":[],"mappings":"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"}
|
File without changes
|
File without changes
|