@everymatrix/helper-accordion 1.55.0 → 1.56.0

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.
Files changed (24) hide show
  1. package/dist/cjs/helper-accordion.cjs.entry.js +49 -15
  2. package/dist/cjs/helper-accordion.cjs.js +2 -2
  3. package/dist/cjs/{index-a85479d0.js → index-00039b40.js} +171 -70
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/components/helper-accordion/helper-accordion.js +74 -14
  7. package/dist/esm/helper-accordion.entry.js +49 -15
  8. package/dist/esm/helper-accordion.js +3 -3
  9. package/dist/esm/{index-2246d4ef.js → index-e014805e.js} +171 -70
  10. package/dist/esm/loader.js +2 -2
  11. package/dist/helper-accordion/helper-accordion.esm.js +1 -1
  12. package/dist/helper-accordion/p-b7fe6513.entry.js +1 -0
  13. package/dist/helper-accordion/p-d73ec3ca.js +2 -0
  14. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.d.ts +2 -0
  15. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.dev.d.ts +2 -0
  16. package/package.json +1 -1
  17. package/dist/helper-accordion/p-196f82a5.entry.js +0 -1
  18. package/dist/helper-accordion/p-9f371648.js +0 -2
  19. package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.d.ts +0 -2
  20. package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.dev.d.ts +0 -2
  21. /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/index.d.ts +0 -0
  22. /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
  23. /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
  24. /package/dist/types/Users/{maria.bumbar/Desktop → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-a85479d0.js');
5
+ const index = require('./index-00039b40.js');
6
6
 
7
7
  const DEFAULT_LANGUAGE = 'en';
8
8
  const SUPPORTED_LANGUAGES = ['ro', 'en', 'hr'];
@@ -42,33 +42,67 @@ const HelperAccordion = class {
42
42
  constructor(hostRef) {
43
43
  index.registerInstance(this, hostRef);
44
44
  this.accordionEvent = index.createEvent(this, "helperAccordionAction", 7);
45
- this.setClientStyling = () => {
46
- let sheet = document.createElement('style');
47
- sheet.innerHTML = this.clientStyling;
48
- this.stylingContainer.prepend(sheet);
49
- };
50
- this.setClientStylingURL = () => {
51
- let cssFile = document.createElement('style');
52
- setTimeout(() => {
53
- cssFile.innerHTML = this.clientStylingUrlContent;
54
- this.stylingContainer.prepend(cssFile);
55
- }, 1);
56
- };
45
+ /**
46
+ * Flag for ticket history
47
+ */
57
48
  this.ticketHistoryFlag = false;
49
+ /**
50
+ * Title (top header)
51
+ */
58
52
  this.headerTitle = '';
53
+ /**
54
+ * SubTitle (top header)
55
+ */
59
56
  this.headerSubtitle = '';
57
+ /**
58
+ * Description
59
+ */
60
60
  this.description = '';
61
+ /**
62
+ * Enables footer content
63
+ */
61
64
  this.footer = false;
65
+ /**
66
+ * Enables footer button for tab deletion
67
+ */
62
68
  this.deleteTab = false;
69
+ /**
70
+ * Activates postMessages as events for actions from the widget
71
+ */
63
72
  this.postMessage = false;
73
+ /**
74
+ * Name of the event emitter by the action button
75
+ */
64
76
  this.eventName = 'helperAccordionAction';
77
+ /**
78
+ * Collapsed
79
+ */
65
80
  this.collapsed = true;
81
+ /**
82
+ * Language
83
+ */
66
84
  this.language = 'en';
85
+ /**
86
+ * Client custom styling via string
87
+ */
67
88
  this.clientStyling = '';
89
+ /**
90
+ * Client custom styling via url content
91
+ */
68
92
  this.clientStylingUrlContent = '';
69
- this.translationUrl = undefined;
70
- this.showContent = undefined;
71
93
  this.limitStylingAppends = false;
94
+ this.setClientStyling = () => {
95
+ let sheet = document.createElement('style');
96
+ sheet.innerHTML = this.clientStyling;
97
+ this.stylingContainer.prepend(sheet);
98
+ };
99
+ this.setClientStylingURL = () => {
100
+ let cssFile = document.createElement('style');
101
+ setTimeout(() => {
102
+ cssFile.innerHTML = this.clientStylingUrlContent;
103
+ this.stylingContainer.prepend(cssFile);
104
+ }, 1);
105
+ };
72
106
  }
73
107
  // @TODO fix the `any` type :)
74
108
  connectedCallback() {
@@ -2,11 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-a85479d0.js');
5
+ const index = require('./index-00039b40.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  /*
9
- Stencil Client Patch Browser v4.22.3 | MIT Licensed | https://stenciljs.com
9
+ Stencil Client Patch Browser v4.26.0 | 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('helper-accordion.cjs.js', document.baseURI).href));
@@ -21,19 +21,23 @@ function _interopNamespace(e) {
21
21
  }
22
22
 
23
23
  const NAMESPACE = 'helper-accordion';
24
- const BUILD = /* helper-accordion */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: false, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: false, hostListenerTarget: false, hostListenerTargetBody: false, hostListenerTargetDocument: false, 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, 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: true, 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: false };
24
+ const BUILD = /* helper-accordion */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: false, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: false, hostListenerTarget: false, hostListenerTargetBody: false, hostListenerTargetDocument: false, 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: true, 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: false };
25
25
 
