proto-daisy-ui 0.1.154 → 0.1.155

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 (39) hide show
  1. package/dist/cjs/{index-PIKwatSC.js → index-PGqCEOha.js} +108 -25
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/proto-daisy-ui.cjs.entry.js +3 -1954
  4. package/dist/cjs/proto-daisy-ui.cjs.js +2 -2
  5. package/dist/cjs/proto-dial.cjs.entry.js +1 -1
  6. package/dist/cjs/proto-hero.cjs.entry.js +2 -2
  7. package/dist/cjs/proto-home.cjs.entry.js +2 -2
  8. package/dist/cjs/proto-list.cjs.entry.js +2 -2
  9. package/dist/cjs/proto-shell.cjs.entry.js +2 -2
  10. package/dist/cjs/proto-stats.cjs.entry.js +2 -2
  11. package/dist/cjs/{store-DXXn_9b4.js → store-DL4b32H-.js} +1 -1
  12. package/dist/collection/collection-manifest.json +1 -1
  13. package/dist/components/proto-daisy-ui.js +1 -1
  14. package/dist/esm/{index-C73L80kg.js → index-BKVTe_Qe.js} +108 -25
  15. package/dist/esm/loader.js +2 -2
  16. package/dist/esm/proto-daisy-ui.entry.js +3 -1954
  17. package/dist/esm/proto-daisy-ui.js +3 -3
  18. package/dist/esm/proto-dial.entry.js +1 -1
  19. package/dist/esm/proto-hero.entry.js +2 -2
  20. package/dist/esm/proto-home.entry.js +2 -2
  21. package/dist/esm/proto-list.entry.js +2 -2
  22. package/dist/esm/proto-shell.entry.js +2 -2
  23. package/dist/esm/proto-stats.entry.js +2 -2
  24. package/dist/esm/{store-DopF3Awm.js → store-B5--PdQC.js} +1 -1
  25. package/dist/proto-daisy-ui/{p-c50ba27d.entry.js → p-1a01defc.entry.js} +1 -1
  26. package/dist/proto-daisy-ui/{p-ddb82601.entry.js → p-7d38abd1.entry.js} +1 -1
  27. package/dist/proto-daisy-ui/{p-c03b6d38.entry.js → p-7fd1c48b.entry.js} +1 -1
  28. package/dist/proto-daisy-ui/p-BKVTe_Qe.js +2 -0
  29. package/dist/proto-daisy-ui/{p-DWJjUH41.js → p-DHarrUQJ.js} +1 -1
  30. package/dist/proto-daisy-ui/p-b0dfc1f8.entry.js +1 -0
  31. package/dist/proto-daisy-ui/{p-54a186bc.entry.js → p-e51b321a.entry.js} +1 -1
  32. package/dist/proto-daisy-ui/{p-249968c2.entry.js → p-eb924e2f.entry.js} +1 -1
  33. package/dist/proto-daisy-ui/p-fcef82ca.entry.js +1 -0
  34. package/dist/proto-daisy-ui/proto-daisy-ui.esm.js +1 -1
  35. package/dist/types/stencil-public-runtime.d.ts +29 -0
  36. package/package.json +2 -2
  37. package/dist/proto-daisy-ui/p-29d08089.entry.js +0 -1
  38. package/dist/proto-daisy-ui/p-2f35d7bb.entry.js +0 -1
  39. package/dist/proto-daisy-ui/p-C73L80kg.js +0 -2
