@everymatrix/helper-accordion 1.56.0 → 1.56.2

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 (25) hide show
  1. package/dist/cjs/helper-accordion.cjs.entry.js +15 -49
  2. package/dist/cjs/helper-accordion.cjs.js +2 -2
  3. package/dist/cjs/{index-00039b40.js → index-bf959871.js} +70 -205
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/collection/collection-manifest.json +2 -2
  6. package/dist/collection/components/helper-accordion/helper-accordion.js +14 -74
  7. package/dist/esm/helper-accordion.entry.js +15 -49
  8. package/dist/esm/helper-accordion.js +3 -3
  9. package/dist/esm/{index-e014805e.js → index-08b29256.js} +70 -205
  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-5ef911b6.entry.js +1 -0
  13. package/dist/helper-accordion/p-ed0a1477.js +2 -0
  14. package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.d.ts +2 -0
  15. package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.dev.d.ts +2 -0
  16. package/dist/types/stencil-public-runtime.d.ts +0 -6
  17. package/package.json +1 -1
  18. package/dist/helper-accordion/p-b7fe6513.entry.js +0 -1
  19. package/dist/helper-accordion/p-d73ec3ca.js +0 -2
  20. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.d.ts +0 -2
  21. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.dev.d.ts +0 -2
  22. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/index.d.ts +0 -0
  23. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
  24. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-accordion/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
  25. /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/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-00039b40.js');
5
+ const index = require('./index-bf959871.js');
6
6
 
7
7
  const DEFAULT_LANGUAGE = 'en';
8
8
  const SUPPORTED_LANGUAGES = ['ro', 'en', 'hr'];
@@ -42,67 +42,33 @@ const HelperAccordion = class {
42
42
  constructor(hostRef) {
43
43
  index.registerInstance(this, hostRef);
44
44
  this.accordionEvent = index.createEvent(this, "helperAccordionAction", 7);
45
- /**
46
- * Flag for ticket history
47
- */
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
+ };
48
57
  this.ticketHistoryFlag = false;
49
- /**
50
- * Title (top header)
51
- */
52
58
  this.headerTitle = '';
53
- /**
54
- * SubTitle (top header)
55
- */
56
59
  this.headerSubtitle = '';
57
- /**
58
- * Description
59
- */
60
60
  this.description = '';
61
- /**
62
- * Enables footer content
63
- */
64
61
  this.footer = false;
65
- /**
66
- * Enables footer button for tab deletion
67
- */
68
62
  this.deleteTab = false;
69
- /**
70
- * Activates postMessages as events for actions from the widget
71
- */
72
63
  this.postMessage = false;
73
- /**
74
- * Name of the event emitter by the action button
75
- */
76
64
  this.eventName = 'helperAccordionAction';
77
- /**
78
- * Collapsed
79
- */
80
65
  this.collapsed = true;
81
- /**
82
- * Language
83
- */
84
66
  this.language = 'en';
85
- /**
86
- * Client custom styling via string
87
- */
88
67
  this.clientStyling = '';
89
- /**
90
- * Client custom styling via url content
91
- */
92
68
  this.clientStylingUrlContent = '';
69
+ this.translationUrl = undefined;
70
+ this.showContent = undefined;
93
71
  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
- };
106
72
  }
107
73
  // @TODO fix the `any` type :)
108
74
  connectedCallback() {
@@ -2,11 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-00039b40.js');
5
+ const index = require('./index-bf959871.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  /*
9
- Stencil Client Patch Browser v4.26.0 | MIT Licensed | https://stenciljs.com
9
+ Stencil Client Patch Browser v4.19.2 | 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,23 +21,19 @@ 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, 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 };
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 };
25
25
 
26
26
  /*
27
- Stencil Client Platform v4.26.0 | MIT Licensed | https://stenciljs.com
27
+ Stencil Client Platform v4.19.2 | 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
36
34
  var hostRefs = /* @__PURE__ */ new WeakMap();
37
35
  var getHostRef = (ref) => hostRefs.get(ref);
