capydash 0.1.1 → 0.1.2
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.
- checksums.yaml +4 -4
- data/dashboard/node_modules/@babel/code-frame/LICENSE +22 -0
- data/dashboard/node_modules/@babel/code-frame/README.md +19 -0
- data/dashboard/node_modules/@babel/code-frame/lib/index.js +216 -0
- data/dashboard/node_modules/@babel/code-frame/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/code-frame/package.json +31 -0
- data/dashboard/node_modules/@babel/compat-data/LICENSE +22 -0
- data/dashboard/node_modules/@babel/compat-data/README.md +19 -0
- data/dashboard/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2106 -0
- data/dashboard/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
- data/dashboard/node_modules/@babel/compat-data/data/native-modules.json +18 -0
- data/dashboard/node_modules/@babel/compat-data/data/overlapping-plugins.json +35 -0
- data/dashboard/node_modules/@babel/compat-data/data/plugin-bugfixes.json +203 -0
- data/dashboard/node_modules/@babel/compat-data/data/plugins.json +838 -0
- data/dashboard/node_modules/@babel/compat-data/native-modules.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/overlapping-plugins.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/package.json +40 -0
- data/dashboard/node_modules/@babel/compat-data/plugin-bugfixes.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/plugins.js +2 -0
- data/dashboard/node_modules/@babel/core/LICENSE +22 -0
- data/dashboard/node_modules/@babel/core/README.md +19 -0
- data/dashboard/node_modules/@babel/core/lib/config/cache-contexts.js +5 -0
- data/dashboard/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/caching.js +261 -0
- data/dashboard/node_modules/@babel/core/lib/config/caching.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-chain.js +469 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/configuration.js +290 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index.js +78 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/module-types.js +211 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/package.js +61 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/plugins.js +230 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/types.js +5 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/utils.js +36 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/full.js +312 -0
- data/dashboard/node_modules/@babel/core/lib/config/full.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/index.js +93 -0
- data/dashboard/node_modules/@babel/core/lib/config/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/item.js +67 -0
- data/dashboard/node_modules/@babel/core/lib/config/item.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/partial.js +158 -0
- data/dashboard/node_modules/@babel/core/lib/config/partial.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
- data/dashboard/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/plugin.js +33 -0
- data/dashboard/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/printer.js +113 -0
- data/dashboard/node_modules/@babel/core/lib/config/printer.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/util.js +31 -0
- data/dashboard/node_modules/@babel/core/lib/config/util.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/options.js +189 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/errors/config-error.js +18 -0
- data/dashboard/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
- data/dashboard/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/index.js +233 -0
- data/dashboard/node_modules/@babel/core/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/parse.js +47 -0
- data/dashboard/node_modules/@babel/core/lib/parse.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/parser/index.js +79 -0
- data/dashboard/node_modules/@babel/core/lib/parser/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
- data/dashboard/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
- data/dashboard/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform-ast.js +50 -0
- data/dashboard/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file.js +40 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform.js +49 -0
- data/dashboard/node_modules/@babel/core/lib/transform.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +6 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/file.js +219 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/index.js +92 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/util/clone-deep.js +56 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1042 -0
- data/dashboard/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
- data/dashboard/node_modules/@babel/core/package.json +82 -0
- data/dashboard/node_modules/@babel/core/src/config/files/index-browser.ts +115 -0
- data/dashboard/node_modules/@babel/core/src/config/files/index.ts +29 -0
- data/dashboard/node_modules/@babel/core/src/config/resolve-targets-browser.ts +42 -0
- data/dashboard/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
- data/dashboard/node_modules/@babel/core/src/transform-file-browser.ts +33 -0
- data/dashboard/node_modules/@babel/core/src/transform-file.ts +55 -0
- data/dashboard/node_modules/@babel/generator/LICENSE +22 -0
- data/dashboard/node_modules/@babel/generator/README.md +19 -0
- data/dashboard/node_modules/@babel/generator/lib/buffer.js +317 -0
- data/dashboard/node_modules/@babel/generator/lib/buffer.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/base.js +87 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/classes.js +212 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/deprecated.js +28 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/deprecated.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/expressions.js +300 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/flow.js +660 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/index.js +128 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/jsx.js +126 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/methods.js +198 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/modules.js +287 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/statements.js +279 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/template-literals.js +40 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/types.js +238 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/typescript.js +724 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/index.js +112 -0
- data/dashboard/node_modules/@babel/generator/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/node/index.js +122 -0
- data/dashboard/node_modules/@babel/generator/lib/node/index.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/node/parentheses.js +262 -0
- data/dashboard/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
- data/dashboard/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/printer.js +781 -0
- data/dashboard/node_modules/@babel/generator/lib/printer.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/source-map.js +85 -0
- data/dashboard/node_modules/@babel/generator/lib/source-map.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/token-map.js +191 -0
- data/dashboard/node_modules/@babel/generator/lib/token-map.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/package.json +39 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/index.js +232 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/package.json +43 -0
- data/dashboard/node_modules/@babel/helper-globals/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-globals/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-globals/data/browser-upper.json +911 -0
- data/dashboard/node_modules/@babel/helper-globals/data/builtin-lower.json +15 -0
- data/dashboard/node_modules/@babel/helper-globals/data/builtin-upper.json +51 -0
- data/dashboard/node_modules/@babel/helper-globals/package.json +32 -0
- data/dashboard/node_modules/@babel/helper-module-imports/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-module-imports/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-injector.js +304 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/package.json +28 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/index.js +398 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +364 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +360 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +22 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/package.json +32 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/lib/index.js +76 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/package.json +24 -0
- data/dashboard/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-string-parser/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
- data/dashboard/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-string-parser/package.json +31 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/package.json +31 -0
- data/dashboard/node_modules/@babel/helper-validator-option/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-validator-option/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-option/package.json +27 -0
- data/dashboard/node_modules/@babel/helpers/LICENSE +23 -0
- data/dashboard/node_modules/@babel/helpers/README.md +19 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/AwaitValue.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/AwaitValue.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js +31 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js +236 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +72 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js +38 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCallCheck.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCallCheck.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js +17 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createClass.js +26 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createClass.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js +64 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js +29 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createSuper.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createSuper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/decorate.js +350 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/decorate.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defaults.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defaults.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js +27 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineProperty.js +23 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineProperty.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/extends.js +22 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/extends.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/get.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/get.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/identity.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/identity.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inherits.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inherits.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js +17 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/instanceof.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/instanceof.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +44 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArray.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread.js +24 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js +24 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js +19 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js +17 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/readOnlyError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/readOnlyError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regenerator.js +188 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js +49 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js +40 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js +28 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +98 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js +32 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/set.js +48 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/set.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/slicedToArray.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/slicedToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropBase.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropBase.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropGet.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropSet.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tdz.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tdz.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalRef.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalRef.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js +9 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toArray.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toSetter.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toSetter.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js +19 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/usingCtx.js +103 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js +97 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js +38 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +72 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers-generated.js +1442 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/index.js +126 -0
- data/dashboard/node_modules/@babel/helpers/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/package.json +31 -0
- data/dashboard/node_modules/@babel/parser/CHANGELOG.md +1073 -0
- data/dashboard/node_modules/@babel/parser/LICENSE +19 -0
- data/dashboard/node_modules/@babel/parser/README.md +19 -0
- data/dashboard/node_modules/@babel/parser/bin/babel-parser.js +15 -0
- data/dashboard/node_modules/@babel/parser/lib/index.js +14595 -0
- data/dashboard/node_modules/@babel/parser/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/parser/package.json +50 -0
- data/dashboard/node_modules/@babel/parser/typings/babel-parser.d.ts +239 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE +22 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/README.md +19 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js +61 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/package.json +35 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE +22 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/README.md +19 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js +51 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/package.json +35 -0
- data/dashboard/node_modules/@babel/template/LICENSE +22 -0
- data/dashboard/node_modules/@babel/template/README.md +19 -0
- data/dashboard/node_modules/@babel/template/lib/builder.js +69 -0
- data/dashboard/node_modules/@babel/template/lib/builder.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/formatters.js +61 -0
- data/dashboard/node_modules/@babel/template/lib/formatters.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/index.js +23 -0
- data/dashboard/node_modules/@babel/template/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/literal.js +69 -0
- data/dashboard/node_modules/@babel/template/lib/literal.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/options.js +73 -0
- data/dashboard/node_modules/@babel/template/lib/options.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/parse.js +163 -0
- data/dashboard/node_modules/@babel/template/lib/parse.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/populate.js +138 -0
- data/dashboard/node_modules/@babel/template/lib/populate.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/string.js +20 -0
- data/dashboard/node_modules/@babel/template/lib/string.js.map +1 -0
- data/dashboard/node_modules/@babel/template/package.json +27 -0
- data/dashboard/node_modules/@babel/traverse/LICENSE +22 -0
- data/dashboard/node_modules/@babel/traverse/README.md +19 -0
- data/dashboard/node_modules/@babel/traverse/lib/cache.js +38 -0
- data/dashboard/node_modules/@babel/traverse/lib/cache.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/context.js +119 -0
- data/dashboard/node_modules/@babel/traverse/lib/context.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/hub.js +19 -0
- data/dashboard/node_modules/@babel/traverse/lib/hub.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/index.js +87 -0
- data/dashboard/node_modules/@babel/traverse/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/ancestry.js +139 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/comments.js +52 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/context.js +242 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/conversion.js +612 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/evaluation.js +368 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/family.js +346 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/index.js +293 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/introspection.js +398 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +163 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/modification.js +231 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/removal.js +70 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/replacement.js +263 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/binding.js +84 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/index.js +1039 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/lib/renamer.js +131 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/traverse-node.js +138 -0
- data/dashboard/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/types.js +3 -0
- data/dashboard/node_modules/@babel/traverse/lib/types.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/visitors.js +258 -0
- data/dashboard/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/package.json +35 -0
- data/dashboard/node_modules/@babel/types/LICENSE +22 -0
- data/dashboard/node_modules/@babel/types/README.md +19 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/generated/index.js +1251 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
- data/dashboard/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/index.js +29 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/lowercase.js +2896 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/uppercase.js +274 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/productions.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
- data/dashboard/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
- data/dashboard/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/validateNode.js +21 -0
- data/dashboard/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/clone.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneNode.js +107 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComment.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComments.js +22 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/constants/generated/index.js +60 -0
- data/dashboard/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/constants/index.js +33 -0
- data/dashboard/node_modules/@babel/types/lib/constants/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +66 -0
- data/dashboard/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/valueToNode.js +89 -0
- data/dashboard/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/core.js +1659 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/experimental.js +126 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/flow.js +495 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/index.js +100 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/jsx.js +157 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/misc.js +33 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/typescript.js +528 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/utils.js +292 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/index-legacy.d.ts +2797 -0
- data/dashboard/node_modules/@babel/types/lib/index.d.ts +3308 -0
- data/dashboard/node_modules/@babel/types/lib/index.js +584 -0
- data/dashboard/node_modules/@babel/types/lib/index.js.flow +2650 -0
- data/dashboard/node_modules/@babel/types/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +66 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +48 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +102 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getFunctionName.js +63 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverseFast.js +40 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
- data/dashboard/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/inherit.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
- data/dashboard/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/generated/index.js +2797 -0
- data/dashboard/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/is.js +27 -0
- data/dashboard/node_modules/@babel/types/lib/validators/is.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isLet.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNode.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isPlaceholderType.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isScope.js +18 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isType.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isVar.js +19 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/matchesPattern.js +44 -0
- data/dashboard/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/validate.js +42 -0
- data/dashboard/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
- data/dashboard/node_modules/@babel/types/package.json +39 -0
- data/dashboard/node_modules/@esbuild/darwin-arm64/README.md +3 -0
- data/dashboard/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
- data/dashboard/node_modules/@esbuild/darwin-arm64/package.json +20 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +292 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +358 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +88 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/set-array.d.ts +32 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +43 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/package.json +67 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/gen-mapping.ts +614 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/set-array.ts +82 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/sourcemap-segment.ts +16 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/types.ts +61 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts +89 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts +89 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts +33 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts +33 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts +13 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts +13 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.cts +44 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.mts +44 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/remapping/README.md +218 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.mjs +144 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.umd.js +212 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/remapping/package.json +71 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/build-source-map-tree.ts +89 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/remapping.ts +42 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/source-map-tree.ts +172 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/source-map.ts +38 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/types.ts +27 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts +15 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts +15 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.cts +21 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.mts +21 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts +46 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts +46 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.cts +19 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.mts +19 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.cts +16 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.mts +16 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +232 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +240 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/package.json +69 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +423 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +464 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/package.json +63 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/scopes.ts +345 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +111 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/strings.ts +65 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/vlq.ts +55 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts +50 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts +50 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts +9 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts +9 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts +16 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts +16 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts +7 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts +7 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/README.md +348 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +493 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +559 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/package.json +67 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/binary-search.ts +115 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/by-source.ts +41 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/flatten-map.ts +192 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/resolve.ts +16 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/sort.ts +45 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/sourcemap-segment.ts +23 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts +8 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/trace-mapping.ts +502 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/types.ts +114 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts +33 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts +33 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts +9 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts +9 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.cts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.mts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts +17 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts +17 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts +5 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts +5 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts +80 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts +80 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.cts +107 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.mts +107 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.mts.map +1 -0
- data/dashboard/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- data/dashboard/node_modules/@rolldown/pluginutils/README.md +85 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.cjs +266 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.d.cts +157 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.d.ts +157 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.js +250 -0
- data/dashboard/node_modules/@rolldown/pluginutils/package.json +36 -0
- data/dashboard/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
- data/dashboard/node_modules/@rollup/rollup-darwin-arm64/package.json +19 -0
- data/dashboard/node_modules/@rollup/rollup-darwin-arm64/rollup.darwin-arm64.node +0 -0
- data/dashboard/node_modules/@types/babel__core/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__core/README.md +15 -0
- data/dashboard/node_modules/@types/babel__core/index.d.ts +831 -0
- data/dashboard/node_modules/@types/babel__core/package.json +51 -0
- data/dashboard/node_modules/@types/babel__generator/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__generator/README.md +15 -0
- data/dashboard/node_modules/@types/babel__generator/index.d.ts +210 -0
- data/dashboard/node_modules/@types/babel__generator/package.json +43 -0
- data/dashboard/node_modules/@types/babel__template/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__template/README.md +15 -0
- data/dashboard/node_modules/@types/babel__template/index.d.ts +92 -0
- data/dashboard/node_modules/@types/babel__template/package.json +43 -0
- data/dashboard/node_modules/@types/babel__traverse/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__traverse/README.md +15 -0
- data/dashboard/node_modules/@types/babel__traverse/index.d.ts +1506 -0
- data/dashboard/node_modules/@types/babel__traverse/package.json +63 -0
- data/dashboard/node_modules/@types/estree/LICENSE +21 -0
- data/dashboard/node_modules/@types/estree/README.md +15 -0
- data/dashboard/node_modules/@types/estree/flow.d.ts +167 -0
- data/dashboard/node_modules/@types/estree/index.d.ts +694 -0
- data/dashboard/node_modules/@types/estree/package.json +27 -0
- data/dashboard/node_modules/@vitejs/plugin-react/LICENSE +21 -0
- data/dashboard/node_modules/@vitejs/plugin-react/README.md +140 -0
- data/dashboard/node_modules/@vitejs/plugin-react/dist/index.d.ts +64 -0
- data/dashboard/node_modules/@vitejs/plugin-react/dist/index.js +368 -0
- data/dashboard/node_modules/@vitejs/plugin-react/dist/refresh-runtime.js +670 -0
- data/dashboard/node_modules/@vitejs/plugin-react/package.json +62 -0
- data/dashboard/node_modules/baseline-browser-mapping/LICENSE.txt +201 -0
- data/dashboard/node_modules/baseline-browser-mapping/README.md +431 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/cli.js +2 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/index.cjs +1 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/index.d.ts +90 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/index.js +1 -0
- data/dashboard/node_modules/baseline-browser-mapping/package.json +59 -0
- data/dashboard/node_modules/browserslist/LICENSE +20 -0
- data/dashboard/node_modules/browserslist/README.md +65 -0
- data/dashboard/node_modules/browserslist/browser.js +54 -0
- data/dashboard/node_modules/browserslist/cli.js +156 -0
- data/dashboard/node_modules/browserslist/error.d.ts +7 -0
- data/dashboard/node_modules/browserslist/error.js +12 -0
- data/dashboard/node_modules/browserslist/index.d.ts +224 -0
- data/dashboard/node_modules/browserslist/index.js +1322 -0
- data/dashboard/node_modules/browserslist/node.js +497 -0
- data/dashboard/node_modules/browserslist/package.json +45 -0
- data/dashboard/node_modules/browserslist/parse.js +78 -0
- data/dashboard/node_modules/caniuse-lite/LICENSE +395 -0
- data/dashboard/node_modules/caniuse-lite/README.md +6 -0
- data/dashboard/node_modules/caniuse-lite/data/agents.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/browserVersions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/browsers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/aac.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/apng.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-find.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/audio.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/av1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/avif.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/beacon.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/bigint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/border-image.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/brotli.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/calc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/canvas.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/classlist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/colr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/console-time.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/const.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-all.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-has.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-if.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-table.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/customevent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/datalist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dataset.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/datauri.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/decorators.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/details.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dialog.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/download.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/eme.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/eot.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es5.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fetch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/filereader.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flac.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fontface.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/forms.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/heif.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hevc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hidden.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/history.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/http2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/http3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ime.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/imports.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/innertext.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-event.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-number.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-search.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/json.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/let.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mathml.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/menu.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/meter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/midi.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mp3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/notifications.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-values.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ogv.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/online-status.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/opus.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/outline.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/path2d.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/picture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ping.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pointer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/portals.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/progress.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/promises.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/proximity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/proxy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/push-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rellist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rem.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ruby.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/run-in.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/script-async.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sdch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/selectlist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sni.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/spdy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/srcset.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/stream.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/streams.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sxg.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/template.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/temporal.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/touch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ttf.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/u2f.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/url.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/vibration.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/video.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wav.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-share.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webgl.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webhid.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webm.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webp.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/websockets.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webusb.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webvr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webxr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/will-change.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/woff.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/woff2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/word-break.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/zstd.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AX.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CX.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/EC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/EE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/EG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ER.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ES.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ET.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ID.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ME.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ML.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MX.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/OM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/QA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ST.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/US.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/WF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/WS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/YE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/YT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
- data/dashboard/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
- data/dashboard/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/feature.js +52 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
- data/dashboard/node_modules/caniuse-lite/package.json +34 -0
- data/dashboard/node_modules/convert-source-map/LICENSE +23 -0
- data/dashboard/node_modules/convert-source-map/README.md +206 -0
- data/dashboard/node_modules/convert-source-map/index.js +233 -0
- data/dashboard/node_modules/convert-source-map/package.json +38 -0
- data/dashboard/node_modules/debug/LICENSE +20 -0
- data/dashboard/node_modules/debug/README.md +481 -0
- data/dashboard/node_modules/debug/package.json +64 -0
- data/dashboard/node_modules/debug/src/browser.js +272 -0
- data/dashboard/node_modules/debug/src/common.js +292 -0
- data/dashboard/node_modules/debug/src/index.js +10 -0
- data/dashboard/node_modules/debug/src/node.js +263 -0
- data/dashboard/node_modules/electron-to-chromium/LICENSE +5 -0
- data/dashboard/node_modules/electron-to-chromium/README.md +186 -0
- data/dashboard/node_modules/electron-to-chromium/chromium-versions.js +81 -0
- data/dashboard/node_modules/electron-to-chromium/chromium-versions.json +1 -0
- data/dashboard/node_modules/electron-to-chromium/full-chromium-versions.js +2539 -0
- data/dashboard/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
- data/dashboard/node_modules/electron-to-chromium/full-versions.js +1625 -0
- data/dashboard/node_modules/electron-to-chromium/full-versions.json +1 -0
- data/dashboard/node_modules/electron-to-chromium/index.js +36 -0
- data/dashboard/node_modules/electron-to-chromium/package.json +44 -0
- data/dashboard/node_modules/electron-to-chromium/versions.js +210 -0
- data/dashboard/node_modules/electron-to-chromium/versions.json +1 -0
- data/dashboard/node_modules/esbuild/LICENSE.md +21 -0
- data/dashboard/node_modules/esbuild/README.md +3 -0
- data/dashboard/node_modules/esbuild/bin/esbuild +0 -0
- data/dashboard/node_modules/esbuild/install.js +289 -0
- data/dashboard/node_modules/esbuild/lib/main.d.ts +716 -0
- data/dashboard/node_modules/esbuild/lib/main.js +2242 -0
- data/dashboard/node_modules/esbuild/package.json +49 -0
- data/dashboard/node_modules/escalade/dist/index.js +22 -0
- data/dashboard/node_modules/escalade/dist/index.mjs +22 -0
- data/dashboard/node_modules/escalade/index.d.mts +11 -0
- data/dashboard/node_modules/escalade/index.d.ts +15 -0
- data/dashboard/node_modules/escalade/license +9 -0
- data/dashboard/node_modules/escalade/package.json +74 -0
- data/dashboard/node_modules/escalade/readme.md +211 -0
- data/dashboard/node_modules/escalade/sync/index.d.mts +9 -0
- data/dashboard/node_modules/escalade/sync/index.d.ts +13 -0
- data/dashboard/node_modules/escalade/sync/index.js +18 -0
- data/dashboard/node_modules/escalade/sync/index.mjs +18 -0
- data/dashboard/node_modules/fdir/LICENSE +7 -0
- data/dashboard/node_modules/fdir/README.md +91 -0
- data/dashboard/node_modules/fdir/dist/index.cjs +588 -0
- data/dashboard/node_modules/fdir/dist/index.d.cts +155 -0
- data/dashboard/node_modules/fdir/dist/index.d.mts +155 -0
- data/dashboard/node_modules/fdir/dist/index.mjs +570 -0
- data/dashboard/node_modules/fdir/package.json +103 -0
- data/dashboard/node_modules/fsevents/LICENSE +22 -0
- data/dashboard/node_modules/fsevents/README.md +89 -0
- data/dashboard/node_modules/fsevents/fsevents.d.ts +46 -0
- data/dashboard/node_modules/fsevents/fsevents.js +83 -0
- data/dashboard/node_modules/fsevents/fsevents.node +0 -0
- data/dashboard/node_modules/fsevents/package.json +62 -0
- data/dashboard/node_modules/gensync/LICENSE +7 -0
- data/dashboard/node_modules/gensync/README.md +196 -0
- data/dashboard/node_modules/gensync/index.js +373 -0
- data/dashboard/node_modules/gensync/index.js.flow +32 -0
- data/dashboard/node_modules/gensync/package.json +37 -0
- data/dashboard/node_modules/gensync/test/index.test.js +489 -0
- data/dashboard/node_modules/js-tokens/CHANGELOG.md +151 -0
- data/dashboard/node_modules/js-tokens/LICENSE +21 -0
- data/dashboard/node_modules/js-tokens/README.md +240 -0
- data/dashboard/node_modules/js-tokens/index.js +23 -0
- data/dashboard/node_modules/js-tokens/package.json +30 -0
- data/dashboard/node_modules/jsesc/LICENSE-MIT.txt +20 -0
- data/dashboard/node_modules/jsesc/README.md +422 -0
- data/dashboard/node_modules/jsesc/bin/jsesc +148 -0
- data/dashboard/node_modules/jsesc/jsesc.js +337 -0
- data/dashboard/node_modules/jsesc/man/jsesc.1 +94 -0
- data/dashboard/node_modules/jsesc/package.json +56 -0
- data/dashboard/node_modules/json5/LICENSE.md +23 -0
- data/dashboard/node_modules/json5/README.md +282 -0
- data/dashboard/node_modules/json5/dist/index.js +1737 -0
- data/dashboard/node_modules/json5/dist/index.min.js +1 -0
- data/dashboard/node_modules/json5/dist/index.min.mjs +1 -0
- data/dashboard/node_modules/json5/dist/index.mjs +1426 -0
- data/dashboard/node_modules/json5/lib/cli.js +152 -0
- data/dashboard/node_modules/json5/lib/index.d.ts +4 -0
- data/dashboard/node_modules/json5/lib/index.js +9 -0
- data/dashboard/node_modules/json5/lib/parse.d.ts +15 -0
- data/dashboard/node_modules/json5/lib/parse.js +1114 -0
- data/dashboard/node_modules/json5/lib/register.js +13 -0
- data/dashboard/node_modules/json5/lib/require.js +4 -0
- data/dashboard/node_modules/json5/lib/stringify.d.ts +89 -0
- data/dashboard/node_modules/json5/lib/stringify.js +261 -0
- data/dashboard/node_modules/json5/lib/unicode.d.ts +3 -0
- data/dashboard/node_modules/json5/lib/unicode.js +4 -0
- data/dashboard/node_modules/json5/lib/util.d.ts +5 -0
- data/dashboard/node_modules/json5/lib/util.js +35 -0
- data/dashboard/node_modules/json5/package.json +72 -0
- data/dashboard/node_modules/lru-cache/LICENSE +15 -0
- data/dashboard/node_modules/lru-cache/README.md +166 -0
- data/dashboard/node_modules/lru-cache/index.js +334 -0
- data/dashboard/node_modules/lru-cache/package.json +32 -0
- data/dashboard/node_modules/ms/index.js +162 -0
- data/dashboard/node_modules/ms/license.md +21 -0
- data/dashboard/node_modules/ms/package.json +38 -0
- data/dashboard/node_modules/ms/readme.md +59 -0
- data/dashboard/node_modules/nanoid/LICENSE +20 -0
- data/dashboard/node_modules/nanoid/README.md +39 -0
- data/dashboard/node_modules/nanoid/async/index.browser.cjs +69 -0
- data/dashboard/node_modules/nanoid/async/index.browser.js +34 -0
- data/dashboard/node_modules/nanoid/async/index.cjs +71 -0
- data/dashboard/node_modules/nanoid/async/index.d.ts +56 -0
- data/dashboard/node_modules/nanoid/async/index.js +35 -0
- data/dashboard/node_modules/nanoid/async/index.native.js +26 -0
- data/dashboard/node_modules/nanoid/async/package.json +12 -0
- data/dashboard/node_modules/nanoid/bin/nanoid.cjs +55 -0
- data/dashboard/node_modules/nanoid/index.browser.cjs +72 -0
- data/dashboard/node_modules/nanoid/index.browser.js +34 -0
- data/dashboard/node_modules/nanoid/index.cjs +85 -0
- data/dashboard/node_modules/nanoid/index.d.cts +91 -0
- data/dashboard/node_modules/nanoid/index.d.ts +91 -0
- data/dashboard/node_modules/nanoid/index.js +45 -0
- data/dashboard/node_modules/nanoid/nanoid.js +1 -0
- data/dashboard/node_modules/nanoid/non-secure/index.cjs +34 -0
- data/dashboard/node_modules/nanoid/non-secure/index.d.ts +33 -0
- data/dashboard/node_modules/nanoid/non-secure/index.js +21 -0
- data/dashboard/node_modules/nanoid/non-secure/package.json +6 -0
- data/dashboard/node_modules/nanoid/package.json +89 -0
- data/dashboard/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- data/dashboard/node_modules/nanoid/url-alphabet/index.js +3 -0
- data/dashboard/node_modules/nanoid/url-alphabet/package.json +6 -0
- data/dashboard/node_modules/node-releases/LICENSE +21 -0
- data/dashboard/node_modules/node-releases/README.md +12 -0
- data/dashboard/node_modules/node-releases/data/processed/envs.json +1 -0
- data/dashboard/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
- data/dashboard/node_modules/node-releases/package.json +22 -0
- data/dashboard/node_modules/picocolors/LICENSE +15 -0
- data/dashboard/node_modules/picocolors/README.md +21 -0
- data/dashboard/node_modules/picocolors/package.json +25 -0
- data/dashboard/node_modules/picocolors/picocolors.browser.js +4 -0
- data/dashboard/node_modules/picocolors/picocolors.d.ts +5 -0
- data/dashboard/node_modules/picocolors/picocolors.js +75 -0
- data/dashboard/node_modules/picocolors/types.d.ts +51 -0
- data/dashboard/node_modules/picomatch/LICENSE +21 -0
- data/dashboard/node_modules/picomatch/README.md +738 -0
- data/dashboard/node_modules/picomatch/index.js +17 -0
- data/dashboard/node_modules/picomatch/lib/constants.js +180 -0
- data/dashboard/node_modules/picomatch/lib/parse.js +1085 -0
- data/dashboard/node_modules/picomatch/lib/picomatch.js +341 -0
- data/dashboard/node_modules/picomatch/lib/scan.js +391 -0
- data/dashboard/node_modules/picomatch/lib/utils.js +72 -0
- data/dashboard/node_modules/picomatch/package.json +83 -0
- data/dashboard/node_modules/picomatch/posix.js +3 -0
- data/dashboard/node_modules/postcss/LICENSE +20 -0
- data/dashboard/node_modules/postcss/README.md +29 -0
- data/dashboard/node_modules/postcss/lib/at-rule.d.ts +140 -0
- data/dashboard/node_modules/postcss/lib/at-rule.js +25 -0
- data/dashboard/node_modules/postcss/lib/comment.d.ts +68 -0
- data/dashboard/node_modules/postcss/lib/comment.js +13 -0
- data/dashboard/node_modules/postcss/lib/container.d.ts +483 -0
- data/dashboard/node_modules/postcss/lib/container.js +447 -0
- data/dashboard/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
- data/dashboard/node_modules/postcss/lib/css-syntax-error.js +133 -0
- data/dashboard/node_modules/postcss/lib/declaration.d.ts +151 -0
- data/dashboard/node_modules/postcss/lib/declaration.js +24 -0
- data/dashboard/node_modules/postcss/lib/document.d.ts +69 -0
- data/dashboard/node_modules/postcss/lib/document.js +33 -0
- data/dashboard/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- data/dashboard/node_modules/postcss/lib/fromJSON.js +54 -0
- data/dashboard/node_modules/postcss/lib/input.d.ts +227 -0
- data/dashboard/node_modules/postcss/lib/input.js +265 -0
- data/dashboard/node_modules/postcss/lib/lazy-result.d.ts +190 -0
- data/dashboard/node_modules/postcss/lib/lazy-result.js +550 -0
- data/dashboard/node_modules/postcss/lib/list.d.ts +60 -0
- data/dashboard/node_modules/postcss/lib/list.js +58 -0
- data/dashboard/node_modules/postcss/lib/map-generator.js +368 -0
- data/dashboard/node_modules/postcss/lib/no-work-result.d.ts +46 -0
- data/dashboard/node_modules/postcss/lib/no-work-result.js +138 -0
- data/dashboard/node_modules/postcss/lib/node.d.ts +556 -0
- data/dashboard/node_modules/postcss/lib/node.js +449 -0
- data/dashboard/node_modules/postcss/lib/parse.d.ts +9 -0
- data/dashboard/node_modules/postcss/lib/parse.js +42 -0
- data/dashboard/node_modules/postcss/lib/parser.js +611 -0
- data/dashboard/node_modules/postcss/lib/postcss.d.mts +69 -0
- data/dashboard/node_modules/postcss/lib/postcss.d.ts +458 -0
- data/dashboard/node_modules/postcss/lib/postcss.js +101 -0
- data/dashboard/node_modules/postcss/lib/postcss.mjs +30 -0
- data/dashboard/node_modules/postcss/lib/previous-map.d.ts +81 -0
- data/dashboard/node_modules/postcss/lib/previous-map.js +144 -0
- data/dashboard/node_modules/postcss/lib/processor.d.ts +115 -0
- data/dashboard/node_modules/postcss/lib/processor.js +67 -0
- data/dashboard/node_modules/postcss/lib/result.d.ts +205 -0
- data/dashboard/node_modules/postcss/lib/result.js +42 -0
- data/dashboard/node_modules/postcss/lib/root.d.ts +87 -0
- data/dashboard/node_modules/postcss/lib/root.js +61 -0
- data/dashboard/node_modules/postcss/lib/rule.d.ts +126 -0
- data/dashboard/node_modules/postcss/lib/rule.js +27 -0
- data/dashboard/node_modules/postcss/lib/stringifier.d.ts +46 -0
- data/dashboard/node_modules/postcss/lib/stringifier.js +353 -0
- data/dashboard/node_modules/postcss/lib/stringify.d.ts +9 -0
- data/dashboard/node_modules/postcss/lib/stringify.js +11 -0
- data/dashboard/node_modules/postcss/lib/symbols.js +5 -0
- data/dashboard/node_modules/postcss/lib/terminal-highlight.js +70 -0
- data/dashboard/node_modules/postcss/lib/tokenize.js +266 -0
- data/dashboard/node_modules/postcss/lib/warn-once.js +13 -0
- data/dashboard/node_modules/postcss/lib/warning.d.ts +147 -0
- data/dashboard/node_modules/postcss/lib/warning.js +37 -0
- data/dashboard/node_modules/postcss/package.json +88 -0
- data/dashboard/node_modules/react/LICENSE +21 -0
- data/dashboard/node_modules/react/README.md +37 -0
- data/dashboard/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- data/dashboard/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- data/dashboard/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.development.js +349 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +385 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.development.js +358 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +385 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- data/dashboard/node_modules/react/cjs/react.development.js +1243 -0
- data/dashboard/node_modules/react/cjs/react.production.js +546 -0
- data/dashboard/node_modules/react/cjs/react.react-server.development.js +817 -0
- data/dashboard/node_modules/react/cjs/react.react-server.production.js +429 -0
- data/dashboard/node_modules/react/compiler-runtime.js +14 -0
- data/dashboard/node_modules/react/index.js +7 -0
- data/dashboard/node_modules/react/jsx-dev-runtime.js +7 -0
- data/dashboard/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- data/dashboard/node_modules/react/jsx-runtime.js +7 -0
- data/dashboard/node_modules/react/jsx-runtime.react-server.js +7 -0
- data/dashboard/node_modules/react/package.json +51 -0
- data/dashboard/node_modules/react/react.react-server.js +7 -0
- data/dashboard/node_modules/react-dom/LICENSE +21 -0
- data/dashboard/node_modules/react-dom/README.md +60 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-client.development.js +24993 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-client.production.js +15393 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-profiling.development.js +25380 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-profiling.profiling.js +16218 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +9035 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +5892 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +9035 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +5972 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.browser.development.js +9424 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.browser.production.js +6384 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.bun.development.js +8738 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.bun.production.js +5967 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.edge.development.js +9443 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.edge.production.js +6477 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.node.development.js +9317 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.node.production.js +6372 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-test-utils.development.js +24 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-test-utils.production.js +21 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.development.js +424 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.production.js +210 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.react-server.development.js +340 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.react-server.production.js +152 -0
- data/dashboard/node_modules/react-dom/client.js +38 -0
- data/dashboard/node_modules/react-dom/client.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/index.js +38 -0
- data/dashboard/node_modules/react-dom/package.json +117 -0
- data/dashboard/node_modules/react-dom/profiling.js +38 -0
- data/dashboard/node_modules/react-dom/profiling.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/react-dom.react-server.js +7 -0
- data/dashboard/node_modules/react-dom/server.browser.js +18 -0
- data/dashboard/node_modules/react-dom/server.bun.js +19 -0
- data/dashboard/node_modules/react-dom/server.edge.js +19 -0
- data/dashboard/node_modules/react-dom/server.js +3 -0
- data/dashboard/node_modules/react-dom/server.node.js +18 -0
- data/dashboard/node_modules/react-dom/server.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/static.browser.js +12 -0
- data/dashboard/node_modules/react-dom/static.edge.js +12 -0
- data/dashboard/node_modules/react-dom/static.js +3 -0
- data/dashboard/node_modules/react-dom/static.node.js +12 -0
- data/dashboard/node_modules/react-dom/static.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/test-utils.js +7 -0
- data/dashboard/node_modules/react-refresh/LICENSE +21 -0
- data/dashboard/node_modules/react-refresh/README.md +5 -0
- data/dashboard/node_modules/react-refresh/babel.js +7 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-babel.development.js +601 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-babel.production.js +586 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-runtime.development.js +338 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-runtime.production.js +14 -0
- data/dashboard/node_modules/react-refresh/package.json +38 -0
- data/dashboard/node_modules/react-refresh/runtime.js +7 -0
- data/dashboard/node_modules/rollup/LICENSE.md +679 -0
- data/dashboard/node_modules/rollup/README.md +134 -0
- data/dashboard/node_modules/rollup/dist/bin/rollup +1885 -0
- data/dashboard/node_modules/rollup/dist/es/getLogFilter.js +64 -0
- data/dashboard/node_modules/rollup/dist/es/package.json +1 -0
- data/dashboard/node_modules/rollup/dist/es/parseAst.js +12 -0
- data/dashboard/node_modules/rollup/dist/es/rollup.js +17 -0
- data/dashboard/node_modules/rollup/dist/es/shared/node-entry.js +23892 -0
- data/dashboard/node_modules/rollup/dist/es/shared/parseAst.js +2086 -0
- data/dashboard/node_modules/rollup/dist/es/shared/watch.js +9297 -0
- data/dashboard/node_modules/rollup/dist/getLogFilter.d.ts +5 -0
- data/dashboard/node_modules/rollup/dist/getLogFilter.js +69 -0
- data/dashboard/node_modules/rollup/dist/loadConfigFile.d.ts +20 -0
- data/dashboard/node_modules/rollup/dist/loadConfigFile.js +29 -0
- data/dashboard/node_modules/rollup/dist/native.js +113 -0
- data/dashboard/node_modules/rollup/dist/parseAst.d.ts +4 -0
- data/dashboard/node_modules/rollup/dist/parseAst.js +22 -0
- data/dashboard/node_modules/rollup/dist/rollup.d.ts +1182 -0
- data/dashboard/node_modules/rollup/dist/rollup.js +127 -0
- data/dashboard/node_modules/rollup/dist/shared/fsevents-importer.js +37 -0
- data/dashboard/node_modules/rollup/dist/shared/index.js +9003 -0
- data/dashboard/node_modules/rollup/dist/shared/loadConfigFile.js +572 -0
- data/dashboard/node_modules/rollup/dist/shared/parseAst.js +2318 -0
- data/dashboard/node_modules/rollup/dist/shared/rollup.js +23814 -0
- data/dashboard/node_modules/rollup/dist/shared/watch-cli.js +542 -0
- data/dashboard/node_modules/rollup/dist/shared/watch.js +324 -0
- data/dashboard/node_modules/rollup/package.json +268 -0
- data/dashboard/node_modules/scheduler/LICENSE +21 -0
- data/dashboard/node_modules/scheduler/README.md +9 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +414 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_mock.production.js +406 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +150 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.js +140 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.development.js +364 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.native.development.js +350 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.native.production.js +330 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.production.js +340 -0
- data/dashboard/node_modules/scheduler/index.js +7 -0
- data/dashboard/node_modules/scheduler/index.native.js +7 -0
- data/dashboard/node_modules/scheduler/package.json +27 -0
- data/dashboard/node_modules/scheduler/unstable_mock.js +7 -0
- data/dashboard/node_modules/scheduler/unstable_post_task.js +7 -0
- data/dashboard/node_modules/semver/LICENSE +15 -0
- data/dashboard/node_modules/semver/README.md +443 -0
- data/dashboard/node_modules/semver/bin/semver.js +174 -0
- data/dashboard/node_modules/semver/package.json +38 -0
- data/dashboard/node_modules/semver/range.bnf +16 -0
- data/dashboard/node_modules/semver/semver.js +1643 -0
- data/dashboard/node_modules/source-map-js/LICENSE +28 -0
- data/dashboard/node_modules/source-map-js/README.md +765 -0
- data/dashboard/node_modules/source-map-js/lib/array-set.js +121 -0
- data/dashboard/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- data/dashboard/node_modules/source-map-js/lib/base64.js +67 -0
- data/dashboard/node_modules/source-map-js/lib/binary-search.js +111 -0
- data/dashboard/node_modules/source-map-js/lib/mapping-list.js +79 -0
- data/dashboard/node_modules/source-map-js/lib/quick-sort.js +132 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- data/dashboard/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- data/dashboard/node_modules/source-map-js/lib/source-node.js +413 -0
- data/dashboard/node_modules/source-map-js/lib/util.js +594 -0
- data/dashboard/node_modules/source-map-js/package.json +71 -0
- data/dashboard/node_modules/source-map-js/source-map.d.ts +104 -0
- data/dashboard/node_modules/source-map-js/source-map.js +8 -0
- data/dashboard/node_modules/tinyglobby/LICENSE +21 -0
- data/dashboard/node_modules/tinyglobby/README.md +25 -0
- data/dashboard/node_modules/tinyglobby/dist/index.cjs +350 -0
- data/dashboard/node_modules/tinyglobby/dist/index.d.cts +147 -0
- data/dashboard/node_modules/tinyglobby/dist/index.d.mts +147 -0
- data/dashboard/node_modules/tinyglobby/dist/index.mjs +318 -0
- data/dashboard/node_modules/tinyglobby/package.json +73 -0
- data/dashboard/node_modules/update-browserslist-db/LICENSE +20 -0
- data/dashboard/node_modules/update-browserslist-db/README.md +22 -0
- data/dashboard/node_modules/update-browserslist-db/check-npm-version.js +17 -0
- data/dashboard/node_modules/update-browserslist-db/cli.js +42 -0
- data/dashboard/node_modules/update-browserslist-db/index.d.ts +6 -0
- data/dashboard/node_modules/update-browserslist-db/index.js +341 -0
- data/dashboard/node_modules/update-browserslist-db/package.json +40 -0
- data/dashboard/node_modules/update-browserslist-db/utils.js +25 -0
- data/dashboard/node_modules/vite/LICENSE.md +2173 -0
- data/dashboard/node_modules/vite/README.md +20 -0
- data/dashboard/node_modules/vite/bin/openChrome.js +68 -0
- data/dashboard/node_modules/vite/bin/vite.js +79 -0
- data/dashboard/node_modules/vite/client.d.ts +279 -0
- data/dashboard/node_modules/vite/dist/client/client.mjs +1098 -0
- data/dashboard/node_modules/vite/dist/client/env.mjs +19 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-BuoK8Wda.js +377 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-BvyJBvVx.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-Cs9lwdKu.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-DCVhRpiz.js +5595 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-DDbTn5rw.js +482 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-D_YDhiNx.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-M_KD0XSK.js +36707 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js +320 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-cWFO4sv4.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-lCKrEJQm.js +31 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-sDKrrA4S.js +6814 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-yxQqhtZq.js +4 -0
- data/dashboard/node_modules/vite/dist/node/cli.js +708 -0
- data/dashboard/node_modules/vite/dist/node/index.d.ts +3668 -0
- data/dashboard/node_modules/vite/dist/node/index.js +30 -0
- data/dashboard/node_modules/vite/dist/node/module-runner.d.ts +312 -0
- data/dashboard/node_modules/vite/dist/node/module-runner.js +1133 -0
- data/dashboard/node_modules/vite/dist/node/moduleRunnerTransport-BWUZBVLX.d.ts +88 -0
- data/dashboard/node_modules/vite/misc/false.js +1 -0
- data/dashboard/node_modules/vite/misc/true.js +1 -0
- data/dashboard/node_modules/vite/package.json +201 -0
- data/dashboard/node_modules/vite/types/customEvent.d.ts +45 -0
- data/dashboard/node_modules/vite/types/hmrPayload.d.ts +74 -0
- data/dashboard/node_modules/vite/types/hot.d.ts +39 -0
- data/dashboard/node_modules/vite/types/import-meta.d.ts +5 -0
- data/dashboard/node_modules/vite/types/importGlob.d.ts +89 -0
- data/dashboard/node_modules/vite/types/importMeta.d.ts +31 -0
- data/dashboard/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- data/dashboard/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- data/dashboard/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- data/dashboard/node_modules/vite/types/metadata.d.ts +33 -0
- data/dashboard/node_modules/vite/types/package.json +4 -0
- data/dashboard/node_modules/yallist/LICENSE +15 -0
- data/dashboard/node_modules/yallist/README.md +204 -0
- data/dashboard/node_modules/yallist/iterator.js +8 -0
- data/dashboard/node_modules/yallist/package.json +29 -0
- data/dashboard/node_modules/yallist/yallist.js +426 -0
- data/dashboard/package-lock.json +1714 -0
- data/dashboard/package.json +20 -0
- data/dashboard/src/App.jsx +637 -0
- data/dashboard/src/LogViewer.jsx +29 -0
- data/dashboard/src/StepDetail.jsx +36 -0
- data/dashboard/src/index.html +11 -0
- data/dashboard/src/main.jsx +9 -0
- data/dashboard/vite.config.js +10 -0
- data/lib/capydash/version.rb +1 -1
- metadata +2249 -2
- data/capydash.gemspec +0 -30
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_renamer","require","_index","_binding","_t","t","_cache","globalsBuiltinLower","globalsBuiltinUpper","assignmentExpression","callExpression","cloneNode","getBindingIdentifiers","identifier","isArrayExpression","isBinary","isCallExpression","isClass","isClassBody","isClassDeclaration","isExportAllDeclaration","isExportDefaultDeclaration","isExportNamedDeclaration","isFunctionDeclaration","isIdentifier","isImportDeclaration","isLiteral","isMemberExpression","isMethod","isModuleSpecifier","isNullLiteral","isObjectExpression","isProperty","isPureish","isRegExpLiteral","isSuper","isTaggedTemplateExpression","isTemplateLiteral","isThisExpression","isUnaryExpression","isVariableDeclaration","expressionStatement","matchesPattern","memberExpression","numericLiteral","toIdentifier","variableDeclaration","variableDeclarator","isRecordExpression","isTupleExpression","isObjectProperty","isTopicReference","isMetaProperty","isPrivateName","isExportDeclaration","buildUndefinedNode","sequenceExpression","gatherNodeParts","node","parts","type","_node$specifiers","source","specifiers","length","e","declaration","local","push","value","object","property","name","callee","properties","argument","key","left","id","expression","meta","openingElement","openingFragment","namespace","resetScope","scope","references","Object","create","uids","bindings","globals","NOT_LOCAL_BINDING","Symbol","for","collectorVisitor","ForStatement","path","declar","get","isVar","parentScope","getFunctionParent","getProgramParent","registerBinding","Declaration","isBlockScoped","parent","registerDeclaration","ImportDeclaration","getBlockParent","TSImportEqualsDeclaration","ReferencedIdentifier","state","isTSQualifiedName","right","parentPath","isTSImportEqualsDeclaration","ForXStatement","isPattern","constantViolations","ExportDeclaration","exit","binding","getBinding","reference","decl","declarations","keys","LabeledStatement","AssignmentExpression","assignments","UpdateExpression","UnaryExpression","operator","BlockScoped","CatchClause","Function","params","param","isFunctionExpression","ClassExpression","TSTypeAnnotation","skip","scopeVisitor","uid","Scope","constructor","block","inited","labels","referencesSet","uidsSet","data","crawling","cached","scopeCache","set","Map","defineProperties","enumerable","configurable","writable","_parent","_path","shouldSkip","listKey","isScope","Error","generateDeclaredUidIdentifier","generateUidIdentifier","generateUid","replace","i","hasLabel","hasBinding","hasGlobal","hasReference","program","generateUidBasedOnNode","defaultName","join","slice","generateUidIdentifierBasedOnNode","isStatic","constant","maybeGenerateMemoised","dontPush","checkBlockScopedCollisions","kind","duplicate","hub","buildError","TypeError","rename","oldName","newName","renamer","Renamer","arguments","dump","sep","repeat","console","log","violations","getLabel","registerLabel","label","isLabeledStatement","declare","isTypeDeclaration","importKind","specifier","isTypeSpecifier","isImportSpecifier","registerConstantViolation","ids","getAssignmentIdentifiers","_this$getBinding","reassign","bindingPath","ReferenceError","declarators","getOuterBindingIdentifiers","getOwnBinding","Binding","addGlobal","hasUid","isPure","constantsOnly","_node$decorators","superClass","decorators","body","method","elem","elements","prop","_node$decorators2","computed","_node$decorators3","static","expressions","tag","noGlobals","quasi","isStringLiteral","setData","val","getData","removeData","init","crawl","isProgram","programParent","traverse","visitors","merge","visit","enter","call","typeVisitors","ref","opts","getPatternParent","isBlockStatement","isSwitchStatement","unique","isFunction","pushContainer","isLoop","isCatchClause","ensureBlock","blockHoist","_blockHoist","dataKey","declarPath","unshiftContainer","declarator","len","isFunctionParent","isBlockParent","getAllBindings","bindingIdentifierEquals","getBindingIdentifier","previousPath","_previousPath","isArrowFunctionExpression","_this$getBinding2","getOwnBindingIdentifier","hasOwnBinding","noUids","upToScope","includes","contextVariables","parentHasBinding","_this$parent","moveBindingTo","info","removeOwnBinding","removeBinding","_this$getBinding3","hoistVariables","emit","seen","Set","isVariableDeclarator","has","add","firstId","isFor","replaceWith","remove","expr","isForStatement","exports","default","prototype","_renameFromMap","map","_generateUid","toArray","arrayLikeIsIterable","isGenericType","helperName","args","unshift","addHelper","getAllBindingsOfKind","kinds","parentBlock"],"sources":["../../src/scope/index.ts"],"sourcesContent":["import Renamer from \"./lib/renamer.ts\";\nimport type NodePath from \"../path/index.ts\";\nimport traverse from \"../index.ts\";\nimport Binding from \"./binding.ts\";\nimport type { BindingKind } from \"./binding.ts\";\nimport globalsBuiltinLower from \"@babel/helper-globals/data/builtin-lower.json\" with { type: \"json\" };\nimport globalsBuiltinUpper from \"@babel/helper-globals/data/builtin-upper.json\" with { type: \"json\" };\nimport {\n assignmentExpression,\n callExpression,\n cloneNode,\n getBindingIdentifiers,\n identifier,\n isArrayExpression,\n isBinary,\n isCallExpression,\n isClass,\n isClassBody,\n isClassDeclaration,\n isExportAllDeclaration,\n isExportDefaultDeclaration,\n isExportNamedDeclaration,\n isFunctionDeclaration,\n isIdentifier,\n isImportDeclaration,\n isLiteral,\n isMemberExpression,\n isMethod,\n isModuleSpecifier,\n isNullLiteral,\n isObjectExpression,\n isProperty,\n isPureish,\n isRegExpLiteral,\n isSuper,\n isTaggedTemplateExpression,\n isTemplateLiteral,\n isThisExpression,\n isUnaryExpression,\n isVariableDeclaration,\n expressionStatement,\n matchesPattern,\n memberExpression,\n numericLiteral,\n toIdentifier,\n variableDeclaration,\n variableDeclarator,\n isRecordExpression,\n isTupleExpression,\n isObjectProperty,\n isTopicReference,\n isMetaProperty,\n isPrivateName,\n isExportDeclaration,\n buildUndefinedNode,\n sequenceExpression,\n} from \"@babel/types\";\nimport * as t from \"@babel/types\";\nimport { scope as scopeCache } from \"../cache.ts\";\nimport type { ExplodedVisitor, Visitor } from \"../types.ts\";\n\ntype NodePart = string | number | bigint | boolean;\n// Recursively gathers the identifying names of a node.\nfunction gatherNodeParts(node: t.Node, parts: NodePart[]) {\n switch (node?.type) {\n default:\n if (isImportDeclaration(node) || isExportDeclaration(node)) {\n if (\n (isExportAllDeclaration(node) ||\n isExportNamedDeclaration(node) ||\n isImportDeclaration(node)) &&\n node.source\n ) {\n gatherNodeParts(node.source, parts);\n } else if (\n (isExportNamedDeclaration(node) || isImportDeclaration(node)) &&\n node.specifiers?.length\n ) {\n for (const e of node.specifiers) gatherNodeParts(e, parts);\n } else if (\n (isExportDefaultDeclaration(node) ||\n isExportNamedDeclaration(node)) &&\n node.declaration\n ) {\n gatherNodeParts(node.declaration, parts);\n }\n } else if (isModuleSpecifier(node)) {\n // todo(flow->ts): should condition instead be:\n // ```\n // t.isExportSpecifier(node) ||\n // t.isImportDefaultSpecifier(node) ||\n // t.isImportNamespaceSpecifier(node) ||\n // t.isImportSpecifier(node)\n // ```\n // allowing only nodes with `.local`?\n // @ts-expect-error todo(flow->ts)\n gatherNodeParts(node.local, parts);\n } else if (\n isLiteral(node) &&\n !isNullLiteral(node) &&\n !isRegExpLiteral(node) &&\n !isTemplateLiteral(node)\n ) {\n parts.push(node.value);\n }\n break;\n\n case \"MemberExpression\":\n case \"OptionalMemberExpression\":\n case \"JSXMemberExpression\":\n gatherNodeParts(node.object, parts);\n gatherNodeParts(node.property, parts);\n break;\n\n case \"Identifier\":\n case \"JSXIdentifier\":\n parts.push(node.name);\n break;\n\n case \"CallExpression\":\n case \"OptionalCallExpression\":\n case \"NewExpression\":\n gatherNodeParts(node.callee, parts);\n break;\n\n case \"ObjectExpression\":\n case \"ObjectPattern\":\n for (const e of node.properties) {\n gatherNodeParts(e, parts);\n }\n break;\n\n case \"SpreadElement\":\n case \"RestElement\":\n gatherNodeParts(node.argument, parts);\n break;\n\n case \"ObjectProperty\":\n case \"ObjectMethod\":\n case \"ClassProperty\":\n case \"ClassMethod\":\n case \"ClassPrivateProperty\":\n case \"ClassPrivateMethod\":\n gatherNodeParts(node.key, parts);\n break;\n\n case \"ThisExpression\":\n parts.push(\"this\");\n break;\n\n case \"Super\":\n parts.push(\"super\");\n break;\n\n case \"Import\":\n case \"ImportExpression\":\n parts.push(\"import\");\n break;\n\n case \"DoExpression\":\n parts.push(\"do\");\n break;\n\n case \"YieldExpression\":\n parts.push(\"yield\");\n gatherNodeParts(node.argument, parts);\n break;\n\n case \"AwaitExpression\":\n parts.push(\"await\");\n gatherNodeParts(node.argument, parts);\n break;\n\n case \"AssignmentExpression\":\n gatherNodeParts(node.left, parts);\n break;\n\n case \"VariableDeclarator\":\n gatherNodeParts(node.id, parts);\n break;\n\n case \"FunctionExpression\":\n case \"FunctionDeclaration\":\n case \"ClassExpression\":\n case \"ClassDeclaration\":\n gatherNodeParts(node.id, parts);\n break;\n\n case \"PrivateName\":\n gatherNodeParts(node.id, parts);\n break;\n\n case \"ParenthesizedExpression\":\n gatherNodeParts(node.expression, parts);\n break;\n\n case \"UnaryExpression\":\n case \"UpdateExpression\":\n gatherNodeParts(node.argument, parts);\n break;\n\n case \"MetaProperty\":\n gatherNodeParts(node.meta, parts);\n gatherNodeParts(node.property, parts);\n break;\n\n case \"JSXElement\":\n gatherNodeParts(node.openingElement, parts);\n break;\n\n case \"JSXOpeningElement\":\n gatherNodeParts(node.name, parts);\n break;\n\n case \"JSXFragment\":\n gatherNodeParts(node.openingFragment, parts);\n break;\n\n case \"JSXOpeningFragment\":\n parts.push(\"Fragment\");\n break;\n\n case \"JSXNamespacedName\":\n gatherNodeParts(node.namespace, parts);\n gatherNodeParts(node.name, parts);\n break;\n }\n}\n\nfunction resetScope(scope: Scope) {\n if (!process.env.BABEL_8_BREAKING) {\n // @ts-expect-error(Babel 7 vs Babel 8)\n scope.references = Object.create(null);\n // @ts-expect-error(Babel 7 vs Babel 8)\n scope.uids = Object.create(null);\n } else if (scope.path.type === \"Program\") {\n scope.referencesSet = new Set();\n scope.uidsSet = new Set();\n }\n\n scope.bindings = Object.create(null);\n scope.globals = Object.create(null);\n}\n\ninterface CollectVisitorState {\n assignments: NodePath<t.AssignmentExpression>[];\n references: NodePath<t.Identifier | t.JSXIdentifier>[];\n constantViolations: NodePath[];\n}\n\nif (!process.env.BABEL_8_BREAKING) {\n // eslint-disable-next-line no-var\n var NOT_LOCAL_BINDING = Symbol.for(\n \"should not be considered a local binding\",\n );\n}\n\nconst collectorVisitor: Visitor<CollectVisitorState> = {\n ForStatement(path) {\n const declar = path.get(\"init\");\n // delegate block scope handling to the `BlockScoped` method\n if (declar.isVar()) {\n const { scope } = path;\n const parentScope = scope.getFunctionParent() || scope.getProgramParent();\n parentScope.registerBinding(\"var\", declar);\n }\n },\n\n Declaration(path) {\n // delegate block scope handling to the `BlockScoped` method\n if (path.isBlockScoped()) return;\n\n // delegate import handing to the `ImportDeclaration` method\n if (path.isImportDeclaration()) return;\n\n // this will be hit again once we traverse into it after this iteration\n if (path.isExportDeclaration()) return;\n\n // we've ran into a declaration!\n const parent =\n path.scope.getFunctionParent() || path.scope.getProgramParent();\n parent.registerDeclaration(path);\n },\n\n ImportDeclaration(path) {\n // import may only appear in the top level or inside a module/namespace (for TS/flow)\n const parent = path.scope.getBlockParent();\n\n parent.registerDeclaration(path);\n },\n\n TSImportEqualsDeclaration(path) {\n const parent = path.scope.getBlockParent();\n\n parent.registerDeclaration(path);\n },\n\n ReferencedIdentifier(path, state) {\n if (t.isTSQualifiedName(path.parent) && path.parent.right === path.node) {\n return;\n }\n if (path.parentPath.isTSImportEqualsDeclaration()) return;\n state.references.push(path);\n },\n\n ForXStatement(path, state) {\n const left = path.get(\"left\");\n if (left.isPattern() || left.isIdentifier()) {\n state.constantViolations.push(path);\n }\n // delegate block scope handling to the `BlockScoped` method\n else if (left.isVar()) {\n const { scope } = path;\n const parentScope = scope.getFunctionParent() || scope.getProgramParent();\n parentScope.registerBinding(\"var\", left);\n }\n },\n\n ExportDeclaration: {\n exit(path) {\n const { node, scope } = path;\n // ExportAllDeclaration does not have `declaration`\n if (isExportAllDeclaration(node)) return;\n const declar = node.declaration;\n if (isClassDeclaration(declar) || isFunctionDeclaration(declar)) {\n const id = declar.id;\n if (!id) return;\n\n const binding = scope.getBinding(id.name);\n binding?.reference(path);\n } else if (isVariableDeclaration(declar)) {\n for (const decl of declar.declarations) {\n for (const name of Object.keys(getBindingIdentifiers(decl))) {\n const binding = scope.getBinding(name);\n binding?.reference(path);\n }\n }\n }\n },\n },\n\n LabeledStatement(path) {\n path.scope.getBlockParent().registerDeclaration(path);\n },\n\n AssignmentExpression(path, state) {\n state.assignments.push(path);\n },\n\n UpdateExpression(path, state) {\n state.constantViolations.push(path);\n },\n\n UnaryExpression(path, state) {\n if (path.node.operator === \"delete\") {\n state.constantViolations.push(path);\n }\n },\n\n BlockScoped(path) {\n let scope = path.scope;\n if (scope.path === path) scope = scope.parent;\n\n const parent = scope.getBlockParent();\n parent.registerDeclaration(path);\n\n // Register class identifier in class' scope if this is a class declaration.\n if (path.isClassDeclaration() && path.node.id) {\n const id = path.node.id;\n const name = id.name;\n\n path.scope.bindings[name] = path.scope.parent.getBinding(name);\n }\n },\n\n CatchClause(path) {\n path.scope.registerBinding(\"let\", path);\n },\n\n Function(path) {\n const params: Array<NodePath> = path.get(\"params\");\n for (const param of params) {\n path.scope.registerBinding(\"param\", param);\n }\n\n // Register function expression id after params. When the id\n // collides with a function param, the id effectively can't be\n // referenced: here we registered it as a constantViolation\n if (\n path.isFunctionExpression() &&\n path.node.id &&\n (process.env.BABEL_8_BREAKING ||\n // @ts-expect-error Fixme: document symbol ast properties\n !path.node.id[NOT_LOCAL_BINDING])\n ) {\n path.scope.registerBinding(\"local\", path.get(\"id\"), path);\n }\n },\n\n ClassExpression(path) {\n if (\n path.node.id &&\n (process.env.BABEL_8_BREAKING ||\n // @ts-expect-error Fixme: document symbol ast properties\n !path.node.id[NOT_LOCAL_BINDING])\n ) {\n path.scope.registerBinding(\"local\", path.get(\"id\"), path);\n }\n },\n\n TSTypeAnnotation(path) {\n path.skip();\n },\n};\n\nlet scopeVisitor: ExplodedVisitor<CollectVisitorState>;\n\nlet uid = 0;\n\nexport type { Binding };\n\nexport { Scope as default };\nclass Scope {\n uid;\n\n path: NodePath;\n block: t.Pattern | t.Scopable;\n\n inited;\n\n labels: Map<string, NodePath<t.LabeledStatement>>;\n bindings: { [name: string]: Binding };\n /** Only defined in the program scope */\n referencesSet?: Set<string>;\n globals: { [name: string]: t.Identifier | t.JSXIdentifier };\n /** Only defined in the program scope */\n uidsSet?: Set<string>;\n data: { [key: string | symbol]: unknown };\n crawling: boolean;\n\n /**\n * This searches the current \"scope\" and collects all references/bindings\n * within.\n */\n constructor(path: NodePath<t.Pattern | t.Scopable>) {\n const { node } = path;\n const cached = scopeCache.get(node);\n // Sometimes, a scopable path is placed higher in the AST tree.\n // In these cases, have to create a new Scope.\n if (cached?.path === path) {\n return cached;\n }\n scopeCache.set(node, this);\n\n this.uid = uid++;\n\n this.block = node;\n this.path = path;\n\n this.labels = new Map();\n this.inited = false;\n\n if (!process.env.BABEL_8_BREAKING) {\n // Shadow the Babel 8 removal getters\n Object.defineProperties(this, {\n references: {\n enumerable: true,\n configurable: true,\n writable: true,\n value: Object.create(null),\n },\n uids: {\n enumerable: true,\n configurable: true,\n writable: true,\n value: Object.create(null),\n },\n });\n }\n }\n\n /**\n * Globals.\n */\n\n static globals = [...globalsBuiltinLower, ...globalsBuiltinUpper];\n\n /**\n * Variables available in current context.\n */\n\n static contextVariables = [\"arguments\", \"undefined\", \"Infinity\", \"NaN\"];\n\n get parent() {\n let parent,\n path = this.path;\n do {\n // Skip method scope if coming from inside computed key or decorator expression\n const shouldSkip = path.key === \"key\" || path.listKey === \"decorators\";\n path = path.parentPath;\n if (shouldSkip && path.isMethod()) path = path.parentPath;\n if (path?.isScope()) parent = path;\n } while (path && !parent);\n\n return parent?.scope;\n }\n\n get references() {\n throw new Error(\n \"Scope#references is not available in Babel 8. Use Scope#referencesSet instead.\",\n );\n }\n\n get uids() {\n throw new Error(\n \"Scope#uids is not available in Babel 8. Use Scope#uidsSet instead.\",\n );\n }\n\n /**\n * Generate a unique identifier and add it to the current scope.\n */\n\n generateDeclaredUidIdentifier(name?: string) {\n const id = this.generateUidIdentifier(name);\n this.push({ id });\n return cloneNode(id);\n }\n\n /**\n * Generate a unique identifier.\n */\n\n generateUidIdentifier(name?: string) {\n return identifier(this.generateUid(name));\n }\n\n /**\n * Generate a unique `_id1` binding.\n */\n\n generateUid(name: string = \"temp\"): string {\n name = toIdentifier(name).replace(/^_+/, \"\").replace(/\\d+$/g, \"\");\n\n let uid;\n let i = 0;\n do {\n uid = `_${name}`;\n\n // Ideally we would just use (i - 1) as the suffix, but that generates\n // unnecessary changes in every single file generated by Babel :)\n //\n // i: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ...\n // suffix: (empty) 2 3 4 5 6 7 8 9 0 1 10 11 12 13 ...\n if (i >= 11) uid += i - 1;\n else if (i >= 9) uid += i - 9;\n else if (i >= 1) uid += i + 1;\n i++;\n } while (\n this.hasLabel(uid) ||\n this.hasBinding(uid) ||\n this.hasGlobal(uid) ||\n this.hasReference(uid)\n );\n\n const program = this.getProgramParent();\n if (process.env.BABEL_8_BREAKING) {\n program.referencesSet.add(uid);\n program.uidsSet.add(uid);\n } else {\n // @ts-expect-error Babel 7\n program.references[uid] = true;\n // @ts-expect-error Babel 7\n program.uids[uid] = true;\n }\n\n return uid;\n }\n\n generateUidBasedOnNode(node: t.Node, defaultName?: string) {\n const parts: NodePart[] = [];\n gatherNodeParts(node, parts);\n\n let id = parts.join(\"$\");\n id = id.replace(/^_/, \"\") || defaultName || \"ref\";\n\n return this.generateUid(id.slice(0, 20));\n }\n\n /**\n * Generate a unique identifier based on a node.\n */\n\n generateUidIdentifierBasedOnNode(node: t.Node, defaultName?: string) {\n return identifier(this.generateUidBasedOnNode(node, defaultName));\n }\n\n /**\n * Determine whether evaluating the specific input `node` is a consequenceless reference. ie.\n * evaluating it won't result in potentially arbitrary code from being ran. The following are\n * allowed and determined not to cause side effects:\n *\n * - `this` expressions\n * - `super` expressions\n * - Bound identifiers\n */\n\n isStatic(node: t.Node): boolean {\n if (isThisExpression(node) || isSuper(node) || isTopicReference(node)) {\n return true;\n }\n\n if (isIdentifier(node)) {\n const binding = this.getBinding(node.name);\n if (binding) {\n return binding.constant;\n } else {\n return this.hasBinding(node.name);\n }\n }\n\n return false;\n }\n\n /**\n * Possibly generate a memoised identifier if it is not static and has consequences.\n */\n\n maybeGenerateMemoised(node: t.Node, dontPush?: boolean) {\n if (this.isStatic(node)) {\n return null;\n } else {\n const id = this.generateUidIdentifierBasedOnNode(node);\n if (!dontPush) {\n this.push({ id });\n return cloneNode(id);\n }\n return id;\n }\n }\n\n checkBlockScopedCollisions(\n local: Binding,\n kind: BindingKind,\n name: string,\n id: any,\n ) {\n // ignore parameters\n if (kind === \"param\") return;\n\n // Ignore existing binding if it's the name of the current function or\n // class expression\n if (local.kind === \"local\") return;\n\n const duplicate =\n // don't allow duplicate bindings to exist alongside\n kind === \"let\" ||\n local.kind === \"let\" ||\n local.kind === \"const\" ||\n local.kind === \"module\" ||\n // don't allow a local of param with a kind of let\n (local.kind === \"param\" && kind === \"const\");\n\n if (duplicate) {\n throw this.path.hub.buildError(\n id,\n `Duplicate declaration \"${name}\"`,\n TypeError,\n );\n }\n }\n\n rename(\n oldName: string,\n newName?: string,\n // prettier-ignore\n /* Babel 7 - block?: t.Pattern | t.Scopable */\n ) {\n const binding = this.getBinding(oldName);\n if (binding) {\n newName ||= this.generateUidIdentifier(oldName).name;\n const renamer = new Renamer(binding, oldName, newName);\n if (process.env.BABEL_8_BREAKING) {\n renamer.rename();\n } else {\n // @ts-ignore(Babel 7 vs Babel 8) TODO: Delete this\n renamer.rename(arguments[2]);\n }\n }\n }\n\n dump() {\n const sep = \"-\".repeat(60);\n console.log(sep);\n let scope: Scope = this;\n do {\n console.log(\"#\", scope.block.type);\n for (const name of Object.keys(scope.bindings)) {\n const binding = scope.bindings[name];\n console.log(\" -\", name, {\n constant: binding.constant,\n references: binding.references,\n violations: binding.constantViolations.length,\n kind: binding.kind,\n });\n }\n } while ((scope = scope.parent));\n console.log(sep);\n }\n\n hasLabel(name: string) {\n return !!this.getLabel(name);\n }\n\n getLabel(name: string) {\n return this.labels.get(name);\n }\n\n registerLabel(path: NodePath<t.LabeledStatement>) {\n this.labels.set(path.node.label.name, path);\n }\n\n registerDeclaration(path: NodePath) {\n if (path.isLabeledStatement()) {\n this.registerLabel(path);\n } else if (path.isFunctionDeclaration()) {\n this.registerBinding(\"hoisted\", path.get(\"id\"), path);\n } else if (path.isVariableDeclaration()) {\n const declarations = path.get(\"declarations\");\n const { kind } = path.node;\n for (const declar of declarations) {\n this.registerBinding(\n kind === \"using\" || kind === \"await using\" ? \"const\" : kind,\n declar,\n );\n }\n } else if (path.isClassDeclaration()) {\n if (path.node.declare) return;\n this.registerBinding(\"let\", path);\n } else if (path.isImportDeclaration()) {\n const isTypeDeclaration =\n path.node.importKind === \"type\" || path.node.importKind === \"typeof\";\n const specifiers = path.get(\"specifiers\");\n for (const specifier of specifiers) {\n const isTypeSpecifier =\n isTypeDeclaration ||\n (specifier.isImportSpecifier() &&\n (specifier.node.importKind === \"type\" ||\n specifier.node.importKind === \"typeof\"));\n\n this.registerBinding(isTypeSpecifier ? \"unknown\" : \"module\", specifier);\n }\n } else if (path.isExportDeclaration()) {\n // todo: improve babel-types\n const declar = path.get(\"declaration\") as NodePath;\n if (\n declar.isClassDeclaration() ||\n declar.isFunctionDeclaration() ||\n declar.isVariableDeclaration()\n ) {\n this.registerDeclaration(declar);\n }\n } else {\n this.registerBinding(\"unknown\", path);\n }\n }\n\n buildUndefinedNode() {\n return buildUndefinedNode();\n }\n\n registerConstantViolation(path: NodePath) {\n const ids = path.getAssignmentIdentifiers();\n for (const name of Object.keys(ids)) {\n this.getBinding(name)?.reassign(path);\n }\n }\n\n registerBinding(\n kind: Binding[\"kind\"],\n path: NodePath,\n bindingPath: NodePath = path,\n ) {\n if (!kind) throw new ReferenceError(\"no `kind`\");\n\n if (path.isVariableDeclaration()) {\n const declarators: Array<NodePath> = path.get(\"declarations\");\n for (const declar of declarators) {\n this.registerBinding(kind, declar);\n }\n return;\n }\n\n const parent = this.getProgramParent();\n const ids = path.getOuterBindingIdentifiers(true);\n\n for (const name of Object.keys(ids)) {\n if (process.env.BABEL_8_BREAKING) {\n parent.referencesSet.add(name);\n } else {\n // @ts-expect-error Babel 7\n parent.references[name] = true;\n }\n\n for (const id of ids[name]) {\n const local = this.getOwnBinding(name);\n\n if (local) {\n // same identifier so continue safely as we're likely trying to register it\n // multiple times\n if (local.identifier === id) continue;\n\n this.checkBlockScopedCollisions(local, kind, name, id);\n }\n\n // A redeclaration of an existing variable is a modification\n if (local) {\n local.reassign(bindingPath);\n } else {\n this.bindings[name] = new Binding({\n identifier: id,\n scope: this,\n path: bindingPath,\n kind: kind,\n });\n }\n }\n }\n }\n\n addGlobal(node: t.Identifier | t.JSXIdentifier) {\n this.globals[node.name] = node;\n }\n\n hasUid(name: string): boolean {\n if (process.env.BABEL_8_BREAKING) {\n return this.getProgramParent().uidsSet.has(name);\n } else {\n let scope: Scope = this;\n\n do {\n // @ts-expect-error Babel 7\n if (scope.uids[name]) return true;\n } while ((scope = scope.parent));\n\n return false;\n }\n }\n\n hasGlobal(name: string): boolean {\n let scope: Scope = this;\n\n do {\n if (scope.globals[name]) return true;\n } while ((scope = scope.parent));\n\n return false;\n }\n\n hasReference(name: string): boolean {\n if (process.env.BABEL_8_BREAKING) {\n return this.getProgramParent().referencesSet.has(name);\n } else {\n // @ts-expect-error Babel 7\n return !!this.getProgramParent().references[name];\n }\n }\n\n isPure(node: t.Node, constantsOnly?: boolean): boolean {\n if (isIdentifier(node)) {\n const binding = this.getBinding(node.name);\n if (!binding) return false;\n if (constantsOnly) return binding.constant;\n return true;\n } else if (\n isThisExpression(node) ||\n isMetaProperty(node) ||\n isTopicReference(node) ||\n isPrivateName(node)\n ) {\n return true;\n } else if (isClass(node)) {\n if (node.superClass && !this.isPure(node.superClass, constantsOnly)) {\n return false;\n }\n if (node.decorators?.length > 0) {\n return false;\n }\n return this.isPure(node.body, constantsOnly);\n } else if (isClassBody(node)) {\n for (const method of node.body) {\n if (!this.isPure(method, constantsOnly)) return false;\n }\n return true;\n } else if (isBinary(node)) {\n return (\n this.isPure(node.left, constantsOnly) &&\n this.isPure(node.right, constantsOnly)\n );\n } else if (isArrayExpression(node) || isTupleExpression(node)) {\n for (const elem of node.elements) {\n if (elem !== null && !this.isPure(elem, constantsOnly)) return false;\n }\n return true;\n } else if (isObjectExpression(node) || isRecordExpression(node)) {\n for (const prop of node.properties) {\n if (!this.isPure(prop, constantsOnly)) return false;\n }\n return true;\n } else if (isMethod(node)) {\n if (node.computed && !this.isPure(node.key, constantsOnly)) return false;\n if (node.decorators?.length > 0) {\n return false;\n }\n return true;\n } else if (isProperty(node)) {\n // @ts-expect-error todo(flow->ts): computed in not present on private properties\n if (node.computed && !this.isPure(node.key, constantsOnly)) return false;\n if (node.decorators?.length > 0) {\n return false;\n }\n if (isObjectProperty(node) || node.static) {\n if (node.value !== null && !this.isPure(node.value, constantsOnly)) {\n return false;\n }\n }\n return true;\n } else if (isUnaryExpression(node)) {\n return this.isPure(node.argument, constantsOnly);\n } else if (isTemplateLiteral(node)) {\n for (const expression of node.expressions) {\n if (!this.isPure(expression, constantsOnly)) return false;\n }\n return true;\n } else if (isTaggedTemplateExpression(node)) {\n return (\n matchesPattern(node.tag, \"String.raw\") &&\n !this.hasBinding(\"String\", { noGlobals: true }) &&\n this.isPure(node.quasi, constantsOnly)\n );\n } else if (isMemberExpression(node)) {\n return (\n !node.computed &&\n isIdentifier(node.object) &&\n node.object.name === \"Symbol\" &&\n isIdentifier(node.property) &&\n node.property.name !== \"for\" &&\n !this.hasBinding(\"Symbol\", { noGlobals: true })\n );\n } else if (isCallExpression(node)) {\n return (\n matchesPattern(node.callee, \"Symbol.for\") &&\n !this.hasBinding(\"Symbol\", { noGlobals: true }) &&\n node.arguments.length === 1 &&\n t.isStringLiteral(node.arguments[0])\n );\n } else {\n return isPureish(node);\n }\n }\n\n /**\n * Set some arbitrary data on the current scope.\n */\n\n setData(key: string | symbol, val: any) {\n return (this.data[key] = val);\n }\n\n /**\n * Recursively walk up scope tree looking for the data `key`.\n */\n\n getData(key: string | symbol): any {\n let scope: Scope = this;\n do {\n const data = scope.data[key];\n if (data != null) return data;\n } while ((scope = scope.parent));\n }\n\n /**\n * Recursively walk up scope tree looking for the data `key` and if it exists,\n * remove it.\n */\n\n removeData(key: string) {\n let scope: Scope = this;\n do {\n const data = scope.data[key];\n if (data != null) scope.data[key] = null;\n } while ((scope = scope.parent));\n }\n\n init() {\n if (!this.inited) {\n this.inited = true;\n this.crawl();\n }\n }\n\n crawl() {\n const path = this.path;\n\n resetScope(this);\n this.data = Object.create(null);\n\n let scope: Scope = this;\n do {\n if (scope.crawling) return;\n if (scope.path.isProgram()) {\n break;\n }\n } while ((scope = scope.parent));\n\n const programParent = scope;\n\n const state: CollectVisitorState = {\n references: [],\n constantViolations: [],\n assignments: [],\n };\n\n this.crawling = true;\n scopeVisitor ||= traverse.visitors.merge([\n {\n Scope(path) {\n resetScope(path.scope);\n },\n },\n collectorVisitor,\n ]);\n // traverse does not visit the root node, here we explicitly collect\n // root node binding info when the root is not a Program.\n if (path.type !== \"Program\") {\n for (const visit of scopeVisitor.enter) {\n visit.call(state, path, state);\n }\n const typeVisitors = scopeVisitor[path.type];\n if (typeVisitors) {\n for (const visit of typeVisitors.enter) {\n visit.call(state, path, state);\n }\n }\n }\n path.traverse(scopeVisitor, state);\n this.crawling = false;\n\n // register assignments\n for (const path of state.assignments) {\n // register undeclared bindings as globals\n const ids = path.getAssignmentIdentifiers();\n for (const name of Object.keys(ids)) {\n if (path.scope.getBinding(name)) continue;\n programParent.addGlobal(ids[name]);\n }\n\n // register as constant violation\n path.scope.registerConstantViolation(path);\n }\n\n // register references\n for (const ref of state.references) {\n const binding = ref.scope.getBinding(ref.node.name);\n if (binding) {\n binding.reference(ref);\n } else {\n programParent.addGlobal(ref.node);\n }\n }\n\n // register constant violations\n for (const path of state.constantViolations) {\n path.scope.registerConstantViolation(path);\n }\n }\n\n push(opts: {\n id: t.ArrayPattern | t.Identifier | t.ObjectPattern;\n init?: t.Expression;\n unique?: boolean;\n _blockHoist?: number | undefined;\n kind?: \"var\" | \"let\" | \"const\";\n }) {\n let path = this.path;\n\n if (path.isPattern()) {\n path = this.getPatternParent().path;\n } else if (!path.isBlockStatement() && !path.isProgram()) {\n path = this.getBlockParent().path;\n }\n\n if (path.isSwitchStatement()) {\n path = (this.getFunctionParent() || this.getProgramParent()).path;\n }\n\n const { init, unique, kind = \"var\", id } = opts;\n\n // When injecting a non-const non-initialized binding inside\n // an IIFE, if the number of call arguments is less than or\n // equal to the number of function parameters, we can safely\n // inject the binding into the parameter list.\n if (\n !init &&\n !unique &&\n (kind === \"var\" || kind === \"let\") &&\n path.isFunction() &&\n // @ts-expect-error ArrowFunctionExpression never has a name\n !path.node.name &&\n isCallExpression(path.parent, { callee: path.node }) &&\n path.parent.arguments.length <= path.node.params.length &&\n isIdentifier(id)\n ) {\n path.pushContainer(\"params\", id);\n path.scope.registerBinding(\n \"param\",\n path.get(\"params\")[path.node.params.length - 1],\n );\n return;\n }\n\n if (path.isLoop() || path.isCatchClause() || path.isFunction()) {\n path.ensureBlock();\n path = path.get(\"body\");\n }\n\n const blockHoist = opts._blockHoist == null ? 2 : opts._blockHoist;\n\n const dataKey = `declaration:${kind}:${blockHoist}`;\n let declarPath = !unique && path.getData(dataKey);\n\n if (!declarPath) {\n const declar = variableDeclaration(kind, []);\n // @ts-expect-error todo(flow->ts): avoid modifying nodes\n declar._blockHoist = blockHoist;\n\n [declarPath] = (path as NodePath<t.BlockStatement>).unshiftContainer(\n \"body\",\n [declar],\n );\n if (!unique) path.setData(dataKey, declarPath);\n }\n\n const declarator = variableDeclarator(id, init);\n const len = declarPath.node.declarations.push(declarator);\n path.scope.registerBinding(kind, declarPath.get(\"declarations\")[len - 1]);\n }\n\n /**\n * Walk up to the top of the scope tree and get the `Program`.\n */\n\n getProgramParent(): Scope & {\n referencesSet: Set<string>;\n uidsSet: Set<string>;\n } {\n let scope: Scope = this;\n do {\n if (scope.path.isProgram()) {\n return scope as Scope & {\n referencesSet: Set<string>;\n uidsSet: Set<string>;\n };\n }\n } while ((scope = scope.parent));\n throw new Error(\"Couldn't find a Program\");\n }\n\n /**\n * Walk up the scope tree until we hit either a Function or return null.\n */\n\n getFunctionParent(): Scope | null {\n let scope: Scope = this;\n do {\n if (scope.path.isFunctionParent()) {\n return scope;\n }\n } while ((scope = scope.parent));\n return null;\n }\n\n /**\n * Walk up the scope tree until we hit either a BlockStatement/Loop/Program/Function/Switch or reach the\n * very top and hit Program.\n */\n\n getBlockParent() {\n let scope: Scope = this;\n do {\n if (scope.path.isBlockParent()) {\n return scope;\n }\n } while ((scope = scope.parent));\n throw new Error(\n \"We couldn't find a BlockStatement, For, Switch, Function, Loop or Program...\",\n );\n }\n\n /**\n * Walk up from a pattern scope (function param initializer) until we hit a non-pattern scope,\n * then returns its block parent\n * @returns An ancestry scope whose path is a block parent\n */\n getPatternParent() {\n let scope: Scope = this;\n do {\n if (!scope.path.isPattern()) {\n return scope.getBlockParent();\n }\n } while ((scope = scope.parent.parent));\n throw new Error(\n \"We couldn't find a BlockStatement, For, Switch, Function, Loop or Program...\",\n );\n }\n\n /**\n * Walks the scope tree and gathers **all** bindings.\n */\n\n getAllBindings(): Record<string, Binding> {\n const ids = Object.create(null);\n\n let scope: Scope = this;\n do {\n for (const key of Object.keys(scope.bindings)) {\n if (key in ids === false) {\n ids[key] = scope.bindings[key];\n }\n }\n scope = scope.parent;\n } while (scope);\n\n return ids;\n }\n\n bindingIdentifierEquals(name: string, node: t.Node): boolean {\n return this.getBindingIdentifier(name) === node;\n }\n\n getBinding(name: string): Binding | undefined {\n let scope: Scope = this;\n let previousPath;\n\n do {\n const binding = scope.getOwnBinding(name);\n if (binding) {\n // Check if a pattern is a part of parameter expressions.\n // Note: for performance reason we skip checking previousPath.parentPath.isFunction()\n // because `scope.path` is validated as scope in packages/babel-types/src/validators/isScope.js\n // That is, if a scope path is pattern, its parent must be Function/CatchClause\n\n // Spec 9.2.10.28: The closure created by this expression should not have visibility of\n // declarations in the function body. If the binding is not a `param`-kind (as function parameters)\n // or `local`-kind (as id in function expression),\n // then it must be defined inside the function body, thus it should be skipped\n if (\n previousPath?.isPattern() &&\n binding.kind !== \"param\" &&\n binding.kind !== \"local\"\n ) {\n // do nothing\n } else {\n return binding;\n }\n } else if (\n !binding &&\n name === \"arguments\" &&\n scope.path.isFunction() &&\n !scope.path.isArrowFunctionExpression()\n ) {\n break;\n }\n previousPath = scope.path;\n } while ((scope = scope.parent));\n }\n\n getOwnBinding(name: string): Binding | undefined {\n return this.bindings[name];\n }\n\n // todo: return probably can be undefined…\n getBindingIdentifier(name: string): t.Identifier {\n return this.getBinding(name)?.identifier;\n }\n\n // todo: flow->ts return probably can be undefined\n getOwnBindingIdentifier(name: string): t.Identifier {\n const binding = this.bindings[name];\n return binding?.identifier;\n }\n\n hasOwnBinding(name: string) {\n return !!this.getOwnBinding(name);\n }\n\n // By default, we consider generated UIDs as bindings.\n // This is because they are almost always used to declare variables,\n // and since the scope isn't always up-to-date it's better to assume that\n // there is a variable with that name. The `noUids` option can be used to\n // turn off this behavior, for example if you know that the generate UID\n // was used to declare a variable in a different scope.\n hasBinding(\n name: string,\n opts?:\n | boolean\n | { noGlobals?: boolean; noUids?: boolean; upToScope?: Scope },\n ) {\n if (!name) return false;\n // TODO: Only accept the object form.\n let noGlobals;\n let noUids;\n let upToScope;\n if (typeof opts === \"object\") {\n noGlobals = opts.noGlobals;\n noUids = opts.noUids;\n upToScope = opts.upToScope;\n } else if (typeof opts === \"boolean\") {\n noGlobals = opts;\n }\n let scope: Scope = this;\n do {\n if (upToScope === scope) {\n break;\n }\n if (scope.hasOwnBinding(name)) {\n return true;\n }\n } while ((scope = scope.parent));\n\n if (!noUids && this.hasUid(name)) return true;\n if (!noGlobals && Scope.globals.includes(name)) return true;\n if (!noGlobals && Scope.contextVariables.includes(name)) return true;\n return false;\n }\n\n parentHasBinding(\n name: string,\n opts?: { noGlobals?: boolean; noUids?: boolean },\n ) {\n return this.parent?.hasBinding(name, opts);\n }\n\n /**\n * Move a binding of `name` to another `scope`.\n */\n\n moveBindingTo(name: string, scope: Scope) {\n const info = this.getBinding(name);\n if (info) {\n info.scope.removeOwnBinding(name);\n info.scope = scope;\n scope.bindings[name] = info;\n }\n }\n\n removeOwnBinding(name: string) {\n delete this.bindings[name];\n }\n\n removeBinding(name: string) {\n // clear literal binding\n this.getBinding(name)?.scope.removeOwnBinding(name);\n\n // clear uids with this name - https://github.com/babel/babel/issues/2101\n if (process.env.BABEL_8_BREAKING) {\n this.getProgramParent().uidsSet.delete(name);\n } else {\n let scope: Scope = this;\n do {\n // @ts-expect-error Babel 7\n if (scope.uids[name]) {\n // @ts-expect-error Babel 7\n scope.uids[name] = false;\n }\n } while ((scope = scope.parent));\n }\n }\n\n /**\n * Hoist all the `var` variable to the beginning of the function/program\n * scope where their binding will be actually defined. For exmaple,\n * { var x = 2 }\n * will be transformed to\n * var x; { x = 2 }\n *\n * @param emit A custom function to emit `var` declarations, for example to\n * emit them in a different scope.\n */\n hoistVariables(\n emit: (id: t.Identifier, hasInit: boolean) => void = id =>\n this.push({ id }),\n ) {\n this.crawl();\n\n const seen = new Set();\n for (const name of Object.keys(this.bindings)) {\n const binding = this.bindings[name];\n if (!binding) continue;\n const { path } = binding;\n if (!path.isVariableDeclarator()) continue;\n const { parent, parentPath } = path;\n\n if (parent.kind !== \"var\" || seen.has(parent)) continue;\n seen.add(path.parent);\n\n let firstId;\n const init = [];\n for (const decl of parent.declarations) {\n firstId ??= decl.id;\n if (decl.init) {\n init.push(\n assignmentExpression(\n \"=\",\n // var declarator must not be a void pattern\n decl.id as Exclude<t.VariableDeclarator[\"id\"], t.VoidPattern>,\n decl.init,\n ),\n );\n }\n\n const ids = Object.keys(getBindingIdentifiers(decl, false, true, true));\n for (const name of ids) {\n emit(identifier(name), decl.init != null);\n }\n }\n\n // for (var i in test)\n if (parentPath.parentPath.isFor({ left: parent })) {\n parentPath.replaceWith(firstId);\n } else if (init.length === 0) {\n parentPath.remove();\n } else {\n const expr = init.length === 1 ? init[0] : sequenceExpression(init);\n if (parentPath.parentPath.isForStatement({ init: parent })) {\n parentPath.replaceWith(expr);\n } else {\n parentPath.replaceWith(expressionStatement(expr));\n }\n }\n }\n }\n}\n\nif (!process.env.BABEL_8_BREAKING && !USE_ESM) {\n /** @deprecated Not used in our codebase */\n // @ts-expect-error Babel 7 compatibility\n Scope.prototype._renameFromMap = function _renameFromMap(\n map: Record<string | symbol, unknown>,\n oldName: string | symbol,\n newName: string | symbol,\n value: unknown,\n ) {\n if (map[oldName]) {\n map[newName] = value;\n map[oldName] = null;\n }\n };\n\n /**\n * Traverse node with current scope and path.\n *\n * !!! WARNING !!!\n * This method assumes that `this.path` is the NodePath representing `node`.\n * After running the traversal, the `.parentPath` of the NodePaths\n * corresponding to `node`'s children will be set to `this.path`.\n *\n * There is no good reason to use this method, since the only safe way to use\n * it is equivalent to `scope.path.traverse(opts, state)`.\n */\n // @ts-expect-error Babel 7 compatibility\n Scope.prototype.traverse = function <S>(\n this: Scope,\n node: any,\n opts: any,\n state?: S,\n ) {\n traverse(node, opts, this, state, this.path);\n };\n\n /**\n * Generate an `_id1`.\n */\n // @ts-expect-error Babel 7 compatibility\n Scope.prototype._generateUid = function _generateUid(\n name: string,\n i: number,\n ) {\n let id = name;\n if (i > 1) id += i;\n return `_${id}`;\n };\n\n // TODO: (Babel 8) Split i in two parameters, and use an object of flags\n // @ts-expect-error Babel 7 compatibility\n Scope.prototype.toArray = function toArray(\n this: Scope,\n node: t.Node,\n i?: number | boolean,\n arrayLikeIsIterable?: boolean | void,\n ) {\n if (isIdentifier(node)) {\n const binding = this.getBinding(node.name);\n if (binding?.constant && binding.path.isGenericType(\"Array\")) {\n return node;\n }\n }\n\n if (isArrayExpression(node)) {\n return node;\n }\n\n if (isIdentifier(node, { name: \"arguments\" })) {\n return callExpression(\n memberExpression(\n memberExpression(\n memberExpression(identifier(\"Array\"), identifier(\"prototype\")),\n identifier(\"slice\"),\n ),\n identifier(\"call\"),\n ),\n [node],\n );\n }\n\n let helperName;\n const args = [node];\n if (i === true) {\n // Used in array-spread to create an array.\n helperName = \"toConsumableArray\";\n } else if (typeof i === \"number\") {\n args.push(numericLiteral(i));\n\n // Used in array-rest to create an array from a subset of an iterable.\n helperName = \"slicedToArray\";\n // TODO if (this.hub.isLoose(\"es6.forOf\")) helperName += \"-loose\";\n } else {\n // Used in array-rest to create an array\n helperName = \"toArray\";\n }\n\n if (arrayLikeIsIterable) {\n args.unshift(this.path.hub.addHelper(helperName));\n helperName = \"maybeArrayLike\";\n }\n\n // @ts-expect-error todo(flow->ts): t.Node is not valid to use in args, function argument typeneeds to be clarified\n return callExpression(this.path.hub.addHelper(helperName), args);\n };\n\n /**\n * Walks the scope tree and gathers all declarations of `kind`.\n */\n // @ts-expect-error Babel 7 compatibility\n Scope.prototype.getAllBindingsOfKind = function getAllBindingsOfKind(\n ...kinds: string[]\n ): Record<string, Binding> {\n const ids = Object.create(null);\n\n for (const kind of kinds) {\n let scope: Scope = this;\n do {\n for (const name of Object.keys(scope.bindings)) {\n const binding = scope.bindings[name];\n if (binding.kind === kind) ids[name] = binding;\n }\n scope = scope.parent;\n } while (scope);\n }\n\n return ids;\n };\n\n Object.defineProperties(Scope.prototype, {\n parentBlock: {\n configurable: true,\n enumerable: true,\n get(this: Scope) {\n return this.path.parent;\n },\n },\n hub: {\n configurable: true,\n enumerable: true,\n get(this: Scope) {\n return this.path.hub;\n },\n },\n });\n}\n\ntype _Binding = Binding;\n// eslint-disable-next-line @typescript-eslint/no-namespace\nnamespace Scope {\n export type Binding = _Binding;\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -0,0 +1,131 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
var t = require("@babel/types");
|
8
|
+
var _t = t;
|
9
|
+
var _traverseNode = require("../../traverse-node.js");
|
10
|
+
var _visitors = require("../../visitors.js");
|
11
|
+
var _context = require("../../path/context.js");
|
12
|
+
const {
|
13
|
+
getAssignmentIdentifiers
|
14
|
+
} = _t;
|
15
|
+
const renameVisitor = {
|
16
|
+
ReferencedIdentifier({
|
17
|
+
node
|
18
|
+
}, state) {
|
19
|
+
if (node.name === state.oldName) {
|
20
|
+
node.name = state.newName;
|
21
|
+
}
|
22
|
+
},
|
23
|
+
Scope(path, state) {
|
24
|
+
if (!path.scope.bindingIdentifierEquals(state.oldName, state.binding.identifier)) {
|
25
|
+
path.skip();
|
26
|
+
if (path.isMethod()) {
|
27
|
+
if (!path.requeueComputedKeyAndDecorators) {
|
28
|
+
_context.requeueComputedKeyAndDecorators.call(path);
|
29
|
+
} else {
|
30
|
+
path.requeueComputedKeyAndDecorators();
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
},
|
35
|
+
ObjectProperty({
|
36
|
+
node,
|
37
|
+
scope
|
38
|
+
}, state) {
|
39
|
+
const {
|
40
|
+
name
|
41
|
+
} = node.key;
|
42
|
+
if (node.shorthand && (name === state.oldName || name === state.newName) && scope.getBindingIdentifier(name) === state.binding.identifier) {
|
43
|
+
node.shorthand = false;
|
44
|
+
{
|
45
|
+
var _node$extra;
|
46
|
+
if ((_node$extra = node.extra) != null && _node$extra.shorthand) node.extra.shorthand = false;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
},
|
50
|
+
"AssignmentExpression|Declaration|VariableDeclarator"(path, state) {
|
51
|
+
if (path.isVariableDeclaration()) return;
|
52
|
+
const ids = path.isAssignmentExpression() ? getAssignmentIdentifiers(path.node) : path.getOuterBindingIdentifiers();
|
53
|
+
for (const name in ids) {
|
54
|
+
if (name === state.oldName) ids[name].name = state.newName;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
};
|
58
|
+
class Renamer {
|
59
|
+
constructor(binding, oldName, newName) {
|
60
|
+
this.newName = newName;
|
61
|
+
this.oldName = oldName;
|
62
|
+
this.binding = binding;
|
63
|
+
}
|
64
|
+
maybeConvertFromExportDeclaration(parentDeclar) {
|
65
|
+
const maybeExportDeclar = parentDeclar.parentPath;
|
66
|
+
if (!maybeExportDeclar.isExportDeclaration()) {
|
67
|
+
return;
|
68
|
+
}
|
69
|
+
if (maybeExportDeclar.isExportDefaultDeclaration()) {
|
70
|
+
const {
|
71
|
+
declaration
|
72
|
+
} = maybeExportDeclar.node;
|
73
|
+
if (t.isDeclaration(declaration) && !declaration.id) {
|
74
|
+
return;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
if (maybeExportDeclar.isExportAllDeclaration()) {
|
78
|
+
return;
|
79
|
+
}
|
80
|
+
maybeExportDeclar.splitExportDeclaration();
|
81
|
+
}
|
82
|
+
maybeConvertFromClassFunctionDeclaration(path) {
|
83
|
+
return path;
|
84
|
+
}
|
85
|
+
maybeConvertFromClassFunctionExpression(path) {
|
86
|
+
return path;
|
87
|
+
}
|
88
|
+
rename() {
|
89
|
+
const {
|
90
|
+
binding,
|
91
|
+
oldName,
|
92
|
+
newName
|
93
|
+
} = this;
|
94
|
+
const {
|
95
|
+
scope,
|
96
|
+
path
|
97
|
+
} = binding;
|
98
|
+
const parentDeclar = path.find(path => path.isDeclaration() || path.isFunctionExpression() || path.isClassExpression());
|
99
|
+
if (parentDeclar) {
|
100
|
+
const bindingIds = parentDeclar.getOuterBindingIdentifiers();
|
101
|
+
if (bindingIds[oldName] === binding.identifier) {
|
102
|
+
this.maybeConvertFromExportDeclaration(parentDeclar);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
const blockToTraverse = arguments[0] || scope.block;
|
106
|
+
const skipKeys = {
|
107
|
+
discriminant: true
|
108
|
+
};
|
109
|
+
if (t.isMethod(blockToTraverse)) {
|
110
|
+
if (blockToTraverse.computed) {
|
111
|
+
skipKeys.key = true;
|
112
|
+
}
|
113
|
+
if (!t.isObjectMethod(blockToTraverse)) {
|
114
|
+
skipKeys.decorators = true;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
(0, _traverseNode.traverseNode)(blockToTraverse, (0, _visitors.explode)(renameVisitor), scope, this, scope.path, skipKeys);
|
118
|
+
if (!arguments[0]) {
|
119
|
+
scope.removeOwnBinding(oldName);
|
120
|
+
scope.bindings[newName] = binding;
|
121
|
+
this.binding.identifier.name = newName;
|
122
|
+
}
|
123
|
+
if (parentDeclar) {
|
124
|
+
this.maybeConvertFromClassFunctionDeclaration(path);
|
125
|
+
this.maybeConvertFromClassFunctionExpression(path);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
}
|
129
|
+
exports.default = Renamer;
|
130
|
+
|
131
|
+
//# sourceMappingURL=renamer.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["t","require","_t","_traverseNode","_visitors","_context","getAssignmentIdentifiers","renameVisitor","ReferencedIdentifier","node","state","name","oldName","newName","Scope","path","scope","bindingIdentifierEquals","binding","identifier","skip","isMethod","requeueComputedKeyAndDecorators","call","ObjectProperty","key","shorthand","getBindingIdentifier","_node$extra","extra","AssignmentExpression|Declaration|VariableDeclarator","isVariableDeclaration","ids","isAssignmentExpression","getOuterBindingIdentifiers","Renamer","constructor","maybeConvertFromExportDeclaration","parentDeclar","maybeExportDeclar","parentPath","isExportDeclaration","isExportDefaultDeclaration","declaration","isDeclaration","id","isExportAllDeclaration","splitExportDeclaration","maybeConvertFromClassFunctionDeclaration","maybeConvertFromClassFunctionExpression","rename","find","isFunctionExpression","isClassExpression","bindingIds","blockToTraverse","arguments","block","skipKeys","discriminant","computed","isObjectMethod","decorators","traverseNode","explode","removeOwnBinding","bindings","exports","default"],"sources":["../../../src/scope/lib/renamer.ts"],"sourcesContent":["import type Binding from \"../binding.ts\";\nimport * as t from \"@babel/types\";\nimport type { NodePath, Visitor } from \"../../index.ts\";\nimport { traverseNode } from \"../../traverse-node.ts\";\nimport { explode } from \"../../visitors.ts\";\nimport { getAssignmentIdentifiers, type Identifier } from \"@babel/types\";\nimport { requeueComputedKeyAndDecorators } from \"../../path/context.ts\";\n\nconst renameVisitor: Visitor<Renamer> = {\n ReferencedIdentifier({ node }, state) {\n if (node.name === state.oldName) {\n node.name = state.newName;\n }\n },\n\n Scope(path, state) {\n if (\n !path.scope.bindingIdentifierEquals(\n state.oldName,\n state.binding.identifier,\n )\n ) {\n path.skip();\n if (path.isMethod()) {\n if (\n !process.env.BABEL_8_BREAKING &&\n !path.requeueComputedKeyAndDecorators\n ) {\n // See https://github.com/babel/babel/issues/16694\n requeueComputedKeyAndDecorators.call(path);\n } else {\n path.requeueComputedKeyAndDecorators();\n }\n }\n }\n },\n\n ObjectProperty({ node, scope }, state) {\n const { name } = node.key as Identifier;\n if (\n node.shorthand &&\n // In destructuring the identifier is already renamed by the\n // AssignmentExpression|Declaration|VariableDeclarator visitor,\n // while in object literals it's renamed later by the\n // ReferencedIdentifier visitor.\n (name === state.oldName || name === state.newName) &&\n // Ignore shadowed bindings\n scope.getBindingIdentifier(name) === state.binding.identifier\n ) {\n node.shorthand = false;\n if (!process.env.BABEL_8_BREAKING) {\n if (node.extra?.shorthand) node.extra.shorthand = false;\n }\n }\n },\n\n \"AssignmentExpression|Declaration|VariableDeclarator\"(\n path: NodePath<\n t.AssignmentExpression | t.Declaration | t.VariableDeclarator\n >,\n state,\n ) {\n if (path.isVariableDeclaration()) return;\n const ids = path.isAssignmentExpression()\n ? // See https://github.com/babel/babel/issues/16694\n getAssignmentIdentifiers(path.node)\n : path.getOuterBindingIdentifiers();\n\n for (const name in ids) {\n if (name === state.oldName) ids[name].name = state.newName;\n }\n },\n};\n\nexport default class Renamer {\n constructor(binding: Binding, oldName: string, newName: string) {\n this.newName = newName;\n this.oldName = oldName;\n this.binding = binding;\n }\n\n declare oldName: string;\n declare newName: string;\n declare binding: Binding;\n\n maybeConvertFromExportDeclaration(parentDeclar: NodePath) {\n const maybeExportDeclar = parentDeclar.parentPath;\n\n if (!maybeExportDeclar.isExportDeclaration()) {\n return;\n }\n\n if (maybeExportDeclar.isExportDefaultDeclaration()) {\n const { declaration } = maybeExportDeclar.node;\n if (t.isDeclaration(declaration) && !declaration.id) {\n return;\n }\n }\n\n if (maybeExportDeclar.isExportAllDeclaration()) {\n return;\n }\n\n maybeExportDeclar.splitExportDeclaration();\n }\n\n maybeConvertFromClassFunctionDeclaration(path: NodePath) {\n return path; // TODO\n\n // // retain the `name` of a class/function declaration\n\n // if (!path.isFunctionDeclaration() && !path.isClassDeclaration()) return;\n // if (this.binding.kind !== \"hoisted\") return;\n\n // path.node.id = identifier(this.oldName);\n // path.node._blockHoist = 3;\n\n // path.replaceWith(\n // variableDeclaration(\"let\", [\n // variableDeclarator(identifier(this.newName), toExpression(path.node)),\n // ]),\n // );\n }\n\n maybeConvertFromClassFunctionExpression(path: NodePath) {\n return path; // TODO\n\n // // retain the `name` of a class/function expression\n\n // if (!path.isFunctionExpression() && !path.isClassExpression()) return;\n // if (this.binding.kind !== \"local\") return;\n\n // path.node.id = identifier(this.oldName);\n\n // this.binding.scope.parent.push({\n // id: identifier(this.newName),\n // });\n\n // path.replaceWith(\n // assignmentExpression(\"=\", identifier(this.newName), path.node),\n // );\n }\n\n rename(/* Babel 7 - block?: t.Pattern | t.Scopable */) {\n const { binding, oldName, newName } = this;\n const { scope, path } = binding;\n\n const parentDeclar = path.find(\n path =>\n path.isDeclaration() ||\n path.isFunctionExpression() ||\n path.isClassExpression(),\n );\n if (parentDeclar) {\n const bindingIds = parentDeclar.getOuterBindingIdentifiers();\n if (bindingIds[oldName] === binding.identifier) {\n // When we are renaming an exported identifier, we need to ensure that\n // the exported binding keeps the old name.\n this.maybeConvertFromExportDeclaration(parentDeclar);\n }\n }\n\n const blockToTraverse = process.env.BABEL_8_BREAKING\n ? scope.block\n : (arguments[0] as t.Pattern | t.Scopable) || scope.block;\n\n // When blockToTraverse is a SwitchStatement, the discriminant\n // is not part of the current scope and thus should be skipped.\n\n // const foo = {\n // get [x]() {\n // return x;\n // },\n // };\n const skipKeys: Record<string, true> = { discriminant: true };\n if (t.isMethod(blockToTraverse)) {\n if (blockToTraverse.computed) {\n skipKeys.key = true;\n }\n if (!t.isObjectMethod(blockToTraverse)) {\n skipKeys.decorators = true;\n }\n }\n\n traverseNode(\n blockToTraverse,\n explode(renameVisitor),\n scope,\n this,\n scope.path,\n skipKeys,\n );\n\n if (process.env.BABEL_8_BREAKING) {\n scope.removeOwnBinding(oldName);\n scope.bindings[newName] = binding;\n this.binding.identifier.name = newName;\n } else if (!arguments[0]) {\n scope.removeOwnBinding(oldName);\n scope.bindings[newName] = binding;\n this.binding.identifier.name = newName;\n }\n\n if (parentDeclar) {\n this.maybeConvertFromClassFunctionDeclaration(path);\n this.maybeConvertFromClassFunctionExpression(path);\n }\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -0,0 +1,138 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.traverseNode = traverseNode;
|
7
|
+
var _context = require("./context.js");
|
8
|
+
var _index = require("./path/index.js");
|
9
|
+
var _t = require("@babel/types");
|
10
|
+
var _context2 = require("./path/context.js");
|
11
|
+
const {
|
12
|
+
VISITOR_KEYS
|
13
|
+
} = _t;
|
14
|
+
function _visitPaths(ctx, paths) {
|
15
|
+
ctx.queue = paths;
|
16
|
+
ctx.priorityQueue = [];
|
17
|
+
const visited = new Set();
|
18
|
+
let stop = false;
|
19
|
+
let visitIndex = 0;
|
20
|
+
for (; visitIndex < paths.length;) {
|
21
|
+
const path = paths[visitIndex];
|
22
|
+
visitIndex++;
|
23
|
+
_context2.resync.call(path);
|
24
|
+
if (path.contexts.length === 0 || path.contexts[path.contexts.length - 1] !== ctx) {
|
25
|
+
_context2.pushContext.call(path, ctx);
|
26
|
+
}
|
27
|
+
if (path.key === null) continue;
|
28
|
+
const {
|
29
|
+
node
|
30
|
+
} = path;
|
31
|
+
if (visited.has(node)) continue;
|
32
|
+
if (node) visited.add(node);
|
33
|
+
if (_visit(ctx, path)) {
|
34
|
+
stop = true;
|
35
|
+
break;
|
36
|
+
}
|
37
|
+
if (ctx.priorityQueue.length) {
|
38
|
+
stop = _visitPaths(ctx, ctx.priorityQueue);
|
39
|
+
ctx.priorityQueue = [];
|
40
|
+
ctx.queue = paths;
|
41
|
+
if (stop) break;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
for (let i = 0; i < visitIndex; i++) {
|
45
|
+
_context2.popContext.call(paths[i]);
|
46
|
+
}
|
47
|
+
ctx.queue = null;
|
48
|
+
return stop;
|
49
|
+
}
|
50
|
+
function _visit(ctx, path) {
|
51
|
+
var _opts$denylist;
|
52
|
+
const node = path.node;
|
53
|
+
if (!node) {
|
54
|
+
return false;
|
55
|
+
}
|
56
|
+
const opts = ctx.opts;
|
57
|
+
const denylist = (_opts$denylist = opts.denylist) != null ? _opts$denylist : opts.blacklist;
|
58
|
+
if (denylist != null && denylist.includes(node.type)) {
|
59
|
+
return false;
|
60
|
+
}
|
61
|
+
if (opts.shouldSkip != null && opts.shouldSkip(path)) {
|
62
|
+
return false;
|
63
|
+
}
|
64
|
+
if (path.shouldSkip) return path.shouldStop;
|
65
|
+
if (_context2._call.call(path, opts.enter)) return path.shouldStop;
|
66
|
+
if (path.node) {
|
67
|
+
var _opts$node$type;
|
68
|
+
if (_context2._call.call(path, (_opts$node$type = opts[node.type]) == null ? void 0 : _opts$node$type.enter)) return path.shouldStop;
|
69
|
+
}
|
70
|
+
path.shouldStop = _traverse(path.node, opts, path.scope, ctx.state, path, path.skipKeys);
|
71
|
+
if (path.node) {
|
72
|
+
if (_context2._call.call(path, opts.exit)) return true;
|
73
|
+
}
|
74
|
+
if (path.node) {
|
75
|
+
var _opts$node$type2;
|
76
|
+
_context2._call.call(path, (_opts$node$type2 = opts[node.type]) == null ? void 0 : _opts$node$type2.exit);
|
77
|
+
}
|
78
|
+
return path.shouldStop;
|
79
|
+
}
|
80
|
+
function _traverse(node, opts, scope, state, path, skipKeys, visitSelf) {
|
81
|
+
const keys = VISITOR_KEYS[node.type];
|
82
|
+
if (!(keys != null && keys.length)) return false;
|
83
|
+
const ctx = new _context.default(scope, opts, state, path);
|
84
|
+
if (visitSelf) {
|
85
|
+
if (skipKeys != null && skipKeys[path.parentKey]) return false;
|
86
|
+
return _visitPaths(ctx, [path]);
|
87
|
+
}
|
88
|
+
for (const key of keys) {
|
89
|
+
if (skipKeys != null && skipKeys[key]) continue;
|
90
|
+
const prop = node[key];
|
91
|
+
if (!prop) continue;
|
92
|
+
if (Array.isArray(prop)) {
|
93
|
+
if (!prop.length) continue;
|
94
|
+
const paths = [];
|
95
|
+
for (let i = 0; i < prop.length; i++) {
|
96
|
+
const childPath = _index.default.get({
|
97
|
+
parentPath: path,
|
98
|
+
parent: node,
|
99
|
+
container: prop,
|
100
|
+
key: i,
|
101
|
+
listKey: key
|
102
|
+
});
|
103
|
+
paths.push(childPath);
|
104
|
+
}
|
105
|
+
if (_visitPaths(ctx, paths)) return true;
|
106
|
+
} else {
|
107
|
+
if (_visitPaths(ctx, [_index.default.get({
|
108
|
+
parentPath: path,
|
109
|
+
parent: node,
|
110
|
+
container: node,
|
111
|
+
key,
|
112
|
+
listKey: null
|
113
|
+
})])) {
|
114
|
+
return true;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
}
|
118
|
+
return false;
|
119
|
+
}
|
120
|
+
function traverseNode(node, opts, scope, state, path, skipKeys, visitSelf) {
|
121
|
+
;
|
122
|
+
const keys = VISITOR_KEYS[node.type];
|
123
|
+
if (!keys) return false;
|
124
|
+
const context = new _context.default(scope, opts, state, path);
|
125
|
+
if (visitSelf) {
|
126
|
+
if (skipKeys != null && skipKeys[path.parentKey]) return false;
|
127
|
+
return context.visitQueue([path]);
|
128
|
+
}
|
129
|
+
for (const key of keys) {
|
130
|
+
if (skipKeys != null && skipKeys[key]) continue;
|
131
|
+
if (context.visit(node, key)) {
|
132
|
+
return true;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
return false;
|
136
|
+
}
|
137
|
+
|
138
|
+
//# sourceMappingURL=traverse-node.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_context","require","_index","_t","_context2","VISITOR_KEYS","_visitPaths","ctx","paths","queue","priorityQueue","visited","Set","stop","visitIndex","length","path","resync","call","contexts","pushContext","key","node","has","add","_visit","i","popContext","_opts$denylist","opts","denylist","blacklist","includes","type","shouldSkip","shouldStop","_call","enter","_opts$node$type","_traverse","scope","state","skipKeys","exit","_opts$node$type2","visitSelf","keys","TraversalContext","parentKey","prop","Array","isArray","childPath","NodePath","get","parentPath","parent","container","listKey","push","traverseNode","context","visitQueue","visit"],"sources":["../src/traverse-node.ts"],"sourcesContent":["import TraversalContext from \"./context.ts\";\nimport type { ExplodedTraverseOptions } from \"./index.ts\";\nimport NodePath from \"./path/index.ts\";\nimport type Scope from \"./scope/index.ts\";\nimport type * as t from \"@babel/types\";\nimport { VISITOR_KEYS } from \"@babel/types\";\nimport { _call, popContext, pushContext, resync } from \"./path/context.ts\";\n\nfunction _visitPaths(ctx: TraversalContext, paths: NodePath[]): boolean {\n // set queue\n ctx.queue = paths;\n ctx.priorityQueue = [];\n\n const visited = new Set();\n let stop = false;\n let visitIndex = 0;\n\n for (; visitIndex < paths.length; ) {\n const path = paths[visitIndex];\n visitIndex++;\n\n resync.call(path);\n\n if (\n path.contexts.length === 0 ||\n path.contexts[path.contexts.length - 1] !== ctx\n ) {\n // The context might already have been pushed when this path was inserted and queued.\n // If we always re-pushed here, we could get duplicates and risk leaving contexts\n // on the stack after the traversal has completed, which could break things.\n pushContext.call(path, ctx);\n }\n\n // this path no longer belongs to the tree\n if (path.key === null) continue;\n\n // ensure we don't visit the same node twice\n const { node } = path;\n if (visited.has(node)) continue;\n if (node) visited.add(node);\n\n if (_visit(ctx, path)) {\n stop = true;\n break;\n }\n\n if (ctx.priorityQueue.length) {\n stop = _visitPaths(ctx, ctx.priorityQueue);\n ctx.priorityQueue = [];\n ctx.queue = paths;\n if (stop) break;\n }\n }\n\n // pop contexts\n for (let i = 0; i < visitIndex; i++) {\n popContext.call(paths[i]);\n }\n\n // clear queue\n ctx.queue = null;\n\n return stop;\n}\n\nfunction _visit(ctx: TraversalContext, path: NodePath) {\n const node = path.node;\n if (!node) {\n return false;\n }\n const opts = ctx.opts;\n\n // @ts-expect-error TODO(Babel 8): Remove blacklist\n const denylist = opts.denylist ?? opts.blacklist;\n if (denylist?.includes(node.type)) {\n return false;\n }\n\n if (opts.shouldSkip?.(path)) {\n return false;\n }\n\n // Note: We need to check \"this.shouldSkip\" first because\n // another visitor can set it to true. Usually .shouldSkip is false\n // before calling the enter visitor, but it can be true in case of\n // a requeued node (e.g. by .replaceWith()) that is then marked\n // with .skip().\n if (path.shouldSkip) return path.shouldStop;\n\n if (_call.call(path, opts.enter)) return path.shouldStop;\n if (path.node) {\n if (_call.call(path, opts[node.type]?.enter)) return path.shouldStop;\n }\n\n path.shouldStop = _traverse(\n path.node,\n opts,\n path.scope,\n ctx.state,\n path,\n path.skipKeys,\n );\n\n if (path.node) {\n if (_call.call(path, opts.exit)) return true;\n }\n if (path.node) {\n _call.call(path, opts[node.type]?.exit);\n }\n\n return path.shouldStop;\n}\n\nfunction _traverse<S>(\n node: t.Node,\n opts: ExplodedTraverseOptions<S>,\n scope?: Scope,\n state?: S,\n path?: NodePath,\n skipKeys?: Record<string, boolean>,\n visitSelf?: boolean,\n) {\n const keys = VISITOR_KEYS[node.type];\n if (!keys?.length) return false;\n\n const ctx = new TraversalContext(scope, opts, state, path);\n if (visitSelf) {\n if (skipKeys?.[path.parentKey]) return false;\n return _visitPaths(ctx, [path]);\n }\n\n for (const key of keys) {\n if (skipKeys?.[key]) continue;\n // @ts-expect-error key must present in node\n const prop = node[key];\n if (!prop) continue;\n\n if (Array.isArray(prop)) {\n if (!prop.length) continue;\n const paths = [];\n for (let i = 0; i < prop.length; i++) {\n const childPath = NodePath.get({\n parentPath: path,\n parent: node,\n container: prop,\n key: i,\n listKey: key,\n });\n paths.push(childPath);\n }\n if (_visitPaths(ctx, paths)) return true;\n } else {\n if (\n _visitPaths(ctx, [\n NodePath.get({\n parentPath: path,\n parent: node,\n container: node,\n key,\n listKey: null,\n }),\n ])\n ) {\n return true;\n }\n }\n }\n\n return false;\n}\n\n/**\n * Traverse the children of given node\n * @param {Node} node\n * @param {TraverseOptions} opts The traverse options used to create a new traversal context\n * @param {scope} scope A traversal scope used to create a new traversal context. When opts.noScope is true, scope should not be provided\n * @param {any} state A user data storage provided as the second callback argument for traversal visitors\n * @param {NodePath} path A NodePath of given node\n * @param {Record<string, boolean>} skipKeys A map from key names to whether that should be skipped during traversal. The skipKeys are applied to every descendants\n * @returns {boolean} Whether the traversal stops early\n\n * @note This function does not visit the given `node`.\n */\nexport function traverseNode<S = unknown>(\n node: t.Node,\n opts: ExplodedTraverseOptions<S>,\n scope?: Scope,\n state?: S,\n path?: NodePath,\n skipKeys?: Record<string, boolean>,\n visitSelf?: boolean,\n): boolean {\n if (process.env.BABEL_8_BREAKING) {\n return _traverse(node, opts, scope, state, path, skipKeys, visitSelf);\n }\n\n const keys = VISITOR_KEYS[node.type];\n if (!keys) return false;\n\n const context = new TraversalContext<S>(scope, opts, state, path);\n if (visitSelf) {\n if (skipKeys?.[path.parentKey]) return false;\n return context.visitQueue([path]);\n }\n\n for (const key of keys) {\n if (skipKeys?.[key]) continue;\n if (context.visit(node, key)) {\n return true;\n }\n }\n\n return false;\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":[],"sources":["../src/types.ts"],"sourcesContent":["import type * as t from \"@babel/types\";\nimport type { NodePath } from \"./index.ts\";\nimport type { VirtualTypeAliases } from \"./path/lib/virtual-types.ts\";\nimport type {\n ExplVisitorBase,\n VisitorBaseNodes,\n VisitorBaseAliases,\n} from \"./generated/visitor-types.d.ts\";\n\nexport type VisitPhase = \"enter\" | \"exit\";\n\ninterface VisitNodeObject<S, P extends t.Node> {\n enter?: VisitNodeFunction<S, P>;\n exit?: VisitNodeFunction<S, P>;\n}\n\nexport interface ExplVisitNode<S, P extends t.Node> {\n enter?: VisitNodeFunction<S, P>[];\n exit?: VisitNodeFunction<S, P>[];\n}\n\nexport interface ExplodedVisitor<S = unknown>\n extends ExplVisitorBase<S>,\n ExplVisitNode<S, t.Node> {\n _exploded: true;\n _verified: true;\n}\n\n// TODO: Assert that the keys of this are the keys of VirtualTypeAliases without\n// the keys of VisitorBaseNodes and VisitorBaseAliases\n// prettier-ignore\ninterface VisitorVirtualAliases<S> {\n BindingIdentifier?: VisitNode<S, VirtualTypeAliases[\"BindingIdentifier\"]>;\n BlockScoped?: VisitNode<S, VirtualTypeAliases[\"BlockScoped\"]>;\n ExistentialTypeParam?: VisitNode<S, VirtualTypeAliases[\"ExistentialTypeParam\"]>;\n Expression?: VisitNode<S, VirtualTypeAliases[\"Expression\"]>;\n //Flow?: VisitNode<S, VirtualTypeAliases[\"Flow\"]>;\n ForAwaitStatement?: VisitNode<S, VirtualTypeAliases[\"ForAwaitStatement\"]>;\n Generated?: VisitNode<S, VirtualTypeAliases[\"Generated\"]>;\n NumericLiteralTypeAnnotation?: VisitNode<S, VirtualTypeAliases[\"NumericLiteralTypeAnnotation\"]>;\n Pure?: VisitNode<S, VirtualTypeAliases[\"Pure\"]>;\n Referenced?: VisitNode<S, VirtualTypeAliases[\"Referenced\"]>;\n ReferencedIdentifier?: VisitNode<S, VirtualTypeAliases[\"ReferencedIdentifier\"]>;\n ReferencedMemberExpression?: VisitNode<S, VirtualTypeAliases[\"ReferencedMemberExpression\"]>;\n //RestProperty?: VisitNode<S, VirtualTypeAliases[\"RestProperty\"]>;\n Scope?: VisitNode<S, VirtualTypeAliases[\"Scope\"]>;\n //SpreadProperty?: VisitNode<S, VirtualTypeAliases[\"SpreadProperty\"]>;\n Statement?: VisitNode<S, VirtualTypeAliases[\"Statement\"]>;\n User?: VisitNode<S, VirtualTypeAliases[\"User\"]>;\n Var?: VisitNode<S, VirtualTypeAliases[\"Var\"]>;\n}\n\n// TODO: Do not export this? Or give it a better name?\nexport interface VisitorBase<S>\n extends VisitNodeObject<S, t.Node>,\n VisitorBaseNodes<S>,\n VisitorBaseAliases<S>,\n VisitorVirtualAliases<S> {\n // Babel supports `NodeTypesWithoutComment | NodeTypesWithoutComment | ... ` but it is\n // too complex for TS. So we type it as a general visitor only if the key contains `|`\n // this is good enough for non-visitor traverse options e.g. `noScope`\n [k: `${string}|${string}`]: VisitNode<S, t.Node>;\n}\n\nexport type Visitor<S = unknown> = VisitorBase<S> | ExplodedVisitor<S>;\n\nexport type VisitNode<S, P extends t.Node> =\n | VisitNodeFunction<S, P>\n | VisitNodeObject<S, P>;\n\nexport type VisitNodeFunction<S, P extends t.Node> = (\n this: S,\n path: NodePath<P>,\n state: S,\n) => void;\n"],"mappings":"","ignoreList":[]}
|