26
26
  /*
27
- Stencil Client Platform v4.22.3 | MIT Licensed | https://stenciljs.com
27
+ Stencil Client Platform v4.26.0 | MIT Licensed | https://stenciljs.com
28
28
  */
29
29
  var __defProp = Object.defineProperty;
30
30
  var __export = (target, all) => {
31
31
  for (var name in all)
32
32
  __defProp(target, name, { get: all[name], enumerable: true });
33
33
  };
34
+
35
+ // src/client/client-host-ref.ts
34
36
  var hostRefs = /* @__PURE__ */ new WeakMap();
35
37
  var getHostRef = (ref) => hostRefs.get(ref);
36
- var registerInstance = (lazyInstance, hostRef) => hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
38
+ var registerInstance = (lazyInstance, hostRef) => {
39
+ hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
40
+ };
37
41
  var registerHost = (hostElement, cmpMeta) => {
38
42
  const hostRef = {
39
43
  $flags$: 0,
@@ -46,7 +50,8 @@ var registerHost = (hostElement, cmpMeta) => {
46
50
  hostElement["s-p"] = [];
47
51
  hostElement["s-rc"] = [];
48
52
  }
49
- return hostRefs.set(hostElement, hostRef);
53
+ const ref = hostRefs.set(hostElement, hostRef);
54
+ return ref;
50
55
  };
51
56
  var isMemberInElement = (elm, memberName) => memberName in elm;
52
57
  var consoleError = (e, el) => (0, console.error)(e, el);
@@ -83,16 +88,22 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
83
88
  /* webpackExclude: /\.system\.entry\.js$/ */
84
89
  /* webpackMode: "lazy" */
85
90
  `./${bundleId}.entry.js${""}`
86
- )); }).then((importedModule) => {
87
- {
88
- cmpModules.set(bundleId, importedModule);
91
+ )); }).then(
92
+ (importedModule) => {
93
+ {
94
+ cmpModules.set(bundleId, importedModule);
95
+ }
96
+ return importedModule[exportName];
97
+ },
98
+ (e) => {
99
+ consoleError(e, hostRef.$hostElement$);
89
100
  }
90
- return importedModule[exportName];
91
- }, consoleError);
101
+ );
92
102
  };
93
103
 
94
104
  // src/client/client-style.ts
95
105
  var styles = /* @__PURE__ */ new Map();
106
+ var HYDRATED_STYLE_ID = "sty-id";
96
107
  var HYDRATED_CSS = "{visibility:hidden}.hydrated{visibility:inherit}";
97
108
  var SLOT_FB_CSS = "slot-fb{display:contents}slot-fb[hidden]{display:none}";
98
109
  var win = typeof window !== "undefined" ? window : {};
@@ -150,12 +161,6 @@ var flush = () => {
150
161
  };
151
162
  var nextTick = (cb) => promiseResolve().then(cb);
