lwc 2.37.2 → 2.37.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/engine-dom/esm/es2017/engine-dom.js +72 -12
- package/dist/engine-dom/iife/es2017/engine-dom.js +72 -12
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +19 -6
- package/dist/engine-dom/iife/es5/engine-dom.js +75 -12
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +19 -6
- package/dist/engine-dom/umd/es2017/engine-dom.js +72 -12
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +19 -6
- package/dist/engine-dom/umd/es5/engine-dom.js +75 -12
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +19 -6
- package/dist/engine-server/commonjs/es2017/engine-server.js +6 -6
- package/dist/engine-server/esm/es2017/engine-server.js +6 -6
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
- package/dist/wire-service/esm/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/iife/es5/wire-service.js +2 -2
- package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es5/wire-service.js +2 -2
- package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
- package/package.json +7 -7
|
@@ -442,9 +442,9 @@ function htmlEscape(str, attrMode = false) {
|
|
|
442
442
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
443
443
|
*/
|
|
444
444
|
// Increment whenever the LWC template compiler changes
|
|
445
|
-
const LWC_VERSION = "2.37.
|
|
445
|
+
const LWC_VERSION = "2.37.3";
|
|
446
446
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
447
|
-
/** version: 2.37.
|
|
447
|
+
/** version: 2.37.3 */
|
|
448
448
|
|
|
449
449
|
/**
|
|
450
450
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -523,7 +523,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
523
523
|
setFeatureFlag(name, value);
|
|
524
524
|
}
|
|
525
525
|
}
|
|
526
|
-
/** version: 2.37.
|
|
526
|
+
/** version: 2.37.3 */
|
|
527
527
|
|
|
528
528
|
/*
|
|
529
529
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -619,7 +619,7 @@ function applyAriaReflection(prototype = Element.prototype) {
|
|
|
619
619
|
}
|
|
620
620
|
}
|
|
621
621
|
}
|
|
622
|
-
/** version: 2.37.
|
|
622
|
+
/** version: 2.37.3 */
|
|
623
623
|
|
|
624
624
|
/* proxy-compat-disable */
|
|
625
625
|
|
|
@@ -6215,7 +6215,7 @@ function freezeTemplate(tmpl) {
|
|
|
6215
6215
|
}
|
|
6216
6216
|
}
|
|
6217
6217
|
}
|
|
6218
|
-
/* version: 2.37.
|
|
6218
|
+
/* version: 2.37.3 */
|
|
6219
6219
|
|
|
6220
6220
|
/*
|
|
6221
6221
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6703,7 +6703,7 @@ seal(LightningElement.prototype);
|
|
|
6703
6703
|
function createElement() {
|
|
6704
6704
|
throw new Error('createElement is not supported in @lwc/engine-server, only @lwc/engine-dom.');
|
|
6705
6705
|
}
|
|
6706
|
-
/* version: 2.37.
|
|
6706
|
+
/* version: 2.37.3 */
|
|
6707
6707
|
|
|
6708
6708
|
exports.LightningElement = LightningElement;
|
|
6709
6709
|
exports.api = api$1;
|
|
@@ -440,9 +440,9 @@ function htmlEscape(str, attrMode = false) {
|
|
|
440
440
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
441
441
|
*/
|
|
442
442
|
// Increment whenever the LWC template compiler changes
|
|
443
|
-
const LWC_VERSION = "2.37.
|
|
443
|
+
const LWC_VERSION = "2.37.3";
|
|
444
444
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
445
|
-
/** version: 2.37.
|
|
445
|
+
/** version: 2.37.3 */
|
|
446
446
|
|
|
447
447
|
/**
|
|
448
448
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -521,7 +521,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
521
521
|
setFeatureFlag(name, value);
|
|
522
522
|
}
|
|
523
523
|
}
|
|
524
|
-
/** version: 2.37.
|
|
524
|
+
/** version: 2.37.3 */
|
|
525
525
|
|
|
526
526
|
/*
|
|
527
527
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -617,7 +617,7 @@ function applyAriaReflection(prototype = Element.prototype) {
|
|
|
617
617
|
}
|
|
618
618
|
}
|
|
619
619
|
}
|
|
620
|
-
/** version: 2.37.
|
|
620
|
+
/** version: 2.37.3 */
|
|
621
621
|
|
|
622
622
|
/* proxy-compat-disable */
|
|
623
623
|
|
|
@@ -6213,7 +6213,7 @@ function freezeTemplate(tmpl) {
|
|
|
6213
6213
|
}
|
|
6214
6214
|
}
|
|
6215
6215
|
}
|
|
6216
|
-
/* version: 2.37.
|
|
6216
|
+
/* version: 2.37.3 */
|
|
6217
6217
|
|
|
6218
6218
|
/*
|
|
6219
6219
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6701,6 +6701,6 @@ seal(LightningElement.prototype);
|
|
|
6701
6701
|
function createElement() {
|
|
6702
6702
|
throw new Error('createElement is not supported in @lwc/engine-server, only @lwc/engine-dom.');
|
|
6703
6703
|
}
|
|
6704
|
-
/* version: 2.37.
|
|
6704
|
+
/* version: 2.37.3 */
|
|
6705
6705
|
|
|
6706
6706
|
export { LightningElement, api$1 as api, createContextProvider, createElement, freezeTemplate, getComponentDef, isComponentConstructor, parseFragment, parseFragment as parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, renderComponent, renderer, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, track, unwrap, wire };
|
|
@@ -120,7 +120,7 @@ const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
|
|
120
120
|
// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
|
|
121
121
|
// we can't use typeof since it will fail when transpiling.
|
|
122
122
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
|
123
|
-
/** version: 2.37.
|
|
123
|
+
/** version: 2.37.3 */
|
|
124
124
|
|
|
125
125
|
/**
|
|
126
126
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -129,7 +129,7 @@ const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === '
|
|
|
129
129
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
130
130
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
131
131
|
}
|
|
132
|
-
/** version: 2.37.
|
|
132
|
+
/** version: 2.37.3 */
|
|
133
133
|
|
|
134
134
|
/*
|
|
135
135
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4674,4 +4674,4 @@ defineProperty(Element.prototype, '$domManual$', {
|
|
|
4674
4674
|
},
|
|
4675
4675
|
configurable: true,
|
|
4676
4676
|
});
|
|
4677
|
-
/** version: 2.37.
|
|
4677
|
+
/** version: 2.37.3 */
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
|
|
124
124
|
// we can't use typeof since it will fail when transpiling.
|
|
125
125
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
|
126
|
-
/** version: 2.37.
|
|
126
|
+
/** version: 2.37.3 */
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
133
133
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
134
134
|
}
|
|
135
|
-
/** version: 2.37.
|
|
135
|
+
/** version: 2.37.3 */
|
|
136
136
|
|
|
137
137
|
/*
|
|
138
138
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4677,6 +4677,6 @@
|
|
|
4677
4677
|
},
|
|
4678
4678
|
configurable: true,
|
|
4679
4679
|
});
|
|
4680
|
-
/** version: 2.37.
|
|
4680
|
+
/** version: 2.37.3 */
|
|
4681
4681
|
|
|
4682
4682
|
})();
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
60
60
|
const KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
|
|
61
61
|
const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
|
62
|
-
/** version: 2.37.
|
|
62
|
+
/** version: 2.37.3 */
|
|
63
63
|
|
|
64
64
|
/**
|
|
65
65
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
69
69
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
70
70
|
}
|
|
71
|
-
/** version: 2.37.
|
|
71
|
+
/** version: 2.37.3 */
|
|
72
72
|
|
|
73
73
|
/*
|
|
74
74
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4498,6 +4498,6 @@
|
|
|
4498
4498
|
},
|
|
4499
4499
|
configurable: true,
|
|
4500
4500
|
});
|
|
4501
|
-
/** version: 2.37.
|
|
4501
|
+
/** version: 2.37.3 */
|
|
4502
4502
|
|
|
4503
4503
|
})();
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
var hasNativeSymbolSupport = /*@__PURE__*/function () {
|
|
151
151
|
return Symbol('x').toString() === 'Symbol(x)';
|
|
152
152
|
}();
|
|
153
|
-
/** version: 2.37.
|
|
153
|
+
/** version: 2.37.3 */
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
value: create(null)
|
|
162
162
|
});
|
|
163
163
|
}
|
|
164
|
-
/** version: 2.37.
|
|
164
|
+
/** version: 2.37.3 */
|
|
165
165
|
|
|
166
166
|
/*
|
|
167
167
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4652,6 +4652,6 @@
|
|
|
4652
4652
|
},
|
|
4653
4653
|
configurable: true
|
|
4654
4654
|
});
|
|
4655
|
-
/** version: 2.37.
|
|
4655
|
+
/** version: 2.37.3 */
|
|
4656
4656
|
|
|
4657
4657
|
})();
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
85
85
|
var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
|
|
86
86
|
var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
|
87
|
-
/** version: 2.37.
|
|
87
|
+
/** version: 2.37.3 */
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
90
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
value: create(null)
|
|
96
96
|
});
|
|
97
97
|
}
|
|
98
|
-
/** version: 2.37.
|
|
98
|
+
/** version: 2.37.3 */
|
|
99
99
|
|
|
100
100
|
/*
|
|
101
101
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4475,6 +4475,6 @@
|
|
|
4475
4475
|
},
|
|
4476
4476
|
configurable: true
|
|
4477
4477
|
});
|
|
4478
|
-
/** version: 2.37.
|
|
4478
|
+
/** version: 2.37.3 */
|
|
4479
4479
|
|
|
4480
4480
|
})();
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
|
|
126
126
|
// we can't use typeof since it will fail when transpiling.
|
|
127
127
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
|
128
|
-
/** version: 2.37.
|
|
128
|
+
/** version: 2.37.3 */
|
|
129
129
|
|
|
130
130
|
/**
|
|
131
131
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
135
135
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
136
136
|
}
|
|
137
|
-
/** version: 2.37.
|
|
137
|
+
/** version: 2.37.3 */
|
|
138
138
|
|
|
139
139
|
/*
|
|
140
140
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4679,6 +4679,6 @@
|
|
|
4679
4679
|
},
|
|
4680
4680
|
configurable: true,
|
|
4681
4681
|
});
|
|
4682
|
-
/** version: 2.37.
|
|
4682
|
+
/** version: 2.37.3 */
|
|
4683
4683
|
|
|
4684
4684
|
}));
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
62
62
|
const KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
|
|
63
63
|
const KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
|
64
|
-
/** version: 2.37.
|
|
64
|
+
/** version: 2.37.3 */
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
67
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
71
71
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
72
72
|
}
|
|
73
|
-
/** version: 2.37.
|
|
73
|
+
/** version: 2.37.3 */
|
|
74
74
|
|
|
75
75
|
/*
|
|
76
76
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4500,6 +4500,6 @@
|
|
|
4500
4500
|
},
|
|
4501
4501
|
configurable: true,
|
|
4502
4502
|
});
|
|
4503
|
-
/** version: 2.37.
|
|
4503
|
+
/** version: 2.37.3 */
|
|
4504
4504
|
|
|
4505
4505
|
}));
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
var hasNativeSymbolSupport = /*@__PURE__*/function () {
|
|
153
153
|
return Symbol('x').toString() === 'Symbol(x)';
|
|
154
154
|
}();
|
|
155
|
-
/** version: 2.37.
|
|
155
|
+
/** version: 2.37.3 */
|
|
156
156
|
|
|
157
157
|
/**
|
|
158
158
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
value: create(null)
|
|
164
164
|
});
|
|
165
165
|
}
|
|
166
|
-
/** version: 2.37.
|
|
166
|
+
/** version: 2.37.3 */
|
|
167
167
|
|
|
168
168
|
/*
|
|
169
169
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4654,6 +4654,6 @@
|
|
|
4654
4654
|
},
|
|
4655
4655
|
configurable: true
|
|
4656
4656
|
});
|
|
4657
|
-
/** version: 2.37.
|
|
4657
|
+
/** version: 2.37.3 */
|
|
4658
4658
|
|
|
4659
4659
|
}));
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
87
87
|
var KEY__NATIVE_GET_ELEMENT_BY_ID = '$nativeGetElementById$';
|
|
88
88
|
var KEY__NATIVE_QUERY_SELECTOR_ALL = '$nativeQuerySelectorAll$';
|
|
89
|
-
/** version: 2.37.
|
|
89
|
+
/** version: 2.37.3 */
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
92
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
value: create(null)
|
|
98
98
|
});
|
|
99
99
|
}
|
|
100
|
-
/** version: 2.37.
|
|
100
|
+
/** version: 2.37.3 */
|
|
101
101
|
|
|
102
102
|
/*
|
|
103
103
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4477,6 +4477,6 @@
|
|
|
4477
4477
|
},
|
|
4478
4478
|
configurable: true
|
|
4479
4479
|
});
|
|
4480
|
-
/** version: 2.37.
|
|
4480
|
+
/** version: 2.37.3 */
|
|
4481
4481
|
|
|
4482
4482
|
}));
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
function isUndefined(obj) {
|
|
8
8
|
return obj === undefined;
|
|
9
9
|
}
|
|
10
|
-
/** version: 2.37.
|
|
10
|
+
/** version: 2.37.3 */
|
|
11
11
|
|
|
12
12
|
/*
|
|
13
13
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -181,6 +181,6 @@ class LegacyWireAdapterBridge {
|
|
|
181
181
|
forEach.call(this.disconnecting, (listener) => listener.call(undefined));
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
|
-
/** version: 2.37.
|
|
184
|
+
/** version: 2.37.3 */
|
|
185
185
|
|
|
186
186
|
export { ValueChangedEvent, register, registerWireService };
|
|
@@ -10,7 +10,7 @@ var WireService = (function (exports) {
|
|
|
10
10
|
function isUndefined(obj) {
|
|
11
11
|
return obj === undefined;
|
|
12
12
|
}
|
|
13
|
-
/** version: 2.37.
|
|
13
|
+
/** version: 2.37.3 */
|
|
14
14
|
|
|
15
15
|
/*
|
|
16
16
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -184,7 +184,7 @@ var WireService = (function (exports) {
|
|
|
184
184
|
forEach.call(this.disconnecting, (listener) => listener.call(undefined));
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
|
-
/** version: 2.37.
|
|
187
|
+
/** version: 2.37.3 */
|
|
188
188
|
|
|
189
189
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
190
190
|
exports.register = register;
|
|
@@ -10,7 +10,7 @@ var WireService = (function (exports) {
|
|
|
10
10
|
function isUndefined(obj) {
|
|
11
11
|
return obj === undefined;
|
|
12
12
|
}
|
|
13
|
-
/** version: 2.37.
|
|
13
|
+
/** version: 2.37.3 */
|
|
14
14
|
|
|
15
15
|
/*
|
|
16
16
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -184,7 +184,7 @@ var WireService = (function (exports) {
|
|
|
184
184
|
forEach.call(this.disconnecting, (listener) => listener.call(undefined));
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
|
-
/** version: 2.37.
|
|
187
|
+
/** version: 2.37.3 */
|
|
188
188
|
|
|
189
189
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
190
190
|
exports.register = register;
|
|
@@ -23,7 +23,7 @@ var WireService = (function (exports) {
|
|
|
23
23
|
function isUndefined(obj) {
|
|
24
24
|
return obj === undefined;
|
|
25
25
|
}
|
|
26
|
-
/** version: 2.37.
|
|
26
|
+
/** version: 2.37.3 */
|
|
27
27
|
|
|
28
28
|
/*
|
|
29
29
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -227,7 +227,7 @@ var WireService = (function (exports) {
|
|
|
227
227
|
}]);
|
|
228
228
|
return LegacyWireAdapterBridge;
|
|
229
229
|
}();
|
|
230
|
-
/** version: 2.37.
|
|
230
|
+
/** version: 2.37.3 */
|
|
231
231
|
|
|
232
232
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
233
233
|
exports.register = register;
|
|
@@ -23,7 +23,7 @@ var WireService = (function (exports) {
|
|
|
23
23
|
function isUndefined(obj) {
|
|
24
24
|
return obj === undefined;
|
|
25
25
|
}
|
|
26
|
-
/** version: 2.37.
|
|
26
|
+
/** version: 2.37.3 */
|
|
27
27
|
|
|
28
28
|
/*
|
|
29
29
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -227,7 +227,7 @@ var WireService = (function (exports) {
|
|
|
227
227
|
}]);
|
|
228
228
|
return LegacyWireAdapterBridge;
|
|
229
229
|
}();
|
|
230
|
-
/** version: 2.37.
|
|
230
|
+
/** version: 2.37.3 */
|
|
231
231
|
|
|
232
232
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
233
233
|
exports.register = register;
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
function isUndefined(obj) {
|
|
14
14
|
return obj === undefined;
|
|
15
15
|
}
|
|
16
|
-
/** version: 2.37.
|
|
16
|
+
/** version: 2.37.3 */
|
|
17
17
|
|
|
18
18
|
/*
|
|
19
19
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
forEach.call(this.disconnecting, (listener) => listener.call(undefined));
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
|
-
/** version: 2.37.
|
|
190
|
+
/** version: 2.37.3 */
|
|
191
191
|
|
|
192
192
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
193
193
|
exports.register = register;
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
function isUndefined(obj) {
|
|
14
14
|
return obj === undefined;
|
|
15
15
|
}
|
|
16
|
-
/** version: 2.37.
|
|
16
|
+
/** version: 2.37.3 */
|
|
17
17
|
|
|
18
18
|
/*
|
|
19
19
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
forEach.call(this.disconnecting, (listener) => listener.call(undefined));
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
|
-
/** version: 2.37.
|
|
190
|
+
/** version: 2.37.3 */
|
|
191
191
|
|
|
192
192
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
193
193
|
exports.register = register;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
function isUndefined(obj) {
|
|
27
27
|
return obj === undefined;
|
|
28
28
|
}
|
|
29
|
-
/** version: 2.37.
|
|
29
|
+
/** version: 2.37.3 */
|
|
30
30
|
|
|
31
31
|
/*
|
|
32
32
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
}]);
|
|
231
231
|
return LegacyWireAdapterBridge;
|
|
232
232
|
}();
|
|
233
|
-
/** version: 2.37.
|
|
233
|
+
/** version: 2.37.3 */
|
|
234
234
|
|
|
235
235
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
236
236
|
exports.register = register;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
function isUndefined(obj) {
|
|
27
27
|
return obj === undefined;
|
|
28
28
|
}
|
|
29
|
-
/** version: 2.37.
|
|
29
|
+
/** version: 2.37.3 */
|
|
30
30
|
|
|
31
31
|
/*
|
|
32
32
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
}]);
|
|
231
231
|
return LegacyWireAdapterBridge;
|
|
232
232
|
}();
|
|
233
|
-
/** version: 2.37.
|
|
233
|
+
/** version: 2.37.3 */
|
|
234
234
|
|
|
235
235
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
236
236
|
exports.register = register;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lwc",
|
|
3
|
-
"version": "2.37.
|
|
3
|
+
"version": "2.37.3",
|
|
4
4
|
"description": "Lightning Web Components (LWC)",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
]
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@lwc/compiler": "2.37.
|
|
45
|
-
"@lwc/engine-dom": "2.37.
|
|
46
|
-
"@lwc/engine-server": "2.37.
|
|
47
|
-
"@lwc/features": "2.37.
|
|
48
|
-
"@lwc/synthetic-shadow": "2.37.
|
|
49
|
-
"@lwc/wire-service": "2.37.
|
|
44
|
+
"@lwc/compiler": "2.37.3",
|
|
45
|
+
"@lwc/engine-dom": "2.37.3",
|
|
46
|
+
"@lwc/engine-server": "2.37.3",
|
|
47
|
+
"@lwc/features": "2.37.3",
|
|
48
|
+
"@lwc/synthetic-shadow": "2.37.3",
|
|
49
|
+
"@lwc/wire-service": "2.37.3"
|
|
50
50
|
},
|
|
51
51
|
"nx": {
|
|
52
52
|
"targets": {
|