podlite 0.0.23 → 0.0.25

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,10 @@
1
1
  # @podlite
2
2
 
3
3
  ## Upcoming
4
+ ## 0.0.25
5
+ - improve blocks linking
6
+ ## 0.0.24
7
+ - clean source
4
8
  ## 0.0.23
5
9
  - update deps
6
10
  ## 0.0.22
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2021-2024 Aliaksandr Zahatski
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
package/lib/ids.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Plugin } from 'pod6/built/';
1
+ import { ParserPlugin } from "@podlite/schema";
2
2
  /**
3
3
  * Clean ids from tree
4
4
  * @returns
@@ -14,5 +14,5 @@ export declare const frozenIds: (src?: {
14
14
  skipChain: number;
15
15
  podMode: number;
16
16
  }) => (tree: any) => any;
17
- declare const middleware: Plugin;
17
+ declare const middleware: ParserPlugin;
18
18
  export default middleware;
package/lib/ids.js CHANGED
@@ -1,17 +1,14 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.frozenIds = exports.cleanIds = void 0;
7
- const makeTransformer_1 = __importDefault(require("pod6/built/helpers/makeTransformer"));
4
+ const schema_1 = require("@podlite/schema");
8
5
  const nanoid_1 = require("nanoid");
9
6
  /**
10
7
  * Clean ids from tree
11
8
  * @returns
12
9
  */