38
- var registerInstance = (lazyInstance, hostRef) => {
39
- hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
40
- };
36
+ var registerInstance = (lazyInstance, hostRef) => hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
41
37
  var registerHost = (hostElement, cmpMeta) => {
42
38
  const hostRef = {
43
39
  $flags$: 0,
@@ -50,8 +46,7 @@ var registerHost = (hostElement, cmpMeta) => {
50
46
  hostElement["s-p"] = [];
51
47
  hostElement["s-rc"] = [];
52
48
  }
53
- const ref = hostRefs.set(hostElement, hostRef);
54
- return ref;
49
+ return hostRefs.set(hostElement, hostRef);
55
50
  };
56
51
  var isMemberInElement = (elm, memberName) => memberName in elm;
57
52
  var consoleError = (e, el) => (0, console.error)(e, el);
@@ -88,22 +83,16 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
88
83
  /* webpackExclude: /\.system\.entry\.js$/ */
89
84
  /* webpackMode: "lazy" */
90
85
  `./${bundleId}.entry.js${""}`
91
- )); }).then(
92
- (importedModule) => {
93
- {
94
- cmpModules.set(bundleId, importedModule);
95
- }
96
- return importedModule[exportName];
97
- },
98
- (e) => {
99
- consoleError(e, hostRef.$hostElement$);
86
+ )); }).then((importedModule) => {
87
+ {
88
+ cmpModules.set(bundleId, importedModule);
100
89
  }
101
- );
90
+ return importedModule[exportName];
91
+ }, consoleError);
102
92
  };
103
93
 
104
94
  // src/client/client-style.ts
105
95
  var styles = /* @__PURE__ */ new Map();
106
- var HYDRATED_STYLE_ID = "sty-id";
107
96
  var HYDRATED_CSS = "{visibility:hidden}.hydrated{visibility:inherit}";
108
97
  var SLOT_FB_CSS = "slot-fb{display:contents}slot-fb[hidden]{display:none}";
109
98
  var win = typeof window !== "undefined" ? window : {};
@@ -161,6 +150,12 @@ var flush = () => {
161
150
  };
162
151
  var nextTick = (cb) => promiseResolve().then(cb);
163
152
  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;
164
159
  var isComplexType = (o) => {
165
160
  o = typeof o;
166
161
  return o === "object" || o === "function";
@@ -361,40 +356,13 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
361
356
  }
362
357
  if (!appliedStyles.has(scopeId2)) {
363
358
  {
364
- styleElm = document.querySelector(`[${HYDRATED_STYLE_ID}="${scopeId2}"]`) || doc.createElement("style");
359
+ styleElm = doc.createElement("style");
365
360
  styleElm.innerHTML = style;
366
361
  const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(doc);
367
362
  if (nonce != null) {
368
363
  styleElm.setAttribute("nonce", nonce);
369
364
  }
370
- if (!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */)) {
371
- if (styleContainerNode.nodeName === "HEAD") {
372
- const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
373
- const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
374
- styleContainerNode.insertBefore(
375
- styleElm,
376
- (referenceNode2 == null ? void 0 : referenceNode2.parentNode) === styleContainerNode ? referenceNode2 : null
377
- );
378
- } else if ("host" in styleContainerNode) {
379
- if (supportsConstructableStylesheets) {
380
- const stylesheet = new CSSStyleSheet();
381
- stylesheet.replaceSync(style);
382
- styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
383
- } else {
384
- const existingStyleContainer = styleContainerNode.querySelector("style");
385
- if (existingStyleContainer) {
386
- existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
387
- } else {
388
- styleContainerNode.prepend(styleElm);
389
- }
390
- }
391
- } else {
392
- styleContainerNode.append(styleElm);
393
- }
394
- }
395
- if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
396
- styleContainerNode.insertBefore(styleElm, null);
397
- }
365
+ styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
398
366
  }
399
367
  if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
400
368
  styleElm.innerHTML += SLOT_FB_CSS;
@@ -417,25 +385,23 @@ var attachStyles = (hostRef) => {
417
385
  const scopeId2 = addStyle(
418
386
  elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
419
387
  cmpMeta);
420
- if ((flags & 10 /* needsScopedEncapsulation */ && flags & 2 /* scopedCssEncapsulation */ || flags & 128 /* shadowNeedsScopedCss */)) {
388
+ if (flags & 10 /* needsScopedEncapsulation */) {
421
389
  elm["s-sc"] = scopeId2;
422
390
  elm.classList.add(scopeId2 + "-h");
423
391
  }
424
392
  endAttachStyles();
425
393
  };
426
394
  var getScopeId = (cmp, mode) => "sc-" + (cmp.$tagName$);
427
- var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRender) => {
395
+ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
428
396
  if (oldValue !== newValue) {
429
397
  let isProp = isMemberInElement(elm, memberName);
430
398
  let ln = memberName.toLowerCase();
431
399
  if (memberName === "class") {
432
400
  const classList = elm.classList;
433
401
  const oldClasses = parseClassList(oldValue);
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
- }
402
+ const newClasses = parseClassList(newValue);
403
+ classList.remove(...oldClasses.filter((c) => c && !newClasses.includes(c)));
404
+ classList.add(...newClasses.filter((c) => c && !oldClasses.includes(c)));
439
405
  } else if (memberName === "key") ; else if (memberName === "ref") {
440
406
  if (newValue) {
441
407
  newValue(elm);
@@ -467,13 +433,9 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRen
467
433
  if (memberName === "list") {
468
434
  isProp = false;
469
435
  } else if (oldValue == null || elm[memberName] != n) {
470
- if (typeof elm.__lookupSetter__(memberName) === "function") {
471
- elm[memberName] = n;
472
- } else {
473
- elm.setAttribute(memberName, n);
474
- }
436
+ elm[memberName] = n;
475
437
  }
476
- } else if (elm[memberName] !== newValue) {
438
+ } else {
477
439
  elm[memberName] = newValue;
478
440
  }
479
441
  } catch (e) {
@@ -495,44 +457,24 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRen
495
457
  }
496
458
  };
