@wsxjs/wsx-core 0.0.21 → 0.0.23

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.
package/dist/jsx.js CHANGED
@@ -170,6 +170,10 @@ var CACHE_KEY_PROP = "__wsxCacheKey";
170
170
  function markElement(element, cacheKey) {
171
171
  element[CACHE_KEY_PROP] = cacheKey;
172
172
  }
173
+ function getElementCacheKey(element) {
174
+ const key = element[CACHE_KEY_PROP];
175
+ return key !== void 0 ? String(key) : null;
176
+ }
173
177
  function isCreatedByH(element) {
174
178
  if (!(element instanceof HTMLElement || element instanceof SVGElement)) {
175
179
  return false;
@@ -617,6 +621,185 @@ function createElementWithPropsAndChildren(tag, props, children) {
617
621
  return element;
618
622
  }
619
623
 
624
+ // src/utils/update-children-helpers.ts
625
+ function collectPreservedElements(element) {
626
+ const preserved = [];
627
+ for (let i = 0; i < element.childNodes.length; i++) {
628
+ const child = element.childNodes[i];
629
+ if (shouldPreserveElement(child)) {
630
+ preserved.push(child);
631
+ }
632
+ }
633
+ return preserved;
634
+ }
635
+ function findDOMNodeByReference(oldChild, parent) {
636
+ if (oldChild.parentNode === parent && !shouldPreserveElement(oldChild)) {
637
+ return oldChild;
638
+ }
639
+ return null;
640
+ }
641
+ function findDOMNodeByCacheKey(cacheKey, parent) {
642
+ for (let i = 0; i < parent.childNodes.length; i++) {
643
+ const child = parent.childNodes[i];
644
+ if (child instanceof HTMLElement || child instanceof SVGElement) {
645
+ if (shouldPreserveElement(child)) continue;
646
+ if (getElementCacheKey(child) === cacheKey) {
647
+ return child;
648
+ }
649
+ }
650
+ }
651
+ return null;
652
+ }
653
+ function findElementNode(oldChild, parent) {
654
+ const byRef = findDOMNodeByReference(oldChild, parent);
655
+ if (byRef) return byRef;
656
+ const cacheKey = getElementCacheKey(oldChild);
657
+ if (cacheKey) {
658
+ return findDOMNodeByCacheKey(cacheKey, parent);
659
+ }
660
+ return null;
661
+ }
662
+ function findTextNode(parent, domIndex) {
663
+ while (domIndex.value < parent.childNodes.length) {
664
+ const node = parent.childNodes[domIndex.value];
665
+ if (node.nodeType === Node.TEXT_NODE) {
666
+ const textNode = node;
667
+ domIndex.value++;
668
+ return textNode;
669
+ }
670
+ domIndex.value++;
671
+ }
672
+ return null;
673
+ }
674
+ function updateOrCreateTextNode(parent, oldNode, newText) {
675
+ if (oldNode && oldNode.nodeType === Node.TEXT_NODE) {
676
+ if (oldNode.textContent !== newText) {
677
+ oldNode.textContent = newText;
678
+ }
679
+ } else {
680
+ const newTextNode = document.createTextNode(newText);
681
+ if (oldNode && !shouldPreserveElement(oldNode)) {
682
+ parent.replaceChild(newTextNode, oldNode);
683
+ } else {
684
+ parent.insertBefore(newTextNode, oldNode || null);
685
+ }
686
+ }
687
+ }
688
+ function removeNodeIfNotPreserved(parent, node) {
689
+ if (node && !shouldPreserveElement(node) && node.parentNode === parent) {
690
+ parent.removeChild(node);
691
+ }
692
+ }
693
+ function replaceOrInsertElement(parent, newChild, oldNode) {
694
+ if (newChild.parentNode && newChild.parentNode !== parent) {
695
+ newChild.parentNode.removeChild(newChild);
696
+ }
697
+ if (oldNode && !shouldPreserveElement(oldNode)) {
698
+ if (oldNode !== newChild) {
699
+ parent.replaceChild(newChild, oldNode);
700
+ }
701
+ } else if (newChild.parentNode !== parent) {
702
+ parent.insertBefore(newChild, oldNode || null);
703
+ }
704
+ }
705
+ function appendNewChild(parent, child) {
706
+ if (child === null || child === void 0 || child === false) {
707
+ return;
708
+ }
709
+ if (typeof child === "string" || typeof child === "number") {
710
+ parent.appendChild(document.createTextNode(String(child)));
711
+ } else if (child instanceof HTMLElement || child instanceof SVGElement) {
712
+ if (child.parentNode && child.parentNode !== parent) {
713
+ child.parentNode.removeChild(child);
714
+ }
715
+ if (child.parentNode !== parent) {
716
+ parent.appendChild(child);
717
+ }
718
+ } else if (child instanceof DocumentFragment) {
719
+ parent.appendChild(child);
720
+ }
721
+ }
722
+ function buildNewChildrenMaps(flatNew) {
723
+ const elementSet = /* @__PURE__ */ new Set();
724
+ const cacheKeyMap = /* @__PURE__ */ new Map();
725
+ for (const child of flatNew) {
726
+ if (child instanceof HTMLElement || child instanceof SVGElement || child instanceof DocumentFragment) {
727
+ elementSet.add(child);
728
+ if (child instanceof HTMLElement || child instanceof SVGElement) {
729
+ const cacheKey = getElementCacheKey(child);
730
+ if (cacheKey) {
731
+ cacheKeyMap.set(cacheKey, child);
732
+ }
733
+ }
734
+ }
735
+ }
736
+ return { elementSet, cacheKeyMap };
737
+ }
738
+ function shouldRemoveNode(node, elementSet, cacheKeyMap) {
739
+ if (shouldPreserveElement(node)) {
740
+ return false;
741
+ }
742
+ if (node instanceof HTMLElement || node instanceof SVGElement || node instanceof DocumentFragment) {
743
+ if (elementSet.has(node)) {
744
+ return false;
745
+ }
746
+ if (node instanceof HTMLElement || node instanceof SVGElement) {
747
+ const cacheKey = getElementCacheKey(node);
748
+ if (cacheKey && cacheKeyMap.has(cacheKey)) {
749
+ return false;
750
+ }
751
+ }
752
+ }
753
+ return true;
754
+ }
755
+ function deduplicateCacheKeys(parent, cacheKeyMap) {
756
+ const processedCacheKeys = /* @__PURE__ */ new Set();
757
+ for (let i = parent.childNodes.length - 1; i >= 0; i--) {
758
+ const child = parent.childNodes[i];
759
+ if (child instanceof HTMLElement || child instanceof SVGElement) {
760
+ if (shouldPreserveElement(child)) {
761
+ continue;
762
+ }
763
+ const cacheKey = getElementCacheKey(child);
764
+ if (cacheKey && cacheKeyMap.has(cacheKey) && !processedCacheKeys.has(cacheKey)) {
765
+ processedCacheKeys.add(cacheKey);
766
+ const newChild = cacheKeyMap.get(cacheKey);
767
+ if (child !== newChild) {
768
+ parent.replaceChild(newChild, child);
769
+ }
770
+ }
771
+ }
772
+ }
773
+ }
774
+ function collectNodesToRemove(parent, elementSet, cacheKeyMap) {
775
+ const nodesToRemove = [];
776
+ for (let i = 0; i < parent.childNodes.length; i++) {
777
+ const node = parent.childNodes[i];
778
+ if (shouldRemoveNode(node, elementSet, cacheKeyMap)) {
779
+ nodesToRemove.push(node);
780
+ }
781
+ }
782
+ return nodesToRemove;
783
+ }
784
+ function removeNodes(parent, nodes) {
785
+ for (let i = nodes.length - 1; i >= 0; i--) {
786
+ const node = nodes[i];
787
+ if (node.parentNode === parent) {
788
+ parent.removeChild(node);
789
+ }
790
+ }
791
+ }
792
+ function reinsertPreservedElements(parent, preservedElements) {
793
+ for (const element of preservedElements) {
794
+ if (element.parentNode !== parent) {
795
+ parent.appendChild(element);
796
+ }
797
+ }
798
+ }
799
+ function flattenChildrenSafe(children) {
800
+ return flattenChildren(children);
801
+ }
802
+
620
803
  // src/utils/element-update.ts
621
804
  function removeProp(element, key, oldValue, tag) {
622
805
  const isSVG = shouldUseSVGNamespace(tag);
@@ -717,123 +900,123 @@ function updateProps(element, oldProps, newProps, tag) {
717
900
  if (oldValue === newValue) {
718
901
  continue;
719
902
  }
903
+ if (oldValue === void 0) {
904
+ applySingleProp2(element, key, newValue, tag, isSVG);
905
+ continue;
906
+ }
720
907
  if (typeof oldValue === "object" && oldValue !== null && typeof newValue === "object" && newValue !== null) {
721
- if (JSON.stringify(oldValue) === JSON.stringify(newValue)) {
722
- continue;
908
+ try {
909
+ const oldJson = JSON.stringify(oldValue);
910
+ const newJson = JSON.stringify(newValue);
911
+ if (oldJson === newJson) {
912
+ continue;
913
+ }
914
+ } catch {
723
915
  }
724
916
  }
725
917
  applySingleProp2(element, key, newValue, tag, isSVG);
726
918
  }
727
919
  }
728
- function updateChildren(element, oldChildren, newChildren) {
729
- const flatOld = flattenChildren(oldChildren);
730
- const flatNew = flattenChildren(newChildren);
920
+ function updateChildren(element, oldChildren, newChildren, cacheManager) {
921
+ const flatOld = flattenChildrenSafe(oldChildren);
922
+ const flatNew = flattenChildrenSafe(newChildren);
923
+ const preservedElements = collectPreservedElements(element);
731
924
  const minLength = Math.min(flatOld.length, flatNew.length);
925
+ const domIndex = { value: 0 };
732
926
  for (let i = 0; i < minLength; i++) {
733
927
  const oldChild = flatOld[i];
734
928
  const newChild = flatNew[i];
929
+ let oldNode = null;
930
+ if (oldChild instanceof HTMLElement || oldChild instanceof SVGElement) {
931
+ oldNode = findElementNode(oldChild, element);
932
+ if (oldNode && oldNode.parentNode === element) {
933
+ const nodeIndex = Array.from(element.childNodes).indexOf(oldNode);
934
+ if (nodeIndex !== -1 && nodeIndex >= domIndex.value) {
935
+ domIndex.value = nodeIndex + 1;
936
+ }
937
+ }
938
+ } else if (typeof oldChild === "string" || typeof oldChild === "number") {
939
+ oldNode = findTextNode(element, domIndex);
940
+ if (!oldNode && element.childNodes.length > 0) {
941
+ for (let j = domIndex.value; j < element.childNodes.length; j++) {
942
+ const node = element.childNodes[j];
943
+ if (node.nodeType === Node.TEXT_NODE) {
944
+ oldNode = node;
945
+ domIndex.value = j + 1;
946
+ break;
947
+ }
948
+ }
949
+ }
950
+ }
735
951
  if (typeof oldChild === "string" || typeof oldChild === "number") {
736
952
  if (typeof newChild === "string" || typeof newChild === "number") {
737
- const textNode = element.childNodes[i];
738
- if (textNode && textNode.nodeType === Node.TEXT_NODE) {
739
- textNode.textContent = String(newChild);
740
- } else {
741
- const newTextNode = document.createTextNode(String(newChild));
742
- if (textNode) {
743
- element.replaceChild(newTextNode, textNode);
744
- } else {
745
- element.appendChild(newTextNode);
746
- }
953
+ const oldText = String(oldChild);
954
+ const newText = String(newChild);
955
+ const needsUpdate = oldText !== newText || oldNode && oldNode.nodeType === Node.TEXT_NODE && oldNode.textContent !== newText;
956
+ if (needsUpdate) {
957
+ updateOrCreateTextNode(element, oldNode, newText);
747
958
  }
748
959
  } else {
749
- const textNode = element.childNodes[i];
750
- if (textNode) {
751
- if (!shouldPreserveElement(textNode)) {
752
- element.removeChild(textNode);
753
- }
754
- }
755
- if (typeof newChild === "string" || typeof newChild === "number") {
756
- element.appendChild(document.createTextNode(String(newChild)));
757
- } else if (newChild instanceof HTMLElement || newChild instanceof SVGElement) {
758
- element.appendChild(newChild);
960
+ removeNodeIfNotPreserved(element, oldNode);
961
+ if (newChild instanceof HTMLElement || newChild instanceof SVGElement) {
962
+ replaceOrInsertElement(element, newChild, oldNode);
759
963
  } else if (newChild instanceof DocumentFragment) {
760
- element.appendChild(newChild);
964
+ element.insertBefore(newChild, oldNode || null);
761
965
  }
762
966
  }
763
967
  } else if (oldChild instanceof HTMLElement || oldChild instanceof SVGElement) {
764
- if (newChild === oldChild) {
968
+ if (oldNode && shouldPreserveElement(oldNode)) {
765
969
  continue;
766
- } else if (newChild instanceof HTMLElement || newChild instanceof SVGElement) {
767
- const oldNode = element.childNodes[i];
768
- if (oldNode) {
769
- if (!shouldPreserveElement(oldNode)) {
770
- if (oldNode !== newChild) {
771
- element.replaceChild(newChild, oldNode);
772
- }
773
- } else {
774
- if (newChild.parentNode !== element) {
775
- element.appendChild(newChild);
970
+ }
971
+ if (newChild === oldChild && (newChild instanceof HTMLElement || newChild instanceof SVGElement)) {
972
+ if (cacheManager) {
973
+ const childMetadata = cacheManager.getMetadata(newChild);
974
+ if (childMetadata) {
975
+ if (oldNode === newChild && newChild.parentNode === element) {
976
+ continue;
776
977
  }
777
978
  }
778
979
  } else {
779
- if (newChild.parentNode !== element) {
780
- element.appendChild(newChild);
980
+ if (oldNode === newChild && newChild.parentNode === element) {
981
+ continue;
781
982
  }
782
983
  }
783
- } else {
784
- const oldNode = element.childNodes[i];
785
- if (oldNode) {
786
- if (!shouldPreserveElement(oldNode)) {
787
- element.removeChild(oldNode);
788
- }
984
+ }
985
+ if (newChild instanceof HTMLElement || newChild instanceof SVGElement) {
986
+ if (newChild.parentNode === element && oldNode === newChild) {
987
+ continue;
789
988
  }
989
+ replaceOrInsertElement(element, newChild, oldNode);
990
+ } else {
991
+ removeNodeIfNotPreserved(element, oldNode);
790
992
  if (typeof newChild === "string" || typeof newChild === "number") {
791
- element.appendChild(document.createTextNode(String(newChild)));
993
+ const newTextNode = document.createTextNode(String(newChild));
994
+ element.insertBefore(newTextNode, oldNode?.nextSibling || null);
792
995
  } else if (newChild instanceof DocumentFragment) {
793
- element.appendChild(newChild);
996
+ element.insertBefore(newChild, oldNode?.nextSibling || null);
794
997
  }
795
998
  }
796
999
  }
797
1000
  }
798
1001
  for (let i = minLength; i < flatNew.length; i++) {
799
- const newChild = flatNew[i];
800
- if (newChild === null || newChild === void 0 || newChild === false) {
801
- continue;
802
- }
803
- if (typeof newChild === "string" || typeof newChild === "number") {
804
- element.appendChild(document.createTextNode(String(newChild)));
805
- } else if (newChild instanceof HTMLElement || newChild instanceof SVGElement) {
806
- if (newChild.parentNode !== element) {
807
- element.appendChild(newChild);
808
- }
809
- } else if (newChild instanceof DocumentFragment) {
810
- element.appendChild(newChild);
811
- }
812
- }
813
- const nodesToRemove = [];
814
- for (let i = flatNew.length; i < element.childNodes.length; i++) {
815
- const child = element.childNodes[i];
816
- if (!shouldPreserveElement(child)) {
817
- nodesToRemove.push(child);
818
- }
819
- }
820
- for (let i = nodesToRemove.length - 1; i >= 0; i--) {
821
- const node = nodesToRemove[i];
822
- if (node.parentNode === element) {
823
- element.removeChild(node);
824
- }
1002
+ appendNewChild(element, flatNew[i]);
825
1003
  }
1004
+ const { elementSet, cacheKeyMap } = buildNewChildrenMaps(flatNew);
1005
+ deduplicateCacheKeys(element, cacheKeyMap);
1006
+ const nodesToRemove = collectNodesToRemove(element, elementSet, cacheKeyMap);
1007
+ removeNodes(element, nodesToRemove);
1008
+ reinsertPreservedElements(element, preservedElements);
826
1009
  }
827
1010
  function updateElement(element, newProps, newChildren, tag, cacheManager) {
828
1011
  const oldMetadata = cacheManager.getMetadata(element);
829
1012
  const oldProps = oldMetadata?.props || null;
830
1013
  const oldChildren = oldMetadata?.children || [];
831
- updateProps(element, oldProps, newProps, tag);
832
- updateChildren(element, oldChildren, newChildren);
833
1014
  cacheManager.setMetadata(element, {
834
1015
  props: newProps || {},
835
1016
  children: newChildren
836
1017
  });
1018
+ updateProps(element, oldProps, newProps, tag);
1019
+ updateChildren(element, oldChildren, newChildren, cacheManager);
837
1020
  }
838
1021
 
839
1022
  // src/jsx-factory.ts
@@ -847,7 +1030,36 @@ function h(tag, props = {}, ...children) {
847
1030
  if (context && cacheManager) {
848
1031
  return tryUseCacheOrCreate(tag, props, children, context, cacheManager);
849
1032
  }
850
- return createElementWithPropsAndChildren(tag, props, children);
1033
+ try {
1034
+ const nodeEnv = typeof globalThis.process !== "undefined" && // eslint-disable-next-line @typescript-eslint/no-explicit-any
1035
+ globalThis.process.env?.NODE_ENV;
1036
+ if (nodeEnv === "development") {
1037
+ if (!context) {
1038
+ logger3.debug(
1039
+ `h() called without render context. Tag: "${tag}", ComponentId: "${getComponentId()}"`,
1040
+ {
1041
+ tag,
1042
+ props: props ? Object.keys(props) : [],
1043
+ hasCacheManager: !!cacheManager
1044
+ }
1045
+ );
1046
+ } else if (!cacheManager) {
1047
+ logger3.debug(
1048
+ `h() called with context but no cache manager. Tag: "${tag}", Component: "${context.constructor.name}"`,
1049
+ {
1050
+ tag,
1051
+ component: context.constructor.name
1052
+ }
1053
+ );
1054
+ }
1055
+ }
1056
+ } catch {
1057
+ }
1058
+ const element = createElementWithPropsAndChildren(tag, props, children);
1059
+ const componentId = getComponentId();
1060
+ const cacheKey = generateCacheKey(tag, props, componentId, context || void 0);
1061
+ markElement(element, cacheKey);
1062
+ return element;
851
1063
  }
852
1064
  function tryUseCacheOrCreate(tag, props, children, context, cacheManager) {
853
1065
  try {
@@ -857,6 +1069,14 @@ function tryUseCacheOrCreate(tag, props, children, context, cacheManager) {
857
1069
  if (cachedElement) {
858
1070
  const element2 = cachedElement;
859
1071
  updateElement(element2, props, children, tag, cacheManager);
1072
+ const isCustomElement = tag.includes("-") && customElements.get(tag);
1073
+ if (isCustomElement && element2.isConnected) {
1074
+ const parent = element2.parentNode;
1075
+ if (parent) {
1076
+ parent.removeChild(element2);
1077
+ parent.appendChild(element2);
1078
+ }
1079
+ }
860
1080
  return element2;
861
1081
  }
862
1082
  const element = createElementWithPropsAndChildren(tag, props, children);
@@ -880,7 +1100,12 @@ function handleCacheError(error, tag, props, children) {
880
1100
  }
881
1101
  } catch {
882
1102
  }
883
- return createElementWithPropsAndChildren(tag, props, children);
1103
+ const element = createElementWithPropsAndChildren(tag, props, children);
1104
+ const context = RenderContext.getCurrentComponent();
1105
+ const componentId = getComponentId();
1106
+ const cacheKey = generateCacheKey(tag, props, componentId, context || void 0);
1107
+ markElement(element, cacheKey);
1108
+ return element;
884
1109
  }
885
1110
  function Fragment(_props, children) {
886
1111
  const fragment = document.createDocumentFragment();
package/dist/jsx.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  Fragment,
3
3
  h
4
- } from "./chunk-AR3DIDLV.mjs";
4
+ } from "./chunk-ESZYREJK.mjs";
5
5
  export {
6
6
  Fragment,
7
7
  h
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/utils/dom-utils.ts","../../../node_modules/.pnpm/loglevel@1.9.2/node_modules/loglevel/index.d.ts","../../logger/dist/index.d.ts","../src/utils/reactive.ts","../src/utils/logger.ts","../src/dom-cache-manager.ts","../src/base-component.ts","../src/render-context.ts","../src/utils/cache-key.ts","../src/utils/element-marking.ts","../src/utils/svg-utils.ts","../src/utils/props-utils.ts","../src/utils/element-creation.ts","../src/utils/update-children-helpers.ts","../src/utils/element-update.ts","../src/jsx-factory.ts","../src/styles/style-manager.ts","../src/web-component.ts","../src/light-component.ts","../src/reactive-decorator.ts","../src/index.ts","../types/wsx-types.d.ts","../types/jsx.d.ts","../types/jsx-runtime.d.ts","../src/auto-register.ts","../src/jsx-runtime.ts","../src/jsx.ts","../__tests__/cache-key.test.ts","../__tests__/dom-cache-manager.test.ts","../__tests__/dom-utils.test.ts","../__tests__/editorjs-integration.test.ts","../__tests__/element-marking.test.ts","../__tests__/element-preservation.test.ts","../__tests__/element-update.test.ts","../__tests__/framework-internal-props.test.ts","../__tests__/i18n-language-change.test.ts","../__tests__/jsx-factory.test.ts","../__tests__/light-component.test.ts","../__tests__/performance-baseline.test.ts","../__tests__/performance-comparison.test.ts","../__tests__/performance-optimization.test.ts","../__tests__/regression-suite.test.ts","../__tests__/render-context.test.ts","../__tests__/rerender-scheduling.test.ts","../__tests__/smart-property-assignment.test.ts","../__tests__/update-children-helpers.test.ts","../__tests__/web-component.test.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts"],"fileIdsList":[[109,152],[97,109,152],[99,102,109,152],[109,149,152],[109,151,152],[152],[109,152,157,186],[109,152,153,158,164,165,172,183,194],[109,152,153,154,164,172],[104,105,106,109,152],[109,152,155,195],[109,152,156,157,165,173],[109,152,157,183,191],[109,152,158,160,164,172],[109,151,152,159],[109,152,160,161],[109,152,162,164],[109,151,152,164],[109,152,164,165,166,183,194],[109,152,164,165,166,179,183,186],[109,147,152],[109,152,160,164,167,172,183,194],[109,152,164,165,167,168,172,183,191,194],[109,152,167,169,183,191,194],[107,108,109,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[109,152,164,170],[109,152,171,194,199],[109,152,160,164,172,183],[109,152,173],[109,152,174],[109,151,152,175],[109,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[109,152,177],[109,152,178],[109,152,164,179,180],[109,152,179,181,195,197],[109,152,164,183,184,186],[109,152,185,186],[109,152,183,184],[109,152,186],[109,152,187],[109,149,152,183,188],[109,152,164,189,190],[109,152,189,190],[109,152,157,172,183,191],[109,152,192],[109,152,172,193],[109,152,167,178,194],[109,152,157,195],[109,152,183,196],[109,152,171,197],[109,152,198],[109,152,164,166,175,183,186,194,197,199],[109,152,183,200],[95,101,109,152],[99,109,152],[96,100,109,152],[98,109,152],[109,119,123,152,194],[109,119,152,183,194],[109,114,152],[109,116,119,152,191,194],[109,152,172,191],[109,152,201],[109,114,152,201],[109,116,119,152,172,194],[109,111,112,115,118,152,164,183,194],[109,119,126,152],[109,111,117,152],[109,119,140,141,152],[109,115,119,152,186,194,201],[109,140,152,201],[109,113,114,152,201],[109,119,152],[109,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,152],[109,119,134,152],[109,119,126,127,152],[109,117,119,127,128,152],[109,118,152],[109,111,114,119,152],[109,119,123,127,128,152],[109,123,152],[109,117,119,122,152,194],[109,111,116,119,126,152],[109,152,183],[109,114,119,140,152,199,201],[54,55,56,71,109,152],[53,54,55,71,109,152],[48,71,109,152],[57,63,66,67,71,109,152],[57,71,109,152],[55,57,63,65,66,67,71,109,152],[53,57,63,65,67,71,109,152],[59,63,65,66,71,109,152],[55,63,65,67,71,109,152],[48,63,71,109,152],[57,63,66,71,109,152],[63,65,67,71,109,152],[54,55,71,109,152],[63,65,66,71,109,152],[63,71,109,152],[57,61,63,71,109,152],[57,63,65,71,109,152],[71,109,152],[51,53,71,109,152],[52,71,109,152],[50,51,63,64,65,66,67,71,72,109,152],[48,52,53,54,55,56,57,60,62,71,109,152],[50,54,55,57,63,71,109,152],[54,71,109,152],[48,58,59,71,109,152],[48,53,57,58,59,61,71,109,152],[52,58,71,109,152],[50,71,109,152],[48,57,71,109,152],[50,54,55,57,63,64,71,109,152],[69,70,109,152],[69,109,152],[68,109,152],[49,109,152]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"e5f68583a090806fa8a63a0b57028c506be31b8212abb3b31063cf23b2fbbb04",{"version":"4aa7fdc017a0a097c71ada2ca187e1475c987b4f933960c0792eb143997e4709","impliedFormat":1},"65f3f541c306088b14dfde53f7f67f2eb6234597ba74801ee5a2e44df7f9d860","3bbe77bad784daab0ac850c6f8c2b023b3710db3060a3aeabe21c596dc5f0a4e","89fa01b584a104cc2e17900f8bcabaffbcab38908c8acc6422e24e27a7dbca5b","1fb9a7797a722e9f0c23789e244eb44de2e562c24d26dd8c1eabccbfee221c77","861ee39d855f5a5aa404f47979e0e1abddcb24c7042d552400a024b5e0058ec8","83f61f76c4fa3dd02b641a6d490b4ec9cd6190d76d91db68422a7a18019f34b6","a72076280b165f85e61faab64b80ce81c420c6f05ca24a10e9b40a34a092d2a6","a1361cb1567abf039e67779f7eac91002643a501c0ef6bf6cb036cc07b307ae2","a2d11f94d9a2763a19430da7aa846ed2bddd53c76fa3f14d13d88bb4934f2579","ca112ea811249a9fb5da9ba6763388e9ab8033e1ab3405aae9d5723ffecb8bc9","8a91a7ed14f5eace04589d08dbc8a44387ca253ec5c132e49abc4f5d842ba88e",{"version":"1dfd74362b0259ae04759f8a3e7d4d2056baefd1fe2b31f6d4d6d29013156c11","signature":"363f024991242301395cae9d5c1ef49fd553a79343849beebcdf84dfc15f9f72"},{"version":"e40b3c27a8b65c3b726cc8ede2c359a5de0ac8881d46fc333f90e663f54b445c","signature":"2e1c96f0e3d90828f2809cf0b5d457711ce5c450bc54658942fae5990f713b26"},"24f7e41cb845c128f33e41097d5f193aa5fdaeb86e704967aa9bdde12d744f82","752a4c5da1ed657428bfe7047a43b9166d20ac19c33d840eabce154f9f5df55b","bc5c7924a1120f599b756f331f55e01bd02a2ac8be48b4ff7e6d44e96a243385","390858150f63034378b0c36c4d9e4a4130fd9671b1c75cfe2b79e804726299db","d4e379170e5f0f3946e2f9296ff4dc1ede6211990cfb4fce05c9135a006c9ea3","f33cac031ee04cafbc468177540c251ba1630f0e6f5f4eeeae2103b7ef7b4758","2261a58ed7f7ced3c20de3753f86aaf4cb80ca718340d532083f9dd8febe6a87","884a9ee6ee9ff94877b6819c427264ce8abd52a279707df0981e0beb520d08f7","3738a73aea7d44b8dc355a1d9412abe6a0493a22edb29a5f08e9b02667134b41","464b245ec63af0bc42fef5f74fc475b115fc9e93512fb0d13779ccf25f292a99","4c5dad0fedb9673bc9b978f89d8c735d822ab75dede69b2bff8f20675c06d5de",{"version":"a8b4590bd7202b0be959940994ef48c7e691c9b27d801b6a2ccf9cf9465343bf","affectsGlobalScope":true},"6c27b2a6ff3dc8bd4d0dea07bcd394e9f52ed3e22a856b8cdc6e0afefc65b89d","0f5537cd0e86a89a0eb164903117e2731c0cd2f4972311e8fd3eeb3568b942b1","7540dd62d557329ebf71443ea849b503330be2000e19aead2236791f0fc718f4","b9657731e437c767b654d154c998cbb919bd3692cef2f9d7c8147892792472f2","1f2122993dc7ee5e29ec2af77e9f3ef530562858cbabf8d6d8fb60a55facb788","0ef57bf427b0b0c27654c71603ba2a15e560bcb55c4aacd422fd1d7151480d99","ababca9e36abaf30735634a6e8d896e8c672823729e72f8ec8c0a826478055ec","c83f32527ff792ea145e421cf022bec846685138698c71aa708e81497a9ac877","a56ee7692f7f6a37b8ea3f3961af49d2c5cad4a41130943d20b14f2be6a5ce55","8873e9704caaf70f835f8394d09859b7543cb424cf30fb1d1949193f0d57da03","523bbb1455c64417360f041da82b2c0ce9a0309da1f718f75fe48d1e86c9816b","327c35076926ea01c38452fc129fae06ee9891b1b06568bc37c7bade9663fc21","7f9d5bb8cc6f377b7c43b9de681119411d2513b821865a53969160515725faf3","289e671112bcba8df89fa742daf968e3ac149a63a69d18473a96f98c2466a6fc","89ee6a1a2c7266313b963dda9ccdb2aa03e1c73fc1d0d2493fade90022ff7057","c9e679fdc9a5275b2c4f8f1a8145d834c14008ff7512d365fa01730619989120","084104d236d7263594343ab8be09e1472dfa8bc4a6787d7c73c8e362ae62b3c1","ee4d984eff6c775b61d5b0e50c9ba9b989a84d36929959d4b68ca5b33dae6310",{"version":"d4207660d37804ae3fcd22124852ce54219e28ab995a230ac745d0e5901e47b5","signature":"8fd32789a308218f43306a1b7c42732232bf5a885ec55b7738e187fa2e9b9a79"},"03ffdc1b02b60a7bf3cd385f8636096bea6f773fd467cce0349d45a45fa6b9a1",{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[48,[51,69],[72,94]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"jsx":4,"jsxImportSource":"@wsxjs/wsx-core","module":99,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":false},"referencedMap":[[95,1],[98,2],[97,1],[103,3],[149,4],[150,4],[151,5],[109,6],[152,7],[153,8],[154,9],[104,1],[107,10],[105,1],[106,1],[155,11],[156,12],[157,13],[158,14],[159,15],[160,16],[161,16],[163,1],[162,17],[164,18],[165,19],[166,20],[148,21],[108,1],[167,22],[168,23],[169,24],[201,25],[170,26],[171,27],[172,28],[173,29],[174,30],[175,31],[176,32],[177,33],[178,34],[179,35],[180,35],[181,36],[182,1],[183,37],[185,38],[184,39],[186,40],[187,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[200,54],[110,1],[96,1],[102,55],[100,56],[101,57],[49,1],[99,58],[46,1],[47,1],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[20,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[1,1],[126,59],[136,60],[125,59],[146,61],[117,62],[116,63],[145,64],[139,65],[144,66],[119,67],[133,68],[118,69],[142,70],[114,71],[113,64],[143,72],[115,73],[120,74],[121,1],[124,74],[111,1],[147,75],[137,76],[128,77],[129,78],[131,79],[127,80],[130,81],[140,64],[122,82],[123,83],[132,84],[112,85],[135,76],[134,74],[138,1],[141,86],[75,87],[76,88],[77,89],[78,90],[79,91],[80,92],[81,93],[82,94],[83,95],[84,96],[85,97],[86,98],[87,95],[88,95],[89,98],[90,99],[91,100],[92,101],[93,102],[94,103],[72,104],[54,105],[53,106],[68,107],[63,108],[73,101],[74,101],[66,109],[67,104],[55,110],[64,104],[56,99],[48,104],[60,111],[57,104],[62,112],[52,104],[59,113],[51,114],[58,104],[61,115],[65,116],[71,117],[70,118],[69,119],[50,120]],"affectedFilesPendingEmit":[[75,51],[76,51],[77,51],[78,51],[79,51],[80,51],[81,51],[82,51],[83,51],[84,51],[85,51],[86,51],[87,51],[88,51],[89,51],[90,51],[91,51],[92,51],[93,51],[94,51],[72,51],[54,51],[53,51],[68,51],[63,51],[73,51],[74,51],[66,51],[67,51],[55,51],[64,51],[56,51],[48,51],[60,51],[57,51],[62,51],[52,51],[59,51],[51,51],[58,51],[61,51],[65,51]],"emitSignatures":[48,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94],"version":"5.8.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wsxjs/wsx-core",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "Core WSXJS - Web Components with JSX syntax",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -48,7 +48,7 @@
48
48
  "custom-elements"
49
49
  ],
50
50
  "dependencies": {
51
- "@wsxjs/wsx-logger": "0.0.21"
51
+ "@wsxjs/wsx-logger": "0.0.23"
52
52
  },
53
53
  "devDependencies": {
54
54
  "tsup": "^8.0.0",