inputs-wc 0.1.136 → 0.1.138
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/cjs/alt-input.cjs.entry.js +2 -2
- package/dist/cjs/{index-BkXIvvl_.js → index-CJbT1yFi.js} +199 -164
- package/dist/cjs/inputs-wc.cjs.js +2 -2
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/numeric-input.cjs.entry.js +2 -2
- package/dist/cjs/sample-form.cjs.entry.js +2 -2
- package/dist/cjs/{tw-DjgLCrhp.js → tw-BJXASLvJ.js} +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/esm/alt-input.entry.js +2 -2
- package/dist/esm/{index-CrKRromv.js → index-BxOkRpyR.js} +199 -164
- package/dist/esm/inputs-wc.js +3 -3
- package/dist/esm/loader.js +2 -2
- package/dist/esm/numeric-input.entry.js +2 -2
- package/dist/esm/sample-form.entry.js +2 -2
- package/dist/esm/{tw-C6WQE5qW.js → tw-5GlpVWrF.js} +1 -1
- package/dist/inputs-wc/inputs-wc.esm.js +1 -1
- package/dist/inputs-wc/{p-e5057154.entry.js → p-21ec9e8a.entry.js} +1 -1
- package/dist/inputs-wc/{p-3214dd23.entry.js → p-83eb32f2.entry.js} +1 -1
- package/dist/inputs-wc/{p-jZvgchCS.js → p-BUfqUGq3.js} +1 -1
- package/dist/inputs-wc/p-BxOkRpyR.js +2 -0
- package/dist/inputs-wc/{p-11721c68.entry.js → p-ff20c18f.entry.js} +1 -1
- package/dist/types/stencil-public-runtime.d.ts +0 -4
- package/package.json +2 -2
- package/dist/inputs-wc/p-CrKRromv.js +0 -2
|
@@ -5,7 +5,7 @@ const BUILD = /* inputs-wc */ { allRenderFn: true, appendChildSlotFix: false, as
|
|
|
5
5
|
const Env = /* inputs-wc */ {};
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Platform v4.
|
|
8
|
+
Stencil Client Platform v4.43.0 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
var Build = {
|
|
@@ -2090,7 +2090,7 @@ var scopeCss = (cssText, scopeId2, commentOriginalSelector) => {
|
|
|
2090
2090
|
});
|
|
2091
2091
|
}
|
|
2092
2092
|
scoped.slottedSelectors.forEach((slottedSelector) => {
|
|
2093
|
-
const regex = new RegExp(escapeRegExpSpecialCharacters(slottedSelector.orgSelector), "g");
|
|
2093
|
+
const regex = new RegExp(escapeRegExpSpecialCharacters(slottedSelector.orgSelector) + "(?=\\s*[,{]|$)", "g");
|
|
2094
2094
|
cssText = cssText.replace(regex, slottedSelector.updatedSelector);
|
|
2095
2095
|
});
|
|
2096
2096
|
cssText = expandPartSelectors(cssText);
|
|
@@ -2325,7 +2325,20 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRen
|
|
|
2325
2325
|
}
|
|
2326
2326
|
}
|
|
2327
2327
|
} else if (BUILD.vdomPropOrAttr && memberName[0] === "a" && memberName.startsWith("attr:")) {
|
|
2328
|
-
const
|
|
2328
|
+
const propName = memberName.slice(5);
|
|
2329
|
+
let attrName;
|
|
2330
|
+
if (BUILD.member) {
|
|
2331
|
+
const hostRef = getHostRef(elm);
|
|
2332
|
+
if (hostRef && hostRef.$cmpMeta$ && hostRef.$cmpMeta$.$members$) {
|
|
2333
|
+
const memberMeta = hostRef.$cmpMeta$.$members$[propName];
|
|
2334
|
+
if (memberMeta && memberMeta[1]) {
|
|
2335
|
+
attrName = memberMeta[1];
|
|
2336
|
+
}
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
if (!attrName) {
|
|
2340
|
+
attrName = propName.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
2341
|
+
}
|
|
2329
2342
|
if (newValue == null || newValue === false) {
|
|
2330
2343
|
if (newValue !== false || elm.getAttribute(attrName) === "") {
|
|
2331
2344
|
elm.removeAttribute(attrName);
|
|
@@ -3181,7 +3194,7 @@ var updateComponent = async (hostRef, instance, isInitialLoad) => {
|
|
|
3181
3194
|
if (childrenPromises.length === 0) {
|
|
3182
3195
|
postUpdate();
|
|
3183
3196
|
} else {
|
|
3184
|
-
Promise.all(childrenPromises).then(postUpdate);
|
|
3197
|
+
Promise.all(childrenPromises).then(postUpdate).catch(postUpdate);
|
|
3185
3198
|
hostRef.$flags$ |= 4 /* isWaitingForChildren */;
|
|
3186
3199
|
childrenPromises.length = 0;
|
|
3187
3200
|
}
|
|
@@ -3442,13 +3455,16 @@ var setValue = (ref, propName, newVal, cmpMeta) => {
|
|
|
3442
3455
|
});
|
|
3443
3456
|
}
|
|
3444
3457
|
}
|
|
3445
|
-
if (BUILD.updatable &&
|
|
3458
|
+
if (BUILD.updatable && flags & 2 /* hasRendered */) {
|
|
3446
3459
|
if (instance.componentShouldUpdate) {
|
|
3447
|
-
|
|
3460
|
+
const shouldUpdate = instance.componentShouldUpdate(newVal, oldVal, propName);
|
|
3461
|
+
if (shouldUpdate === false && !(flags & 16 /* isQueuedForUpdate */)) {
|
|
3448
3462
|
return;
|
|
3449
3463
|
}
|
|
3450
3464
|
}
|
|
3451
|
-
|
|
3465
|
+
if (!(flags & 16 /* isQueuedForUpdate */)) {
|
|
3466
|
+
scheduleUpdate(hostRef, false);
|
|
3467
|
+
}
|
|
3452
3468
|
}
|
|
3453
3469
|
}
|
|
3454
3470
|
};
|
|
@@ -3696,92 +3712,103 @@ More information: https://stenciljs.com/docs/properties#prop-mutability`
|
|
|
3696
3712
|
// src/runtime/initialize-component.ts
|
|
3697
3713
|
var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
3698
3714
|
let Cstr;
|
|
3699
|
-
|
|
3700
|
-
hostRef.$flags$
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3715
|
+
try {
|
|
3716
|
+
if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
|
|
3717
|
+
hostRef.$flags$ |= 32 /* hasInitializedComponent */;
|
|
3718
|
+
const bundleId = cmpMeta.$lazyBundleId$;
|
|
3719
|
+
if (BUILD.lazyLoad && bundleId) {
|
|
3720
|
+
const CstrImport = loadModule(cmpMeta, hostRef, hmrVersionId);
|
|
3721
|
+
if (CstrImport && "then" in CstrImport) {
|
|
3722
|
+
const endLoad = uniqueTime(
|
|
3723
|
+
`st:load:${cmpMeta.$tagName$}:${hostRef.$modeName$}`,
|
|
3724
|
+
`[Stencil] Load module for <${cmpMeta.$tagName$}>`
|
|
3725
|
+
);
|
|
3726
|
+
Cstr = await CstrImport;
|
|
3727
|
+
endLoad();
|
|
3728
|
+
} else {
|
|
3729
|
+
Cstr = CstrImport;
|
|
3730
|
+
}
|
|
3731
|
+
if (!Cstr) {
|
|
3732
|
+
throw new Error(`Constructor for "${cmpMeta.$tagName$}#${hostRef.$modeName$}" was not found`);
|
|
3733
|
+
}
|
|
3734
|
+
if (BUILD.member && !Cstr.isProxied) {
|
|
3735
|
+
if (BUILD.propChangeCallback) {
|
|
3736
|
+
cmpMeta.$watchers$ = Cstr.watchers;
|
|
3737
|
+
cmpMeta.$serializers$ = Cstr.serializers;
|
|
3738
|
+
cmpMeta.$deserializers$ = Cstr.deserializers;
|
|
3739
|
+
}
|
|
3740
|
+
proxyComponent(Cstr, cmpMeta, 2 /* proxyState */);
|
|
3741
|
+
Cstr.isProxied = true;
|
|
3742
|
+
}
|
|
3743
|
+
const endNewInstance = createTime("createInstance", cmpMeta.$tagName$);
|
|
3744
|
+
if (BUILD.member) {
|
|
3745
|
+
hostRef.$flags$ |= 8 /* isConstructingInstance */;
|
|
3746
|
+
}
|
|
3747
|
+
try {
|
|
3748
|
+
new Cstr(hostRef);
|
|
3749
|
+
} catch (e) {
|
|
3750
|
+
consoleError(e, elm);
|
|
3751
|
+
}
|
|
3752
|
+
if (BUILD.member) {
|
|
3753
|
+
hostRef.$flags$ &= -9 /* isConstructingInstance */;
|
|
3754
|
+
}
|
|
3718
3755
|
if (BUILD.propChangeCallback) {
|
|
3719
|
-
|
|
3720
|
-
cmpMeta.$serializers$ = Cstr.serializers;
|
|
3721
|
-
cmpMeta.$deserializers$ = Cstr.deserializers;
|
|
3756
|
+
hostRef.$flags$ |= 128 /* isWatchReady */;
|
|
3722
3757
|
}
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
}
|
|
3730
|
-
try {
|
|
3731
|
-
new Cstr(hostRef);
|
|
3732
|
-
} catch (e) {
|
|
3733
|
-
consoleError(e, elm);
|
|
3734
|
-
}
|
|
3735
|
-
if (BUILD.member) {
|
|
3736
|
-
hostRef.$flags$ &= -9 /* isConstructingInstance */;
|
|
3737
|
-
}
|
|
3738
|
-
if (BUILD.propChangeCallback) {
|
|
3739
|
-
hostRef.$flags$ |= 128 /* isWatchReady */;
|
|
3740
|
-
}
|
|
3741
|
-
endNewInstance();
|
|
3742
|
-
const needsDeferredCallback = BUILD.slotRelocation && cmpMeta.$flags$ & 4 /* hasSlotRelocation */;
|
|
3743
|
-
if (!needsDeferredCallback) {
|
|
3744
|
-
fireConnectedCallback(hostRef.$lazyInstance$, elm);
|
|
3745
|
-
} else {
|
|
3746
|
-
hostRef.$deferredConnectedCallback$ = true;
|
|
3747
|
-
}
|
|
3748
|
-
} else {
|
|
3749
|
-
Cstr = elm.constructor;
|
|
3750
|
-
const cmpTag = elm.localName;
|
|
3751
|
-
customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
|
|
3752
|
-
}
|
|
3753
|
-
if (BUILD.style && Cstr && Cstr.style) {
|
|
3754
|
-
let style;
|
|
3755
|
-
if (typeof Cstr.style === "string") {
|
|
3756
|
-
style = Cstr.style;
|
|
3757
|
-
} else if (BUILD.mode && typeof Cstr.style !== "string") {
|
|
3758
|
-
hostRef.$modeName$ = computeMode(elm);
|
|
3759
|
-
if (hostRef.$modeName$) {
|
|
3760
|
-
style = Cstr.style[hostRef.$modeName$];
|
|
3758
|
+
endNewInstance();
|
|
3759
|
+
const needsDeferredCallback = BUILD.slotRelocation && cmpMeta.$flags$ & 4 /* hasSlotRelocation */;
|
|
3760
|
+
if (!needsDeferredCallback) {
|
|
3761
|
+
fireConnectedCallback(hostRef.$lazyInstance$, elm);
|
|
3762
|
+
} else {
|
|
3763
|
+
hostRef.$deferredConnectedCallback$ = true;
|
|
3761
3764
|
}
|
|
3762
|
-
|
|
3763
|
-
|
|
3765
|
+
} else {
|
|
3766
|
+
Cstr = elm.constructor;
|
|
3767
|
+
const cmpTag = elm.localName;
|
|
3768
|
+
customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
|
|
3769
|
+
}
|
|
3770
|
+
if (BUILD.style && Cstr && Cstr.style) {
|
|
3771
|
+
let style;
|
|
3772
|
+
if (typeof Cstr.style === "string") {
|
|
3773
|
+
style = Cstr.style;
|
|
3774
|
+
} else if (BUILD.mode && typeof Cstr.style !== "string") {
|
|
3775
|
+
hostRef.$modeName$ = computeMode(elm);
|
|
3776
|
+
if (hostRef.$modeName$) {
|
|
3777
|
+
style = Cstr.style[hostRef.$modeName$];
|
|
3778
|
+
}
|
|
3779
|
+
if (BUILD.hydrateServerSide && hostRef.$modeName$) {
|
|
3780
|
+
elm.setAttribute("s-mode", hostRef.$modeName$);
|
|
3781
|
+
}
|
|
3764
3782
|
}
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3783
|
+
const scopeId2 = getScopeId(cmpMeta, hostRef.$modeName$);
|
|
3784
|
+
if (!styles.has(scopeId2) || BUILD.hotModuleReplacement && hmrVersionId) {
|
|
3785
|
+
const endRegisterStyles = createTime("registerStyles", cmpMeta.$tagName$);
|
|
3786
|
+
if (BUILD.hydrateServerSide && BUILD.shadowDom) {
|
|
3787
|
+
if (cmpMeta.$flags$ & 128 /* shadowNeedsScopedCss */) {
|
|
3788
|
+
style = scopeCss(style, scopeId2);
|
|
3789
|
+
}
|
|
3772
3790
|
}
|
|
3791
|
+
registerStyle(scopeId2, style, !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */));
|
|
3792
|
+
endRegisterStyles();
|
|
3773
3793
|
}
|
|
3774
|
-
registerStyle(scopeId2, style, !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */));
|
|
3775
|
-
endRegisterStyles();
|
|
3776
3794
|
}
|
|
3777
3795
|
}
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3796
|
+
const ancestorComponent = hostRef.$ancestorComponent$;
|
|
3797
|
+
const schedule = () => scheduleUpdate(hostRef, true);
|
|
3798
|
+
if (BUILD.asyncLoading && ancestorComponent && ancestorComponent["s-rc"]) {
|
|
3799
|
+
ancestorComponent["s-rc"].push(schedule);
|
|
3800
|
+
} else {
|
|
3801
|
+
schedule();
|
|
3802
|
+
}
|
|
3803
|
+
} catch (e) {
|
|
3804
|
+
consoleError(e, elm);
|
|
3805
|
+
if (BUILD.asyncLoading && hostRef.$onRenderResolve$) {
|
|
3806
|
+
hostRef.$onRenderResolve$();
|
|
3807
|
+
hostRef.$onRenderResolve$ = void 0;
|
|
3808
|
+
}
|
|
3809
|
+
if (BUILD.asyncLoading && hostRef.$onReadyResolve$) {
|
|
3810
|
+
hostRef.$onReadyResolve$(elm);
|
|
3811
|
+
}
|
|
3785
3812
|
}
|
|
3786
3813
|
};
|
|
3787
3814
|
var fireConnectedCallback = (instance, elm) => {
|
|
@@ -3910,91 +3937,99 @@ var proxyCustomElement = (Cstr, compactMeta) => {
|
|
|
3910
3937
|
$flags$: compactMeta[0],
|
|
3911
3938
|
$tagName$: compactMeta[1]
|
|
3912
3939
|
};
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
if (BUILD.hostListener) {
|
|
3917
|
-
cmpMeta.$listeners$ = compactMeta[3];
|
|
3918
|
-
}
|
|
3919
|
-
if (BUILD.propChangeCallback) {
|
|
3920
|
-
cmpMeta.$watchers$ = Cstr.$watchers$;
|
|
3921
|
-
cmpMeta.$deserializers$ = Cstr.$deserializers$;
|
|
3922
|
-
cmpMeta.$serializers$ = Cstr.$serializers$;
|
|
3923
|
-
}
|
|
3924
|
-
if (BUILD.reflect) {
|
|
3925
|
-
cmpMeta.$attrsToReflect$ = [];
|
|
3926
|
-
}
|
|
3927
|
-
if (BUILD.shadowDom && !supportsShadow && cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
|
|
3928
|
-
cmpMeta.$flags$ |= 8 /* needsShadowDomShim */;
|
|
3929
|
-
}
|
|
3930
|
-
if (!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && cmpMeta.$flags$ & 256 /* hasSlot */) {
|
|
3931
|
-
if (BUILD.experimentalSlotFixes) {
|
|
3932
|
-
patchPseudoShadowDom(Cstr.prototype);
|
|
3933
|
-
} else {
|
|
3934
|
-
if (BUILD.slotChildNodesFix) {
|
|
3935
|
-
patchChildSlotNodes(Cstr.prototype);
|
|
3936
|
-
}
|
|
3937
|
-
if (BUILD.cloneNodeFix) {
|
|
3938
|
-
patchCloneNode(Cstr.prototype);
|
|
3939
|
-
}
|
|
3940
|
-
if (BUILD.appendChildSlotFix) {
|
|
3941
|
-
patchSlotAppendChild(Cstr.prototype);
|
|
3942
|
-
}
|
|
3943
|
-
if (BUILD.scopedSlotTextContentFix && cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
|
|
3944
|
-
patchTextContent(Cstr.prototype);
|
|
3945
|
-
}
|
|
3940
|
+
try {
|
|
3941
|
+
if (BUILD.member) {
|
|
3942
|
+
cmpMeta.$members$ = compactMeta[2];
|
|
3946
3943
|
}
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3944
|
+
if (BUILD.hostListener) {
|
|
3945
|
+
cmpMeta.$listeners$ = compactMeta[3];
|
|
3946
|
+
}
|
|
3947
|
+
if (BUILD.propChangeCallback) {
|
|
3948
|
+
cmpMeta.$watchers$ = Cstr.$watchers$;
|
|
3949
|
+
cmpMeta.$deserializers$ = Cstr.$deserializers$;
|
|
3950
|
+
cmpMeta.$serializers$ = Cstr.$serializers$;
|
|
3951
|
+
}
|
|
3952
|
+
if (BUILD.reflect) {
|
|
3953
|
+
cmpMeta.$attrsToReflect$ = [];
|
|
3954
|
+
}
|
|
3955
|
+
if (BUILD.shadowDom && !supportsShadow && cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
|
|
3956
|
+
cmpMeta.$flags$ |= 8 /* needsShadowDomShim */;
|
|
3957
|
+
}
|
|
3958
|
+
if (!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && cmpMeta.$flags$ & 256 /* hasSlot */) {
|
|
3959
|
+
if (BUILD.experimentalSlotFixes) {
|
|
3960
|
+
patchPseudoShadowDom(Cstr.prototype);
|
|
3961
|
+
} else {
|
|
3962
|
+
if (BUILD.slotChildNodesFix) {
|
|
3963
|
+
patchChildSlotNodes(Cstr.prototype);
|
|
3964
|
+
}
|
|
3965
|
+
if (BUILD.cloneNodeFix) {
|
|
3966
|
+
patchCloneNode(Cstr.prototype);
|
|
3967
|
+
}
|
|
3968
|
+
if (BUILD.appendChildSlotFix) {
|
|
3969
|
+
patchSlotAppendChild(Cstr.prototype);
|
|
3970
|
+
}
|
|
3971
|
+
if (BUILD.scopedSlotTextContentFix && cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
|
|
3972
|
+
patchTextContent(Cstr.prototype);
|
|
3965
3973
|
}
|
|
3966
|
-
addHostEventListeners(this, hostRef, cmpMeta.$listeners$, false);
|
|
3967
|
-
this.__hasHostListenerAttached = true;
|
|
3968
|
-
}
|
|
3969
|
-
connectedCallback(this);
|
|
3970
|
-
if (originalConnectedCallback) {
|
|
3971
|
-
originalConnectedCallback.call(this);
|
|
3972
|
-
}
|
|
3973
|
-
},
|
|
3974
|
-
disconnectedCallback() {
|
|
3975
|
-
disconnectedCallback(this);
|
|
3976
|
-
if (originalDisconnectedCallback) {
|
|
3977
|
-
originalDisconnectedCallback.call(this);
|
|
3978
3974
|
}
|
|
3979
|
-
}
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3975
|
+
} else if (BUILD.cloneNodeFix) {
|
|
3976
|
+
patchCloneNode(Cstr.prototype);
|
|
3977
|
+
}
|
|
3978
|
+
if (BUILD.hydrateClientSide && BUILD.shadowDom) {
|
|
3979
|
+
hydrateScopedToShadow();
|
|
3980
|
+
}
|
|
3981
|
+
const originalConnectedCallback = Cstr.prototype.connectedCallback;
|
|
3982
|
+
const originalDisconnectedCallback = Cstr.prototype.disconnectedCallback;
|
|
3983
|
+
Object.assign(Cstr.prototype, {
|
|
3984
|
+
__hasHostListenerAttached: false,
|
|
3985
|
+
__registerHost() {
|
|
3986
|
+
registerHost(this, cmpMeta);
|
|
3987
|
+
},
|
|
3988
|
+
connectedCallback() {
|
|
3989
|
+
if (!this.__hasHostListenerAttached) {
|
|
3990
|
+
const hostRef = getHostRef(this);
|
|
3991
|
+
if (!hostRef) {
|
|
3992
|
+
return;
|
|
3989
3993
|
}
|
|
3994
|
+
addHostEventListeners(this, hostRef, cmpMeta.$listeners$, false);
|
|
3995
|
+
this.__hasHostListenerAttached = true;
|
|
3996
|
+
}
|
|
3997
|
+
connectedCallback(this);
|
|
3998
|
+
if (originalConnectedCallback) {
|
|
3999
|
+
originalConnectedCallback.call(this);
|
|
4000
|
+
}
|
|
4001
|
+
},
|
|
4002
|
+
disconnectedCallback() {
|
|
4003
|
+
disconnectedCallback(this);
|
|
4004
|
+
if (originalDisconnectedCallback) {
|
|
4005
|
+
originalDisconnectedCallback.call(this);
|
|
4006
|
+
}
|
|
4007
|
+
},
|
|
4008
|
+
__attachShadow() {
|
|
4009
|
+
if (supportsShadow) {
|
|
4010
|
+
if (!this.shadowRoot) {
|
|
4011
|
+
createShadowRoot.call(this, cmpMeta);
|
|
4012
|
+
} else {
|
|
4013
|
+
if (this.shadowRoot.mode !== "open") {
|
|
4014
|
+
throw new Error(
|
|
4015
|
+
`Unable to re-use existing shadow root for ${cmpMeta.$tagName$}! Mode is set to ${this.shadowRoot.mode} but Stencil only supports open shadow roots.`
|
|
4016
|
+
);
|
|
4017
|
+
}
|
|
4018
|
+
}
|
|
4019
|
+
} else {
|
|
4020
|
+
this.shadowRoot = this;
|
|
3990
4021
|
}
|
|
3991
|
-
} else {
|
|
3992
|
-
this.shadowRoot = this;
|
|
3993
4022
|
}
|
|
3994
|
-
}
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
4023
|
+
});
|
|
4024
|
+
Object.defineProperty(Cstr, "is", {
|
|
4025
|
+
value: cmpMeta.$tagName$,
|
|
4026
|
+
configurable: true
|
|
4027
|
+
});
|
|
4028
|
+
return proxyComponent(Cstr, cmpMeta, 1 /* isElementConstructor */ | 2 /* proxyState */);
|
|
4029
|
+
} catch (e) {
|
|
4030
|
+
consoleError(e);
|
|
4031
|
+
return Cstr;
|
|
4032
|
+
}
|
|
3998
4033
|
};
|
|
3999
4034
|
var forceModeUpdate = (elm) => {
|
|
4000
4035
|
if (BUILD.style && BUILD.mode && !BUILD.lazyLoad) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-CJbT1yFi.js');
|
|
4
4
|
var appGlobals = require('./app-globals-V2Kpy_OQ.js');
|
|
5
5
|
|
|
6
6
|
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v4.
|
|
8
|
+
Stencil Client Patch Browser v4.43.0 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
var patchBrowser = () => {
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
|
2
|
-
import { a as actions, t as tw } from './tw-
|
|
1
|
+
import { r as registerInstance, h } from './index-BxOkRpyR.js';
|
|
2
|
+
import { a as actions, t as tw } from './tw-5GlpVWrF.js';
|
|
3
3
|
|
|
4
4
|
const altInputCss = () => ``;
|
|
5
5
|
|