497
459
  var parseClassListRegex = /\s/;
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
- };
460
+ var parseClassList = (value) => !value ? [] : value.split(parseClassListRegex);
507
461
  var CAPTURE_EVENT_SUFFIX = "Capture";
508
462
  var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
509
463
 
510
464
  // src/runtime/vdom/update-element.ts
511
- var updateElement = (oldVnode, newVnode, isSvgMode2, isInitialRender) => {
465
+ var updateElement = (oldVnode, newVnode, isSvgMode2) => {
512
466
  const elm = newVnode.$elm$.nodeType === 11 /* DocumentFragment */ && newVnode.$elm$.host ? newVnode.$elm$.host : newVnode.$elm$;
513
- const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || {};
514
- const newVnodeAttrs = newVnode.$attrs$ || {};
467
+ const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || EMPTY_OBJ;
468
+ const newVnodeAttrs = newVnode.$attrs$ || EMPTY_OBJ;
515
469
  {
516
470
  for (const memberName of sortedAttrNames(Object.keys(oldVnodeAttrs))) {
517
471
  if (!(memberName in newVnodeAttrs)) {
518
- setAccessor(
519
- elm,
520
- memberName,
521
- oldVnodeAttrs[memberName],
522
- void 0,
523
- isSvgMode2,
524
- newVnode.$flags$);
472
+ setAccessor(elm, memberName, oldVnodeAttrs[memberName], void 0, isSvgMode2, newVnode.$flags$);
525
473
  }
526
474
  }
527
475
  }
528
476
  for (const memberName of sortedAttrNames(Object.keys(newVnodeAttrs))) {
529
- setAccessor(
530
- elm,
531
- memberName,
532
- oldVnodeAttrs[memberName],
533
- newVnodeAttrs[memberName],
534
- isSvgMode2,
535
- newVnode.$flags$);
477
+ setAccessor(elm, memberName, oldVnodeAttrs[memberName], newVnodeAttrs[memberName], isSvgMode2, newVnode.$flags$);
536
478
  }
537
479
  };
538
480
  function sortedAttrNames(attrNames) {
@@ -544,10 +486,13 @@ function sortedAttrNames(attrNames) {
544
486
  attrNames
545
487
  );
546
488
  }
489
+
490
+ // src/runtime/vdom/vdom-render.ts
491
+ var scopeId;
547
492
  var hostTagName;
548
493
  var useNativeShadowDom = false;
549
494
  var isSvgMode = false;
550
- var createElm = (oldParentVNode, newParentVNode, childIndex) => {
495
+ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
551
496
  const newVNode2 = newParentVNode.$children$[childIndex];
552
497
  let i2 = 0;
553
498
  let elm;
@@ -561,6 +506,9 @@ var createElm = (oldParentVNode, newParentVNode, childIndex) => {
561
506
  {
562
507
  updateElement(null, newVNode2, isSvgMode);
563
508
  }
509
+ if (isDef(scopeId) && elm["s-si"] !== scopeId) {
510
+ elm.classList.add(elm["s-si"] = scopeId);
511
+ }
564
512
  if (newVNode2.$children$) {
565
513
  for (i2 = 0; i2 < newVNode2.$children$.length; ++i2) {
566
514
  childNode = createElm(oldParentVNode, newVNode2, i2);
@@ -690,9 +638,6 @@ var isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
690
638
  if (!isInitialRender) {
691
639
  return leftVNode.$key$ === rightVNode.$key$;
692
640
  }
693
- if (isInitialRender && !leftVNode.$key$ && rightVNode.$key$) {
694
- leftVNode.$key$ = rightVNode.$key$;
695
- }
696
641
  return true;
697
642
  }
698
643
  return false;
@@ -716,10 +661,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
716
661
  elm.textContent = "";
717
662
  }
718
663
  addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
719
- } else if (
720
- // don't do this on initial render as it can cause non-hydrated content to be removed
721
- !isInitialRender && BUILD.updatable && oldChildren !== null
722
- ) {
664
+ } else if (oldChildren !== null) {
723
665
  removeVnodes(oldChildren, 0, oldChildren.length - 1);
724
666
  }
725
667
  } else if (oldVNode.$text$ !== text) {
@@ -733,9 +675,8 @@ var nullifyVNodeRefs = (vNode) => {
733
675
  }
734
676
  };
735
677
  var insertBefore = (parent, newNode, reference) => {
736
- {
737
- return parent == null ? void 0 : parent.insertBefore(newNode, reference);
738
- }
678
+ const inserted = parent == null ? void 0 : parent.insertBefore(newNode, reference);
679
+ return inserted;
739
680
  };
740
681
  var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
741
682
  const hostElm = hostRef.$hostElement$;
@@ -760,21 +701,17 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
760
701
  rootVnode.$flags$ |= 4 /* isHost */;
761
702
  hostRef.$vnode$ = rootVnode;
762
703
  rootVnode.$elm$ = oldVNode.$elm$ = hostElm.shadowRoot || hostElm ;
763
- useNativeShadowDom = !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && !(cmpMeta.$flags$ & 128 /* shadowNeedsScopedCss */);
704
+ {
705
+ scopeId = hostElm["s-sc"];
706
+ }
707
+ useNativeShadowDom = (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) !== 0;
764
708
  patch(oldVNode, rootVnode, isInitialLoad);
765
709
  };
