@everymatrix/general-input 1.54.6 → 1.54.9

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-1277658a.js');
5
+ const index = require('./index-a7304e03.js');
6
6
  const locale_utils = require('./locale.utils-345d0792.js');
7
7
 
8
8
  const generalInputCss = ":host{display:block;height:100%}";
@@ -2,11 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-1277658a.js');
5
+ const index = require('./index-a7304e03.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  /*
9
- Stencil Client Patch Browser v4.25.1 | MIT Licensed | https://stenciljs.com
9
+ Stencil Client Patch Browser v4.25.3 | MIT Licensed | https://stenciljs.com
10
10
  */
11
11
  var patchBrowser = () => {
12
12
  const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('general-input.cjs.js', document.baseURI).href));
@@ -24,7 +24,7 @@ const NAMESPACE = 'general-input';
24
24
  const BUILD = /* general-input */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: true, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: true, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: true, hostListenerTargetDocument: true, hostListenerTargetParent: false, hostListenerTargetWindow: false, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: false, mode: false, modernPropertyDecls: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: false, propNumber: false, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: false, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: false, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: false, watchCallback: true };
25
25
 
26
26
  /*
27
- Stencil Client Platform v4.25.1 | MIT Licensed | https://stenciljs.com
27
+ Stencil Client Platform v4.25.3 | MIT Licensed | https://stenciljs.com
28
28
  */
29
29
  var __defProp = Object.defineProperty;
30
30
  var __export = (target, all) => {
@@ -932,9 +932,6 @@ var postUpdateComponent = (hostRef) => {
932
932
  }
933
933
  };
934
934
  var appDidLoad = (who) => {
935
- {
936
- addHydratedFlag(doc.documentElement);
937
- }
938
935
  nextTick(() => emitEvent(win, "appload", { detail: { namespace: NAMESPACE } }));
939
936
  };
940
937
  var safeCall = (instance, method, arg, elm) => {
@@ -1123,7 +1120,8 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1123
1120
  let Cstr;
1124
1121
  if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
1125
1122
  hostRef.$flags$ |= 32 /* hasInitializedComponent */;
1126
- {
1123
+ const bundleId = cmpMeta.$lazyBundleId$;
1124
+ if (bundleId) {
1127
1125
  const CstrImport = loadModule(cmpMeta, hostRef);
1128
1126
  if (CstrImport && "then" in CstrImport) {
1129
1127
  const endLoad = uniqueTime();
@@ -1159,6 +1157,10 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1159
1157
  }
1160
1158
  endNewInstance();
1161
1159
  fireConnectedCallback(hostRef.$lazyInstance$, elm);
1160
+ } else {
1161
+ Cstr = elm.constructor;
1162
+ const cmpTag = elm.localName;
1163
+ customElements.whenDefined(cmpTag).then(() => hostRef.$flags$ |= 128 /* isWatchReady */);
1162
1164
  }
1163
1165
  if (Cstr && Cstr.style) {
1164
1166
  let style;
@@ -1340,6 +1342,10 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1340
1342
  plt.raf(() => {
1341
1343
  var _a3;
1342
1344
  const hostRef = getHostRef(this);
1345
+ const i2 = deferredConnectedCallbacks.findIndex((host) => host === this);
1346
+ if (i2 > -1) {
1347
+ deferredConnectedCallbacks.splice(i2, 1);
1348
+ }
1343
1349
  if (((_a3 = hostRef == null ? void 0 : hostRef.$vnode$) == null ? void 0 : _a3.$elm$) instanceof Node && !hostRef.$vnode$.$elm$.isConnected) {
1344
1350
  delete hostRef.$vnode$.$elm$;
1345
1351
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-1277658a.js');
5
+ const index = require('./index-a7304e03.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  const defineCustomElements = async (win, options) => {
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-1277658a.js');
5
+ const index = require('./index-a7304e03.js');
6
6
  const locale_utils = require('./locale.utils-345d0792.js');
7
7
  const tooltipIcon = require('./tooltipIcon-7e9ee226.js');
8
8
 
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  "compiler": {
17
17
  "name": "@stencil/core",
18
- "version": "4.25.1",
18
+ "version": "4.25.3",
19
19
  "typescriptVersion": "5.5.4"
20
20
  },
21
21
  "collections": [],