@podlite/to-jsx 0.0.14 → 0.0.16
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/CHANGELOG.md +4 -0
- package/LICENSE +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +47 -84
- package/lib/index.js.map +1 -1
- package/package.json +9 -5
- package/src/index.tsx +14 -56
- package/t/index.component.spec.tsx +56 -43
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/LICENSE
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { PodliteExport } from 'podlite';
|
|
|
3
3
|
import { PodNode } from '@podlite/schema';
|
|
4
4
|
export declare type CreateElement = typeof React.createElement;
|
|
5
5
|
export interface WrapElement {
|
|
6
|
-
(node: PodNode,
|
|
6
|
+
(node: PodNode, children: React.ReactChild, ctx: any): JSX.Element;
|
|
7
7
|
}
|
|
8
8
|
export declare const Podlite: React.FC<{
|
|
9
9
|
[key: string]: any;
|
|
@@ -17,7 +17,7 @@ export declare const TestPodlite: ({ children, ...options }: {
|
|
|
17
17
|
[x: string]: any;
|
|
18
18
|
children: any;
|
|
19
19
|
}) => JSX.Element;
|
|
20
|
-
export declare const makeTestPodlite: (podlite?:
|
|
20
|
+
export declare const makeTestPodlite: (podlite?: any) => ({ children, ...options }: {
|
|
21
21
|
[x: string]: any;
|
|
22
22
|
children: any;
|
|
23
23
|
}) => JSX.Element;
|
package/lib/index.js
CHANGED
|
@@ -14,16 +14,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14
14
|
exports.makeTestPodlite = exports.TestPodlite = exports.Podlite = void 0;
|
|
15
15
|
const React = require("react");
|
|
16
16
|
const react_1 = require("react");
|
|
17
|
-
const exportAny_1 = require("pod6/built/exportAny");
|
|
18
|
-
const handlers_1 = require("pod6/built/helpers/handlers");
|
|
19
|
-
const plugin_clean_location_1 = require("pod6/built/plugin-clean-location");
|
|
20
|
-
const config_1 = require("pod6/built/helpers/config");
|
|
21
|
-
const makeTransformer_1 = require("pod6/built/helpers/makeTransformer");
|
|
22
|
-
const pod6_1 = require("pod6");
|
|
23
|
-
const writer_1 = require("pod6/built/writer");
|
|
24
17
|
const podlite_1 = require("podlite");
|
|
25
|
-
const diagram_1 = require("@podlite/diagram");
|
|
26
18
|
const schema_1 = require("@podlite/schema");
|
|
19
|
+
const schema_2 = require("@podlite/schema");
|
|
27
20
|
const helperMakeReact = ({ wrapElement }) => {
|
|
28
21
|
let i_key_i = 0;
|
|
29
22
|
let mapByType = {};
|
|
@@ -35,7 +28,7 @@ const helperMakeReact = ({ wrapElement }) => {
|
|
|
35
28
|
++mapByType[type_idx];
|
|
36
29
|
return `${type_idx}_${mapByType[type_idx]}`;
|
|
37
30
|
};
|
|
38
|
-
return function (src, node, children, extraProps = {}) {
|
|
31
|
+
return function (src, node, children, extraProps = {}, ctx = {}) {
|
|
39
32
|
// for string return it
|
|
40
33
|
if (typeof node == 'string') {
|
|
41
34
|
return node;
|
|
@@ -50,7 +43,7 @@ const helperMakeReact = ({ wrapElement }) => {
|
|
|
50
43
|
// throw new Error(`Bad React element for ${ruleName} rule `)
|
|
51
44
|
// }
|
|
52
45
|
if (typeof wrapElement === 'function') {
|
|
53
|
-
return wrapElement(node, result);
|
|
46
|
+
return wrapElement(node, result, ctx);
|
|
54
47
|
}
|
|
55
48
|
return result;
|
|
56
49
|
};
|
|
@@ -63,18 +56,19 @@ const Podlite = (_a) => {
|
|
|
63
56
|
exports.Podlite = Podlite;
|
|
64
57
|
const mapToReact = (makeComponent) => {
|
|
65
58
|
const mkComponent = (src) => (writer, processor) => (node, ctx, interator) => {
|
|
59
|
+
var _a;
|
|
66
60
|
// prepare extraProps for createElement
|
|
67
61
|
// add id attribute if exists
|
|
68
|
-
const id = (0, schema_1.getNodeId)(node, ctx);
|
|
62
|
+
const id = (_a = (0, schema_1.getNodeId)(node, ctx)) === null || _a === void 0 ? void 0 : _a.replace(/\s/g, '-');
|
|
69
63
|
// check if node.content defined
|
|
70
|
-
return makeComponent(src, node, 'content' in node ? interator(node.content, Object.assign({}, ctx)) : [], { id });
|
|
64
|
+
return makeComponent(src, node, 'content' in node ? interator(node.content, Object.assign({}, ctx)) : [], { id }, ctx);
|
|
71
65
|
};
|
|
72
66
|
// Handle nested block and :nested block attribute
|
|
73
67
|
const handleNested = (defaultHandler, implicitLevel) => {
|
|
74
68
|
return (writer, processor) => {
|
|
75
69
|
const defaultHandlerInited = defaultHandler(writer, processor);
|
|
76
70
|
return (node, ctx, interator) => {
|
|
77
|
-
const nesting = (0,
|
|
71
|
+
const nesting = (0, schema_1.makeAttrs)(node, ctx).getFirstValue('nested') || implicitLevel;
|
|
78
72
|
const children = defaultHandlerInited(node, ctx, interator);
|
|
79
73
|
// if no nesting needs - simply return children
|
|
80
74
|
if (!nesting) {
|
|
@@ -87,96 +81,63 @@ const mapToReact = (makeComponent) => {
|
|
|
87
81
|
};
|
|
88
82
|
return {
|
|
89
83
|
'pod': mkComponent('div'),
|
|
90
|
-
'root':
|
|
91
|
-
'data': (0,
|
|
92
|
-
':ambient': (0,
|
|
84
|
+
'root': schema_1.content,
|
|
85
|
+
'data': (0, schema_1.emptyContent)(),
|
|
86
|
+
':ambient': (0, schema_1.emptyContent)(),
|
|
93
87
|
':code': mkComponent(({ children, key }) => React.createElement("code", { key: key },
|
|
94
88
|
React.createElement("pre", null, children))),
|
|
95
89
|
'code': mkComponent(({ children, key }) => React.createElement("code", { key: key },
|
|
96
90
|
React.createElement("pre", null, children))),
|
|
97
|
-
'
|
|
98
|
-
|
|
99
|
-
':image': (0, handlers_1.setFn)((node, ctx) => {
|
|
100
|
-
const linkTo = ctx.link;
|
|
101
|
-
return mkComponent(({ children, key }) => {
|
|
102
|
-
const Img = node.src.match(/(mp4|mov)$/)
|
|
103
|
-
? React.createElement("video", { controls: true, key: key },
|
|
104
|
-
" ",
|
|
105
|
-
React.createElement("source", { src: node.src, type: "video/mp4" }),
|
|
106
|
-
" ")
|
|
107
|
-
: React.createElement("img", { key: key, src: node.src, alt: node.alt });
|
|
108
|
-
return linkTo ? React.createElement("a", { key: key, href: linkTo }, Img) : Img;
|
|
109
|
-
});
|
|
110
|
-
}),
|
|
111
|
-
'caption': mkComponent(({ children, key }) => React.createElement("div", { className: "caption", key: key }, children))
|
|
112
|
-
}, (0, handlers_1.setFn)((node, ctx) => {
|
|
113
|
-
const { level } = node;
|
|
114
|
-
const id = (0, schema_1.getNodeId)(node, ctx);
|
|
115
|
-
const conf = (0, config_1.default)(node, ctx);
|
|
116
|
-
if (conf.exists('link')) {
|
|
117
|
-
ctx.link = conf.getFirstValue('link');
|
|
118
|
-
}
|
|
119
|
-
return mkComponent(({ children, key }) => React.createElement("div", { className: "image_block", key: key, id: id }, children));
|
|
120
|
-
})),
|
|
121
|
-
'image': handlers_1.content,
|
|
122
|
-
':image': (0, handlers_1.setFn)((node, ctx) => {
|
|
91
|
+
'image': schema_1.content,
|
|
92
|
+
':image': (0, schema_1.setFn)((node, ctx) => {
|
|
123
93
|
return mkComponent(({ children, key }) => React.createElement("img", { key: key, src: node.src, alt: node.alt }));
|
|
124
94
|
}),
|
|
125
|
-
'Diagram': () => (node, ctx, interator) => {
|
|
126
|
-
const conf = (0, config_1.default)(node, ctx);
|
|
127
|
-
const caption = conf.exists("caption")
|
|
128
|
-
? conf.getFirstValue("caption")
|
|
129
|
-
: null;
|
|
130
|
-
const id = (0, schema_1.getNodeId)(node, ctx);
|
|
131
|
-
return makeComponent(({ children, key }) => {
|
|
132
|
-
return React.createElement(diagram_1.default, { id: id, isError: node.custom, caption: caption, chart: node.content[0].value });
|
|
133
|
-
}, node, interator(node.content, Object.assign({}, ctx)));
|
|
134
|
-
},
|
|
135
95
|
':text': (writer, processor) => (node, ctx, interator) => {
|
|
136
96
|
return node.value;
|
|
137
97
|
},
|
|
138
98
|
':verbatim': (writer, processor) => (node, ctx, interator) => {
|
|
139
99
|
return node.value;
|
|
140
100
|
},
|
|
141
|
-
'head:block': (0,
|
|
101
|
+
'head:block': (0, schema_1.subUse)({
|
|
142
102
|
// inside head don't wrap into <p>
|
|
143
|
-
':para':
|
|
144
|
-
}, (0,
|
|
103
|
+
':para': schema_1.content,
|
|
104
|
+
}, (0, schema_1.setFn)((node, ctx) => {
|
|
105
|
+
var _a;
|
|
145
106
|
const { level } = node;
|
|
146
|
-
const id = (0, schema_1.getNodeId)(node, ctx);
|
|
107
|
+
const id = (_a = (0, schema_1.getNodeId)(node, ctx)) === null || _a === void 0 ? void 0 : _a.replace(/\s/g, '-');
|
|
147
108
|
return mkComponent(({ level, children, key }) => (0, react_1.createElement)(`h${level}`, { key, id }, children));
|
|
148
109
|
})),
|
|
149
|
-
':blankline': (0,
|
|
110
|
+
':blankline': (0, schema_1.emptyContent)(),
|
|
150
111
|
':para': mkComponent('p'),
|
|
151
112
|
'para': mkComponent('div'),
|
|
152
|
-
'comment:block': (0,
|
|
153
|
-
'defn': (0,
|
|
113
|
+
'comment:block': (0, schema_1.emptyContent)(),
|
|
114
|
+
'defn': (0, schema_1.subUse)([
|
|
154
115
|
// to avoid overlap para blocks handlers
|
|
155
116
|
// define general :para at first
|
|
156
117
|
{ ':para': mkComponent('dd') },
|
|
157
118
|
{ 'term:para': mkComponent('dt') },
|
|
158
|
-
],
|
|
159
|
-
"nested": handleNested(
|
|
119
|
+
], schema_1.content),
|
|
120
|
+
"nested": handleNested(schema_1.content, 1),
|
|
160
121
|
'output': mkComponent(({ children, key }) => React.createElement("pre", { key: key },
|
|
161
122
|
React.createElement("samp", null, children))),
|
|
162
123
|
'input': mkComponent(({ children, key }) => React.createElement("pre", { key: key },
|
|
163
124
|
React.createElement("kbd", null, children))),
|
|
164
125
|
// Directives
|
|
165
|
-
':config': (0,
|
|
126
|
+
':config': (0, schema_1.setFn)((node, ctx) => {
|
|
166
127
|
// setup context
|
|
167
128
|
if (!ctx.hasOwnProperty('config'))
|
|
168
129
|
ctx.config = {};
|
|
169
130
|
//collect configs in context
|
|
170
131
|
ctx.config[node.name] = node.config;
|
|
171
|
-
return (0,
|
|
132
|
+
return (0, schema_1.emptyContent)();
|
|
172
133
|
}),
|
|
173
|
-
':alias': (0,
|
|
134
|
+
':alias': (0, schema_1.setFn)((node, ctx) => {
|
|
174
135
|
// set alias
|
|
175
136
|
if (!ctx.hasOwnProperty('alias'))
|
|
176
137
|
ctx.alias = {};
|
|
177
138
|
//collect configs in context
|
|
178
139
|
ctx.alias[node.name] = node.replacement;
|
|
179
|
-
return (0,
|
|
140
|
+
return (0, schema_1.emptyContent)();
|
|
180
141
|
}),
|
|
181
142
|
// Formatting codes
|
|
182
143
|
'A<>': (writer, processor) => (node, ctx, interator) => {
|
|
@@ -195,7 +156,7 @@ const mapToReact = (makeComponent) => {
|
|
|
195
156
|
const src = ctx.alias[term].join('\n');
|
|
196
157
|
const tree_1 = processor(src);
|
|
197
158
|
// now clean locations
|
|
198
|
-
const tree = (0,
|
|
159
|
+
const tree = (0, schema_2.pluginCleanLocation)()(tree_1);
|
|
199
160
|
if (tree[0].type === 'para') {
|
|
200
161
|
return interator(tree[0].content, ctx);
|
|
201
162
|
}
|
|
@@ -292,7 +253,7 @@ const mapToReact = (makeComponent) => {
|
|
|
292
253
|
writer.DEFINITIONS.push({ definition });
|
|
293
254
|
return makeComponent('dfn', node, interator(node.content, ctx));
|
|
294
255
|
},
|
|
295
|
-
"L<>": (0,
|
|
256
|
+
"L<>": (0, schema_1.setFn)((node, ctx) => {
|
|
296
257
|
let { meta } = node;
|
|
297
258
|
if (meta === null) {
|
|
298
259
|
meta = node.content;
|
|
@@ -320,8 +281,8 @@ const mapToReact = (makeComponent) => {
|
|
|
320
281
|
});
|
|
321
282
|
return makeComponent(({ children, key }) => children, {}, Content);
|
|
322
283
|
},
|
|
323
|
-
'V<>':
|
|
324
|
-
'Z<>': (0,
|
|
284
|
+
'V<>': schema_1.content,
|
|
285
|
+
'Z<>': (0, schema_1.emptyContent)(),
|
|
325
286
|
'U<>': mkComponent('u'),
|
|
326
287
|
'X<>': (writer, processor) => (node, ctx, interator) => {
|
|
327
288
|
let { entry } = node;
|
|
@@ -341,7 +302,8 @@ const mapToReact = (makeComponent) => {
|
|
|
341
302
|
'Delete<>': mkComponent('del'),
|
|
342
303
|
// table section
|
|
343
304
|
'table': (writer, processor) => (node, ctx, interator) => {
|
|
344
|
-
|
|
305
|
+
var _a;
|
|
306
|
+
const conf = (0, schema_1.makeAttrs)(node, ctx);
|
|
345
307
|
let attr = { caption: '' };
|
|
346
308
|
if (conf.exists('caption')) {
|
|
347
309
|
const caption = conf.getFirstValue('caption');
|
|
@@ -354,23 +316,24 @@ const mapToReact = (makeComponent) => {
|
|
|
354
316
|
console.warn('[jsx] no content in node');
|
|
355
317
|
return '';
|
|
356
318
|
}
|
|
357
|
-
const id = (0, schema_1.getNodeId)(node, ctx);
|
|
319
|
+
const id = (_a = (0, schema_1.getNodeId)(node, ctx)) === null || _a === void 0 ? void 0 : _a.replace(/\s/g, '-');
|
|
358
320
|
return makeComponent(({ key, children }) => {
|
|
359
321
|
return React.createElement("table", { key: key, id: id },
|
|
360
322
|
React.createElement("caption", { className: "caption" }, attr.caption),
|
|
361
323
|
React.createElement("tbody", null, children));
|
|
362
324
|
}, node, interator(node.content, Object.assign({}, ctx)));
|
|
363
325
|
},
|
|
364
|
-
':separator': (0,
|
|
326
|
+
':separator': (0, schema_1.emptyContent)(),
|
|
365
327
|
'table_row': mkComponent('tr'),
|
|
366
328
|
'table_cell': mkComponent('td'),
|
|
367
|
-
'table_head': (0,
|
|
329
|
+
'table_head': (0, schema_1.subUse)({
|
|
368
330
|
'table_cell': mkComponent('th')
|
|
369
331
|
}, mkComponent('tr')),
|
|
370
|
-
':list': (0,
|
|
332
|
+
':list': (0, schema_1.setFn)((node, ctx) => node.list === 'ordered' ? mkComponent('ol')
|
|
371
333
|
: node.list === 'variable' ? mkComponent('dl')
|
|
372
334
|
: mkComponent('ul')),
|
|
373
335
|
'item:block': (writer, processor) => (node, ctx, interator) => {
|
|
336
|
+
var _a;
|
|
374
337
|
if (typeof node === 'string') {
|
|
375
338
|
return node;
|
|
376
339
|
}
|
|
@@ -382,24 +345,24 @@ const mapToReact = (makeComponent) => {
|
|
|
382
345
|
if (!(node.content instanceof Array)) {
|
|
383
346
|
console.error(node);
|
|
384
347
|
}
|
|
385
|
-
const id = (0, schema_1.getNodeId)(node, ctx);
|
|
348
|
+
const id = (_a = (0, schema_1.getNodeId)(node, ctx)) === null || _a === void 0 ? void 0 : _a.replace(/\s/g, '-');
|
|
386
349
|
return makeComponent('li', node, interator(node.content, Object.assign({}, ctx)), { id });
|
|
387
350
|
},
|
|
388
351
|
// table of content
|
|
389
|
-
':toc': (0,
|
|
352
|
+
':toc': (0, schema_1.setFn)((node, ctx) => {
|
|
390
353
|
const tocTitle = node.title;
|
|
391
354
|
return mkComponent(({ children, key }) => React.createElement("div", { className: "toc", key: key },
|
|
392
355
|
tocTitle ? React.createElement("div", { className: "toctitle" }, tocTitle) : '',
|
|
393
356
|
children));
|
|
394
357
|
}),
|
|
395
|
-
':toc-list': (0,
|
|
358
|
+
':toc-list': (0, schema_1.setFn)((node, ctx) => {
|
|
396
359
|
const { level } = node;
|
|
397
360
|
return mkComponent(({ children, key }) => React.createElement("ul", { className: `toc-list listlevel${level}`, key: key }, children));
|
|
398
361
|
}),
|
|
399
|
-
':toc-item': (0,
|
|
362
|
+
':toc-item': (0, schema_1.subUse)({
|
|
400
363
|
// inside head don't wrap into <p>
|
|
401
|
-
':para':
|
|
402
|
-
}, (0,
|
|
364
|
+
':para': schema_1.content,
|
|
365
|
+
}, (0, schema_1.setFn)((node, ctx) => {
|
|
403
366
|
return mkComponent(({ children, key }) => React.createElement("li", { className: "toc-item", key: key }, children));
|
|
404
367
|
})),
|
|
405
368
|
};
|
|
@@ -419,15 +382,15 @@ function podlite(children, { file, plugins = () => { }, wrapElement, tree }, ...
|
|
|
419
382
|
// initialize each plugin
|
|
420
383
|
const jsxPluginInited = Object.fromEntries(Object.entries(jsxPlugins).map(([key, value]) => [key, value(makeComponent)]));
|
|
421
384
|
const rules = Object.assign(Object.assign(Object.assign({}, mapToReact(makeComponent)), plugins(makeComponent)), jsxPluginInited);
|
|
422
|
-
const writer = new
|
|
385
|
+
const writer = new schema_1.Writer((s) => {
|
|
423
386
|
});
|
|
424
|
-
const res = (0,
|
|
387
|
+
const res = (0, schema_1.toAny)({ processor: schema_1.parse })
|
|
425
388
|
.use({ '*:*': () => (node, ctx, interator) => {
|
|
426
389
|
// skip named blocks
|
|
427
|
-
if ((0,
|
|
390
|
+
if ((0, schema_1.isNamedBlock)(node.name)) {
|
|
428
391
|
return null;
|
|
429
392
|
}
|
|
430
|
-
if ((0,
|
|
393
|
+
if ((0, schema_1.isSemanticBlock)(node)) {
|
|
431
394
|
return makeComponent(({ key, children }) => {
|
|
432
395
|
return React.createElement("div", { key: key },
|
|
433
396
|
React.createElement("h1", { className: node.name, key: key }, node.name),
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podlite/to-jsx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"description": "The lightweight, customizable React podlite component.",
|
|
5
5
|
"types": "lib/index.d.ts",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -10,11 +10,16 @@
|
|
|
10
10
|
"test": "yarn g:jest --passWithNoTests"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@podlite/diagram": "^0.0.
|
|
14
|
-
"@podlite/schema": "0.0.
|
|
15
|
-
"pod6": "^0.0.48",
|
|
13
|
+
"@podlite/diagram": "^0.0.16",
|
|
14
|
+
"@podlite/schema": "0.0.12",
|
|
16
15
|
"react-is": "^17.0.2"
|
|
17
16
|
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"markdown",
|
|
19
|
+
"podlite",
|
|
20
|
+
"markup",
|
|
21
|
+
"markup-language"
|
|
22
|
+
],
|
|
18
23
|
"publishConfig": {
|
|
19
24
|
"access": "public",
|
|
20
25
|
"main": "lib/index.js"
|
|
@@ -22,7 +27,6 @@
|
|
|
22
27
|
"peerDependencies": {
|
|
23
28
|
"@podlite/diagram": "*",
|
|
24
29
|
"@podlite/schema": "*",
|
|
25
|
-
"pod6": "*",
|
|
26
30
|
"react": "^16.0.0 || ^17.0.0",
|
|
27
31
|
"react-dom": "^16.0.0 || ^17.0.0"
|
|
28
32
|
}
|
package/src/index.tsx
CHANGED
|
@@ -1,21 +1,14 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
2
|
import {createElement} from 'react'
|
|
3
|
-
import toAny from 'pod6/built/exportAny'
|
|
4
|
-
import { subUse, wrapContent, emptyContent, content as nodeContent, setFn, handleNested } from 'pod6/built/helpers/handlers'
|
|
5
|
-
import clean_plugin from 'pod6/built/plugin-clean-location'
|
|
6
|
-
import makeAttrs from 'pod6/built/helpers/config'
|
|
7
|
-
import { isNamedBlock, isSemanticBlock } from 'pod6/built/helpers/makeTransformer'
|
|
8
|
-
import {parse} from 'pod6'
|
|
9
|
-
import Writer from 'pod6/built/writer'
|
|
10
3
|
import { frozenIds, podlite as podlite_core, PodliteExport, toAnyRules } from 'podlite'
|
|
11
|
-
import
|
|
12
|
-
import {
|
|
13
|
-
|
|
4
|
+
import {Verbatim, PodNode, Text, Rules, RulesStrict, getNodeId, parse, makeAttrs, emptyContent, content as nodeContent, setFn, subUse, toAny, isNamedBlock, isSemanticBlock, Writer} from '@podlite/schema'
|
|
5
|
+
import { Toc, Plugin, pluginCleanLocation as clean_plugin } from '@podlite/schema'
|
|
6
|
+
|
|
14
7
|
|
|
15
8
|
// interface SetFn { <T>(<T>node, ctx:any) => () => () =>void
|
|
16
9
|
// }
|
|
17
10
|
export type CreateElement = typeof React.createElement
|
|
18
|
-
const helperMakeReact = ({wrapElement})=>{
|
|
11
|
+
const helperMakeReact = ({wrapElement}:{wrapElement?:WrapElement})=>{
|
|
19
12
|
let i_key_i = 0;
|
|
20
13
|
let mapByType= {};
|
|
21
14
|
const getIdForNode = ({type="notype",name="noname"}) =>{
|
|
@@ -24,7 +17,7 @@ const helperMakeReact = ({wrapElement})=>{
|
|
|
24
17
|
++mapByType[type_idx]
|
|
25
18
|
return `${type_idx}_${mapByType[type_idx]}`
|
|
26
19
|
}
|
|
27
|
-
return function(src:string|Function, node:PodNode, children, extraProps = {} ) {
|
|
20
|
+
return function(src:string|Function, node:PodNode, children, extraProps = {}, ctx = {} ) {
|
|
28
21
|
// for string return it
|
|
29
22
|
if (typeof node == 'string') {
|
|
30
23
|
return node
|
|
@@ -43,7 +36,7 @@ const helperMakeReact = ({wrapElement})=>{
|
|
|
43
36
|
// }
|
|
44
37
|
|
|
45
38
|
if (typeof wrapElement === 'function') {
|
|
46
|
-
return wrapElement( node, result)
|
|
39
|
+
return wrapElement( node, result, ctx )
|
|
47
40
|
}
|
|
48
41
|
return result
|
|
49
42
|
}
|
|
@@ -52,7 +45,8 @@ const helperMakeReact = ({wrapElement})=>{
|
|
|
52
45
|
export interface WrapElement {
|
|
53
46
|
(
|
|
54
47
|
node: PodNode,
|
|
55
|
-
|
|
48
|
+
children: React.ReactChild,
|
|
49
|
+
ctx: any
|
|
56
50
|
) : JSX.Element
|
|
57
51
|
}
|
|
58
52
|
export const Podlite: React.FC<{
|
|
@@ -71,10 +65,9 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
|
|
|
71
65
|
const mkComponent = (src) => ( writer, processor )=>( node, ctx, interator )=>{
|
|
72
66
|
// prepare extraProps for createElement
|
|
73
67
|
// add id attribute if exists
|
|
74
|
-
const id = getNodeId(node, ctx)
|
|
75
|
-
|
|
68
|
+
const id = getNodeId(node, ctx)?.replace(/\s/g,'-');
|
|
76
69
|
// check if node.content defined
|
|
77
|
-
return makeComponent(src, node, 'content' in node ? interator(node.content, { ...ctx}) : [], {id})
|
|
70
|
+
return makeComponent(src, node, 'content' in node ? interator(node.content, { ...ctx}) : [], {id}, ctx)
|
|
78
71
|
}
|
|
79
72
|
// Handle nested block and :nested block attribute
|
|
80
73
|
const handleNested = ( defaultHandler, implicitLevel?:number ) => {
|
|
@@ -101,46 +94,11 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
|
|
|
101
94
|
':ambient': emptyContent(),
|
|
102
95
|
':code': mkComponent(({ children, key })=><code key={key}><pre>{children}</pre></code>),
|
|
103
96
|
'code': mkComponent(({ children, key })=><code key={key}><pre>{children}</pre></code>),
|
|
104
|
-
'
|
|
105
|
-
// inside head don't wrap into <p>
|
|
106
|
-
':image' : setFn(( node:Image, ctx ) => {
|
|
107
|
-
const linkTo = ctx.link
|
|
108
|
-
return mkComponent(({children, key })=>{
|
|
109
|
-
const Img = node.src.match(/(mp4|mov)$/)
|
|
110
|
-
? <video controls key={key}> <source src={node.src} type="video/mp4" /> </video>
|
|
111
|
-
: <img key={key} src={node.src} alt={node.alt}/>
|
|
112
|
-
return linkTo ?<a key={key} href={linkTo}>{Img}</a> : Img
|
|
113
|
-
})
|
|
114
|
-
}),
|
|
115
|
-
'caption': mkComponent(({ children, key })=><div className="caption" key={key}>{children}</div>)
|
|
116
|
-
},
|
|
117
|
-
setFn(( node, ctx ) => {
|
|
118
|
-
const {level} = node
|
|
119
|
-
const id = getNodeId(node, ctx)
|
|
120
|
-
const conf = makeAttrs(node, ctx)
|
|
121
|
-
if ( conf.exists('link') ) {
|
|
122
|
-
ctx.link = conf.getFirstValue('link')
|
|
123
|
-
}
|
|
124
|
-
return mkComponent(({children, key })=>
|
|
125
|
-
<div className="image_block" key={key} id={id}>{children}</div>)
|
|
126
|
-
|
|
127
|
-
})
|
|
128
|
-
),
|
|
129
|
-
'image':nodeContent,
|
|
97
|
+
'image':nodeContent,
|
|
130
98
|
':image': setFn(( node, ctx ) => {
|
|
131
99
|
return mkComponent(({ children, key })=><img key={key} src={node.src} alt={node.alt}/>)
|
|
132
100
|
}),
|
|
133
101
|
|
|
134
|
-
'Diagram': () => (node, ctx, interator) => {
|
|
135
|
-
const conf = makeAttrs(node, ctx);
|
|
136
|
-
const caption = conf.exists("caption")
|
|
137
|
-
? conf.getFirstValue("caption")
|
|
138
|
-
: null;
|
|
139
|
-
const id = getNodeId(node, ctx)
|
|
140
|
-
return makeComponent(({children, key} )=>{
|
|
141
|
-
return <Diagram id={id} isError={node.custom} caption={caption} chart={node.content[0].value}/>
|
|
142
|
-
},node,interator(node.content, { ...ctx}) )
|
|
143
|
-
},
|
|
144
102
|
':text':( writer, processor )=>( node:Text, ctx, interator )=>{
|
|
145
103
|
return node.value
|
|
146
104
|
},
|
|
@@ -153,7 +111,7 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
|
|
|
153
111
|
},
|
|
154
112
|
setFn(( node, ctx ) => {
|
|
155
113
|
const {level } = node
|
|
156
|
-
const id = getNodeId(node, ctx)
|
|
114
|
+
const id = getNodeId(node, ctx)?.replace(/\s/g,'-');
|
|
157
115
|
return mkComponent(({level,children, key })=>createElement(`h${level}`,{key, id}, children))
|
|
158
116
|
})
|
|
159
117
|
),
|
|
@@ -347,7 +305,7 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
|
|
|
347
305
|
console.warn('[jsx] no content in node')
|
|
348
306
|
return ''
|
|
349
307
|
}
|
|
350
|
-
const id = getNodeId(node, ctx)
|
|
308
|
+
const id = getNodeId(node, ctx)?.replace(/\s/g,'-');
|
|
351
309
|
return makeComponent(({key, children})=>{
|
|
352
310
|
return <table key={key} id={id}>
|
|
353
311
|
<caption className="caption">{attr.caption}</caption>
|
|
@@ -381,7 +339,7 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
|
|
|
381
339
|
if (! (node.content instanceof Array)) {
|
|
382
340
|
console.error(node)
|
|
383
341
|
}
|
|
384
|
-
const id = getNodeId(node,ctx)
|
|
342
|
+
const id = getNodeId(node,ctx)?.replace(/\s/g,'-');
|
|
385
343
|
return makeComponent('li', node, interator(node.content, { ...ctx}), {id} )
|
|
386
344
|
},
|
|
387
345
|
// table of content
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TestPodlite as Podlite } from
|
|
2
|
-
import React from
|
|
3
|
-
import ReactDOM from
|
|
1
|
+
import { TestPodlite as Podlite, Podlite as PodliteRaw } from '../src/index';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import ReactDOM from 'react-dom';
|
|
4
4
|
|
|
5
|
-
const root = document.body.appendChild(document.createElement(
|
|
5
|
+
const root = document.body.appendChild(document.createElement('div'));
|
|
6
6
|
|
|
7
7
|
function render(jsx) {
|
|
8
8
|
return ReactDOM.render(jsx, root);
|
|
@@ -10,7 +10,7 @@ function render(jsx) {
|
|
|
10
10
|
|
|
11
11
|
afterEach(() => ReactDOM.unmountComponentAtNode(root));
|
|
12
12
|
|
|
13
|
-
it(
|
|
13
|
+
it('para content', () => {
|
|
14
14
|
render(<Podlite>Hello!</Podlite>);
|
|
15
15
|
|
|
16
16
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
@@ -20,7 +20,7 @@ it("para content", () => {
|
|
|
20
20
|
`);
|
|
21
21
|
});
|
|
22
22
|
|
|
23
|
-
it(
|
|
23
|
+
it('table', () => {
|
|
24
24
|
render(
|
|
25
25
|
<Podlite>
|
|
26
26
|
{`
|
|
@@ -45,7 +45,7 @@ sdsdsd
|
|
|
45
45
|
=end table
|
|
46
46
|
=end pod
|
|
47
47
|
`}
|
|
48
|
-
</Podlite
|
|
48
|
+
</Podlite>,
|
|
49
49
|
);
|
|
50
50
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
51
51
|
<div id="id">
|
|
@@ -127,7 +127,7 @@ sdsdsd
|
|
|
127
127
|
`);
|
|
128
128
|
});
|
|
129
129
|
|
|
130
|
-
it(
|
|
130
|
+
it('accepts =alias', () => {
|
|
131
131
|
render(
|
|
132
132
|
<Podlite>
|
|
133
133
|
{`
|
|
@@ -136,7 +136,7 @@ it("accepts =alias", () => {
|
|
|
136
136
|
A<TEST>
|
|
137
137
|
=end pod
|
|
138
138
|
`}
|
|
139
|
-
</Podlite
|
|
139
|
+
</Podlite>,
|
|
140
140
|
);
|
|
141
141
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
142
142
|
<div id="id">
|
|
@@ -147,7 +147,7 @@ A<TEST>
|
|
|
147
147
|
`);
|
|
148
148
|
});
|
|
149
149
|
|
|
150
|
-
it(
|
|
150
|
+
it('accepts =code', () => {
|
|
151
151
|
render(
|
|
152
152
|
<Podlite>
|
|
153
153
|
{`
|
|
@@ -162,7 +162,7 @@ it("accepts =code", () => {
|
|
|
162
162
|
asdasdasdasdsad
|
|
163
163
|
=end code
|
|
164
164
|
`}
|
|
165
|
-
</Podlite
|
|
165
|
+
</Podlite>,
|
|
166
166
|
);
|
|
167
167
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
168
168
|
<code>
|
|
@@ -186,7 +186,7 @@ it("accepts =code", () => {
|
|
|
186
186
|
`);
|
|
187
187
|
});
|
|
188
188
|
|
|
189
|
-
it(
|
|
189
|
+
it('accepts D<>', () => {
|
|
190
190
|
render(
|
|
191
191
|
<Podlite>
|
|
192
192
|
{`
|
|
@@ -194,7 +194,7 @@ it("accepts D<>", () => {
|
|
|
194
194
|
A D<formatting code|formatting codes;formatters> provides a way
|
|
195
195
|
to add inline mark-up to a D<piece> of text.
|
|
196
196
|
`}
|
|
197
|
-
</Podlite
|
|
197
|
+
</Podlite>,
|
|
198
198
|
);
|
|
199
199
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
200
200
|
<div id="id">
|
|
@@ -214,14 +214,14 @@ it("accepts D<>", () => {
|
|
|
214
214
|
`);
|
|
215
215
|
});
|
|
216
216
|
|
|
217
|
-
it(
|
|
217
|
+
it('accepts L<>', () => {
|
|
218
218
|
render(
|
|
219
219
|
<Podlite>
|
|
220
220
|
{`
|
|
221
221
|
L<https://www.python.org/dev/peps/pep-0001/#what-is-a-pep>
|
|
222
222
|
L<Test|https://example.com>
|
|
223
223
|
`}
|
|
224
|
-
</Podlite
|
|
224
|
+
</Podlite>,
|
|
225
225
|
);
|
|
226
226
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
227
227
|
<p>
|
|
@@ -235,7 +235,7 @@ L<Test|https://example.com>
|
|
|
235
235
|
`);
|
|
236
236
|
});
|
|
237
237
|
|
|
238
|
-
it(
|
|
238
|
+
it('accepts =comment, Z<>, ', () => {
|
|
239
239
|
render(
|
|
240
240
|
<Podlite>
|
|
241
241
|
{`
|
|
@@ -244,7 +244,7 @@ Z<comment>
|
|
|
244
244
|
=comment Test
|
|
245
245
|
=end pod
|
|
246
246
|
`}
|
|
247
|
-
</Podlite
|
|
247
|
+
</Podlite>,
|
|
248
248
|
);
|
|
249
249
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
250
250
|
<div id="id">
|
|
@@ -254,7 +254,7 @@ Z<comment>
|
|
|
254
254
|
`);
|
|
255
255
|
});
|
|
256
256
|
|
|
257
|
-
it(
|
|
257
|
+
it('accepts E<>, R<>, V<>', () => {
|
|
258
258
|
render(
|
|
259
259
|
<Podlite>
|
|
260
260
|
{`
|
|
@@ -264,7 +264,7 @@ E<0d171; 0o253; 0b10101011; 0xAB>
|
|
|
264
264
|
V<C<boo> B<bar> asd>
|
|
265
265
|
=end pod
|
|
266
266
|
`}
|
|
267
|
-
</Podlite
|
|
267
|
+
</Podlite>,
|
|
268
268
|
);
|
|
269
269
|
|
|
270
270
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
@@ -293,7 +293,7 @@ V<C<boo> B<bar> asd>
|
|
|
293
293
|
`);
|
|
294
294
|
});
|
|
295
295
|
|
|
296
|
-
it(
|
|
296
|
+
it('accepts =output', () => {
|
|
297
297
|
render(
|
|
298
298
|
<Podlite>
|
|
299
299
|
{`
|
|
@@ -305,7 +305,7 @@ Print? B<K<n>>
|
|
|
305
305
|
=for input
|
|
306
306
|
Name: R<your surname>
|
|
307
307
|
`}
|
|
308
|
-
</Podlite
|
|
308
|
+
</Podlite>,
|
|
309
309
|
);
|
|
310
310
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
311
311
|
<code>
|
|
@@ -336,7 +336,7 @@ Print? B<K<n>>
|
|
|
336
336
|
`);
|
|
337
337
|
});
|
|
338
338
|
|
|
339
|
-
it(
|
|
339
|
+
it('accepts N<>', () => {
|
|
340
340
|
render(
|
|
341
341
|
<Podlite>
|
|
342
342
|
{`
|
|
@@ -348,7 +348,7 @@ it("accepts N<>", () => {
|
|
|
348
348
|
|
|
349
349
|
=end pod
|
|
350
350
|
`}
|
|
351
|
-
</Podlite
|
|
351
|
+
</Podlite>,
|
|
352
352
|
);
|
|
353
353
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
354
354
|
<div id="id">
|
|
@@ -393,7 +393,7 @@ it("accepts N<>", () => {
|
|
|
393
393
|
`);
|
|
394
394
|
});
|
|
395
395
|
|
|
396
|
-
it(
|
|
396
|
+
it('accepts U<>, X<>, S<>', () => {
|
|
397
397
|
render(
|
|
398
398
|
<Podlite>
|
|
399
399
|
{`
|
|
@@ -402,7 +402,7 @@ it("accepts U<>, X<>, S<>", () => {
|
|
|
402
402
|
U<a>. S<
|
|
403
403
|
>
|
|
404
404
|
`}
|
|
405
|
-
</Podlite
|
|
405
|
+
</Podlite>,
|
|
406
406
|
);
|
|
407
407
|
|
|
408
408
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
@@ -420,7 +420,7 @@ it("accepts U<>, X<>, S<>", () => {
|
|
|
420
420
|
`);
|
|
421
421
|
});
|
|
422
422
|
|
|
423
|
-
it(
|
|
423
|
+
it('accepts =Image base', () => {
|
|
424
424
|
render(
|
|
425
425
|
<Podlite>
|
|
426
426
|
{`
|
|
@@ -429,7 +429,7 @@ it("accepts =Image base", () => {
|
|
|
429
429
|
alternative https://www.example.org
|
|
430
430
|
=end pod
|
|
431
431
|
`}
|
|
432
|
-
</Podlite
|
|
432
|
+
</Podlite>,
|
|
433
433
|
);
|
|
434
434
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
435
435
|
<div id="id">
|
|
@@ -451,7 +451,7 @@ it("accepts =Image base", () => {
|
|
|
451
451
|
`);
|
|
452
452
|
});
|
|
453
453
|
|
|
454
|
-
it(
|
|
454
|
+
it('accepts =Image empty caption', () => {
|
|
455
455
|
render(
|
|
456
456
|
<Podlite>
|
|
457
457
|
{`
|
|
@@ -460,7 +460,7 @@ it("accepts =Image empty caption", () => {
|
|
|
460
460
|
alternative https://www.example.org
|
|
461
461
|
=end pod
|
|
462
462
|
`}
|
|
463
|
-
</Podlite
|
|
463
|
+
</Podlite>,
|
|
464
464
|
);
|
|
465
465
|
// console.log(root.innerHTML);return;
|
|
466
466
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
@@ -480,7 +480,7 @@ it("accepts =Image empty caption", () => {
|
|
|
480
480
|
`);
|
|
481
481
|
});
|
|
482
482
|
|
|
483
|
-
it(
|
|
483
|
+
it('accepts =Image with fullset of attributes', () => {
|
|
484
484
|
render(
|
|
485
485
|
<Podlite>
|
|
486
486
|
{`
|
|
@@ -493,7 +493,7 @@ it("accepts =Image with fullset of attributes", () => {
|
|
|
493
493
|
content ignored
|
|
494
494
|
=end pod
|
|
495
495
|
`}
|
|
496
|
-
</Podlite
|
|
496
|
+
</Podlite>,
|
|
497
497
|
);
|
|
498
498
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
499
499
|
<div id="id">
|
|
@@ -516,7 +516,7 @@ content ignored
|
|
|
516
516
|
</p>
|
|
517
517
|
`);
|
|
518
518
|
});
|
|
519
|
-
it(
|
|
519
|
+
it('accepts =TITLE', () => {
|
|
520
520
|
render(
|
|
521
521
|
<Podlite>
|
|
522
522
|
{`
|
|
@@ -524,7 +524,7 @@ it("accepts =TITLE", () => {
|
|
|
524
524
|
=TITLE test
|
|
525
525
|
=para 1
|
|
526
526
|
=end pod`}
|
|
527
|
-
</Podlite
|
|
527
|
+
</Podlite>,
|
|
528
528
|
);
|
|
529
529
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
530
530
|
<div id="id">
|
|
@@ -545,7 +545,7 @@ it("accepts =TITLE", () => {
|
|
|
545
545
|
`);
|
|
546
546
|
});
|
|
547
547
|
|
|
548
|
-
it(
|
|
548
|
+
it('accepts =defn', () => {
|
|
549
549
|
render(
|
|
550
550
|
<Podlite>
|
|
551
551
|
{`
|
|
@@ -558,7 +558,7 @@ MORAL
|
|
|
558
558
|
Conforming to a local and mutable standard of right.
|
|
559
559
|
Having the quality of general expediency.
|
|
560
560
|
`}
|
|
561
|
-
</Podlite
|
|
561
|
+
</Podlite>,
|
|
562
562
|
);
|
|
563
563
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
564
564
|
<dl>
|
|
@@ -585,7 +585,7 @@ Having the quality of general expediency.
|
|
|
585
585
|
`);
|
|
586
586
|
});
|
|
587
587
|
|
|
588
|
-
it(
|
|
588
|
+
it('accepts =nested', () => {
|
|
589
589
|
render(
|
|
590
590
|
<Podlite>
|
|
591
591
|
{`
|
|
@@ -597,7 +597,7 @@ but some of us are looking at the stars!
|
|
|
597
597
|
=end nested
|
|
598
598
|
=end nested
|
|
599
599
|
`}
|
|
600
|
-
</Podlite
|
|
600
|
+
</Podlite>,
|
|
601
601
|
);
|
|
602
602
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
603
603
|
<blockquote>
|
|
@@ -617,7 +617,7 @@ but some of us are looking at the stars!
|
|
|
617
617
|
`);
|
|
618
618
|
});
|
|
619
619
|
|
|
620
|
-
it(
|
|
620
|
+
it('accepts =Toc', () => {
|
|
621
621
|
render(
|
|
622
622
|
<Podlite>
|
|
623
623
|
{`
|
|
@@ -629,7 +629,7 @@ it("accepts =Toc", () => {
|
|
|
629
629
|
item1
|
|
630
630
|
=end pod
|
|
631
631
|
`}
|
|
632
|
-
</Podlite
|
|
632
|
+
</Podlite>,
|
|
633
633
|
);
|
|
634
634
|
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
635
635
|
<div id="id">
|
|
@@ -665,7 +665,20 @@ it("accepts =Toc", () => {
|
|
|
665
665
|
`);
|
|
666
666
|
});
|
|
667
667
|
|
|
668
|
-
it
|
|
668
|
+
it('id for headers', () => {
|
|
669
|
+
render(
|
|
670
|
+
<PodliteRaw>{`
|
|
671
|
+
=head1 Test
|
|
672
|
+
`}</PodliteRaw>,
|
|
673
|
+
);
|
|
674
|
+
expect(root.innerHTML).toMatchInlineSnapshot(`
|
|
675
|
+
<h1 id="Test">
|
|
676
|
+
Test
|
|
677
|
+
</h1>
|
|
678
|
+
`);
|
|
679
|
+
});
|
|
680
|
+
|
|
681
|
+
it.skip('accepts =Diagram', () => {
|
|
669
682
|
render(
|
|
670
683
|
<Podlite>
|
|
671
684
|
{`
|
|
@@ -677,13 +690,13 @@ B-->C[fa:fa-ban forbidden]
|
|
|
677
690
|
B-->D(fa:fa-spinner aaaaa);
|
|
678
691
|
=end pod
|
|
679
692
|
`}
|
|
680
|
-
</Podlite
|
|
693
|
+
</Podlite>,
|
|
681
694
|
);
|
|
682
695
|
console.log(root.innerHTML);
|
|
683
696
|
// expect(root.innerHTML).toMatchInlineSnapshot();
|
|
684
697
|
});
|
|
685
698
|
|
|
686
|
-
it.skip(
|
|
699
|
+
it.skip('accepts =alias', () => {
|
|
687
700
|
render(
|
|
688
701
|
<Podlite>
|
|
689
702
|
{`
|
|
@@ -700,7 +713,7 @@ A<TERMS_URLS>
|
|
|
700
713
|
|
|
701
714
|
=end pod
|
|
702
715
|
`}
|
|
703
|
-
</Podlite
|
|
716
|
+
</Podlite>,
|
|
704
717
|
);
|
|
705
718
|
console.log(root.innerHTML);
|
|
706
719
|
// expect(root.innerHTML).toMatchInlineSnapshot();
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/pod6/built/exportAny.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/pod6/built/writer.d.ts","../../node_modules/pod6/built/helpers/makeQuery.d.ts","../../node_modules/pod6/built/helpers/handlers.d.ts","../../node_modules/pod6/built/plugin-clean-location.d.ts","../../node_modules/pod6/built/helpers/config.d.ts","../../node_modules/pod6/built/helpers/makeTransformer.d.ts","../../node_modules/pod6/built/exportHtml.d.ts","../../node_modules/pod6/built/index.d.ts","../../node_modules/ajv/dist/compile/codegen/code.d.ts","../../node_modules/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/ajv/dist/compile/codegen/index.d.ts","../../node_modules/ajv/dist/compile/rules.d.ts","../../node_modules/ajv/dist/compile/subschema.d.ts","../../node_modules/ajv/dist/compile/context.d.ts","../../node_modules/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/ajv/dist/vocabularies/errors.d.ts","../../node_modules/ajv/dist/types/json-schema.d.ts","../../node_modules/ajv/dist/types/jtd-schema.d.ts","../../node_modules/ajv/dist/compile/error_classes.d.ts","../../node_modules/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/ajv/dist/compile/resolve.d.ts","../../node_modules/ajv/dist/compile/index.d.ts","../../node_modules/ajv/dist/types/index.d.ts","../../node_modules/ajv/dist/ajv.d.ts","../podlite-schema/lib/types.d.ts","../podlite-schema/lib/blocks-helpers.d.ts","../podlite-schema/lib/query-helpers.d.ts","../podlite-schema/lib/ast-helpers.d.ts","../podlite-schema/lib/ast-inerator.d.ts","../podlite-schema/lib/index.d.ts","../core/lib/ids.d.ts","../core/lib/index.d.ts","../podlite-diagrams/lib/index.d.ts","./src/index.tsx","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"336d441e18e353ec2228e4c7540d4b46e9358a59dcc6b248c52a98537cac8623","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6f310052978d351ebf9033e90bf009e718522c7cb7c148cc9cb9413a73657250","142f7ea2d6affb8c5f4c14723ad122124f1fd1a29aa6ef9b5c46daf6cda719ce","dd6fc277379bfe5da22e38dae767e07da2abad6faf9fc1e0fa6e927b99a91bba","29ff47f56519cef9e07b2aa05777515b3168fd977a2d9ea0387930cd4c1ce97f","578ada4c8488a001c33301a3f4050ce7c567ffe942adaf52925026786046da5a","0b69226aac5cce5a2a9d25f95dea7986caf4d36952cabb6eb8b660219daf9356","401a75f4fbeea4471faad9e3aa87b4420755e3e2af8d594baba33b162b861de1","c4af29f4dcd2aaf12d6c37f5494d6155e215639aa9b65a736d65865006e934f3","2274b0f0e4f20a1af3309985337bd8a7f45610145db3c37485ea8697c0778eda","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b250a278297e209148e3ee53c5f27b773a351618b0a0c5b8fe0397d2fbd08576","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","b57d661f8123e266307b11fbf08ec29363f84f482622f99e42cf3fdf94059255","726416fd6b5f6d16c91fe5f2dee9ac722bceddd8f8e5d0fc9c3399c7c2efd9b1","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","1c68c3020dfada02f9e9671c7c13fb7adea15118f3acc2d21f02a7b3c632482c","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9e8575c515e21e1b51ab7eb78cfd763ec857cfd7b4f985a4f394f9ea8c0ac36d","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","6539823527c9349664b239204197757434e287e9ef7c2c29afaad10a79f3348a","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","4dbd5a4e8c71e60af9af1d38d1ac5f6eedef3591afb556ed164f169061706f15","5db5754073f92ef99fef159a3415a733db507af67126b287daa51553cb9107d2","ac162509239b1a48ab6aa39a3fc34dd7d8cde209c59188f699b3ef78964165e0","44fa175d725f678ed47ee3cbaf2fcdf688559e672352ac24c721dd9ceef7d7c1","9556b6427e049169448398e1e59fb393e4de91852abda84dd569d0e7b038e641","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","893edbff0dcaf7c4ef650c24cfcf87e6ad63d3e0457f7524d5706f8599e7bac3","06f6c325a4cec7589a46fb8c335b4da840b125bf20d514411fead13478b008b9","a3b6fafae3db815903c6ee13b8c77a43a89fba98fabf263a254f015b388cf190","aad69465794f04cbb182a5bf7b235696117236b96f0c8d1031b7842878a9071a","8500f1c50ee5fb526b737dd167c81077ca11d9c50afb15851b50ff81324b8088","b30fdd8d44300d4ace7f2de31e97ed7f310035978a4fd0f92c66631788f29215","6fa804112d574737638af24d452f3e4bed1a390b1dc6599a3036c6917a4d4418","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","bfbd1bc7798f7171950d73a74e497dd045f662d73caab9de34b2a6f35e1e84a9","170a970c4aced3c09652630d64b53024e6f2b802db228eb84274d956f347aed4","7b9668d42e95ed741df5f5c92a414eb868d2545120f19c6672034d21de031677","87912fef55e90f538e12ecdbdc2e05df5f385e519b0023dd5bfb7996cf26056c","48f294b0de15cf0ebcace31b066dd8c78909d526a3af74186910a50e7734eef5","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"jsx":2,"module":1,"outDir":"./lib","rootDir":"./src","sourceMap":true,"target":4},"fileIdsList":[[93],[93,160],[93,158,159,161,162,163],[93,158],[93,158,161],[93,165],[66,93,100],[93,168],[93,169],[93,173,177],[93,171,174],[93,171,174,175,176],[93,173],[93,172],[93,181],[50,93],[53,93],[54,59,93],[55,65,66,73,82,92,93],[55,56,65,73,93],[57,93],[58,59,66,74,93],[59,82,89,93],[60,62,65,73,93],[61,93],[62,63,93],[64,65,93],[65,93],[65,66,67,82,92,93],[65,66,67,82,93],[68,73,82,92,93],[65,66,68,69,73,82,89,92,93],[68,70,82,89,92,93],[50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[65,71,93],[72,92,93],[62,65,73,82,93],[74,93],[75,93],[53,76,93],[77,91,93,97],[78,93],[79,93],[65,80,93],[80,81,93,95],[65,82,83,84,93],[82,84,93],[82,83,93],[85,93],[86,93],[65,87,88,93],[87,88,93],[59,73,82,89,93],[90,93],[73,91,93],[54,68,79,92,93],[59,93],[82,93,94],[93,95],[93,96],[54,59,65,67,76,82,92,93,95,97],[82,93,98],[48,93],[44,45,46,47,93],[93,191],[93,111,112,114,138,139,142,145,146],[93,109,110],[93,109],[93,111,112,113,145,146],[93,146],[93,111,112,142,144,146],[93,143,146,147],[93,111,112,145,146],[93,111,112,114,138,139,140,141,145,146],[93,111,112,114,142,145],[93,114,146],[93,116,117,118,119,120,121,122,123,124,146],[93,115,125,133,134,135,136,137],[93,118,146],[93,126,127,128,129,130,131,132,146],[93,102],[93,101],[93,107],[65,93,100],[93,108],[93,153,154],[48,93,153],[93,148],[93,147,148,149,150,151,152],[48,49,93,101,103,104,105,106,108,153,155,156]],"referencedMap":[[160,1],[161,2],[158,1],[164,3],[159,4],[162,5],[163,4],[166,6],[167,7],[168,1],[169,8],[170,9],[178,10],[171,1],[175,11],[177,12],[176,11],[174,13],[173,14],[172,1],[179,1],[180,1],[182,15],[183,1],[184,1],[165,1],[50,16],[51,16],[53,17],[54,18],[55,19],[56,20],[57,21],[58,22],[59,23],[60,24],[61,25],[62,26],[63,26],[64,27],[65,28],[66,29],[67,30],[52,1],[99,1],[68,31],[69,32],[70,33],[100,34],[71,35],[72,36],[73,37],[74,38],[75,39],[76,40],[77,41],[78,42],[79,43],[80,44],[81,45],[82,46],[84,47],[83,48],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[93,57],[94,58],[95,59],[96,60],[97,61],[98,62],[185,1],[186,1],[187,1],[46,1],[188,63],[44,1],[48,64],[189,1],[47,1],[190,1],[181,1],[191,1],[192,65],[147,66],[109,1],[111,67],[110,68],[114,69],[141,70],[145,71],[144,72],[112,70],[113,73],[115,73],[142,74],[146,75],[139,1],[140,1],[116,70],[120,70],[122,70],[117,70],[118,76],[124,70],[125,77],[121,70],[123,70],[119,70],[138,78],[134,70],[136,70],[135,70],[131,70],[137,79],[132,70],[133,80],[126,70],[127,70],[128,70],[129,70],[130,70],[45,1],[49,1],[107,1],[105,1],[103,81],[102,82],[106,1],[108,83],[104,1],[101,84],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[43,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[143,1],[154,85],[155,86],[156,87],[151,1],[152,1],[149,88],[153,89],[150,1],[148,1],[157,90]],"exportedModulesMap":[[160,1],[161,2],[158,1],[164,3],[159,4],[162,5],[163,4],[166,6],[167,7],[168,1],[169,8],[170,9],[178,10],[171,1],[175,11],[177,12],[176,11],[174,13],[173,14],[172,1],[179,1],[180,1],[182,15],[183,1],[184,1],[165,1],[50,16],[51,16],[53,17],[54,18],[55,19],[56,20],[57,21],[58,22],[59,23],[60,24],[61,25],[62,26],[63,26],[64,27],[65,28],[66,29],[67,30],[52,1],[99,1],[68,31],[69,32],[70,33],[100,34],[71,35],[72,36],[73,37],[74,38],[75,39],[76,40],[77,41],[78,42],[79,43],[80,44],[81,45],[82,46],[84,47],[83,48],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[93,57],[94,58],[95,59],[96,60],[97,61],[98,62],[185,1],[186,1],[187,1],[46,1],[188,63],[44,1],[48,64],[189,1],[47,1],[190,1],[181,1],[191,1],[192,65],[147,66],[109,1],[111,67],[110,68],[114,69],[141,70],[145,71],[144,72],[112,70],[113,73],[115,73],[142,74],[146,75],[139,1],[140,1],[116,70],[120,70],[122,70],[117,70],[118,76],[124,70],[125,77],[121,70],[123,70],[119,70],[138,78],[134,70],[136,70],[135,70],[131,70],[137,79],[132,70],[133,80],[126,70],[127,70],[128,70],[129,70],[130,70],[45,1],[49,1],[107,1],[105,1],[103,81],[102,82],[106,1],[108,83],[104,1],[101,84],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[43,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[143,1],[154,85],[155,86],[156,87],[151,1],[152,1],[149,88],[153,89],[150,1],[148,1],[157,90]],"semanticDiagnosticsPerFile":[160,161,158,164,159,162,163,166,167,168,169,170,178,171,175,177,176,174,173,172,179,180,182,183,184,165,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,52,99,68,69,70,100,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,185,186,187,46,188,44,48,189,47,190,181,191,192,147,109,111,110,114,141,145,144,112,113,115,142,146,139,140,116,120,122,117,118,124,125,121,123,119,138,134,136,135,131,137,132,133,126,127,128,129,130,45,49,107,105,103,102,106,108,104,101,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,143,154,155,156,151,152,149,153,150,148,157]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/ajv/dist/compile/codegen/code.d.ts","../../node_modules/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/ajv/dist/compile/codegen/index.d.ts","../../node_modules/ajv/dist/compile/rules.d.ts","../../node_modules/ajv/dist/compile/subschema.d.ts","../../node_modules/ajv/dist/compile/context.d.ts","../../node_modules/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/ajv/dist/vocabularies/errors.d.ts","../../node_modules/ajv/dist/types/json-schema.d.ts","../../node_modules/ajv/dist/types/jtd-schema.d.ts","../../node_modules/ajv/dist/compile/error_classes.d.ts","../../node_modules/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/ajv/dist/compile/resolve.d.ts","../../node_modules/ajv/dist/compile/index.d.ts","../../node_modules/ajv/dist/types/index.d.ts","../../node_modules/ajv/dist/ajv.d.ts","../podlite-schema/lib/types.d.ts","../podlite-schema/lib/blocks-helpers.d.ts","../podlite-schema/lib/query-helpers.d.ts","../podlite-schema/lib/helpers/config.d.ts","../podlite-schema/lib/ast-helpers.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../podlite-schema/lib/writer.d.ts","../podlite-schema/lib/helpers/makeQuery.d.ts","../podlite-schema/lib/helpers/handlers.d.ts","../podlite-schema/lib/ast-inerator.d.ts","../podlite-schema/lib/helpers/makeTransformer.d.ts","../podlite-schema/lib/exportAny.d.ts","../podlite-schema/lib/plugin-clean-location.d.ts","../podlite-schema/lib/exportHtml.d.ts","../podlite-schema/lib/index.d.ts","./src/index.tsx","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"2274b0f0e4f20a1af3309985337bd8a7f45610145db3c37485ea8697c0778eda","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b250a278297e209148e3ee53c5f27b773a351618b0a0c5b8fe0397d2fbd08576","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","b57d661f8123e266307b11fbf08ec29363f84f482622f99e42cf3fdf94059255","726416fd6b5f6d16c91fe5f2dee9ac722bceddd8f8e5d0fc9c3399c7c2efd9b1","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","1c68c3020dfada02f9e9671c7c13fb7adea15118f3acc2d21f02a7b3c632482c","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9e8575c515e21e1b51ab7eb78cfd763ec857cfd7b4f985a4f394f9ea8c0ac36d","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","6539823527c9349664b239204197757434e287e9ef7c2c29afaad10a79f3348a","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","4dbd5a4e8c71e60af9af1d38d1ac5f6eedef3591afb556ed164f169061706f15","5db5754073f92ef99fef159a3415a733db507af67126b287daa51553cb9107d2","ac162509239b1a48ab6aa39a3fc34dd7d8cde209c59188f699b3ef78964165e0","44fa175d725f678ed47ee3cbaf2fcdf688559e672352ac24c721dd9ceef7d7c1","9556b6427e049169448398e1e59fb393e4de91852abda84dd569d0e7b038e641","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","893edbff0dcaf7c4ef650c24cfcf87e6ad63d3e0457f7524d5706f8599e7bac3","06f6c325a4cec7589a46fb8c335b4da840b125bf20d514411fead13478b008b9","a3b6fafae3db815903c6ee13b8c77a43a89fba98fabf263a254f015b388cf190","aad69465794f04cbb182a5bf7b235696117236b96f0c8d1031b7842878a9071a","8500f1c50ee5fb526b737dd167c81077ca11d9c50afb15851b50ff81324b8088","8db4789c08e463840af20c7f5440a3945987cdf14820b60fff63e03a75bd0c90","7d172510abda2eb827b492615c40cde28e1a899c5241dd0c3cc25cdcc636aef3","859f7f021bb081aa1da8a57ed935f65555340e5cb4f3d67b53bdade24ad9503e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6f310052978d351ebf9033e90bf009e718522c7cb7c148cc9cb9413a73657250","142f7ea2d6affb8c5f4c14723ad122124f1fd1a29aa6ef9b5c46daf6cda719ce","dd6fc277379bfe5da22e38dae767e07da2abad6faf9fc1e0fa6e927b99a91bba","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","12e3c9f17fa31bcbdb082f5fe8a85ab102748c6b21d2b18ea51440d6bb6736e6","4dd326a132f4f5925c45895f192fa3d313fe46e6e6d42b2aca7cf83fd76efd88","fe1089035b474a7af21cdcc063bd625ffba806ef64634b02e682c9fc9cba0f14","05455184c5dd8d248ae921fc1bf1aa48a8960622112f93fd7decb45c5fc4ec63","af39de60be2e87a808cd82e83930deed586fab5c2ac4583a5a46c88b2e404b01","842fad86be9a02c22f11f824a97a8c48a9e8182f59dee849a2f6d3bb629c6921","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"jsx":2,"module":1,"outDir":"./lib","rootDir":"./src","sourceMap":true,"target":4},"fileIdsList":[[136],[136,156],[136,154,155,157,158,159],[136,154],[136,154,157],[136,161],[109,136,143],[136,164],[136,165],[136,169,173],[136,167,170],[136,167,170,171,172],[136,169],[136,168],[136,177],[93,136],[96,136],[97,102,136],[98,108,109,116,125,135,136],[98,99,108,116,136],[100,136],[101,102,109,117,136],[102,125,132,136],[103,105,108,116,136],[104,136],[105,106,136],[107,108,136],[108,136],[108,109,110,125,135,136],[108,109,110,125,136],[111,116,125,135,136],[108,109,111,112,116,125,132,135,136],[111,113,125,132,135,136],[93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142],[108,114,136],[115,135,136],[105,108,116,125,136],[117,136],[118,136],[96,119,136],[120,134,136,140],[121,136],[122,136],[108,123,136],[123,124,136,138],[108,125,126,127,136],[125,127,136],[125,126,136],[128,136],[129,136],[108,130,131,136],[130,131,136],[102,116,125,132,136],[133,136],[116,134,136],[97,111,122,135,136],[102,136],[125,136,137],[136,138],[136,139],[97,102,108,110,119,125,135,136,138,140],[125,136,141],[48,136],[44,45,46,47,136],[136,187],[51,52,54,78,79,82,85,86,136],[49,50,136],[49,136],[51,52,53,85,86,136],[86,136],[51,52,82,84,86,136],[83,86,87,136],[51,52,85,86,136],[51,52,54,78,79,80,81,85,86,136],[51,52,54,82,85,136],[54,86,136],[56,57,58,59,60,61,62,63,64,86,136],[55,65,73,74,75,76,77,136],[58,86,136],[66,67,68,69,70,71,72,86,136],[91,136],[88,136],[136,145],[136,144],[87,88,89,90,91,92,136,144,146,147,148,149,150,151],[108,136,143],[48,136,152]],"referencedMap":[[156,1],[157,2],[154,1],[160,3],[155,4],[158,5],[159,4],[162,6],[163,7],[164,1],[165,8],[166,9],[174,10],[167,1],[171,11],[173,12],[172,11],[170,13],[169,14],[168,1],[175,1],[176,1],[178,15],[179,1],[180,1],[161,1],[93,16],[94,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,22],[102,23],[103,24],[104,25],[105,26],[106,26],[107,27],[108,28],[109,29],[110,30],[95,1],[142,1],[111,31],[112,32],[113,33],[143,34],[114,35],[115,36],[116,37],[117,38],[118,39],[119,40],[120,41],[121,42],[122,43],[123,44],[124,45],[125,46],[127,47],[126,48],[128,49],[129,50],[130,51],[131,52],[132,53],[133,54],[134,55],[135,56],[136,57],[137,58],[138,59],[139,60],[140,61],[141,62],[181,1],[182,1],[183,1],[46,1],[184,63],[44,1],[48,64],[185,1],[47,1],[186,1],[177,1],[187,1],[188,65],[87,66],[49,1],[51,67],[50,68],[54,69],[81,70],[85,71],[84,72],[52,70],[53,73],[55,73],[82,74],[86,75],[79,1],[80,1],[56,70],[60,70],[62,70],[57,70],[58,76],[64,70],[65,77],[61,70],[63,70],[59,70],[78,78],[74,70],[76,70],[75,70],[71,70],[77,79],[72,70],[73,80],[66,70],[67,70],[68,70],[69,70],[70,70],[45,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[43,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[83,1],[92,81],[147,1],[89,82],[149,1],[151,1],[91,1],[146,83],[145,84],[148,1],[152,85],[150,1],[90,82],[88,1],[144,86],[153,87]],"exportedModulesMap":[[156,1],[157,2],[154,1],[160,3],[155,4],[158,5],[159,4],[162,6],[163,7],[164,1],[165,8],[166,9],[174,10],[167,1],[171,11],[173,12],[172,11],[170,13],[169,14],[168,1],[175,1],[176,1],[178,15],[179,1],[180,1],[161,1],[93,16],[94,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,22],[102,23],[103,24],[104,25],[105,26],[106,26],[107,27],[108,28],[109,29],[110,30],[95,1],[142,1],[111,31],[112,32],[113,33],[143,34],[114,35],[115,36],[116,37],[117,38],[118,39],[119,40],[120,41],[121,42],[122,43],[123,44],[124,45],[125,46],[127,47],[126,48],[128,49],[129,50],[130,51],[131,52],[132,53],[133,54],[134,55],[135,56],[136,57],[137,58],[138,59],[139,60],[140,61],[141,62],[181,1],[182,1],[183,1],[46,1],[184,63],[44,1],[48,64],[185,1],[47,1],[186,1],[177,1],[187,1],[188,65],[87,66],[49,1],[51,67],[50,68],[54,69],[81,70],[85,71],[84,72],[52,70],[53,73],[55,73],[82,74],[86,75],[79,1],[80,1],[56,70],[60,70],[62,70],[57,70],[58,76],[64,70],[65,77],[61,70],[63,70],[59,70],[78,78],[74,70],[76,70],[75,70],[71,70],[77,79],[72,70],[73,80],[66,70],[67,70],[68,70],[69,70],[70,70],[45,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[43,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[83,1],[92,81],[147,1],[89,82],[149,1],[151,1],[91,1],[146,83],[145,84],[148,1],[152,85],[150,1],[90,82],[88,1],[144,86],[153,87]],"semanticDiagnosticsPerFile":[156,157,154,160,155,158,159,162,163,164,165,166,174,167,171,173,172,170,169,168,175,176,178,179,180,161,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,95,142,111,112,113,143,114,115,116,117,118,119,120,121,122,123,124,125,127,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,181,182,183,46,184,44,48,185,47,186,177,187,188,87,49,51,50,54,81,85,84,52,53,55,82,86,79,80,56,60,62,57,58,64,65,61,63,59,78,74,76,75,71,77,72,73,66,67,68,69,70,45,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,83,92,147,89,149,151,91,146,145,148,152,150,90,88,144,153]},"version":"4.5.5"}
|