@contember/react-utils 1.0.0-rc.1 → 1.0.0-rc.10
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/dist/types/hooks/index.d.ts +6 -0
- package/dist/types/hooks/index.d.ts.map +1 -0
- package/dist/types/hooks/useArrayMapMemo.d.ts +10 -0
- package/dist/types/hooks/useArrayMapMemo.d.ts.map +1 -0
- package/dist/types/hooks/useConstantLengthInvariant.d.ts +2 -0
- package/dist/types/hooks/useConstantLengthInvariant.d.ts.map +1 -0
- package/dist/types/hooks/useConstantValueInvariant.d.ts +2 -0
- package/dist/types/hooks/useConstantValueInvariant.d.ts.map +1 -0
- package/dist/types/hooks/useForceRender.d.ts +3 -0
- package/dist/types/hooks/useForceRender.d.ts.map +1 -0
- package/dist/types/hooks/usePreviousValue.d.ts +2 -0
- package/dist/types/hooks/usePreviousValue.d.ts.map +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/referentiallyStable/emptyArray.d.ts +2 -0
- package/dist/types/referentiallyStable/emptyArray.d.ts.map +1 -0
- package/dist/types/referentiallyStable/emptyObject.d.ts +2 -0
- package/dist/types/referentiallyStable/emptyObject.d.ts.map +1 -0
- package/dist/types/referentiallyStable/identityFunction.d.ts +2 -0
- package/dist/types/referentiallyStable/identityFunction.d.ts.map +1 -0
- package/dist/types/referentiallyStable/index.d.ts +7 -0
- package/dist/types/referentiallyStable/index.d.ts.map +1 -0
- package/dist/types/referentiallyStable/noop.d.ts +2 -0
- package/dist/types/referentiallyStable/noop.d.ts.map +1 -0
- package/dist/types/referentiallyStable/returnFalse.d.ts +2 -0
- package/dist/types/referentiallyStable/returnFalse.d.ts.map +1 -0
- package/dist/types/referentiallyStable/returnTrue.d.ts +2 -0
- package/dist/types/referentiallyStable/returnTrue.d.ts.map +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +5 -6
- package/src/ambient.d.ts +1 -0
- package/src/hooks/index.ts +5 -0
- package/src/hooks/useArrayMapMemo.ts +28 -0
- package/src/hooks/useConstantLengthInvariant.ts +16 -0
- package/src/hooks/useConstantValueInvariant.ts +14 -0
- package/src/hooks/useForceRender.ts +6 -0
- package/src/hooks/usePreviousValue.ts +9 -0
- package/src/index.ts +2 -0
- package/src/referentiallyStable/emptyArray.ts +1 -0
- package/src/referentiallyStable/emptyObject.ts +1 -0
- package/src/referentiallyStable/identityFunction.ts +1 -0
- package/src/referentiallyStable/index.ts +6 -0
- package/src/referentiallyStable/noop.ts +1 -0
- package/src/referentiallyStable/returnFalse.ts +1 -0
- package/src/referentiallyStable/returnTrue.ts +1 -0
- package/src/tsconfig.json +6 -0
- package/dist/react-utils.d.ts +0 -35
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️
|
|
3
|
+
* ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠
|
|
4
|
+
*
|
|
5
|
+
* This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents
|
|
6
|
+
* of the original array, and not its referential equality. That way, if we create a new array with identical items,
|
|
7
|
+
* we get an array that is referentially equal to the previous one.
|
|
8
|
+
*/
|
|
9
|
+
export declare const useArrayMapMemo: <Item, OutputItem>(items: Item[], map: (value: Item, index: number, array: Item[]) => OutputItem) => OutputItem[];
|
|
10
|
+
//# sourceMappingURL=useArrayMapMemo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useArrayMapMemo.d.ts","sourceRoot":"","sources":["../../../src/hooks/useArrayMapMemo.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AACH,eAAO,MAAM,eAAe,8DAED,MAAM,+CAchC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useConstantLengthInvariant.d.ts","sourceRoot":"","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,0BAA0B,6EAYtC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useConstantValueInvariant.d.ts","sourceRoot":"","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,yBAAyB,6EAUrC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useForceRender.d.ts","sourceRoot":"","sources":["../../../src/hooks/useForceRender.ts"],"names":[],"mappings":";AAEA,eAAO,MAAM,cAAc,6CAG1B,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePreviousValue.d.ts","sourceRoot":"","sources":["../../../src/hooks/usePreviousValue.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,gCAM5B,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,uBAAuB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"emptyArray.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/emptyArray.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,OAAkC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"emptyObject.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/emptyObject.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,cAAoB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identityFunction.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/identityFunction.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,gCAAiC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,oBAAoB,CAAA;AAClC,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"noop.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/noop.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,iBAAkB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"returnFalse.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/returnFalse.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,eAAc,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"returnTrue.d.ts","sourceRoot":"","sources":["../../../src/referentiallyStable/returnTrue.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,eAAa,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@4.3.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/vite@2.8.0_sass@1.49.7/node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/.pnpm/vite@2.8.0_sass@1.49.7/node_modules/vite/types/customEvent.d.ts","../../../../node_modules/.pnpm/vite@2.8.0_sass@1.49.7/node_modules/vite/types/importMeta.d.ts","../../../../node_modules/.pnpm/vite@2.8.0_sass@1.49.7/node_modules/vite/client.d.ts","../../src/ambient.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/global.d.ts","../../../../node_modules/.pnpm/csstype@3.0.9/node_modules/csstype/index.d.ts","../../../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/index.d.ts","../../../../node_modules/.pnpm/@types+react@17.0.30/node_modules/@types/react/jsx-runtime.d.ts","../../src/hooks/usePreviousValue.ts","../../src/hooks/useConstantLengthInvariant.ts","../../src/hooks/useArrayMapMemo.ts","../../src/hooks/useConstantValueInvariant.ts","../../src/hooks/useForceRender.ts","../../src/hooks/index.ts","../../src/referentiallyStable/emptyArray.ts","../../src/referentiallyStable/emptyObject.ts","../../src/referentiallyStable/identityFunction.ts","../../src/referentiallyStable/noop.ts","../../src/referentiallyStable/returnFalse.ts","../../src/referentiallyStable/returnTrue.ts","../../src/referentiallyStable/index.ts","../../src/index.ts","../../../../node_modules/.pnpm/@babel+types@7.15.6/node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/.pnpm/@types+babel__generator@7.6.3/node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/.pnpm/@babel+parser@7.15.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/index.d.ts","../../../../node_modules/.pnpm/@types+babel__traverse@7.14.2/node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/.pnpm/@types+babel__core@7.1.16/node_modules/@types/babel__core/index.d.ts","../../../../node_modules/.pnpm/@types+blueimp-md5@2.18.0/node_modules/@types/blueimp-md5/index.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/types.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/index.d.ts","../../../../node_modules/.pnpm/@types+color-name@1.1.1/node_modules/@types/color-name/index.d.ts","../../../../node_modules/.pnpm/@types+color-convert@2.0.0/node_modules/@types/color-convert/conversions.d.ts","../../../../node_modules/.pnpm/@types+color-convert@2.0.0/node_modules/@types/color-convert/route.d.ts","../../../../node_modules/.pnpm/@types+color-convert@2.0.0/node_modules/@types/color-convert/index.d.ts","../../../../node_modules/.pnpm/@types+cookie@0.4.1/node_modules/@types/cookie/index.d.ts","../../../../node_modules/.pnpm/@types+debounce@1.2.0/node_modules/@types/debounce/index.d.ts","../../../../node_modules/.pnpm/@types+geojson@7946.0.8/node_modules/@types/geojson/index.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/globals.global.d.ts","../../../../node_modules/.pnpm/@types+node@16.11.1/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../../node_modules/.pnpm/@types+glob@7.2.0/node_modules/@types/glob/index.d.ts","../../../../node_modules/.pnpm/@types+graceful-fs@4.1.5/node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/.pnpm/@types+unist@2.0.6/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+hast@2.3.4/node_modules/@types/hast/index.d.ts","../../../../node_modules/.pnpm/@types+html-minifier-terser@5.1.2/node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/.pnpm/@types+is-function@1.0.1/node_modules/@types/is-function/index.d.ts","../../../../node_modules/.pnpm/@types+is-hotkey@0.1.5/node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.3/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-report@3.0.0/node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-reports@3.0.1/node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../../node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/types.d.ts","../../../../node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/diffLines.d.ts","../../../../node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/printDiffs.d.ts","../../../../node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/index.d.ts","../../../../node_modules/.pnpm/pretty-format@26.6.2/node_modules/pretty-format/build/types.d.ts","../../../../node_modules/.pnpm/pretty-format@26.6.2/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/.pnpm/@types+jest@26.0.20/node_modules/@types/jest/index.d.ts","../../../../node_modules/.pnpm/@types+js-levenshtein@1.1.0/node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/.pnpm/@types+json-schema@7.0.9/node_modules/@types/json-schema/index.d.ts","../../../../node_modules/.pnpm/@types+leaflet@1.7.5/node_modules/@types/leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.175/node_modules/@types/lodash/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@3.0.10/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/@types+mime@2.0.3/node_modules/@types/mime/index.d.ts","../../../../node_modules/.pnpm/@types+minimist@1.2.2/node_modules/@types/minimist/index.d.ts","../../../../node_modules/.pnpm/form-data@3.0.1/node_modules/form-data/index.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.5.12/node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.5.12/node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.1/node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/.pnpm/@types+npmlog@4.1.3/node_modules/@types/npmlog/index.d.ts","../../../../node_modules/.pnpm/@types+overlayscrollbars@1.12.1/node_modules/@types/overlayscrollbars/index.d.ts","../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../../../../node_modules/.pnpm/@types+parse5@5.0.3/node_modules/@types/parse5/index.d.ts","../../../../node_modules/.pnpm/@types+prettier@2.4.1/node_modules/@types/prettier/index.d.ts","../../../../node_modules/.pnpm/@types+pretty-hrtime@1.0.1/node_modules/@types/pretty-hrtime/index.d.ts","../../../../node_modules/.pnpm/@types+qs@6.9.7/node_modules/@types/qs/index.d.ts","../../../../node_modules/.pnpm/@types+react-dom@17.0.9/node_modules/@types/react-dom/index.d.ts","../../../../node_modules/.pnpm/@types+react-leaflet@2.8.2/node_modules/@types/react-leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/diacritics.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/filters.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/accessibility/index.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/types.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/utils.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/builtins.d.ts","../../../../node_modules/.pnpm/@emotion+utils@1.0.0/node_modules/@emotion/utils/types/index.d.ts","../../../../node_modules/.pnpm/@emotion+serialize@1.0.2/node_modules/@emotion/serialize/types/index.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/theme.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/containers.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/indicators.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/Control.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/Group.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/Input.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/Menu.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/MultiValue.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/Option.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/Placeholder.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/SingleValue.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/components/index.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/styles.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/Select.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/stateManager.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/src/NonceProvider.d.ts","../../../../node_modules/.pnpm/@types+react-select@4.0.17/node_modules/@types/react-select/index.d.ts","../../../../node_modules/.pnpm/@types+react-syntax-highlighter@11.0.5/node_modules/@types/react-syntax-highlighter/index.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/Transition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/config.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.3/node_modules/@types/react-transition-group/index.d.ts","../../../../node_modules/.pnpm/@types+react-window@1.8.5/node_modules/@types/react-window/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/index.d.ts","../../../../node_modules/.pnpm/@types+semver@6.2.3/node_modules/@types/semver/index.d.ts","../../../../node_modules/.pnpm/@types+source-list-map@0.1.2/node_modules/@types/source-list-map/index.d.ts","../../../../node_modules/.pnpm/@types+stack-utils@2.0.1/node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/.pnpm/@types+tapable@1.0.8/node_modules/@types/tapable/index.d.ts","../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+uglify-js@3.13.1/node_modules/@types/uglify-js/index.d.ts","../../../../node_modules/.pnpm/@types+uuid@8.3.1/node_modules/@types/uuid/index.d.ts","../../../../node_modules/.pnpm/anymatch@3.1.2/node_modules/anymatch/index.d.ts","../../../../node_modules/.pnpm/source-map@0.7.3/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/Source.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/index.d.ts","../../../../node_modules/.pnpm/@types+webpack@4.41.31/node_modules/@types/webpack/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-env@1.16.3/node_modules/@types/webpack-env/index.d.ts","../../../../node_modules/.pnpm/@types+ws@8.2.0/node_modules/@types/ws/index.d.ts","../../../../node_modules/.pnpm/@types+yargs-parser@20.2.1/node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/.pnpm/@types+yargs@16.0.4/node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"a8fe23ae87c3e9d2877032cafeb290f2ebe0c51e216d175a0408b10915ebe9f0","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","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":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"774044ef136a0988fcf57b36fd0985caa98fe385b5f9ee68a1731b7340b6aff4","b0417788195a3365795bdd06d672f2fe06966daaa7924d2204f8d669ae6b8f11",{"version":"b55c237542d67f5b8e62bdb3b985d3deba1a3fbfbbcf06eb233352874d00e1b8","affectsGlobalScope":true},{"version":"a5189085a767ea0ba85994cd7551ebefc7564c670b67d2de4be1f44d1a85d462","affectsGlobalScope":true},"65996936fbb042915f7b74a200fcdde7e410f32a669b1ab9597cfaa4b0faddb5",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"414bfceec07e8d48af9dfdac2608a905ddcd1bfd44233907c218de7d4b48a1f1","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","8ce84c30ed8e4ff9217beacd12b12344fc733ba4d759e016a6c2df97a172cfda","7eac90ef192b864045a6dd3b86335efa4936c760ad79bb59ded05698683f7719","b1096d58f6517057f746012925a47ec2d066d0c4143337982dc7f15467ca747e","5c64002b61cd883d2539c80ff4f245384bf64c33b5d7af40accbfbfe405a6011","d0606fc9b7309eef1022f066b55be926544edc47e0b211c60a54367daa7f1320","6b9e145dcf8aa1e82050439847ac42145557510b939bdcc3af132116733bfdcf","6ed0434b66c265567ba50989270a2a406c1c7290de0ca0606424c5209f15c14b","f9dccb27c442d882186eb81a6613368994304a1e19c581ab2d169e449f41a3ba","ce96cdf4ec7233fd29eef8a8c8236c259997010527d25124c64760e645377271","2f377947a423abcfb75b0e27d9986021be894b808ffa7cfcfde8d1e3b8214c90","194018367f7ed61f1bdbd2ce5c7ab2f16fb2f235dee82de70510ad132f6d5890","9a2d06df39b9eb74e5d947dd74943894a9ad56a46c86bf0940e63a550233c376","8ed0aa43fcdb631f96d19eb2d5d13f76c4fe347350d16fae5340b2269a2fa508","5470e0a5df5350ef43f12e1e6f8ab0798f2ff328f2241aef3583c0a8f3ce95d7","f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","5ee005d57eb5b0e887f8451463ac412dc22e6868534f51f061166311f6c8baf5","dc688638e386342faae164e68ac0205274b6731e70ac1a45921f3ce3aa083795","d22e870fef25a052477d24f34356470262881420c8b058c89d86392de6502c42","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","8dc552d17d8515805274740c4902367436a73295c4109bc29f897f35b0604da7","8c2e6e491e1a08855b8bf70820184ff66ae0d43f7cf0311fc680e6d860af211c","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","fa9859478a480a6dfe625d204d5a3a38810b60933ac2b36ba77126cace1d44d3","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e704d7faa97765900963ac1ef5c675cb4c354f2a7fc9fbc104052e14bd65d614","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","077b139efd1a6318805a8b24f05e7af37946d9bf9426bcb4866b45b61e6aac90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"71f30fba971582dc744373cbc8b06c1eb64dc24a6ccbc9b457f94fb68c67cb4e","affectsGlobalScope":true},"15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","fc60dd4cc43dfcc885eb2928d7464a32c16b7f1ea89e4d0f02937c18b0a67737","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","f58599a92d4a64416f4999a4d7241e1647aec2a6249214892722f712a6eedbe0","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a","1a37d640c94c0215e62511590bac215dd0b3bfcc287a567fc5fe87ab10894754","9a35088a2d8bccfe3d6b45ca09860cfbdfdb687897ed4157aaf46dde1e6663ae","257e3c38123565a60e14f3e0b3e04ab038813b754af1d20e151e45b13ebe1d0a","04a2120c1e61edf6edb4fcc7928de5a1c46ed57c8d8ff7055956bb11532884bc","50d9ad258fb5acc22a5bccc3fb67933646e7380b1bd9f0958ab5d07392e23729","b0e6af50e231dad4b89b147221c2dc5b46a00b72a616d525222bea9a40f8dd30","39c67c5e8a96d9eb21457b76db4718c94832fd5e225895561fe680318c940b69","4b46f4712ae966996b2cc81949d482063887c55478706e25d942482a44b99b71","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","66130caa4fad97fed286977c2f3e0025f931c39d3b90b2b79f219a31f8633ee7","bcc8b5e4ac6f744309cf0ba8e7d02ae5cfa4a4a16226492fae8b303aeee40779","501aeb0836814c60b5ef07fec594a62695955520379b2414eccb71927162c2a4","4d11c42bc493653fd9b961d152fb8caaa5e3d77afe757e4b6a8e5d330ffe1ad1","baef53b64b0b38975898aaebe8aed128853902da58f053f6665c1405816bcb1d","fd97421592b5779a6439056332fa4b5cd7f215f2477aa1774e795255acd37425","479e4184e501e4bca26b45c3e35f46a2e5d26c706d01f429fd0be086ac56e389","4596aabfb896e0616866f65b2ff496e2915f2b43dd93e737a5cb33d32221b4d1","1ffa82f37feb59162e758d67b9791f79bbd0a1c08398572237ae172529913529","dc1d6f13e95814153c185f7ce693a481235e01b3c3d780581a10b4e9f4066224","75a8f210ee714a42f836128efb60fae474fc7fd08220110cc80e91fd19b1ebc3","5c49ebbdfee00bc32d3f854083eb05bba9614ae84d3465e1974a16a57df4ae44","a274c6c7f66ac24be1e9c37794ee15e99b4e44468585e1373c894997e1fe779d","30791abf180eb09e444904db48cfa57ead92bccf71e29efa7bf1ed67b99db365","2a65cc116bee5e7560c46053653ec36c1a5facb0c232ba212ab052d93797bc6a","f195abfcd86541732f7ce974d22b088ca23e738afc3ee37f1cb859cf719eb621","9cabfd3daa7fbc9a3958d18a09558d402f411dab27f5edabc06e7b9261aaba1e",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"30688eab034d1aa3bbe4d8f2c7f462ddaec9f30f1a38a306a4728a9a06a58b11","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","cd6a7c1c2a6461c6868601ca2144a41f8ee6d4a85d4b4cf1deb651e6c2ebc9e5",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"d7a041dfebb4e5ab34e9a6771436bd96e9ad7c42728f89a87a0d77dcab766f56","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useDefineForClassFields":true},"fileIdsList":[[71,130],[130],[52,130,195],[71,72,73,74,75,130],[71,73,130],[78,130],[80,130],[81,82,130],[81,130],[102,103,130,137,138],[103,130,137],[130,141],[130,146],[130,147],[130,153,155],[86,130],[130,160,162,163,164,165,166,167,168,169,170,171,172],[130,160,161,163,164,165,166,167,168,169,170,171,172],[130,161,162,163,164,165,166,167,168,169,170,171,172],[130,160,161,162,164,165,166,167,168,169,170,171,172],[130,160,161,162,163,165,166,167,168,169,170,171,172],[130,160,161,162,163,164,166,167,168,169,170,171,172],[130,160,161,162,163,164,165,167,168,169,170,171,172],[130,160,161,162,163,164,165,166,168,169,170,171,172],[130,160,161,162,163,164,165,166,167,169,170,171,172],[130,160,161,162,163,164,165,166,167,168,170,171,172],[130,160,161,162,163,164,165,166,167,168,169,171,172],[130,160,161,162,163,164,165,166,167,168,169,170,172],[130,160,161,162,163,164,165,166,167,168,169,170,171],[105,129,130,137,176,177],[87,130],[90,130],[91,96,130],[92,102,103,110,119,129,130],[92,93,102,110,130],[94,130],[95,96,103,111,130],[96,119,126,130],[97,99,102,110,130],[98,130],[99,100,130],[101,102,130],[102,130],[102,103,104,119,129,130],[102,103,104,119,130],[105,110,119,129,130],[102,103,105,106,110,119,126,129,130],[105,107,119,126,129,130],[87,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],[102,108,130],[109,129,130],[99,102,110,119,130],[111,130],[112,130],[90,113,130],[114,128,130,134],[115,130],[116,130],[102,117,130],[117,118,130,132],[102,119,120,121,130],[119,121,130],[119,120,130],[122,130],[123,130],[102,124,125,130],[124,125,130],[96,110,126,130],[127,130],[110,128,130],[91,105,116,129,130],[96,130],[119,130,131],[130,132],[130,133],[91,96,102,104,113,119,129,130,132,134],[119,130,135],[55,130],[55,130,159],[130,190,192,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[55,130,190,191,192,193,194,197,208,209],[55,130,192],[55,130,192,196,197],[55,130,187,192,193,196,197],[55,130,192,196],[55,130,192,196,197,198],[55,130,192,198,199,200,201,202,203,204,205,206,207],[130,189],[55,130,192,210],[130,192,196,198,199,200,201,202,203,204,205,206,207],[130,192],[55,130,210],[55,130,214],[55,130,215],[130,215,216,217,218,219],[51,52,53,54,130],[130,227],[130,137,232,233,234,235,236,237,238,239,240,241,242],[130,231,232,241],[130,232,241],[130,224,231,232,241],[130,232],[96,130,231,241],[130,231,232,233,234,235,236,237,238,239,240,242],[96,130,137,226,227,228,230,243],[102,105,107,110,119,126,129,130,135,137],[130,247],[105,119,130,137],[130,149,150],[130,149,150,151,152],[130,154],[48,130],[46,47,130],[49,130],[56,57,58,59,60,61,130],[55,56,58,130],[56,57,130],[55,56,130],[56,62,69,130],[56,130],[56,63,64,65,66,67,68,130]],"referencedMap":[[73,1],[71,2],[196,3],[195,2],[76,4],[72,1],[74,5],[75,1],[77,2],[79,6],[78,2],[81,7],[83,8],[82,9],[80,2],[84,2],[85,2],[86,2],[139,10],[140,11],[142,12],[143,2],[144,2],[145,2],[146,2],[147,13],[148,14],[156,15],[157,2],[158,2],[159,16],[161,17],[162,18],[160,19],[163,20],[164,21],[165,22],[166,23],[167,24],[168,25],[169,26],[170,27],[171,28],[172,29],[173,12],[174,2],[138,2],[175,2],[177,2],[178,30],[87,31],[88,31],[90,32],[91,33],[92,34],[93,35],[94,36],[95,37],[96,38],[97,39],[98,40],[99,41],[100,41],[101,42],[102,43],[103,44],[104,45],[89,2],[136,2],[105,46],[106,47],[107,48],[137,49],[108,50],[109,51],[110,52],[111,53],[112,54],[113,55],[114,56],[115,57],[116,58],[117,59],[118,60],[119,61],[121,62],[120,63],[122,64],[123,65],[124,66],[125,67],[126,68],[127,69],[128,70],[129,71],[130,72],[131,73],[132,74],[133,75],[134,76],[135,77],[179,2],[180,43],[181,2],[182,2],[183,2],[184,2],[185,2],[53,2],[186,2],[187,78],[188,79],[213,80],[212,78],[210,81],[191,2],[194,82],[200,83],[201,83],[202,83],[203,84],[204,83],[205,83],[206,85],[207,86],[198,83],[208,87],[199,83],[189,2],[190,88],[211,89],[209,90],[197,91],[192,92],[193,82],[214,93],[216,94],[218,78],[215,78],[217,94],[219,2],[220,95],[221,78],[51,2],[55,96],[56,78],[222,2],[54,2],[223,2],[224,2],[225,2],[226,2],[228,97],[141,2],[229,2],[245,2],[243,98],[242,99],[233,100],[234,101],[235,101],[236,100],[237,100],[238,100],[239,102],[232,103],[240,99],[241,104],[244,105],[246,106],[247,2],[248,107],[230,2],[52,2],[176,108],[149,2],[151,109],[153,110],[152,109],[150,2],[155,111],[154,2],[227,2],[231,2],[10,2],[11,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[8,2],[42,2],[43,2],[44,2],[1,2],[9,2],[45,2],[49,112],[47,2],[46,2],[48,113],[50,114],[62,115],[59,116],[58,117],[60,117],[61,118],[57,118],[70,119],[63,120],[64,120],[65,120],[69,121],[66,120],[67,120],[68,120]],"exportedModulesMap":[[73,1],[71,2],[196,3],[195,2],[76,4],[72,1],[74,5],[75,1],[77,2],[79,6],[78,2],[81,7],[83,8],[82,9],[80,2],[84,2],[85,2],[86,2],[139,10],[140,11],[142,12],[143,2],[144,2],[145,2],[146,2],[147,13],[148,14],[156,15],[157,2],[158,2],[159,16],[161,17],[162,18],[160,19],[163,20],[164,21],[165,22],[166,23],[167,24],[168,25],[169,26],[170,27],[171,28],[172,29],[173,12],[174,2],[138,2],[175,2],[177,2],[178,30],[87,31],[88,31],[90,32],[91,33],[92,34],[93,35],[94,36],[95,37],[96,38],[97,39],[98,40],[99,41],[100,41],[101,42],[102,43],[103,44],[104,45],[89,2],[136,2],[105,46],[106,47],[107,48],[137,49],[108,50],[109,51],[110,52],[111,53],[112,54],[113,55],[114,56],[115,57],[116,58],[117,59],[118,60],[119,61],[121,62],[120,63],[122,64],[123,65],[124,66],[125,67],[126,68],[127,69],[128,70],[129,71],[130,72],[131,73],[132,74],[133,75],[134,76],[135,77],[179,2],[180,43],[181,2],[182,2],[183,2],[184,2],[185,2],[53,2],[186,2],[187,78],[188,79],[213,80],[212,78],[210,81],[191,2],[194,82],[200,83],[201,83],[202,83],[203,84],[204,83],[205,83],[206,85],[207,86],[198,83],[208,87],[199,83],[189,2],[190,88],[211,89],[209,90],[197,91],[192,92],[193,82],[214,93],[216,94],[218,78],[215,78],[217,94],[219,2],[220,95],[221,78],[51,2],[55,96],[56,78],[222,2],[54,2],[223,2],[224,2],[225,2],[226,2],[228,97],[141,2],[229,2],[245,2],[243,98],[242,99],[233,100],[234,101],[235,101],[236,100],[237,100],[238,100],[239,102],[232,103],[240,99],[241,104],[244,105],[246,106],[247,2],[248,107],[230,2],[52,2],[176,108],[149,2],[151,109],[153,110],[152,109],[150,2],[155,111],[154,2],[227,2],[231,2],[10,2],[11,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[8,2],[42,2],[43,2],[44,2],[1,2],[9,2],[45,2],[49,112],[47,2],[46,2],[48,113],[50,114],[62,115],[59,116],[58,117],[60,117],[61,118],[57,118],[70,119],[63,120],[64,120],[65,120],[69,121],[66,120],[67,120],[68,120]],"semanticDiagnosticsPerFile":[73,71,196,195,76,72,74,75,77,79,78,81,83,82,80,84,85,86,139,140,142,143,144,145,146,147,148,156,157,158,159,161,162,160,163,164,165,166,167,168,169,170,171,172,173,174,138,175,177,178,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,89,136,105,106,107,137,108,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,179,180,181,182,183,184,185,53,186,187,188,213,212,210,191,194,200,201,202,203,204,205,206,207,198,208,199,189,190,211,209,197,192,193,214,216,218,215,217,219,220,221,51,55,56,222,54,223,224,225,226,228,141,229,245,243,242,233,234,235,236,237,238,239,232,240,241,244,246,247,248,230,52,176,149,151,153,152,150,155,154,227,231,10,11,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,33,34,35,36,7,41,37,38,39,40,8,42,43,44,1,9,45,49,47,46,48,50,62,59,58,60,61,57,70,63,64,65,69,66,67,68]},"version":"4.3.5"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contember/react-utils",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "1.0.0-rc.
|
|
4
|
+
"version": "1.0.0-rc.10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/production/index.js",
|
|
@@ -14,15 +14,14 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
|
-
"dist/"
|
|
17
|
+
"dist/",
|
|
18
|
+
"src/"
|
|
18
19
|
],
|
|
19
|
-
"typings": "./dist/
|
|
20
|
+
"typings": "./dist/types/index.d.ts",
|
|
20
21
|
"peerDependencies": {
|
|
21
22
|
"react": "^17"
|
|
22
23
|
},
|
|
23
24
|
"scripts": {
|
|
24
|
-
"build": "vite build --mode development && vite build --mode production"
|
|
25
|
-
"build:api:dev": "api-extractor run --local",
|
|
26
|
-
"build:api:prod": "api-extractor run"
|
|
25
|
+
"build": "vite build --mode development && vite build --mode production"
|
|
27
26
|
}
|
|
28
27
|
}
|
package/src/ambient.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { useMemo } from 'react'
|
|
2
|
+
import { useConstantLengthInvariant } from './useConstantLengthInvariant'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️
|
|
6
|
+
* ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠
|
|
7
|
+
*
|
|
8
|
+
* This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents
|
|
9
|
+
* of the original array, and not its referential equality. That way, if we create a new array with identical items,
|
|
10
|
+
* we get an array that is referentially equal to the previous one.
|
|
11
|
+
*/
|
|
12
|
+
export const useArrayMapMemo = <Item, OutputItem>(
|
|
13
|
+
items: Item[],
|
|
14
|
+
map: (value: Item, index: number, array: Item[]) => OutputItem,
|
|
15
|
+
): OutputItem[] => {
|
|
16
|
+
useConstantLengthInvariant(items)
|
|
17
|
+
|
|
18
|
+
// This is tricky. We don't want to exclude the map function from the dependency list because if it changes but the
|
|
19
|
+
// items array remains the same, we still want to re-compute the new array. However, if that yields the same array,
|
|
20
|
+
// in the sense that the items are identical, albeit computed via a different map function, we still want to
|
|
21
|
+
// preserve the referential equality of the original. Hence the second memo.
|
|
22
|
+
|
|
23
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
24
|
+
const mapped = useMemo(() => items.map(map), [map, ...items])
|
|
25
|
+
|
|
26
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
27
|
+
return useMemo(() => mapped, mapped) // This is deliberately not `[mapped]`
|
|
28
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { usePreviousValue } from './usePreviousValue'
|
|
2
|
+
|
|
3
|
+
// This entire hook should get optimized away for prod
|
|
4
|
+
export const useConstantLengthInvariant = <Item extends unknown>(items: Item[], message?: string) => {
|
|
5
|
+
if (import.meta.env.DEV) {
|
|
6
|
+
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
7
|
+
const previous = usePreviousValue(items)
|
|
8
|
+
if (previous.length !== items.length) {
|
|
9
|
+
throw new Error(
|
|
10
|
+
`Invariant violation: ${
|
|
11
|
+
message || 'Changing the length of an array whose length must remain constant between renders.'
|
|
12
|
+
}`,
|
|
13
|
+
)
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { usePreviousValue } from './usePreviousValue'
|
|
2
|
+
|
|
3
|
+
// This entire hook should get optimized away for prod
|
|
4
|
+
export const useConstantValueInvariant = <Value extends unknown>(value: Value, message?: string) => {
|
|
5
|
+
if (import.meta.env.DEV) {
|
|
6
|
+
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
7
|
+
const previous = usePreviousValue(value)
|
|
8
|
+
if (previous !== value) {
|
|
9
|
+
throw new Error(
|
|
10
|
+
`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,
|
|
11
|
+
)
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const emptyArray = Object.freeze<any>([]) as any[]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const emptyObject = Object.freeze({})
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const identityFunction = <Value>(value: Value) => value
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const noop = () => undefined
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const returnFalse = () => false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const returnTrue = () => true
|
package/dist/react-utils.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
|
|
3
|
-
import { DispatchWithoutAction } from 'react';
|
|
4
|
-
|
|
5
|
-
export declare const emptyArray: any[];
|
|
6
|
-
|
|
7
|
-
export declare const emptyObject: Readonly<{}>;
|
|
8
|
-
|
|
9
|
-
export declare const identityFunction: <Value>(value: Value) => Value;
|
|
10
|
-
|
|
11
|
-
export declare const noop: () => undefined;
|
|
12
|
-
|
|
13
|
-
export declare const returnFalse: () => boolean;
|
|
14
|
-
|
|
15
|
-
export declare const returnTrue: () => boolean;
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* ⚠️ ONLY USE THIS IF YOU *REALLY* KNOW WHAT YOU'RE DOING! ⚠️
|
|
19
|
-
* ⚠ HERE BE DRAGONS THAT KNOW WHERE YOU LIVE! ⚠
|
|
20
|
-
*
|
|
21
|
-
* This is a bit of React naughtiness that allows us to memoize outputs of Array.prototype.map() based on the contents
|
|
22
|
-
* of the original array, and not its referential equality. That way, if we create a new array with identical items,
|
|
23
|
-
* we get an array that is referentially equal to the previous one.
|
|
24
|
-
*/
|
|
25
|
-
export declare const useArrayMapMemo: <Item, OutputItem>(items: Item[], map: (value: Item, index: number, array: Item[]) => OutputItem) => OutputItem[];
|
|
26
|
-
|
|
27
|
-
export declare const useConstantLengthInvariant: <Item extends unknown>(items: Item[], message?: string | undefined) => void;
|
|
28
|
-
|
|
29
|
-
export declare const useConstantValueInvariant: <Value extends unknown>(value: Value, message?: string | undefined) => void;
|
|
30
|
-
|
|
31
|
-
export declare const useForceRender: () => DispatchWithoutAction;
|
|
32
|
-
|
|
33
|
-
export declare const usePreviousValue: <Value>(value: Value) => Value;
|
|
34
|
-
|
|
35
|
-
export { }
|