@rws-framework/client 2.0.17 → 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,211 @@
|
|
|
1
|
+
.links line {
|
|
2
|
+
stroke: #999;
|
|
3
|
+
stroke-opacity: 0.6;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.table-condensed {
|
|
7
|
+
font-size: 10px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.btn {
|
|
11
|
+
font-size: 12px
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.btn-group-vertical {
|
|
15
|
+
min-width: 180px;
|
|
16
|
+
max-width: 180px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.btn-with-spacing {
|
|
20
|
+
margin-bottom: 4px;
|
|
21
|
+
border-radius: 4px !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.btn-with-spacing-right {
|
|
25
|
+
margin-right: 4px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.btn-with-spacing-left {
|
|
29
|
+
margin-left: 4px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.jumbotron {
|
|
33
|
+
height: 100vh;
|
|
34
|
+
background-size: cover;
|
|
35
|
+
background-position: center;
|
|
36
|
+
padding: 25px;
|
|
37
|
+
padding-bottom: 40rem;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.node circle {
|
|
41
|
+
stroke: #fff;
|
|
42
|
+
stroke-width: 1.5px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.node text {
|
|
46
|
+
fill: #666;
|
|
47
|
+
font-family: Helvetica
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.truncate {
|
|
51
|
+
width: 250px;
|
|
52
|
+
white-space: nowrap;
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
text-overflow: ellipsis;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
div.tooltip {
|
|
58
|
+
position: absolute;
|
|
59
|
+
width: auto;
|
|
60
|
+
height: auto;
|
|
61
|
+
padding: 2px;
|
|
62
|
+
background: #e7e7e7;
|
|
63
|
+
border: solid 2px #333;
|
|
64
|
+
border-radius: 5px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.table-condensed>thead>tr>th,
|
|
68
|
+
.table-condensed>tbody>tr>th,
|
|
69
|
+
.table-condensed>tfoot>tr>th,
|
|
70
|
+
.table-condensed>thead>tr>td,
|
|
71
|
+
.table-condensed>tbody>tr>td,
|
|
72
|
+
.table-condensed>tfoot>tr>td {
|
|
73
|
+
padding: 2px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.card-header {
|
|
77
|
+
padding: 8px;
|
|
78
|
+
max-height: 36px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.card {
|
|
82
|
+
margin: 2px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.custom-control-input {
|
|
86
|
+
width: 16px;
|
|
87
|
+
height: 16px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
div.graphDiv {
|
|
91
|
+
width: 100%;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
body {
|
|
95
|
+
overflow-y: hidden;
|
|
96
|
+
overflow-x: hidden;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.card-body {
|
|
100
|
+
padding-top: 4px;
|
|
101
|
+
padding-bottom: 12px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.tooltip-inner {
|
|
105
|
+
background-color: white;
|
|
106
|
+
color: black;
|
|
107
|
+
font-size: smaller;
|
|
108
|
+
text-align: left;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.wide-tooltip .tooltip-inner {
|
|
112
|
+
min-width: 340px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.bs-tooltip-bottom {
|
|
116
|
+
margin-top: 6px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
hr {
|
|
120
|
+
margin-top: 1rem;
|
|
121
|
+
margin-bottom: 1rem;
|
|
122
|
+
border: 0;
|
|
123
|
+
border-top: 2px solid #0d6efd;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.btn {
|
|
127
|
+
padding: 2px;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.btn-left-aligned {
|
|
131
|
+
text-align: left !important;
|
|
132
|
+
padding-left: 10px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.btn-right-aligned {
|
|
136
|
+
text-align: right !important;
|
|
137
|
+
padding-right: 10px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
#projectNameListElement {
|
|
141
|
+
padding-bottom: 1px;
|
|
142
|
+
padding-top: 2px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
#analysisNameListElement {
|
|
146
|
+
padding-bottom: 1px;
|
|
147
|
+
padding-top: 1px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
#analysisDateTimeListElement {
|
|
151
|
+
padding-top: 1px;
|
|
152
|
+
padding-bottom: 4px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
#graphDiv {
|
|
156
|
+
position: relative;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
#inputNodeSearchLabel,
|
|
160
|
+
#selectNodesLabel,
|
|
161
|
+
#resetSelectionLabel,
|
|
162
|
+
#expandSelectionLabel,
|
|
163
|
+
#hoverSelectionLabel,
|
|
164
|
+
#fadeUnselectedNodesLabel {
|
|
165
|
+
font-size: 10px;
|
|
166
|
+
margin-bottom: 2px;
|
|
167
|
+
padding-top: 4px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
#cardMenu {
|
|
171
|
+
position: absolute;
|
|
172
|
+
top: 6px;
|
|
173
|
+
right: 5px;
|
|
174
|
+
width: 200px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
#menuButtonGroup {
|
|
178
|
+
padding-left: 0px;
|
|
179
|
+
padding-top: 6px;
|
|
180
|
+
padding-bottom: 0px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
#dropdown-apply-metric {
|
|
184
|
+
min-width: 200px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.list-group {
|
|
188
|
+
--bs-list-group-color: #212529;
|
|
189
|
+
--bs-list-group-bg: #fff;
|
|
190
|
+
--bs-list-group-border-color: rgba(0, 0, 0, 0.125);
|
|
191
|
+
--bs-list-group-border-width: 1px;
|
|
192
|
+
--bs-list-group-border-radius: 0.375rem;
|
|
193
|
+
--bs-list-group-item-padding-x: 0.2rem;
|
|
194
|
+
--bs-list-group-item-padding-y: 0.2rem;
|
|
195
|
+
--bs-list-group-action-color: #495057;
|
|
196
|
+
--bs-list-group-action-hover-color: #495057;
|
|
197
|
+
--bs-list-group-action-hover-bg: #f8f9fa;
|
|
198
|
+
--bs-list-group-action-active-color: #212529;
|
|
199
|
+
--bs-list-group-action-active-bg: #e9ecef;
|
|
200
|
+
--bs-list-group-disabled-color: #6c757d;
|
|
201
|
+
--bs-list-group-disabled-bg: #fff;
|
|
202
|
+
--bs-list-group-active-color: #fff;
|
|
203
|
+
--bs-list-group-active-bg: #0d6efd;
|
|
204
|
+
--bs-list-group-active-border-color: #0d6efd;
|
|
205
|
+
display: flex;
|
|
206
|
+
flex-direction: column;
|
|
207
|
+
padding-left: 0;
|
|
208
|
+
margin-bottom: 0;
|
|
209
|
+
border-radius: var(--bs-list-group-border-radius);
|
|
210
|
+
}
|
|
211
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// based on https://copyprogramming.com/howto/javascript-dictionary-merge-best-methods-to-combine-key-value-pairs?utm_content=cmp-true
|
|
2
|
+
function mergeDicts(dict1, dict2) {
|
|
3
|
+
const result = {};
|
|
4
|
+
|
|
5
|
+
for (const key in dict1) {
|
|
6
|
+
if (dict2.hasOwnProperty(key)) {
|
|
7
|
+
if ( Array.isArray(dict1[key]) && Array.isArray(dict2[key]) ) {
|
|
8
|
+
result[key] = dict1[key].concat(dict2[key])
|
|
9
|
+
} else if ( typeof dict1[key] === "object" && typeof dict2[key] === "object") {
|
|
10
|
+
result[key] = Object.assign({}, dict1[key], dict2[key]);
|
|
11
|
+
} else {
|
|
12
|
+
result[key] = dict1[key] + dict2[key];
|
|
13
|
+
}
|
|
14
|
+
} else {
|
|
15
|
+
result[key] = dict1[key];
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
for (const key in dict2) {
|
|
20
|
+
if (!dict1.hasOwnProperty(key)) {
|
|
21
|
+
result[key] = dict2[key];
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return result;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function mergeDictsToMostCurrentValues(dict1, dict2) {
|
|
28
|
+
const result = {};
|
|
29
|
+
|
|
30
|
+
for (const key in dict1) {
|
|
31
|
+
|
|
32
|
+
if (dict2.hasOwnProperty(key)) {
|
|
33
|
+
result[key] = dict2[key]
|
|
34
|
+
} else {
|
|
35
|
+
result[key] = dict1[key];
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
for (const key in dict2) {
|
|
40
|
+
if (!dict1.hasOwnProperty(key)) {
|
|
41
|
+
result[key] = dict2[key];
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return result;
|
|
45
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const file_result_dependency_graph = {"directed": true, "multigraph": false, "graph": {}, "nodes": [{"absolute_name": "./fast_element/dist/fast_element.d.ts", "display_name": "./fast_element/dist/fast_element.d.ts", "metric_number_of_methods_in_file": 5, "metric_sloc_in_file": 476, "metric_tag_source": 0.2950593883700795, "metric_tag_binding": 0.2228640061093154, "metric_tag_node": 0.21972507644580389, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 10, "id": "./fast_element/dist/fast_element.d.ts"}, {"absolute_name": "./fast_element/dist/dts/interfaces.d.ts", "display_name": "./fast_element/dist/dts/interfaces.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 10, "metric_tag_object": 0.4637840960261858, "metric_tag_constructable": 0.33480260617642404, "metric_tag_callable": 0.30974088000429123, "metric_tag_type": 0.25796297969952353, "metric_tag_declare": 0.2406756637316964, "metric_tag_isfunction": 0.2063257190838112, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 11, "id": "./fast_element/dist/dts/interfaces.d.ts"}, {"absolute_name": "./fast_element/dist/dts/index.d.ts", "display_name": "./fast_element/dist/dts/index.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 26, "metric_tag_styletarget": 0.24588892039511312, "metric_tag_mutable": 0.24588892039511312, "metric_tag_enablearrayobservation": 0.24588892039511312, "metric_tag_elementstylefactory": 0.24588892039511312, "metric_tag_elementsfilter": 0.24588892039511312, "metric_tag_elements": 0.24588892039511312, "metric_tag_csspartial": 0.24588892039511312, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 12, "id": "./fast_element/dist/dts/index.d.ts"}, {"absolute_name": "./fast_element/dist/dts/dom.d.ts", "display_name": "./fast_element/dist/dts/dom.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 21, "metric_tag_attribute": 0.37450552110305035, "metric_tag_value": 0.35632266430886395, "metric_tag_node": 0.29986898001465656, "metric_tag_attributename": 0.26035445003527014, "metric_tag_placeholder": 0.21966659431036972, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 5, "id": "./fast_element/dist/dts/dom.d.ts"}, {"display_name": "fast_element/dist/dts/interfaces.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 5, "id": "fast_element/dist/dts/interfaces.js"}, {"display_name": "fast_element/dist/dts/platform.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 5, "id": "fast_element/dist/dts/platform.js"}, {"absolute_name": "./fast_element/dist/dts/platform.d.ts", "display_name": "./fast_element/dist/dts/platform.d.ts", "metric_number_of_methods_in_file": 1, "metric_sloc_in_file": 25, "metric_tag_fast": 0.43033499975912926, "metric_tag_trustedtypes": 0.2868899998394195, "metric_tag_trusted": 0.261640351570867, "metric_tag_rules": 0.21516749987956463, "metric_tag_global": 0.21516749987956463, "metric_tag_fastglobal": 0.21516749987956463, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 13, "id": "./fast_element/dist/dts/platform.d.ts"}, {"absolute_name": "./fast_element/dist/dts/components/fast_definitions.d.ts", "display_name": "./fast_element/dist/dts/components/fast_definitions.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 27, "metric_tag_custom": 0.5242710773191185, "metric_tag_element": 0.27646423543924487, "metric_tag_controlling": 0.21420540632448873, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 3, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "./fast_element/dist/dts/components/fast_definitions.d.ts"}, {"display_name": "../styles/element_styles.js", "metric_fan_in_dependency_graph": 2, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "../styles/element_styles.js"}, {"display_name": "../templating/template.js", "metric_fan_in_dependency_graph": 2, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "../templating/template.js"}, {"display_name": "fast_element/dist/dts/components/attributes.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "fast_element/dist/dts/components/attributes.js"}, {"absolute_name": "./fast_element/dist/dts/components/attributes.d.ts", "display_name": "./fast_element/dist/dts/components/attributes.d.ts", "metric_number_of_methods_in_file": 2, "metric_sloc_in_file": 37, "metric_tag_valueconverter": 0.3531804618043131, "metric_tag_value": 0.31232809028826053, "metric_tag_attribute": 0.30481837250760707, "metric_tag_mode": 0.2472263232630192, "metric_tag_attributemode": 0.2472263232630192, "metric_tag_property": 0.2033916931859959, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/components/attributes.d.ts"}, {"display_name": "../observation/observable.js", "metric_fan_in_dependency_graph": 6, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "../observation/observable.js"}, {"absolute_name": "./fast_element/dist/dts/components/controller.d.ts", "display_name": "./fast_element/dist/dts/components/controller.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 36, "metric_tag_styles": 0.38590882878311406, "metric_tag_controller": 0.3792122265121266, "metric_tag_element": 0.29272520051661916, "metric_tag_behaviors": 0.2619334793687805, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 6, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "./fast_element/dist/dts/components/controller.d.ts"}, {"display_name": "../observation/behavior.js", "metric_fan_in_dependency_graph": 9, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "../observation/behavior.js"}, {"display_name": "../observation/notifier.js", "metric_fan_in_dependency_graph": 2, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "../observation/notifier.js"}, {"display_name": "../templating/view.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "../templating/view.js"}, {"display_name": "fast_element/dist/dts/components/fast_definitions.js", "metric_fan_in_dependency_graph": 2, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 6, "id": "fast_element/dist/dts/components/fast_definitions.js"}, {"absolute_name": "./fast_element/dist/dts/components/fast_element.d.ts", "display_name": "./fast_element/dist/dts/components/fast_element.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 17, "metric_tag_fastelement": 0.48787453525753355, "metric_tag_element": 0.25441427562474916, "metric_tag_platform": 0.22868340874923593, "metric_tag_nameordef": 0.216833126781126, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 6, "id": "./fast_element/dist/dts/components/fast_element.d.ts"}, {"display_name": "fast_element/dist/dts/components/controller.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 6, "id": "fast_element/dist/dts/components/controller.js"}, {"absolute_name": "./fast_element/dist/dts/styles/css.d.ts", "display_name": "./fast_element/dist/dts/styles/css.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 4, "metric_tag_strings": 0.4689622500153232, "metric_tag_interpolated": 0.3751698000122586, "metric_tag_values": 0.3470863782511793, "metric_tag_cssdirective": 0.3470863782511793, "metric_tag_are": 0.25985130244673516, "metric_tag_composablestyles": 0.22855509913910438, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 4, "id": "./fast_element/dist/dts/styles/css.d.ts"}, {"display_name": "fast_element/dist/dts/styles/css_directive.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 4, "id": "fast_element/dist/dts/styles/css_directive.js"}, {"display_name": "fast_element/dist/dts/styles/element_styles.js", "metric_fan_in_dependency_graph": 2, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 4, "id": "fast_element/dist/dts/styles/element_styles.js"}, {"absolute_name": "./fast_element/dist/dts/styles/css_directive.d.ts", "display_name": "./fast_element/dist/dts/styles/css_directive.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 6, "metric_tag_css": 0.5680217967897677, "metric_tag_interpolate": 0.36044598837076014, "metric_tag_behavior": 0.3383342993555018, "metric_tag_host": 0.304115956871541, "metric_tag_composablestyles": 0.2670123136600795, "metric_tag_into": 0.23929923701974865, "metric_tag_bind": 0.2276808668956647, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 4, "id": "./fast_element/dist/dts/styles/css_directive.d.ts"}, {"absolute_name": "./fast_element/dist/dts/styles/element_styles.d.ts", "display_name": "./fast_element/dist/dts/styles/element_styles.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 41, "metric_tag_styles": 0.6923552884296407, "metric_tag_styletarget": 0.3367687847124923, "metric_tag_elementstyles": 0.21275958772123027, "metric_tag_composablestyles": 0.21275958772123027, "metric_tag_target": 0.2001741809318195, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "./fast_element/dist/dts/styles/element_styles.d.ts"}, {"absolute_name": "./fast_element/dist/dts/observation/notifier.d.ts", "display_name": "./fast_element/dist/dts/observation/notifier.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 29, "metric_tag_subscriber": 0.6794369195147985, "metric_tag_subscribers": 0.25245393879834804, "metric_tag_source": 0.24636874717030427, "metric_tag_change": 0.23355644108321197, "metric_tag_notification": 0.22648667783094584, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 14, "id": "./fast_element/dist/dts/observation/notifier.d.ts"}, {"absolute_name": "./fast_element/dist/dts/observation/array_observer.d.ts", "display_name": "./fast_element/dist/dts/observation/array_observer.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 1, "metric_tag_observation": 0.416848508241277, "metric_tag_array": 0.35122430349931566, "metric_tag_so": 0.26451691361680973, "metric_tag_manually": 0.26451691361680973, "metric_tag_enabled": 0.26451691361680973, "metric_tag_calling": 0.26451691361680973, "metric_tag_using": 0.24123635649161915, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 15, "id": "./fast_element/dist/dts/observation/array_observer.d.ts"}, {"absolute_name": "./fast_element/dist/dts/observation/array_change_records.d.ts", "display_name": "./fast_element/dist/dts/observation/array_change_records.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 8, "metric_tag_splice": 0.4883123587740202, "metric_tag_items": 0.3051952242337626, "metric_tag_were": 0.2893801308596015, "metric_tag_removed": 0.26391132217263985, "metric_tag_array": 0.24014847840443873, "metric_tag_addedcount": 0.21703509814470112, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 16, "id": "./fast_element/dist/dts/observation/array_change_records.d.ts"}, {"absolute_name": "./fast_element/dist/dts/observation/behavior.d.ts", "display_name": "./fast_element/dist/dts/observation/behavior.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 5, "metric_tag_source": 0.5896207039303109, "metric_tag_context": 0.33986567523503974, "metric_tag_bind": 0.3233646397259858, "metric_tag_behavior": 0.3203470726657382, "metric_tag_unknown": 0.26891172452595136, "metric_tag_executioncontext": 0.25281685365525275, "metric_tag_unbind": 0.23887484234602843, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 8, "id": "./fast_element/dist/dts/observation/behavior.d.ts"}, {"display_name": "fast_element/dist/dts/observation/observable.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 8, "id": "fast_element/dist/dts/observation/observable.js"}, {"absolute_name": "./fast_element/dist/dts/observation/observable.d.ts", "display_name": "./fast_element/dist/dts/observation/observable.d.ts", "metric_number_of_methods_in_file": 2, "metric_sloc_in_file": 43, "metric_tag_source": 0.31823232258159034, "metric_tag_observable": 0.2968732960844341, "metric_tag_property": 0.2603719002940284, "metric_tag_binding": 0.2603719002940284, "metric_tag_current": 0.22907325122092545, "metric_tag_accessor": 0.22907325122092545, "metric_tag_tparent": 0.20616592609883289, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 9, "id": "./fast_element/dist/dts/observation/observable.d.ts"}, {"display_name": "fast_element/dist/dts/observation/notifier.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 9, "id": "fast_element/dist/dts/observation/notifier.js"}, {"absolute_name": "./fast_element/dist/dts/templating/compiler.d.ts", "display_name": "./fast_element/dist/dts/templating/compiler.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 8, "metric_tag_template": 0.4058158827742168, "metric_tag_directives": 0.3104793008553728, "metric_tag_nodebehaviorfactory": 0.25170058055165184, "metric_tag_documentfragment": 0.2328594756415296, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/compiler.d.ts"}, {"display_name": "fast_element/dist/dts/templating/html_directive.js", "metric_fan_in_dependency_graph": 4, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "fast_element/dist/dts/templating/html_directive.js"}, {"absolute_name": "./fast_element/dist/dts/templating/view.d.ts", "display_name": "./fast_element/dist/dts/templating/view.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 35, "metric_tag_view": 0.41724276970492474, "metric_tag_dom": 0.37546020404838, "metric_tag_node": 0.37070309729500844, "metric_tag_nodes": 0.356687193845961, "metric_tag_behaviors": 0.225276122429028, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/view.d.ts"}, {"absolute_name": "./fast_element/dist/dts/templating/repeat.d.ts", "display_name": "./fast_element/dist/dts/templating/repeat.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 45, "metric_tag_tsource": 0.37209693862330756, "metric_tag_binding": 0.33994436164902053, "metric_tag_itemsbinding": 0.3148255919515991, "metric_tag_options": 0.298296135936253, "metric_tag_templatebinding": 0.23611919396369935, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 6, "metric_file_result_dependency_graph_louvain_modularity_in_file": 7, "id": "./fast_element/dist/dts/templating/repeat.d.ts"}, {"display_name": "../observation/array_change_records.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 7, "id": "../observation/array_change_records.js"}, {"display_name": "fast_element/dist/dts/templating/template.js", "metric_fan_in_dependency_graph": 5, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "fast_element/dist/dts/templating/template.js"}, {"absolute_name": "./fast_element/dist/dts/templating/slotted.d.ts", "display_name": "./fast_element/dist/dts/templating/slotted.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 11, "metric_tag_slottedbehavioroptions": 0.42078091516530813, "metric_tag_slotted": 0.42078091516530813, "metric_tag_options": 0.33224035857295803, "metric_tag_node": 0.2423218497382342, "metric_tag_slot": 0.21039045758265407, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/slotted.d.ts"}, {"display_name": "fast_element/dist/dts/templating/node_observation.js", "metric_fan_in_dependency_graph": 2, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "fast_element/dist/dts/templating/node_observation.js"}, {"absolute_name": "./fast_element/dist/dts/templating/binding.d.ts", "display_name": "./fast_element/dist/dts/templating/binding.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 38, "metric_tag_binding": 0.5205085590867429, "metric_tag_bindingbehavior": 0.28542301086516897, "metric_tag_typeof": 0.24081747297221018, "metric_tag_targetname": 0.21691872887104727, "metric_tag_target": 0.20887588155332565, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 3, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/binding.d.ts"}, {"absolute_name": "./fast_element/dist/dts/templating/when.d.ts", "display_name": "./fast_element/dist/dts/templating/when.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 3, "metric_tag_binding": 0.4885235390584788, "metric_tag_syntheticviewtemplate": 0.44732995582012125, "metric_tag_tsource": 0.41775704220966275, "metric_tag_template": 0.233875302362982, "metric_tag_elsetemplateortemplatebinding": 0.21207474900311044, "metric_tag_conditional": 0.21207474900311044, "metric_tag_condition": 0.21207474900311044, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/when.d.ts"}, {"absolute_name": "./fast_element/dist/dts/templating/html_directive.d.ts", "display_name": "./fast_element/dist/dts/templating/html_directive.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 23, "metric_tag_behavior": 0.5635453484896057, "metric_tag_target": 0.28017277828161197, "metric_tag_within": 0.2557871498791817, "metric_tag_node": 0.24052029428487717, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "./fast_element/dist/dts/templating/html_directive.d.ts"}, {"absolute_name": "./fast_element/dist/dts/templating/ref.d.ts", "display_name": "./fast_element/dist/dts/templating/ref.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 10, "metric_tag_propertyname": 0.5131996888028276, "metric_tag_source": 0.3502869148317249, "metric_tag_reference": 0.3328341934672673, "metric_tag_behavior": 0.28547179655868743, "metric_tag_bind": 0.23052867972969066, "metric_tag_assign": 0.22188946231151155, "metric_tag_property": 0.210172148899035, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/ref.d.ts"}, {"absolute_name": "./fast_element/dist/dts/templating/template.d.ts", "display_name": "./fast_element/dist/dts/templating/template.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 27, "metric_tag_template": 0.3664706986962105, "metric_tag_host": 0.31153034649153905, "metric_tag_hostbindingtarget": 0.2953869696381885, "metric_tag_htmlview": 0.2693894894518713, "metric_tag_tparent": 0.23571580327038738, "metric_tag_will": 0.23274809909880442, "metric_tag_html": 0.2206200473389547, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 3, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/template.d.ts"}, {"display_name": "fast_element/dist/dts/templating/view.js", "metric_fan_in_dependency_graph": 1, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "fast_element/dist/dts/templating/view.js"}, {"absolute_name": "./fast_element/dist/dts/templating/children.d.ts", "display_name": "./fast_element/dist/dts/templating/children.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 17, "metric_tag_options": 0.34561403230951854, "metric_tag_childrenbehavioroptions": 0.31265615186765555, "metric_tag_child": 0.28513878330104053, "metric_tag_configure": 0.26379465402511676, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/children.d.ts"}, {"absolute_name": "./fast_element/dist/dts/templating/node_observation.d.ts", "display_name": "./fast_element/dist/dts/templating/node_observation.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 22, "metric_tag_node": 0.4350079641120247, "metric_tag_filter": 0.302148649725125, "metric_tag_source": 0.2610047784672148, "metric_tag_options": 0.23857064830892574, "metric_tag_nodes": 0.21148333120705703, "metric_tag_elementsfilter": 0.20666704743541092, "metric_tag_array": 0.20059577212272034, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "./fast_element/dist/dts/templating/node_observation.d.ts"}], "links": [{"source": "./fast_element/dist/dts/dom.d.ts", "target": "fast_element/dist/dts/interfaces.js"}, {"source": "./fast_element/dist/dts/dom.d.ts", "target": "fast_element/dist/dts/platform.js"}, {"source": "./fast_element/dist/dts/components/fast_definitions.d.ts", "target": "../styles/element_styles.js"}, {"source": "./fast_element/dist/dts/components/fast_definitions.d.ts", "target": "../templating/template.js"}, {"source": "./fast_element/dist/dts/components/fast_definitions.d.ts", "target": "fast_element/dist/dts/components/attributes.js"}, {"source": "./fast_element/dist/dts/components/attributes.d.ts", "target": "../observation/observable.js"}, {"source": "./fast_element/dist/dts/components/controller.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/components/controller.d.ts", "target": "../observation/notifier.js"}, {"source": "./fast_element/dist/dts/components/controller.d.ts", "target": "../styles/element_styles.js"}, {"source": "./fast_element/dist/dts/components/controller.d.ts", "target": "../templating/template.js"}, {"source": "./fast_element/dist/dts/components/controller.d.ts", "target": "../templating/view.js"}, {"source": "./fast_element/dist/dts/components/controller.d.ts", "target": "fast_element/dist/dts/components/fast_definitions.js"}, {"source": "./fast_element/dist/dts/components/fast_element.d.ts", "target": "fast_element/dist/dts/components/controller.js"}, {"source": "./fast_element/dist/dts/components/fast_element.d.ts", "target": "fast_element/dist/dts/components/fast_definitions.js"}, {"source": "./fast_element/dist/dts/styles/css.d.ts", "target": "fast_element/dist/dts/styles/css_directive.js"}, {"source": "./fast_element/dist/dts/styles/css.d.ts", "target": "fast_element/dist/dts/styles/element_styles.js"}, {"source": "./fast_element/dist/dts/styles/css_directive.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/styles/css_directive.d.ts", "target": "fast_element/dist/dts/styles/element_styles.js"}, {"source": "./fast_element/dist/dts/styles/element_styles.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/observation/behavior.d.ts", "target": "fast_element/dist/dts/observation/observable.js"}, {"source": "./fast_element/dist/dts/observation/observable.d.ts", "target": "fast_element/dist/dts/observation/notifier.js"}, {"source": "./fast_element/dist/dts/templating/compiler.d.ts", "target": "fast_element/dist/dts/templating/html_directive.js"}, {"source": "./fast_element/dist/dts/templating/view.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/templating/view.d.ts", "target": "../observation/observable.js"}, {"source": "./fast_element/dist/dts/templating/repeat.d.ts", "target": "../observation/observable.js"}, {"source": "./fast_element/dist/dts/templating/repeat.d.ts", "target": "../observation/notifier.js"}, {"source": "./fast_element/dist/dts/templating/repeat.d.ts", "target": "../observation/array_change_records.js"}, {"source": "./fast_element/dist/dts/templating/repeat.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/templating/repeat.d.ts", "target": "fast_element/dist/dts/templating/html_directive.js"}, {"source": "./fast_element/dist/dts/templating/repeat.d.ts", "target": "fast_element/dist/dts/templating/template.js"}, {"source": "./fast_element/dist/dts/templating/slotted.d.ts", "target": "fast_element/dist/dts/templating/node_observation.js"}, {"source": "./fast_element/dist/dts/templating/slotted.d.ts", "target": "fast_element/dist/dts/templating/template.js"}, {"source": "./fast_element/dist/dts/templating/binding.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/templating/binding.d.ts", "target": "../observation/observable.js"}, {"source": "./fast_element/dist/dts/templating/binding.d.ts", "target": "fast_element/dist/dts/templating/html_directive.js"}, {"source": "./fast_element/dist/dts/templating/when.d.ts", "target": "../observation/observable.js"}, {"source": "./fast_element/dist/dts/templating/when.d.ts", "target": "fast_element/dist/dts/templating/template.js"}, {"source": "./fast_element/dist/dts/templating/html_directive.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/templating/ref.d.ts", "target": "../observation/behavior.js"}, {"source": "./fast_element/dist/dts/templating/ref.d.ts", "target": "fast_element/dist/dts/templating/template.js"}, {"source": "./fast_element/dist/dts/templating/template.d.ts", "target": "../observation/observable.js"}, {"source": "./fast_element/dist/dts/templating/template.d.ts", "target": "fast_element/dist/dts/templating/view.js"}, {"source": "./fast_element/dist/dts/templating/template.d.ts", "target": "fast_element/dist/dts/templating/html_directive.js"}, {"source": "./fast_element/dist/dts/templating/children.d.ts", "target": "fast_element/dist/dts/templating/node_observation.js"}, {"source": "./fast_element/dist/dts/templating/children.d.ts", "target": "fast_element/dist/dts/templating/template.js"}, {"source": "./fast_element/dist/dts/templating/node_observation.d.ts", "target": "../observation/behavior.js"}]}
|
|
2
|
+
const file_result_dependency_graph_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"}
|
|
3
|
+
const file_result_dependency_graph_overall_metric_results = {"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"}
|
|
4
|
+
const file_result_dependency_graph_cluster_metrics_map = {"0": {"nodes_in_cluster": "8", "sloc_in_cluster": "145", "% of total sloc": "13.80", "avg_cluster_fan_in": "1.38", "avg_cluster_fan_out": "1.25", "avg_cluster_methods": "0.25"}, "1": {"nodes_in_cluster": "7", "sloc_in_cluster": "63", "% of total sloc": "5.99", "avg_cluster_fan_in": "1.14", "avg_cluster_fan_out": "1.29", "avg_cluster_methods": "0.00"}, "2": {"nodes_in_cluster": "6", "sloc_in_cluster": "41", "% of total sloc": "3.90", "avg_cluster_fan_in": "1.17", "avg_cluster_fan_out": "1.33", "avg_cluster_methods": "0.00"}, "3": {"nodes_in_cluster": "4", "sloc_in_cluster": "86", "% of total sloc": "8.18", "avg_cluster_fan_in": "2.25", "avg_cluster_fan_out": "0.75", "avg_cluster_methods": "0.00"}, "4": {"nodes_in_cluster": "4", "sloc_in_cluster": "10", "% of total sloc": "0.95", "avg_cluster_fan_in": "0.75", "avg_cluster_fan_out": "1.00", "avg_cluster_methods": "0.00"}, "5": {"nodes_in_cluster": "3", "sloc_in_cluster": "21", "% of total sloc": "2.00", "avg_cluster_fan_in": "0.67", "avg_cluster_fan_out": "0.67", "avg_cluster_methods": "0.00"}, "6": {"nodes_in_cluster": "3", "sloc_in_cluster": "17", "% of total sloc": "1.62", "avg_cluster_fan_in": "1.00", "avg_cluster_fan_out": "0.67", "avg_cluster_methods": "0.00"}, "7": {"nodes_in_cluster": "2", "sloc_in_cluster": "45", "% of total sloc": "4.28", "avg_cluster_fan_in": "0.50", "avg_cluster_fan_out": "3.00", "avg_cluster_methods": "0.00"}, "8": {"nodes_in_cluster": "2", "sloc_in_cluster": "5", "% of total sloc": "0.48", "avg_cluster_fan_in": "0.50", "avg_cluster_fan_out": "0.50", "avg_cluster_methods": "0.00"}, "9": {"nodes_in_cluster": "2", "sloc_in_cluster": "43", "% of total sloc": "4.09", "avg_cluster_fan_in": "0.50", "avg_cluster_fan_out": "0.50", "avg_cluster_methods": "1.00"}, "10": {"nodes_in_cluster": "1", "sloc_in_cluster": "476", "% of total sloc": "45.29", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "5.00"}, "11": {"nodes_in_cluster": "1", "sloc_in_cluster": "10", "% of total sloc": "0.95", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "12": {"nodes_in_cluster": "1", "sloc_in_cluster": "26", "% of total sloc": "2.47", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "13": {"nodes_in_cluster": "1", "sloc_in_cluster": "25", "% of total sloc": "2.38", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "1.00"}, "14": {"nodes_in_cluster": "1", "sloc_in_cluster": "29", "% of total sloc": "2.76", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "15": {"nodes_in_cluster": "1", "sloc_in_cluster": "1", "% of total sloc": "0.10", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "16": {"nodes_in_cluster": "1", "sloc_in_cluster": "8", "% of total sloc": "0.76", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}}
|
|
5
|
+
|
|
6
|
+
const filesystem_graph = {"directed": true, "multigraph": false, "graph": {}, "nodes": [{"directory": true, "file": false, "display_name": "./fast_element", "id": "./fast_element"}, {"directory": true, "file": false, "display_name": "fast_element/./docs", "id": "fast_element/./docs"}, {"id": "fast_element"}, {"directory": true, "file": false, "display_name": "fast_element/./dist", "id": "fast_element/./dist"}, {"directory": true, "file": false, "display_name": "fast_element/docs/./guide", "id": "fast_element/docs/./guide"}, {"id": "fast_element/docs"}, {"directory": true, "file": false, "display_name": "fast_element/dist/./esm", "id": "fast_element/dist/./esm"}, {"id": "fast_element/dist"}, {"directory": true, "file": false, "display_name": "fast_element/dist/./dts", "id": "fast_element/dist/./dts"}, {"directory": false, "file": true, "display_name": "fast_element.d.ts", "result_name": "./fast_element/dist/fast_element.d.ts", "metric_number_of_methods_in_file": 5, "metric_sloc_in_file": 476, "metric_tag_source": 0.2950593883700795, "metric_tag_binding": 0.2228640061093154, "metric_tag_node": 0.21972507644580389, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 10, "id": "./fast_element/dist/fast_element.d.ts"}, {"directory": true, "file": false, "display_name": "fast_element/dist/esm/./components", "id": "fast_element/dist/esm/./components"}, {"id": "fast_element/dist/esm"}, {"directory": true, "file": false, "display_name": "fast_element/dist/esm/./styles", "id": "fast_element/dist/esm/./styles"}, {"directory": true, "file": false, "display_name": "fast_element/dist/esm/./observation", "id": "fast_element/dist/esm/./observation"}, {"directory": true, "file": false, "display_name": "fast_element/dist/esm/./templating", "id": "fast_element/dist/esm/./templating"}, {"directory": true, "file": false, "display_name": "fast_element/dist/dts/./components", "id": "fast_element/dist/dts/./components"}, {"id": "fast_element/dist/dts"}, {"directory": true, "file": false, "display_name": "fast_element/dist/dts/./styles", "id": "fast_element/dist/dts/./styles"}, {"directory": true, "file": false, "display_name": "fast_element/dist/dts/./observation", "id": "fast_element/dist/dts/./observation"}, {"directory": true, "file": false, "display_name": "fast_element/dist/dts/./templating", "id": "fast_element/dist/dts/./templating"}, {"directory": false, "file": true, "display_name": "interfaces.d.ts", "result_name": "./fast_element/dist/dts/interfaces.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 10, "metric_tag_object": 0.4637840960261858, "metric_tag_constructable": 0.33480260617642404, "metric_tag_callable": 0.30974088000429123, "metric_tag_type": 0.25796297969952353, "metric_tag_declare": 0.2406756637316964, "metric_tag_isfunction": 0.2063257190838112, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 11, "id": "./fast_element/dist/dts/interfaces.d.ts"}, {"directory": false, "file": true, "display_name": "index.d.ts", "result_name": "./fast_element/dist/dts/index.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 26, "metric_tag_styletarget": 0.24588892039511312, "metric_tag_mutable": 0.24588892039511312, "metric_tag_enablearrayobservation": 0.24588892039511312, "metric_tag_elementstylefactory": 0.24588892039511312, "metric_tag_elementsfilter": 0.24588892039511312, "metric_tag_elements": 0.24588892039511312, "metric_tag_csspartial": 0.24588892039511312, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 12, "id": "./fast_element/dist/dts/index.d.ts"}, {"directory": false, "file": true, "display_name": "dom.d.ts", "result_name": "./fast_element/dist/dts/dom.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 21, "metric_tag_attribute": 0.37450552110305035, "metric_tag_value": 0.35632266430886395, "metric_tag_node": 0.29986898001465656, "metric_tag_attributename": 0.26035445003527014, "metric_tag_placeholder": 0.21966659431036972, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 5, "id": "./fast_element/dist/dts/dom.d.ts"}, {"directory": false, "file": true, "display_name": "platform.d.ts", "result_name": "./fast_element/dist/dts/platform.d.ts", "metric_number_of_methods_in_file": 1, "metric_sloc_in_file": 25, "metric_tag_fast": 0.43033499975912926, "metric_tag_trustedtypes": 0.2868899998394195, "metric_tag_trusted": 0.261640351570867, "metric_tag_rules": 0.21516749987956463, "metric_tag_global": 0.21516749987956463, "metric_tag_fastglobal": 0.21516749987956463, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 13, "id": "./fast_element/dist/dts/platform.d.ts"}, {"directory": false, "file": true, "display_name": "fast_definitions.d.ts", "result_name": "./fast_element/dist/dts/components/fast_definitions.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 27, "metric_tag_custom": 0.5242710773191185, "metric_tag_element": 0.27646423543924487, "metric_tag_controlling": 0.21420540632448873, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 3, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "./fast_element/dist/dts/components/fast_definitions.d.ts"}, {"id": "fast_element/dist/dts/components"}, {"directory": false, "file": true, "display_name": "attributes.d.ts", "result_name": "./fast_element/dist/dts/components/attributes.d.ts", "metric_number_of_methods_in_file": 2, "metric_sloc_in_file": 37, "metric_tag_valueconverter": 0.3531804618043131, "metric_tag_value": 0.31232809028826053, "metric_tag_attribute": 0.30481837250760707, "metric_tag_mode": 0.2472263232630192, "metric_tag_attributemode": 0.2472263232630192, "metric_tag_property": 0.2033916931859959, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/components/attributes.d.ts"}, {"directory": false, "file": true, "display_name": "controller.d.ts", "result_name": "./fast_element/dist/dts/components/controller.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 36, "metric_tag_styles": 0.38590882878311406, "metric_tag_controller": 0.3792122265121266, "metric_tag_element": 0.29272520051661916, "metric_tag_behaviors": 0.2619334793687805, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 6, "metric_file_result_dependency_graph_louvain_modularity_in_file": 1, "id": "./fast_element/dist/dts/components/controller.d.ts"}, {"directory": false, "file": true, "display_name": "fast_element.d.ts", "result_name": "./fast_element/dist/dts/components/fast_element.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 17, "metric_tag_fastelement": 0.48787453525753355, "metric_tag_element": 0.25441427562474916, "metric_tag_platform": 0.22868340874923593, "metric_tag_nameordef": 0.216833126781126, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 6, "id": "./fast_element/dist/dts/components/fast_element.d.ts"}, {"directory": false, "file": true, "display_name": "css.d.ts", "result_name": "./fast_element/dist/dts/styles/css.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 4, "metric_tag_strings": 0.4689622500153232, "metric_tag_interpolated": 0.3751698000122586, "metric_tag_values": 0.3470863782511793, "metric_tag_cssdirective": 0.3470863782511793, "metric_tag_are": 0.25985130244673516, "metric_tag_composablestyles": 0.22855509913910438, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 4, "id": "./fast_element/dist/dts/styles/css.d.ts"}, {"id": "fast_element/dist/dts/styles"}, {"directory": false, "file": true, "display_name": "css_directive.d.ts", "result_name": "./fast_element/dist/dts/styles/css_directive.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 6, "metric_tag_css": 0.5680217967897677, "metric_tag_interpolate": 0.36044598837076014, "metric_tag_behavior": 0.3383342993555018, "metric_tag_host": 0.304115956871541, "metric_tag_composablestyles": 0.2670123136600795, "metric_tag_into": 0.23929923701974865, "metric_tag_bind": 0.2276808668956647, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 4, "id": "./fast_element/dist/dts/styles/css_directive.d.ts"}, {"directory": false, "file": true, "display_name": "element_styles.d.ts", "result_name": "./fast_element/dist/dts/styles/element_styles.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 41, "metric_tag_styles": 0.6923552884296407, "metric_tag_styletarget": 0.3367687847124923, "metric_tag_elementstyles": 0.21275958772123027, "metric_tag_composablestyles": 0.21275958772123027, "metric_tag_target": 0.2001741809318195, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "./fast_element/dist/dts/styles/element_styles.d.ts"}, {"directory": false, "file": true, "display_name": "notifier.d.ts", "result_name": "./fast_element/dist/dts/observation/notifier.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 29, "metric_tag_subscriber": 0.6794369195147985, "metric_tag_subscribers": 0.25245393879834804, "metric_tag_source": 0.24636874717030427, "metric_tag_change": 0.23355644108321197, "metric_tag_notification": 0.22648667783094584, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 14, "id": "./fast_element/dist/dts/observation/notifier.d.ts"}, {"id": "fast_element/dist/dts/observation"}, {"directory": false, "file": true, "display_name": "array_observer.d.ts", "result_name": "./fast_element/dist/dts/observation/array_observer.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 1, "metric_tag_observation": 0.416848508241277, "metric_tag_array": 0.35122430349931566, "metric_tag_so": 0.26451691361680973, "metric_tag_manually": 0.26451691361680973, "metric_tag_enabled": 0.26451691361680973, "metric_tag_calling": 0.26451691361680973, "metric_tag_using": 0.24123635649161915, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 15, "id": "./fast_element/dist/dts/observation/array_observer.d.ts"}, {"directory": false, "file": true, "display_name": "array_change_records.d.ts", "result_name": "./fast_element/dist/dts/observation/array_change_records.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 8, "metric_tag_splice": 0.4883123587740202, "metric_tag_items": 0.3051952242337626, "metric_tag_were": 0.2893801308596015, "metric_tag_removed": 0.26391132217263985, "metric_tag_array": 0.24014847840443873, "metric_tag_addedcount": 0.21703509814470112, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 0, "metric_file_result_dependency_graph_louvain_modularity_in_file": 16, "id": "./fast_element/dist/dts/observation/array_change_records.d.ts"}, {"directory": false, "file": true, "display_name": "behavior.d.ts", "result_name": "./fast_element/dist/dts/observation/behavior.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 5, "metric_tag_source": 0.5896207039303109, "metric_tag_context": 0.33986567523503974, "metric_tag_bind": 0.3233646397259858, "metric_tag_behavior": 0.3203470726657382, "metric_tag_unknown": 0.26891172452595136, "metric_tag_executioncontext": 0.25281685365525275, "metric_tag_unbind": 0.23887484234602843, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 8, "id": "./fast_element/dist/dts/observation/behavior.d.ts"}, {"directory": false, "file": true, "display_name": "observable.d.ts", "result_name": "./fast_element/dist/dts/observation/observable.d.ts", "metric_number_of_methods_in_file": 2, "metric_sloc_in_file": 43, "metric_tag_source": 0.31823232258159034, "metric_tag_observable": 0.2968732960844341, "metric_tag_property": 0.2603719002940284, "metric_tag_binding": 0.2603719002940284, "metric_tag_current": 0.22907325122092545, "metric_tag_accessor": 0.22907325122092545, "metric_tag_tparent": 0.20616592609883289, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 9, "id": "./fast_element/dist/dts/observation/observable.d.ts"}, {"directory": false, "file": true, "display_name": "compiler.d.ts", "result_name": "./fast_element/dist/dts/templating/compiler.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 8, "metric_tag_template": 0.4058158827742168, "metric_tag_directives": 0.3104793008553728, "metric_tag_nodebehaviorfactory": 0.25170058055165184, "metric_tag_documentfragment": 0.2328594756415296, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/compiler.d.ts"}, {"id": "fast_element/dist/dts/templating"}, {"directory": false, "file": true, "display_name": "view.d.ts", "result_name": "./fast_element/dist/dts/templating/view.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 35, "metric_tag_view": 0.41724276970492474, "metric_tag_dom": 0.37546020404838, "metric_tag_node": 0.37070309729500844, "metric_tag_nodes": 0.356687193845961, "metric_tag_behaviors": 0.225276122429028, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/view.d.ts"}, {"directory": false, "file": true, "display_name": "repeat.d.ts", "result_name": "./fast_element/dist/dts/templating/repeat.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 45, "metric_tag_tsource": 0.37209693862330756, "metric_tag_binding": 0.33994436164902053, "metric_tag_itemsbinding": 0.3148255919515991, "metric_tag_options": 0.298296135936253, "metric_tag_templatebinding": 0.23611919396369935, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 6, "metric_file_result_dependency_graph_louvain_modularity_in_file": 7, "id": "./fast_element/dist/dts/templating/repeat.d.ts"}, {"directory": false, "file": true, "display_name": "slotted.d.ts", "result_name": "./fast_element/dist/dts/templating/slotted.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 11, "metric_tag_slottedbehavioroptions": 0.42078091516530813, "metric_tag_slotted": 0.42078091516530813, "metric_tag_options": 0.33224035857295803, "metric_tag_node": 0.2423218497382342, "metric_tag_slot": 0.21039045758265407, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/slotted.d.ts"}, {"directory": false, "file": true, "display_name": "binding.d.ts", "result_name": "./fast_element/dist/dts/templating/binding.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 38, "metric_tag_binding": 0.5205085590867429, "metric_tag_bindingbehavior": 0.28542301086516897, "metric_tag_typeof": 0.24081747297221018, "metric_tag_targetname": 0.21691872887104727, "metric_tag_target": 0.20887588155332565, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 3, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/binding.d.ts"}, {"directory": false, "file": true, "display_name": "when.d.ts", "result_name": "./fast_element/dist/dts/templating/when.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 3, "metric_tag_binding": 0.4885235390584788, "metric_tag_syntheticviewtemplate": 0.44732995582012125, "metric_tag_tsource": 0.41775704220966275, "metric_tag_template": 0.233875302362982, "metric_tag_elsetemplateortemplatebinding": 0.21207474900311044, "metric_tag_conditional": 0.21207474900311044, "metric_tag_condition": 0.21207474900311044, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/when.d.ts"}, {"directory": false, "file": true, "display_name": "html_directive.d.ts", "result_name": "./fast_element/dist/dts/templating/html_directive.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 23, "metric_tag_behavior": 0.5635453484896057, "metric_tag_target": 0.28017277828161197, "metric_tag_within": 0.2557871498791817, "metric_tag_node": 0.24052029428487717, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "./fast_element/dist/dts/templating/html_directive.d.ts"}, {"directory": false, "file": true, "display_name": "ref.d.ts", "result_name": "./fast_element/dist/dts/templating/ref.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 10, "metric_tag_propertyname": 0.5131996888028276, "metric_tag_source": 0.3502869148317249, "metric_tag_reference": 0.3328341934672673, "metric_tag_behavior": 0.28547179655868743, "metric_tag_bind": 0.23052867972969066, "metric_tag_assign": 0.22188946231151155, "metric_tag_property": 0.210172148899035, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/ref.d.ts"}, {"directory": false, "file": true, "display_name": "template.d.ts", "result_name": "./fast_element/dist/dts/templating/template.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 27, "metric_tag_template": 0.3664706986962105, "metric_tag_host": 0.31153034649153905, "metric_tag_hostbindingtarget": 0.2953869696381885, "metric_tag_htmlview": 0.2693894894518713, "metric_tag_tparent": 0.23571580327038738, "metric_tag_will": 0.23274809909880442, "metric_tag_html": 0.2206200473389547, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 3, "metric_file_result_dependency_graph_louvain_modularity_in_file": 0, "id": "./fast_element/dist/dts/templating/template.d.ts"}, {"directory": false, "file": true, "display_name": "children.d.ts", "result_name": "./fast_element/dist/dts/templating/children.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 17, "metric_tag_options": 0.34561403230951854, "metric_tag_childrenbehavioroptions": 0.31265615186765555, "metric_tag_child": 0.28513878330104053, "metric_tag_configure": 0.26379465402511676, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 2, "metric_file_result_dependency_graph_louvain_modularity_in_file": 2, "id": "./fast_element/dist/dts/templating/children.d.ts"}, {"directory": false, "file": true, "display_name": "node_observation.d.ts", "result_name": "./fast_element/dist/dts/templating/node_observation.d.ts", "metric_number_of_methods_in_file": 0, "metric_sloc_in_file": 22, "metric_tag_node": 0.4350079641120247, "metric_tag_filter": 0.302148649725125, "metric_tag_source": 0.2610047784672148, "metric_tag_options": 0.23857064830892574, "metric_tag_nodes": 0.21148333120705703, "metric_tag_elementsfilter": 0.20666704743541092, "metric_tag_array": 0.20059577212272034, "metric_fan_in_dependency_graph": 0, "metric_fan_out_dependency_graph": 1, "metric_file_result_dependency_graph_louvain_modularity_in_file": 3, "id": "./fast_element/dist/dts/templating/node_observation.d.ts"}], "links": [{"source": "fast_element", "target": "fast_element/./docs"}, {"source": "fast_element", "target": "fast_element/./dist"}, {"source": "fast_element/docs", "target": "fast_element/docs/./guide"}, {"source": "fast_element/dist", "target": "fast_element/dist/./esm"}, {"source": "fast_element/dist", "target": "fast_element/dist/./dts"}, {"source": "fast_element/dist", "target": "./fast_element/dist/fast_element.d.ts"}, {"source": "fast_element/dist/esm", "target": "fast_element/dist/esm/./components"}, {"source": "fast_element/dist/esm", "target": "fast_element/dist/esm/./styles"}, {"source": "fast_element/dist/esm", "target": "fast_element/dist/esm/./observation"}, {"source": "fast_element/dist/esm", "target": "fast_element/dist/esm/./templating"}, {"source": "fast_element/dist/dts", "target": "fast_element/dist/dts/./components"}, {"source": "fast_element/dist/dts", "target": "fast_element/dist/dts/./styles"}, {"source": "fast_element/dist/dts", "target": "fast_element/dist/dts/./observation"}, {"source": "fast_element/dist/dts", "target": "fast_element/dist/dts/./templating"}, {"source": "fast_element/dist/dts", "target": "./fast_element/dist/dts/interfaces.d.ts"}, {"source": "fast_element/dist/dts", "target": "./fast_element/dist/dts/index.d.ts"}, {"source": "fast_element/dist/dts", "target": "./fast_element/dist/dts/dom.d.ts"}, {"source": "fast_element/dist/dts", "target": "./fast_element/dist/dts/platform.d.ts"}, {"source": "fast_element/dist/dts/components", "target": "./fast_element/dist/dts/components/fast_definitions.d.ts"}, {"source": "fast_element/dist/dts/components", "target": "./fast_element/dist/dts/components/attributes.d.ts"}, {"source": "fast_element/dist/dts/components", "target": "./fast_element/dist/dts/components/controller.d.ts"}, {"source": "fast_element/dist/dts/components", "target": "./fast_element/dist/dts/components/fast_element.d.ts"}, {"source": "fast_element/dist/dts/styles", "target": "./fast_element/dist/dts/styles/css.d.ts"}, {"source": "fast_element/dist/dts/styles", "target": "./fast_element/dist/dts/styles/css_directive.d.ts"}, {"source": "fast_element/dist/dts/styles", "target": "./fast_element/dist/dts/styles/element_styles.d.ts"}, {"source": "fast_element/dist/dts/observation", "target": "./fast_element/dist/dts/observation/notifier.d.ts"}, {"source": "fast_element/dist/dts/observation", "target": "./fast_element/dist/dts/observation/array_observer.d.ts"}, {"source": "fast_element/dist/dts/observation", "target": "./fast_element/dist/dts/observation/array_change_records.d.ts"}, {"source": "fast_element/dist/dts/observation", "target": "./fast_element/dist/dts/observation/behavior.d.ts"}, {"source": "fast_element/dist/dts/observation", "target": "./fast_element/dist/dts/observation/observable.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/compiler.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/view.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/repeat.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/slotted.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/binding.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/when.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/html_directive.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/ref.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/template.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/children.d.ts"}, {"source": "fast_element/dist/dts/templating", "target": "./fast_element/dist/dts/templating/node_observation.d.ts"}]}
|
|
7
|
+
const filesystem_graph_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"}
|
|
8
|
+
const filesystem_graph_overall_metric_results = {"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"}
|
|
9
|
+
const filesystem_graph_cluster_metrics_map = {"0": {"nodes_in_cluster": "28", "sloc_in_cluster": "145", "% of total sloc": "13.80", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.36", "avg_cluster_methods": "0.07"}, "1": {"nodes_in_cluster": "2", "sloc_in_cluster": "63", "% of total sloc": "5.99", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "4.50", "avg_cluster_methods": "0.00"}, "2": {"nodes_in_cluster": "4", "sloc_in_cluster": "41", "% of total sloc": "3.90", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "2.00", "avg_cluster_methods": "0.00"}, "3": {"nodes_in_cluster": "3", "sloc_in_cluster": "86", "% of total sloc": "8.18", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "1.00", "avg_cluster_methods": "0.00"}, "4": {"nodes_in_cluster": "2", "sloc_in_cluster": "10", "% of total sloc": "0.95", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "2.00", "avg_cluster_methods": "0.00"}, "5": {"nodes_in_cluster": "1", "sloc_in_cluster": "21", "% of total sloc": "2.00", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "2.00", "avg_cluster_methods": "0.00"}, "6": {"nodes_in_cluster": "1", "sloc_in_cluster": "17", "% of total sloc": "1.62", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "2.00", "avg_cluster_methods": "0.00"}, "7": {"nodes_in_cluster": "1", "sloc_in_cluster": "45", "% of total sloc": "4.28", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "6.00", "avg_cluster_methods": "0.00"}, "8": {"nodes_in_cluster": "1", "sloc_in_cluster": "5", "% of total sloc": "0.48", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "1.00", "avg_cluster_methods": "0.00"}, "9": {"nodes_in_cluster": "1", "sloc_in_cluster": "43", "% of total sloc": "4.09", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "1.00", "avg_cluster_methods": "2.00"}, "10": {"nodes_in_cluster": "1", "sloc_in_cluster": "476", "% of total sloc": "45.29", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "5.00"}, "11": {"nodes_in_cluster": "1", "sloc_in_cluster": "10", "% of total sloc": "0.95", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "12": {"nodes_in_cluster": "1", "sloc_in_cluster": "26", "% of total sloc": "2.47", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "13": {"nodes_in_cluster": "1", "sloc_in_cluster": "25", "% of total sloc": "2.38", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "1.00"}, "14": {"nodes_in_cluster": "1", "sloc_in_cluster": "29", "% of total sloc": "2.76", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "15": {"nodes_in_cluster": "1", "sloc_in_cluster": "1", "% of total sloc": "0.10", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}, "16": {"nodes_in_cluster": "1", "sloc_in_cluster": "8", "% of total sloc": "0.76", "avg_cluster_fan_in": "0.00", "avg_cluster_fan_out": "0.00", "avg_cluster_methods": "0.00"}}
|
|
10
|
+
|
|
11
|
+
const analysis_name = 'ts check on fast element'
|
|
12
|
+
|
|
13
|
+
let analysis_config = {"project_name": "@microsoft/fast", "analysis_name": "ts check on fast element", "analysis_date": "03/16/2024, 10:40:16", "emerge_version": "2.0.0", "metrics": {"radius_multiplication": {"metric_fan_in_dependency_graph": 0.1, "metric_fan_in_inheritance_graph": 0.1, "metric_fan_in_complete_graph": 0.1, "metric_fan_out_dependency_graph": 0.1, "metric_fan_out_inheritance_graph": 0.1, "metric_fan_out_complete_graph": 0.1, "metric_entity_result_dependency_graph_louvain_modularity_in_entity": 0.02, "metric_entity_result_inheritance_graph_louvain_modularity_in_entity": 0.02, "metric_entity_result_complete_graph_louvain_modularity_in_entity": 0.02, "metric_entity_result_dependency_graph_louvain_modularity_in_file": 0.02, "metric_sloc_in_file": 0.005, "metric_sloc_in_entity": 0.005, "metric_number_of_methods_in_file": 0.05, "metric_number_of_methods_in_entity": 0.05, "metric_ws_complexity_in_file": 0.005, "metric_git_ws_complexity": 0.005, "metric_git_code_churn": 0.01, "metric_git_sloc": 0.005, "metric_git_number_authors": 1.0}}, "heatmap": {"metrics": {"active": {"sloc": true, "fan_out": true}, "weights": {"sloc": 1.5, "fan_out": 1.5}}, "score": {"limit": 300, "base": 10}}, "churn_heatmap": {"metrics": {"active": {"churn": true}, "weights": {"churn": 1.3}}, "score": {"limit": 500, "base": 10}}, "hotspot_heatmap": {"metrics": {"active": {"churn": true, "ws_complexity": true}, "weights": {"churn": 1.3, "ws_complexity": 1.5}}, "score": {"limit": 500, "base": 10}}}
|