766
710
 
767
711
  // src/runtime/update-component.ts
768
712
  var attachToAncestor = (hostRef, ancestorComponent) => {
769
713
  if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent["s-p"]) {
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
- );
714
+ ancestorComponent["s-p"].push(new Promise((r) => hostRef.$onRenderResolve$ = r));
778
715
  }
779
716
  };
780
717
  var scheduleUpdate = (hostRef, isInitialLoad) => {
@@ -801,7 +738,7 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
801
738
  let maybePromise;
802
739
  if (isInitialLoad) {
803
740
  {
804
- maybePromise = safeCall(instance, "componentWillLoad", void 0, elm);
741
+ maybePromise = safeCall(instance, "componentWillLoad");
805
742
  }
806
743
  }
807
744
  endSchedule();
@@ -870,7 +807,7 @@ var postUpdateComponent = (hostRef) => {
870
807
  const instance = hostRef.$lazyInstance$ ;
871
808
  const ancestorComponent = hostRef.$ancestorComponent$;
872
809
  {
873
- safeCall(instance, "componentDidRender", void 0, elm);
810
+ safeCall(instance, "componentDidRender");
874
811
  }
875
812
  if (!(hostRef.$flags$ & 64 /* hasLoadedComponent */)) {
876
813
  hostRef.$flags$ |= 64 /* hasLoadedComponent */;
@@ -899,14 +836,17 @@ var postUpdateComponent = (hostRef) => {
899
836
  }
900
837
  };
901
838
  var appDidLoad = (who) => {
839
+ {
840
+ addHydratedFlag(doc.documentElement);
841
+ }
902
842
  nextTick(() => emitEvent(win, "appload", { detail: { namespace: NAMESPACE } }));
903
843
  };
904
- var safeCall = (instance, method, arg, elm) => {
844
+ var safeCall = (instance, method, arg) => {
905
845
  if (instance && instance[method]) {
906
846
  try {
907
847
  return instance[method](arg);
908
848
  } catch (e) {
909
- consoleError(e, elm);
849
+ consoleError(e);
910
850
  }
911
851
  }
912
852
  return void 0;
@@ -949,68 +889,15 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
949
889
  const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
950
890
  members.map(([memberName, [memberFlags]]) => {
951
891
  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
- }
972
892
  Object.defineProperty(prototype, memberName, {
893
+ get() {
894
+ return getValue(this, memberName);
895
+ },
973
896
  set(newValue) {
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
- }
897
+ setValue(this, memberName, newValue, cmpMeta);
898
+ },
899
+ configurable: true,
900
+ enumerable: true
1014
901
  });
1015
902
  }
1016
903
  });
@@ -1020,11 +907,10 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
1020
907
  plt.jmp(() => {
1021
908
  var _a2;
1022
909
  const propName = attrNameToPropName.get(attrName);
1023
- if (this.hasOwnProperty(propName) && BUILD.lazyLoad) {
910
+ if (this.hasOwnProperty(propName)) {
1024
911
  newValue = this[propName];
1025
912
  delete this[propName];
1026
- } else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && // cast type to number to avoid TS compiler issues
1027
- this[propName] == newValue) {
913
+ } else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && this[propName] == newValue) {
1028
914
  return;
1029
915
  } else if (propName == null) {
1030
916
  const hostRef = getHostRef(this);
@@ -1040,11 +926,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
1040
926
  }
1041
927
  return;
1042
928
  }
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
- }
929
+ this[propName] = newValue === null && typeof this[propName] === "boolean" ? false : newValue;
1048
930
  });