152
163
  var writeTask = /* @__PURE__ */ queueTask(queueDomWrites, true);
153
-
154
- // src/utils/constants.ts
155
- var EMPTY_OBJ = {};
156
-
157
- // src/utils/helpers.ts
158
- var isDef = (v) => v != null;
159
164
  var isComplexType = (o) => {
160
165
  o = typeof o;
161
166
  return o === "object" || o === "function";
@@ -356,7 +361,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
356
361
  }
357
362
  if (!appliedStyles.has(scopeId2)) {
358
363
  {
359
- styleElm = doc.createElement("style");
364
+ styleElm = document.querySelector(`[${HYDRATED_STYLE_ID}="${scopeId2}"]`) || doc.createElement("style");
360
365
  styleElm.innerHTML = style;
361
366
  const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(doc);
362
367
  if (nonce != null) {
@@ -366,7 +371,10 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
366
371
  if (styleContainerNode.nodeName === "HEAD") {
367
372
  const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
368
373
  const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
369
- styleContainerNode.insertBefore(styleElm, referenceNode2);
374
+ styleContainerNode.insertBefore(
375
+ styleElm,
376
+ (referenceNode2 == null ? void 0 : referenceNode2.parentNode) === styleContainerNode ? referenceNode2 : null
377
+ );
370
378
  } else if ("host" in styleContainerNode) {
371
379
  if (supportsConstructableStylesheets) {
372
380
  const stylesheet = new CSSStyleSheet();
@@ -384,7 +392,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
384
392
  styleContainerNode.append(styleElm);
385
393
  }
386
394
  }
387
- if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD") {
395
+ if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
388
396
  styleContainerNode.insertBefore(styleElm, null);
389
397
  }
390
398
  }
@@ -409,23 +417,25 @@ var attachStyles = (hostRef) => {
409
417
  const scopeId2 = addStyle(
410
418
  elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
411
419
  cmpMeta);
412
- if (flags & 10 /* needsScopedEncapsulation */ && flags & 2 /* scopedCssEncapsulation */) {
420
+ if ((flags & 10 /* needsScopedEncapsulation */ && flags & 2 /* scopedCssEncapsulation */ || flags & 128 /* shadowNeedsScopedCss */)) {
413
421
  elm["s-sc"] = scopeId2;
414
422
  elm.classList.add(scopeId2 + "-h");
415
423
  }
416
424
  endAttachStyles();
417
425
  };
418
426
  var getScopeId = (cmp, mode) => "sc-" + (cmp.$tagName$);
419
- var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
427
+ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRender) => {
420
428
  if (oldValue !== newValue) {
421
429
  let isProp = isMemberInElement(elm, memberName);
422
430
  let ln = memberName.toLowerCase();
423
431
  if (memberName === "class") {
424
432
  const classList = elm.classList;
425
433
  const oldClasses = parseClassList(oldValue);
426
- const newClasses = parseClassList(newValue);
427
- classList.remove(...oldClasses.filter((c) => c && !newClasses.includes(c)));
428
- classList.add(...newClasses.filter((c) => c && !oldClasses.includes(c)));
434
+ let newClasses = parseClassList(newValue);
435
+ {
436
+ classList.remove(...oldClasses.filter((c) => c && !newClasses.includes(c)));
437
+ classList.add(...newClasses.filter((c) => c && !oldClasses.includes(c)));
438
+ }
429
439
  } else if (memberName === "key") ; else if (memberName === "ref") {
430
440
  if (newValue) {
431
441
  newValue(elm);
@@ -463,7 +473,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
463
473
  elm.setAttribute(memberName, n);
464
474
  }
465
475
  }
466
- } else {
476
+ } else if (elm[memberName] !== newValue) {
467
477
  elm[memberName] = newValue;
468
478
  }
469
479
  } catch (e) {
@@ -485,24 +495,44 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
485
495
  }
486
496
  };
487
497
  var parseClassListRegex = /\s/;
