@wsxjs/wsx-core 0.0.18 → 0.0.19

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.
@@ -1,265 +0,0 @@
1
- // src/utils/svg-utils.ts
2
- var SVG_NAMESPACE = "http://www.w3.org/2000/svg";
3
- var SVG_ONLY_ELEMENTS = /* @__PURE__ */ new Set([
4
- // 结构元素 (Structural elements)
5
- "svg",
6
- "defs",
7
- "g",
8
- "symbol",
9
- "use",
10
- // 图形元素 (Graphics elements)
11
- "circle",
12
- "ellipse",
13
- "line",
14
- "path",
15
- "polygon",
16
- "polyline",
17
- "rect",
18
- // 文本元素 (Text elements)
19
- "textPath",
20
- "tspan",
21
- // 渐变和模式 (Gradients and patterns)
22
- "linearGradient",
23
- "radialGradient",
24
- "stop",
25
- "pattern",
26
- // 滤镜 (Filter elements)
27
- "filter",
28
- "feBlend",
29
- "feColorMatrix",
30
- "feComponentTransfer",
31
- "feComposite",
32
- "feConvolveMatrix",
33
- "feDiffuseLighting",
34
- "feDisplacementMap",
35
- "feDistantLight",
36
- "feDropShadow",
37
- "feFlood",
38
- "feFuncA",
39
- "feFuncB",
40
- "feFuncG",
41
- "feFuncR",
42
- "feGaussianBlur",
43
- "feImage",
44
- "feMerge",
45
- "feMergeNode",
46
- "feMorphology",
47
- "feOffset",
48
- "fePointLight",
49
- "feSpecularLighting",
50
- "feSpotLight",
51
- "feTile",
52
- "feTurbulence",
53
- // 动画元素 (Animation elements)
54
- "animate",
55
- "animateMotion",
56
- "animateTransform",
57
- "set",
58
- // 其他元素 (Other elements)
59
- "clipPath",
60
- "foreignObject",
61
- "marker",
62
- "mask",
63
- "metadata",
64
- "switch",
65
- "desc"
66
- ]);
67
- var DUAL_ELEMENTS = /* @__PURE__ */ new Set(["image", "style", "title", "text"]);
68
- var FORCE_HTML_ELEMENTS = /* @__PURE__ */ new Set(["a"]);
69
- var SVG_ELEMENTS = /* @__PURE__ */ new Set([
70
- ...SVG_ONLY_ELEMENTS,
71
- ...DUAL_ELEMENTS,
72
- ...FORCE_HTML_ELEMENTS
73
- ]);
74
- var svgContext = false;
75
- function isSVGOnlyElement(tagName) {
76
- return SVG_ONLY_ELEMENTS.has(tagName);
77
- }
78
- function isDualElement(tagName) {
79
- return DUAL_ELEMENTS.has(tagName);
80
- }
81
- function isForceHTMLElement(tagName) {
82
- return FORCE_HTML_ELEMENTS.has(tagName);
83
- }
84
- function setSVGContext(inSVG) {
85
- svgContext = inSVG;
86
- }
87
- function createElement(tagName) {
88
- if (isForceHTMLElement(tagName)) {
89
- return document.createElement(tagName);
90
- }
91
- if (isSVGOnlyElement(tagName)) {
92
- setSVGContext(true);
93
- return document.createElementNS(SVG_NAMESPACE, tagName);
94
- }
95
- if (isDualElement(tagName)) {
96
- if (svgContext) {
97
- return document.createElementNS(SVG_NAMESPACE, tagName);
98
- }
99
- }
100
- return document.createElement(tagName);
101
- }
102
- function shouldUseSVGNamespace(tagName) {
103
- return isSVGOnlyElement(tagName) || isDualElement(tagName) && svgContext;
104
- }
105
- var SVG_ATTRIBUTE_MAP = /* @__PURE__ */ new Map([
106
- ["className", "class"],
107
- ["htmlFor", "for"]
108
- ]);
109
- function getSVGAttributeName(attributeName) {
110
- return SVG_ATTRIBUTE_MAP.get(attributeName) || attributeName;
111
- }
112
-
113
- // src/utils/dom-utils.ts
114
- function parseHTMLToNodes(html) {
115
- if (!html) return [];
116
- const temp = document.createElement("div");
117
- temp.innerHTML = html;
118
- return Array.from(temp.childNodes).map((node) => {
119
- if (node instanceof HTMLElement || node instanceof SVGElement) {
120
- return node;
121
- } else {
122
- return node.textContent || "";
123
- }
124
- });
125
- }
126
-
127
- // src/jsx-factory.ts
128
- function h(tag, props = {}, ...children) {
129
- if (typeof tag === "function") {
130
- return tag(props, children);
131
- }
132
- const element = createElement(tag);
133
- if (props) {
134
- const isSVG = shouldUseSVGNamespace(tag);
135
- Object.entries(props).forEach(([key, value]) => {
136
- if (value === null || value === void 0 || value === false) {
137
- return;
138
- }
139
- if (key === "ref" && typeof value === "function") {
140
- value(element);
141
- } else if (key === "className" || key === "class") {
142
- if (isSVG) {
143
- element.setAttribute("class", value);
144
- } else {
145
- element.className = value;
146
- }
147
- } else if (key === "style" && typeof value === "string") {
148
- element.setAttribute("style", value);
149
- } else if (key.startsWith("on") && typeof value === "function") {
150
- const eventName = key.slice(2).toLowerCase();
151
- element.addEventListener(eventName, value);
152
- } else if (typeof value === "boolean") {
153
- if (value) {
154
- element.setAttribute(key, "");
155
- }
156
- } else if (key === "value") {
157
- if (element instanceof HTMLInputElement || element instanceof HTMLTextAreaElement || element instanceof HTMLSelectElement) {
158
- element.value = String(value);
159
- } else {
160
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
161
- element.setAttribute(attributeName, String(value));
162
- }
163
- } else {
164
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
165
- element.setAttribute(attributeName, String(value));
166
- }
167
- });
168
- }
169
- const flatChildren = flattenChildren(children);
170
- flatChildren.forEach((child) => {
171
- if (child === null || child === void 0 || child === false) {
172
- return;
173
- }
174
- if (typeof child === "string" || typeof child === "number") {
175
- element.appendChild(document.createTextNode(String(child)));
176
- } else if (child instanceof HTMLElement || child instanceof SVGElement) {
177
- element.appendChild(child);
178
- } else if (child instanceof DocumentFragment) {
179
- element.appendChild(child);
180
- }
181
- });
182
- return element;
183
- }
184
- function isHTMLString(str) {
185
- const htmlTagPattern = /<[a-z][\s\S]*>/i;
186
- return htmlTagPattern.test(str.trim());
187
- }
188
- function flattenChildren(children, skipHTMLDetection = false) {
189
- const result = [];
190
- for (const child of children) {
191
- if (child === null || child === void 0 || child === false) {
192
- continue;
193
- } else if (Array.isArray(child)) {
194
- result.push(...flattenChildren(child, skipHTMLDetection));
195
- } else if (typeof child === "string") {
196
- if (skipHTMLDetection) {
197
- result.push(child);
198
- } else if (isHTMLString(child)) {
199
- try {
200
- const nodes = parseHTMLToNodes(child);
201
- if (nodes.length > 0) {
202
- result.push(...flattenChildren(nodes, true));
203
- } else {
204
- result.push(child);
205
- }
206
- } catch (error) {
207
- console.warn("[WSX] Failed to parse HTML string, treating as text:", error);
208
- result.push(child);
209
- }
210
- } else {
211
- result.push(child);
212
- }
213
- } else {
214
- result.push(child);
215
- }
216
- }
217
- return result;
218
- }
219
- function Fragment(_props, children) {
220
- const fragment = document.createDocumentFragment();
221
- const flatChildren = flattenChildren(children);
222
- flatChildren.forEach((child) => {
223
- if (child === null || child === void 0 || child === false) {
224
- return;
225
- }
226
- if (typeof child === "string" || typeof child === "number") {
227
- fragment.appendChild(document.createTextNode(String(child)));
228
- } else if (child instanceof HTMLElement || child instanceof SVGElement) {
229
- fragment.appendChild(child);
230
- } else if (child instanceof DocumentFragment) {
231
- fragment.appendChild(child);
232
- }
233
- });
234
- return fragment;
235
- }
236
- function jsx(tag, props) {
237
- if (!props) {
238
- return h(tag, null);
239
- }
240
- const { children, ...restProps } = props;
241
- if (children !== void 0 && children !== null) {
242
- const childrenArray = Array.isArray(children) ? children : [children];
243
- return h(tag, restProps, ...childrenArray);
244
- }
245
- return h(tag, restProps);
246
- }
247
- function jsxs(tag, props) {
248
- if (!props) {
249
- return h(tag, null);
250
- }
251
- const { children, ...restProps } = props;
252
- if (Array.isArray(children)) {
253
- return h(tag, restProps, ...children);
254
- } else if (children !== void 0 && children !== null) {
255
- return h(tag, restProps, children);
256
- }
257
- return h(tag, restProps);
258
- }
259
-
260
- export {
261
- h,
262
- Fragment,
263
- jsx,
264
- jsxs
265
- };
@@ -1 +0,0 @@
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/svg-utils.ts","../src/utils/dom-utils.ts","../src/jsx-factory.ts","../src/styles/style-manager.ts","../src/utils/reactive.ts","../src/base-component.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","../src/utils/logger.ts","../__tests__/jsx-factory.test.ts","../__tests__/light-component.test.ts","../__tests__/rerender-scheduling.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"],"fileIdsList":[[71],[73,76],[69,75],[73],[70,74],[72],[49,50,60],[50,55,60],[50,54,55,60],[50,54,60],[60],[52,60],[50,51,52,54,55,56,60,61],[48,49,60],[50,60],[50,53,60],[50,51,53,60],[58,59],[58],[57]],"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},{"version":"a2d11f94d9a2763a19430da7aa846ed2bddd53c76fa3f14d13d88bb4934f2579","signature":"cec6057e272abbdfc02d1433673336fd687aad580e163cdd627a90ad4ed716cf"},{"version":"d9378f1d2add3a8ef09a80ceb45c7538f791e4814486f6f87c1f75b8770f0087","signature":"5835dbaa110fe1c7ae6c7482f19867579825f5303f4066c7d2b80f0cea3a47ab"},{"version":"386fc96ef9997aa647f463f05a54a8d8e9a710e4680c327d5b01f98db8ddcf54","signature":"561fdc0c061685e2905e4133e9d88b620a10464797aaf7723bb2f3befd540daf"},{"version":"752a4c5da1ed657428bfe7047a43b9166d20ac19c33d840eabce154f9f5df55b","signature":"d95506b4fdfe57cd529b9c58a135874675e55ea61af695dced5c2470e06bf72e"},{"version":"3bbe77bad784daab0ac850c6f8c2b023b3710db3060a3aeabe21c596dc5f0a4e","signature":"c3c8bb1e674fa5487577749298939ce77343b64e559365de53efff5210368db8"},{"version":"a06838dad2d7796480c030cb18248fcc2426fd4d375815605f11c541e8fae335","signature":"4d0774c5c27bb1cb2e2cdb7fe8c38d26ad54843aea29abb45e18dc0b861936ca"},{"version":"43b40612ad49a6037dd0ba70ff6756a2061c43a222b7662857aa2b050463b9b1","signature":"5a198186bd2142e00dd9b832100c0842fd224b7eb8f77d60c3817b8a43fafa81"},{"version":"cdf1b6ea25f550c5b3a30c3586e2022659e21854056af3bca69206b4a74265f9","signature":"a6330560f70bacf120f1128385b63322e3dc0007fd7e8590cb52798adf183132"},{"version":"a53adc49fae50b1d885d47272fd7aea88ff0b94ad9a09a2a65974f5fe471850d","signature":"bd07eed78e47fb3f0f890786656a84b1fc16ac0619e58886b16ff3d06d431140"},{"version":"f33cac031ee04cafbc468177540c251ba1630f0e6f5f4eeeae2103b7ef7b4758","signature":"13ec2b73e77137696854373b8862fff1f0b662da0681c1c17aa5bf9c6e269bce"},"2261a58ed7f7ced3c20de3753f86aaf4cb80ca718340d532083f9dd8febe6a87","884a9ee6ee9ff94877b6819c427264ce8abd52a279707df0981e0beb520d08f7","3738a73aea7d44b8dc355a1d9412abe6a0493a22edb29a5f08e9b02667134b41",{"version":"464b245ec63af0bc42fef5f74fc475b115fc9e93512fb0d13779ccf25f292a99","signature":"baf4737d7be2e05100ff45f00af9af783a268b79098062f1fac9d4cdd43d5196"},{"version":"4c5dad0fedb9673bc9b978f89d8c735d822ab75dede69b2bff8f20675c06d5de","signature":"42d27d57ab8e0a9a6cbeb54b030b2032313d0bce1222ccff4fe72d4e6b0f0133"},{"version":"a8b4590bd7202b0be959940994ef48c7e691c9b27d801b6a2ccf9cf9465343bf","signature":"b3daf7395987bda21eaa9c923ffb52122f2bcb682764b11d2b5e7865148852c0","affectsGlobalScope":true},{"version":"89fa01b584a104cc2e17900f8bcabaffbcab38908c8acc6422e24e27a7dbca5b","signature":"73eb368e1869df22054db0bc98f6f9f0a50190991f5b6d9f360d420d3302159b"},{"version":"8873e9704caaf70f835f8394d09859b7543cb424cf30fb1d1949193f0d57da03","signature":"6d7c16825413c99fb96e7d4d88b967c58b1d50caf110db78753a7414ce464e47"},{"version":"0417587f3573e747db27c92410d078affb8b8bbb9d74edf38209ec563bb1dcd5","signature":"547b92a2ed1da7ef51dd3b2abab7c020a888a21af7e1d0b3700ecc84439ae6ee"},{"version":"3af9724fa424683973bf9be66b27befac549f06f74040a552aab203562195a9c","signature":"8f6081ae715501533ecbc79415de1736a1fb7f2a80b1b5d90a56a89c1ce8138a"},{"version":"b0c84003af094406e722c9519bb83d54e0609f488fa529fe430b1378a8c9db42","signature":"52136838102b6d8be32571c853cb0677776ad63509986c3299e8e03864757ea8"},{"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}],"root":[[48,58],[61,68]],"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":[[72,1],[77,2],[76,3],[74,4],[75,5],[73,6],[65,7],[66,8],[67,9],[68,10],[61,11],[53,12],[57,13],[50,14],[62,15],[63,15],[55,16],[56,11],[51,11],[49,11],[64,11],[52,11],[48,11],[54,17],[60,18],[59,19],[58,20]],"semanticDiagnosticsPerFile":[[52,[{"start":116,"length":19,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module '@wsxjs/wsx-logger'. '/Volumes/ORICO/ws/prj/wsx/wsxjs/packages/logger/dist/index.js' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"@wsxjs/wsx-logger","mode":99}}]}}]],[54,[{"start":385,"length":19,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module '@wsxjs/wsx-logger'. '/Volumes/ORICO/ws/prj/wsx/wsxjs/packages/logger/dist/index.js' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"@wsxjs/wsx-logger","mode":99}}]}}]],[55,[{"start":319,"length":19,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module '@wsxjs/wsx-logger'. '/Volumes/ORICO/ws/prj/wsx/wsxjs/packages/logger/dist/index.js' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"@wsxjs/wsx-logger","mode":99}}]}}]],[57,[{"start":439,"length":19,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module '@wsxjs/wsx-logger'. '/Volumes/ORICO/ws/prj/wsx/wsxjs/packages/logger/dist/index.js' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"@wsxjs/wsx-logger","mode":99}}]}},{"start":498,"length":19,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module '@wsxjs/wsx-logger'. '/Volumes/ORICO/ws/prj/wsx/wsxjs/packages/logger/dist/index.js' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"@wsxjs/wsx-logger","mode":99}}]}}]]],"affectedFilesPendingEmit":[65,66,67,68,61,53,57,50,62,63,55,56,51,49,64,52,48,54],"emitSignatures":[48,49,50,51,52,53,54,55,56,57,61,62,63,64,65,66,67,68],"version":"5.8.3"}