@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,580 @@
|
|
|
1
|
+
the following statistics were collected in ts check
|
|
2
|
+
+-------------------------------------+-------------------+
|
|
3
|
+
| statistic name | value |
|
|
4
|
+
+-------------------------------------+-------------------+
|
|
5
|
+
| scanning_runtime | 00:00:00 + 3 ms |
|
|
6
|
+
| scanned_files | 34 |
|
|
7
|
+
| skipped_files | 7 |
|
|
8
|
+
| parsing_hits | 128 |
|
|
9
|
+
| parsing_misses | 3 |
|
|
10
|
+
| extracted_file_results | 34 |
|
|
11
|
+
| file_results_creation_runtime | 00:00:00 + 105 ms |
|
|
12
|
+
| number-of-methods-metric-runtime | 00:00:00 + 1 ms |
|
|
13
|
+
| source-lines-of-code-metric-runtime | 00:00:00 + 1 ms |
|
|
14
|
+
| t-f-i-d-f-metric-runtime | 00:00:00 + 42 ms |
|
|
15
|
+
| fan-in-out-metric-runtime | 00:00:00 + 0 ms |
|
|
16
|
+
| louvain-modularity-metric-runtime | 00:00:00 + 17 ms |
|
|
17
|
+
| total_runtime | 00:00:00 + 172 ms |
|
|
18
|
+
+-------------------------------------+-------------------+
|
|
19
|
+
|
|
20
|
+
the following overall metrics were collected in ts check
|
|
21
|
+
+----------------------------------------------+------------------------------+
|
|
22
|
+
| metric name | value |
|
|
23
|
+
+----------------------------------------------+------------------------------+
|
|
24
|
+
| avg-number-of-methods-in-file | 0.68 |
|
|
25
|
+
| avg-sloc-in-file | 56.38 |
|
|
26
|
+
| total-sloc-in-files | 1917 |
|
|
27
|
+
| avg-fan-in-dependency-graph | 1.76 |
|
|
28
|
+
| avg-fan-out-dependency-graph | 1.76 |
|
|
29
|
+
| max-fan-in-dependency-graph | 8 |
|
|
30
|
+
| max-fan-in-name-dependency-graph | @microsoft/fast-element |
|
|
31
|
+
| max-fan-out-dependency-graph | 22 |
|
|
32
|
+
| max-fan-out-name-dependency-graph | src/index.ts |
|
|
33
|
+
| louvain-communities-dependency-graph | 10 |
|
|
34
|
+
| louvain-modularity-dependency-graph | 0.45 |
|
|
35
|
+
| louvain-biggest-communities-dependency-graph | 0.21, 0.14, 0.11, 0.11, 0.11 |
|
|
36
|
+
+----------------------------------------------+------------------------------+
|
|
37
|
+
|
|
38
|
+
the following local metrics were collected in ts check
|
|
39
|
+
+------------------------------------------------+--------------------------------------------------------------+
|
|
40
|
+
| result | local metrics |
|
|
41
|
+
+------------------------------------------------+--------------------------------------------------------------+
|
|
42
|
+
| src/index.ts | number-of-methods-in-file: 0 |
|
|
43
|
+
| | sloc-in-file: 81 |
|
|
44
|
+
| | fan-in-dependency-graph: 0 |
|
|
45
|
+
| | fan-out-dependency-graph: 22 |
|
|
46
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
47
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
48
|
+
| src/run.ts | number-of-methods-in-file: 0 |
|
|
49
|
+
| | sloc-in-file: 26 |
|
|
50
|
+
| | tag_websocket: 0.3157518755207461 |
|
|
51
|
+
| | tag_strong: 0.3157518755207461 |
|
|
52
|
+
| | tag_main: 0.3157518755207461 |
|
|
53
|
+
| | tag_instance: 0.28918041906135833 |
|
|
54
|
+
| | tag_params: 0.244085746653195 |
|
|
55
|
+
| | tag_your: 0.24084108604313756 |
|
|
56
|
+
| | tag_routingserviceinstance: 0.22593549845710315 |
|
|
57
|
+
| | fan-in-dependency-graph: 1 |
|
|
58
|
+
| | fan-out-dependency-graph: 4 |
|
|
59
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
60
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
61
|
+
| src/client.ts | number-of-methods-in-file: 0 |
|
|
62
|
+
| | sloc-in-file: 220 |
|
|
63
|
+
| | tag_rwsclient: 0.40350372730173495 |
|
|
64
|
+
| | tag_user: 0.2188296764484985 |
|
|
65
|
+
| | tag_irwsconfig: 0.2188296764484985 |
|
|
66
|
+
| | tag_richwindowcomponents: 0.20492433974799323 |
|
|
67
|
+
| | fan-in-dependency-graph: 1 |
|
|
68
|
+
| | fan-out-dependency-graph: 16 |
|
|
69
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
70
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
71
|
+
| src/hmr.ts | number-of-methods-in-file: 0 |
|
|
72
|
+
| | sloc-in-file: 14 |
|
|
73
|
+
| | tag_presets: 0.5142225951522107 |
|
|
74
|
+
| | tag_hmrplugin: 0.5142225951522107 |
|
|
75
|
+
| | tag_hmr: 0.5142225951522107 |
|
|
76
|
+
| | tag_plugins: 0.25711129757610535 |
|
|
77
|
+
| | tag_include: 0.25711129757610535 |
|
|
78
|
+
| | tag_autoreloadconfig: 0.25711129757610535 |
|
|
79
|
+
| | fan-in-dependency-graph: 0 |
|
|
80
|
+
| | fan-out-dependency-graph: 1 |
|
|
81
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 9 |
|
|
82
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
83
|
+
| src/service_worker/src/_service_worker.ts | number-of-methods-in-file: 0 |
|
|
84
|
+
| | sloc-in-file: 65 |
|
|
85
|
+
| | tag_workerscope: 0.35089765779879856 |
|
|
86
|
+
| | tag_usertype: 0.35089765779879856 |
|
|
87
|
+
| | tag_protected: 0.32117841715383216 |
|
|
88
|
+
| | tag_rwsserviceworker: 0.3140593986971509 |
|
|
89
|
+
| | tag_wsserviceinstance: 0.2844944672346991 |
|
|
90
|
+
| | tag_classname: 0.28071812623903886 |
|
|
91
|
+
| | tag_irwsuser: 0.21411894476922144 |
|
|
92
|
+
| | fan-in-dependency-graph: 1 |
|
|
93
|
+
| | fan-out-dependency-graph: 4 |
|
|
94
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 7 |
|
|
95
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
96
|
+
| src/components/_container.ts | number-of-methods-in-file: 0 |
|
|
97
|
+
| | sloc-in-file: 11 |
|
|
98
|
+
| | tag_loadrwsrichwindow: 0.7832021837846899 |
|
|
99
|
+
| | tag_richwindow: 0.4174360953063671 |
|
|
100
|
+
| | tag_di: 0.4174360953063671 |
|
|
101
|
+
| | fan-in-dependency-graph: 3 |
|
|
102
|
+
| | fan-out-dependency-graph: 2 |
|
|
103
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
104
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
105
|
+
| src/components/_decorator.ts | number-of-methods-in-file: 5 |
|
|
106
|
+
| | sloc-in-file: 79 |
|
|
107
|
+
| | tag_propname: 0.37861724037902506 |
|
|
108
|
+
| | tag_parent: 0.37861724037902506 |
|
|
109
|
+
| | tag_loadeddependency: 0.33129008533164694 |
|
|
110
|
+
| | tag_topconstructor: 0.28396293028426883 |
|
|
111
|
+
| | tag_mainconstructor: 0.28396293028426883 |
|
|
112
|
+
| | tag_existinginjecteddependencies: 0.28396293028426883 |
|
|
113
|
+
| | tag_component: 0.24271676250592658 |
|
|
114
|
+
| | fan-in-dependency-graph: 2 |
|
|
115
|
+
| | fan-out-dependency-graph: 3 |
|
|
116
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
117
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
118
|
+
| src/components/index.ts | number-of-methods-in-file: 0 |
|
|
119
|
+
| | sloc-in-file: 7 |
|
|
120
|
+
| | tag_rwsuploader: 0.5933408018529835 |
|
|
121
|
+
| | tag_rwscomponents: 0.5933408018529835 |
|
|
122
|
+
| | tag_routercomponent: 0.5439608310466086 |
|
|
123
|
+
| | fan-in-dependency-graph: 0 |
|
|
124
|
+
| | fan-out-dependency-graph: 2 |
|
|
125
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
126
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
127
|
+
| src/components/_component.ts | number-of-methods-in-file: 0 |
|
|
128
|
+
| | sloc-in-file: 229 |
|
|
129
|
+
| | tag_iwithcompose: 0.27559415795352316 |
|
|
130
|
+
| | tag_node: 0.2204753263628185 |
|
|
131
|
+
| | tag_protected: 0.20495092950705612 |
|
|
132
|
+
| | tag_observer: 0.20152388067826038 |
|
|
133
|
+
| | fan-in-dependency-graph: 3 |
|
|
134
|
+
| | fan-out-dependency-graph: 12 |
|
|
135
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
136
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
137
|
+
| src/components/_design_system.ts | number-of-methods-in-file: 1 |
|
|
138
|
+
| | sloc-in-file: 4 |
|
|
139
|
+
| | tag_designsystem: 0.735484307335291 |
|
|
140
|
+
| | tag_element: 0.5262740349875075 |
|
|
141
|
+
| | tag_providerwsdesignsystem: 0.3017436608791432 |
|
|
142
|
+
| | tag_htmlelement: 0.3017436608791432 |
|
|
143
|
+
| | fan-in-dependency-graph: 1 |
|
|
144
|
+
| | fan-out-dependency-graph: 1 |
|
|
145
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
146
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
147
|
+
| src/components/progress/component.ts | number-of-methods-in-file: 0 |
|
|
148
|
+
| | sloc-in-file: 42 |
|
|
149
|
+
| | tag_nullablenumberconverter: 0.4295820404222119 |
|
|
150
|
+
| | tag_min: 0.4295820404222119 |
|
|
151
|
+
| | tag_range: 0.3221865303166589 |
|
|
152
|
+
| | tag_max: 0.3221865303166589 |
|
|
153
|
+
| | tag_converter: 0.3221865303166589 |
|
|
154
|
+
| | tag_value: 0.2643638815243363 |
|
|
155
|
+
| | tag_protected: 0.24574914635728287 |
|
|
156
|
+
| | fan-in-dependency-graph: 0 |
|
|
157
|
+
| | fan-out-dependency-graph: 2 |
|
|
158
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
159
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
160
|
+
| src/components/router/component.ts | number-of-methods-in-file: 0 |
|
|
161
|
+
| | sloc-in-file: 48 |
|
|
162
|
+
| | tag_childcomponent: 0.48343120580670607 |
|
|
163
|
+
| | tag_newcomponent: 0.3245093913411394 |
|
|
164
|
+
| | tag_component: 0.30990891236298895 |
|
|
165
|
+
| | tag_routename: 0.2975025443136356 |
|
|
166
|
+
| | tag_newvalue: 0.24171560290335303 |
|
|
167
|
+
| | fan-in-dependency-graph: 1 |
|
|
168
|
+
| | fan-out-dependency-graph: 4 |
|
|
169
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
170
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
171
|
+
| src/components/_attrs/sanitize-html.ts | number-of-methods-in-file: 4 |
|
|
172
|
+
| | sloc-in-file: 63 |
|
|
173
|
+
| | tag_target: 0.34305658239605086 |
|
|
174
|
+
| | tag_tagname: 0.30017450959654446 |
|
|
175
|
+
| | tag_enc: 0.2811001879935906 |
|
|
176
|
+
| | tag_propertykey: 0.2515894707554398 |
|
|
177
|
+
| | tag_privatepropname: 0.2515894707554398 |
|
|
178
|
+
| | tag_decorator: 0.2515894707554398 |
|
|
179
|
+
| | tag_config: 0.2402817888559062 |
|
|
180
|
+
| | fan-in-dependency-graph: 1 |
|
|
181
|
+
| | fan-out-dependency-graph: 6 |
|
|
182
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
183
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
184
|
+
| src/components/_attrs/angular-attr.ts | number-of-methods-in-file: 4 |
|
|
185
|
+
| | sloc-in-file: 46 |
|
|
186
|
+
| | tag_target: 0.4115989760412663 |
|
|
187
|
+
| | tag_value: 0.39357895208949756 |
|
|
188
|
+
| | tag_propertykey: 0.2683171720470233 |
|
|
189
|
+
| | tag_prop: 0.2683171720470233 |
|
|
190
|
+
| | tag_privatepropname: 0.2683171720470233 |
|
|
191
|
+
| | tag_decorator: 0.2683171720470233 |
|
|
192
|
+
| | tag_targettype: 0.23983200021162587 |
|
|
193
|
+
| | fan-in-dependency-graph: 1 |
|
|
194
|
+
| | fan-out-dependency-graph: 2 |
|
|
195
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
196
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
197
|
+
| src/components/uploader/component.ts | number-of-methods-in-file: 0 |
|
|
198
|
+
| | sloc-in-file: 53 |
|
|
199
|
+
| | tag_fileinput: 0.7511093899335782 |
|
|
200
|
+
| | tag_htmlinputelement: 0.33382639552603477 |
|
|
201
|
+
| | tag_chosenfile: 0.2503697966445261 |
|
|
202
|
+
| | tag_file: 0.23886867796722602 |
|
|
203
|
+
| | fan-in-dependency-graph: 1 |
|
|
204
|
+
| | fan-out-dependency-graph: 1 |
|
|
205
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
206
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
207
|
+
| src/interfaces/IRWSConfig.ts | number-of-methods-in-file: 0 |
|
|
208
|
+
| | sloc-in-file: 21 |
|
|
209
|
+
| | tag_ifrontroutes: 0.3578189938689424 |
|
|
210
|
+
| | tag_rwsviewcomponent: 0.2620506217464673 |
|
|
211
|
+
| | tag_wsurl: 0.23455719343257828 |
|
|
212
|
+
| | tag_puburl: 0.23455719343257828 |
|
|
213
|
+
| | tag_pubprefix: 0.23455719343257828 |
|
|
214
|
+
| | tag_parted: 0.23455719343257828 |
|
|
215
|
+
| | tag_ignorerwscomponents: 0.23455719343257828 |
|
|
216
|
+
| | fan-in-dependency-graph: 2 |
|
|
217
|
+
| | fan-out-dependency-graph: 2 |
|
|
218
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 8 |
|
|
219
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
220
|
+
| src/interfaces/IRWSUser.ts | number-of-methods-in-file: 0 |
|
|
221
|
+
| | sloc-in-file: 7 |
|
|
222
|
+
| | tag_mongoid: 0.49297535431368517 |
|
|
223
|
+
| | tag_email: 0.49297535431368517 |
|
|
224
|
+
| | tag_message: 0.3760190482783294 |
|
|
225
|
+
| | tag_irwsuser: 0.3760190482783294 |
|
|
226
|
+
| | tag_name: 0.35274733434358135 |
|
|
227
|
+
| | tag_interface: 0.2753795272979324 |
|
|
228
|
+
| | fan-in-dependency-graph: 2 |
|
|
229
|
+
| | fan-out-dependency-graph: 0 |
|
|
230
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
231
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
232
|
+
| src/interfaces/RWSWindow.ts | number-of-methods-in-file: 1 |
|
|
233
|
+
| | sloc-in-file: 32 |
|
|
234
|
+
| | tag_container: 0.5035174951154104 |
|
|
235
|
+
| | tag_rwswindow: 0.3021104970692462 |
|
|
236
|
+
| | tag_rwswindowcomponententry: 0.24545948375332108 |
|
|
237
|
+
| | tag_newnode: 0.24545948375332108 |
|
|
238
|
+
| | tag_components: 0.24545948375332108 |
|
|
239
|
+
| | tag_window: 0.21969043155107956 |
|
|
240
|
+
| | tag_uuid: 0.21969043155107956 |
|
|
241
|
+
| | fan-in-dependency-graph: 1 |
|
|
242
|
+
| | fan-out-dependency-graph: 3 |
|
|
243
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
244
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
245
|
+
| src/interfaces/IRWSViewComponent.ts | number-of-methods-in-file: 0 |
|
|
246
|
+
| | sloc-in-file: 22 |
|
|
247
|
+
| | tag_viewtemplate: 0.31637469581233685 |
|
|
248
|
+
| | tag_iassetshowoptions: 0.2900448476132914 |
|
|
249
|
+
| | tag_record: 0.2696218306952532 |
|
|
250
|
+
| | tag_domoutputtype: 0.2696218306952532 |
|
|
251
|
+
| | tag_paste: 0.21091646387489124 |
|
|
252
|
+
| | tag_cnt: 0.21091646387489124 |
|
|
253
|
+
| | tag_addcontent: 0.21091646387489124 |
|
|
254
|
+
| | fan-in-dependency-graph: 0 |
|
|
255
|
+
| | fan-out-dependency-graph: 2 |
|
|
256
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
257
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
258
|
+
| src/services/RoutingService.ts | number-of-methods-in-file: 0 |
|
|
259
|
+
| | sloc-in-file: 35 |
|
|
260
|
+
| | tag_comp: 0.41009275322824446 |
|
|
261
|
+
| | tag_router: 0.3670400204345921 |
|
|
262
|
+
| | tag_rwsrouter: 0.3127999917752553 |
|
|
263
|
+
| | tag_ifrontroutes: 0.3127999917752553 |
|
|
264
|
+
| | tag_routename: 0.25237021529546905 |
|
|
265
|
+
| | tag_irwsviewcomponent: 0.22008066570022985 |
|
|
266
|
+
| | tag_defaultrouteparams: 0.20504637661412223 |
|
|
267
|
+
| | fan-in-dependency-graph: 3 |
|
|
268
|
+
| | fan-out-dependency-graph: 6 |
|
|
269
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
270
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
271
|
+
| src/services/_service.ts | number-of-methods-in-file: 0 |
|
|
272
|
+
| | sloc-in-file: 38 |
|
|
273
|
+
| | tag_iwithdi: 0.62874515204524 |
|
|
274
|
+
| | tag_interf: 0.35928294402585137 |
|
|
275
|
+
| | tag_key: 0.33705652303814987 |
|
|
276
|
+
| | tag_interfacesymbol: 0.3215643731301285 |
|
|
277
|
+
| | tag_register: 0.2694622080193885 |
|
|
278
|
+
| | tag_getsingleton: 0.2694622080193885 |
|
|
279
|
+
| | tag_extends: 0.22478329409772743 |
|
|
280
|
+
| | fan-in-dependency-graph: 8 |
|
|
281
|
+
| | fan-out-dependency-graph: 3 |
|
|
282
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
283
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
284
|
+
| src/services/NotifyService.ts | number-of-methods-in-file: 0 |
|
|
285
|
+
| | sloc-in-file: 36 |
|
|
286
|
+
| | tag_notifier: 0.46035867528343394 |
|
|
287
|
+
| | tag_logtype: 0.46035867528343394 |
|
|
288
|
+
| | tag_message: 0.3923283070653243 |
|
|
289
|
+
| | tag_onconfirm: 0.3069057835222893 |
|
|
290
|
+
| | tag_notifylogtype: 0.28136397250354644 |
|
|
291
|
+
| | tag_added: 0.25717870819094213 |
|
|
292
|
+
| | tag_rws: 0.21102297937765982 |
|
|
293
|
+
| | fan-in-dependency-graph: 3 |
|
|
294
|
+
| | fan-out-dependency-graph: 2 |
|
|
295
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
296
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
297
|
+
| src/services/UtilsService.ts | number-of-methods-in-file: 0 |
|
|
298
|
+
| | sloc-in-file: 55 |
|
|
299
|
+
| | tag_source: 0.4169538171441068 |
|
|
300
|
+
| | tag_sourcevalue: 0.3127153628580801 |
|
|
301
|
+
| | tag_error: 0.28639943794184264 |
|
|
302
|
+
| | tag_target: 0.27827913527687964 |
|
|
303
|
+
| | tag_isobject: 0.26059613571506673 |
|
|
304
|
+
| | tag_targetvalue: 0.2084769085720534 |
|
|
305
|
+
| | tag_linematch: 0.2084769085720534 |
|
|
306
|
+
| | fan-in-dependency-graph: 3 |
|
|
307
|
+
| | fan-out-dependency-graph: 3 |
|
|
308
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
309
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
310
|
+
| src/services/ServiceWorkerService.ts | number-of-methods-in-file: 0 |
|
|
311
|
+
| | sloc-in-file: 51 |
|
|
312
|
+
| | tag_worker: 0.5724045642801848 |
|
|
313
|
+
| | tag_registerserviceworker: 0.31977298204175797 |
|
|
314
|
+
| | tag_error: 0.29286313754693766 |
|
|
315
|
+
| | tag_serviceworkerservice: 0.26238349150128953 |
|
|
316
|
+
| | tag_rwsservice: 0.26238349150128953 |
|
|
317
|
+
| | fan-in-dependency-graph: 2 |
|
|
318
|
+
| | fan-out-dependency-graph: 1 |
|
|
319
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
320
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
321
|
+
| src/services/DOMService.ts | number-of-methods-in-file: 0 |
|
|
322
|
+
| | sloc-in-file: 66 |
|
|
323
|
+
| | tag_allowedhtmltags: 0.3532544482137709 |
|
|
324
|
+
| | tag_html: 0.23188484510198396 |
|
|
325
|
+
| | tag_directreturn: 0.23188484510198396 |
|
|
326
|
+
| | tag_domoutputtype: 0.21555706629976024 |
|
|
327
|
+
| | tag_elements: 0.21195266892826253 |
|
|
328
|
+
| | fan-in-dependency-graph: 2 |
|
|
329
|
+
| | fan-out-dependency-graph: 3 |
|
|
330
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
331
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
332
|
+
| src/services/ApiService.ts | number-of-methods-in-file: 0 |
|
|
333
|
+
| | sloc-in-file: 178 |
|
|
334
|
+
| | tag_headers: 0.4560709152616662 |
|
|
335
|
+
| | tag_options: 0.4013424054302663 |
|
|
336
|
+
| | tag_iapioptions: 0.28902870754508 |
|
|
337
|
+
| | tag_routename: 0.2371568759360664 |
|
|
338
|
+
| | tag_error: 0.23076940734794538 |
|
|
339
|
+
| | tag_url: 0.22272255341653815 |
|
|
340
|
+
| | tag_ihttproute: 0.21888784179314857 |
|
|
341
|
+
| | fan-in-dependency-graph: 3 |
|
|
342
|
+
| | fan-out-dependency-graph: 3 |
|
|
343
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
344
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
345
|
+
| src/services/WSService.ts | number-of-methods-in-file: 1 |
|
|
346
|
+
| | sloc-in-file: 155 |
|
|
347
|
+
| | tag_socketid: 0.588231066464357 |
|
|
348
|
+
| | tag_error: 0.3142589789772212 |
|
|
349
|
+
| | tag_wslog: 0.25735109157815617 |
|
|
350
|
+
| | fan-in-dependency-graph: 3 |
|
|
351
|
+
| | fan-out-dependency-graph: 7 |
|
|
352
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
353
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
354
|
+
| src/services/ConfigService.ts | number-of-methods-in-file: 0 |
|
|
355
|
+
| | sloc-in-file: 74 |
|
|
356
|
+
| | tag_irwsconfig: 0.4707246612110767 |
|
|
357
|
+
| | tag_defaultval: 0.3857112719874637 |
|
|
358
|
+
| | tag_tagname: 0.3530434959083075 |
|
|
359
|
+
| | tag_tick: 0.23142676319247824 |
|
|
360
|
+
| | tag_isindefaults: 0.23142676319247824 |
|
|
361
|
+
| | tag_isindata: 0.23142676319247824 |
|
|
362
|
+
| | tag_keyof: 0.20713090690486363 |
|
|
363
|
+
| | fan-in-dependency-graph: 4 |
|
|
364
|
+
| | fan-out-dependency-graph: 2 |
|
|
365
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
366
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
367
|
+
| src/services/_ws_handlers/EventHandler.ts | number-of-methods-in-file: 2 |
|
|
368
|
+
| | sloc-in-file: 25 |
|
|
369
|
+
| | tag_listeners: 0.5837447181913386 |
|
|
370
|
+
| | tag_event: 0.4601313914246482 |
|
|
371
|
+
| | tag_wsinstance: 0.3710448055383231 |
|
|
372
|
+
| | tag_callback: 0.3480809460982275 |
|
|
373
|
+
| | tag_wsevent: 0.26123074793068235 |
|
|
374
|
+
| | fan-in-dependency-graph: 1 |
|
|
375
|
+
| | fan-out-dependency-graph: 1 |
|
|
376
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
377
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
378
|
+
| src/services/_ws_handlers/ConnectionHandler.ts | number-of-methods-in-file: 3 |
|
|
379
|
+
| | sloc-in-file: 38 |
|
|
380
|
+
| | tag_rc: 0.4754561448547301 |
|
|
381
|
+
| | tag_instance: 0.43544510064313136 |
|
|
382
|
+
| | tag_disconnect: 0.4255413726516281 |
|
|
383
|
+
| | tag_wsinstance: 0.3626561967489338 |
|
|
384
|
+
| | tag_reconnect: 0.2925947086262186 |
|
|
385
|
+
| | tag_noevent: 0.23772807242736504 |
|
|
386
|
+
| | tag_ping: 0.21277068632581406 |
|
|
387
|
+
| | fan-in-dependency-graph: 1 |
|
|
388
|
+
| | fan-out-dependency-graph: 1 |
|
|
389
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
390
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
391
|
+
| src/services/_ws_handlers/MessageHandler.ts | number-of-methods-in-file: 2 |
|
|
392
|
+
| | sloc-in-file: 39 |
|
|
393
|
+
| | tag_method: 0.7140342785266077 |
|
|
394
|
+
| | tag_parseddata: 0.3480842018193303 |
|
|
395
|
+
| | tag_wsinstance: 0.26550270544669513 |
|
|
396
|
+
| | tag_callback: 0.24907081711990034 |
|
|
397
|
+
| | tag_msg: 0.2336559806464407 |
|
|
398
|
+
| | fan-in-dependency-graph: 1 |
|
|
399
|
+
| | fan-out-dependency-graph: 1 |
|
|
400
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
401
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
402
|
+
| src/types/RWSNotify.ts | number-of-methods-in-file: 0 |
|
|
403
|
+
| | sloc-in-file: 5 |
|
|
404
|
+
| | tag_notifyuitype: 0.5846694931615342 |
|
|
405
|
+
| | tag_notifylogtype: 0.536011180074803 |
|
|
406
|
+
| | tag_rwsnotify: 0.3321792401740948 |
|
|
407
|
+
| | tag_type: 0.3015344729277221 |
|
|
408
|
+
| | tag_uitype: 0.21774984454944782 |
|
|
409
|
+
| | fan-in-dependency-graph: 2 |
|
|
410
|
+
| | fan-out-dependency-graph: 0 |
|
|
411
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
412
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
413
|
+
| src/routing/index.ts | number-of-methods-in-file: 0 |
|
|
414
|
+
| | sloc-in-file: 5 |
|
|
415
|
+
| | tag_initroutes: 0.9844730481795387 |
|
|
416
|
+
| | fan-in-dependency-graph: 0 |
|
|
417
|
+
| | fan-out-dependency-graph: 0 |
|
|
418
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 10 |
|
|
419
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
420
|
+
| src/routing/_router.ts | number-of-methods-in-file: 0 |
|
|
421
|
+
| | sloc-in-file: 47 |
|
|
422
|
+
| | tag_handler: 0.4216627766962327 |
|
|
423
|
+
| | tag_url: 0.3620637482259136 |
|
|
424
|
+
| | tag_currentroute: 0.33733022135698615 |
|
|
425
|
+
| | tag_routereturn: 0.3216250763863261 |
|
|
426
|
+
| | tag_irwsviewcomponent: 0.30171979018826134 |
|
|
427
|
+
| | tag_urlrouter: 0.25299766601773965 |
|
|
428
|
+
| | tag_router: 0.2264372334650162 |
|
|
429
|
+
| | fan-in-dependency-graph: 0 |
|
|
430
|
+
| | fan-out-dependency-graph: 3 |
|
|
431
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
432
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
433
|
+
| sanitize-html | fan-in-dependency-graph: 3 |
|
|
434
|
+
| | fan-out-dependency-graph: 0 |
|
|
435
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
436
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
437
|
+
| @microsoft/fast-element | fan-in-dependency-graph: 8 |
|
|
438
|
+
| | fan-out-dependency-graph: 0 |
|
|
439
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
440
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
441
|
+
| @microsoft/fast-foundation | fan-in-dependency-graph: 8 |
|
|
442
|
+
| | fan-out-dependency-graph: 0 |
|
|
443
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
444
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
445
|
+
| @open-wc/dev-server-hmr | fan-in-dependency-graph: 1 |
|
|
446
|
+
| | fan-out-dependency-graph: 0 |
|
|
447
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 9 |
|
|
448
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
449
|
+
| ../../interfaces/IRWSUser | fan-in-dependency-graph: 1 |
|
|
450
|
+
| | fan-out-dependency-graph: 0 |
|
|
451
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 7 |
|
|
452
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
453
|
+
| ../../components/_container | fan-in-dependency-graph: 1 |
|
|
454
|
+
| | fan-out-dependency-graph: 0 |
|
|
455
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 7 |
|
|
456
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
457
|
+
| ../../services/WSService | fan-in-dependency-graph: 1 |
|
|
458
|
+
| | fan-out-dependency-graph: 0 |
|
|
459
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 7 |
|
|
460
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
461
|
+
| ../interfaces/RWSWindow | fan-in-dependency-graph: 3 |
|
|
462
|
+
| | fan-out-dependency-graph: 0 |
|
|
463
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
464
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
465
|
+
| ../services/ConfigService | fan-in-dependency-graph: 2 |
|
|
466
|
+
| | fan-out-dependency-graph: 0 |
|
|
467
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
468
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
469
|
+
| ../services/UtilsService | fan-in-dependency-graph: 2 |
|
|
470
|
+
| | fan-out-dependency-graph: 0 |
|
|
471
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
472
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
473
|
+
| ../services/DOMService | fan-in-dependency-graph: 2 |
|
|
474
|
+
| | fan-out-dependency-graph: 0 |
|
|
475
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
476
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
477
|
+
| ../services/ApiService | fan-in-dependency-graph: 1 |
|
|
478
|
+
| | fan-out-dependency-graph: 0 |
|
|
479
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
480
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
481
|
+
| ../services/NotifyService | fan-in-dependency-graph: 1 |
|
|
482
|
+
| | fan-out-dependency-graph: 0 |
|
|
483
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
484
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
485
|
+
| ../services/RoutingService | fan-in-dependency-graph: 2 |
|
|
486
|
+
| | fan-out-dependency-graph: 0 |
|
|
487
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 8 |
|
|
488
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
489
|
+
| ../services/WSService | fan-in-dependency-graph: 1 |
|
|
490
|
+
| | fan-out-dependency-graph: 0 |
|
|
491
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
492
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
493
|
+
| ../interfaces/IRWSViewComponent | fan-in-dependency-graph: 3 |
|
|
494
|
+
| | fan-out-dependency-graph: 0 |
|
|
495
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 6 |
|
|
496
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
497
|
+
| ../../index | fan-in-dependency-graph: 2 |
|
|
498
|
+
| | fan-out-dependency-graph: 0 |
|
|
499
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
500
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
501
|
+
| ../../services/RoutingService | fan-in-dependency-graph: 1 |
|
|
502
|
+
| | fan-out-dependency-graph: 0 |
|
|
503
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
504
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
505
|
+
| ../_component | fan-in-dependency-graph: 3 |
|
|
506
|
+
| | fan-out-dependency-graph: 0 |
|
|
507
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
508
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
509
|
+
| ../_decorator | fan-in-dependency-graph: 1 |
|
|
510
|
+
| | fan-out-dependency-graph: 0 |
|
|
511
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
512
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
513
|
+
| ../../services/DOMService | fan-in-dependency-graph: 1 |
|
|
514
|
+
| | fan-out-dependency-graph: 0 |
|
|
515
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
516
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
517
|
+
| ../_container | fan-in-dependency-graph: 1 |
|
|
518
|
+
| | fan-out-dependency-graph: 0 |
|
|
519
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
520
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
521
|
+
| he | fan-in-dependency-graph: 1 |
|
|
522
|
+
| | fan-out-dependency-graph: 0 |
|
|
523
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 0 |
|
|
524
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
525
|
+
| ../components/_component | fan-in-dependency-graph: 1 |
|
|
526
|
+
| | fan-out-dependency-graph: 0 |
|
|
527
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 8 |
|
|
528
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
529
|
+
| ../client | fan-in-dependency-graph: 1 |
|
|
530
|
+
| | fan-out-dependency-graph: 0 |
|
|
531
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
532
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
533
|
+
| uuid | fan-in-dependency-graph: 2 |
|
|
534
|
+
| | fan-out-dependency-graph: 0 |
|
|
535
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 5 |
|
|
536
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
537
|
+
| url-router | fan-in-dependency-graph: 2 |
|
|
538
|
+
| | fan-out-dependency-graph: 0 |
|
|
539
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
540
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
541
|
+
| ../routing/_router | fan-in-dependency-graph: 1 |
|
|
542
|
+
| | fan-out-dependency-graph: 0 |
|
|
543
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
544
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
545
|
+
| ../components/_container | fan-in-dependency-graph: 1 |
|
|
546
|
+
| | fan-out-dependency-graph: 0 |
|
|
547
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
548
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
549
|
+
| ../types/RWSNotify | fan-in-dependency-graph: 1 |
|
|
550
|
+
| | fan-out-dependency-graph: 0 |
|
|
551
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
552
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
553
|
+
| source-map | fan-in-dependency-graph: 1 |
|
|
554
|
+
| | fan-out-dependency-graph: 0 |
|
|
555
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
556
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
557
|
+
| @rws-framework/client/src/services/_service | fan-in-dependency-graph: 1 |
|
|
558
|
+
| | fan-out-dependency-graph: 0 |
|
|
559
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 1 |
|
|
560
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
561
|
+
| upload | fan-in-dependency-graph: 1 |
|
|
562
|
+
| | fan-out-dependency-graph: 0 |
|
|
563
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 3 |
|
|
564
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
565
|
+
| socket.io-client | fan-in-dependency-graph: 1 |
|
|
566
|
+
| | fan-out-dependency-graph: 0 |
|
|
567
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
568
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
569
|
+
| ../interfaces/IRWSUser | fan-in-dependency-graph: 1 |
|
|
570
|
+
| | fan-out-dependency-graph: 0 |
|
|
571
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
572
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
573
|
+
| ../interfaces/IRWSConfig | fan-in-dependency-graph: 1 |
|
|
574
|
+
| | fan-out-dependency-graph: 0 |
|
|
575
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 2 |
|
|
576
|
+
| ---------------------------------------------- | ------------------------------------------------------------ |
|
|
577
|
+
| ../WSService | fan-in-dependency-graph: 3 |
|
|
578
|
+
| | fan-out-dependency-graph: 0 |
|
|
579
|
+
| | file_result_dependency_graph_louvain-modularity-in-file: 4 |
|
|
580
|
+
+------------------------------------------------+--------------------------------------------------------------+
|