488
- var parseClassList = (value) => !value ? [] : value.split(parseClassListRegex);
498
+ var parseClassList = (value) => {
499
+ if (typeof value === "object" && value && "baseVal" in value) {
500
+ value = value.baseVal;
501
+ }
502
+ if (!value || typeof value !== "string") {
503
+ return [];
504
+ }
505
+ return value.split(parseClassListRegex);
506
+ };
489
507
  var CAPTURE_EVENT_SUFFIX = "Capture";
490
508
  var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
491
509
 
492
510
  // src/runtime/vdom/update-element.ts
493
- var updateElement = (oldVnode, newVnode, isSvgMode2) => {
511
+ var updateElement = (oldVnode, newVnode, isSvgMode2, isInitialRender) => {
494
512
  const elm = newVnode.$elm$.nodeType === 11 /* DocumentFragment */ && newVnode.$elm$.host ? newVnode.$elm$.host : newVnode.$elm$;
495
- const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || EMPTY_OBJ;
496
- const newVnodeAttrs = newVnode.$attrs$ || EMPTY_OBJ;
513
+ const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || {};
514
+ const newVnodeAttrs = newVnode.$attrs$ || {};
497
515
  {
498
516
  for (const memberName of sortedAttrNames(Object.keys(oldVnodeAttrs))) {
499
517
  if (!(memberName in newVnodeAttrs)) {
500
- setAccessor(elm, memberName, oldVnodeAttrs[memberName], void 0, isSvgMode2, newVnode.$flags$);
518
+ setAccessor(
519
+ elm,
520
+ memberName,
521
+ oldVnodeAttrs[memberName],
522
+ void 0,
523
+ isSvgMode2,
524
+ newVnode.$flags$);
501
525
  }
502
526
  }
503
527
  }
504
528
  for (const memberName of sortedAttrNames(Object.keys(newVnodeAttrs))) {
505
- setAccessor(elm, memberName, oldVnodeAttrs[memberName], newVnodeAttrs[memberName], isSvgMode2, newVnode.$flags$);
529
+ setAccessor(
530
+ elm,
531
+ memberName,
532
+ oldVnodeAttrs[memberName],
533
+ newVnodeAttrs[memberName],
534
+ isSvgMode2,
535
+ newVnode.$flags$);
506
536
  }
507
537
  };
508
538
  function sortedAttrNames(attrNames) {
@@ -514,13 +544,10 @@ function sortedAttrNames(attrNames) {
514
544
  attrNames
515
545
  );
516
546
  }
517
-
518
- // src/runtime/vdom/vdom-render.ts
519
- var scopeId;
520
547
  var hostTagName;
521
548
  var useNativeShadowDom = false;
522
549
  var isSvgMode = false;
523
- var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
550
+ var createElm = (oldParentVNode, newParentVNode, childIndex) => {
524
551
  const newVNode2 = newParentVNode.$children$[childIndex];
525
552
  let i2 = 0;
526
553
  let elm;
@@ -534,11 +561,6 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
534
561
  {
535
562
  updateElement(null, newVNode2, isSvgMode);
536
563
  }
537
- const rootNode = elm.getRootNode();
538
- const isElementWithinShadowRoot = !rootNode.querySelector("body");
539
- if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
540
- elm.classList.add(elm["s-si"] = scopeId);
541
- }
542
564
  if (newVNode2.$children$) {
543
565
  for (i2 = 0; i2 < newVNode2.$children$.length; ++i2) {
544
566
  childNode = createElm(oldParentVNode, newVNode2, i2);
@@ -668,6 +690,9 @@ var isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
668
690
  if (!isInitialRender) {
669
691
  return leftVNode.$key$ === rightVNode.$key$;
670
692
  }
693
+ if (isInitialRender && !leftVNode.$key$ && rightVNode.$key$) {
694
+ leftVNode.$key$ = rightVNode.$key$;
695
+ }
671
696
  return true;
672
697
  }
673
698
  return false;
@@ -708,8 +733,9 @@ var nullifyVNodeRefs = (vNode) => {
708
733
  }
709
734
  };
710
735
  var insertBefore = (parent, newNode, reference) => {
711
- const inserted = parent == null ? void 0 : parent.insertBefore(newNode, reference);
712
- return inserted;
736
+ {
737
+ return parent == null ? void 0 : parent.insertBefore(newNode, reference);
738
+ }
713
739
  };
714
740
  var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
715
741
  const hostElm = hostRef.$hostElement$;
@@ -734,17 +760,21 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
734
760
  rootVnode.$flags$ |= 4 /* isHost */;
735
761
  hostRef.$vnode$ = rootVnode;
736
762
  rootVnode.$elm$ = oldVNode.$elm$ = hostElm.shadowRoot || hostElm ;
737
- {
738
- scopeId = hostElm["s-sc"];
739
- }
740
- useNativeShadowDom = (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) !== 0;
763
+ useNativeShadowDom = !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && !(cmpMeta.$flags$ & 128 /* shadowNeedsScopedCss */);
741
764
  patch(oldVNode, rootVnode, isInitialLoad);
742
765
  };
