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.
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BkXIvvl_.js');
4
- var tw = require('./tw-DjgLCrhp.js');
3
+ var index = require('./index-CJbT1yFi.js');
4
+ var tw = require('./tw-BJXASLvJ.js');
5
5
 
6
6
  const altInputCss = () => ``;
7
7
 
@@ -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.42.0 | MIT Licensed | https://stenciljs.com
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 attrName = memberName.slice(5);
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 && (flags & (2 /* hasRendered */ | 16 /* isQueuedForUpdate */)) === 2 /* hasRendered */) {
3458
+ if (BUILD.updatable && flags & 2 /* hasRendered */) {
3446
3459
  if (instance.componentShouldUpdate) {
3447
- if (instance.componentShouldUpdate(newVal, oldVal, propName) === false) {
3460
+ const shouldUpdate = instance.componentShouldUpdate(newVal, oldVal, propName);
3461
+ if (shouldUpdate === false && !(flags & 16 /* isQueuedForUpdate */)) {
3448
3462
  return;
3449
3463
  }
3450
3464
  }
3451
- scheduleUpdate(hostRef, false);
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
- if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
3700
- hostRef.$flags$ |= 32 /* hasInitializedComponent */;
3701
- const bundleId = cmpMeta.$lazyBundleId$;
3702
- if (BUILD.lazyLoad && bundleId) {
3703
- const CstrImport = loadModule(cmpMeta, hostRef, hmrVersionId);
3704
- if (CstrImport && "then" in CstrImport) {
3705
- const endLoad = uniqueTime(
3706
- `st:load:${cmpMeta.$tagName$}:${hostRef.$modeName$}`,
3707
- `[Stencil] Load module for <${cmpMeta.$tagName$}>`
3708
- );
3709
- Cstr = await CstrImport;
3710
- endLoad();
3711
- } else {
3712
- Cstr = CstrImport;
3713
- }
3714
- if (!Cstr) {
3715
- throw new Error(`Constructor for "${cmpMeta.$tagName$}#${hostRef.$modeName$}" was not found`);
3716
- }
3717
- if (BUILD.member && !Cstr.isProxied) {
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
- cmpMeta.$watchers$ = Cstr.watchers;
3720
- cmpMeta.$serializers$ = Cstr.serializers;
3721
- cmpMeta.$deserializers$ = Cstr.deserializers;
3756
+ hostRef.$flags$ |= 128 /* isWatchReady */;
3722
3757
  }
3723
- proxyComponent(Cstr, cmpMeta, 2 /* proxyState */);
3724
- Cstr.isProxied = true;
3725
- }
3726
- const endNewInstance = createTime("createInstance", cmpMeta.$tagName$);
3727
- if (BUILD.member) {
3728
- hostRef.$flags$ |= 8 /* isConstructingInstance */;
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
- if (BUILD.hydrateServerSide && hostRef.$modeName$) {
3763
- elm.setAttribute("s-mode", hostRef.$modeName$);
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
- const scopeId2 = getScopeId(cmpMeta, hostRef.$modeName$);
3767
- if (!styles.has(scopeId2) || BUILD.hotModuleReplacement && hmrVersionId) {
3768
- const endRegisterStyles = createTime("registerStyles", cmpMeta.$tagName$);
3769
- if (BUILD.hydrateServerSide && BUILD.shadowDom) {
3770
- if (cmpMeta.$flags$ & 128 /* shadowNeedsScopedCss */) {
3771
- style = scopeCss(style, scopeId2);
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
- const ancestorComponent = hostRef.$ancestorComponent$;
3780
- const schedule = () => scheduleUpdate(hostRef, true);
3781
- if (BUILD.asyncLoading && ancestorComponent && ancestorComponent["s-rc"]) {
3782
- ancestorComponent["s-rc"].push(schedule);
3783
- } else {
3784
- schedule();
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
- if (BUILD.member) {
3914
- cmpMeta.$members$ = compactMeta[2];
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
- } else if (BUILD.cloneNodeFix) {
3948
- patchCloneNode(Cstr.prototype);
3949
- }
3950
- if (BUILD.hydrateClientSide && BUILD.shadowDom) {
3951
- hydrateScopedToShadow();
3952
- }
3953
- const originalConnectedCallback = Cstr.prototype.connectedCallback;
3954
- const originalDisconnectedCallback = Cstr.prototype.disconnectedCallback;
3955
- Object.assign(Cstr.prototype, {
3956
- __hasHostListenerAttached: false,
3957
- __registerHost() {
3958
- registerHost(this, cmpMeta);
3959
- },
3960
- connectedCallback() {
3961
- if (!this.__hasHostListenerAttached) {
3962
- const hostRef = getHostRef(this);
3963
- if (!hostRef) {
3964
- return;
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
- __attachShadow() {
3981
- if (supportsShadow) {
3982
- if (!this.shadowRoot) {
3983
- createShadowRoot.call(this, cmpMeta);
3984
- } else {
3985
- if (this.shadowRoot.mode !== "open") {
3986
- throw new Error(
3987
- `Unable to re-use existing shadow root for ${cmpMeta.$tagName$}! Mode is set to ${this.shadowRoot.mode} but Stencil only supports open shadow roots.`
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
- Cstr.is = cmpMeta.$tagName$;
3997
- return proxyComponent(Cstr, cmpMeta, 1 /* isElementConstructor */ | 2 /* proxyState */);
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-BkXIvvl_.js');
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.42.0 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Browser v4.43.0 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
 
11
11
  var patchBrowser = () => {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BkXIvvl_.js');
3
+ var index = require('./index-CJbT1yFi.js');
4
4
  var appGlobals = require('./app-globals-V2Kpy_OQ.js');
5
5
 
6
6
  const defineCustomElements = async (win, options) => {
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BkXIvvl_.js');
4
- var tw = require('./tw-DjgLCrhp.js');
3
+ var index = require('./index-CJbT1yFi.js');
4
+ var tw = require('./tw-BJXASLvJ.js');
5
5
 
6
6
  const numericInputCss = () => ``;
7
7
 
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BkXIvvl_.js');
4
- var tw = require('./tw-DjgLCrhp.js');
3
+ var index = require('./index-CJbT1yFi.js');
4
+ var tw = require('./tw-BJXASLvJ.js');
5
5
 
6
6
  const Button = props => {
7
7
  const { label, callback } = props;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-BkXIvvl_.js');
3
+ var index = require('./index-CJbT1yFi.js');
4
4
 
5
5
  const appendToMap = (map, propName, value) => {
6
6
  let refs = map.get(propName);
@@ -6,7 +6,7 @@
6
6
  ],
7
7
  "compiler": {
8
8
  "name": "@stencil/core",
9
- "version": "4.42.0",
9
+ "version": "4.43.0",
10
10
  "typescriptVersion": "5.8.3"
11
11
  },
12
12
  "collections": [],
@@ -1,5 +1,5 @@
1
- import { r as registerInstance, h } from './index-CrKRromv.js';
2
- import { a as actions, t as tw } from './tw-C6WQE5qW.js';
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