@wsxjs/wsx-core 0.0.20 → 0.0.22

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,462 +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 isStandardHTMLAttribute(key) {
129
- const standardAttributes = /* @__PURE__ */ new Set([
130
- // 全局属性
131
- "id",
132
- "class",
133
- "className",
134
- "style",
135
- "title",
136
- "lang",
137
- "dir",
138
- "hidden",
139
- "tabindex",
140
- "accesskey",
141
- "contenteditable",
142
- "draggable",
143
- "spellcheck",
144
- "translate",
145
- "autocapitalize",
146
- "autocorrect",
147
- // 表单属性
148
- "name",
149
- "value",
150
- "type",
151
- "placeholder",
152
- "required",
153
- "disabled",
154
- "readonly",
155
- "checked",
156
- "selected",
157
- "multiple",
158
- "min",
159
- "max",
160
- "step",
161
- "autocomplete",
162
- "autofocus",
163
- "form",
164
- "formaction",
165
- "formenctype",
166
- "formmethod",
167
- "formnovalidate",
168
- "formtarget",
169
- // 链接属性
170
- "href",
171
- "target",
172
- "rel",
173
- "download",
174
- "hreflang",
175
- "ping",
176
- // 媒体属性
177
- "src",
178
- "alt",
179
- "width",
180
- "height",
181
- "poster",
182
- "preload",
183
- "controls",
184
- "autoplay",
185
- "loop",
186
- "muted",
187
- "playsinline",
188
- "crossorigin",
189
- // ARIA 属性(部分常见)
190
- "role"
191
- ]);
192
- const lowerKey = key.toLowerCase();
193
- if (standardAttributes.has(lowerKey)) {
194
- return true;
195
- }
196
- if (lowerKey.startsWith("data-")) {
197
- return true;
198
- }
199
- if (lowerKey.startsWith("aria-")) {
200
- return true;
201
- }
202
- if (key.startsWith("xml:") || key.startsWith("xlink:")) {
203
- return true;
204
- }
205
- return false;
206
- }
207
- function isSpecialProperty(key, value) {
208
- return key === "ref" || key === "className" || key === "class" || key === "style" || key.startsWith("on") && typeof value === "function" || typeof value === "boolean" || key === "value";
209
- }
210
- function setSmartProperty(element, key, value, isSVG = false) {
211
- if (isSpecialProperty(key, value)) {
212
- return;
213
- }
214
- if (isStandardHTMLAttribute(key)) {
215
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
216
- if (typeof value === "object" && value !== null) {
217
- try {
218
- const serialized = JSON.stringify(value);
219
- if (serialized.length > 1024 * 1024) {
220
- console.warn(
221
- `[WSX] Attribute "${key}" value too large, consider using a non-standard property name instead`
222
- );
223
- }
224
- element.setAttribute(attributeName, serialized);
225
- } catch (error) {
226
- console.warn(`[WSX] Cannot serialize attribute "${key}":`, error);
227
- }
228
- } else {
229
- element.setAttribute(attributeName, String(value));
230
- }
231
- return;
232
- }
233
- if (element instanceof SVGElement) {
234
- const attributeName = getSVGAttributeName(key);
235
- if (typeof value === "object" && value !== null) {
236
- try {
237
- const serialized = JSON.stringify(value);
238
- element.setAttribute(attributeName, serialized);
239
- } catch (error) {
240
- console.warn(`[WSX] Cannot serialize SVG attribute "${key}":`, error);
241
- }
242
- } else {
243
- element.setAttribute(attributeName, String(value));
244
- }
245
- return;
246
- }
247
- const hasProperty = key in element || Object.prototype.hasOwnProperty.call(element, key);
248
- if (hasProperty) {
249
- let isReadOnly = false;
250
- try {
251
- const descriptor = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(element), key);
252
- if (descriptor) {
253
- isReadOnly = descriptor.get !== void 0 && descriptor.set === void 0 || descriptor.writable === false && descriptor.set === void 0;
254
- }
255
- } catch {
256
- }
257
- if (isReadOnly) {
258
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
259
- if (typeof value === "object" && value !== null) {
260
- try {
261
- const serialized = JSON.stringify(value);
262
- element.setAttribute(attributeName, serialized);
263
- } catch (error) {
264
- console.warn(`[WSX] Cannot serialize readonly property "${key}":`, error);
265
- }
266
- } else {
267
- element.setAttribute(attributeName, String(value));
268
- }
269
- } else {
270
- try {
271
- element[key] = value;
272
- } catch {
273
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
274
- if (typeof value === "object" && value !== null) {
275
- try {
276
- const serialized = JSON.stringify(value);
277
- element.setAttribute(attributeName, serialized);
278
- } catch (error) {
279
- console.warn(
280
- `[WSX] Cannot serialize property "${key}" for attribute:`,
281
- error
282
- );
283
- }
284
- } else {
285
- element.setAttribute(attributeName, String(value));
286
- }
287
- }
288
- }
289
- } else {
290
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
291
- if (typeof value === "object" && value !== null) {
292
- try {
293
- const serialized = JSON.stringify(value);
294
- if (serialized.length > 1024 * 1024) {
295
- console.warn(
296
- `[WSX] Property "${key}" value too large for attribute, consider using a JavaScript property instead`
297
- );
298
- }
299
- element.setAttribute(attributeName, serialized);
300
- } catch (error) {
301
- console.warn(`[WSX] Cannot serialize property "${key}" for attribute:`, error);
302
- }
303
- } else {
304
- element.setAttribute(attributeName, String(value));
305
- }
306
- }
307
- }
308
- function h(tag, props = {}, ...children) {
309
- if (typeof tag === "function") {
310
- return tag(props, children);
311
- }
312
- const element = createElement(tag);
313
- if (props) {
314
- const isSVG = shouldUseSVGNamespace(tag);
315
- Object.entries(props).forEach(([key, value]) => {
316
- if (value === null || value === void 0 || value === false) {
317
- return;
318
- }
319
- if (key === "ref" && typeof value === "function") {
320
- value(element);
321
- } else if (key === "className" || key === "class") {
322
- if (isSVG) {
323
- element.setAttribute("class", value);
324
- } else {
325
- element.className = value;
326
- }
327
- } else if (key === "style" && typeof value === "string") {
328
- element.setAttribute("style", value);
329
- } else if (key.startsWith("on") && typeof value === "function") {
330
- const eventName = key.slice(2).toLowerCase();
331
- element.addEventListener(eventName, value);
332
- } else if (typeof value === "boolean") {
333
- if (value) {
334
- element.setAttribute(key, "");
335
- }
336
- } else if (key === "value") {
337
- if (element instanceof HTMLInputElement || element instanceof HTMLTextAreaElement || element instanceof HTMLSelectElement) {
338
- element.value = String(value);
339
- } else {
340
- const attributeName = isSVG ? getSVGAttributeName(key) : key;
341
- element.setAttribute(attributeName, String(value));
342
- }
343
- } else {
344
- setSmartProperty(element, key, value, isSVG);
345
- }
346
- });
347
- }
348
- const flatChildren = flattenChildren(children);
349
- flatChildren.forEach((child) => {
350
- if (child === null || child === void 0 || child === false) {
351
- return;
352
- }
353
- if (typeof child === "string" || typeof child === "number") {
354
- element.appendChild(document.createTextNode(String(child)));
355
- } else if (child instanceof HTMLElement || child instanceof SVGElement) {
356
- element.appendChild(child);
357
- } else if (child instanceof DocumentFragment) {
358
- element.appendChild(child);
359
- }
360
- });
361
- return element;
362
- }
363
- function isHTMLString(str) {
364
- const trimmed = str.trim();
365
- if (!trimmed) return false;
366
- const htmlTagPattern = /<[a-z][a-z0-9]*(\s[^>]*)?(\/>|>)/i;
367
- const looksLikeMath = /^[^<]*<[^>]*>[^>]*$/.test(trimmed) && !htmlTagPattern.test(trimmed);
368
- if (looksLikeMath) return false;
369
- return htmlTagPattern.test(trimmed);
370
- }
371
- function flattenChildren(children, skipHTMLDetection = false, depth = 0) {
372
- if (depth > 10) {
373
- console.warn(
374
- "[WSX] flattenChildren: Maximum depth exceeded, treating remaining children as text"
375
- );
376
- return children.filter(
377
- (child) => typeof child === "string" || typeof child === "number"
378
- );
379
- }
380
- const result = [];
381
- for (const child of children) {
382
- if (child === null || child === void 0 || child === false) {
383
- continue;
384
- } else if (Array.isArray(child)) {
385
- result.push(...flattenChildren(child, skipHTMLDetection, depth + 1));
386
- } else if (typeof child === "string") {
387
- if (skipHTMLDetection) {
388
- result.push(child);
389
- } else if (isHTMLString(child)) {
390
- try {
391
- const nodes = parseHTMLToNodes(child);
392
- if (nodes.length > 0) {
393
- for (const node of nodes) {
394
- if (typeof node === "string") {
395
- result.push(node);
396
- } else {
397
- result.push(node);
398
- }
399
- }
400
- } else {
401
- result.push(child);
402
- }
403
- } catch (error) {
404
- console.warn("[WSX] Failed to parse HTML string, treating as text:", error);
405
- result.push(child);
406
- }
407
- } else {
408
- result.push(child);
409
- }
410
- } else {
411
- result.push(child);
412
- }
413
- }
414
- return result;
415
- }
416
- function Fragment(_props, children) {
417
- const fragment = document.createDocumentFragment();
418
- const flatChildren = flattenChildren(children);
419
- flatChildren.forEach((child) => {
420
- if (child === null || child === void 0 || child === false) {
421
- return;
422
- }
423
- if (typeof child === "string" || typeof child === "number") {
424
- fragment.appendChild(document.createTextNode(String(child)));
425
- } else if (child instanceof HTMLElement || child instanceof SVGElement) {
426
- fragment.appendChild(child);
427
- } else if (child instanceof DocumentFragment) {
428
- fragment.appendChild(child);
429
- }
430
- });
431
- return fragment;
432
- }
433
- function jsx(tag, props) {
434
- if (!props) {
435
- return h(tag, null);
436
- }
437
- const { children, ...restProps } = props;
438
- if (children !== void 0 && children !== null) {
439
- const childrenArray = Array.isArray(children) ? children : [children];
440
- return h(tag, restProps, ...childrenArray);
441
- }
442
- return h(tag, restProps);
443
- }
444
- function jsxs(tag, props) {
445
- if (!props) {
446
- return h(tag, null);
447
- }
448
- const { children, ...restProps } = props;
449
- if (Array.isArray(children)) {
450
- return h(tag, restProps, ...children);
451
- } else if (children !== void 0 && children !== null) {
452
- return h(tag, restProps, children);
453
- }
454
- return h(tag, restProps);
455
- }
456
-
457
- export {
458
- h,
459
- Fragment,
460
- jsx,
461
- jsxs
462
- };
@@ -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","../../../node_modules/.pnpm/loglevel@1.9.2/node_modules/loglevel/index.d.ts","../../logger/dist/index.d.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__/smart-property-assignment.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":[[74],[76,79],[72,78],[76],[73,77],[75],[49,50,62],[50,57,62],[50,56,57,62],[50,62],[50,56,62],[62],[54,62],[50,51,53,54,56,57,58,62,63],[48,49,62],[50,53,55,62],[53,62],[50,51,53,55,62],[60,61],[60],[59],[52]],"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},"a2d11f94d9a2763a19430da7aa846ed2bddd53c76fa3f14d13d88bb4934f2579","d9378f1d2add3a8ef09a80ceb45c7538f791e4814486f6f87c1f75b8770f0087","19ecfd858f27b7e87d132d22bd2575f68018976e8c5eec44b7557660a54e08e1","752a4c5da1ed657428bfe7047a43b9166d20ac19c33d840eabce154f9f5df55b",{"version":"4aa7fdc017a0a097c71ada2ca187e1475c987b4f933960c0792eb143997e4709","impliedFormat":1},"65f3f541c306088b14dfde53f7f67f2eb6234597ba74801ee5a2e44df7f9d860","3bbe77bad784daab0ac850c6f8c2b023b3710db3060a3aeabe21c596dc5f0a4e","a06838dad2d7796480c030cb18248fcc2426fd4d375815605f11c541e8fae335","43b40612ad49a6037dd0ba70ff6756a2061c43a222b7662857aa2b050463b9b1","cdf1b6ea25f550c5b3a30c3586e2022659e21854056af3bca69206b4a74265f9","a53adc49fae50b1d885d47272fd7aea88ff0b94ad9a09a2a65974f5fe471850d","f33cac031ee04cafbc468177540c251ba1630f0e6f5f4eeeae2103b7ef7b4758","2261a58ed7f7ced3c20de3753f86aaf4cb80ca718340d532083f9dd8febe6a87","884a9ee6ee9ff94877b6819c427264ce8abd52a279707df0981e0beb520d08f7","3738a73aea7d44b8dc355a1d9412abe6a0493a22edb29a5f08e9b02667134b41","464b245ec63af0bc42fef5f74fc475b115fc9e93512fb0d13779ccf25f292a99","4c5dad0fedb9673bc9b978f89d8c735d822ab75dede69b2bff8f20675c06d5de",{"version":"a8b4590bd7202b0be959940994ef48c7e691c9b27d801b6a2ccf9cf9465343bf","affectsGlobalScope":true},"89fa01b584a104cc2e17900f8bcabaffbcab38908c8acc6422e24e27a7dbca5b","8873e9704caaf70f835f8394d09859b7543cb424cf30fb1d1949193f0d57da03","0417587f3573e747db27c92410d078affb8b8bbb9d74edf38209ec563bb1dcd5","084104d236d7263594343ab8be09e1472dfa8bc4a6787d7c73c8e362ae62b3c1","ee4d984eff6c775b61d5b0e50c9ba9b989a84d36929959d4b68ca5b33dae6310","b0c84003af094406e722c9519bb83d54e0609f488fa529fe430b1378a8c9db42",{"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,51],[54,60],[63,71]],"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":[[75,1],[80,2],[79,3],[77,4],[78,5],[76,6],[67,7],[68,8],[69,9],[70,10],[71,11],[63,12],[55,13],[59,14],[50,15],[64,10],[65,10],[57,16],[58,12],[51,12],[49,12],[66,12],[54,17],[48,12],[56,18],[62,19],[61,20],[60,21],[53,22]],"affectedFilesPendingEmit":[[67,51],[68,51],[69,51],[70,51],[71,51],[63,51],[55,51],[59,51],[50,51],[64,51],[65,51],[57,51],[58,51],[51,51],[49,51],[66,51],[54,51],[48,51],[56,51]],"emitSignatures":[48,49,50,51,54,55,56,57,58,59,63,64,65,66,67,68,69,70,71],"version":"5.8.3"}