743
766
 
744
767
  // src/runtime/update-component.ts
745
768
  var attachToAncestor = (hostRef, ancestorComponent) => {
746
769
  if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent["s-p"]) {
747
- ancestorComponent["s-p"].push(new Promise((r) => hostRef.$onRenderResolve$ = r));
770
+ const index = ancestorComponent["s-p"].push(
771
+ new Promise(
772
+ (r) => hostRef.$onRenderResolve$ = () => {
773
+ ancestorComponent["s-p"].splice(index - 1, 1);
774
+ r();
775
+ }
776
+ )
777
+ );
748
778
  }
749
779
  };
750
780
  var scheduleUpdate = (hostRef, isInitialLoad) => {
@@ -771,7 +801,7 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
771
801
  let maybePromise;
772
802
  if (isInitialLoad) {
773
803
  {
774
- maybePromise = safeCall(instance, "componentWillLoad");
804
+ maybePromise = safeCall(instance, "componentWillLoad", void 0, elm);
775
805
  }
776
806
  }
777
807
  endSchedule();
@@ -840,7 +870,7 @@ var postUpdateComponent = (hostRef) => {
840
870
  const instance = hostRef.$lazyInstance$ ;
841
871
  const ancestorComponent = hostRef.$ancestorComponent$;
842
872
  {
843
- safeCall(instance, "componentDidRender");
873
+ safeCall(instance, "componentDidRender", void 0, elm);
844
874
  }
845
875
  if (!(hostRef.$flags$ & 64 /* hasLoadedComponent */)) {
846
876
  hostRef.$flags$ |= 64 /* hasLoadedComponent */;
@@ -869,17 +899,14 @@ var postUpdateComponent = (hostRef) => {
869
899
  }
870
900
  };
871
901
  var appDidLoad = (who) => {
872
- {
873
- addHydratedFlag(doc.documentElement);
874
- }
875
902
  nextTick(() => emitEvent(win, "appload", { detail: { namespace: NAMESPACE } }));
876
903
  };
877
- var safeCall = (instance, method, arg) => {
904
+ var safeCall = (instance, method, arg, elm) => {
878
905
  if (instance && instance[method]) {
879
906
  try {
880
907
  return instance[method](arg);
881
908
  } catch (e) {
882
- consoleError(e);
909
+ consoleError(e, elm);
883
910
  }
884
911
  }
885
912
  return void 0;
@@ -922,15 +949,68 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
922
949
  const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
923
950
  members.map(([memberName, [memberFlags]]) => {
924
951
  if ((memberFlags & 31 /* Prop */ || (flags & 2 /* proxyState */) && memberFlags & 32 /* State */)) {
952
+ const { get: origGetter, set: origSetter } = Object.getOwnPropertyDescriptor(prototype, memberName) || {};
953
+ if (origGetter) cmpMeta.$members$[memberName][0] |= 2048 /* Getter */;
954
+ if (origSetter) cmpMeta.$members$[memberName][0] |= 4096 /* Setter */;
955
+ if (flags & 1 /* isElementConstructor */ || !origGetter) {
956
+ Object.defineProperty(prototype, memberName, {
957
+ get() {
958
+ {
959
+ if ((cmpMeta.$members$[memberName][0] & 2048 /* Getter */) === 0) {
960
+ return getValue(this, memberName);
961
+ }
962
+ const ref = getHostRef(this);
963
+ const instance = ref ? ref.$lazyInstance$ : prototype;
964
+ if (!instance) return;
965
+ return instance[memberName];
966
+ }
967
+ },
968
+ configurable: true,
969
+ enumerable: true
970
+ });
971
+ }
925
972
  Object.defineProperty(prototype, memberName, {
926
- get() {
927
- return getValue(this, memberName);
928
- },
929
973
  set(newValue) {
930
- setValue(this, memberName, newValue, cmpMeta);
931
- },
932
- configurable: true,
933
- enumerable: true
974
+ const ref = getHostRef(this);
975
+ if (origSetter) {
976
+ const currentValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
977
+ if (typeof currentValue === "undefined" && ref.$instanceValues$.get(memberName)) {
978
+ newValue = ref.$instanceValues$.get(memberName);
979
+ } else if (!ref.$instanceValues$.get(memberName) && currentValue) {
980
+ ref.$instanceValues$.set(memberName, currentValue);
981
+ }
982
+ origSetter.apply(this, [parsePropertyValue(newValue, memberFlags)]);
983
+ newValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
984
+ setValue(this, memberName, newValue, cmpMeta);
985
+ return;
986
+ }
987
+ {
988
+ if ((flags & 1 /* isElementConstructor */) === 0 || (cmpMeta.$members$[memberName][0] & 4096 /* Setter */) === 0) {
989
+ setValue(this, memberName, newValue, cmpMeta);
990
+ if (flags & 1 /* isElementConstructor */ && !ref.$lazyInstance$) {
991
+ ref.$onReadyPromise$.then(() => {
992
+ if (cmpMeta.$members$[memberName][0] & 4096 /* Setter */ && ref.$lazyInstance$[memberName] !== ref.$instanceValues$.get(memberName)) {
993
+ ref.$lazyInstance$[memberName] = newValue;
994
+ }
995
+ });
996
+ }
997
+ return;
998
+ }
999
+ const setterSetVal = () => {
1000
+ const currentValue = ref.$lazyInstance$[memberName];
1001
+ if (!ref.$instanceValues$.get(memberName) && currentValue) {
1002
+ ref.$instanceValues$.set(memberName, currentValue);
1003
+ }
1004
+ ref.$lazyInstance$[memberName] = parsePropertyValue(newValue, memberFlags);
1005
+ setValue(this, memberName, ref.$lazyInstance$[memberName], cmpMeta);
1006
+ };
1007
+ if (ref.$lazyInstance$) {
1008
+ setterSetVal();
1009
+ } else {
1010
+ ref.$onReadyPromise$.then(() => setterSetVal());
1011
+ }
1012
+ }
1013
+ }
934
1014
  });
935
1015
  }
936
1016
  });
@@ -940,7 +1020,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
940
1020
  plt.jmp(() => {
941
1021
  var _a2;
942
1022
  const propName = attrNameToPropName.get(attrName);
943
- if (this.hasOwnProperty(propName)) {
1023
+ if (this.hasOwnProperty(propName) && BUILD.lazyLoad) {
944
1024
  newValue = this[propName];
945
1025
  delete this[propName];
946
1026
  } else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && // cast type to number to avoid TS compiler issues
@@ -960,7 +1040,11 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
960
1040
  }
961
1041
  return;
962
1042
  }
963
- this[propName] = newValue === null && typeof this[propName] === "boolean" ? false : newValue;
1043
+ const propDesc = Object.getOwnPropertyDescriptor(prototype, propName);
1044
+ newValue = newValue === null && typeof this[propName] === "boolean" ? false : newValue;
1045
+ if (newValue !== this[propName] && (!propDesc.get || !!propDesc.set)) {
1046
+ this[propName] = newValue;
1047
+ }
964
1048
  });
965
1049
  };
966
1050
  Cstr.observedAttributes = Array.from(
@@ -989,7 +1073,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
989
1073
  hostRef.$flags$ |= 32 /* hasInitializedComponent */;
990
1074
  const bundleId = cmpMeta.$lazyBundleId$;
991
1075
  if (bundleId) {
992
- const CstrImport = loadModule(cmpMeta);
1076
+ const CstrImport = loadModule(cmpMeta, hostRef);
993
1077
  if (CstrImport && "then" in CstrImport) {
994
1078
  const endLoad = uniqueTime();
995
1079
  Cstr = await CstrImport;
@@ -1011,13 +1095,13 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1011
1095
  try {
1012
1096
  new Cstr(hostRef);
1013
1097
  } catch (e) {
1014
- consoleError(e);
1098
+ consoleError(e, elm);
1015
1099
  }
1016
1100
  {
1017
1101
  hostRef.$flags$ &= ~8 /* isConstructingInstance */;
1018
1102
  }
1019
1103
  endNewInstance();
1020
- fireConnectedCallback(hostRef.$lazyInstance$);
1104
+ fireConnectedCallback(hostRef.$lazyInstance$, elm);
1021
1105
  } else {
1022
1106
  Cstr = elm.constructor;
1023
1107
  const cmpTag = elm.localName;
@@ -1044,9 +1128,9 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1044
1128
  schedule();
1045
1129
  }
1046
1130
  };
1047
- var fireConnectedCallback = (instance) => {
1131
+ var fireConnectedCallback = (instance, elm) => {
1048
1132
  {
1049
- safeCall(instance, "connectedCallback");
1133
+ safeCall(instance, "connectedCallback", void 0, elm);
1050
1134
  }
1051
1135
  };
1052
1136
 
@@ -1081,15 +1165,15 @@ var connectedCallback = (elm) => {
1081
1165
  }
1082
1166
  } else {
1083
1167
  if (hostRef == null ? void 0 : hostRef.$lazyInstance$) {
1084
- fireConnectedCallback(hostRef.$lazyInstance$);
1168
+ fireConnectedCallback(hostRef.$lazyInstance$, elm);
1085
1169
  } else if (hostRef == null ? void 0 : hostRef.$onReadyPromise$) {
1086
- hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$));
1170
+ hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$, elm));
1087
1171
  }
