@lwc/shared 2.2.9-alpha.1 → 2.2.11
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/types/fields.d.ts +0 -6
package/dist/index.cjs.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -423,4 +423,4 @@ function htmlPropertyToAttribute(propName) {
|
|
|
423
423
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
|
424
424
|
|
|
425
425
|
export { AriaAttrNameToPropNameMap, AriaPropNameToAttrNameMap, ArrayFilter, ArrayFind, ArrayIndexOf, ArrayJoin, ArrayMap, ArrayPush, ArrayReduce, ArrayReverse, ArraySlice, ArraySplice, ArrayUnshift, KEY__IS_NATIVE_SHADOW_ROOT_DEFINED, KEY__SHADOW_RESOLVER, KEY__SHADOW_RESOLVER_PRIVATE, KEY__SHADOW_TOKEN, KEY__SHADOW_TOKEN_PRIVATE, KEY__SYNTHETIC_MODE, StringCharCodeAt, StringFromCharCode, StringReplace, StringSlice, StringToLowerCase, VOID_ELEMENTS, assert, assign, create, defineProperties, defineProperty, forEach, freeze, getOwnPropertyDescriptor, getOwnPropertyNames, getPropertyDescriptor, getPrototypeOf, _globalThis as globalThis, hasNativeSymbolSupport, hasOwnProperty, htmlPropertyToAttribute, isAriaAttribute, isArray, isBoolean, isBooleanAttribute, isFalse, isFrozen, isFunction, isGlobalHtmlAttribute, isNull, isNumber, isObject, isString, isTrue, isUndefined, isVoidElement, keys, seal, setPrototypeOf, toString };
|
|
426
|
-
/** version: 2.2.
|
|
426
|
+
/** version: 2.2.11 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/shared",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.11",
|
|
4
4
|
"description": "Utilities and methods that are shared across packages",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "87b036683b890df473de6758f3197a1f8281bd7a"
|
|
31
31
|
}
|
package/types/fields.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export declare type HiddenField<T> = {
|
|
2
|
-
__type: T;
|
|
3
|
-
};
|
|
4
|
-
export declare function createHiddenField<T = unknown>(key: string, namespace: string): HiddenField<T>;
|
|
5
|
-
export declare function setHiddenField<T>(o: any, field: HiddenField<T>, value: T): void;
|
|
6
|
-
export declare function getHiddenField<T>(o: any, field: HiddenField<T>): T | undefined;
|