13
10
  const cleanIds = (src = { skipChain: 0, podMode: 1 }) => (tree) => {
14
- const transformerBlocks = (0, makeTransformer_1.default)({
11
+ const transformerBlocks = (0, schema_1.makeTransformer)({
15
12
  '*': (node, ctx, visiter) => {
16
13
  if ('id' in node) {
17
14
  if ('content' in node) {
@@ -30,7 +27,7 @@ exports.cleanIds = cleanIds;
30
27
  * Add set id to 'id' to each blocks
31
28
  */
32
29
  const frozenIds = (src = { skipChain: 0, podMode: 1 }) => (tree) => {
33
- const transformerBlocks = (0, makeTransformer_1.default)({
30
+ const transformerBlocks = (0, schema_1.makeTransformer)({
34
31
  '*': (node, ctx, visiter) => {
35
32
  if ('id' in node) {
36
33
  if ('content' in node) {
@@ -46,11 +43,19 @@ const frozenIds = (src = { skipChain: 0, podMode: 1 }) => (tree) => {
46
43
  };
47
44
  exports.frozenIds = frozenIds;
48
45
  const middleware = () => (tree) => {
49
- const transformerBlocks = (0, makeTransformer_1.default)({
46
+ const transformerBlocks = (0, schema_1.makeTransformer)({
50
47
  '*': (node, ctx, visiter) => {
51
48
  const addIdField = (node) => {
52
49
  if (typeof node === 'object' && 'type' in node && node.type == 'block') {
53
- return { ...node, id: (0, nanoid_1.nanoid)() };
50
+ if (node.name == 'caption') {
51
+ return node;
52
+ }
53
+ else if (node.name == 'head') {
54
+ return { ...node, id: (0, schema_1.getTextContentFromNode)(node).trim() };
55
+ }
56
+ else {
57
+ return { ...node, id: (0, nanoid_1.nanoid)() };
58
+ }
54
59
  }
55
60
  return node;
56
61
  };
package/lib/index.d.ts CHANGED
@@ -27,3 +27,5 @@ export interface Podlite {
27
27
  }
28
28
  export declare const toAnyRules: (method: any, allplugins: Plugins[]) => {};
29
29
  export declare const podlite: ({ importPlugins }: PodliteOpt) => Podlite;
30
+ declare const VERSION: any;
31
+ export { VERSION as version };
package/lib/index.js CHANGED
@@ -3,12 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.podlite = exports.toAnyRules = exports.frozenIds = exports.cleanIds = void 0;
7
- const pod6_1 = require("pod6");
8
- const exportAny_1 = __importDefault(require("pod6/built/exportAny"));
6
+ exports.version = exports.podlite = exports.toAnyRules = exports.frozenIds = exports.cleanIds = void 0;
9
7
  const schema_1 = require("@podlite/schema");
10
- // export * from './mdtopod6';
11
- // export * from './tools'
12
8
  const plugins_1 = __importDefault(require("./plugins"));
13
9
  const extrnal_1 = __importDefault(require("./plugins/extrnal"));
14
10
  const ids_1 = __importDefault(require("./ids"));
@@ -53,8 +49,8 @@ const podlite = ({ importPlugins = true }) => {
53
49
  }
54
50
  return instance;
55
51
  };
56
- instance.parse = (text, opt) => {
57
- const rawTree = (0, pod6_1.toTree)().use(ids_1.default).parse(text, opt = { skipChain: 0, podMode: 1 });
52
+ instance.parse = (text, opt = { skipChain: 0, podMode: 1 }) => {
53
+ const rawTree = (0, schema_1.toTree)().use(ids_1.default).parse(text, opt);
58
54
  const root = (0, schema_1.mkRootBlock)({ margin: "" }, rawTree);
59
55
  return root;
60
56
  };
@@ -64,7 +60,7 @@ const podlite = ({ importPlugins = true }) => {
64
60
  instance.toAstResult = (ast) => {
65
61
  // get plugins for Ast
66
62
  const toAstPlugins = (0, exports.toAnyRules)('toAst', instance.getPlugins());
67
- const result = (0, exportAny_1.default)().use({
63
+ const result = (0, schema_1.toAny)().use({
68
64
  '*': () => (node, ctx, interator) => {
69
65
  if ('content' in node) {
70
66
  node.content = interator(node.content, ctx);
@@ -75,7 +71,7 @@ const podlite = ({ importPlugins = true }) => {
75
71
  // add second pass
76
72
  const toAstAfterPlugins = (0, exports.toAnyRules)('toAstAfter', instance.getPlugins());
77
73
  if (Object.keys(toAstAfterPlugins).length) {
78
- const resultAfter = (0, exportAny_1.default)().use({
74
+ const resultAfter = (0, schema_1.toAny)().use({
79
75
  '*': () => (node, ctx, interator) => {
80
76
  if ('content' in node) {
81
77
  node.content = interator(node.content, ctx);
@@ -89,7 +85,7 @@ const podlite = ({ importPlugins = true }) => {
89
85
  };
90
86
  instance.toHtml = (ast) => {
91
87
  const toHtmlPlugins = (0, exports.toAnyRules)('toHtml', instance.getPlugins());
92
- return (0, pod6_1.toHtml)({}).use(toHtmlPlugins).run(ast, null);
88
+ return (0, schema_1.toHtml)({}).use(toHtmlPlugins).run(ast, null);
93
89
  };
94
90
  instance.getPlugins = () => plugins;
95
91
  // init core plugins
@@ -100,3 +96,7 @@ const podlite = ({ importPlugins = true }) => {
100
96
  return instance;
101
97
  };
102
98
  exports.podlite = podlite;
99
+ // Cannot be `import` as it's not under TS root dir
100
+ // https://stackoverflow.com/questions/51070138/how-to-import-package-json-into-typescript-file-without-including-it-in-the-comp
101
+ const { version: VERSION } = require('../package.json');
102
+ exports.version = VERSION;
@@ -3,10 +3,10 @@ export declare const core: {
3
3
  toHtml: (writer: any) => (node: any) => void;
4
4
  };
5
5
  image: {
6
- toHtml: import("pod6/built/helpers/makeQuery").RuleHandler<any>;
6
+ toHtml: import("@podlite/schema/lib/helpers/makeQuery").RuleHandler<any>;
7
7
  };
8
8
  root: {
9
- toHtml: import("pod6/built/helpers/makeQuery").RuleHandler<any>;
9
+ toHtml: import("@podlite/schema/lib/helpers/makeQuery").RuleHandler<any>;
10
10
  };
11
11
  };
12
12
  export default core;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.core = void 0;
4
- const handlers_1 = require("pod6/built/helpers/handlers");
4
+ const schema_1 = require("@podlite/schema");
5
5
  exports.core = {
6
6
  ':image': {
7
7
  toHtml: (writer) => (node) => {
@@ -16,10 +16,10 @@ exports.core = {
16
16
  }
17
17
  },
18
18
  'image': {
19
- toHtml: handlers_1.content
19
+ toHtml: schema_1.content
20
20
  },
21
21
  'root': {
22
- toHtml: handlers_1.content
22
+ toHtml: schema_1.content
23
23
  }
24
24
  };
25
25
  exports.default = exports.core;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "podlite",
3
- "version": "0.0.23",
4
- "description": "Adaptation of pod6 markup language",
3
+ "version": "0.0.25",
4
+ "description": "Podlite - a block-based lightweight markup language",
5
5
  "main": "index.js",
6
6
  "types": "./lib/index.d.ts",
7
7
  "scripts": {
@@ -14,18 +14,19 @@
14
14
  "keywords": [
15
15
  "markdown",
16
16
  "pod6",
17
- "rakudoc"
17
+ "podlite",
18
+ "markup",
19
+ "markup-language"
18
20
  ],
19
- "author": "Alexandr Zahatski",
21
+ "author": "Aliaksandr Zahatski",
20
22
  "license": "MIT",
21
23
  "dependencies": {
22
- "@podlite/diagram": "^0.0.15",
23
- "@podlite/image": "^0.0.10",
24
- "@podlite/markdown": "0.0.3",
25
- "@podlite/schema": "^0.0.11",
26
- "@podlite/toc": "0.0.4",
27
- "nanoid": "3.1.30",
28
- "pod6": "^0.0.48"
24
+ "@podlite/diagram": "^0.0.16",
25
+ "@podlite/image": "^0.0.11",
26
+ "@podlite/markdown": "0.0.5",
27
+ "@podlite/schema": "^0.0.12",
28
+ "@podlite/toc": "0.0.5",
29
+ "nanoid": "3.1.30"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@types/jest": "^26.0.21",
@@ -33,9 +34,6 @@
33
34
  "npm-run-all": "^4.1.5",
34
35
  "typescript": "4.5.5"
35
36
  },
36
- "peerDependencies": {
37
- "pod6": "*"
38
- },
39
37
  "publishConfig": {
40
38
  "access": "public",
41
39
  "main": "index.js"
package/src/ids.ts CHANGED
@@ -1,5 +1,5 @@
1
- import makeTransformer, {isNamedBlock} from 'pod6/built/helpers/makeTransformer'
2
- import { Plugin, Node, nPara , AST, nText, nVerbatim } from 'pod6/built/'
1
+ import {BlockHead, getTextContentFromNode, makeTransformer} from "@podlite/schema"
2
+ import { ParserPlugin, Node, nPara , AST, nText, nVerbatim } from "@podlite/schema"
3
3
  import { nanoid } from 'nanoid'
4
4
  import { BlockPod, PodNode } from '@podlite/schema'
5
5
 
@@ -44,13 +44,19 @@ export const frozenIds = (src = {skipChain: 0, podMode: 1}) =>( tree )=>{
44
44
  }
45
45
 
46
46
 
47
- const middleware:Plugin = () =>( tree )=>{
47
+ const middleware:ParserPlugin = () =>( tree )=>{
48
48
 
49
49
  const transformerBlocks = makeTransformer({
50
50
  '*': (node, ctx, visiter) => {
51
51
  const addIdField = (node:PodNode):PodNode => {
52
52
  if (typeof node === 'object' && 'type' in node && node.type =='block') {
53
- return { ...node, id: nanoid() }
53
+ if (node.name == 'caption') {
54
+ return node
55
+ } else if ( node.name == 'head') {
56
+ return { ...node, id: getTextContentFromNode(node).trim() } as BlockHead
57
+ } else {
58
+ return { ...node, id: nanoid() } as PodNode
59
+ }
54
60
  }
55
61
  return node
56
62
  }
package/src/index.ts CHANGED
@@ -1,8 +1,4 @@
1
- import { toTree, toHtml } from 'pod6';
2
- import toAny from 'pod6/built/exportAny'
3
- import { AstTree, Plugins, mkRootBlock, PodliteDocument } from '@podlite/schema';
4
- // export * from './mdtopod6';
5
- // export * from './tools'
1
+ import { toTree, toHtml, toAny, AstTree, Plugins, mkRootBlock, PodliteDocument } from '@podlite/schema';
6
2
  import core from './plugins';
7
3
  import externalPlugins from './plugins/extrnal'
8
4
  import idMiddleware from "./ids"
@@ -74,8 +70,8 @@ export const podlite = ({ importPlugins = true }:PodliteOpt):Podlite => {
74
70
  return instance
75
71
  }
76
72
 
77
- instance.parse = ( text, opt?) => {
78
- const rawTree = toTree().use(idMiddleware).parse(text, opt={skipChain: 0, podMode: 1})
73
+ instance.parse = ( text, opt = {skipChain: 0, podMode: 1}) => {
74
+ const rawTree = toTree().use(idMiddleware).parse(text, opt)
79
75
  const root = mkRootBlock({margin:""}, rawTree)
80
76
  return root;
81
77
  }
@@ -128,3 +124,9 @@ export const podlite = ({ importPlugins = true }:PodliteOpt):Podlite => {
128
124
  return instance
129
125
 
130
126
  }
127
+
128
+ // Cannot be `import` as it's not under TS root dir
129
+ // https://stackoverflow.com/questions/51070138/how-to-import-package-json-into-typescript-file-without-including-it-in-the-comp
130
+
131
+ const {version: VERSION} = require('../package.json');
132
+ export { VERSION as version}
@@ -1,4 +1,5 @@
1
- import { content } from 'pod6/built/helpers/handlers';
1
+ import { content } from "@podlite/schema";
2
+
2
3
  export const core = {
3
4
  ':image':{
4
5
  toHtml:(writer)=>(node)=>{
package/t/ids.test.ts CHANGED
@@ -1,5 +1,4 @@
1
- import { getFromTree, getNodeId, mkRootBlock, PodliteDocument, validatePodliteAst } from "@podlite/schema";
2
- import { toTree } from "pod6";
1
+ import { getFromTree, getNodeId, mkRootBlock, PodliteDocument, toTree, validatePodliteAst } from "@podlite/schema";
3
2
  import middleware from "../src/ids"
4
3
 
5
4
  export const parse = (text:string, opt?): PodliteDocument => {
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.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/nanoid/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","../../node_modules/pod6/built/helpers/config.d.ts","../podlite-schema/lib/ast-helpers.d.ts","../podlite-schema/lib/ast-inerator.d.ts","../podlite-schema/lib/index.d.ts","./src/ids.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","./src/plugins/index.ts","../podlite-image/lib/index.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","../podlite-diagrams/lib/index.d.ts","../podlite-markdown/lib/index.d.ts","../podlite-toc/lib/index.d.ts","./src/plugins/extrnal.ts","./src/index.ts","./src/mdtopod6.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","./node_modules/@types/jest/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","0b69226aac5cce5a2a9d25f95dea7986caf4d36952cabb6eb8b660219daf9356","401a75f4fbeea4471faad9e3aa87b4420755e3e2af8d594baba33b162b861de1","c4af29f4dcd2aaf12d6c37f5494d6155e215639aa9b65a736d65865006e934f3","84d6554f8e476560c42512aabe6b9dfd19922e51d3a5d0adcb18bb92d6639533","2274b0f0e4f20a1af3309985337bd8a7f45610145db3c37485ea8697c0778eda","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b250a278297e209148e3ee53c5f27b773a351618b0a0c5b8fe0397d2fbd08576","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","b57d661f8123e266307b11fbf08ec29363f84f482622f99e42cf3fdf94059255","726416fd6b5f6d16c91fe5f2dee9ac722bceddd8f8e5d0fc9c3399c7c2efd9b1","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","1c68c3020dfada02f9e9671c7c13fb7adea15118f3acc2d21f02a7b3c632482c","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9e8575c515e21e1b51ab7eb78cfd763ec857cfd7b4f985a4f394f9ea8c0ac36d","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","6539823527c9349664b239204197757434e287e9ef7c2c29afaad10a79f3348a","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","4dbd5a4e8c71e60af9af1d38d1ac5f6eedef3591afb556ed164f169061706f15","5db5754073f92ef99fef159a3415a733db507af67126b287daa51553cb9107d2","ac162509239b1a48ab6aa39a3fc34dd7d8cde209c59188f699b3ef78964165e0","44fa175d725f678ed47ee3cbaf2fcdf688559e672352ac24c721dd9ceef7d7c1","9556b6427e049169448398e1e59fb393e4de91852abda84dd569d0e7b038e641","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","893edbff0dcaf7c4ef650c24cfcf87e6ad63d3e0457f7524d5706f8599e7bac3","06f6c325a4cec7589a46fb8c335b4da840b125bf20d514411fead13478b008b9","a3b6fafae3db815903c6ee13b8c77a43a89fba98fabf263a254f015b388cf190","aad69465794f04cbb182a5bf7b235696117236b96f0c8d1031b7842878a9071a","8500f1c50ee5fb526b737dd167c81077ca11d9c50afb15851b50ff81324b8088","b30fdd8d44300d4ace7f2de31e97ed7f310035978a4fd0f92c66631788f29215","578ada4c8488a001c33301a3f4050ce7c567ffe942adaf52925026786046da5a","d20c7a531f1823d0cafc0fd4732125eb49bfbecf68fbfeed1edcf2bb0455f096","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","bfbd1bc7798f7171950d73a74e497dd045f662d73caab9de34b2a6f35e1e84a9","a1ed409dbe0f3aee130b2677e53a0fbb885a274633de78c543af3cedc543f404","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","f6843d31f1b938ff6daf4a843ee35e1c3207bc52a65b0762b34b84ab02105058","3070873923600558a2fe92dab123b4a315864defa06d8f59cfa283e7b4d0e8ce",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"87912fef55e90f538e12ecdbdc2e05df5f385e519b0023dd5bfb7996cf26056c","ab3954116d438f462b200fbb93777fbcca4b5cfa8889278224ec2527c0fecf31","51ea8a0564e75d36c1a84a9dd762c6effade5cb0beff3c481ded9bebdd5393c7","5486900108e374e89b0bcf8ea0b4c8da9e08fd83f206d27e8a2b4a7df4e69a10","bf2739fadc8c7410866ea59c7068184afac13893fe5a5fc850a7a2a1a7c0ebfc","6610377da4e689e13aa2db7af5a91b21737a88f7ca744f324c556e471280e932","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"jsx":2,"module":1,"outDir":"./lib","rootDir":"./src","target":6},"fileIdsList":[[139],[139,173],[139,171,172,174,175,176],[139,171],[139,171,174],[139,178],[112,139,146],[139,181],[139,182],[139,186],[96,139],[99,139],[100,105,139],[101,111,112,119,128,138,139],[101,102,111,119,139],[103,139],[104,105,112,120,139],[105,128,135,139],[106,108,111,119,139],[107,139],[108,109,139],[110,111,139],[111,139],[111,112,113,128,138,139],[111,112,113,128,139],[114,119,128,138,139],[111,112,114,115,119,128,135,138,139],[114,116,128,135,138,139],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145],[111,117,139],[118,138,139],[108,111,119,128,139],[120,139],[121,139],[99,122,139],[123,137,139,143],[124,139],[125,139],[111,126,139],[126,127,139,141],[111,128,129,130,139],[128,130,139],[128,129,139],[131,139],[132,139],[111,133,134,139],[133,134,139],[105,119,128,135,139],[136,139],[119,137,139],[100,114,125,138,139],[105,139],[128,139,140],[139,141],[139,142],[100,105,111,113,122,128,138,139,141,143],[128,139,144],[139,156],[139,152,153,154,155],[139,196],[50,51,53,77,78,81,84,85,139],[48,49,139],[48,139],[50,51,52,84,85,139],[85,139],[50,51,81,83,85,139],[82,85,86,139],[50,51,84,85,139],[50,51,53,77,78,79,80,84,85,139],[50,51,53,81,84,139],[53,85,139],[55,56,57,58,59,60,61,62,63,85,139],[54,64,72,73,74,75,76,139],[57,85,139],[65,66,67,68,69,70,71,85,139],[139,163,164],[139,163,164,165,166],[139,148],[139,147],[45,139],[111,139,146],[139,168],[139,167,169],[44,46,47,93,139],[46,93,94,95,139,150,160],[93,139,151,157,158,159],[139,149],[93,139,156],[93,139],[90,139],[87,139],[86,87,88,89,91,92,139]],"referencedMap":[[173,1],[174,2],[171,1],[177,3],[172,4],[175,5],[176,4],[179,6],[180,7],[181,1],[182,8],[183,9],[184,1],[185,1],[187,10],[188,1],[189,1],[178,1],[96,11],[97,11],[99,12],[100,13],[101,14],[102,15],[103,16],[104,17],[105,18],[106,19],[107,20],[108,21],[109,21],[110,22],[111,23],[112,24],[113,25],[98,1],[145,1],[114,26],[115,27],[116,28],[146,29],[117,30],[118,31],[119,32],[120,33],[121,34],[122,35],[123,36],[124,37],[125,38],[126,39],[127,40],[128,41],[130,42],[129,43],[131,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[144,57],[190,1],[191,1],[192,1],[154,1],[193,58],[152,1],[156,59],[194,1],[155,1],[195,1],[186,1],[196,1],[197,60],[86,61],[48,1],[50,62],[49,63],[53,64],[80,65],[84,66],[83,67],[51,65],[52,68],[54,68],[81,69],[85,70],[78,1],[79,1],[55,65],[59,65],[61,65],[56,65],[57,71],[63,65],[64,72],[60,65],[62,65],[58,65],[77,73],[73,65],[75,65],[74,65],[70,65],[76,74],[71,65],[72,75],[65,65],[66,65],[67,65],[68,65],[69,65],[153,1],[163,1],[165,76],[167,77],[166,76],[164,1],[47,1],[95,1],[45,1],[90,1],[149,78],[148,79],[44,1],[46,80],[147,81],[169,82],[168,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[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],[43,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],[82,1],[170,83],[94,84],[161,85],[162,1],[160,86],[150,87],[157,88],[151,89],[158,89],[91,90],[92,1],[88,91],[93,92],[89,1],[87,1],[159,89]],"exportedModulesMap":[[173,1],[174,2],[171,1],[177,3],[172,4],[175,5],[176,4],[179,6],[180,7],[181,1],[182,8],[183,9],[184,1],[185,1],[187,10],[188,1],[189,1],[178,1],[96,11],[97,11],[99,12],[100,13],[101,14],[102,15],[103,16],[104,17],[105,18],[106,19],[107,20],[108,21],[109,21],[110,22],[111,23],[112,24],[113,25],[98,1],[145,1],[114,26],[115,27],[116,28],[146,29],[117,30],[118,31],[119,32],[120,33],[121,34],[122,35],[123,36],[124,37],[125,38],[126,39],[127,40],[128,41],[130,42],[129,43],[131,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[144,57],[190,1],[191,1],[192,1],[154,1],[193,58],[152,1],[156,59],[194,1],[155,1],[195,1],[186,1],[196,1],[197,60],[86,61],[48,1],[50,62],[49,63],[53,64],[80,65],[84,66],[83,67],[51,65],[52,68],[54,68],[81,69],[85,70],[78,1],[79,1],[55,65],[59,65],[61,65],[56,65],[57,71],[63,65],[64,72],[60,65],[62,65],[58,65],[77,73],[73,65],[75,65],[74,65],[70,65],[76,74],[71,65],[72,75],[65,65],[66,65],[67,65],[68,65],[69,65],[153,1],[163,1],[165,76],[167,77],[166,76],[164,1],[47,1],[95,1],[45,1],[90,1],[149,78],[148,79],[44,1],[46,80],[147,81],[169,82],[168,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[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],[43,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],[82,1],[170,83],[94,84],[161,85],[162,1],[160,86],[150,87],[157,88],[151,89],[158,89],[91,90],[92,1],[88,91],[93,92],[89,1],[87,1],[159,89]],"semanticDiagnosticsPerFile":[173,174,171,177,172,175,176,179,180,181,182,183,184,185,187,188,189,178,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,98,145,114,115,116,146,117,118,119,120,121,122,123,124,125,126,127,128,130,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,190,191,192,154,193,152,156,194,155,195,186,196,197,86,48,50,49,53,80,84,83,51,52,54,81,85,78,79,55,59,61,56,57,63,64,60,62,58,77,73,75,74,70,76,71,72,65,66,67,68,69,153,163,165,167,166,164,47,95,45,90,149,148,44,46,147,169,168,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,82,170,94,161,162,160,150,157,151,158,91,92,88,93,89,87,159]},"version":"4.5.5"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../node_modules/ajv/dist/compile/codegen/code.d.ts","../../node_modules/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/ajv/dist/compile/codegen/index.d.ts","../../node_modules/ajv/dist/compile/rules.d.ts","../../node_modules/ajv/dist/compile/subschema.d.ts","../../node_modules/ajv/dist/compile/context.d.ts","../../node_modules/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/ajv/dist/vocabularies/errors.d.ts","../../node_modules/ajv/dist/types/json-schema.d.ts","../../node_modules/ajv/dist/types/jtd-schema.d.ts","../../node_modules/ajv/dist/compile/error_classes.d.ts","../../node_modules/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/ajv/dist/compile/resolve.d.ts","../../node_modules/ajv/dist/compile/index.d.ts","../../node_modules/ajv/dist/types/index.d.ts","../../node_modules/ajv/dist/ajv.d.ts","../podlite-schema/lib/types.d.ts","../podlite-schema/lib/blocks-helpers.d.ts","../podlite-schema/lib/query-helpers.d.ts","../podlite-schema/lib/helpers/config.d.ts","../podlite-schema/lib/ast-helpers.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../podlite-schema/lib/writer.d.ts","../podlite-schema/lib/helpers/makeQuery.d.ts","../podlite-schema/lib/helpers/handlers.d.ts","../podlite-schema/lib/ast-inerator.d.ts","../podlite-schema/lib/helpers/makeTransformer.d.ts","../podlite-schema/lib/exportAny.d.ts","../podlite-schema/lib/plugin-clean-location.d.ts","../podlite-schema/lib/exportHtml.d.ts","../podlite-schema/lib/index.d.ts","../../node_modules/nanoid/index.d.ts","./src/ids.ts","./src/plugins/index.ts","../podlite-image/lib/index.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","../podlite-diagrams/lib/index.d.ts","../podlite-markdown/lib/tools.d.ts","../podlite-markdown/lib/index.d.ts","../podlite-toc/lib/index.d.ts","./src/plugins/extrnal.ts","./src/index.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","./node_modules/@types/jest/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","2274b0f0e4f20a1af3309985337bd8a7f45610145db3c37485ea8697c0778eda","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b250a278297e209148e3ee53c5f27b773a351618b0a0c5b8fe0397d2fbd08576","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","b57d661f8123e266307b11fbf08ec29363f84f482622f99e42cf3fdf94059255","726416fd6b5f6d16c91fe5f2dee9ac722bceddd8f8e5d0fc9c3399c7c2efd9b1","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","1c68c3020dfada02f9e9671c7c13fb7adea15118f3acc2d21f02a7b3c632482c","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9e8575c515e21e1b51ab7eb78cfd763ec857cfd7b4f985a4f394f9ea8c0ac36d","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","6539823527c9349664b239204197757434e287e9ef7c2c29afaad10a79f3348a","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","4dbd5a4e8c71e60af9af1d38d1ac5f6eedef3591afb556ed164f169061706f15","5db5754073f92ef99fef159a3415a733db507af67126b287daa51553cb9107d2","ac162509239b1a48ab6aa39a3fc34dd7d8cde209c59188f699b3ef78964165e0","44fa175d725f678ed47ee3cbaf2fcdf688559e672352ac24c721dd9ceef7d7c1","9556b6427e049169448398e1e59fb393e4de91852abda84dd569d0e7b038e641","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","893edbff0dcaf7c4ef650c24cfcf87e6ad63d3e0457f7524d5706f8599e7bac3","06f6c325a4cec7589a46fb8c335b4da840b125bf20d514411fead13478b008b9","a3b6fafae3db815903c6ee13b8c77a43a89fba98fabf263a254f015b388cf190","aad69465794f04cbb182a5bf7b235696117236b96f0c8d1031b7842878a9071a","8500f1c50ee5fb526b737dd167c81077ca11d9c50afb15851b50ff81324b8088","8db4789c08e463840af20c7f5440a3945987cdf14820b60fff63e03a75bd0c90","7d172510abda2eb827b492615c40cde28e1a899c5241dd0c3cc25cdcc636aef3","859f7f021bb081aa1da8a57ed935f65555340e5cb4f3d67b53bdade24ad9503e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6f310052978d351ebf9033e90bf009e718522c7cb7c148cc9cb9413a73657250","142f7ea2d6affb8c5f4c14723ad122124f1fd1a29aa6ef9b5c46daf6cda719ce","dd6fc277379bfe5da22e38dae767e07da2abad6faf9fc1e0fa6e927b99a91bba","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","12e3c9f17fa31bcbdb082f5fe8a85ab102748c6b21d2b18ea51440d6bb6736e6","4dd326a132f4f5925c45895f192fa3d313fe46e6e6d42b2aca7cf83fd76efd88","fe1089035b474a7af21cdcc063bd625ffba806ef64634b02e682c9fc9cba0f14","05455184c5dd8d248ae921fc1bf1aa48a8960622112f93fd7decb45c5fc4ec63","af39de60be2e87a808cd82e83930deed586fab5c2ac4583a5a46c88b2e404b01","84d6554f8e476560c42512aabe6b9dfd19922e51d3a5d0adcb18bb92d6639533","59afdb9cd00d662e748081779ae4f2424f816b93f70a09415ff5a979491a4c78","210e738a0843e77a51075a67ce3b93c753493a296416e18e3eaa6561a819210e","3070873923600558a2fe92dab123b4a315864defa06d8f59cfa283e7b4d0e8ce",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"87912fef55e90f538e12ecdbdc2e05df5f385e519b0023dd5bfb7996cf26056c","34dcd461bc084c63ca1d8792ce9147311ba2b94ff049062110dd268ab7131eba","8725240a6699dd78057daed3ef346ba1582cab180a17ea93dd61c4a56a139a18","51ea8a0564e75d36c1a84a9dd762c6effade5cb0beff3c481ded9bebdd5393c7","5486900108e374e89b0bcf8ea0b4c8da9e08fd83f206d27e8a2b4a7df4e69a10","39ed5cf17fa46324549937771f01733e470b42333bf315550f13255e0d70777c","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"jsx":2,"module":1,"outDir":"./lib","rootDir":"./src","target":6},"fileIdsList":[[131],[131,173],[131,171,172,174,175,176],[131,171],[131,171,174],[131,178],[104,131,138],[131,181],[131,182],[131,186],[88,131],[91,131],[92,97,131],[93,103,104,111,120,130,131],[93,94,103,111,131],[95,131],[96,97,104,112,131],[97,120,127,131],[98,100,103,111,131],[99,131],[100,101,131],[102,103,131],[103,131],[103,104,105,120,130,131],[103,104,105,120,131],[106,111,120,130,131],[103,104,106,107,111,120,127,130,131],[106,108,120,127,130,131],[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137],[103,109,131],[110,130,131],[100,103,111,120,131],[112,131],[113,131],[91,114,131],[115,129,131,135],[116,131],[117,131],[103,118,131],[118,119,131,133],[103,120,121,122,131],[120,122,131],[120,121,131],[123,131],[124,131],[103,125,126,131],[125,126,131],[97,111,120,127,131],[128,131],[111,129,131],[92,106,117,130,131],[97,131],[120,131,132],[131,133],[131,134],[92,97,103,105,114,120,130,131,133,135],[120,131,136],[131,156],[131,152,153,154,155],[131,196],[46,47,49,73,74,77,80,81,131],[44,45,131],[44,131],[46,47,48,80,81,131],[81,131],[46,47,77,79,81,131],[78,81,82,131],[46,47,80,81,131],[46,47,49,73,74,75,76,80,81,131],[46,47,49,77,80,131],[49,81,131],[51,52,53,54,55,56,57,58,59,81,131],[50,60,68,69,70,71,72,131],[53,81,131],[61,62,63,64,65,66,67,81,131],[131,163,164],[131,163,164,165,166],[131,168],[131,167,169],[131,147,148],[131,147,149,150,161],[131,147,151,157,159,160],[131,147],[131,147,156],[131,147,158],[86,131],[83,131],[131,140],[131,139],[82,83,84,85,86,87,131,139,141,142,143,144,145,146],[103,131,138]],"referencedMap":[[173,1],[174,2],[171,1],[177,3],[172,4],[175,5],[176,4],[179,6],[180,7],[181,1],[182,8],[183,9],[184,1],[185,1],[187,10],[188,1],[189,1],[178,1],[88,11],[89,11],[91,12],[92,13],[93,14],[94,15],[95,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,21],[102,22],[103,23],[104,24],[105,25],[90,1],[137,1],[106,26],[107,27],[108,28],[138,29],[109,30],[110,31],[111,32],[112,33],[113,34],[114,35],[115,36],[116,37],[117,38],[118,39],[119,40],[120,41],[122,42],[121,43],[123,44],[124,45],[125,46],[126,47],[127,48],[128,49],[129,50],[130,51],[131,52],[132,53],[133,54],[134,55],[135,56],[136,57],[190,1],[191,1],[192,1],[154,1],[193,58],[152,1],[156,59],[194,1],[155,1],[195,1],[186,1],[196,1],[197,60],[82,61],[44,1],[46,62],[45,63],[49,64],[76,65],[80,66],[79,67],[47,65],[48,68],[50,68],[77,69],[81,70],[74,1],[75,1],[51,65],[55,65],[57,65],[52,65],[53,71],[59,65],[60,72],[56,65],[58,65],[54,65],[73,73],[69,65],[71,65],[70,65],[66,65],[72,74],[67,65],[68,75],[61,65],[62,65],[63,65],[64,65],[65,65],[153,1],[163,1],[165,76],[167,77],[166,76],[164,1],[148,1],[169,78],[168,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[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],[43,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],[78,1],[170,79],[149,80],[162,81],[161,82],[150,83],[157,84],[151,83],[159,85],[158,83],[87,86],[142,1],[84,87],[144,1],[146,1],[86,1],[141,88],[140,89],[143,1],[147,90],[145,1],[85,87],[83,1],[139,91],[160,83]],"exportedModulesMap":[[173,1],[174,2],[171,1],[177,3],[172,4],[175,5],[176,4],[179,6],[180,7],[181,1],[182,8],[183,9],[184,1],[185,1],[187,10],[188,1],[189,1],[178,1],[88,11],[89,11],[91,12],[92,13],[93,14],[94,15],[95,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,21],[102,22],[103,23],[104,24],[105,25],[90,1],[137,1],[106,26],[107,27],[108,28],[138,29],[109,30],[110,31],[111,32],[112,33],[113,34],[114,35],[115,36],[116,37],[117,38],[118,39],[119,40],[120,41],[122,42],[121,43],[123,44],[124,45],[125,46],[126,47],[127,48],[128,49],[129,50],[130,51],[131,52],[132,53],[133,54],[134,55],[135,56],[136,57],[190,1],[191,1],[192,1],[154,1],[193,58],[152,1],[156,59],[194,1],[155,1],[195,1],[186,1],[196,1],[197,60],[82,61],[44,1],[46,62],[45,63],[49,64],[76,65],[80,66],[79,67],[47,65],[48,68],[50,68],[77,69],[81,70],[74,1],[75,1],[51,65],[55,65],[57,65],[52,65],[53,71],[59,65],[60,72],[56,65],[58,65],[54,65],[73,73],[69,65],[71,65],[70,65],[66,65],[72,74],[67,65],[68,75],[61,65],[62,65],[63,65],[64,65],[65,65],[153,1],[163,1],[165,76],[167,77],[166,76],[164,1],[148,1],[169,78],[168,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[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],[43,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],[78,1],[170,79],[149,80],[162,81],[161,82],[150,83],[157,84],[151,83],[159,85],[158,83],[87,86],[142,1],[84,87],[144,1],[146,1],[86,1],[141,88],[140,89],[143,1],[147,90],[145,1],[85,87],[83,1],[139,91],[160,83]],"semanticDiagnosticsPerFile":[173,174,171,177,172,175,176,179,180,181,182,183,184,185,187,188,189,178,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,90,137,106,107,108,138,109,110,111,112,113,114,115,116,117,118,119,120,122,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,190,191,192,154,193,152,156,194,155,195,186,196,197,82,44,46,45,49,76,80,79,47,48,50,77,81,74,75,51,55,57,52,53,59,60,56,58,54,73,69,71,70,66,72,67,68,61,62,63,64,65,153,163,165,167,166,164,148,169,168,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,78,170,149,162,161,150,157,151,159,158,87,142,84,144,146,86,141,140,143,147,145,85,83,139,160]},"version":"4.5.5"}
package/lib/mdtopod6.d.ts DELETED
File without changes
package/lib/mdtopod6.js DELETED
@@ -1,109 +0,0 @@
1
- // import unified from 'unified'
2
- // import markdown from 'remark-parse'
3
- // import toAny from 'pod6/built/exportAny'
4
- // export const mdToPod6 = (src, extraRules? ) => {
5
- // const md_tree = unified().use(markdown).parse(src)
6
- // let definitionMap = {}
7
- // toAny({processor:1})
8
- // .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
9
- // if (node.children) interator(node.children, { ...ctx})
10
- // }})
11
- // .use({':definition' : ( writer, processor )=>( node, ctx, interator )=>{
12
- // definitionMap[node.identifier] = node
13
- // }}).run(md_tree)
14
- // const res = toAny({processor:1})
15
- // .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
16
- // console.warn(node)
17
- // if (node.children) interator(node.children, { ...ctx})
18
- // }})
19
- // .use({
20
- // ':root': ( writer, processor )=>( node, ctx, interator )=>{
21
- // // handle text with content
22
- // const { children, position, ...attr} = node
23
- // writer.write( "=begin pod\n")
24
- // interator( children, ctx )
25
- // writer.write( "=end pod\n")
26
- // },
27
- // ':heading' : ( writer, processor )=>( node, ctx, interator )=>{
28
- // const { children, position, ...attr} = node
29
- // writer.write( `=head${node.depth} `)
30
- // if (children) interator( children, ctx )
31
- // writer.write( "\n")
32
- // },
33
- // ':text' : ( writer, processor )=>( node, ctx, interator )=>{
34
- // const { children, position, ...attr} = node
35
- // writer.writeRaw(node.value)
36
- // if (children) interator( children, ctx )
37
- // },
38
- // ':list' : ( writer, processor )=>( node, ctx, interator )=>{
39
- // // console.error(node)
40
- // const savedListLevel = ctx['listLevel'] || 0
41
- // const newctx = { ...ctx, listLevel:savedListLevel+1, ordered: node.ordered ? 'ordered' : 'itemized'}
42
- // const { children, position, ...attr} = node
43
- // if (children) interator( children, newctx )
44
- // },
45
- // ':listItem' : ( writer, processor )=>( node, ctx, interator )=>{
46
- // const { children, position, ...attr} = node
47
- // // console.error(node)
48
- // writer.write(`=begin item${ctx['listLevel']} ${ctx.ordered ? ":numbered" : ''} \n`)
49
- // if (children) { interator( children, ctx ) }
50
- // writer.write(`=end item${ctx['listLevel']}\n`)
51
- // },
52
- // ':paragraph' : ( writer, processor )=>( node, ctx, interator )=>{
53
- // const { children, position, ...attr} = node
54
- // writer.write(`=begin para\n`)
55
- // if (children) { interator( children, ctx ) }
56
- // writer.write(`\n=end para\n`)
57
- // },
58
- // ':linkReference' : ( writer, processor )=>( node, ctx, interator )=>{
59
- // // console.log(log(node))
60
- // const { children, position, ...attr} = node
61
- // const definition = definitionMap[attr.identifier]
62
- // const meta = definition?.url || ''
63
- // writer.write(`L<`)
64
- // if (children) { interator( children, ctx ) }
65
- // writer.write(`|${meta}>`)
66
- // },
67
- // ':definition' : ( writer, processor )=>( node, ctx, interator )=>{
68
- // return null
69
- // },
70
- // ':inlineCode' : ( writer, processor )=>( node, ctx, interator )=>{
71
- // const { children, position, ...attr} = node
72
- // writer.write(`C<${node.value}>`)
73
- // },
74
- // ':strong' : ( writer, processor )=>( node, ctx, interator )=>{
75
- // const { children, position, ...attr} = node
76
- // writer.write(`B<`)
77
- // if (children) { interator( children, ctx ) }
78
- // writer.write(`>`)
79
- // },
80
- // ':link': ( writer, processor )=>( node, ctx, interator )=>{
81
- // const { children, position, ...attr} = node
82
- // writer.write(`L<`)
83
- // if (children) { interator( children, ctx ) }
84
- // writer.write(`|${node.url}>`)
85
- // },
86
- // ':image': ( writer, processor )=>( node, ctx, interator )=>{
87
- // const { children, position, ...attr} = node
88
- // writer.write(`=begin Image :title('${node.title}') :alt('${node.alt}')\n`)
89
- // writer.write(node.url)
90
- // writer.write(`\n=end Image\n`)
91
- // },
92
- // ':html': ( writer, processor )=>( node, ctx, interator )=>{
93
- // const { children, position, ...attr} = node
94
- // writer.write(`=begin Html\n`)
95
- // writer.write(`${node.value}`)
96
- // writer.write(`\n=end Html\n`)
97
- // },
98
- // ':code' : ( writer, processor )=>( node, ctx, interator )=>{
99
- // // console.log(JSON.stringify(node,null,2))
100
- // const { children, position, lang, ...attr} = node
101
- // writer.write(`=begin code ${lang ? ':lang(\''+lang+'\')' : ""}\n`)
102
- // writer.write(`${node.value}`)
103
- // writer.write(`\n=end code\n`)
104
- // },
105
- // ...extraRules
106
- // },
107
- // ).run(md_tree)
108
- // return res.toString()
109
- // }
package/src/mdtopod6.ts DELETED
@@ -1,113 +0,0 @@
1
- // import unified from 'unified'
2
- // import markdown from 'remark-parse'
3
- // import toAny from 'pod6/built/exportAny'
4
-
5
- // export const mdToPod6 = (src, extraRules? ) => {
6
- // const md_tree = unified().use(markdown).parse(src)
7
- // let definitionMap = {}
8
- // toAny({processor:1})
9
- // .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
10
- // if (node.children) interator(node.children, { ...ctx})
11
- // }})
12
- // .use({':definition' : ( writer, processor )=>( node, ctx, interator )=>{
13
- // definitionMap[node.identifier] = node
14
- // }}).run(md_tree)
15
- // const res = toAny({processor:1})
16
- // .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
17
- // console.warn(node)
18
- // if (node.children) interator(node.children, { ...ctx})
19
- // }})
20
-
21
- // .use({
22
- // ':root': ( writer, processor )=>( node, ctx, interator )=>{
23
- // // handle text with content
24
- // const { children, position, ...attr} = node
25
- // writer.write( "=begin pod\n")
26
- // interator( children, ctx )
27
- // writer.write( "=end pod\n")
28
-
29
- // },
30
- // ':heading' : ( writer, processor )=>( node, ctx, interator )=>{
31
- // const { children, position, ...attr} = node
32
- // writer.write( `=head${node.depth} `)
33
- // if (children) interator( children, ctx )
34
- // writer.write( "\n")
35
-
36
- // },
37
- // ':text' : ( writer, processor )=>( node, ctx, interator )=>{
38
- // const { children, position, ...attr} = node
39
- // writer.writeRaw(node.value)
40
- // if (children) interator( children, ctx )
41
- // },
42
- // ':list' : ( writer, processor )=>( node, ctx, interator )=>{
43
- // // console.error(node)
44
- // const savedListLevel = ctx['listLevel'] || 0
45
- // const newctx = { ...ctx, listLevel:savedListLevel+1, ordered: node.ordered ? 'ordered' : 'itemized'}
46
- // const { children, position, ...attr} = node
47
- // if (children) interator( children, newctx )
48
- // },
49
- // ':listItem' : ( writer, processor )=>( node, ctx, interator )=>{
50
- // const { children, position, ...attr} = node
51
- // // console.error(node)
52
- // writer.write(`=begin item${ctx['listLevel']} ${ctx.ordered ? ":numbered" : ''} \n`)
53
- // if (children) { interator( children, ctx ) }
54
- // writer.write(`=end item${ctx['listLevel']}\n`)
55
- // },
56
- // ':paragraph' : ( writer, processor )=>( node, ctx, interator )=>{
57
- // const { children, position, ...attr} = node
58
- // writer.write(`=begin para\n`)
59
- // if (children) { interator( children, ctx ) }
60
- // writer.write(`\n=end para\n`)
61
- // },
62
- // ':linkReference' : ( writer, processor )=>( node, ctx, interator )=>{
63
- // // console.log(log(node))
64
- // const { children, position, ...attr} = node
65
- // const definition = definitionMap[attr.identifier]
66
- // const meta = definition?.url || ''
67
- // writer.write(`L<`)
68
- // if (children) { interator( children, ctx ) }
69
- // writer.write(`|${meta}>`)
70
- // },
71
- // ':definition' : ( writer, processor )=>( node, ctx, interator )=>{
72
- // return null
73
- // },
74
- // ':inlineCode' : ( writer, processor )=>( node, ctx, interator )=>{
75
- // const { children, position, ...attr} = node
76
- // writer.write(`C<${node.value}>`)
77
- // },
78
- // ':strong' : ( writer, processor )=>( node, ctx, interator )=>{
79
- // const { children, position, ...attr} = node
80
- // writer.write(`B<`)
81
- // if (children) { interator( children, ctx ) }
82
- // writer.write(`>`)
83
- // },
84
- // ':link': ( writer, processor )=>( node, ctx, interator )=>{
85
- // const { children, position, ...attr} = node
86
- // writer.write(`L<`)
87
- // if (children) { interator( children, ctx ) }
88
- // writer.write(`|${node.url}>`)
89
- // },
90
- // ':image': ( writer, processor )=>( node, ctx, interator )=>{
91
- // const { children, position, ...attr} = node
92
- // writer.write(`=begin Image :title('${node.title}') :alt('${node.alt}')\n`)
93
- // writer.write(node.url)
94
- // writer.write(`\n=end Image\n`)
95
- // },
96
- // ':html': ( writer, processor )=>( node, ctx, interator )=>{
97
- // const { children, position, ...attr} = node
98
- // writer.write(`=begin Html\n`)
99
- // writer.write(`${node.value}`)
100
- // writer.write(`\n=end Html\n`)
101
- // },
102
- // ':code' : ( writer, processor )=>( node, ctx, interator )=>{
103
- // // console.log(JSON.stringify(node,null,2))
104
- // const { children, position, lang, ...attr} = node
105
- // writer.write(`=begin code ${lang ? ':lang(\''+lang+'\')' : ""}\n`)
106
- // writer.write(`${node.value}`)
107
- // writer.write(`\n=end code\n`)
108
- // },
109
- // ...extraRules
110
- // },
111
- // ).run(md_tree)
112
- // return res.toString()
113
- // }
package/t/md2pod6.test.ts DELETED
@@ -1,28 +0,0 @@
1
- test('adds 1 + 2 to equal 3', () => {
2
- expect(1+ 2).toBe(3);
3
- });
4
-
5
- // import * as fs from 'fs'
6
- // import * as path from 'path'
7
- // const glob = require('glob')
8
- // import { mdToPod6 } from '../src'
9
- // const loadTests = (testsPath) => {
10
- // const pathToTests = path.resolve(__dirname, testsPath)
11
- // return glob.sync(pathToTests).map( f => {
12
- // const testData = fs.readFileSync(f)
13
- // const [ src, dst ] = `${testData}`.split('~~~~~~~\n')
14
- // return { src, dst, file: f}
15
- // })
16
- // }
17
-
18
- // const process = (src) => {
19
- // return mdToPod6(src)
20
- // }
21
-
22
- // describe("run markdown to pod6 parser tests", () => {
23
- // loadTests('fixtures-md-to-pod6/*t').map( item => {
24
- // test(item.file, ()=>expect(
25
- // process(item.src)).toEqual(item.dst)
26
- // )
27
- // })
28
- // })