1088
1172
  }
1089
1173
  endConnected();
1090
1174
  }
1091
1175
  };
1092
- var disconnectInstance = (instance) => {
1176
+ var disconnectInstance = (instance, elm) => {
1093
1177
  };
1094
1178
  var disconnectedCallback = async (elm) => {
1095
1179
  if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
@@ -1098,6 +1182,12 @@ var disconnectedCallback = async (elm) => {
1098
1182
  hostRef.$onReadyPromise$.then(() => disconnectInstance());
1099
1183
  }
1100
1184
  }
1185
+ if (rootAppliedStyles.has(elm)) {
1186
+ rootAppliedStyles.delete(elm);
1187
+ }
1188
+ if (elm.shadowRoot && rootAppliedStyles.has(elm.shadowRoot)) {
1189
+ rootAppliedStyles.delete(elm.shadowRoot);
1190
+ }
1101
1191
  };
1102
1192
 
1103
1193
  // src/runtime/bootstrap-lazy.ts
@@ -1174,6 +1264,17 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1174
1264
  }
1175
1265
  disconnectedCallback() {
1176
1266
  plt.jmp(() => disconnectedCallback(this));
1267
+ plt.raf(() => {
1268
+ var _a3;
1269
+ const hostRef = getHostRef(this);
1270
+ const i2 = deferredConnectedCallbacks.findIndex((host) => host === this);
1271
+ if (i2 > -1) {
1272
+ deferredConnectedCallbacks.splice(i2, 1);
1273
+ }
1274
+ if (((_a3 = hostRef == null ? void 0 : hostRef.$vnode$) == null ? void 0 : _a3.$elm$) instanceof Node && !hostRef.$vnode$.$elm$.isConnected) {
1275
+ delete hostRef.$vnode$.$elm$;
1276
+ }
1277
+ });
1177
1278
  }
1178
1279
  componentOnReady() {
1179
1280
  return getHostRef(this).$onReadyPromise$;
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-a85479d0.js');
5
+ const index = require('./index-00039b40.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  const defineCustomElements = async (win, options) => {
@@ -4,7 +4,7 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.22.3",
7
+ "version": "4.26.0",
8
8
  "typescriptVersion": "5.5.4"
9
9
  },
10
10
  "collections": [],