1049
931
  };
1050
932
  Cstr.observedAttributes = Array.from(
@@ -1073,7 +955,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1073
955
  hostRef.$flags$ |= 32 /* hasInitializedComponent */;
1074
956
  const bundleId = cmpMeta.$lazyBundleId$;
1075
957
  if (bundleId) {
1076
- const CstrImport = loadModule(cmpMeta, hostRef);
958
+ const CstrImport = loadModule(cmpMeta);
1077
959
  if (CstrImport && "then" in CstrImport) {
1078
960
  const endLoad = uniqueTime();
1079
961
  Cstr = await CstrImport;
@@ -1095,13 +977,13 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1095
977
  try {
1096
978
  new Cstr(hostRef);
1097
979
  } catch (e) {
1098
- consoleError(e, elm);
980
+ consoleError(e);
1099
981
  }
1100
982
  {
1101
983
  hostRef.$flags$ &= ~8 /* isConstructingInstance */;
1102
984
  }
1103
985
  endNewInstance();
1104
- fireConnectedCallback(hostRef.$lazyInstance$, elm);
986
+ fireConnectedCallback(hostRef.$lazyInstance$);
1105
987
  } else {
1106
988
  Cstr = elm.constructor;
1107
989
  const cmpTag = elm.localName;
@@ -1128,9 +1010,9 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1128
1010
  schedule();
1129
1011
  }
1130
1012
  };
1131
- var fireConnectedCallback = (instance, elm) => {
1013
+ var fireConnectedCallback = (instance) => {
1132
1014
  {
1133
- safeCall(instance, "connectedCallback", void 0, elm);
1015
+ safeCall(instance, "connectedCallback");
1134
1016
  }
1135
1017
  };
1136
1018
 
@@ -1165,15 +1047,15 @@ var connectedCallback = (elm) => {
1165
1047
  }
1166
1048
  } else {
1167
1049
  if (hostRef == null ? void 0 : hostRef.$lazyInstance$) {
1168
- fireConnectedCallback(hostRef.$lazyInstance$, elm);
1050
+ fireConnectedCallback(hostRef.$lazyInstance$);
1169
1051
  } else if (hostRef == null ? void 0 : hostRef.$onReadyPromise$) {
1170
- hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$, elm));
1052
+ hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$));
1171
1053
  }
1172
1054
  }
1173
1055
  endConnected();
1174
1056
  }
1175
1057
  };
1176
- var disconnectInstance = (instance, elm) => {
1058
+ var disconnectInstance = (instance) => {
1177
1059
  };
1178
1060
  var disconnectedCallback = async (elm) => {
1179
1061
  if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
@@ -1182,12 +1064,6 @@ var disconnectedCallback = async (elm) => {
1182
1064
  hostRef.$onReadyPromise$.then(() => disconnectInstance());
1183
1065
  }
1184
1066
  }
1185
- if (rootAppliedStyles.has(elm)) {
1186
- rootAppliedStyles.delete(elm);
1187
- }
1188
- if (elm.shadowRoot && rootAppliedStyles.has(elm.shadowRoot)) {
1189
- rootAppliedStyles.delete(elm.shadowRoot);
1190
- }
1191
1067
  };
1192
1068
 
1193
1069
  // src/runtime/bootstrap-lazy.ts
@@ -1264,17 +1140,6 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1264
1140
  }
1265
1141
  disconnectedCallback() {
1266
1142
  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
- });
1278
1143
  }
1279
1144
  componentOnReady() {
1280
1145
  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-00039b40.js');
5
+ const index = require('./index-bf959871.js');
6
6
  const appGlobals = require('./app-globals-3a1e7e63.js');
7
7
 
8
8
  const defineCustomElements = async (win, options) => {
@@ -4,8 +4,8 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.26.0",
8
- "typescriptVersion": "5.5.4"
7
+ "version": "4.19.2",
8
+ "typescriptVersion": "5.4.5"
9
9
  },
10
10
  "collections": [],
11
11
  "bundles": []