@interactors/core 0.4.0 → 1.0.0-effection.0
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/cjs/constructor.js +55 -126
- package/dist/cjs/constructor.js.map +1 -1
- package/dist/cjs/converge.js +3 -5
- package/dist/cjs/converge.js.map +1 -1
- package/dist/cjs/format.js +50 -0
- package/dist/cjs/format.js.map +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/inspector.js +2 -1
- package/dist/cjs/inspector.js.map +1 -1
- package/dist/cjs/interaction.js +54 -35
- package/dist/cjs/interaction.js.map +1 -1
- package/dist/cjs/match.js +17 -7
- package/dist/cjs/match.js.map +1 -1
- package/dist/cjs/matcher.js +13 -1
- package/dist/cjs/matcher.js.map +1 -1
- package/dist/cjs/matchers/and.js +3 -0
- package/dist/cjs/matchers/and.js.map +1 -1
- package/dist/cjs/matchers/every.js +3 -0
- package/dist/cjs/matchers/every.js.map +1 -1
- package/dist/cjs/matchers/including.js +4 -0
- package/dist/cjs/matchers/including.js.map +1 -1
- package/dist/cjs/matchers/matching.js +4 -0
- package/dist/cjs/matchers/matching.js.map +1 -1
- package/dist/cjs/matchers/not.js +3 -0
- package/dist/cjs/matchers/not.js.map +1 -1
- package/dist/cjs/matchers/or.js +3 -0
- package/dist/cjs/matchers/or.js.map +1 -1
- package/dist/cjs/matchers/some.js +3 -0
- package/dist/cjs/matchers/some.js.map +1 -1
- package/dist/cjs/resolvers.js +98 -0
- package/dist/cjs/resolvers.js.map +1 -0
- package/dist/cjs/serialize.js +48 -0
- package/dist/cjs/serialize.js.map +1 -0
- package/dist/constructor.d.ts +2 -8
- package/dist/constructor.d.ts.map +1 -1
- package/dist/converge.d.ts +2 -1
- package/dist/converge.d.ts.map +1 -1
- package/dist/esm/constructor.js +52 -117
- package/dist/esm/constructor.js.map +1 -1
- package/dist/esm/converge.js +3 -5
- package/dist/esm/converge.js.map +1 -1
- package/dist/esm/{format-table.js → format.js} +19 -1
- package/dist/esm/format.js.map +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/inspector.js +2 -1
- package/dist/esm/inspector.js.map +1 -1
- package/dist/esm/interaction.js +51 -29
- package/dist/esm/interaction.js.map +1 -1
- package/dist/esm/match.js +17 -7
- package/dist/esm/match.js.map +1 -1
- package/dist/esm/matcher.js +11 -0
- package/dist/esm/matcher.js.map +1 -1
- package/dist/esm/matchers/and.js +4 -1
- package/dist/esm/matchers/and.js.map +1 -1
- package/dist/esm/matchers/every.js +4 -1
- package/dist/esm/matchers/every.js.map +1 -1
- package/dist/esm/matchers/including.js +4 -0
- package/dist/esm/matchers/including.js.map +1 -1
- package/dist/esm/matchers/matching.js +4 -0
- package/dist/esm/matchers/matching.js.map +1 -1
- package/dist/esm/matchers/not.js +4 -1
- package/dist/esm/matchers/not.js.map +1 -1
- package/dist/esm/matchers/or.js +4 -1
- package/dist/esm/matchers/or.js.map +1 -1
- package/dist/esm/matchers/some.js +4 -1
- package/dist/esm/matchers/some.js.map +1 -1
- package/dist/esm/resolvers.js +88 -0
- package/dist/esm/resolvers.js.map +1 -0
- package/dist/esm/serialize.js +43 -0
- package/dist/esm/serialize.js.map +1 -0
- package/dist/format.d.ts +10 -0
- package/dist/format.d.ts.map +1 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/inspector.d.ts.map +1 -1
- package/dist/interaction.d.ts +38 -10
- package/dist/interaction.d.ts.map +1 -1
- package/dist/match.d.ts +5 -5
- package/dist/match.d.ts.map +1 -1
- package/dist/matcher.d.ts +2 -0
- package/dist/matcher.d.ts.map +1 -1
- package/dist/matchers/and.d.ts.map +1 -1
- package/dist/matchers/every.d.ts.map +1 -1
- package/dist/matchers/including.d.ts.map +1 -1
- package/dist/matchers/matching.d.ts.map +1 -1
- package/dist/matchers/not.d.ts.map +1 -1
- package/dist/matchers/or.d.ts.map +1 -1
- package/dist/matchers/some.d.ts.map +1 -1
- package/dist/resolvers.d.ts +9 -0
- package/dist/resolvers.d.ts.map +1 -0
- package/dist/serialize.d.ts +13 -0
- package/dist/serialize.d.ts.map +1 -0
- package/dist/specification.d.ts +19 -17
- package/dist/specification.d.ts.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/src/constructor.ts +63 -138
- package/src/converge.ts +3 -6
- package/src/format.ts +58 -0
- package/src/index.ts +4 -2
- package/src/inspector.ts +2 -1
- package/src/interaction.ts +96 -36
- package/src/match.ts +23 -15
- package/src/matcher.ts +11 -0
- package/src/matchers/and.ts +4 -1
- package/src/matchers/every.ts +4 -1
- package/src/matchers/including.ts +4 -1
- package/src/matchers/matching.ts +4 -1
- package/src/matchers/not.ts +4 -1
- package/src/matchers/or.ts +4 -1
- package/src/matchers/some.ts +4 -1
- package/src/resolvers.ts +100 -0
- package/src/serialize.ts +54 -0
- package/src/specification.ts +21 -19
- package/CHANGELOG.md +0 -27
- package/dist/cjs/format-table.js +0 -30
- package/dist/cjs/format-table.js.map +0 -1
- package/dist/esm/format-table.js.map +0 -1
- package/dist/format-table.d.ts +0 -6
- package/dist/format-table.d.ts.map +0 -1
- package/src/format-table.ts +0 -34
|
@@ -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.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../globals/dist/keyboard-layout.d.ts","../../globals/dist/globals.d.ts","../../globals/dist/index.d.ts","../../../node_modules/performance-api/index.d.ts","../src/converge.ts","../src/merge-objects.ts","../../../node_modules/no-case/dist/index.d.ts","../../../node_modules/pascal-case/dist/index.d.ts","../../../node_modules/camel-case/dist/index.d.ts","../../../node_modules/capital-case/dist/index.d.ts","../../../node_modules/constant-case/dist/index.d.ts","../../../node_modules/dot-case/dist/index.d.ts","../../../node_modules/header-case/dist/index.d.ts","../../../node_modules/param-case/dist/index.d.ts","../../../node_modules/path-case/dist/index.d.ts","../../../node_modules/sentence-case/dist/index.d.ts","../../../node_modules/snake-case/dist/index.d.ts","../../../node_modules/change-case/dist/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.isequal/index.d.ts","../src/matcher.ts","../src/filter-set.ts","../src/escape-html.ts","../src/match.ts","../src/locator.ts","../src/interaction.ts","../src/specification.ts","../src/format-table.ts","../src/errors.ts","../src/matchers/matching.ts","../src/constructor.ts","../src/create-interactor.ts","../src/inspector.ts","../../../node_modules/element-is-visible/dist/types/index.d.ts","../src/matchers/including.ts","../src/matchers/and.ts","../src/matchers/or.ts","../src/matchers/not.ts","../src/matchers/some.ts","../src/matchers/every.ts","../../../node_modules/@testing-library/user-event/dist/click.d.ts","../../../node_modules/@testing-library/user-event/dist/type/typeImplementation.d.ts","../../../node_modules/@testing-library/user-event/dist/type/index.d.ts","../../../node_modules/@testing-library/user-event/dist/clear.d.ts","../../../node_modules/@testing-library/user-event/dist/tab.d.ts","../../../node_modules/@testing-library/user-event/dist/hover.d.ts","../../../node_modules/@testing-library/user-event/dist/upload.d.ts","../../../node_modules/@testing-library/user-event/dist/paste.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/types.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/specialCharMap.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/index.d.ts","../../../node_modules/@testing-library/user-event/dist/index.d.ts","../src/element/click.ts","../src/index.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/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/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/color-convert/conversions.d.ts","../../../node_modules/@types/color-convert/route.d.ts","../../../node_modules/@types/color-convert/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/express-ws/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-function/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/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/overlayscrollbars/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parsimmon/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/reach__router/index.d.ts","../../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/styled-jsx/css.d.ts","../../../node_modules/@types/styled-jsx/server.d.ts","../../../node_modules/@types/styled-jsx/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"a8fe23ae87c3e9d2877032cafeb290f2ebe0c51e216d175a0408b10915ebe9f0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","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":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","b3b879831b2f344946bf9d4c63f0d04521a781cf0b3b692a9cca5ffac27f8342",{"version":"9b07df0df29aaf7115482465663215549ff8651b309d959ec97c2e0a0b643fdd","affectsGlobalScope":true},"b2d8cbb803ddaa0a2742790e07eab833d8d31420813644492d6c1f5a16bc6e28","86a21c8d5ab7e720b3ad632b87a47991ad0dbace558a33545192502436881422","619375764a9af570c8ba911c7fd3f3828a976e3d8f67b624651795dc8184b84f","1ed141f1949d28ef8406d86ea397d47cd8c41f0ed1735e5851ddfbffb8b0c5d2","b4e123af1af6049685c93073a15868b50aebdad666d422edc72fa2b585fa8a37","f86c04a744ebcede96bac376f9a2c90f2bd3c422740d91dda4ca6233199d4977","6ae1bddee5c790439bd992abd063b9b46e0cadd676c2a8562268d1869213ff60","606244fc97a6a74b877f2e924ba7e55b233bc6acb57d7bf40ba84a5be2d9adb0","4a1cabac71036b8a14f5db1b753b579f0c901c7d7b9227e6872dadf6efb104e8","062959a1d825b96639d87be35fe497cbd3f89544bf06fdad577bbfb85fcf604c","4c3672dc8f4e4fdd3d18525b22b31f1b5481f5a415db96550d3ac5163a6c3dd3","f9a69ca445010b91fe08f08c06e0f86d79c0d776905f9bdb828477cb2a1eb7fc","ad7fd0e7ee457d4884b3aaecbcbd2a80b6803407c4ce2540c296170d4c7918ef","a50ef21605f41c6acad6c3ef0307e5311b94963c846ca093c764b80cdb5318d6","74b4035dd26d09a417c44ca23ab5ee69b173f8c2f6b2e47350ab0795cf2d4a17","918f86ee2b19cc38cb8b1a4cf8f223eb228aaa39df3604c42f700fac2f0b3ea1","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"5e099389ceec44681b37d10470755cdc6d9f516851e53c731c6e7e17b39ad86f","da9c0fe692078dcbf4901ea8ccda381f7ec349fd9ad935bb4d83357fc76c3313","3cf40d431c974539c29c771b0a27e182c6d122c8ddb7b2b4164bb1505ad46802","977a2800819ce60055a20dc4c76194d14375bf851e670d4ca6bbb637c8c94c40","50b2a9b6a9077dbf6a5f72c925f9c8ba0064746137bbdd98c0380cebba2b4c55","c8c7ba25921d089392a1fbfb8d3841580736203210c0e740d43c4b0e58608b9a","51039c3cd85d21685b8782edc33c20e0c572d3b5bc186327cf1ba3da88f2cfd2","2af9ca04b1ec0010e34c533068e8ae70e81f48d719c790a29e81d15ec7271f89","5c27a0ad35febf081d7794be2affe2c3430b9b9c3458ca32f91a2805c655a369","1a2532558d091ddd7c4b59244db687424e67c7f611008ecd4166c54ea6dd7ce0","e4e78e7442245cf52e633601a83fa168dd5ff6d8ac8b1ba56953b88377973bd8","cd9fc7e1a37dc42128301b598ecb30ed2e1a5dfdf5d8ba9cb31c5ec7239caf0f","d22dd4724f77e74f8d3a1967e0a5bd14e8dc9cad11e3a428aed953ded322d8a3","68259f579bbf6adf4c52f3906ed8b30dd7ccf0a00cda05c394d344c492548afb","f154d024f656bbfc1dee0735295c8d5c59744c2c89494d19414c96271ce6f3f2","22b5e5b4f5716fab00a7e0894f57e2ca6b73455763617b18889487dbc4580a59","d787128b8a780dc930e34694ab4487a2b7fac5fbda823b9ad80c77261c4ac97d","cfdc452c6f97e7c2718c70538740d7fc27e59af46f43633500375c229edab50d","3369edc4582748651a7b88a63bb99495d2cfcf416952e2d085e24444521f52c7","e86c7281cca226142ff3b59ae01bc0e138fda419cee41c1490784096f520e132","42749fb54fa62cb70fb3626c4fabed82ac839eaaa7800fb9a5ba9d77bacf2b57","8f1939cb00a19f35f2b2fde4ec19b503ef81dd1bafe7ed674cf2b095c88497ed","5cdfd7ece2de1a4d639ed96c45684a410dc4c7e3bcf703126841f0f8d167e1fc","4e08fdfdc922d56b2026be6753789836ce743337b9addfc8904bf26e7563eef5","9d04022b9ca6bd7fb69c5f8e2e6fe70611041b40a97f758482ee5e45030c630d","dd93153104f5e7d80a6f05acb5f5463fe703fefc11b81b15571391ebd5db185c","64e7425eb52881fed45d9cdc71d08be0659800d8c5bae5b5462c94594c1ab5c2","aade1ce0f51f5999ca6ade38ffb76cd74c47fa582bfc49192e5649f741ee66f2","2b28c235f2ca53ce553676726533995a0b5fe08e9168f78c24570642e3a47ce2","409a7447759f27ae86e270b542bf6c8c50260f7426834e1a5f66ca80fcff30b2","7cb02c56ba198bac88ca0a6131c9385d61002cc48bdb258d55140e6f0cc99977","0fafef9609c651aafc9bef4110d1fcbf2e463149c50e2dba3da5a654ef92c397","38cf19d1ee5a66cd67a7cd1eceaa3c5943559990f15f69851f1e9ec7579609e1","83d29115019159f627040661bf12e6b915a84ddea2c837deac42fad6ec99a6a6","df49f442703228b22143a5f02adcac1e5845c173cf7d26f8325859f24badef27","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","10b3076ac94d93d107062c0874fcc02305d8b915961cf848df17778535774f39","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"1d4ac8cbd56a1d3b2077d1503afa0a82c608efd7a7afe393e0c8ec525c6e1cd7","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","a748205e90921674b09a2485f14558480793e89770521901f3ae7da1c41b860e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","201f92d97704e7e17e1c6e208fea976d75ff7b04235b79057891a33c7330bd77","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","224b63b6ec3ed8fbabc53e119550862acde02075f1f37dd8822255eee310d994","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","1a255ad66d2b50f7b42eca69228b9587878cf06900780ad57a306a933c6eaeb4","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"f24768499dab9a34c0aff9c9e3fbfe5117001bfabba4a1db01a17df086d6a606","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","b4786763dce6903c943cca62bf645820c0e475e1a4c42eb5b412c9660c9146fe","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"2612ddb9dec0fdb148b20bff58d3737fe467e01b8662b4dc5f1304f792a87706","affectsGlobalScope":true},"94a274c882504de552300fc5d6be141820041e9e2c530064ea10a0b76e2f905f",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"afedeaca75706705212ef95206d4612bbb64e2665260a1ada9a2cc8c29ad26f5","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","8109b2ef3ab54c7c855d7ec37074aab0574a2c20e9dd4c6d642f65edc51d1e84","ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","9fd84c479ce3dc77858b0c91264db2f4932afc1e5808082811c8d13ca4fa90b2","54edd7f507924e5283efc12b90e95aa8d304c5bcdfdcaec22aa7b0e4d165151a","6d28df3f03f821b016bfd728289d8a99eca6053800d07f76f5d38d181f499208","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[188,189,190],[90,92,93,94,95,96,97,100,188,189,190],[98,99,188,189,190],[91,188,189,190],[120,148,149,188,189,190],[117,120,140,148,152,153,154,188,189,190],[156,188,189,190],[157,158,188,189,190],[157,188,189,190],[120,148,188,189,190],[163,164,188,189,190],[160,161,162,163,188,189,190],[164,188,189,190],[117,120,148,166,167,188,189,190],[120,122,168,171,172,188,189,190],[150,167,168,170,188,189,190],[117,148,174,188,189,190],[118,148,188,189,190],[177,188,189,190],[117,120,122,125,134,140,148,188,189,190],[182,188,189,190],[183,188,189,190],[117,143,148,186,187,189,190],[188,189],[188,190],[117,148,188,189,190],[68,188,189,190],[56,58,59,60,61,62,63,64,65,66,67,68,188,189,190],[56,57,59,60,61,62,63,64,65,66,67,68,188,189,190],[57,58,59,60,61,62,63,64,65,66,67,68,188,189,190],[56,57,58,60,61,62,63,64,65,66,67,68,188,189,190],[56,57,58,59,61,62,63,64,65,66,67,68,188,189,190],[56,57,58,59,60,62,63,64,65,66,67,68,188,189,190],[56,57,58,59,60,61,63,64,65,66,67,68,188,189,190],[56,57,58,59,60,61,62,64,65,66,67,68,188,189,190],[56,57,58,59,60,61,62,63,65,66,67,68,188,189,190],[56,57,58,59,60,61,62,63,64,66,67,68,188,189,190],[56,57,58,59,60,61,62,63,64,65,67,68,188,189,190],[56,57,58,59,60,61,62,63,64,65,66,68,188,189,190],[56,57,58,59,60,61,62,63,64,65,66,67,188,189,190],[151,188,189,190],[120,140,148,188,189,190,195,196],[120,134,148,188,189,190],[117,118,125,134,188,189,190],[109,117,125,188,189,190],[141,188,189,190],[113,118,126,188,189,190],[134,188,189,190],[115,117,125,188,189,190],[117,188,189,190],[117,119,134,140,188,189,190],[118,188,189,190],[125,134,140,188,189,190],[117,118,120,125,134,137,140,188,189,190],[120,134,137,140,188,189,190],[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,146,147,188,189,190],[140,188,189,190],[115,117,134,188,189,190],[107,188,189,190],[139,188,189,190],[132,141,143,188,189,190],[125,188,189,190],[131,188,189,190],[117,119,134,140,143,188,189,190],[185,188,189,190],[186,188,189,190],[188,189,190,209],[188,189,190,209,211],[188,189,190,209,212],[188,189,190,212,213,214,215,216],[188,189,190,204,206,207,208],[148,188,189,190],[120,148,169,188,189,190],[188,189,190,209,225,226],[188,189,190,229],[148,188,189,190,233,234,235,236,237,238,239,240,241,242,243],[188,189,190,232,233,242],[188,189,190,233,242],[188,189,190,223,232,233,242],[188,189,190,233],[113,188,189,190,232,242],[188,189,190,232,233,234,235,236,237,238,239,240,241,243],[113,148,188,189,190,228,229,230,231,244],[117,120,122,125,134,137,140,146,148,188,189,190],[188,189,190,247],[117,134,148,188,189,190],[45,188,189,190],[44,188,189,190],[44,45,46,47,48,49,50,51,52,53,54,188,189,190],[47,188,189,190],[49,188,189,190],[40,42,43,70,71,73,74,75,76,77,78,79,188,189,190],[40,41,188,189,190],[76,80,188,189,190],[101,188,189,190],[55,70,76,188,189,190],[70,75,76,79,81,82,83,84,85,86,87,88,89,102,188,189,190],[40,76,188,189,190],[70,73,76,188,189,190],[70,71,72,74,76,188,189,190],[69,188,189,190],[70,188,189,190],[43,70,71,74,75,188,189,190],[38,188,189,190],[38,39,188,189,190]],"referencedMap":[[93,1],[90,1],[95,1],[101,2],[100,3],[99,1],[98,1],[97,1],[94,1],[92,4],[91,1],[96,1],[104,1],[150,5],[151,1],[155,6],[157,7],[159,8],[158,9],[156,1],[149,10],[165,11],[160,1],[164,12],[161,13],[163,1],[168,14],[173,15],[171,16],[175,17],[176,18],[178,19],[179,1],[153,1],[180,20],[181,1],[182,1],[183,21],[184,22],[188,23],[190,24],[189,25],[162,1],[152,26],[69,27],[57,28],[58,29],[56,30],[59,31],[60,32],[61,33],[62,34],[63,35],[64,36],[65,37],[66,38],[67,39],[68,40],[191,19],[192,41],[169,1],[174,1],[193,1],[194,1],[196,1],[197,42],[195,43],[105,1],[107,1],[108,1],[109,44],[110,45],[111,46],[112,47],[113,48],[114,49],[115,1],[116,50],[117,50],[118,51],[119,52],[106,1],[147,1],[120,53],[121,54],[122,55],[148,56],[123,50],[124,57],[125,58],[126,1],[127,1],[128,59],[129,60],[130,1],[131,1],[132,50],[133,61],[134,50],[135,1],[136,1],[137,62],[138,1],[139,62],[140,63],[141,1],[142,48],[143,1],[144,1],[145,64],[146,48],[198,1],[199,50],[200,1],[201,1],[186,65],[185,66],[202,1],[203,1],[204,1],[205,1],[167,1],[166,1],[210,67],[211,68],[213,69],[215,67],[212,67],[214,69],[216,1],[217,70],[206,1],[209,71],[207,1],[218,72],[154,43],[219,1],[208,1],[220,1],[170,73],[221,1],[222,1],[223,1],[224,1],[225,1],[227,74],[226,67],[228,1],[187,1],[230,75],[177,1],[246,1],[244,76],[243,77],[234,78],[235,79],[236,79],[237,78],[238,78],[239,78],[240,80],[233,81],[241,77],[242,82],[232,1],[245,83],[172,84],[247,1],[248,85],[249,86],[231,1],[46,87],[47,88],[55,89],[48,88],[49,88],[83,1],[50,90],[44,1],[51,91],[45,88],[52,91],[41,1],[53,88],[54,91],[229,1],[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[80,92],[42,93],[81,94],[102,95],[78,1],[72,1],[71,96],[77,1],[103,97],[82,94],[75,98],[74,99],[73,100],[70,101],[85,102],[89,102],[84,102],[79,102],[87,102],[86,102],[88,102],[43,1],[76,103],[39,104],[40,105],[38,1]],"exportedModulesMap":[[93,1],[90,1],[95,1],[101,2],[100,3],[99,1],[98,1],[97,1],[94,1],[92,4],[91,1],[96,1],[104,1],[150,5],[151,1],[155,6],[157,7],[159,8],[158,9],[156,1],[149,10],[165,11],[160,1],[164,12],[161,13],[163,1],[168,14],[173,15],[171,16],[175,17],[176,18],[178,19],[179,1],[153,1],[180,20],[181,1],[182,1],[183,21],[184,22],[188,23],[190,24],[189,25],[162,1],[152,26],[69,27],[57,28],[58,29],[56,30],[59,31],[60,32],[61,33],[62,34],[63,35],[64,36],[65,37],[66,38],[67,39],[68,40],[191,19],[192,41],[169,1],[174,1],[193,1],[194,1],[196,1],[197,42],[195,43],[105,1],[107,1],[108,1],[109,44],[110,45],[111,46],[112,47],[113,48],[114,49],[115,1],[116,50],[117,50],[118,51],[119,52],[106,1],[147,1],[120,53],[121,54],[122,55],[148,56],[123,50],[124,57],[125,58],[126,1],[127,1],[128,59],[129,60],[130,1],[131,1],[132,50],[133,61],[134,50],[135,1],[136,1],[137,62],[138,1],[139,62],[140,63],[141,1],[142,48],[143,1],[144,1],[145,64],[146,48],[198,1],[199,50],[200,1],[201,1],[186,65],[185,66],[202,1],[203,1],[204,1],[205,1],[167,1],[166,1],[210,67],[211,68],[213,69],[215,67],[212,67],[214,69],[216,1],[217,70],[206,1],[209,71],[207,1],[218,72],[154,43],[219,1],[208,1],[220,1],[170,73],[221,1],[222,1],[223,1],[224,1],[225,1],[227,74],[226,67],[228,1],[187,1],[230,75],[177,1],[246,1],[244,76],[243,77],[234,78],[235,79],[236,79],[237,78],[238,78],[239,78],[240,80],[233,81],[241,77],[242,82],[232,1],[245,83],[172,84],[247,1],[248,85],[249,86],[231,1],[46,87],[47,88],[55,89],[48,88],[49,88],[83,1],[50,90],[44,1],[51,91],[45,88],[52,91],[41,1],[53,88],[54,91],[229,1],[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[80,92],[42,93],[81,94],[102,95],[78,1],[72,1],[71,96],[77,1],[103,97],[82,94],[75,98],[74,99],[73,100],[70,101],[85,102],[89,102],[84,102],[79,102],[87,102],[86,102],[88,102],[43,1],[76,103],[39,104],[40,105],[38,1]],"semanticDiagnosticsPerFile":[93,90,95,101,100,99,98,97,94,92,91,96,104,150,151,155,157,159,158,156,149,165,160,164,161,163,168,173,171,175,176,178,179,153,180,181,182,183,184,188,190,189,162,152,69,57,58,56,59,60,61,62,63,64,65,66,67,68,191,192,169,174,193,194,196,197,195,105,107,108,109,110,111,112,113,114,115,116,117,118,119,106,147,120,121,122,148,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,198,199,200,201,186,185,202,203,204,205,167,166,210,211,213,215,212,214,216,217,206,209,207,218,154,219,208,220,170,221,222,223,224,225,227,226,228,187,230,177,246,244,243,234,235,236,237,238,239,240,233,241,242,232,245,172,247,248,249,231,46,47,55,48,49,83,50,44,51,45,52,41,53,54,229,7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,37,32,33,34,35,1,36,10,9,80,42,81,102,78,72,71,77,103,82,75,74,73,70,85,89,84,79,87,86,88,43,76,39,40,38]},"version":"4.3.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.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/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/@effection/core/dist-esm/state-machine.d.ts","../node_modules/@effection/core/dist-esm/labels.d.ts","../node_modules/@effection/core/dist-esm/run-loop.d.ts","../node_modules/@effection/core/dist-esm/future.d.ts","../node_modules/@effection/core/dist-esm/task.d.ts","../node_modules/@effection/core/dist-esm/symbol.d.ts","../node_modules/@effection/core/dist-esm/operation.d.ts","../node_modules/@effection/core/dist-esm/effection.d.ts","../node_modules/@effection/core/dist-esm/deprecated.d.ts","../node_modules/@effection/core/dist-esm/error.d.ts","../../../node_modules/event-target-shim/index.d.ts","../../../node_modules/abort-controller/dist/abort-controller.d.ts","../node_modules/@effection/core/dist-esm/abort-signal.d.ts","../node_modules/@effection/core/dist-esm/operations/sleep.d.ts","../node_modules/@effection/core/dist-esm/operations/ensure.d.ts","../node_modules/@effection/core/dist-esm/operations/timeout.d.ts","../node_modules/@effection/core/dist-esm/operations/with-timeout.d.ts","../node_modules/@effection/core/dist-esm/operations/spawn.d.ts","../node_modules/@effection/core/dist-esm/operations/race.d.ts","../node_modules/@effection/core/dist-esm/operations/all.d.ts","../node_modules/@effection/core/dist-esm/operations/label.d.ts","../node_modules/@effection/core/dist-esm/index.d.ts","../../../node_modules/performance-api/index.d.ts","../../globals/node_modules/@effection/core/dist-esm/index.d.ts","../../globals/dist/keyboard-layout.d.ts","../../globals/dist/globals.d.ts","../../globals/dist/index.d.ts","../src/converge.ts","../src/merge-objects.ts","../../../node_modules/no-case/dist/index.d.ts","../../../node_modules/pascal-case/dist/index.d.ts","../../../node_modules/camel-case/dist/index.d.ts","../../../node_modules/capital-case/dist/index.d.ts","../../../node_modules/constant-case/dist/index.d.ts","../../../node_modules/dot-case/dist/index.d.ts","../../../node_modules/header-case/dist/index.d.ts","../../../node_modules/param-case/dist/index.d.ts","../../../node_modules/path-case/dist/index.d.ts","../../../node_modules/sentence-case/dist/index.d.ts","../../../node_modules/snake-case/dist/index.d.ts","../../../node_modules/change-case/dist/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.isequal/index.d.ts","../src/matcher.ts","../src/filter-set.ts","../src/escape-html.ts","../src/match.ts","../src/locator.ts","../src/serialize.ts","../src/interaction.ts","../src/specification.ts","../src/format.ts","../src/errors.ts","../src/matchers/matching.ts","../src/resolvers.ts","../src/constructor.ts","../src/create-interactor.ts","../src/inspector.ts","../../../node_modules/element-is-visible/dist/types/index.d.ts","../src/matchers/including.ts","../src/matchers/and.ts","../src/matchers/or.ts","../src/matchers/not.ts","../src/matchers/some.ts","../src/matchers/every.ts","../../../node_modules/@testing-library/user-event/dist/click.d.ts","../../../node_modules/@testing-library/user-event/dist/type/typeImplementation.d.ts","../../../node_modules/@testing-library/user-event/dist/type/index.d.ts","../../../node_modules/@testing-library/user-event/dist/clear.d.ts","../../../node_modules/@testing-library/user-event/dist/tab.d.ts","../../../node_modules/@testing-library/user-event/dist/hover.d.ts","../../../node_modules/@testing-library/user-event/dist/upload.d.ts","../../../node_modules/@testing-library/user-event/dist/paste.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/types.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/specialCharMap.d.ts","../../../node_modules/@testing-library/user-event/dist/keyboard/index.d.ts","../../../node_modules/@testing-library/user-event/dist/index.d.ts","../src/element/click.ts","../src/index.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/color-convert/conversions.d.ts","../../../node_modules/@types/color-convert/route.d.ts","../../../node_modules/@types/color-convert/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/express-ws/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-function/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/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/overlayscrollbars/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parsimmon/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/reach__router/index.d.ts","../../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/styled-jsx/css.d.ts","../../../node_modules/@types/styled-jsx/server.d.ts","../../../node_modules/@types/styled-jsx/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"a8fe23ae87c3e9d2877032cafeb290f2ebe0c51e216d175a0408b10915ebe9f0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","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":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"3e432cdf56538889e5742d388cdf03d670bfb17f4547dbbb1daf90701ec790d5","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","10b3076ac94d93d107062c0874fcc02305d8b915961cf848df17778535774f39","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","40c6ed5dc58e1c6afa7dcd23b1697bf290cc5b1170c63d0a4dd12f52aa39291c","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"1d4ac8cbd56a1d3b2077d1503afa0a82c608efd7a7afe393e0c8ec525c6e1cd7","a59a7f2780989650e6c080f51cd211874c1523dcf4e293f190ba665134dbafe4","c4d29d7a54e1bfcff2f72c97d27c186b82d3355d5bf7916dfbe4eb3007206ec6","b63cad3134627a017a26a37677f9a929bfaf07591957864e6874c73a876298d4","3e700e258296820196d9de36e3e9e18e6c1ec7e352e44c1f916fc62b62597147","6295f7f8cb94385b886e47198afda9c2eaceb70476790d65faea186c509c5e19",{"version":"647ed5f3db192ac3277195ba641375b4a7538487babffa3fa81b561cef146fe6","affectsGlobalScope":true},"dd93f661cdaff73d6e6f5e4a4448702bdaa8f606d2f43884a94ace2eaa06a62e","7eb3eaa38d2682c28b900e64c02c8059493d3c4591540c7f9645576255592203","78fb2ed58010c6e0bf3d3653fb6b2e6cf7f4021bf90f488733f783f04b947e30","a78ab721871c0b436bff57c43eadf2f641b6d7bff0b8030c9aed6c1711157c2e","2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","c1363a4c8bc329b19c86319f7c3e042e607f98fb245917bddfb7996adf9d720c","166e8ae19a24b87a178c7c2dfc67103f7b9f982a0035848d2dde04d08f99fe9d","882039ce3cf413d2fdff070c407c3cc60ed6e407e6679635915eac38ac5f7ae3","bc44ac34c8e04255427778f52021d41803817fe5cfb677b26aa362040217164e","4f896ed76dcad0cdd75e5b71388d0c1d4f82b2026088fc189fbaf6c5ab98dcaa","c40cebcc27921ad9a00eaa996ae52cf6dd11164319581ab1a5dd6b5b14fe0d47","0ae96407a10a5e4030c393804484b2e383b6e854d0138167797ac2fc56fa4208","d457cb783b11f17b2d42bd72731ea98a237a6941b84c7a69df6371112b8f27f8","293afab2e7d35027c8778697eee3fd055dbe045039f902b34addce6bf4bd19c2","ea54ac159311e33fb74a1cb682ef015c00c1dd97ebc8fb7662907dccce9428c2","86a21c8d5ab7e720b3ad632b87a47991ad0dbace558a33545192502436881422","ea54ac159311e33fb74a1cb682ef015c00c1dd97ebc8fb7662907dccce9428c2","b3b879831b2f344946bf9d4c63f0d04521a781cf0b3b692a9cca5ffac27f8342",{"version":"3a58c8a3bc98980fd5d4c0f46cd62a48913ffe43af5907af5bb11f6960b303cb","affectsGlobalScope":true},"b2d8cbb803ddaa0a2742790e07eab833d8d31420813644492d6c1f5a16bc6e28","f6884a413a9bc1a7b699f29c2d47decd8951ad3f66a17a3c63794fbdbe6a99ea","1ed141f1949d28ef8406d86ea397d47cd8c41f0ed1735e5851ddfbffb8b0c5d2","b4e123af1af6049685c93073a15868b50aebdad666d422edc72fa2b585fa8a37","f86c04a744ebcede96bac376f9a2c90f2bd3c422740d91dda4ca6233199d4977","6ae1bddee5c790439bd992abd063b9b46e0cadd676c2a8562268d1869213ff60","606244fc97a6a74b877f2e924ba7e55b233bc6acb57d7bf40ba84a5be2d9adb0","4a1cabac71036b8a14f5db1b753b579f0c901c7d7b9227e6872dadf6efb104e8","062959a1d825b96639d87be35fe497cbd3f89544bf06fdad577bbfb85fcf604c","4c3672dc8f4e4fdd3d18525b22b31f1b5481f5a415db96550d3ac5163a6c3dd3","f9a69ca445010b91fe08f08c06e0f86d79c0d776905f9bdb828477cb2a1eb7fc","ad7fd0e7ee457d4884b3aaecbcbd2a80b6803407c4ce2540c296170d4c7918ef","a50ef21605f41c6acad6c3ef0307e5311b94963c846ca093c764b80cdb5318d6","74b4035dd26d09a417c44ca23ab5ee69b173f8c2f6b2e47350ab0795cf2d4a17","918f86ee2b19cc38cb8b1a4cf8f223eb228aaa39df3604c42f700fac2f0b3ea1","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"5e099389ceec44681b37d10470755cdc6d9f516851e53c731c6e7e17b39ad86f","d7ea18c891c8c6bed36f29aa61ad4f60557cf6251fde6bc367445a730cfa3695","3cf40d431c974539c29c771b0a27e182c6d122c8ddb7b2b4164bb1505ad46802","977a2800819ce60055a20dc4c76194d14375bf851e670d4ca6bbb637c8c94c40","c1384f8fff926b21218d85e7aa5bcb828dc1c6cf4b5e83960c60a769f94bbce0","c8c7ba25921d089392a1fbfb8d3841580736203210c0e740d43c4b0e58608b9a","94242e24ed59cb36d7e5c0d0e3b44357eb14d85b05fbeafda29c363b4276a80d","99a023f745f490d5558d2a3ebbc08312d63a1b64ebf7eb5ec3d2349f1b6f452f","fa3c58bafa5b7f64d88d4b4736a2ffc7d22bbd5f384f9aa03b1e1a504663168a","2ede475296f5fada41c0ba489a462454be2a91ef46c1556cc03622af94fc5bdc","1a2532558d091ddd7c4b59244db687424e67c7f611008ecd4166c54ea6dd7ce0","00091f0bfd314f3b6ac81603d2b33e024b9ad96f3b3c2d9a2127712b9704677f","50dac85307cb7faace39cc8fc30008388d19eed07744c5cb86762cdb0bbd3e23","0f03213997eaea9398bb2597545f25780ccf3a2508270f9e2b4ef213083e6ede","d22dd4724f77e74f8d3a1967e0a5bd14e8dc9cad11e3a428aed953ded322d8a3","4cab3b63aa7405fc8379fbc15d7f904caeae27efd2a850f621a6e4482f3fbb3e","f154d024f656bbfc1dee0735295c8d5c59744c2c89494d19414c96271ce6f3f2","39b59ff67b14228af357b207f13876fa76baa2240ac51ff362a4714e5ea29222","002a147cd18c767385e8752130b944fc0b6a97fa81c1ebef9935e772138dea1e","c5ef931b63a3665e29ed3c4c6631827f2c6f7e6c8433fcb2f6f03e70903faa20","cbd948872afe617e86cd40716e882c49f693052a57599bb095df261a0cd023f8","06df0767ed7ff25d26daf44fbe870fdc17c168064195f4cd3882b879a3220db3","5663e8efe327c69cb0a788844d007219dac046721d8b8cb4cb9c103ef34da64e","8f1939cb00a19f35f2b2fde4ec19b503ef81dd1bafe7ed674cf2b095c88497ed","5cdfd7ece2de1a4d639ed96c45684a410dc4c7e3bcf703126841f0f8d167e1fc","4e08fdfdc922d56b2026be6753789836ce743337b9addfc8904bf26e7563eef5","9d04022b9ca6bd7fb69c5f8e2e6fe70611041b40a97f758482ee5e45030c630d","dd93153104f5e7d80a6f05acb5f5463fe703fefc11b81b15571391ebd5db185c","64e7425eb52881fed45d9cdc71d08be0659800d8c5bae5b5462c94594c1ab5c2","aade1ce0f51f5999ca6ade38ffb76cd74c47fa582bfc49192e5649f741ee66f2","2b28c235f2ca53ce553676726533995a0b5fe08e9168f78c24570642e3a47ce2","409a7447759f27ae86e270b542bf6c8c50260f7426834e1a5f66ca80fcff30b2","7cb02c56ba198bac88ca0a6131c9385d61002cc48bdb258d55140e6f0cc99977","0fafef9609c651aafc9bef4110d1fcbf2e463149c50e2dba3da5a654ef92c397","38cf19d1ee5a66cd67a7cd1eceaa3c5943559990f15f69851f1e9ec7579609e1","83d29115019159f627040661bf12e6b915a84ddea2c837deac42fad6ec99a6a6","0f004a324d1ca8d95483b5a06b95347e075d5d1975b955e3eaf8855a59cc7b0e","5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","a748205e90921674b09a2485f14558480793e89770521901f3ae7da1c41b860e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","201f92d97704e7e17e1c6e208fea976d75ff7b04235b79057891a33c7330bd77","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","224b63b6ec3ed8fbabc53e119550862acde02075f1f37dd8822255eee310d994","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","1a255ad66d2b50f7b42eca69228b9587878cf06900780ad57a306a933c6eaeb4","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"f24768499dab9a34c0aff9c9e3fbfe5117001bfabba4a1db01a17df086d6a606","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","b4786763dce6903c943cca62bf645820c0e475e1a4c42eb5b412c9660c9146fe","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"2612ddb9dec0fdb148b20bff58d3737fe467e01b8662b4dc5f1304f792a87706","affectsGlobalScope":true},"94a274c882504de552300fc5d6be141820041e9e2c530064ea10a0b76e2f905f",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"afedeaca75706705212ef95206d4612bbb64e2665260a1ada9a2cc8c29ad26f5","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","42287355b5372067743496816f5dfaf877fad5ce60645209b91db6aee8de898f","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","8109b2ef3ab54c7c855d7ec37074aab0574a2c20e9dd4c6d642f65edc51d1e84","ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","9fd84c479ce3dc77858b0c91264db2f4932afc1e5808082811c8d13ca4fa90b2","54edd7f507924e5283efc12b90e95aa8d304c5bcdfdcaec22aa7b0e4d165151a","6d28df3f03f821b016bfd728289d8a99eca6053800d07f76f5d38d181f499208","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","da297c98a5a86092b19aed23ddc61f5d0e64bc2fa83dc606a89d4e54dc6ec5a3",{"version":"c856e68ae3c730c5b59b0a5c0c8e951596ae79da7d29c9a1b1a8257109f3f3cc","affectsGlobalScope":true},"f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[213,214,215],[159,161,162,163,164,165,166,169,213,214,215],[167,168,213,214,215],[160,213,214,215],[53,81,174,213,214,215],[50,53,73,81,177,178,179,213,214,215],[181,213,214,215],[182,183,213,214,215],[182,213,214,215],[53,81,213,214,215],[188,189,213,214,215],[185,186,187,188,213,214,215],[189,213,214,215],[50,53,81,191,192,213,214,215],[53,55,193,196,197,213,214,215],[175,192,193,195,213,214,215],[50,81,199,213,214,215],[51,81,213,214,215],[202,213,214,215],[50,53,55,58,67,73,81,213,214,215],[207,213,214,215],[208,213,214,215],[50,76,81,211,212,214,215],[213,214],[213,215],[50,81,213,214,215],[135,213,214,215],[123,125,126,127,128,129,130,131,132,133,134,135,213,214,215],[123,124,126,127,128,129,130,131,132,133,134,135,213,214,215],[124,125,126,127,128,129,130,131,132,133,134,135,213,214,215],[123,124,125,127,128,129,130,131,132,133,134,135,213,214,215],[123,124,125,126,128,129,130,131,132,133,134,135,213,214,215],[123,124,125,126,127,129,130,131,132,133,134,135,213,214,215],[123,124,125,126,127,128,130,131,132,133,134,135,213,214,215],[123,124,125,126,127,128,129,131,132,133,134,135,213,214,215],[123,124,125,126,127,128,129,130,132,133,134,135,213,214,215],[123,124,125,126,127,128,129,130,131,133,134,135,213,214,215],[123,124,125,126,127,128,129,130,131,132,134,135,213,214,215],[123,124,125,126,127,128,129,130,131,132,133,135,213,214,215],[123,124,125,126,127,128,129,130,131,132,133,134,213,214,215],[176,213,214,215],[53,73,81,213,214,215,220,221],[53,67,81,213,214,215],[50,51,58,67,213,214,215],[42,50,58,213,214,215],[74,213,214,215],[46,51,59,213,214,215],[67,213,214,215],[48,50,58,213,214,215],[50,213,214,215],[50,52,67,73,213,214,215],[51,213,214,215],[58,67,73,213,214,215],[50,51,53,58,67,70,73,213,214,215],[53,67,70,73,213,214,215],[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,213,214,215],[73,213,214,215],[48,50,67,213,214,215],[40,213,214,215],[72,213,214,215],[65,74,76,213,214,215],[58,213,214,215],[64,213,214,215],[50,52,67,73,76,213,214,215],[210,213,214,215],[211,213,214,215],[213,214,215,234],[213,214,215,234,236],[213,214,215,234,237],[213,214,215,237,238,239,240,241],[213,214,215,229,231,232,233],[81,213,214,215],[53,81,194,213,214,215],[213,214,215,234,250,251],[213,214,215,254],[81,213,214,215,258,259,260,261,262,263,264,265,266,267,268],[213,214,215,257,258,267],[213,214,215,258,267],[213,214,215,248,257,258,267],[213,214,215,258],[46,213,214,215,257,267],[213,214,215,257,258,259,260,261,262,263,264,265,266,268],[46,81,213,214,215,253,254,255,256,269],[50,53,55,58,67,70,73,79,81,213,214,215],[213,214,215,272],[50,67,81,213,214,215],[92,213,214,215],[112,213,214,215],[111,213,214,215],[111,112,113,114,115,116,117,118,119,120,121,213,214,215],[114,213,214,215],[116,213,214,215],[88,93,213,214,215],[86,213,214,215],[84,213,214,215],[82,83,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,213,214,215],[88,213,214,215],[83,85,86,87,213,214,215],[83,88,213,214,215],[86,88,213,214,215],[50,81,82,83,85,88,213,214,215],[109,110,137,138,140,141,143,144,145,146,147,148,213,214,215],[103,104,108,213,214,215],[144,149,213,214,215],[170,213,214,215],[122,137,144,213,214,215],[140,144,213,214,215],[110,137,143,144,147,150,151,152,153,154,155,156,157,158,171,213,214,215],[144,148,149,213,214,215],[103,108,142,144,213,214,215],[137,140,144,213,214,215],[137,138,139,141,144,213,214,215],[136,213,214,215],[137,213,214,215],[108,140,144,145,146,213,214,215],[108,122,137,143,144,213,214,215],[103,110,137,138,141,143,213,214,215],[103,106,213,214,215],[106,107,213,214,215]],"referencedMap":[[162,1],[159,1],[164,1],[170,2],[169,3],[168,1],[167,1],[166,1],[163,1],[161,4],[160,1],[165,1],[173,1],[175,5],[176,1],[180,6],[182,7],[184,8],[183,9],[181,1],[174,10],[190,11],[185,1],[189,12],[186,13],[188,1],[193,14],[198,15],[196,16],[200,17],[201,18],[203,19],[204,1],[178,1],[205,20],[206,1],[207,1],[208,21],[209,22],[213,23],[215,24],[214,25],[187,1],[177,26],[136,27],[124,28],[125,29],[123,30],[126,31],[127,32],[128,33],[129,34],[130,35],[131,36],[132,37],[133,38],[134,39],[135,40],[216,19],[217,41],[194,1],[199,1],[218,1],[219,1],[221,1],[222,42],[220,43],[38,1],[40,1],[41,1],[42,44],[43,45],[44,46],[45,47],[46,48],[47,49],[48,1],[49,50],[50,50],[51,51],[52,52],[39,1],[80,1],[53,53],[54,54],[55,55],[81,56],[56,50],[57,57],[58,58],[59,1],[60,1],[61,59],[62,60],[63,1],[64,1],[65,50],[66,61],[67,50],[68,1],[69,1],[70,62],[71,1],[72,62],[73,63],[74,1],[75,48],[76,1],[77,1],[78,64],[79,48],[223,1],[224,50],[225,1],[226,1],[211,65],[210,66],[227,1],[228,1],[229,1],[230,1],[192,1],[191,1],[235,67],[236,68],[238,69],[240,67],[237,67],[239,69],[241,1],[242,70],[231,1],[234,71],[232,1],[243,72],[179,43],[244,1],[233,1],[245,1],[195,73],[246,1],[247,1],[248,1],[249,1],[250,1],[252,74],[251,67],[253,1],[212,1],[255,75],[202,1],[271,1],[269,76],[268,77],[259,78],[260,79],[261,79],[262,78],[263,78],[264,78],[265,80],[258,81],[266,77],[267,82],[257,1],[270,83],[197,84],[272,1],[273,85],[274,86],[93,87],[256,1],[113,88],[114,89],[122,90],[115,89],[116,89],[152,1],[92,1],[117,91],[111,1],[118,92],[112,89],[119,92],[104,1],[120,89],[121,92],[254,1],[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[94,93],[90,1],[89,94],[91,94],[85,95],[103,96],[83,97],[88,98],[101,97],[96,97],[102,99],[100,97],[95,97],[99,100],[97,97],[98,97],[84,1],[82,26],[87,1],[86,101],[149,102],[109,103],[150,104],[171,105],[146,1],[139,1],[138,106],[145,107],[172,108],[151,109],[143,110],[141,111],[140,112],[137,113],[154,114],[158,114],[153,114],[147,114],[156,114],[155,114],[157,114],[110,1],[148,115],[142,116],[144,117],[107,118],[108,119],[106,1],[105,96]],"exportedModulesMap":[[162,1],[159,1],[164,1],[170,2],[169,3],[168,1],[167,1],[166,1],[163,1],[161,4],[160,1],[165,1],[173,1],[175,5],[176,1],[180,6],[182,7],[184,8],[183,9],[181,1],[174,10],[190,11],[185,1],[189,12],[186,13],[188,1],[193,14],[198,15],[196,16],[200,17],[201,18],[203,19],[204,1],[178,1],[205,20],[206,1],[207,1],[208,21],[209,22],[213,23],[215,24],[214,25],[187,1],[177,26],[136,27],[124,28],[125,29],[123,30],[126,31],[127,32],[128,33],[129,34],[130,35],[131,36],[132,37],[133,38],[134,39],[135,40],[216,19],[217,41],[194,1],[199,1],[218,1],[219,1],[221,1],[222,42],[220,43],[38,1],[40,1],[41,1],[42,44],[43,45],[44,46],[45,47],[46,48],[47,49],[48,1],[49,50],[50,50],[51,51],[52,52],[39,1],[80,1],[53,53],[54,54],[55,55],[81,56],[56,50],[57,57],[58,58],[59,1],[60,1],[61,59],[62,60],[63,1],[64,1],[65,50],[66,61],[67,50],[68,1],[69,1],[70,62],[71,1],[72,62],[73,63],[74,1],[75,48],[76,1],[77,1],[78,64],[79,48],[223,1],[224,50],[225,1],[226,1],[211,65],[210,66],[227,1],[228,1],[229,1],[230,1],[192,1],[191,1],[235,67],[236,68],[238,69],[240,67],[237,67],[239,69],[241,1],[242,70],[231,1],[234,71],[232,1],[243,72],[179,43],[244,1],[233,1],[245,1],[195,73],[246,1],[247,1],[248,1],[249,1],[250,1],[252,74],[251,67],[253,1],[212,1],[255,75],[202,1],[271,1],[269,76],[268,77],[259,78],[260,79],[261,79],[262,78],[263,78],[264,78],[265,80],[258,81],[266,77],[267,82],[257,1],[270,83],[197,84],[272,1],[273,85],[274,86],[93,87],[256,1],[113,88],[114,89],[122,90],[115,89],[116,89],[152,1],[92,1],[117,91],[111,1],[118,92],[112,89],[119,92],[104,1],[120,89],[121,92],[254,1],[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[94,93],[90,1],[89,94],[91,94],[85,95],[103,96],[83,97],[88,98],[101,97],[96,97],[102,99],[100,97],[95,97],[99,100],[97,97],[98,97],[84,1],[82,26],[87,1],[86,101],[149,102],[109,103],[150,104],[171,105],[146,1],[139,1],[138,106],[145,107],[172,108],[151,109],[143,110],[141,111],[140,112],[137,113],[154,114],[158,114],[153,114],[147,114],[156,114],[155,114],[157,114],[110,1],[148,115],[142,116],[144,117],[107,118],[108,119],[106,1],[105,96]],"semanticDiagnosticsPerFile":[162,159,164,170,169,168,167,166,163,161,160,165,173,175,176,180,182,184,183,181,174,190,185,189,186,188,193,198,196,200,201,203,204,178,205,206,207,208,209,213,215,214,187,177,136,124,125,123,126,127,128,129,130,131,132,133,134,135,216,217,194,199,218,219,221,222,220,38,40,41,42,43,44,45,46,47,48,49,50,51,52,39,80,53,54,55,81,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,223,224,225,226,211,210,227,228,229,230,192,191,235,236,238,240,237,239,241,242,231,234,232,243,179,244,233,245,195,246,247,248,249,250,252,251,253,212,255,202,271,269,268,259,260,261,262,263,264,265,258,266,267,257,270,197,272,273,274,93,256,113,114,122,115,116,152,92,117,111,118,112,119,104,120,121,254,7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,37,32,33,34,35,1,36,10,9,94,90,89,91,85,103,83,88,101,96,102,100,95,99,97,98,84,82,87,86,149,109,150,171,146,139,138,145,172,151,143,141,140,137,154,158,153,147,156,155,157,110,148,142,144,107,108,106,105]},"version":"4.3.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interactors/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-effection.0",
|
|
4
4
|
"description": "Composable page objects for components",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"browser": "dist/esm/index.js",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"prepack:commonjs": "tsc --project ./tsconfig.build.json --outdir dist/cjs --module commonjs"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@
|
|
36
|
+
"@effection/core": "2.2.0",
|
|
37
|
+
"@interactors/globals": "1.0.0-rc1.1",
|
|
37
38
|
"@testing-library/dom": "^8.5.0",
|
|
38
39
|
"@testing-library/user-event": "^13.2.1",
|
|
39
40
|
"change-case": "^4.1.1",
|
package/src/constructor.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
2
|
|
|
3
|
-
import { globals } from '@interactors/globals';
|
|
4
3
|
import { converge } from './converge';
|
|
5
4
|
import { MergeObjects } from './merge-objects';
|
|
6
5
|
import {
|
|
@@ -19,98 +18,14 @@ import {
|
|
|
19
18
|
import { FilterSet } from './filter-set';
|
|
20
19
|
import { Locator } from './locator';
|
|
21
20
|
import { MatchFilter, applyFilter } from './match';
|
|
22
|
-
import {
|
|
21
|
+
import { formatDescription } from './format';
|
|
23
22
|
import { FilterNotMatchingError } from './errors';
|
|
24
|
-
import {
|
|
25
|
-
import { Match } from './match';
|
|
26
|
-
import { NoSuchElementError, NotAbsentError, AmbiguousElementError } from './errors';
|
|
23
|
+
import { createInteraction, AssertionInteraction, ActionInteraction } from './interaction';
|
|
27
24
|
import { isMatcher } from './matcher';
|
|
28
25
|
import { matching } from './matchers/matching';
|
|
26
|
+
import { hasMatchMatching, resolveEmpty, resolveFirst, resolveUnique, unsafeSyncResolveParent, unsafeSyncResolveUnique } from './resolvers';
|
|
29
27
|
|
|
30
28
|
const defaultLocator: FilterDefinition<string, Element> = (element) => element.textContent || "";
|
|
31
|
-
const defaultSelector = 'div';
|
|
32
|
-
|
|
33
|
-
export function findElements<E extends Element>(parentElement: Element, interactor: InteractorOptions<any, any, any>): E[] {
|
|
34
|
-
if(typeof(interactor.specification.selector) === 'function') {
|
|
35
|
-
return interactor.specification.selector(parentElement);
|
|
36
|
-
} else if(interactor.specification.selector === ':root') {
|
|
37
|
-
// this is a bit of a hack, because otherwise there isn't a good way of selecting the root element
|
|
38
|
-
return [parentElement.ownerDocument.querySelector(':root') as E];
|
|
39
|
-
} else {
|
|
40
|
-
return Array.from(parentElement.querySelectorAll(interactor.specification.selector || defaultSelector));
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
function findMatches(parentElement: Element, interactor: InteractorOptions<any, any, any>): Match<Element, any>[] {
|
|
45
|
-
if (!interactor.name) {
|
|
46
|
-
throw new Error('One of your interactors was created without a name. Please provide a label for your interactor:\n\tHTML.extend(\'my interactor\') || createInteractor(\'my interactor\')');
|
|
47
|
-
}
|
|
48
|
-
return findElements(parentElement, interactor).map((e) => new Match(e, interactor.filter, interactor.locator));
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
function findMatchesMatching(parentElement: Element, interactor: InteractorOptions<any, any, any>): Match<Element, any>[] {
|
|
52
|
-
return findMatches(parentElement, interactor).filter((m) => m.matches);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function findMatchesNonEmpty(parentElement: Element, interactor: InteractorOptions<any, any, any>): Match<Element, any>[] {
|
|
56
|
-
let matches = findMatches(parentElement, interactor);
|
|
57
|
-
let matching = matches.filter((m) => m.matches);
|
|
58
|
-
if(matching.length > 0) {
|
|
59
|
-
return matching;
|
|
60
|
-
} else if(matches.length === 0) {
|
|
61
|
-
throw new NoSuchElementError(`did not find ${description(interactor)}`);
|
|
62
|
-
} else {
|
|
63
|
-
let table = formatTable({
|
|
64
|
-
headers: interactor.locator ? [interactor.name, ...interactor.filter.asTableHeader()] : interactor.filter.asTableHeader(),
|
|
65
|
-
rows: matches.slice().sort((a, b) => b.sortWeight - a.sortWeight).map((m) => m.asTableRow()),
|
|
66
|
-
});
|
|
67
|
-
throw new NoSuchElementError(`did not find ${description(interactor)}, did you mean one of:\n\n${table}`);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
// Given a parent element, and an interactor, find exactly one matching element
|
|
72
|
-
// and return it. If no elements match, raise an error. If more than one
|
|
73
|
-
// element matches, raise an error.
|
|
74
|
-
export function resolveUnique(parentElement: Element, interactor: InteractorOptions<any, any, any>): Element {
|
|
75
|
-
let matching = findMatchesNonEmpty(parentElement, interactor);
|
|
76
|
-
|
|
77
|
-
if(matching.length === 1) {
|
|
78
|
-
return matching[0].element;
|
|
79
|
-
} else {
|
|
80
|
-
let alternatives = matching.map((m) => '- ' + m.elementDescription());
|
|
81
|
-
throw new AmbiguousElementError(`${description(interactor)} matches multiple elements:\n\n${alternatives.join('\n')}`);
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// Given a parent element, and an interactor, find all matching elements and
|
|
86
|
-
// return them. If no elements match, raise an error.
|
|
87
|
-
export function resolveNonEmpty(parentElement: Element, interactor: InteractorOptions<any, any, any>): Element[] {
|
|
88
|
-
return findMatchesNonEmpty(parentElement, interactor).map(m => m.element);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
// Given a parent element, and an interactor, check if there are any matching
|
|
92
|
-
// elements, and throw an error if there are. Otherwise return undefined.
|
|
93
|
-
export function resolveEmpty(parentElement: Element, interactor: InteractorOptions<any, any, any>): void {
|
|
94
|
-
let matching = findMatchesMatching(parentElement, interactor);
|
|
95
|
-
|
|
96
|
-
if(matching.length !== 0) {
|
|
97
|
-
let alternatives = matching.map((m) => '- ' + m.elementDescription());
|
|
98
|
-
throw new NotAbsentError(`${description(interactor)} exists but should not:\n\n${alternatives.join('\n')}`);
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
function ownDescription(options: InteractorOptions<any, any, any>): string {
|
|
103
|
-
if(options.locator) {
|
|
104
|
-
return `${options.name} ${options.locator.description} ${options.filter.description}`.trim();
|
|
105
|
-
} else {
|
|
106
|
-
return `${options.name} ${options.filter.description}`.trim();
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
function description(options: InteractorOptions<any, any, any>): string {
|
|
111
|
-
let ancestorsAndSelf: InteractorOptions<any, any, any>[] = options.ancestors.concat(options);
|
|
112
|
-
return ancestorsAndSelf.reverse().map(ownDescription).join(' within ');
|
|
113
|
-
}
|
|
114
29
|
|
|
115
30
|
/**
|
|
116
31
|
* Removes any default values for a filter from the lookup if that filter is present in the
|
|
@@ -131,51 +46,53 @@ function getLookupFilterForAssertion<E extends Element, F extends Filters<E>>(fi
|
|
|
131
46
|
return lookupFilter;
|
|
132
47
|
}
|
|
133
48
|
|
|
134
|
-
export function
|
|
135
|
-
return options.ancestors.reduce(resolveUnique, globals.document.documentElement);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
export function unsafeSyncResolveUnique<E extends Element>(options: InteractorOptions<E, any, any>): E {
|
|
139
|
-
return resolveUnique(unsafeSyncResolveParent(options), options) as E;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
export function instantiateInteractor<E extends Element, F extends Filters<E>, A extends Actions<E>>(
|
|
49
|
+
export function instantiateInteractor<E extends Element, F extends Filters<E>, A extends Actions<E, Interactor<E, FilterParams<E, F>>>>(
|
|
143
50
|
options: InteractorOptions<E, F, A>,
|
|
144
51
|
resolver: (options: InteractorOptions<E, F, A>) => E
|
|
145
|
-
): Interactor<E, FilterParams<E, F>> & ActionMethods<E, A
|
|
52
|
+
): Interactor<E, FilterParams<E, F>> & FilterMethods<E, F> & ActionMethods<E, A, Interactor<E, FilterParams<E, F>>> {
|
|
146
53
|
let interactor = {
|
|
147
54
|
options,
|
|
148
55
|
|
|
149
56
|
get description(): string {
|
|
150
|
-
return
|
|
57
|
+
return formatDescription(options);
|
|
151
58
|
},
|
|
152
59
|
|
|
153
|
-
perform<T>(fn: (element: E) => T):
|
|
154
|
-
return
|
|
60
|
+
perform<T>(fn: (element: E) => T): ActionInteraction<E, T> {
|
|
61
|
+
return createInteraction('action', {
|
|
62
|
+
name: "perform",
|
|
63
|
+
interactor,
|
|
64
|
+
description: `run perform on ${formatDescription(options)}`,
|
|
65
|
+
run: (interactor) => converge(() => fn(resolver(interactor.options))),
|
|
66
|
+
});
|
|
155
67
|
},
|
|
156
68
|
|
|
157
|
-
assert(fn: (element: E) => void):
|
|
158
|
-
return
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
}
|
|
69
|
+
assert(fn: (element: E) => void): AssertionInteraction<E> {
|
|
70
|
+
return createInteraction('assertion', {
|
|
71
|
+
name: "assert",
|
|
72
|
+
interactor,
|
|
73
|
+
description: `${formatDescription(options)} asserts`,
|
|
74
|
+
run: (interactor) => converge(() => { fn(resolver(interactor.options)) }),
|
|
162
75
|
});
|
|
163
76
|
},
|
|
164
77
|
|
|
165
|
-
has(filters: FilterParams<E, F>):
|
|
78
|
+
has(filters: FilterParams<E, F>): AssertionInteraction<E> {
|
|
166
79
|
return interactor.is(filters);
|
|
167
80
|
},
|
|
168
81
|
|
|
169
|
-
is(filters: FilterParams<E, F>):
|
|
82
|
+
is(filters: FilterParams<E, F>): AssertionInteraction<E> {
|
|
170
83
|
let filter = new FilterSet(options.specification, filters);
|
|
171
|
-
return
|
|
172
|
-
|
|
173
|
-
|
|
84
|
+
return createInteraction('assertion', {
|
|
85
|
+
name: "is",
|
|
86
|
+
interactor,
|
|
87
|
+
filters,
|
|
88
|
+
description: `${formatDescription(options)} matches filters: ${filter.description}`,
|
|
89
|
+
run: (interactor) => converge(() => {
|
|
90
|
+
let element = resolver({...interactor.options, filter: getLookupFilterForAssertion(interactor.options.filter, filters) });
|
|
174
91
|
let match = new MatchFilter(element, filter);
|
|
175
92
|
if (!match.matches) {
|
|
176
|
-
throw new FilterNotMatchingError(`${
|
|
93
|
+
throw new FilterNotMatchingError(`${formatDescription(options)} does not match filters:\n\n${match.formatAsExpectations()}`);
|
|
177
94
|
}
|
|
178
|
-
})
|
|
95
|
+
}),
|
|
179
96
|
});
|
|
180
97
|
},
|
|
181
98
|
|
|
@@ -186,24 +103,26 @@ export function instantiateInteractor<E extends Element, F extends Filters<E>, A
|
|
|
186
103
|
}, resolver) as unknown as T;
|
|
187
104
|
},
|
|
188
105
|
|
|
189
|
-
exists():
|
|
190
|
-
return
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
106
|
+
exists(): AssertionInteraction<E> & FilterObject<boolean, Element> {
|
|
107
|
+
return createInteraction('assertion', {
|
|
108
|
+
name: 'exists',
|
|
109
|
+
interactor,
|
|
110
|
+
description: `${formatDescription(options)} exists`,
|
|
111
|
+
run: (interactor) => converge(() => {
|
|
112
|
+
resolveFirst(unsafeSyncResolveParent(interactor.options), options);
|
|
113
|
+
}),
|
|
114
|
+
}, (element) => hasMatchMatching(element, options));
|
|
197
115
|
},
|
|
198
116
|
|
|
199
|
-
absent():
|
|
200
|
-
return
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
117
|
+
absent(): AssertionInteraction<E> & FilterObject<boolean, Element> {
|
|
118
|
+
return createInteraction('assertion', {
|
|
119
|
+
name: 'absent',
|
|
120
|
+
interactor,
|
|
121
|
+
description: `${formatDescription(options)} does not exist`,
|
|
122
|
+
run: (interactor) => converge(() => {
|
|
123
|
+
resolveEmpty(unsafeSyncResolveParent(interactor.options), options);
|
|
124
|
+
}),
|
|
125
|
+
}, (element) => !hasMatchMatching(element, options));
|
|
207
126
|
},
|
|
208
127
|
|
|
209
128
|
apply(parentElement: Element): string {
|
|
@@ -220,10 +139,13 @@ export function instantiateInteractor<E extends Element, F extends Filters<E>, A
|
|
|
220
139
|
if (args.length) {
|
|
221
140
|
actionDescription += ` with ` + args.map((a) => JSON.stringify(a)).join(', ');
|
|
222
141
|
}
|
|
223
|
-
return
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
142
|
+
return createInteraction('action', {
|
|
143
|
+
name: actionName,
|
|
144
|
+
interactor,
|
|
145
|
+
args,
|
|
146
|
+
description: `${actionDescription} on ${formatDescription(options)}`,
|
|
147
|
+
run: (interactor) => action(interactor as Interactor<E, FilterParams<E, F>> & FilterMethods<E, F> & ActionMethods<E, A, Interactor<E, FilterParams<E, F>>>, ...args)
|
|
148
|
+
});
|
|
227
149
|
},
|
|
228
150
|
configurable: true,
|
|
229
151
|
writable: true,
|
|
@@ -236,8 +158,11 @@ export function instantiateInteractor<E extends Element, F extends Filters<E>, A
|
|
|
236
158
|
if (!interactor.hasOwnProperty(filterName)) {
|
|
237
159
|
Object.defineProperty(interactor, filterName, {
|
|
238
160
|
value: function() {
|
|
239
|
-
return
|
|
240
|
-
|
|
161
|
+
return createInteraction('assertion', {
|
|
162
|
+
name: filterName,
|
|
163
|
+
interactor,
|
|
164
|
+
description: `${filterName} of ${formatDescription(options)}`,
|
|
165
|
+
run: (interactor) => converge(() => applyFilter(filter, resolver(interactor.options))),
|
|
241
166
|
}, (parentElement) => {
|
|
242
167
|
let element = [...options.ancestors, options].reduce(resolveUnique, parentElement);
|
|
243
168
|
return applyFilter(filter, element);
|
|
@@ -250,10 +175,10 @@ export function instantiateInteractor<E extends Element, F extends Filters<E>, A
|
|
|
250
175
|
}
|
|
251
176
|
}
|
|
252
177
|
|
|
253
|
-
return interactor as Interactor<E, FilterParams<E, F>> & ActionMethods<E, A
|
|
178
|
+
return interactor as Interactor<E, FilterParams<E, F>> & FilterMethods<E, F> & ActionMethods<E, A, Interactor<E, FilterParams<E, F>>>;
|
|
254
179
|
}
|
|
255
180
|
|
|
256
|
-
export function createConstructor<E extends Element, FP extends FilterParams<any, any>, FM extends FilterMethods<any, any>, AM extends ActionMethods<any, any>>(
|
|
181
|
+
export function createConstructor<E extends Element, FP extends FilterParams<any, any>, FM extends FilterMethods<any, any>, AM extends ActionMethods<any, any, any>>(
|
|
257
182
|
name: string,
|
|
258
183
|
specification: InteractorSpecification<E, any, any>,
|
|
259
184
|
): InteractorConstructor<E, FP, FM, AM> {
|
|
@@ -279,7 +204,7 @@ export function createConstructor<E extends Element, FP extends FilterParams<any
|
|
|
279
204
|
filters: <FR extends Filters<E>>(filters: FR): InteractorConstructor<E, MergeObjects<FP, FilterParams<E, FR>>, MergeObjects<FM, FilterMethods<E, FR>>, AM> => {
|
|
280
205
|
return createConstructor(name, { ...specification, filters: { ...specification.filters, ...filters } });
|
|
281
206
|
},
|
|
282
|
-
actions: <AR extends Actions<E>>(actions: AR): InteractorConstructor<E, FP, FM, MergeObjects<AM, ActionMethods<E, AR>>> => {
|
|
207
|
+
actions: <I extends Interactor<E, FP> & FM & AM, AR extends Actions<E, I>>(actions: AR): InteractorConstructor<E, FP, FM, MergeObjects<AM, ActionMethods<E, AR, I>>> => {
|
|
283
208
|
return createConstructor(name, { ...specification, actions: Object.assign({}, specification.actions, actions) });
|
|
284
209
|
},
|
|
285
210
|
extend: <ER extends Element = E>(newName: string): InteractorConstructor<ER, FP, FM, AM> => {
|
package/src/converge.ts
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
+
import { Operation, sleep } from '@effection/core';
|
|
1
2
|
import { performance } from 'performance-api';
|
|
2
3
|
import { globals } from '@interactors/globals'
|
|
3
4
|
|
|
4
|
-
function
|
|
5
|
-
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export async function converge<T>(fn: () => T): Promise<T> {
|
|
5
|
+
export function* converge<T>(fn: () => T): Operation<T> {
|
|
9
6
|
let startTime = performance.now();
|
|
10
7
|
while(true) {
|
|
11
8
|
try {
|
|
@@ -15,7 +12,7 @@ export async function converge<T>(fn: () => T): Promise<T> {
|
|
|
15
12
|
if(diff > globals.interactorTimeout) {
|
|
16
13
|
throw e;
|
|
17
14
|
} else {
|
|
18
|
-
|
|
15
|
+
yield sleep(1);
|
|
19
16
|
}
|
|
20
17
|
}
|
|
21
18
|
}
|