lwc 2.25.0 → 2.25.1
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 +237 -141
- package/dist/engine-dom/iife/es2017/engine-dom.js +237 -141
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +224 -128
- package/dist/engine-dom/iife/es5/engine-dom.js +20 -9
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +18 -7
- package/dist/engine-dom/umd/es2017/engine-dom.js +237 -141
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +224 -128
- package/dist/engine-dom/umd/es5/engine-dom.js +20 -9
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +18 -7
- package/dist/engine-server/commonjs/es2017/engine-server.js +207 -121
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +207 -121
- 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
|
@@ -299,9 +299,9 @@ function htmlPropertyToAttribute(propName) {
|
|
|
299
299
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
300
300
|
*/
|
|
301
301
|
// Increment whenever the LWC template compiler changes
|
|
302
|
-
const LWC_VERSION = "2.25.
|
|
302
|
+
const LWC_VERSION = "2.25.1";
|
|
303
303
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
304
|
-
/** version: 2.25.
|
|
304
|
+
/** version: 2.25.1 */
|
|
305
305
|
|
|
306
306
|
/**
|
|
307
307
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -383,7 +383,7 @@ for (let i = 0, len = ElementPrototypeAriaPropertyNames.length; i < len; i += 1)
|
|
|
383
383
|
patch$1(propName);
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
|
-
/** version: 2.25.
|
|
386
|
+
/** version: 2.25.1 */
|
|
387
387
|
|
|
388
388
|
/**
|
|
389
389
|
* Copyright (C) 2018 salesforce.com, inc.
|
|
@@ -409,6 +409,7 @@ const features = {
|
|
|
409
409
|
ENABLE_REACTIVE_SETTER: null,
|
|
410
410
|
ENABLE_WIRE_SYNC_EMIT: null,
|
|
411
411
|
ENABLE_LIGHT_GET_ROOT_NODE_PATCH: null,
|
|
412
|
+
DISABLE_LIGHT_DOM_UNSCOPED_CSS: null,
|
|
412
413
|
};
|
|
413
414
|
if (!_globalThis.lwcRuntimeFlags) {
|
|
414
415
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
@@ -462,7 +463,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
462
463
|
setFeatureFlag(name, value);
|
|
463
464
|
}
|
|
464
465
|
}
|
|
465
|
-
/** version: 2.25.
|
|
466
|
+
/** version: 2.25.1 */
|
|
466
467
|
|
|
467
468
|
/*
|
|
468
469
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -3459,175 +3460,270 @@ function getComponentDef(Ctor) {
|
|
|
3459
3460
|
* SPDX-License-Identifier: MIT
|
|
3460
3461
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
3461
3462
|
*/
|
|
3463
|
+
|
|
3462
3464
|
function makeHostToken(token) {
|
|
3463
|
-
|
|
3465
|
+
return `${token}-host`;
|
|
3464
3466
|
}
|
|
3467
|
+
|
|
3465
3468
|
function createInlineStyleVNode(content) {
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3469
|
+
return api.h('style', {
|
|
3470
|
+
key: 'style',
|
|
3471
|
+
attrs: {
|
|
3472
|
+
type: 'text/css'
|
|
3473
|
+
}
|
|
3474
|
+
}, [api.t(content)]);
|
|
3472
3475
|
}
|
|
3476
|
+
|
|
3473
3477
|
function updateStylesheetToken(vm, template) {
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3478
|
+
const {
|
|
3479
|
+
elm,
|
|
3480
|
+
context,
|
|
3481
|
+
renderMode,
|
|
3482
|
+
shadowMode,
|
|
3483
|
+
renderer: {
|
|
3484
|
+
getClassList,
|
|
3485
|
+
removeAttribute,
|
|
3486
|
+
setAttribute
|
|
3487
|
+
}
|
|
3488
|
+
} = vm;
|
|
3489
|
+
const {
|
|
3490
|
+
stylesheets: newStylesheets,
|
|
3491
|
+
stylesheetToken: newStylesheetToken
|
|
3492
|
+
} = template;
|
|
3493
|
+
const isSyntheticShadow = renderMode === 1
|
|
3494
|
+
/* RenderMode.Shadow */
|
|
3495
|
+
&& shadowMode === 1
|
|
3496
|
+
/* ShadowMode.Synthetic */
|
|
3497
|
+
;
|
|
3498
|
+
const {
|
|
3499
|
+
hasScopedStyles
|
|
3500
|
+
} = context;
|
|
3501
|
+
let newToken;
|
|
3502
|
+
let newHasTokenInClass;
|
|
3503
|
+
let newHasTokenInAttribute; // Reset the styling token applied to the host element.
|
|
3504
|
+
|
|
3505
|
+
const {
|
|
3506
|
+
stylesheetToken: oldToken,
|
|
3507
|
+
hasTokenInClass: oldHasTokenInClass,
|
|
3508
|
+
hasTokenInAttribute: oldHasTokenInAttribute
|
|
3509
|
+
} = context;
|
|
3510
|
+
|
|
3511
|
+
if (!isUndefined$1(oldToken)) {
|
|
3512
|
+
if (oldHasTokenInClass) {
|
|
3513
|
+
getClassList(elm).remove(makeHostToken(oldToken));
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
if (oldHasTokenInAttribute) {
|
|
3517
|
+
removeAttribute(elm, makeHostToken(oldToken));
|
|
3518
|
+
}
|
|
3519
|
+
} // Apply the new template styling token to the host element, if the new template has any
|
|
3520
|
+
// associated stylesheets. In the case of light DOM, also ensure there is at least one scoped stylesheet.
|
|
3521
|
+
|
|
3522
|
+
|
|
3523
|
+
if (!isUndefined$1(newStylesheets) && newStylesheets.length !== 0) {
|
|
3524
|
+
newToken = newStylesheetToken;
|
|
3525
|
+
} // Set the new styling token on the host element
|
|
3526
|
+
|
|
3527
|
+
|
|
3528
|
+
if (!isUndefined$1(newToken)) {
|
|
3529
|
+
if (hasScopedStyles) {
|
|
3530
|
+
getClassList(elm).add(makeHostToken(newToken));
|
|
3531
|
+
newHasTokenInClass = true;
|
|
3532
|
+
}
|
|
3533
|
+
|
|
3534
|
+
if (isSyntheticShadow) {
|
|
3535
|
+
setAttribute(elm, makeHostToken(newToken), '');
|
|
3536
|
+
newHasTokenInAttribute = true;
|
|
3537
|
+
}
|
|
3538
|
+
} // Update the styling tokens present on the context object.
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
context.stylesheetToken = newToken;
|
|
3542
|
+
context.hasTokenInClass = newHasTokenInClass;
|
|
3543
|
+
context.hasTokenInAttribute = newHasTokenInAttribute;
|
|
3511
3544
|
}
|
|
3545
|
+
|
|
3512
3546
|
function evaluateStylesheetsContent(stylesheets, stylesheetToken, vm) {
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3547
|
+
const content = [];
|
|
3548
|
+
let root;
|
|
3549
|
+
|
|
3550
|
+
for (let i = 0; i < stylesheets.length; i++) {
|
|
3551
|
+
let stylesheet = stylesheets[i];
|
|
3552
|
+
|
|
3553
|
+
if (isArray$1(stylesheet)) {
|
|
3554
|
+
ArrayPush$1.apply(content, evaluateStylesheetsContent(stylesheet, stylesheetToken, vm));
|
|
3555
|
+
} else {
|
|
3556
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
3557
|
+
// Check for compiler version mismatch in dev mode only
|
|
3558
|
+
checkVersionMismatch(stylesheet, 'stylesheet'); // in dev-mode, we support hot swapping of stylesheet, which means that
|
|
3559
|
+
// the component instance might be attempting to use an old version of
|
|
3560
|
+
// the stylesheet, while internally, we have a replacement for it.
|
|
3561
|
+
|
|
3562
|
+
stylesheet = getStyleOrSwappedStyle(stylesheet);
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
const isScopedCss = stylesheet[KEY__SCOPED_CSS];
|
|
3566
|
+
|
|
3567
|
+
if (lwcRuntimeFlags.DISABLE_LIGHT_DOM_UNSCOPED_CSS) {
|
|
3568
|
+
if (!isScopedCss && vm.renderMode === 0
|
|
3569
|
+
/* RenderMode.Light */
|
|
3570
|
+
) {
|
|
3571
|
+
logError('Unscoped CSS is not supported in Light DOM. Please use scoped CSS (*.scoped.css) instead of unscoped CSS (*.css).');
|
|
3572
|
+
continue;
|
|
3519
3573
|
}
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
root = getNearestShadowComponent(vm);
|
|
3552
|
-
}
|
|
3553
|
-
useNativeDirPseudoclass = isNull(root) || root.shadowMode === 0 /* ShadowMode.Native */;
|
|
3554
|
-
}
|
|
3555
|
-
ArrayPush$1.call(content, stylesheet(scopeToken, useActualHostSelector, useNativeDirPseudoclass));
|
|
3574
|
+
} // Apply the scope token only if the stylesheet itself is scoped, or if we're rendering synthetic shadow.
|
|
3575
|
+
|
|
3576
|
+
|
|
3577
|
+
const scopeToken = isScopedCss || vm.shadowMode === 1
|
|
3578
|
+
/* ShadowMode.Synthetic */
|
|
3579
|
+
&& vm.renderMode === 1
|
|
3580
|
+
/* RenderMode.Shadow */
|
|
3581
|
+
? stylesheetToken : undefined; // Use the actual `:host` selector if we're rendering global CSS for light DOM, or if we're rendering
|
|
3582
|
+
// native shadow DOM. Synthetic shadow DOM never uses `:host`.
|
|
3583
|
+
|
|
3584
|
+
const useActualHostSelector = vm.renderMode === 0
|
|
3585
|
+
/* RenderMode.Light */
|
|
3586
|
+
? !isScopedCss : vm.shadowMode === 0
|
|
3587
|
+
/* ShadowMode.Native */
|
|
3588
|
+
; // Use the native :dir() pseudoclass only in native shadow DOM. Otherwise, in synthetic shadow,
|
|
3589
|
+
// we use an attribute selector on the host to simulate :dir().
|
|
3590
|
+
|
|
3591
|
+
let useNativeDirPseudoclass;
|
|
3592
|
+
|
|
3593
|
+
if (vm.renderMode === 1
|
|
3594
|
+
/* RenderMode.Shadow */
|
|
3595
|
+
) {
|
|
3596
|
+
useNativeDirPseudoclass = vm.shadowMode === 0
|
|
3597
|
+
/* ShadowMode.Native */
|
|
3598
|
+
;
|
|
3599
|
+
} else {
|
|
3600
|
+
// Light DOM components should only render `[dir]` if they're inside of a synthetic shadow root.
|
|
3601
|
+
// At the top level (root is null) or inside of a native shadow root, they should use `:dir()`.
|
|
3602
|
+
if (isUndefined$1(root)) {
|
|
3603
|
+
// Only calculate the root once as necessary
|
|
3604
|
+
root = getNearestShadowComponent(vm);
|
|
3556
3605
|
}
|
|
3606
|
+
|
|
3607
|
+
useNativeDirPseudoclass = isNull(root) || root.shadowMode === 0
|
|
3608
|
+
/* ShadowMode.Native */
|
|
3609
|
+
;
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3612
|
+
ArrayPush$1.call(content, stylesheet(scopeToken, useActualHostSelector, useNativeDirPseudoclass));
|
|
3557
3613
|
}
|
|
3558
|
-
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3616
|
+
return content;
|
|
3559
3617
|
}
|
|
3618
|
+
|
|
3560
3619
|
function getStylesheetsContent(vm, template) {
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3620
|
+
const {
|
|
3621
|
+
stylesheets,
|
|
3622
|
+
stylesheetToken
|
|
3623
|
+
} = template;
|
|
3624
|
+
let content = [];
|
|
3625
|
+
|
|
3626
|
+
if (!isUndefined$1(stylesheets) && stylesheets.length !== 0) {
|
|
3627
|
+
content = evaluateStylesheetsContent(stylesheets, stylesheetToken, vm);
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
return content;
|
|
3631
|
+
} // It might be worth caching this to avoid doing the lookup repeatedly, but
|
|
3569
3632
|
// perf testing has not shown it to be a huge improvement yet:
|
|
3570
3633
|
// https://github.com/salesforce/lwc/pull/2460#discussion_r691208892
|
|
3634
|
+
|
|
3571
3635
|
function getNearestShadowComponent(vm) {
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3636
|
+
let owner = vm;
|
|
3637
|
+
|
|
3638
|
+
while (!isNull(owner)) {
|
|
3639
|
+
if (owner.renderMode === 1
|
|
3640
|
+
/* RenderMode.Shadow */
|
|
3641
|
+
) {
|
|
3642
|
+
return owner;
|
|
3578
3643
|
}
|
|
3579
|
-
|
|
3644
|
+
|
|
3645
|
+
owner = owner.owner;
|
|
3646
|
+
}
|
|
3647
|
+
|
|
3648
|
+
return owner;
|
|
3580
3649
|
}
|
|
3581
3650
|
/**
|
|
3582
3651
|
* If the component that is currently being rendered uses scoped styles,
|
|
3583
3652
|
* this returns the unique token for that scoped stylesheet. Otherwise
|
|
3584
3653
|
* it returns null.
|
|
3585
3654
|
*/
|
|
3655
|
+
|
|
3656
|
+
|
|
3586
3657
|
function getScopeTokenClass(owner) {
|
|
3587
|
-
|
|
3588
|
-
|
|
3658
|
+
const {
|
|
3659
|
+
cmpTemplate,
|
|
3660
|
+
context
|
|
3661
|
+
} = owner;
|
|
3662
|
+
return context.hasScopedStyles && (cmpTemplate === null || cmpTemplate === void 0 ? void 0 : cmpTemplate.stylesheetToken) || null;
|
|
3589
3663
|
}
|
|
3590
3664
|
/**
|
|
3591
3665
|
* This function returns the host style token for a custom element if it
|
|
3592
3666
|
* exists. Otherwise it returns null.
|
|
3593
3667
|
*/
|
|
3668
|
+
|
|
3594
3669
|
function getStylesheetTokenHost(vnode) {
|
|
3595
|
-
|
|
3596
|
-
|
|
3670
|
+
const {
|
|
3671
|
+
template: {
|
|
3672
|
+
stylesheetToken
|
|
3673
|
+
}
|
|
3674
|
+
} = getComponentInternalDef(vnode.ctor);
|
|
3675
|
+
return !isUndefined$1(stylesheetToken) ? makeHostToken(stylesheetToken) : null;
|
|
3597
3676
|
}
|
|
3677
|
+
|
|
3598
3678
|
function getNearestNativeShadowComponent(vm) {
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3679
|
+
const owner = getNearestShadowComponent(vm);
|
|
3680
|
+
|
|
3681
|
+
if (!isNull(owner) && owner.shadowMode === 1
|
|
3682
|
+
/* ShadowMode.Synthetic */
|
|
3683
|
+
) {
|
|
3684
|
+
// Synthetic-within-native is impossible. So if the nearest shadow component is
|
|
3685
|
+
// synthetic, we know we won't find a native component if we go any further.
|
|
3686
|
+
return null;
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
return owner;
|
|
3606
3690
|
}
|
|
3691
|
+
|
|
3607
3692
|
function createStylesheet(vm, stylesheets) {
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
}
|
|
3614
|
-
else if (vm.hydrated) {
|
|
3615
|
-
// Note: We need to ensure that during hydration, the stylesheets method is the same as those in ssr.
|
|
3616
|
-
// This works in the client, because the stylesheets are created, and cached in the VM
|
|
3617
|
-
// the first time the VM renders.
|
|
3618
|
-
// native shadow or light DOM, SSR
|
|
3619
|
-
return ArrayMap.call(stylesheets, createInlineStyleVNode);
|
|
3693
|
+
const {
|
|
3694
|
+
renderMode,
|
|
3695
|
+
shadowMode,
|
|
3696
|
+
renderer: {
|
|
3697
|
+
insertStylesheet
|
|
3620
3698
|
}
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3699
|
+
} = vm;
|
|
3700
|
+
|
|
3701
|
+
if (renderMode === 1
|
|
3702
|
+
/* RenderMode.Shadow */
|
|
3703
|
+
&& shadowMode === 1
|
|
3704
|
+
/* ShadowMode.Synthetic */
|
|
3705
|
+
) {
|
|
3706
|
+
for (let i = 0; i < stylesheets.length; i++) {
|
|
3707
|
+
insertStylesheet(stylesheets[i]);
|
|
3708
|
+
}
|
|
3709
|
+
} else if (vm.hydrated) {
|
|
3710
|
+
// Note: We need to ensure that during hydration, the stylesheets method is the same as those in ssr.
|
|
3711
|
+
// This works in the client, because the stylesheets are created, and cached in the VM
|
|
3712
|
+
// the first time the VM renders.
|
|
3713
|
+
// native shadow or light DOM, SSR
|
|
3714
|
+
return ArrayMap.call(stylesheets, createInlineStyleVNode);
|
|
3715
|
+
} else {
|
|
3716
|
+
// native shadow or light DOM, DOM renderer
|
|
3717
|
+
const root = getNearestNativeShadowComponent(vm); // null root means a global style
|
|
3718
|
+
|
|
3719
|
+
const target = isNull(root) ? undefined : root.shadowRoot;
|
|
3720
|
+
|
|
3721
|
+
for (let i = 0; i < stylesheets.length; i++) {
|
|
3722
|
+
insertStylesheet(stylesheets[i], target);
|
|
3629
3723
|
}
|
|
3630
|
-
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
return null;
|
|
3631
3727
|
}
|
|
3632
3728
|
|
|
3633
3729
|
/*
|
|
@@ -7261,7 +7357,7 @@ function getComponentConstructor(elm) {
|
|
|
7261
7357
|
}
|
|
7262
7358
|
return ctor;
|
|
7263
7359
|
}
|
|
7264
|
-
/* version: 2.25.
|
|
7360
|
+
/* version: 2.25.1 */
|
|
7265
7361
|
|
|
7266
7362
|
/*
|
|
7267
7363
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -7465,7 +7561,7 @@ function rendererFactory(baseRenderer) {
|
|
|
7465
7561
|
function isNull(obj) {
|
|
7466
7562
|
return obj === null;
|
|
7467
7563
|
}
|
|
7468
|
-
/** version: 2.25.
|
|
7564
|
+
/** version: 2.25.1 */
|
|
7469
7565
|
|
|
7470
7566
|
/*
|
|
7471
7567
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -8084,6 +8180,6 @@ defineProperty(LightningElement, 'CustomElementConstructor', {
|
|
|
8084
8180
|
});
|
|
8085
8181
|
freeze(LightningElement);
|
|
8086
8182
|
seal(LightningElement.prototype);
|
|
8087
|
-
/* version: 2.25.
|
|
8183
|
+
/* version: 2.25.1 */
|
|
8088
8184
|
|
|
8089
8185
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, deprecatedBuildCustomElementConstructor as buildCustomElementConstructor, createContextProvider, createElement, freezeTemplate, getComponentConstructor, getComponentDef, hydrateComponent, isComponentConstructor, isNodeShadowed as isNodeFromTemplate, parseFragment, parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, renderer, rendererFactory, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|