@rws-framework/client 2.0.16 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.bin/emerge.sh +16 -0
- package/.emerge-fast.yaml +46 -0
- package/.emerge-typescript-template.yaml +24 -0
- package/.emerge-vis-output/fast-element/emerge-file_result_dependency_graph.graphml +694 -0
- package/.emerge-vis-output/fast-element/emerge-filesystem_graph.graphml +706 -0
- package/.emerge-vis-output/fast-element/emerge-statistics-and-metrics.json +1 -0
- package/.emerge-vis-output/fast-element/emerge-statistics-metrics.txt +442 -0
- package/.emerge-vis-output/fast-element/html/emerge.html +501 -0
- package/.emerge-vis-output/fast-element/html/jsconfig.json +9 -0
- package/.emerge-vis-output/fast-element/html/resources/css/custom.css +211 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_common.js +45 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_data.js +13 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_git.js +1414 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_graph.js +539 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_heatmap.js +220 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_hull.js +180 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_main.js +1003 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_search.js +71 -0
- package/.emerge-vis-output/fast-element/html/resources/js/emerge_ui.js +199 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.css +4124 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.rtl.css +4123 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-grid.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.css +488 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.rtl.css +485 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-reboot.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.css +4266 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.rtl.css +4257 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap-utilities.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.css +10878 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.rtl.css +10842 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/css/bootstrap.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.bundle.js +7075 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.bundle.js.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.bundle.min.js +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.bundle.min.js.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.esm.js +5202 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.esm.js.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.esm.min.js +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.esm.min.js.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.js +5249 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.js.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.min.js +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/bootstrap/js/bootstrap.min.js.map +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/d3/d3.v7.8.4.min.js +2 -0
- package/.emerge-vis-output/fast-element/html/vendors/d3/d3.v7.min.js +2 -0
- package/.emerge-vis-output/fast-element/html/vendors/dark-mode-switch/css/dark-mode.css +148 -0
- package/.emerge-vis-output/fast-element/html/vendors/dark-mode-switch/js/dark-mode-switch.min.js +1 -0
- package/.emerge-vis-output/fast-element/html/vendors/daterangepicker/daterangepicker.css +410 -0
- package/.emerge-vis-output/fast-element/html/vendors/daterangepicker/daterangepicker.min.js +8 -0
- package/.emerge-vis-output/fast-element/html/vendors/daterangepicker/moment.min.js +7 -0
- package/.emerge-vis-output/fast-element/html/vendors/hull/hull.js +373 -0
- package/.emerge-vis-output/fast-element/html/vendors/jquery/jquery-3.6.0.min.js +2 -0
- package/.emerge-vis-output/fast-element/html/vendors/popper/popper.min.js +6 -0
- package/.emerge-vis-output/fast-element/html/vendors/simpleheat/simpleheat.js +141 -0
- package/.emerge-vis-output/fast-foundation/emerge-file_result_dependency_graph.graphml +4031 -0
- package/.emerge-vis-output/fast-foundation/emerge-filesystem_graph.graphml +4523 -0
- package/.emerge-vis-output/fast-foundation/emerge-statistics-and-metrics.json +1 -0
- package/.emerge-vis-output/fast-foundation/emerge-statistics-metrics.txt +2503 -0
- package/.emerge-vis-output/fast-foundation/html/emerge.html +501 -0
- package/.emerge-vis-output/fast-foundation/html/jsconfig.json +9 -0
- package/.emerge-vis-output/fast-foundation/html/resources/css/custom.css +211 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_common.js +45 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_data.js +13 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_git.js +1414 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_graph.js +539 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_heatmap.js +220 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_hull.js +180 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_main.js +1003 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_search.js +71 -0
- package/.emerge-vis-output/fast-foundation/html/resources/js/emerge_ui.js +199 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.css +4124 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.rtl.css +4123 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-grid.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.css +488 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.rtl.css +485 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-reboot.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.css +4266 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.rtl.css +4257 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap-utilities.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.css +10878 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.rtl.css +10842 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.rtl.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.rtl.min.css +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/css/bootstrap.rtl.min.css.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.bundle.js +7075 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.bundle.js.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.bundle.min.js +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.bundle.min.js.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.esm.js +5202 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.esm.js.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.esm.min.js +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.esm.min.js.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.js +5249 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.js.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.min.js +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/bootstrap/js/bootstrap.min.js.map +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/d3/d3.v7.8.4.min.js +2 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/d3/d3.v7.min.js +2 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/dark-mode-switch/css/dark-mode.css +148 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/dark-mode-switch/js/dark-mode-switch.min.js +1 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/daterangepicker/daterangepicker.css +410 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/daterangepicker/daterangepicker.min.js +8 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/daterangepicker/moment.min.js +7 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/hull/hull.js +373 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/jquery/jquery-3.6.0.min.js +2 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/popper/popper.min.js +6 -0
- package/.emerge-vis-output/fast-foundation/html/vendors/simpleheat/simpleheat.js +141 -0
- package/.emerge-vis-output/rws-client/emerge-file_result_dependency_graph.graphml +1011 -0
- package/.emerge-vis-output/rws-client/emerge-filesystem_graph.graphml +863 -0
- package/.emerge-vis-output/rws-client/emerge-statistics-and-metrics.json +1 -0
- package/.emerge-vis-output/rws-client/emerge-statistics-metrics.txt +580 -0
- package/.emerge-vis-output/rws-client/html/emerge.html +501 -0
- package/.emerge-vis-output/rws-client/html/jsconfig.json +9 -0
- package/.emerge-vis-output/rws-client/html/resources/css/custom.css +211 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_common.js +45 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_data.js +13 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_git.js +1414 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_graph.js +539 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_heatmap.js +220 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_hull.js +180 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_main.js +1003 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_search.js +71 -0
- package/.emerge-vis-output/rws-client/html/resources/js/emerge_ui.js +199 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.css +4124 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.rtl.css +4123 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.rtl.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.rtl.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-grid.rtl.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.css +488 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.rtl.css +485 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.rtl.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.rtl.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-reboot.rtl.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.css +4266 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.rtl.css +4257 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.rtl.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.rtl.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap-utilities.rtl.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.css +10878 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.rtl.css +10842 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.rtl.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.rtl.min.css +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/css/bootstrap.rtl.min.css.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.bundle.js +7075 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.bundle.js.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.bundle.min.js +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.bundle.min.js.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.esm.js +5202 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.esm.js.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.esm.min.js +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.esm.min.js.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.js +5249 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.js.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.min.js +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/bootstrap/js/bootstrap.min.js.map +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/d3/d3.v7.8.4.min.js +2 -0
- package/.emerge-vis-output/rws-client/html/vendors/d3/d3.v7.min.js +2 -0
- package/.emerge-vis-output/rws-client/html/vendors/dark-mode-switch/css/dark-mode.css +148 -0
- package/.emerge-vis-output/rws-client/html/vendors/dark-mode-switch/js/dark-mode-switch.min.js +1 -0
- package/.emerge-vis-output/rws-client/html/vendors/daterangepicker/daterangepicker.css +410 -0
- package/.emerge-vis-output/rws-client/html/vendors/daterangepicker/daterangepicker.min.js +8 -0
- package/.emerge-vis-output/rws-client/html/vendors/daterangepicker/moment.min.js +7 -0
- package/.emerge-vis-output/rws-client/html/vendors/hull/hull.js +373 -0
- package/.emerge-vis-output/rws-client/html/vendors/jquery/jquery-3.6.0.min.js +2 -0
- package/.emerge-vis-output/rws-client/html/vendors/popper/popper.min.js +6 -0
- package/.emerge-vis-output/rws-client/html/vendors/simpleheat/simpleheat.js +141 -0
- package/.eslintrc.json +1 -1
- package/.setup/_base.eslintrc.json +50 -0
- package/declarations.d.ts +2 -0
- package/package.json +19 -18
- package/src/client.ts +10 -11
- package/src/components/_attrs/sanitize-html.ts +5 -5
- package/src/components/_component.ts +6 -9
- package/src/components/_container.ts +1 -1
- package/src/components/_decorator.ts +4 -6
- package/src/components/index.ts +1 -1
- package/src/components/progress/component.ts +4 -4
- package/src/components/router/component.ts +1 -3
- package/src/components/uploader/component.ts +1 -1
- package/src/interfaces/IRWSConfig.ts +0 -2
- package/src/interfaces/IRWSUser.ts +1 -1
- package/src/interfaces/IRWSViewComponent.ts +4 -4
- package/src/interfaces/RWSWindow.ts +3 -4
- package/src/routing/_router.ts +2 -2
- package/src/run.ts +0 -2
- package/src/service_worker/src/_service_worker.ts +5 -5
- package/src/services/ApiService.ts +5 -5
- package/src/services/ConfigService.ts +2 -2
- package/src/services/DOMService.ts +3 -3
- package/src/services/ServiceWorkerService.ts +6 -6
- package/src/services/UtilsService.ts +1 -3
- package/src/services/_service.ts +3 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"analysis-name": "ts check on fast element", "statistics": {"scanning_runtime": "00:00:00 + 6 ms", "scanned_files": 28, "skipped_files": 46, "parsing_hits": 46, "extracted_file_results": 28, "file_results_creation_runtime": "00:00:00 + 44 ms", "number-of-methods-metric-runtime": "00:00:00 + 1 ms", "source-lines-of-code-metric-runtime": "00:00:00 + 2 ms", "t-f-i-d-f-metric-runtime": "00:00:00 + 63 ms", "fan-in-out-metric-runtime": "00:00:00 + 0 ms", "louvain-modularity-metric-runtime": "00:00:00 + 9 ms", "total_runtime": "00:00:00 + 125 ms"}, "overall-metrics": {"avg-number-of-methods-in-file": 0.36, "avg-sloc-in-file": 37.54, "total-sloc-in-files": 1051, "avg-fan-in-dependency-graph": 0.96, "avg-fan-out-dependency-graph": 0.96, "max-fan-in-dependency-graph": 9, "max-fan-in-name-dependency-graph": "../observation/behavior.js", "max-fan-out-dependency-graph": 6, "max-fan-out-name-dependency-graph": "./fast-element/dist/dts/components/controller.d.ts", "louvain-communities-dependency-graph": 17, "louvain-modularity-dependency-graph": 0.59, "louvain-biggest-communities-dependency-graph": "0.16, 0.14, 0.12, 0.1, 0.08"}, "local-metrics": {"./fast-element/dist/fast-element.d.ts": {"number-of-methods-in-file": 5, "sloc-in-file": 476, "tag_source": 0.2950593883700795, "tag_binding": 0.2228640061093154, "tag_node": 0.21972507644580389, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 10}, "./fast-element/dist/dts/interfaces.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 10, "tag_object": 0.4637840960261858, "tag_constructable": 0.33480260617642404, "tag_callable": 0.30974088000429123, "tag_type": 0.25796297969952353, "tag_declare": 0.2406756637316964, "tag_isfunction": 0.2063257190838112, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 11}, "./fast-element/dist/dts/index.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 26, "tag_styletarget": 0.24588892039511312, "tag_mutable": 0.24588892039511312, "tag_enablearrayobservation": 0.24588892039511312, "tag_elementstylefactory": 0.24588892039511312, "tag_elementsfilter": 0.24588892039511312, "tag_elements": 0.24588892039511312, "tag_csspartial": 0.24588892039511312, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 12}, "./fast-element/dist/dts/dom.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 21, "tag_attribute": 0.37450552110305035, "tag_value": 0.35632266430886395, "tag_node": 0.29986898001465656, "tag_attributename": 0.26035445003527014, "tag_placeholder": 0.21966659431036972, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 5}, "./fast-element/dist/dts/platform.d.ts": {"number-of-methods-in-file": 1, "sloc-in-file": 25, "tag_fast": 0.43033499975912926, "tag_trustedtypes": 0.2868899998394195, "tag_trusted": 0.261640351570867, "tag_rules": 0.21516749987956463, "tag_global": 0.21516749987956463, "tag_fastglobal": 0.21516749987956463, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 13}, "./fast-element/dist/dts/components/fast-definitions.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 27, "tag_custom": 0.5242710773191185, "tag_element": 0.27646423543924487, "tag_controlling": 0.21420540632448873, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 3, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "./fast-element/dist/dts/components/attributes.d.ts": {"number-of-methods-in-file": 2, "sloc-in-file": 37, "tag_valueconverter": 0.3531804618043131, "tag_value": 0.31232809028826053, "tag_attribute": 0.30481837250760707, "tag_mode": 0.2472263232630192, "tag_attributemode": 0.2472263232630192, "tag_property": 0.2033916931859959, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "./fast-element/dist/dts/components/controller.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 36, "tag_styles": 0.38590882878311406, "tag_controller": 0.3792122265121266, "tag_element": 0.29272520051661916, "tag_behaviors": 0.2619334793687805, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 6, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "./fast-element/dist/dts/components/fast-element.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 17, "tag_fastelement": 0.48787453525753355, "tag_element": 0.25441427562474916, "tag_platform": 0.22868340874923593, "tag_nameordef": 0.216833126781126, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 6}, "./fast-element/dist/dts/styles/css.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 4, "tag_strings": 0.4689622500153232, "tag_interpolated": 0.3751698000122586, "tag_values": 0.3470863782511793, "tag_cssdirective": 0.3470863782511793, "tag_are": 0.25985130244673516, "tag_composablestyles": 0.22855509913910438, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 4}, "./fast-element/dist/dts/styles/css-directive.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 6, "tag_css": 0.5680217967897677, "tag_interpolate": 0.36044598837076014, "tag_behavior": 0.3383342993555018, "tag_host": 0.304115956871541, "tag_composablestyles": 0.2670123136600795, "tag_into": 0.23929923701974865, "tag_bind": 0.2276808668956647, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 4}, "./fast-element/dist/dts/styles/element-styles.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 41, "tag_styles": 0.6923552884296407, "tag_styletarget": 0.3367687847124923, "tag_elementstyles": 0.21275958772123027, "tag_composablestyles": 0.21275958772123027, "tag_target": 0.2001741809318195, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 3}, "./fast-element/dist/dts/observation/notifier.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 29, "tag_subscriber": 0.6794369195147985, "tag_subscribers": 0.25245393879834804, "tag_source": 0.24636874717030427, "tag_change": 0.23355644108321197, "tag_notification": 0.22648667783094584, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 14}, "./fast-element/dist/dts/observation/array-observer.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 1, "tag_observation": 0.416848508241277, "tag_array": 0.35122430349931566, "tag_so": 0.26451691361680973, "tag_manually": 0.26451691361680973, "tag_enabled": 0.26451691361680973, "tag_calling": 0.26451691361680973, "tag_using": 0.24123635649161915, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 15}, "./fast-element/dist/dts/observation/array-change-records.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 8, "tag_splice": 0.4883123587740202, "tag_items": 0.3051952242337626, "tag_were": 0.2893801308596015, "tag_removed": 0.26391132217263985, "tag_array": 0.24014847840443873, "tag_addedcount": 0.21703509814470112, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 16}, "./fast-element/dist/dts/observation/behavior.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 5, "tag_source": 0.5896207039303109, "tag_context": 0.33986567523503974, "tag_bind": 0.3233646397259858, "tag_behavior": 0.3203470726657382, "tag_unknown": 0.26891172452595136, "tag_executioncontext": 0.25281685365525275, "tag_unbind": 0.23887484234602843, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 8}, "./fast-element/dist/dts/observation/observable.d.ts": {"number-of-methods-in-file": 2, "sloc-in-file": 43, "tag_source": 0.31823232258159034, "tag_observable": 0.2968732960844341, "tag_property": 0.2603719002940284, "tag_binding": 0.2603719002940284, "tag_current": 0.22907325122092545, "tag_accessor": 0.22907325122092545, "tag_tparent": 0.20616592609883289, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 9}, "./fast-element/dist/dts/templating/compiler.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 8, "tag_template": 0.4058158827742168, "tag_directives": 0.3104793008553728, "tag_nodebehaviorfactory": 0.25170058055165184, "tag_documentfragment": 0.2328594756415296, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "./fast-element/dist/dts/templating/view.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 35, "tag_view": 0.41724276970492474, "tag_dom": 0.37546020404838, "tag_node": 0.37070309729500844, "tag_nodes": 0.356687193845961, "tag_behaviors": 0.225276122429028, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "./fast-element/dist/dts/templating/repeat.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 45, "tag_tsource": 0.37209693862330756, "tag_binding": 0.33994436164902053, "tag_itemsbinding": 0.3148255919515991, "tag_options": 0.298296135936253, "tag_templatebinding": 0.23611919396369935, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 6, "file_result_dependency_graph_louvain-modularity-in-file": 7}, "./fast-element/dist/dts/templating/slotted.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 11, "tag_slottedbehavioroptions": 0.42078091516530813, "tag_slotted": 0.42078091516530813, "tag_options": 0.33224035857295803, "tag_node": 0.2423218497382342, "tag_slot": 0.21039045758265407, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 2}, "./fast-element/dist/dts/templating/binding.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 38, "tag_binding": 0.5205085590867429, "tag_bindingbehavior": 0.28542301086516897, "tag_typeof": 0.24081747297221018, "tag_targetname": 0.21691872887104727, "tag_target": 0.20887588155332565, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 3, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "./fast-element/dist/dts/templating/when.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 3, "tag_binding": 0.4885235390584788, "tag_syntheticviewtemplate": 0.44732995582012125, "tag_tsource": 0.41775704220966275, "tag_template": 0.233875302362982, "tag_elsetemplateortemplatebinding": 0.21207474900311044, "tag_conditional": 0.21207474900311044, "tag_condition": 0.21207474900311044, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 2}, "./fast-element/dist/dts/templating/html-directive.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 23, "tag_behavior": 0.5635453484896057, "tag_target": 0.28017277828161197, "tag_within": 0.2557871498791817, "tag_node": 0.24052029428487717, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 3}, "./fast-element/dist/dts/templating/ref.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 10, "tag_propertyname": 0.5131996888028276, "tag_source": 0.3502869148317249, "tag_reference": 0.3328341934672673, "tag_behavior": 0.28547179655868743, "tag_bind": 0.23052867972969066, "tag_assign": 0.22188946231151155, "tag_property": 0.210172148899035, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 2}, "./fast-element/dist/dts/templating/template.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 27, "tag_template": 0.3664706986962105, "tag_host": 0.31153034649153905, "tag_hostbindingtarget": 0.2953869696381885, "tag_htmlview": 0.2693894894518713, "tag_tparent": 0.23571580327038738, "tag_will": 0.23274809909880442, "tag_html": 0.2206200473389547, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 3, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "./fast-element/dist/dts/templating/children.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 17, "tag_options": 0.34561403230951854, "tag_childrenbehavioroptions": 0.31265615186765555, "tag_child": 0.28513878330104053, "tag_configure": 0.26379465402511676, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 2, "file_result_dependency_graph_louvain-modularity-in-file": 2}, "./fast-element/dist/dts/templating/node-observation.d.ts": {"number-of-methods-in-file": 0, "sloc-in-file": 22, "tag_node": 0.4350079641120247, "tag_filter": 0.302148649725125, "tag_source": 0.2610047784672148, "tag_options": 0.23857064830892574, "tag_nodes": 0.21148333120705703, "tag_elementsfilter": 0.20666704743541092, "tag_array": 0.20059577212272034, "fan-in-dependency-graph": 0, "fan-out-dependency-graph": 1, "file_result_dependency_graph_louvain-modularity-in-file": 3}, "fast-element/dist/dts/interfaces.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 5}, "fast-element/dist/dts/platform.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 5}, "../styles/element-styles.js": {"fan-in-dependency-graph": 2, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "../templating/template.js": {"fan-in-dependency-graph": 2, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "fast-element/dist/dts/components/attributes.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "../observation/observable.js": {"fan-in-dependency-graph": 6, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "../observation/behavior.js": {"fan-in-dependency-graph": 9, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 3}, "../observation/notifier.js": {"fan-in-dependency-graph": 2, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "../templating/view.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 1}, "fast-element/dist/dts/components/fast-definitions.js": {"fan-in-dependency-graph": 2, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 6}, "fast-element/dist/dts/components/controller.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 6}, "fast-element/dist/dts/styles/css-directive.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 4}, "fast-element/dist/dts/styles/element-styles.js": {"fan-in-dependency-graph": 2, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 4}, "fast-element/dist/dts/observation/observable.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 8}, "fast-element/dist/dts/observation/notifier.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 9}, "fast-element/dist/dts/templating/html-directive.js": {"fan-in-dependency-graph": 4, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 0}, "../observation/array-change-records.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 7}, "fast-element/dist/dts/templating/template.js": {"fan-in-dependency-graph": 5, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 2}, "fast-element/dist/dts/templating/node-observation.js": {"fan-in-dependency-graph": 2, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 2}, "fast-element/dist/dts/templating/view.js": {"fan-in-dependency-graph": 1, "fan-out-dependency-graph": 0, "file_result_dependency_graph_louvain-modularity-in-file": 0}}}
|
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
the following statistics were collected in ts check on fast element
|
|
2
|
+
+-------------------------------------+-------------------+
|
|
3
|
+
| statistic name | value |
|
|
4
|
+
+-------------------------------------+-------------------+
|
|
5
|
+
| scanning_runtime | 00:00:00 + 6 ms |
|
|
6
|
+
| scanned_files | 28 |
|
|
7
|
+
| skipped_files | 46 |
|
|
8
|
+
| parsing_hits | 46 |
|
|
9
|
+
| extracted_file_results | 28 |
|
|
10
|
+
| file_results_creation_runtime | 00:00:00 + 44 ms |
|
|
11
|
+
| number-of-methods-metric-runtime | 00:00:00 + 1 ms |
|
|
12
|
+
| source-lines-of-code-metric-runtime | 00:00:00 + 2 ms |
|
|
13
|
+
| t-f-i-d-f-metric-runtime | 00:00:00 + 63 ms |
|
|
14
|
+
| fan-in-out-metric-runtime | 00:00:00 + 0 ms |
|
|
15
|
+
| louvain-modularity-metric-runtime | 00:00:00 + 9 ms |
|
|
16
|
+
| total_runtime | 00:00:00 + 125 ms |
|
|
17
|
+
+-------------------------------------+-------------------+
|
|
18
|
+
|
|
19
|
+
the following overall metrics were collected in ts check on fast element
|
|
20
|
+
+----------------------------------------------+----------------------------------------------------+
|
|
21
|
+
| metric name | value |
|
|
22
|
+
+----------------------------------------------+----------------------------------------------------+
|
|
23
|
+
| avg-number-of-methods-in-file | 0.36 |
|
|
24
|
+
| avg-sloc-in-file | 37.54 |
|
|
25
|
+
| total-sloc-in-files | 1051 |
|
|
26
|
+
| avg-fan-in-dependency-graph | 0.96 |
|
|
27
|
+
| avg-fan-out-dependency-graph | 0.96 |
|
|
28
|
+
| max-fan-in-dependency-graph | 9 |
|
|
29
|
+
| max-fan-in-name-dependency-graph | ../observation/behavior.js |
|
|
30
|
+
| max-fan-out-dependency-graph | 6 |
|
|
31
|
+
| max-fan-out-name-dependency-graph | ./fast-element/dist/dts/components/controller.d.ts |
|
|
32
|
+
| louvain-communities-dependency-graph | 17 |
|
|
33
|
+
| louvain-modularity-dependency-graph | 0.59 |
|
|
34
|
+
| louvain-biggest-communities-dependency-graph | 0.16, 0.14, 0.12, 0.1, 0.08 |
|
|
35
|
+
+----------------------------------------------+----------------------------------------------------+
|
|
36
|
+
|
|
37
|
+
the following local metrics were collected in ts check on fast element
|
|
38
|
+
+---------------------------------------------------------------+---------------------------------------------------------------+
|
|
39
|
+
| result | local metrics |
|
|
40
|
+
+---------------------------------------------------------------+---------------------------------------------------------------+
|
|
41
|
+
| ./fast-element/dist/fast-element.d.ts | number-of-methods-in-file: 5 |
|
|
42
|
+
| | sloc-in-file: 476 |
|
|
43
|
+
| | tag_source: 0.2950593883700795 |
|
|
44
|
+
| | tag_binding: 0.2228640061093154 |
|
|
45
|
+
| | tag_node: 0.21972507644580389 |
|
|
46
|
+
| | fan-in-dependency-graph: 0 |
|
|
47
|
+
| | fan-out-dependency-graph: 0 |
|
|
48
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 10 |
|
|
49
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
50
|
+
| ./fast-element/dist/dts/interfaces.d.ts | number-of-methods-in-file: 0 |
|
|
51
|
+
| | sloc-in-file: 10 |
|
|
52
|
+
| | tag_object: 0.4637840960261858 |
|
|
53
|
+
| | tag_constructable: 0.33480260617642404 |
|
|
54
|
+
| | tag_callable: 0.30974088000429123 |
|
|
55
|
+
| | tag_type: 0.25796297969952353 |
|
|
56
|
+
| | tag_declare: 0.2406756637316964 |
|
|
57
|
+
| | tag_isfunction: 0.2063257190838112 |
|
|
58
|
+
| | fan-in-dependency-graph: 0 |
|
|
59
|
+
| | fan-out-dependency-graph: 0 |
|
|
60
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 11 |
|
|
61
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
62
|
+
| ./fast-element/dist/dts/index.d.ts | number-of-methods-in-file: 0 |
|
|
63
|
+
| | sloc-in-file: 26 |
|
|
64
|
+
| | tag_styletarget: 0.24588892039511312 |
|
|
65
|
+
| | tag_mutable: 0.24588892039511312 |
|
|
66
|
+
| | tag_enablearrayobservation: 0.24588892039511312 |
|
|
67
|
+
| | tag_elementstylefactory: 0.24588892039511312 |
|
|
68
|
+
| | tag_elementsfilter: 0.24588892039511312 |
|
|
69
|
+
| | tag_elements: 0.24588892039511312 |
|
|
70
|
+
| | tag_csspartial: 0.24588892039511312 |
|
|
71
|
+
| | fan-in-dependency-graph: 0 |
|
|
72
|
+
| | fan-out-dependency-graph: 0 |
|
|
73
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 12 |
|
|
74
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
75
|
+
| ./fast-element/dist/dts/dom.d.ts | number-of-methods-in-file: 0 |
|
|
76
|
+
| | sloc-in-file: 21 |
|
|
77
|
+
| | tag_attribute: 0.37450552110305035 |
|
|
78
|
+
| | tag_value: 0.35632266430886395 |
|
|
79
|
+
| | tag_node: 0.29986898001465656 |
|
|
80
|
+
| | tag_attributename: 0.26035445003527014 |
|
|
81
|
+
| | tag_placeholder: 0.21966659431036972 |
|
|
82
|
+
| | fan-in-dependency-graph: 0 |
|
|
83
|
+
| | fan-out-dependency-graph: 2 |
|
|
84
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
85
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
86
|
+
| ./fast-element/dist/dts/platform.d.ts | number-of-methods-in-file: 1 |
|
|
87
|
+
| | sloc-in-file: 25 |
|
|
88
|
+
| | tag_fast: 0.43033499975912926 |
|
|
89
|
+
| | tag_trustedtypes: 0.2868899998394195 |
|
|
90
|
+
| | tag_trusted: 0.261640351570867 |
|
|
91
|
+
| | tag_rules: 0.21516749987956463 |
|
|
92
|
+
| | tag_global: 0.21516749987956463 |
|
|
93
|
+
| | tag_fastglobal: 0.21516749987956463 |
|
|
94
|
+
| | fan-in-dependency-graph: 0 |
|
|
95
|
+
| | fan-out-dependency-graph: 0 |
|
|
96
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 13 |
|
|
97
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
98
|
+
| ./fast-element/dist/dts/components/fast-definitions.d.ts | number-of-methods-in-file: 0 |
|
|
99
|
+
| | sloc-in-file: 27 |
|
|
100
|
+
| | tag_custom: 0.5242710773191185 |
|
|
101
|
+
| | tag_element: 0.27646423543924487 |
|
|
102
|
+
| | tag_controlling: 0.21420540632448873 |
|
|
103
|
+
| | fan-in-dependency-graph: 0 |
|
|
104
|
+
| | fan-out-dependency-graph: 3 |
|
|
105
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
106
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
107
|
+
| ./fast-element/dist/dts/components/attributes.d.ts | number-of-methods-in-file: 2 |
|
|
108
|
+
| | sloc-in-file: 37 |
|
|
109
|
+
| | tag_valueconverter: 0.3531804618043131 |
|
|
110
|
+
| | tag_value: 0.31232809028826053 |
|
|
111
|
+
| | tag_attribute: 0.30481837250760707 |
|
|
112
|
+
| | tag_mode: 0.2472263232630192 |
|
|
113
|
+
| | tag_attributemode: 0.2472263232630192 |
|
|
114
|
+
| | tag_property: 0.2033916931859959 |
|
|
115
|
+
| | fan-in-dependency-graph: 0 |
|
|
116
|
+
| | fan-out-dependency-graph: 1 |
|
|
117
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
118
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
119
|
+
| ./fast-element/dist/dts/components/controller.d.ts | number-of-methods-in-file: 0 |
|
|
120
|
+
| | sloc-in-file: 36 |
|
|
121
|
+
| | tag_styles: 0.38590882878311406 |
|
|
122
|
+
| | tag_controller: 0.3792122265121266 |
|
|
123
|
+
| | tag_element: 0.29272520051661916 |
|
|
124
|
+
| | tag_behaviors: 0.2619334793687805 |
|
|
125
|
+
| | fan-in-dependency-graph: 0 |
|
|
126
|
+
| | fan-out-dependency-graph: 6 |
|
|
127
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
128
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
129
|
+
| ./fast-element/dist/dts/components/fast-element.d.ts | number-of-methods-in-file: 0 |
|
|
130
|
+
| | sloc-in-file: 17 |
|
|
131
|
+
| | tag_fastelement: 0.48787453525753355 |
|
|
132
|
+
| | tag_element: 0.25441427562474916 |
|
|
133
|
+
| | tag_platform: 0.22868340874923593 |
|
|
134
|
+
| | tag_nameordef: 0.216833126781126 |
|
|
135
|
+
| | fan-in-dependency-graph: 0 |
|
|
136
|
+
| | fan-out-dependency-graph: 2 |
|
|
137
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
138
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
139
|
+
| ./fast-element/dist/dts/styles/css.d.ts | number-of-methods-in-file: 0 |
|
|
140
|
+
| | sloc-in-file: 4 |
|
|
141
|
+
| | tag_strings: 0.4689622500153232 |
|
|
142
|
+
| | tag_interpolated: 0.3751698000122586 |
|
|
143
|
+
| | tag_values: 0.3470863782511793 |
|
|
144
|
+
| | tag_cssdirective: 0.3470863782511793 |
|
|
145
|
+
| | tag_are: 0.25985130244673516 |
|
|
146
|
+
| | tag_composablestyles: 0.22855509913910438 |
|
|
147
|
+
| | fan-in-dependency-graph: 0 |
|
|
148
|
+
| | fan-out-dependency-graph: 2 |
|
|
149
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
150
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
151
|
+
| ./fast-element/dist/dts/styles/css-directive.d.ts | number-of-methods-in-file: 0 |
|
|
152
|
+
| | sloc-in-file: 6 |
|
|
153
|
+
| | tag_css: 0.5680217967897677 |
|
|
154
|
+
| | tag_interpolate: 0.36044598837076014 |
|
|
155
|
+
| | tag_behavior: 0.3383342993555018 |
|
|
156
|
+
| | tag_host: 0.304115956871541 |
|
|
157
|
+
| | tag_composablestyles: 0.2670123136600795 |
|
|
158
|
+
| | tag_into: 0.23929923701974865 |
|
|
159
|
+
| | tag_bind: 0.2276808668956647 |
|
|
160
|
+
| | fan-in-dependency-graph: 0 |
|
|
161
|
+
| | fan-out-dependency-graph: 2 |
|
|
162
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
163
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
164
|
+
| ./fast-element/dist/dts/styles/element-styles.d.ts | number-of-methods-in-file: 0 |
|
|
165
|
+
| | sloc-in-file: 41 |
|
|
166
|
+
| | tag_styles: 0.6923552884296407 |
|
|
167
|
+
| | tag_styletarget: 0.3367687847124923 |
|
|
168
|
+
| | tag_elementstyles: 0.21275958772123027 |
|
|
169
|
+
| | tag_composablestyles: 0.21275958772123027 |
|
|
170
|
+
| | tag_target: 0.2001741809318195 |
|
|
171
|
+
| | fan-in-dependency-graph: 0 |
|
|
172
|
+
| | fan-out-dependency-graph: 1 |
|
|
173
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
174
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
175
|
+
| ./fast-element/dist/dts/observation/notifier.d.ts | number-of-methods-in-file: 0 |
|
|
176
|
+
| | sloc-in-file: 29 |
|
|
177
|
+
| | tag_subscriber: 0.6794369195147985 |
|
|
178
|
+
| | tag_subscribers: 0.25245393879834804 |
|
|
179
|
+
| | tag_source: 0.24636874717030427 |
|
|
180
|
+
| | tag_change: 0.23355644108321197 |
|
|
181
|
+
| | tag_notification: 0.22648667783094584 |
|
|
182
|
+
| | fan-in-dependency-graph: 0 |
|
|
183
|
+
| | fan-out-dependency-graph: 0 |
|
|
184
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 14 |
|
|
185
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
186
|
+
| ./fast-element/dist/dts/observation/array-observer.d.ts | number-of-methods-in-file: 0 |
|
|
187
|
+
| | sloc-in-file: 1 |
|
|
188
|
+
| | tag_observation: 0.416848508241277 |
|
|
189
|
+
| | tag_array: 0.35122430349931566 |
|
|
190
|
+
| | tag_so: 0.26451691361680973 |
|
|
191
|
+
| | tag_manually: 0.26451691361680973 |
|
|
192
|
+
| | tag_enabled: 0.26451691361680973 |
|
|
193
|
+
| | tag_calling: 0.26451691361680973 |
|
|
194
|
+
| | tag_using: 0.24123635649161915 |
|
|
195
|
+
| | fan-in-dependency-graph: 0 |
|
|
196
|
+
| | fan-out-dependency-graph: 0 |
|
|
197
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 15 |
|
|
198
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
199
|
+
| ./fast-element/dist/dts/observation/array-change-records.d.ts | number-of-methods-in-file: 0 |
|
|
200
|
+
| | sloc-in-file: 8 |
|
|
201
|
+
| | tag_splice: 0.4883123587740202 |
|
|
202
|
+
| | tag_items: 0.3051952242337626 |
|
|
203
|
+
| | tag_were: 0.2893801308596015 |
|
|
204
|
+
| | tag_removed: 0.26391132217263985 |
|
|
205
|
+
| | tag_array: 0.24014847840443873 |
|
|
206
|
+
| | tag_addedcount: 0.21703509814470112 |
|
|
207
|
+
| | fan-in-dependency-graph: 0 |
|
|
208
|
+
| | fan-out-dependency-graph: 0 |
|
|
209
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 16 |
|
|
210
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
211
|
+
| ./fast-element/dist/dts/observation/behavior.d.ts | number-of-methods-in-file: 0 |
|
|
212
|
+
| | sloc-in-file: 5 |
|
|
213
|
+
| | tag_source: 0.5896207039303109 |
|
|
214
|
+
| | tag_context: 0.33986567523503974 |
|
|
215
|
+
| | tag_bind: 0.3233646397259858 |
|
|
216
|
+
| | tag_behavior: 0.3203470726657382 |
|
|
217
|
+
| | tag_unknown: 0.26891172452595136 |
|
|
218
|
+
| | tag_executioncontext: 0.25281685365525275 |
|
|
219
|
+
| | tag_unbind: 0.23887484234602843 |
|
|
220
|
+
| | fan-in-dependency-graph: 0 |
|
|
221
|
+
| | fan-out-dependency-graph: 1 |
|
|
222
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 8 |
|
|
223
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
224
|
+
| ./fast-element/dist/dts/observation/observable.d.ts | number-of-methods-in-file: 2 |
|
|
225
|
+
| | sloc-in-file: 43 |
|
|
226
|
+
| | tag_source: 0.31823232258159034 |
|
|
227
|
+
| | tag_observable: 0.2968732960844341 |
|
|
228
|
+
| | tag_property: 0.2603719002940284 |
|
|
229
|
+
| | tag_binding: 0.2603719002940284 |
|
|
230
|
+
| | tag_current: 0.22907325122092545 |
|
|
231
|
+
| | tag_accessor: 0.22907325122092545 |
|
|
232
|
+
| | tag_tparent: 0.20616592609883289 |
|
|
233
|
+
| | fan-in-dependency-graph: 0 |
|
|
234
|
+
| | fan-out-dependency-graph: 1 |
|
|
235
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 9 |
|
|
236
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
237
|
+
| ./fast-element/dist/dts/templating/compiler.d.ts | number-of-methods-in-file: 0 |
|
|
238
|
+
| | sloc-in-file: 8 |
|
|
239
|
+
| | tag_template: 0.4058158827742168 |
|
|
240
|
+
| | tag_directives: 0.3104793008553728 |
|
|
241
|
+
| | tag_nodebehaviorfactory: 0.25170058055165184 |
|
|
242
|
+
| | tag_documentfragment: 0.2328594756415296 |
|
|
243
|
+
| | fan-in-dependency-graph: 0 |
|
|
244
|
+
| | fan-out-dependency-graph: 1 |
|
|
245
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
246
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
247
|
+
| ./fast-element/dist/dts/templating/view.d.ts | number-of-methods-in-file: 0 |
|
|
248
|
+
| | sloc-in-file: 35 |
|
|
249
|
+
| | tag_view: 0.41724276970492474 |
|
|
250
|
+
| | tag_dom: 0.37546020404838 |
|
|
251
|
+
| | tag_node: 0.37070309729500844 |
|
|
252
|
+
| | tag_nodes: 0.356687193845961 |
|
|
253
|
+
| | tag_behaviors: 0.225276122429028 |
|
|
254
|
+
| | fan-in-dependency-graph: 0 |
|
|
255
|
+
| | fan-out-dependency-graph: 2 |
|
|
256
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
257
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
258
|
+
| ./fast-element/dist/dts/templating/repeat.d.ts | number-of-methods-in-file: 0 |
|
|
259
|
+
| | sloc-in-file: 45 |
|
|
260
|
+
| | tag_tsource: 0.37209693862330756 |
|
|
261
|
+
| | tag_binding: 0.33994436164902053 |
|
|
262
|
+
| | tag_itemsbinding: 0.3148255919515991 |
|
|
263
|
+
| | tag_options: 0.298296135936253 |
|
|
264
|
+
| | tag_templatebinding: 0.23611919396369935 |
|
|
265
|
+
| | fan-in-dependency-graph: 0 |
|
|
266
|
+
| | fan-out-dependency-graph: 6 |
|
|
267
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 7 |
|
|
268
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
269
|
+
| ./fast-element/dist/dts/templating/slotted.d.ts | number-of-methods-in-file: 0 |
|
|
270
|
+
| | sloc-in-file: 11 |
|
|
271
|
+
| | tag_slottedbehavioroptions: 0.42078091516530813 |
|
|
272
|
+
| | tag_slotted: 0.42078091516530813 |
|
|
273
|
+
| | tag_options: 0.33224035857295803 |
|
|
274
|
+
| | tag_node: 0.2423218497382342 |
|
|
275
|
+
| | tag_slot: 0.21039045758265407 |
|
|
276
|
+
| | fan-in-dependency-graph: 0 |
|
|
277
|
+
| | fan-out-dependency-graph: 2 |
|
|
278
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
279
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
280
|
+
| ./fast-element/dist/dts/templating/binding.d.ts | number-of-methods-in-file: 0 |
|
|
281
|
+
| | sloc-in-file: 38 |
|
|
282
|
+
| | tag_binding: 0.5205085590867429 |
|
|
283
|
+
| | tag_bindingbehavior: 0.28542301086516897 |
|
|
284
|
+
| | tag_typeof: 0.24081747297221018 |
|
|
285
|
+
| | tag_targetname: 0.21691872887104727 |
|
|
286
|
+
| | tag_target: 0.20887588155332565 |
|
|
287
|
+
| | fan-in-dependency-graph: 0 |
|
|
288
|
+
| | fan-out-dependency-graph: 3 |
|
|
289
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
290
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
291
|
+
| ./fast-element/dist/dts/templating/when.d.ts | number-of-methods-in-file: 0 |
|
|
292
|
+
| | sloc-in-file: 3 |
|
|
293
|
+
| | tag_binding: 0.4885235390584788 |
|
|
294
|
+
| | tag_syntheticviewtemplate: 0.44732995582012125 |
|
|
295
|
+
| | tag_tsource: 0.41775704220966275 |
|
|
296
|
+
| | tag_template: 0.233875302362982 |
|
|
297
|
+
| | tag_elsetemplateortemplatebinding: 0.21207474900311044 |
|
|
298
|
+
| | tag_conditional: 0.21207474900311044 |
|
|
299
|
+
| | tag_condition: 0.21207474900311044 |
|
|
300
|
+
| | fan-in-dependency-graph: 0 |
|
|
301
|
+
| | fan-out-dependency-graph: 2 |
|
|
302
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
303
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
304
|
+
| ./fast-element/dist/dts/templating/html-directive.d.ts | number-of-methods-in-file: 0 |
|
|
305
|
+
| | sloc-in-file: 23 |
|
|
306
|
+
| | tag_behavior: 0.5635453484896057 |
|
|
307
|
+
| | tag_target: 0.28017277828161197 |
|
|
308
|
+
| | tag_within: 0.2557871498791817 |
|
|
309
|
+
| | tag_node: 0.24052029428487717 |
|
|
310
|
+
| | fan-in-dependency-graph: 0 |
|
|
311
|
+
| | fan-out-dependency-graph: 1 |
|
|
312
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
313
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
314
|
+
| ./fast-element/dist/dts/templating/ref.d.ts | number-of-methods-in-file: 0 |
|
|
315
|
+
| | sloc-in-file: 10 |
|
|
316
|
+
| | tag_propertyname: 0.5131996888028276 |
|
|
317
|
+
| | tag_source: 0.3502869148317249 |
|
|
318
|
+
| | tag_reference: 0.3328341934672673 |
|
|
319
|
+
| | tag_behavior: 0.28547179655868743 |
|
|
320
|
+
| | tag_bind: 0.23052867972969066 |
|
|
321
|
+
| | tag_assign: 0.22188946231151155 |
|
|
322
|
+
| | tag_property: 0.210172148899035 |
|
|
323
|
+
| | fan-in-dependency-graph: 0 |
|
|
324
|
+
| | fan-out-dependency-graph: 2 |
|
|
325
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
326
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
327
|
+
| ./fast-element/dist/dts/templating/template.d.ts | number-of-methods-in-file: 0 |
|
|
328
|
+
| | sloc-in-file: 27 |
|
|
329
|
+
| | tag_template: 0.3664706986962105 |
|
|
330
|
+
| | tag_host: 0.31153034649153905 |
|
|
331
|
+
| | tag_hostbindingtarget: 0.2953869696381885 |
|
|
332
|
+
| | tag_htmlview: 0.2693894894518713 |
|
|
333
|
+
| | tag_tparent: 0.23571580327038738 |
|
|
334
|
+
| | tag_will: 0.23274809909880442 |
|
|
335
|
+
| | tag_html: 0.2206200473389547 |
|
|
336
|
+
| | fan-in-dependency-graph: 0 |
|
|
337
|
+
| | fan-out-dependency-graph: 3 |
|
|
338
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
339
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
340
|
+
| ./fast-element/dist/dts/templating/children.d.ts | number-of-methods-in-file: 0 |
|
|
341
|
+
| | sloc-in-file: 17 |
|
|
342
|
+
| | tag_options: 0.34561403230951854 |
|
|
343
|
+
| | tag_childrenbehavioroptions: 0.31265615186765555 |
|
|
344
|
+
| | tag_child: 0.28513878330104053 |
|
|
345
|
+
| | tag_configure: 0.26379465402511676 |
|
|
346
|
+
| | fan-in-dependency-graph: 0 |
|
|
347
|
+
| | fan-out-dependency-graph: 2 |
|
|
348
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
349
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
350
|
+
| ./fast-element/dist/dts/templating/node-observation.d.ts | number-of-methods-in-file: 0 |
|
|
351
|
+
| | sloc-in-file: 22 |
|
|
352
|
+
| | tag_node: 0.4350079641120247 |
|
|
353
|
+
| | tag_filter: 0.302148649725125 |
|
|
354
|
+
| | tag_source: 0.2610047784672148 |
|
|
355
|
+
| | tag_options: 0.23857064830892574 |
|
|
356
|
+
| | tag_nodes: 0.21148333120705703 |
|
|
357
|
+
| | tag_elementsfilter: 0.20666704743541092 |
|
|
358
|
+
| | tag_array: 0.20059577212272034 |
|
|
359
|
+
| | fan-in-dependency-graph: 0 |
|
|
360
|
+
| | fan-out-dependency-graph: 1 |
|
|
361
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
362
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
363
|
+
| fast-element/dist/dts/interfaces.js | fan-in-dependency-graph: 1 |
|
|
364
|
+
| | fan-out-dependency-graph: 0 |
|
|
365
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
366
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
367
|
+
| fast-element/dist/dts/platform.js | fan-in-dependency-graph: 1 |
|
|
368
|
+
| | fan-out-dependency-graph: 0 |
|
|
369
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
370
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
371
|
+
| ../styles/element-styles.js | fan-in-dependency-graph: 2 |
|
|
372
|
+
| | fan-out-dependency-graph: 0 |
|
|
373
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
374
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
375
|
+
| ../templating/template.js | fan-in-dependency-graph: 2 |
|
|
376
|
+
| | fan-out-dependency-graph: 0 |
|
|
377
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
378
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
379
|
+
| fast-element/dist/dts/components/attributes.js | fan-in-dependency-graph: 1 |
|
|
380
|
+
| | fan-out-dependency-graph: 0 |
|
|
381
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
382
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
383
|
+
| ../observation/observable.js | fan-in-dependency-graph: 6 |
|
|
384
|
+
| | fan-out-dependency-graph: 0 |
|
|
385
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
386
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
387
|
+
| ../observation/behavior.js | fan-in-dependency-graph: 9 |
|
|
388
|
+
| | fan-out-dependency-graph: 0 |
|
|
389
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
390
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
391
|
+
| ../observation/notifier.js | fan-in-dependency-graph: 2 |
|
|
392
|
+
| | fan-out-dependency-graph: 0 |
|
|
393
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
394
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
395
|
+
| ../templating/view.js | fan-in-dependency-graph: 1 |
|
|
396
|
+
| | fan-out-dependency-graph: 0 |
|
|
397
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
398
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
399
|
+
| fast-element/dist/dts/components/fast-definitions.js | fan-in-dependency-graph: 2 |
|
|
400
|
+
| | fan-out-dependency-graph: 0 |
|
|
401
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
402
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
403
|
+
| fast-element/dist/dts/components/controller.js | fan-in-dependency-graph: 1 |
|
|
404
|
+
| | fan-out-dependency-graph: 0 |
|
|
405
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
406
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
407
|
+
| fast-element/dist/dts/styles/css-directive.js | fan-in-dependency-graph: 1 |
|
|
408
|
+
| | fan-out-dependency-graph: 0 |
|
|
409
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
410
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
411
|
+
| fast-element/dist/dts/styles/element-styles.js | fan-in-dependency-graph: 2 |
|
|
412
|
+
| | fan-out-dependency-graph: 0 |
|
|
413
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
414
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
415
|
+
| fast-element/dist/dts/observation/observable.js | fan-in-dependency-graph: 1 |
|
|
416
|
+
| | fan-out-dependency-graph: 0 |
|
|
417
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 8 |
|
|
418
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
419
|
+
| fast-element/dist/dts/observation/notifier.js | fan-in-dependency-graph: 1 |
|
|
420
|
+
| | fan-out-dependency-graph: 0 |
|
|
421
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 9 |
|
|
422
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
423
|
+
| fast-element/dist/dts/templating/html-directive.js | fan-in-dependency-graph: 4 |
|
|
424
|
+
| | fan-out-dependency-graph: 0 |
|
|
425
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
426
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
427
|
+
| ../observation/array-change-records.js | fan-in-dependency-graph: 1 |
|
|
428
|
+
| | fan-out-dependency-graph: 0 |
|
|
429
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 7 |
|
|
430
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
431
|
+
| fast-element/dist/dts/templating/template.js | fan-in-dependency-graph: 5 |
|
|
432
|
+
| | fan-out-dependency-graph: 0 |
|
|
433
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
434
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
435
|
+
| fast-element/dist/dts/templating/node-observation.js | fan-in-dependency-graph: 2 |
|
|
436
|
+
| | fan-out-dependency-graph: 0 |
|
|
437
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
438
|
+
| ------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
439
|
+
| fast-element/dist/dts/templating/view.js | fan-in-dependency-graph: 1 |
|
|
440
|
+
| | fan-out-dependency-graph: 0 |
|
|
441
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
442
|
+
+---------------------------------------------------------------+---------------------------------------------------------------+
|