@podlite/to-jsx 0.0.10 → 0.0.13

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 CHANGED
@@ -1,6 +1,14 @@
1
1
  # @podlite/to-jsx
2
2
 
3
3
  ## Upcoming
4
+ ## 0.0.13
5
+ - update deps
6
+ ## 0.0.12
7
+ - fix imports
8
+ - update deps
9
+ ## 0.0.11
10
+ - use <video> tags for mov/mp4 media
11
+ - update deps
4
12
  ## 0.0.10
5
13
  - fix id for =table
6
14
  ## 0.0.9
package/lib/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
2
  import { PodliteExport } from 'podlite';
3
3
  import { PodNode } from '@podlite/schema';
4
4
  export declare type CreateElement = typeof React.createElement;
package/lib/index.js CHANGED
@@ -1,14 +1,4 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
1
+ "use strict";
12
2
  var __rest = (this && this.__rest) || function (s, e) {
13
3
  var t = {};
14
4
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,66 +10,41 @@ var __rest = (this && this.__rest) || function (s, e) {
20
10
  }
21
11
  return t;
22
12
  };
23
- var __read = (this && this.__read) || function (o, n) {
24
- var m = typeof Symbol === "function" && o[Symbol.iterator];
25
- if (!m) return o;
26
- var i = m.call(o), r, ar = [], e;
27
- try {
28
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
29
- }
30
- catch (error) { e = { error: error }; }
31
- finally {
32
- try {
33
- if (r && !r.done && (m = i["return"])) m.call(i);
34
- }
35
- finally { if (e) throw e.error; }
36
- }
37
- return ar;
38
- };
39
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
40
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
41
- if (ar || !(i in from)) {
42
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
43
- ar[i] = from[i];
44
- }
45
- }
46
- return to.concat(ar || Array.prototype.slice.call(from));
47
- };
48
- import React from 'react';
49
- import toAny from 'pod6/built/exportAny';
50
- import { subUse, emptyContent, content as nodeContent, setFn } from 'pod6/built/helpers/handlers';
51
- import clean_plugin from 'pod6/built/plugin-clean-location';
52
- import makeAttrs from 'pod6/built/helpers/config';
53
- import { isNamedBlock, isSemanticBlock } from 'pod6/built/helpers/makeTransformer';
54
- import { parse } from 'pod6';
55
- import Writer from 'pod6/built/writer';
56
- import { podlite as podlite_core } from 'podlite';
57
- import Diagram from '@podlite/diagram';
58
- import { getNodeId } from '@podlite/schema';
59
- var helperMakeReact = function (_a) {
60
- var wrapElement = _a.wrapElement;
61
- var i_key_i = 0;
62
- var mapByType = {};
63
- var getIdForNode = function (_a) {
64
- var _b = _a.type, type = _b === void 0 ? "notype" : _b, _c = _a.name, name = _c === void 0 ? "noname" : _c;
65
- var type_idx = "".concat(type, "_").concat(name);
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Podlite = void 0;
15
+ const React = require("react");
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
+ const podlite_1 = require("podlite");
25
+ const diagram_1 = require("@podlite/diagram");
26
+ const schema_1 = require("@podlite/schema");
27
+ const helperMakeReact = ({ wrapElement }) => {
28
+ let i_key_i = 0;
29
+ let mapByType = {};
30
+ const getIdForNode = ({ type = "notype", name = "noname" }) => {
31
+ const type_idx = `${type}_${name}`;
66
32
  if (!mapByType[type_idx]) {
67
33
  mapByType[type_idx] = 0;
68
34
  }
69
35
  ++mapByType[type_idx];
70
- return "".concat(type_idx, "_").concat(mapByType[type_idx]);
36
+ return `${type_idx}_${mapByType[type_idx]}`;
71
37
  };
72
- return function (src, node, children, extraProps) {
73
- if (extraProps === void 0) { extraProps = {}; }
38
+ return function (src, node, children, extraProps = {}) {
74
39
  // for string return it
75
40
  if (typeof node == 'string') {
76
41
  return node;
77
42
  }
78
- var attr = __rest(node, []);
79
- var key = 'type' in node && node.type ? getIdForNode(node) : ++i_key_i;
80
- var result = typeof src === 'function'
81
- ? src(__assign(__assign({}, attr), { key: key, children: children }), children)
82
- : React.createElement(src, __assign(__assign({}, extraProps), { key: key }), children);
43
+ const attr = __rest(node, []);
44
+ const key = 'type' in node && node.type ? getIdForNode(node) : ++i_key_i;
45
+ const result = typeof src === 'function'
46
+ ? src(Object.assign(Object.assign({}, attr), { key, children }), children)
47
+ : (0, react_1.createElement)(src, Object.assign(Object.assign({}, extraProps), { key }), children);
83
48
  // // create react element and pass key
84
49
  // if (!isValidElementType(src)) {
85
50
  // throw new Error(`Bad React element for ${ruleName} rule `)
@@ -90,167 +55,144 @@ var helperMakeReact = function (_a) {
90
55
  return result;
91
56
  };
92
57
  };
93
- export var Podlite = function (_a) {
94
- var children = _a.children, options = __rest(_a, ["children"]);
95
- var result = podlite(children, options);
58
+ const Podlite = (_a) => {
59
+ var { children } = _a, options = __rest(_a, ["children"]);
60
+ const result = podlite(children, options);
96
61
  return result;
97
62
  };
98
- var mapToReact = function (makeComponent) {
99
- var mkComponent = function (src) { return function (writer, processor) { return function (node, ctx, interator) {
63
+ exports.Podlite = Podlite;
64
+ const mapToReact = (makeComponent) => {
65
+ const mkComponent = (src) => (writer, processor) => (node, ctx, interator) => {
100
66
  // check if node.content defined
101
- return makeComponent(src, node, 'content' in node ? interator(node.content, __assign({}, ctx)) : []);
102
- }; }; };
67
+ return makeComponent(src, node, 'content' in node ? interator(node.content, Object.assign({}, ctx)) : []);
68
+ };
103
69
  // Handle nested block and :nested block attribute
104
- var handleNested = function (defaultHandler, implicitLevel) {
105
- return function (writer, processor) {
106
- var defaultHandlerInited = defaultHandler(writer, processor);
107
- return function (node, ctx, interator) {
108
- var nesting = makeAttrs(node, ctx).getFirstValue('nested') || implicitLevel;
109
- var children = defaultHandlerInited(node, ctx, interator);
70
+ const handleNested = (defaultHandler, implicitLevel) => {
71
+ return (writer, processor) => {
72
+ const defaultHandlerInited = defaultHandler(writer, processor);
73
+ return (node, ctx, interator) => {
74
+ const nesting = (0, config_1.default)(node, ctx).getFirstValue('nested') || implicitLevel;
75
+ const children = defaultHandlerInited(node, ctx, interator);
110
76
  // if no nesting needs - simply return children
111
77
  if (!nesting) {
112
78
  return children;
113
79
  }
114
- var arr = __spreadArray([], __read(Array(nesting).keys()), false);
115
- return arr.reduce(function (acc) { return makeComponent('blockquote', node, acc); }, children);
80
+ const arr = [...Array(nesting).keys()];
81
+ return arr.reduce((acc) => makeComponent('blockquote', node, acc), children);
116
82
  };
117
83
  };
118
84
  };
119
85
  return {
120
86
  'pod': mkComponent('div'),
121
- 'root': nodeContent,
122
- 'data': emptyContent(),
123
- ':ambient': emptyContent(),
124
- ':code': mkComponent(function (_a) {
125
- var children = _a.children, key = _a.key;
126
- return React.createElement("code", { key: key },
127
- React.createElement("pre", null, children));
128
- }),
129
- 'code': mkComponent(function (_a) {
130
- var children = _a.children, key = _a.key;
131
- return React.createElement("code", { key: key },
132
- React.createElement("pre", null, children));
133
- }),
134
- 'Image': subUse({
87
+ 'root': handlers_1.content,
88
+ 'data': (0, handlers_1.emptyContent)(),
89
+ ':ambient': (0, handlers_1.emptyContent)(),
90
+ ':code': mkComponent(({ children, key }) => React.createElement("code", { key: key },
91
+ React.createElement("pre", null, children))),
92
+ 'code': mkComponent(({ children, key }) => React.createElement("code", { key: key },
93
+ React.createElement("pre", null, children))),
94
+ 'Image': (0, handlers_1.subUse)({
135
95
  // inside head don't wrap into <p>
136
- ':image': setFn(function (node, ctx) {
137
- var linkTo = ctx.link;
138
- return mkComponent(function (_a) {
139
- var children = _a.children, key = _a.key;
140
- var Img = React.createElement("img", { key: key, src: node.src, alt: node.alt });
96
+ ':image': (0, handlers_1.setFn)((node, ctx) => {
97
+ const linkTo = ctx.link;
98
+ return mkComponent(({ children, key }) => {
99
+ const Img = node.src.match(/(mp4|mov)$/)
100
+ ? React.createElement("video", { controls: true, key: key },
101
+ " ",
102
+ React.createElement("source", { src: node.src, type: "video/mp4" }),
103
+ " ")
104
+ : React.createElement("img", { key: key, src: node.src, alt: node.alt });
141
105
  return linkTo ? React.createElement("a", { key: key, href: linkTo }, Img) : Img;
142
106
  });
143
107
  }),
144
- 'caption': mkComponent(function (_a) {
145
- var children = _a.children, key = _a.key;
146
- return React.createElement("div", { className: "caption", key: key }, children);
147
- })
148
- }, setFn(function (node, ctx) {
149
- var level = node.level;
150
- var id = getNodeId(node, ctx);
151
- var conf = makeAttrs(node, ctx);
108
+ 'caption': mkComponent(({ children, key }) => React.createElement("div", { className: "caption", key: key }, children))
109
+ }, (0, handlers_1.setFn)((node, ctx) => {
110
+ const { level } = node;
111
+ const id = (0, schema_1.getNodeId)(node, ctx);
112
+ const conf = (0, config_1.default)(node, ctx);
152
113
  if (conf.exists('link')) {
153
114
  ctx.link = conf.getFirstValue('link');
154
115
  }
155
- return mkComponent(function (_a) {
156
- var children = _a.children, key = _a.key;
157
- return React.createElement("div", { className: "image_block", key: key, id: id }, children);
158
- });
116
+ return mkComponent(({ children, key }) => React.createElement("div", { className: "image_block", key: key, id: id }, children));
159
117
  })),
160
- 'image': nodeContent,
161
- ':image': setFn(function (node, ctx) {
162
- return mkComponent(function (_a) {
163
- var children = _a.children, key = _a.key;
164
- return React.createElement("img", { key: key, src: node.src, alt: node.alt });
165
- });
118
+ 'image': handlers_1.content,
119
+ ':image': (0, handlers_1.setFn)((node, ctx) => {
120
+ return mkComponent(({ children, key }) => React.createElement("img", { key: key, src: node.src, alt: node.alt }));
166
121
  }),
167
- 'Diagram': function () { return function (node, ctx, interator) {
168
- var conf = makeAttrs(node, ctx);
169
- var caption = conf.exists("caption")
122
+ 'Diagram': () => (node, ctx, interator) => {
123
+ const conf = (0, config_1.default)(node, ctx);
124
+ const caption = conf.exists("caption")
170
125
  ? conf.getFirstValue("caption")
171
126
  : null;
172
- var id = getNodeId(node, ctx);
173
- return makeComponent(function (_a) {
174
- var children = _a.children, key = _a.key;
175
- return React.createElement(Diagram, { id: id, isError: node.custom, caption: caption, chart: node.content[0].value });
176
- }, node, interator(node.content, __assign({}, ctx)));
177
- }; },
178
- ':text': function (writer, processor) { return function (node, ctx, interator) {
127
+ const id = (0, schema_1.getNodeId)(node, ctx);
128
+ return makeComponent(({ children, key }) => {
129
+ return React.createElement(diagram_1.default, { id: id, isError: node.custom, caption: caption, chart: node.content[0].value });
130
+ }, node, interator(node.content, Object.assign({}, ctx)));
131
+ },
132
+ ':text': (writer, processor) => (node, ctx, interator) => {
179
133
  return node.value;
180
- }; },
181
- ':verbatim': function (writer, processor) { return function (node, ctx, interator) {
134
+ },
135
+ ':verbatim': (writer, processor) => (node, ctx, interator) => {
182
136
  return node.value;
183
- }; },
184
- 'head:block': subUse({
137
+ },
138
+ 'head:block': (0, handlers_1.subUse)({
185
139
  // inside head don't wrap into <p>
186
- ':para': nodeContent,
187
- }, setFn(function (node, ctx) {
188
- var level = node.level;
189
- var id = getNodeId(node, ctx);
190
- return mkComponent(function (_a) {
191
- var level = _a.level, children = _a.children, key = _a.key;
192
- return React.createElement("h".concat(level), { key: key, id: id }, children);
193
- });
140
+ ':para': handlers_1.content,
141
+ }, (0, handlers_1.setFn)((node, ctx) => {
142
+ const { level } = node;
143
+ const id = (0, schema_1.getNodeId)(node, ctx);
144
+ return mkComponent(({ level, children, key }) => (0, react_1.createElement)(`h${level}`, { key, id }, children));
194
145
  })),
195
- ':blankline': emptyContent(),
146
+ ':blankline': (0, handlers_1.emptyContent)(),
196
147
  ':para': mkComponent('p'),
197
148
  'para': mkComponent('div'),
198
- 'comment:block': emptyContent(),
199
- 'defn': subUse([
149
+ 'comment:block': (0, handlers_1.emptyContent)(),
150
+ 'defn': (0, handlers_1.subUse)([
200
151
  // to avoid overlap para blocks handlers
201
152
  // define general :para at first
202
153
  { ':para': mkComponent('dd') },
203
154
  { 'term:para': mkComponent('dt') },
204
- ], nodeContent),
205
- "nested": handleNested(nodeContent, 1),
206
- 'output': mkComponent(function (_a) {
207
- var children = _a.children, key = _a.key;
208
- return React.createElement("pre", { key: key },
209
- React.createElement("samp", null, children));
210
- }),
211
- 'input': mkComponent(function (_a) {
212
- var children = _a.children, key = _a.key;
213
- return React.createElement("pre", { key: key },
214
- React.createElement("kbd", null, children));
215
- }),
155
+ ], handlers_1.content),
156
+ "nested": handleNested(handlers_1.content, 1),
157
+ 'output': mkComponent(({ children, key }) => React.createElement("pre", { key: key },
158
+ React.createElement("samp", null, children))),
159
+ 'input': mkComponent(({ children, key }) => React.createElement("pre", { key: key },
160
+ React.createElement("kbd", null, children))),
216
161
  // Directives
217
- ':config': setFn(function (node, ctx) {
162
+ ':config': (0, handlers_1.setFn)((node, ctx) => {
218
163
  // setup context
219
164
  if (!ctx.hasOwnProperty('config'))
220
165
  ctx.config = {};
221
166
  //collect configs in context
222
167
  ctx.config[node.name] = node.config;
223
- return emptyContent();
168
+ return (0, handlers_1.emptyContent)();
224
169
  }),
225
- ':alias': setFn(function (node, ctx) {
170
+ ':alias': (0, handlers_1.setFn)((node, ctx) => {
226
171
  // set alias
227
172
  if (!ctx.hasOwnProperty('alias'))
228
173
  ctx.alias = {};
229
174
  //collect configs in context
230
175
  ctx.alias[node.name] = node.replacement;
231
- return emptyContent();
176
+ return (0, handlers_1.emptyContent)();
232
177
  }),
233
178
  // Formatting codes
234
- 'A<>': function (writer, processor) { return function (node, ctx, interator) {
235
- var term = node.content;
179
+ 'A<>': (writer, processor) => (node, ctx, interator) => {
180
+ let term = node.content;
236
181
  if (typeof term !== 'string' && 'value' in term) {
237
182
  term = term.value;
238
183
  }
239
184
  //get replacement text
240
185
  if (!(ctx.alias && ctx.alias.hasOwnProperty(term))) {
241
- return makeComponent(function (_a) {
242
- var children = _a.children, key = _a.key;
243
- return React.createElement("code", { key: key },
244
- "A<",
245
- children,
246
- ">");
247
- }, node, interator(node.content, ctx));
186
+ return makeComponent(({ children, key }) => React.createElement("code", { key: key },
187
+ "A<",
188
+ children,
189
+ ">"), node, interator(node.content, ctx));
248
190
  }
249
191
  else {
250
- var src = ctx.alias[term].join('\n');
251
- var tree_1 = processor(src);
192
+ const src = ctx.alias[term].join('\n');
193
+ const tree_1 = processor(src);
252
194
  // now clean locations
253
- var tree = clean_plugin()(tree_1);
195
+ const tree = (0, plugin_clean_location_1.default)()(tree_1);
254
196
  if (tree[0].type === 'para') {
255
197
  return interator(tree[0].content, ctx);
256
198
  }
@@ -258,15 +200,15 @@ var mapToReact = function (makeComponent) {
258
200
  return interator(tree, ctx);
259
201
  }
260
202
  }
261
- }; },
203
+ },
262
204
  'B<>': mkComponent('strong'),
263
205
  'C<>': mkComponent('code'),
264
- 'E<>': function (writer, processor) { return function (node, ctx, interator) {
206
+ 'E<>': (writer, processor) => (node, ctx, interator) => {
265
207
  if ('content' in node && Array.isArray(node.content))
266
- return node.content.filter(function (e) { return e && e.type == 'number'; }).map(function (element) {
208
+ return node.content.filter(e => e && e.type == 'number').map(element => {
267
209
  return String.fromCharCode(element.value);
268
210
  }).join('');
269
- }; },
211
+ },
270
212
  'I<>': mkComponent('i'),
271
213
  'K<>': mkComponent('kbd'),
272
214
  /**
@@ -281,33 +223,30 @@ var mapToReact = function (makeComponent) {
281
223
  border-top-color: #eee;
282
224
  }
283
225
  */
284
- 'N<>': function (writer, processor) {
285
- writer.addListener('end', function () {
226
+ 'N<>': (writer, processor) => {
227
+ writer.addListener('end', () => {
286
228
  if (!writer.hasOwnProperty('FOOTNOTES')) {
287
229
  return;
288
230
  }
289
- var footnotes = writer.FOOTNOTES;
231
+ const footnotes = writer.FOOTNOTES;
290
232
  if (footnotes.length < 1) {
291
233
  return;
292
234
  } // if empty footnotes
293
235
  if (!writer.hasOwnProperty('postInterator')) {
294
236
  writer.postInterator = [];
295
237
  }
296
- var FootNotes = makeComponent(function (_a) {
297
- var children = _a.children, key = _a.key;
298
- return React.createElement("div", { key: "".concat(key, "_FOOTNOTES"), className: "footnotes" }, footnotes.map(function (footnote, id) {
299
- return React.createElement("p", { key: id },
300
- React.createElement("sup", { id: footnote.fnId, className: "footnote" },
301
- React.createElement("a", { href: "#".concat(footnote.fnRefId) },
302
- "[",
303
- footnote.gid,
304
- "]")),
305
- footnote.make());
306
- }));
307
- }, {});
238
+ const FootNotes = makeComponent(({ children, key }) => React.createElement("div", { key: `${key}_FOOTNOTES`, className: "footnotes" }, footnotes.map((footnote, id) => {
239
+ return React.createElement("p", { key: id },
240
+ React.createElement("sup", { id: footnote.fnId, className: "footnote" },
241
+ React.createElement("a", { href: `#${footnote.fnRefId}` },
242
+ "[",
243
+ footnote.gid,
244
+ "]")),
245
+ footnote.make());
246
+ })), {});
308
247
  writer.postInterator.push(FootNotes);
309
248
  });
310
- return function (node, ctx, interator) {
249
+ return (node, ctx, interator) => {
311
250
  // skip empty notes
312
251
  if (node.content.length < 1) {
313
252
  return;
@@ -316,45 +255,42 @@ var mapToReact = function (makeComponent) {
316
255
  writer.gid = 1;
317
256
  }
318
257
  // get foot note id
319
- var gid = writer.gid++;
320
- var fnRefId = "fnref:".concat(gid);
321
- var fnId = "fn:".concat(gid);
258
+ const gid = writer.gid++;
259
+ const fnRefId = `fnref:${gid}`;
260
+ const fnId = `fn:${gid}`;
322
261
  if (!writer.hasOwnProperty('FOOTNOTES')) {
323
262
  writer.FOOTNOTES = [];
324
263
  }
325
264
  writer.FOOTNOTES.push({
326
- gid: gid,
327
- fnRefId: fnRefId,
328
- fnId: fnId,
329
- node: node,
330
- make: function () { return interator(node.content, ctx); }
265
+ gid,
266
+ fnRefId,
267
+ fnId,
268
+ node,
269
+ make: () => { return interator(node.content, ctx); }
331
270
  });
332
- return makeComponent(function (_a) {
333
- var children = _a.children, key = _a.key;
334
- return React.createElement("sup", { key: key, id: fnRefId, className: "footnote" },
335
- React.createElement("a", { href: "#".concat(fnId) },
336
- "[",
337
- gid,
338
- "]"));
339
- }, node);
271
+ return makeComponent(({ children, key }) => React.createElement("sup", { key: key, id: fnRefId, className: "footnote" },
272
+ React.createElement("a", { href: `#${fnId}` },
273
+ "[",
274
+ gid,
275
+ "]")), node);
340
276
  };
341
277
  },
342
278
  'R<>': mkComponent('var'),
343
279
  'T<>': mkComponent('samp'),
344
- 'D<>': function (writer, processor) { return function (node, ctx, interator) {
345
- var synonyms = node.synonyms;
346
- var definition = [node.content[0]];
280
+ 'D<>': (writer, processor) => (node, ctx, interator) => {
281
+ let { synonyms } = node;
282
+ let definition = [node.content[0]];
347
283
  if (synonyms) {
348
284
  definition = synonyms;
349
285
  }
350
286
  if (!writer.hasOwnProperty('DEFINITIONS')) {
351
287
  writer.DEFINITIONS = [];
352
288
  }
353
- writer.DEFINITIONS.push({ definition: definition });
289
+ writer.DEFINITIONS.push({ definition });
354
290
  return makeComponent('dfn', node, interator(node.content, ctx));
355
- }; },
356
- "L<>": setFn(function (node, ctx) {
357
- var meta = node.meta;
291
+ },
292
+ "L<>": (0, handlers_1.setFn)((node, ctx) => {
293
+ let { meta } = node;
358
294
  if (meta === null) {
359
295
  meta = node.content;
360
296
  }
@@ -365,33 +301,27 @@ var mapToReact = function (makeComponent) {
365
301
  if (meta && typeof meta !== 'string' && 'value' in meta) {
366
302
  meta = meta.value;
367
303
  }
368
- return mkComponent(function (_a) {
369
- var children = _a.children, key = _a.key;
370
- return React.createElement("a", { href: meta, key: key }, children);
371
- });
304
+ return mkComponent(({ children, key }) => React.createElement("a", { href: meta, key: key }, children));
372
305
  }),
373
- 'S<>': function (writer, processor) { return function (node, ctx, interator) {
374
- var content = node.content || '';
306
+ 'S<>': (writer, processor) => (node, ctx, interator) => {
307
+ let content = node.content || '';
375
308
  if (typeof content !== 'string' && 'value' in content) {
376
309
  content = content.value;
377
310
  }
378
- var Content = content.split('').map(function (symbol, index) {
311
+ const Content = content.split('').map((symbol, index) => {
379
312
  if (symbol === ' ')
380
313
  return "\u00a0";
381
314
  if (symbol === '\n')
382
315
  return React.createElement("br", { key: index });
383
316
  return symbol;
384
317
  });
385
- return makeComponent(function (_a) {
386
- var children = _a.children, key = _a.key;
387
- return children;
388
- }, {}, Content);
389
- }; },
390
- 'V<>': nodeContent,
391
- 'Z<>': emptyContent(),
318
+ return makeComponent(({ children, key }) => children, {}, Content);
319
+ },
320
+ 'V<>': handlers_1.content,
321
+ 'Z<>': (0, handlers_1.emptyContent)(),
392
322
  'U<>': mkComponent('u'),
393
- 'X<>': function (writer, processor) { return function (node, ctx, interator) {
394
- var entry = node.entry;
323
+ 'X<>': (writer, processor) => (node, ctx, interator) => {
324
+ let { entry } = node;
395
325
  if (entry === null && node.content.length > 0) {
396
326
  //@ts-ignore
397
327
  entry = [node.content[0]];
@@ -401,47 +331,42 @@ var mapToReact = function (makeComponent) {
401
331
  writer.INDEXTERMS = [];
402
332
  }
403
333
  writer.INDEXTERMS.push({
404
- entry: entry
334
+ entry
405
335
  });
406
336
  return interator(node.content, ctx);
407
- }; },
337
+ },
408
338
  // table section
409
- 'table': function (writer, processor) {
410
- return function (node, ctx, interator) {
411
- var conf = makeAttrs(node, ctx);
412
- var attr = { caption: '' };
413
- if (conf.exists('caption')) {
414
- var caption = conf.getFirstValue('caption');
415
- attr.caption = caption;
416
- }
417
- if (typeof node === 'string') {
418
- return node;
419
- }
420
- if (!('content' in node)) {
421
- console.warn('[jsx] no content in node');
422
- return '';
423
- }
424
- var id = getNodeId(node, ctx);
425
- return makeComponent(function (_a) {
426
- var key = _a.key, children = _a.children;
427
- return React.createElement("table", { key: key, id: id },
428
- React.createElement("caption", { className: "caption" }, attr.caption),
429
- React.createElement("tbody", null, children));
430
- }, node, interator(node.content, __assign({}, ctx)));
431
- };
339
+ 'table': (writer, processor) => (node, ctx, interator) => {
340
+ const conf = (0, config_1.default)(node, ctx);
341
+ let attr = { caption: '' };
342
+ if (conf.exists('caption')) {
343
+ const caption = conf.getFirstValue('caption');
344
+ attr.caption = caption;
345
+ }
346
+ if (typeof node === 'string') {
347
+ return node;
348
+ }
349
+ if (!('content' in node)) {
350
+ console.warn('[jsx] no content in node');
351
+ return '';
352
+ }
353
+ const id = (0, schema_1.getNodeId)(node, ctx);
354
+ return makeComponent(({ key, children }) => {
355
+ return React.createElement("table", { key: key, id: id },
356
+ React.createElement("caption", { className: "caption" }, attr.caption),
357
+ React.createElement("tbody", null, children));
358
+ }, node, interator(node.content, Object.assign({}, ctx)));
432
359
  },
433
- ':separator': emptyContent(),
360
+ ':separator': (0, handlers_1.emptyContent)(),
434
361
  'table_row': mkComponent('tr'),
435
362
  'table_cell': mkComponent('td'),
436
- 'table_head': subUse({
363
+ 'table_head': (0, handlers_1.subUse)({
437
364
  'table_cell': mkComponent('th')
438
365
  }, mkComponent('tr')),
439
- ':list': setFn(function (node, ctx) {
440
- return node.list === 'ordered' ? mkComponent('ol')
441
- : node.list === 'variable' ? mkComponent('dl')
442
- : mkComponent('ul');
443
- }),
444
- 'item:block': function (writer, processor) { return function (node, ctx, interator) {
366
+ ':list': (0, handlers_1.setFn)((node, ctx) => node.list === 'ordered' ? mkComponent('ol')
367
+ : node.list === 'variable' ? mkComponent('dl')
368
+ : mkComponent('ul')),
369
+ 'item:block': (writer, processor) => (node, ctx, interator) => {
445
370
  if (typeof node === 'string') {
446
371
  return node;
447
372
  }
@@ -453,78 +378,64 @@ var mapToReact = function (makeComponent) {
453
378
  if (!(node.content instanceof Array)) {
454
379
  console.error(node);
455
380
  }
456
- var id = getNodeId(node, ctx);
457
- return makeComponent('li', node, interator(node.content, __assign({}, ctx)), { id: id });
458
- }; },
381
+ const id = (0, schema_1.getNodeId)(node, ctx);
382
+ return makeComponent('li', node, interator(node.content, Object.assign({}, ctx)), { id });
383
+ },
459
384
  // table of content
460
- ':toc': setFn(function (node, ctx) {
461
- var tocTitle = node.title;
462
- return mkComponent(function (_a) {
463
- var children = _a.children, key = _a.key;
464
- return React.createElement("div", { className: "toc", key: key },
465
- tocTitle ? React.createElement("div", { className: "toctitle" }, tocTitle) : '',
466
- children);
467
- });
385
+ ':toc': (0, handlers_1.setFn)((node, ctx) => {
386
+ const tocTitle = node.title;
387
+ return mkComponent(({ children, key }) => React.createElement("div", { className: "toc", key: key },
388
+ tocTitle ? React.createElement("div", { className: "toctitle" }, tocTitle) : '',
389
+ children));
468
390
  }),
469
- ':toc-list': setFn(function (node, ctx) {
470
- var level = node.level;
471
- return mkComponent(function (_a) {
472
- var children = _a.children, key = _a.key;
473
- return React.createElement("ul", { className: "toc-list listlevel".concat(level), key: key }, children);
474
- });
391
+ ':toc-list': (0, handlers_1.setFn)((node, ctx) => {
392
+ const { level } = node;
393
+ return mkComponent(({ children, key }) => React.createElement("ul", { className: `toc-list listlevel${level}`, key: key }, children));
475
394
  }),
476
- ':toc-item': subUse({
395
+ ':toc-item': (0, handlers_1.subUse)({
477
396
  // inside head don't wrap into <p>
478
- ':para': nodeContent,
479
- }, setFn(function (node, ctx) {
480
- return mkComponent(function (_a) {
481
- var children = _a.children, key = _a.key;
482
- return React.createElement("li", { className: "toc-item", key: key }, children);
483
- });
397
+ ':para': handlers_1.content,
398
+ }, (0, handlers_1.setFn)((node, ctx) => {
399
+ return mkComponent(({ children, key }) => React.createElement("li", { className: "toc-item", key: key }, children));
484
400
  })),
485
401
  };
486
402
  };
487
- function podlite(children, _a) {
488
- var file = _a.file, _b = _a.plugins, plugins = _b === void 0 ? function () { } : _b, wrapElement = _a.wrapElement, tree = _a.tree;
489
- var args = [];
490
- for (var _i = 2; _i < arguments.length; _i++) {
491
- args[_i - 2] = arguments[_i];
492
- }
493
- var ast = (function (tree) {
403
+ function podlite(children, { file, plugins = () => { }, wrapElement, tree }, ...args) {
404
+ const ast = ((tree) => {
494
405
  if (tree)
495
406
  return tree.interator;
496
- var podlite = podlite_core({ importPlugins: true });
497
- var treeAfterParsed = podlite.parse(children || file);
407
+ let podlite = (0, podlite_1.podlite)({ importPlugins: true });
408
+ let treeAfterParsed = podlite.parse(children || file);
498
409
  return podlite.toAst(treeAfterParsed);
499
410
  })(tree);
500
411
  // const ast = parse( children || content )
501
- var i_key_i = 10000;
502
- var makeComponent = helperMakeReact({ wrapElement: wrapElement });
412
+ let i_key_i = 10000;
413
+ const makeComponent = helperMakeReact({ wrapElement });
503
414
  // TODO: move toJSX to podlite/core
504
415
  // const toJSXPlugins= toAnyRules('toJSX', instance.getPlugins())
505
- var rules = __assign(__assign({}, mapToReact(makeComponent)), plugins(makeComponent));
506
- var writer = new Writer(function (s) {
416
+ const rules = Object.assign(Object.assign({}, mapToReact(makeComponent)), plugins(makeComponent));
417
+ const writer = new writer_1.default((s) => {
507
418
  });
508
- var res = toAny({ processor: parse })
509
- .use({ '*:*': function () { return function (node, ctx, interator) {
419
+ const res = (0, exportAny_1.default)({ processor: pod6_1.parse })
420
+ .use({ '*:*': () => (node, ctx, interator) => {
510
421
  // skip named blocks
511
- if (isNamedBlock(node.name)) {
422
+ if ((0, makeTransformer_1.isNamedBlock)(node.name)) {
512
423
  return null;
513
424
  }
514
- if (isSemanticBlock(node)) {
515
- return makeComponent(function (_a) {
516
- var key = _a.key, children = _a.children;
425
+ if ((0, makeTransformer_1.isSemanticBlock)(node)) {
426
+ return makeComponent(({ key, children }) => {
517
427
  return React.createElement("div", { key: key },
518
428
  React.createElement("h1", { className: node.name, key: key }, node.name),
519
- interator(node.content, __assign({}, ctx)));
520
- }, node, interator(node.content, __assign({}, ctx)));
429
+ interator(node.content, Object.assign({}, ctx)));
430
+ }, node, interator(node.content, Object.assign({}, ctx)));
521
431
  }
522
432
  console.warn('[podlite] Not supported: ' + JSON.stringify(node, null, 2));
523
- return React.createElement('code', { key: ++i_key_i }, "not supported node:".concat(JSON.stringify(node, null, 2)));
524
- }; } })
433
+ return (0, react_1.createElement)('code', { key: ++i_key_i }, `not supported node:${JSON.stringify(node, null, 2)}`);
434
+ } })
525
435
  .use(rules)
526
436
  .run(ast, writer);
527
437
  // union main react elements and post processed via onEnd event
528
438
  return new Array().concat(res.interator, writer.postInterator);
529
439
  }
530
- export default Podlite;
440
+ exports.default = exports.Podlite;
441
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,37 +1,29 @@
1
1
  {
2
2
  "name": "@podlite/to-jsx",
3
- "version": "0.0.10",
3
+ "version": "0.0.13",
4
4
  "description": "The lightweight, customizable React podlite component.",
5
5
  "types": "lib/index.d.ts",
6
- "main": "index.js",
6
+ "main": "lib/index.js",
7
7
  "license": "MIT",
8
8
  "scripts": {
9
9
  "build": "tsc",
10
10
  "test": "yarn g:jest --passWithNoTests"
11
11
  },
12
12
  "dependencies": {
13
- "@podlite/diagram": "^0.0.10",
14
- "@podlite/schema": "0.0.7",
15
- "pod6": "0.0.43",
16
- "react": "^16.12.0",
17
- "react-dom": "^16.12.0",
13
+ "@podlite/diagram": "^0.0.12",
14
+ "@podlite/schema": "0.0.9",
15
+ "pod6": "^0.0.44",
18
16
  "react-is": "^17.0.2"
19
17
  },
20
18
  "publishConfig": {
21
19
  "access": "public",
22
- "main": "index.js"
23
- },
24
- "devDependencies": {
25
- "@types/react": "^16.x",
26
- "@types/react-dom": "^16.x",
27
- "glob": "^7.2.0",
28
- "podlite": "0.0.16"
20
+ "main": "lib/index.js"
29
21
  },
30
22
  "peerDependencies": {
31
23
  "@podlite/diagram": "*",
32
24
  "@podlite/schema": "*",
33
25
  "pod6": "*",
34
- "react": "*",
35
- "react-dom": "*"
26
+ "react": "^16.0.0 || ^17.0.0",
27
+ "react-dom": "^16.0.0 || ^17.0.0"
36
28
  }
37
29
  }
package/src/index.tsx CHANGED
@@ -1,4 +1,4 @@
1
- import React from 'react'
1
+ import * as React from 'react'
2
2
  import {createElement} from 'react'
3
3
  import toAny from 'pod6/built/exportAny'
4
4
  import { subUse, wrapContent, emptyContent, content as nodeContent, setFn, handleNested } from 'pod6/built/helpers/handlers'
@@ -35,7 +35,7 @@ const helperMakeReact = ({wrapElement})=>{
35
35
  const result =
36
36
  typeof src === 'function'
37
37
  ? src({ ...attr, key , children}, children)
38
- : React.createElement(src,{ ...extraProps, key }, children )
38
+ : createElement(src,{ ...extraProps, key }, children )
39
39
 
40
40
  // // create react element and pass key
41
41
  // if (!isValidElementType(src)) {
@@ -102,7 +102,9 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
102
102
  ':image' : setFn(( node:Image, ctx ) => {
103
103
  const linkTo = ctx.link
104
104
  return mkComponent(({children, key })=>{
105
- const Img = <img key={key} src={node.src} alt={node.alt}/>
105
+ const Img = node.src.match(/(mp4|mov)$/)
106
+ ? <video controls key={key}> <source src={node.src} type="video/mp4" /> </video>
107
+ : <img key={key} src={node.src} alt={node.alt}/>
106
108
  return linkTo ?<a key={key} href={linkTo}>{Img}</a> : Img
107
109
  })
108
110
  }),
@@ -117,6 +119,7 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
117
119
  }
118
120
  return mkComponent(({children, key })=>
119
121
  <div className="image_block" key={key} id={id}>{children}</div>)
122
+
120
123
  })
121
124
  ),
122
125
  'image':nodeContent,
@@ -147,7 +150,7 @@ const mapToReact = (makeComponent):Partial<RulesStrict> => {
147
150
  setFn(( node, ctx ) => {
148
151
  const {level } = node
149
152
  const id = getNodeId(node, ctx)
150
- return mkComponent(({level,children, key })=>React.createElement(`h${level}`,{key, id}, children))
153
+ return mkComponent(({level,children, key })=>createElement(`h${level}`,{key, id}, children))
151
154
  })
152
155
  ),
153
156
 
@@ -434,7 +437,7 @@ function podlite (children:string, { file,plugins=()=>{}, wrapElement, tree}:{f
434
437
  }, node, interator(node.content, { ...ctx}) )
435
438
  }
436
439
  console.warn('[podlite] Not supported: ' + JSON.stringify(node,null,2))
437
- return React.createElement('code',{key:++i_key_i},`not supported node:${JSON.stringify(node,null,2)}`)
440
+ return createElement('code',{key:++i_key_i},`not supported node:${JSON.stringify(node,null,2)}`)
438
441
  }})
439
442
  .use(rules)
440
443
  .run(ast, writer)
package/tsconfig.json CHANGED
@@ -1,36 +1,27 @@
1
1
  {
2
- // // "extends": "../core/tsconfig.json",
3
- // "include": ["src/**/*"],
4
- // "compilerOptions": {
5
- // "outDir": "./lib",
6
- // "rootDir": "./src",
7
- // "jsx": "react",
8
- // "esModuleInterop": true,
9
- // },
10
- // "references": [
11
- // {
12
- // "path": "../core"
13
- // }
14
- // ]
15
2
 
3
+ "include": [
4
+ "src"
5
+ ],
6
+ "exclude": [
7
+ "lib",
8
+ "t"
9
+ ],
16
10
 
17
- "include": ["src/**/*"],
18
11
  "jsx": "react",
19
12
 
20
13
  "compilerOptions": {
21
- "target": "es5",
22
- // "module": "es2015",
23
- "module": "esnext",
14
+ "target": "es2017",
15
+ "module": "commonjs",
24
16
  "moduleResolution": "node",
17
+ "sourceMap": true,
25
18
  "jsx": "react",
26
19
  "outDir": "./lib",
27
20
  "rootDir": "./src",
28
21
  "allowSyntheticDefaultImports": true,
29
22
  "downlevelIteration": true,
30
23
  "declaration": true,
31
- "esModuleInterop": true,
32
24
  "incremental": true,
33
- // "target": "ES2018"
34
25
  },
35
26
  "references": [
36
27
  {
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.d.ts","../../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.dom.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.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.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/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/dns.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/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.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/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/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/unist/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","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":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"9e3199a1f11557e3a2d89230e811bd006c9f42730058c031212b312383c98cea","affectsGlobalScope":true},"336d441e18e353ec2228e4c7540d4b46e9358a59dcc6b248c52a98537cac8623",{"version":"583b4bd4e441916be4bf152ee323c4ffa6e178fd25df2ee2215ef05c7feb5ad4","affectsGlobalScope":true},"d20f08527645f62facb2d66c2b7bd31ea964b59c897d00bddb1efe8c13890b72","5726b5ce952dc5beaeb08d5f64236632501568a54a390363d2339ba1dc5393b1","674bedbfd2004e233e2a266a3d2286e524f0d58787a98522d834d6ccda1d215a","714637d594e1a38a075091fe464ca91c6abc0b154784b4287f6883200e28ccef",{"version":"23edba5f47d3409810c563fe8034ae2c59e718e1ef8570f4152ccdde1915a096","affectsGlobalScope":true},"0e9c55f894ca2d9cf63b5b0d43a8cec1772dd560233fd16275bc7a485eb82f83","d53b352a01645c470a0d8c31bf290ba791fc28ade0ce187a4a50f5c2f826f75e","5f0a09de75bd965c21dc6d73671ba88830272f9ed62897bb0aa9754b369b1eed","2b34e7fcba9e1f24e7f54ba5c8be5a8895b0b8b444ccf6548e04acdee0899317",{"version":"06d2be99c3dd2ff52114d02ee443ba486ab482423df1941d3c97d6a92e924d70","affectsGlobalScope":true},{"version":"bfd4f140c07091b5e8a963c89e6fa3f44b6cfcbc11471b465cf63e2d020ad0eb","affectsGlobalScope":true},"a106a0bea088b70879ac88ff606dc253c0cc474ea05ad3a282b8bfb1091ae576","c98ce957db9eebd75f53edda3f6893e05ab2d2283b5667b18e31bcdb6427ed10","37eed30fc8318b8ac76eac6f41d0758a9d0bffd8f3ff353e3ad0f8717dd08d92","9aff68f1b847b846d3d50a58c9f8f99389bedd0258d1b1c201f11b97ecfd36f8","1978992206803f5761e99e893d93b25abc818c5fe619674fdf2ae02b29f641ba","05fbe81f09fc455a2c343d2458d2b3c600c90b92b22926be765ee79326be9466","8e7d6dae9e19bbe47600dcfd4418db85b30ae7351474ea0aad5e628f9845d340","f20ea392f7f27feb7a90e5a24319a4e365b07bf83c39a547711fe7ff9df68657","32542c4660ecda892a333a533feedba31738ee538ef6a78eb73af647137bc3fc","0ecacea5047d1a7d350e7049dbd22f26435be5e8736a81a56afec5b3264db1ca","ffcb4ebde21f83370ed402583888b28651d2eb7f05bfec9482eb46d82adedd7f",{"version":"fcb95c45150c717706119f12f2a3639d51baa041cd5bb441eb8501e04b52c501","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","f4a3fc4efc6944e7b7bd4ccfa45e0df68b6359808e6cf9d061f04fd964a7b2d3","73cad675aead7a2c05cf934e7e700c61d84b2037ac1d576c3f751199b25331da","8c3137ba3583ec18484429ec1c8eff89efdc42730542f157b38b102fdccc0c71","74594bec8a9fa1a2cd40268f9ab95d0c44b6080345da6e8b913939d19b1d57ae","94ca7beec4e274d32362b54e0133152f7b4be9487db7b005070c03880b6363aa","2d713cbcbd5bcc38d91546eaeea7bb1c8686dc4a2995a28556d957b1b9de11d9","bbf21f210782db4193359010a4710786add43e3b50aa42fc0d371f45b4e4d8d3","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","631e96db896d645f7132c488ad34a16d71fd2be9f44696f8c98289ee1c8cbfa9","2c77230d381cba81eb6f87cda2fbfff6c0427c6546c2e2590110effff37c58f7","da86ee9a2f09a4583db1d5e37815894967e1f694ad9f3c25e84e0e4d40411e14","141a943e5690105898a67537a470f70b56d0e183441b56051d929e902376b7b2","ddc086b1adac44e2fccf55422da1e90fa970e659d77f99712422a421564b4877","515ef1d99036ff0dafa5bf738e02222edea94e0d97a0aa0ff277ac5e96b57977",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"780058f4a804c8bdcdd2f60e7af64b2bc57d149c1586ee3db732a84d659a50bf","ae68a04912ee5a0f589276f9ec60b095f8c40d48128a4575b3fdd7d93806931c","19d580a3b42ad5caeaee266ae958260e23f2df0549ee201c886c8bd7a4f01d4e","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","9c4c395e927045b324877acdc4bfb95f128f36bc9f073266a2f0342495075a4f","6f310052978d351ebf9033e90bf009e718522c7cb7c148cc9cb9413a73657250","142f7ea2d6affb8c5f4c14723ad122124f1fd1a29aa6ef9b5c46daf6cda719ce","dd6fc277379bfe5da22e38dae767e07da2abad6faf9fc1e0fa6e927b99a91bba","29ff47f56519cef9e07b2aa05777515b3168fd977a2d9ea0387930cd4c1ce97f","578ada4c8488a001c33301a3f4050ce7c567ffe942adaf52925026786046da5a","0b69226aac5cce5a2a9d25f95dea7986caf4d36952cabb6eb8b660219daf9356","401a75f4fbeea4471faad9e3aa87b4420755e3e2af8d594baba33b162b861de1","6ee5f0c5b153902d76a4327cae94cc718aee565afff54d0eb815084de6de2e4d","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","d81220988a7f97fece26e808c7779fd97f7f424f723f7db1fab74786a912333b","b657fb93161f0d16f051b37f47c6ff64307866c9f346ad88cb034507f78848f9","b30fdd8d44300d4ace7f2de31e97ed7f310035978a4fd0f92c66631788f29215","6fa804112d574737638af24d452f3e4bed1a390b1dc6599a3036c6917a4d4418","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","bfbd1bc7798f7171950d73a74e497dd045f662d73caab9de34b2a6f35e1e84a9","170a970c4aced3c09652630d64b53024e6f2b802db228eb84274d956f347aed4","7b9668d42e95ed741df5f5c92a414eb868d2545120f19c6672034d21de031677","a5187e776bba3e68f443fde17274683897227d3b1cef6c8514c753f5ac79efff","9a0cdcf5b3086d41228ccf596493adf0d43c096cf628d8f9da0be7febaabe1c0","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","c45d6f4d3a20be54e46237608f537a8d85397f87b9c3318d68ed925c2f1d0b51","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"jsx":2,"module":99,"outDir":"./lib","rootDir":"./src","target":1},"fileIdsList":[[143],[141,142,144,145,146],[141],[141,144],[50,83],[149],[150],[154,158],[152,155],[152,155,156,157],[154],[153],[81],[39],[80,81],[40],[41,49,50,57,66],[41,42,49,57],[73],[44,45,50,58],[45,66],[46,47,49,57],[47],[48,49],[49],[49,50,51,66,72],[50,51],[52,57,66,72],[49,50,52,53,57,66,69,72],[52,54,69,72],[82],[49,55],[56,72],[47,49,57,66],[58],[59],[39,60],[71],[62],[63],[49,64],[64,65,73,75],[49,66],[67],[68],[57,69],[70],[38,39,40,41,42,43,44,45,46,47,48,49,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],[57,71],[63,72],[66,74],[75],[79],[49,51,66,72,75,76],[66,77],[36],[32,33,34,35],[171],[94,95,97,121,122,125,128,129],[92,93],[92],[94,95,96,128,129],[129],[94,95,125,127,129],[126,129,130],[94,95,128,129],[94,95,97,121,122,123,124,128,129],[94,95,97,125,128],[97,129],[99,100,101,102,103,104,105,106,107,129],[98,108,116,117,118,119,120],[101,129],[109,110,111,112,113,114,115,129],[85],[84],[90],[49,83],[91],[136,137],[36,136],[131],[130,131,132,133,134,135],[36,37,84,86,87,88,89,91,136,138,139]],"referencedMap":[[144,1],[147,2],[142,3],[145,4],[146,3],[148,5],[150,6],[151,7],[159,8],[156,9],[158,10],[157,9],[155,11],[154,12],[81,13],[39,14],[82,15],[40,16],[41,17],[42,18],[43,19],[44,20],[45,21],[46,22],[47,23],[48,24],[49,25],[50,26],[51,27],[52,28],[53,29],[54,30],[83,31],[55,32],[56,33],[57,34],[58,35],[59,36],[60,37],[61,38],[62,39],[63,40],[64,41],[65,42],[66,43],[67,44],[68,45],[69,46],[70,47],[80,48],[71,49],[72,50],[73,19],[74,51],[75,52],[79,53],[76,54],[77,55],[167,56],[36,57],[172,58],[130,59],[94,60],[93,61],[97,62],[124,63],[128,64],[127,65],[95,63],[96,66],[98,66],[125,67],[129,68],[99,63],[103,63],[105,63],[100,63],[101,69],[107,63],[108,70],[104,63],[106,63],[102,63],[121,71],[117,63],[119,63],[118,63],[114,63],[120,72],[115,63],[116,73],[109,63],[110,63],[111,63],[112,63],[113,63],[86,74],[85,75],[91,76],[84,77],[137,78],[138,79],[139,80],[132,81],[136,82],[140,83]],"exportedModulesMap":[[144,1],[147,2],[142,3],[145,4],[146,3],[148,5],[150,6],[151,7],[159,8],[156,9],[158,10],[157,9],[155,11],[154,12],[81,13],[39,14],[82,15],[40,16],[41,17],[42,18],[43,19],[44,20],[45,21],[46,22],[47,23],[48,24],[49,25],[50,26],[51,27],[52,28],[53,29],[54,30],[83,31],[55,32],[56,33],[57,34],[58,35],[59,36],[60,37],[61,38],[62,39],[63,40],[64,41],[65,42],[66,43],[67,44],[68,45],[69,46],[70,47],[80,48],[71,49],[72,50],[73,19],[74,51],[75,52],[79,53],[76,54],[77,55],[167,56],[36,57],[172,58],[130,59],[94,60],[93,61],[97,62],[124,63],[128,64],[127,65],[95,63],[96,66],[98,66],[125,67],[129,68],[99,63],[103,63],[105,63],[100,63],[101,69],[107,63],[108,70],[104,63],[106,63],[102,63],[121,71],[117,63],[119,63],[118,63],[114,63],[120,72],[115,63],[116,73],[109,63],[110,63],[111,63],[112,63],[113,63],[86,74],[85,75],[91,76],[84,77],[137,78],[138,79],[139,80],[132,81],[136,82],[140,83]],"semanticDiagnosticsPerFile":[143,144,141,147,142,145,146,148,149,150,151,159,152,156,158,157,155,154,153,160,161,162,163,81,39,82,40,41,42,43,44,45,46,47,48,49,50,51,38,78,52,53,54,83,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,80,71,72,73,74,75,79,76,77,164,165,166,34,167,32,36,168,35,169,170,171,172,130,92,94,93,97,124,128,127,95,96,98,125,129,122,123,99,103,105,100,101,107,108,104,106,102,121,117,119,118,114,120,115,116,109,110,111,112,113,33,37,90,88,86,85,89,91,87,84,1,7,11,10,3,12,13,14,15,16,17,18,19,4,5,23,20,21,22,24,25,26,6,27,28,29,30,2,31,9,8,126,137,138,139,134,135,132,136,133,131,140]},"version":"4.5.4"}
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/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/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","6ee5f0c5b153902d76a4327cae94cc718aee565afff54d0eb815084de6de2e4d","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","d81220988a7f97fece26e808c7779fd97f7f424f723f7db1fab74786a912333b","b657fb93161f0d16f051b37f47c6ff64307866c9f346ad88cb034507f78848f9","b30fdd8d44300d4ace7f2de31e97ed7f310035978a4fd0f92c66631788f29215","6fa804112d574737638af24d452f3e4bed1a390b1dc6599a3036c6917a4d4418","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","bfbd1bc7798f7171950d73a74e497dd045f662d73caab9de34b2a6f35e1e84a9","170a970c4aced3c09652630d64b53024e6f2b802db228eb84274d956f347aed4","7b9668d42e95ed741df5f5c92a414eb868d2545120f19c6672034d21de031677","a5187e776bba3e68f443fde17274683897227d3b1cef6c8514c753f5ac79efff","0f3697fca5555da832f27c60c265003e500e07a8291f5e31e99088883c59b45c","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","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],[66,93,100],[93,166],[93,167],[93,171,175],[93,169,172],[93,169,172,173,174],[93,171],[93,170],[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,187],[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],[165,6],[166,1],[167,7],[168,8],[176,9],[169,1],[173,10],[175,11],[174,10],[172,12],[171,13],[170,1],[177,1],[178,1],[179,1],[180,1],[50,14],[51,14],[53,15],[54,16],[55,17],[56,18],[57,19],[58,20],[59,21],[60,22],[61,23],[62,24],[63,24],[64,25],[65,26],[66,27],[67,28],[52,1],[99,1],[68,29],[69,30],[70,31],[100,32],[71,33],[72,34],[73,35],[74,36],[75,37],[76,38],[77,39],[78,40],[79,41],[80,42],[81,43],[82,44],[84,45],[83,46],[85,47],[86,48],[87,49],[88,50],[89,51],[90,52],[91,53],[92,54],[93,55],[94,56],[95,57],[96,58],[97,59],[98,60],[181,1],[182,1],[183,1],[46,1],[184,61],[44,1],[48,62],[185,1],[47,1],[186,1],[187,1],[188,63],[147,64],[109,1],[111,65],[110,66],[114,67],[141,68],[145,69],[144,70],[112,68],[113,71],[115,71],[142,72],[146,73],[139,1],[140,1],[116,68],[120,68],[122,68],[117,68],[118,74],[124,68],[125,75],[121,68],[123,68],[119,68],[138,76],[134,68],[136,68],[135,68],[131,68],[137,77],[132,68],[133,78],[126,68],[127,68],[128,68],[129,68],[130,68],[45,1],[49,1],[107,1],[105,1],[103,79],[102,80],[106,1],[108,81],[104,1],[101,82],[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,83],[155,84],[156,85],[151,1],[152,1],[149,86],[153,87],[150,1],[148,1],[157,88]],"exportedModulesMap":[[160,1],[161,2],[158,1],[164,3],[159,4],[162,5],[163,4],[165,6],[166,1],[167,7],[168,8],[176,9],[169,1],[173,10],[175,11],[174,10],[172,12],[171,13],[170,1],[177,1],[178,1],[179,1],[180,1],[50,14],[51,14],[53,15],[54,16],[55,17],[56,18],[57,19],[58,20],[59,21],[60,22],[61,23],[62,24],[63,24],[64,25],[65,26],[66,27],[67,28],[52,1],[99,1],[68,29],[69,30],[70,31],[100,32],[71,33],[72,34],[73,35],[74,36],[75,37],[76,38],[77,39],[78,40],[79,41],[80,42],[81,43],[82,44],[84,45],[83,46],[85,47],[86,48],[87,49],[88,50],[89,51],[90,52],[91,53],[92,54],[93,55],[94,56],[95,57],[96,58],[97,59],[98,60],[181,1],[182,1],[183,1],[46,1],[184,61],[44,1],[48,62],[185,1],[47,1],[186,1],[187,1],[188,63],[147,64],[109,1],[111,65],[110,66],[114,67],[141,68],[145,69],[144,70],[112,68],[113,71],[115,71],[142,72],[146,73],[139,1],[140,1],[116,68],[120,68],[122,68],[117,68],[118,74],[124,68],[125,75],[121,68],[123,68],[119,68],[138,76],[134,68],[136,68],[135,68],[131,68],[137,77],[132,68],[133,78],[126,68],[127,68],[128,68],[129,68],[130,68],[45,1],[49,1],[107,1],[105,1],[103,79],[102,80],[106,1],[108,81],[104,1],[101,82],[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,83],[155,84],[156,85],[151,1],[152,1],[149,86],[153,87],[150,1],[148,1],[157,88]],"semanticDiagnosticsPerFile":[160,161,158,164,159,162,163,165,166,167,168,176,169,173,175,174,172,171,170,177,178,179,180,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,181,182,183,46,184,44,48,185,47,186,187,188,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"}