@@ -5,7 +5,7 @@ const BUILD = /* proto-daisy-ui */ { allRenderFn: true, appendChildSlotFix: fals
5
5
  const Env = /* proto-daisy-ui */ {};
6
6
 
7
7
  /*
8
- Stencil Client Platform v4.40.0 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Platform v4.41.0 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
  var __create = Object.create;
11
11
  var __defProp = Object.defineProperty;
@@ -480,6 +480,9 @@ var supportsListenerOptions = /* @__PURE__ */ (() => {
480
480
  var promiseResolve = (v) => Promise.resolve(v);
481
481
  var supportsConstructableStylesheets = BUILD.constructableCSS ? /* @__PURE__ */ (() => {
482
482
  try {
483
+ if (!win.document.adoptedStyleSheets) {
484
+ return false;
485
+ }
483
486
  new CSSStyleSheet();
484
487
  return typeof new CSSStyleSheet().replaceSync === "function";
485
488
  } catch (e) {
@@ -2272,7 +2275,8 @@ var patchPseudoShadowDom = (hostElementPrototype) => {
2272
2275
  patchSlotRemoveChild(hostElementPrototype);
2273
2276
  };
2274
2277
  var patchCloneNode = (HostElementPrototype) => {
2275
- const orgCloneNode = HostElementPrototype.cloneNode;
2278
+ if (HostElementPrototype.__cloneNode) return;
2279
+ const orgCloneNode = HostElementPrototype.__cloneNode = HostElementPrototype.cloneNode;
2276
2280
  HostElementPrototype.cloneNode = function(deep) {
2277
2281
  const srcNode = this;
2278
2282
  const isShadowDom = BUILD.shadowDom ? srcNode.shadowRoot && supportsShadow : false;
@@ -2317,6 +2321,7 @@ var patchCloneNode = (HostElementPrototype) => {
2317
2321
  };
2318
2322
  };
2319
2323
  var patchSlotAppendChild = (HostElementPrototype) => {
2324
+ if (HostElementPrototype.__appendChild) return;
2320
2325
  HostElementPrototype.__appendChild = HostElementPrototype.appendChild;
2321
2326
  HostElementPrototype.appendChild = function(newChild) {
2322
2327
  const { slotName, slotNode } = findSlotFromSlottedNode(newChild, this);
@@ -2334,6 +2339,7 @@ var patchSlotAppendChild = (HostElementPrototype) => {
2334
2339
  };
2335
2340
  };
2336
2341
  var patchSlotRemoveChild = (ElementPrototype) => {
2342
+ if (ElementPrototype.__removeChild) return;
2337
2343
  ElementPrototype.__removeChild = ElementPrototype.removeChild;
2338
2344
  ElementPrototype.removeChild = function(toRemove) {
2339
2345
  if (toRemove && typeof toRemove["s-sn"] !== "undefined") {
@@ -2349,6 +2355,7 @@ var patchSlotRemoveChild = (ElementPrototype) => {
2349
2355
  };
2350
2356
  };
2351
2357
  var patchSlotPrepend = (HostElementPrototype) => {
2358
+ if (HostElementPrototype.__prepend) return;
2352
2359
  HostElementPrototype.__prepend = HostElementPrototype.prepend;
2353
2360
  HostElementPrototype.prepend = function(...newChildren) {
2354
2361
  newChildren.forEach((newChild) => {
@@ -2375,6 +2382,7 @@ var patchSlotPrepend = (HostElementPrototype) => {
2375
2382
  };
2376
2383
  };
2377
2384
  var patchSlotAppend = (HostElementPrototype) => {
2385
+ if (HostElementPrototype.__append) return;
2378
2386
  HostElementPrototype.__append = HostElementPrototype.append;
2379
2387
  HostElementPrototype.append = function(...newChildren) {
2380
2388
  newChildren.forEach((newChild) => {
@@ -2386,6 +2394,7 @@ var patchSlotAppend = (HostElementPrototype) => {
2386
2394
  };
2387
2395
  };
2388
2396
  var patchSlotInsertAdjacentHTML = (HostElementPrototype) => {
2397
+ if (HostElementPrototype.__insertAdjacentHTML) return;
2389
2398
  const originalInsertAdjacentHtml = HostElementPrototype.insertAdjacentHTML;
2390
2399
  HostElementPrototype.insertAdjacentHTML = function(position, text) {
2391
2400
  if (position !== "afterbegin" && position !== "beforeend") {
@@ -2411,6 +2420,7 @@ var patchSlotInsertAdjacentText = (HostElementPrototype) => {
2411
2420
  };
2412
2421
  };
2413
2422
  var patchInsertBefore = (HostElementPrototype) => {
2423
+ if (HostElementPrototype.__insertBefore) return;
2414
2424
  const eleProto = HostElementPrototype;
2415
2425
  if (eleProto.__insertBefore) return;
2416
2426
  eleProto.__insertBefore = HostElementPrototype.insertBefore;
@@ -2445,6 +2455,7 @@ var patchInsertBefore = (HostElementPrototype) => {
2445
2455
  };
2446
2456
  };
2447
2457
  var patchSlotInsertAdjacentElement = (HostElementPrototype) => {
2458
+ if (HostElementPrototype.__insertAdjacentElement) return;
2448
2459
  const originalInsertAdjacentElement = HostElementPrototype.insertAdjacentElement;
2449
2460
  HostElementPrototype.insertAdjacentElement = function(position, element) {
2450
2461
  if (position !== "afterbegin" && position !== "beforeend") {
@@ -4141,11 +4152,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex) => {
4141
4152
  patchSlotNode(elm);
4142
4153
  oldVNode = oldParentVNode && oldParentVNode.$children$ && oldParentVNode.$children$[childIndex];
4143
4154
  if (oldVNode && oldVNode.$tag$ === newVNode2.$tag$ && oldParentVNode.$elm$) {
4144
- if (BUILD.experimentalSlotFixes) {
4145
- relocateToHostRoot(oldParentVNode.$elm$);
4146
- } else {
4147
- putBackInOriginalLocation(oldParentVNode.$elm$, false);
4148
- }
4155
+ relocateToHostRoot(oldParentVNode.$elm$);
4149
4156
  }
4150
4157
  if (BUILD.scoped || BUILD.hydrateServerSide && 128 /* shadowNeedsScopedCss */) {
4151
4158
  addRemoveSlotScopedClass(contentRef, elm, newParentVNode.$elm$, oldParentVNode == null ? void 0 : oldParentVNode.$elm$);
@@ -4177,7 +4184,7 @@ var relocateToHostRoot = (parentElm) => {
4177
4184
  var putBackInOriginalLocation = (parentElm, recursive) => {
4178
4185
  plt.$flags$ |= 1 /* isTmpDisconnected */;
4179
4186
  const oldSlotChildNodes = Array.from(parentElm.__childNodes || parentElm.childNodes);
4180
- if (parentElm["s-sr"] && BUILD.experimentalSlotFixes) {
4187
+ if (parentElm["s-sr"]) {
4181
4188
  let node = parentElm;
4182
4189
  while (node = node.nextSibling) {
4183
4190
  if (node && node["s-sn"] === parentElm["s-sn"] && node["s-sh"] === hostTagName) {
@@ -4365,7 +4372,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
4365
4372
  }
4366
4373
  if (BUILD.vdomAttribute || BUILD.reflect) {
4367
4374
  if (BUILD.slot && tag === "slot" && !useNativeShadowDom) {
4368
- if (BUILD.experimentalSlotFixes && oldVNode.$name$ !== newVNode2.$name$) {
4375
+ if (oldVNode.$name$ !== newVNode2.$name$) {
4369
4376
  newVNode2.$elm$["s-sn"] = newVNode2.$name$ || "";
4370
4377
  relocateToHostRoot(newVNode2.$elm$.parentElement);
4371
4378
  }
@@ -4408,7 +4415,7 @@ var markSlotContentForRelocation = (elm) => {
4408
4415
  const slotName = childNode["s-sn"];
4409
4416
  for (j = hostContentNodes.length - 1; j >= 0; j--) {
4410
4417
  node = hostContentNodes[j];
4411
- if (!node["s-cn"] && !node["s-nr"] && node["s-hn"] !== childNode["s-hn"] && (!BUILD.experimentalSlotFixes || !node["s-sh"] || node["s-sh"] !== childNode["s-hn"])) {
4418
+ if (!node["s-cn"] && !node["s-nr"] && node["s-hn"] !== childNode["s-hn"] && (!node["s-sh"] || node["s-sh"] !== childNode["s-hn"])) {
4412
4419
  if (isNodeLocatedInSlot(node, slotName)) {
4413
4420
  let relocateNodeData = relocateNodes.find((r) => r.$nodeToRelocate$ === node);
4414
4421
  checkSlotFallbackVisibility = true;
@@ -4452,19 +4459,19 @@ var nullifyVNodeRefs = (vNode) => {
4452
4459
  vNode.$children$ && vNode.$children$.map(nullifyVNodeRefs);
4453
4460
  }
4454
4461
  };
4455
- var insertBefore = (parent, newNode, reference) => {
4462
+ var insertBefore = (parent, newNode, reference, isInitialLoad) => {
4456
4463
  if (BUILD.scoped && typeof newNode["s-sn"] === "string" && !!newNode["s-sr"] && !!newNode["s-cr"]) {
4457
4464
  addRemoveSlotScopedClass(newNode["s-cr"], newNode, parent, newNode.parentElement);
4458
- } else if (BUILD.experimentalSlotFixes && typeof newNode["s-sn"] === "string") {
4459
- if (parent.getRootNode().nodeType !== 11 /* DOCUMENT_FRAGMENT_NODE */) {
4465
+ } else if (typeof newNode["s-sn"] === "string") {
4466
+ if (BUILD.experimentalSlotFixes && parent.getRootNode().nodeType !== 11 /* DOCUMENT_FRAGMENT_NODE */) {
4460
4467
  patchParentNode(newNode);
4461
4468
  }
4462
4469
  parent.insertBefore(newNode, reference);
4463
4470
  const { slotNode } = findSlotFromSlottedNode(newNode);
4464
- if (slotNode) dispatchSlotChangeEvent(slotNode);
4471
+ if (slotNode && !isInitialLoad) dispatchSlotChangeEvent(slotNode);
4465
4472
  return newNode;
4466
4473
  }
4467
- if (BUILD.experimentalSlotFixes && parent.__insertBefore) {
4474
+ if (parent.__insertBefore) {
4468
4475
  return parent.__insertBefore(newNode, reference);
4469
4476
  } else {
4470
4477
  return parent == null ? void 0 : parent.insertBefore(newNode, reference);
@@ -4552,7 +4559,12 @@ render() {
4552
4559
  if (!nodeToRelocate["s-ol"] && win.document) {
4553
4560
  const orgLocationNode = BUILD.isDebug || BUILD.hydrateServerSide ? originalLocationDebugNode(nodeToRelocate) : win.document.createTextNode("");
4554
4561
  orgLocationNode["s-nr"] = nodeToRelocate;
4555
- insertBefore(nodeToRelocate.parentNode, nodeToRelocate["s-ol"] = orgLocationNode, nodeToRelocate);
4562
+ insertBefore(
4563
+ nodeToRelocate.parentNode,
4564
+ nodeToRelocate["s-ol"] = orgLocationNode,
4565
+ nodeToRelocate,
4566
+ isInitialLoad
4567
+ );
4556
4568
  }
4557
4569
  }
4558
4570
  for (const relocateData of relocateNodes) {
@@ -4564,7 +4576,7 @@ render() {
4564
4576
  if (slotRefNode) {
4565
4577
  const parentNodeRef = slotRefNode.parentNode;
4566
4578
  let insertBeforeNode = slotRefNode.nextSibling;
4567
- if (!BUILD.hydrateServerSide && (!BUILD.experimentalSlotFixes || insertBeforeNode && insertBeforeNode.nodeType === 1 /* ElementNode */)) {
4579
+ if (!BUILD.hydrateServerSide && insertBeforeNode && insertBeforeNode.nodeType === 1 /* ElementNode */) {
4568
4580
  let orgLocationNode = (_b = nodeToRelocate["s-ol"]) == null ? void 0 : _b.previousSibling;
4569
4581
  while (orgLocationNode) {
4570
4582
  let refNode = (_c = orgLocationNode["s-nr"]) != null ? _c : null;
@@ -4585,10 +4597,18 @@ render() {
4585
4597
  const nextSibling = nodeToRelocate.__nextSibling || nodeToRelocate.nextSibling;
4586
4598
  if (!insertBeforeNode && parentNodeRef !== parent || nextSibling !== insertBeforeNode) {
4587
4599
  if (nodeToRelocate !== insertBeforeNode) {
4588
- if (!BUILD.experimentalSlotFixes && !nodeToRelocate["s-hn"] && nodeToRelocate["s-ol"]) {
4589
- nodeToRelocate["s-hn"] = nodeToRelocate["s-ol"].parentNode.nodeName;
4600
+ insertBefore(parentNodeRef, nodeToRelocate, insertBeforeNode, isInitialLoad);
4601
+ if (nodeToRelocate.nodeType === 8 /* CommentNode */ && nodeToRelocate.nodeValue.startsWith("s-nt-")) {
4602
+ const textNode = win.document.createTextNode(nodeToRelocate.nodeValue.replace(/^s-nt-/, ""));
4603
+ textNode["s-hn"] = nodeToRelocate["s-hn"];
4604
+ textNode["s-sn"] = nodeToRelocate["s-sn"];
4605
+ textNode["s-sh"] = nodeToRelocate["s-sh"];
4606
+ textNode["s-sr"] = nodeToRelocate["s-sr"];
4607
+ textNode["s-ol"] = nodeToRelocate["s-ol"];
4608
+ textNode["s-ol"]["s-nr"] = textNode;
4609
+ insertBefore(nodeToRelocate.parentNode, textNode, nodeToRelocate, isInitialLoad);
4610
+ nodeToRelocate.parentNode.removeChild(nodeToRelocate);
4590
4611
  }
4591
- insertBefore(parentNodeRef, nodeToRelocate, insertBeforeNode);
4592
4612
  if (nodeToRelocate.nodeType === 1 /* ElementNode */ && nodeToRelocate.tagName !== "SLOT-FB") {
4593
4613
  nodeToRelocate.hidden = (_d = nodeToRelocate["s-ih"]) != null ? _d : false;
4594
4614
  }
@@ -4606,14 +4626,21 @@ render() {
4606
4626
  plt.$flags$ &= -2 /* isTmpDisconnected */;
4607
4627
  relocateNodes.length = 0;
4608
4628
  }
4609
- if (BUILD.experimentalScopedSlotChanges && cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
4629
+ if (BUILD.slotRelocation && !useNativeShadowDom && !(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && hostElm["s-cr"]) {
4610
4630
  const children = rootVnode.$elm$.__childNodes || rootVnode.$elm$.childNodes;
4611
4631
  for (const childNode of children) {
4612
- if (childNode["s-hn"] !== hostTagName && !childNode["s-sh"] && childNode.nodeType === 1 /* ElementNode */) {
4632
+ if (childNode["s-hn"] !== hostTagName && !childNode["s-sh"]) {
4613
4633
  if (isInitialLoad && childNode["s-ih"] == null) {
4614
4634
  childNode["s-ih"] = (_e = childNode.hidden) != null ? _e : false;
4615
4635
  }
4616
- childNode.hidden = true;
4636
+ if (childNode.nodeType === 1 /* ElementNode */) {
4637
+ childNode.hidden = true;
4638
+ } else if (childNode.nodeType === 3 /* TextNode */ && !!childNode.nodeValue.trim()) {
4639
+ const textCommentNode = win.document.createComment("s-nt-" + childNode.nodeValue);
4640
+ textCommentNode["s-sn"] = childNode["s-sn"];
4641
+ insertBefore(childNode.parentNode, textCommentNode, childNode, isInitialLoad);
4642
+ childNode.parentNode.removeChild(childNode);
4643
+ }
4617
4644
  }
4618
4645
  }
4619
4646
  }
@@ -4675,6 +4702,10 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
4675
4702
  let maybePromise;
4676
4703
  if (isInitialLoad) {
4677
4704
  if (BUILD.lazyLoad) {
4705
+ if (BUILD.slotRelocation && hostRef.$deferredConnectedCallback$) {
4706
+ hostRef.$deferredConnectedCallback$ = false;
4707
+ safeCall(instance, "connectedCallback", void 0, elm);
4708
+ }
4678
4709
  if (BUILD.hostListener) {
4679
4710
  hostRef.$flags$ |= 256 /* isListenReady */;
4680
4711
  if (hostRef.$queuedListeners$) {
@@ -5298,7 +5329,12 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
5298
5329
  hostRef.$flags$ |= 128 /* isWatchReady */;
5299
5330
  }
5300
5331
  endNewInstance();
5301
- fireConnectedCallback(hostRef.$lazyInstance$, elm);
5332
+ const needsDeferredCallback = BUILD.slotRelocation && cmpMeta.$flags$ & 4 /* hasSlotRelocation */;
5333
+ if (!needsDeferredCallback) {
5334
+ fireConnectedCallback(hostRef.$lazyInstance$, elm);
5335
+ } else {
5336
+ hostRef.$deferredConnectedCallback$ = true;
5337
+ }
5302
5338
  } else {
5303
5339
  Cstr = elm.constructor;
5304
5340
  const cmpTag = elm.localName;
@@ -5498,6 +5534,8 @@ var proxyCustomElement = (Cstr, compactMeta) => {
5498
5534
  patchTextContent(Cstr.prototype);
5499
5535
  }
5500
5536
  }
5537
+ } else if (BUILD.cloneNodeFix) {
5538
+ patchCloneNode(Cstr.prototype);
5501
5539
  }
5502
5540
  if (BUILD.hydrateClientSide && BUILD.shadowDom) {
5503
5541
  hydrateScopedToShadow();
@@ -5647,10 +5685,12 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
5647
5685
  }
5648
5686
  const tagName = BUILD.transformTagName && options.transformTagName ? options.transformTagName(cmpMeta.$tagName$) : transformTag(cmpMeta.$tagName$);
5649
5687
  const HostElement = class extends HTMLElement {
5688
+ ["s-p"];
5689
+ ["s-rc"];
5690
+ hasRegisteredEventListeners = false;
5650
5691
  // StencilLazyHost
5651
5692
  constructor(self) {
5652
5693
  super(self);
5653
- this.hasRegisteredEventListeners = false;
5654
5694
  self = this;
5655
5695
  registerHost(self, cmpMeta);
5656
5696
  if (BUILD.shadowDom && cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
@@ -5727,6 +5767,8 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
5727
5767
  patchTextContent(HostElement.prototype);
5728
5768
  }
5729
5769
  }
5770
+ } else if (BUILD.cloneNodeFix) {
5771
+ patchCloneNode(HostElement.prototype);
5730
5772
  }
5731
5773
  if (BUILD.formAssociated && cmpMeta.$flags$ & 64 /* formAssociated */) {
5732
5774
  HostElement.formAssociated = true;
@@ -5872,6 +5914,44 @@ function setTagTransformer(transformer) {
5872
5914
  tagTransformer = transformer;
5873
5915
  }
5874
5916
 
5917
+ // src/runtime/vdom/jsx-dev-runtime.ts
5918
+ function jsxDEV(type, props, key, _isStaticChildren, _source, _self) {
5919
+ const { children, ...rest } = props;
5920
+ const vnodeData = key !== void 0 ? { ...rest, key } : rest;
5921
+ if (Array.isArray(children)) {
5922
+ return h(type, vnodeData, ...children);
5923
+ } else if (children !== void 0) {
5924
+ return h(type, vnodeData, children);
5925
+ }
5926
+ return h(type, vnodeData);
5927
+ }
5928
+
5929
+ // src/runtime/vdom/jsx-runtime.ts
5930
+ function jsx(type, props, key) {
5931
+ const propsObj = props || {};
5932
+ const { children, ...rest } = propsObj;
5933
+ let vnodeData = rest;
5934
+ if (key !== void 0) {
5935
+ vnodeData = { ...rest, key };
5936
+ }
5937
+ if (vnodeData && Object.keys(vnodeData).length === 0) {
5938
+ vnodeData = null;
5939
+ }
5940
+ if (children !== void 0) {
5941
+ if (Array.isArray(children)) {
5942
+ return h(type, vnodeData, ...children);
5943
+ }
5944
+ if (typeof children === "object" && children !== null && "$flags$" in children) {
5945
+ return h(type, vnodeData, children);
5946
+ }
5947
+ return h(type, vnodeData, children);
5948
+ }
5949
+ return h(type, vnodeData);
5950
+ }
5951
+ function jsxs(type, props, key) {
5952
+ return jsx(type, props, key);
5953
+ }
5954
+
5875
5955
  // src/runtime/vdom/vdom-annotations.ts
5876
5956
  var insertVdomAnnotations = (doc, staticComponents) => {
5877
5957
  if (doc != null) {
@@ -6052,6 +6132,9 @@ var StencilCore = /*#__PURE__*/Object.freeze({
6052
6132
  h: h,
6053
6133
  insertVdomAnnotations: insertVdomAnnotations,
6054
6134
  isMemberInElement: isMemberInElement,
6135
+ jsx: jsx,
6136
+ jsxDEV: jsxDEV,
6137
+ jsxs: jsxs,
6055
6138
  loadModule: loadModule,
6056
6139
  modeResolutionChain: modeResolutionChain,
6057
6140
  needsScopedSSR: needsScopedSSR,
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-PIKwatSC.js');
3
+ var index = require('./index-PGqCEOha.js');
4
4
  var appGlobals = require('./app-globals-V2Kpy_OQ.js');
5
5
 
6
6
  const defineCustomElements = async (win, options) => {