testeranto 0.202.0 → 0.203.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.
Files changed (773) hide show
  1. package/README.md +23 -0
  2. package/UX/chache/index.md +11 -0
  3. package/dist/prebuild/App.css +78 -0
  4. package/dist/prebuild/App.js +4828 -2814
  5. package/dist/prebuild/testeranto.mjs +2650 -1037
  6. package/example/Calculator.go +63 -0
  7. package/example/Calculator.golingvu.adapter.go +81 -0
  8. package/example/Calculator.golingvu.go +67 -0
  9. package/example/Calculator.golingvu.implementation.go +95 -0
  10. package/example/Calculator.golingvu.specification.go +68 -0
  11. package/example/Calculator.pitono.adapter.py +68 -0
  12. package/example/Calculator.pitono.implementation.py +30 -0
  13. package/example/Calculator.pitono.specification.py +154 -0
  14. package/example/Calculator.pitono.test.py +47 -0
  15. package/example/Calculator.py +93 -0
  16. package/example/Calculator.test.adapter.ts +86 -0
  17. package/example/Calculator.test.implementation.ts +82 -0
  18. package/example/Calculator.test.specification.ts +213 -0
  19. package/example/Calculator.test.ts +13 -0
  20. package/example/Calculator.test.types.ts +50 -0
  21. package/example/Calculator.ts +130 -0
  22. package/example/README.md +1 -0
  23. package/example/base_suite_test.go +51 -0
  24. package/example/cmd/main.go +16 -0
  25. package/example/go.mod +9 -0
  26. package/example/main +0 -0
  27. package/example/test_example.py +143 -74
  28. package/{testeranto → example/testeranto}/bundles/golang/core/Calculator.golingvu.go +1 -1
  29. package/example/testeranto/metafiles/golang/core.json +198 -0
  30. package/go.mod +3 -1
  31. package/golingvu.tmp.txt +68 -0
  32. package/log.txt +85 -0
  33. package/package.json +50 -41
  34. package/scripts/build-example.ts +245 -0
  35. package/src/App.tsx +94 -44
  36. package/src/Helpo.tsx +89 -0
  37. package/src/PM/PM_WithBuild.ts +32 -20
  38. package/src/PM/PM_WithGit.ts +60 -13
  39. package/src/PM/PM_WithHelpo.ts +341 -0
  40. package/src/PM/PM_WithProcesses.ts +484 -223
  41. package/src/PM/PM_WithWebSocket.ts +210 -2
  42. package/src/PM/golingvuBuild.ts +56 -0
  43. package/src/PM/main.ts +570 -438
  44. package/src/PM/pitonoBuild.ts +56 -0
  45. package/src/PM/utils.ts +7 -1
  46. package/src/app.scss +102 -0
  47. package/src/components/pure/AppFrame.tsx +259 -149
  48. package/src/components/pure/GitIntegrationView.tsx +527 -238
  49. package/src/components/pure/HelpoChatDrawer.tsx +222 -0
  50. package/src/components/pure/MagicRobotModal.tsx +136 -0
  51. package/src/components/pure/ProcessDetails.tsx +99 -0
  52. package/src/components/pure/ProcessInput.tsx +67 -0
  53. package/src/components/pure/ProcessList.tsx +89 -0
  54. package/src/components/pure/ProcessLogs.tsx +54 -0
  55. package/src/components/pure/ProcessManager.tsx +37 -46
  56. package/src/components/pure/ProcessManagerView.tsx +42 -367
  57. package/src/components/pure/ProcessManagerViewTypes.ts +10 -0
  58. package/src/components/pure/ProcessSidebar.tsx +88 -0
  59. package/src/components/pure/ProcessTerminal.tsx +51 -0
  60. package/src/components/pure/SingleProcessView.tsx +140 -231
  61. package/src/components/pure/TerminalInput.tsx +73 -0
  62. package/src/components/pure/TerminalLogs.tsx +80 -0
  63. package/src/components/pure/TestPageView.tsx +21 -116
  64. package/src/components/pure/TestPageView_utils.tsx +2 -0
  65. package/src/components/stateful/DratoPage.tsx +457 -0
  66. package/src/components/stateful/GenericXMLEditor/AttributeEditor.tsx +87 -0
  67. package/src/components/stateful/GenericXMLEditor/Drawer.tsx +174 -0
  68. package/src/components/stateful/GenericXMLEditor/GenericPreview.tsx +160 -0
  69. package/src/components/stateful/GenericXMLEditor/GenericTextEditor.tsx +104 -0
  70. package/src/components/stateful/GenericXMLEditor/GenericTree.tsx +104 -0
  71. package/src/components/stateful/GenericXMLEditorPage.tsx +346 -0
  72. package/src/components/stateful/GitIntegrationPage.tsx +258 -3
  73. package/src/components/stateful/GrafeoPage.tsx +563 -0
  74. package/src/components/stateful/SVGEditor/SVGAttributesEditor.tsx +26 -8
  75. package/src/components/stateful/SVGEditor/SVGPreview.tsx +4 -2
  76. package/src/components/stateful/SVGEditorPage.tsx +195 -181
  77. package/src/components/stateful/SingleProcessPage.tsx +133 -131
  78. package/src/components/stateful/SkriboPage.tsx +765 -0
  79. package/src/components/stateful/TestPage.tsx +3 -2
  80. package/src/esbuildConfigs/node.ts +1 -1
  81. package/src/example/go.mod +9 -0
  82. package/src/example/main.go +61 -0
  83. package/src/golingvu/PM/golang_test.go +103 -0
  84. package/src/golingvu/README.md +186 -2
  85. package/src/golingvu/base_given.go +89 -2
  86. package/src/golingvu/base_suite.go +48 -2
  87. package/src/golingvu/go.mod +6 -0
  88. package/src/golingvu/golingvu.go +703 -29
  89. package/src/golingvu/types.go +0 -14
  90. package/src/helpo/directives.md +5 -0
  91. package/src/helpo/prompt.txt +38 -0
  92. package/src/hooks/useTerminalWebSocket.ts +49 -0
  93. package/src/lib/BaseGiven.ts +126 -28
  94. package/src/lib/BaseSuite.test/test.ts +97 -180
  95. package/src/lib/BaseSuite.ts +52 -10
  96. package/src/lib/BaseThen.ts +34 -38
  97. package/src/lib/BaseWhen.ts +9 -2
  98. package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +9 -8
  99. package/src/lib/Tiposkripto.ts +41 -11
  100. package/src/lib/pmProxy.ts +55 -18
  101. package/src/pitono/PM/python.py +165 -0
  102. package/src/pitono/Pitono.py +298 -0
  103. package/src/pitono/PitonoTest.py +25 -0
  104. package/src/pitono/README.md +21 -0
  105. package/src/pitono/__init__.py +6 -0
  106. package/{pitono → src/pitono}/base_given.py +42 -20
  107. package/{pitono → src/pitono}/base_suite.py +55 -2
  108. package/{pitono → src/pitono}/base_then.py +15 -1
  109. package/{pitono → src/pitono}/base_when.py +15 -1
  110. package/{pitono → src/pitono}/pitono.egg-info/PKG-INFO +25 -0
  111. package/{pitono → src/pitono}/pitono.egg-info/SOURCES.txt +1 -0
  112. package/src/pitono/types.py +87 -0
  113. package/src/services/FileService.ts +146 -11
  114. package/src/testeranto.ts +115 -149
  115. package/src/utils/golingvuMetafile.ts +822 -118
  116. package/src/utils/golingvuWatcher.ts +285 -0
  117. package/src/utils/logFiles.ts +10 -2
  118. package/src/utils/makePrompt.ts +12 -1
  119. package/src/utils/pitonoMetafile.ts +326 -54
  120. package/src/utils/pitonoWatcher.ts +157 -0
  121. package/testeranto/App.css +78 -0
  122. package/testeranto/App.js +4828 -2814
  123. package/testeranto/bundles/node/core/{chunk-RIM6RECA.mjs → chunk-MJTSYIAQ.mjs} +179 -250
  124. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +110 -62
  125. package/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs +135 -137
  126. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +4317 -4
  127. package/testeranto/bundles/pure/core/{chunk-XYOCRDEQ.mjs → chunk-6HR24P27.mjs} +96 -173
  128. package/testeranto/bundles/pure/core/src/Pure.test.mjs +1 -1
  129. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +110 -62
  130. package/testeranto/bundles/web/core/{chunk-JMDLMADH.mjs → chunk-AZZHJNSU.mjs} +2473 -191
  131. package/testeranto/bundles/web/core/{chunk-LQMU5NCG.mjs → chunk-ME6I6FJZ.mjs} +96 -173
  132. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +15 -0
  133. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +3 -5
  134. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -78
  135. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +15 -0
  136. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +6476 -69
  137. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.html +15 -0
  138. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +110 -62
  139. package/testeranto/helpo_chat_history.json +1 -0
  140. package/testeranto/metafiles/golang/core.json +42 -47
  141. package/testeranto/metafiles/node/core.json +263 -247
  142. package/testeranto/metafiles/pure/core.json +23 -38
  143. package/testeranto/metafiles/python/core.json +85 -9
  144. package/testeranto/metafiles/web/core.json +966 -460
  145. package/testeranto/reports/core/config.json +30 -6
  146. package/testeranto/reports/core/example/Calculator.golingvu/golang/exit.log +1 -0
  147. package/testeranto/reports/core/example/Calculator.golingvu/golang/stderr.log +2 -0
  148. package/testeranto/reports/core/example/Calculator.golingvu/golang/stdout.log +1 -0
  149. package/testeranto/reports/core/example/Calculator.pitono.test/python/exit.log +1 -0
  150. package/testeranto/reports/core/example/Calculator.pitono.test/python/stderr.log +11 -0
  151. package/testeranto/reports/core/example/Calculator.pitono.test/python/stdout.log +1 -0
  152. package/testeranto/reports/core/example/Calculator.test/node/exit.log +1 -0
  153. package/testeranto/reports/core/example/Calculator.test/node/lint_errors.txt +2 -0
  154. package/testeranto/reports/core/example/Calculator.test/node/message.txt +16 -0
  155. package/testeranto/reports/core/example/Calculator.test/node/prompt.txt +13 -0
  156. package/testeranto/reports/core/example/Calculator.test/node/stderr.log +33 -0
  157. package/testeranto/reports/core/example/Calculator.test/node/stdout.log +1076 -0
  158. package/testeranto/reports/core/example/Calculator.test/node/tests.json +1109 -0
  159. package/testeranto/reports/core/example/Calculator.test/node/type_errors.txt +34 -0
  160. package/testeranto/reports/core/example/test_example/python/exit.log +1 -0
  161. package/testeranto/reports/core/example/test_example/python/stderr.log +24 -0
  162. package/testeranto/reports/core/src/Pure.test/pure/message.txt +1 -2
  163. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +4 -5
  164. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +16 -3
  165. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +0 -91
  166. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +0 -1
  167. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
  168. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +17 -0
  169. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +26 -0
  170. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +69 -0
  171. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +16 -0
  172. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +17 -0
  173. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +27 -0
  174. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +42 -0
  175. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +0 -30
  176. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +0 -1
  177. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
  178. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +30 -0
  179. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +17 -0
  180. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +30 -0
  181. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +58 -0
  182. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log +1 -1
  183. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +9 -1
  184. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log +1 -0
  185. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +4 -1
  186. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +98 -7
  187. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +44 -28
  188. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt +1 -2
  189. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +4 -6
  190. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +44 -28
  191. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +0 -1
  192. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/exit.log +0 -1
  193. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +17 -0
  194. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +25 -0
  195. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +69 -0
  196. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -1
  197. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +1 -2
  198. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +4 -8
  199. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +68 -35
  200. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +336 -6
  201. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json +166 -0
  202. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +20 -13
  203. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
  204. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +9 -1
  205. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -20
  206. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +1 -3
  207. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +31 -0
  208. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +16 -3
  209. package/testeranto/reports/core/summary.json +46 -19
  210. package/testeranto.config.ts +18 -30
  211. package/dist/cjs-shim.js +0 -12
  212. package/dist/common/design-editor/DesignEditor.js +0 -77
  213. package/dist/common/design-editor/index.js +0 -18
  214. package/dist/common/design-editor/server.js +0 -98
  215. package/dist/common/design-editor/types.js +0 -2
  216. package/dist/common/package.json +0 -3
  217. package/dist/common/src/App.js +0 -219
  218. package/dist/common/src/CoreTypes.js +0 -2
  219. package/dist/common/src/Init.js +0 -48
  220. package/dist/common/src/Node.js +0 -40
  221. package/dist/common/src/NodeSidecar.js +0 -15
  222. package/dist/common/src/PM/PM_WithBuild.js +0 -135
  223. package/dist/common/src/PM/PM_WithEslintAndTsc.js +0 -204
  224. package/dist/common/src/PM/PM_WithGit.js +0 -517
  225. package/dist/common/src/PM/PM_WithProcesses.js +0 -519
  226. package/dist/common/src/PM/PM_WithWebSocket.js +0 -535
  227. package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +0 -108
  228. package/dist/common/src/PM/__tests__/pureSidecar.testeranto.js +0 -93
  229. package/dist/common/src/PM/__tests__/webSidecar.testeranto.js +0 -93
  230. package/dist/common/src/PM/base.js +0 -319
  231. package/dist/common/src/PM/index.js +0 -6
  232. package/dist/common/src/PM/main.js +0 -672
  233. package/dist/common/src/PM/metafileOutputs.js +0 -78
  234. package/dist/common/src/PM/node.js +0 -179
  235. package/dist/common/src/PM/nodeSidecar.js +0 -65
  236. package/dist/common/src/PM/pitonoRunner.js +0 -54
  237. package/dist/common/src/PM/pure.js +0 -103
  238. package/dist/common/src/PM/pureSidecar.js +0 -48
  239. package/dist/common/src/PM/sidecar.js +0 -11
  240. package/dist/common/src/PM/types.js +0 -2
  241. package/dist/common/src/PM/utils.js +0 -210
  242. package/dist/common/src/PM/web.js +0 -106
  243. package/dist/common/src/PM/webSidecar.js +0 -47
  244. package/dist/common/src/Pure.js +0 -52
  245. package/dist/common/src/Pure.test.js +0 -180
  246. package/dist/common/src/PureSidecar.js +0 -13
  247. package/dist/common/src/ReportServer.js +0 -1
  248. package/dist/common/src/ReportServer.test.ts/index.js +0 -78
  249. package/dist/common/src/ReportServerLib.js +0 -1
  250. package/dist/common/src/Types.js +0 -2
  251. package/dist/common/src/Web.js +0 -61
  252. package/dist/common/src/WebSidecar.js +0 -14
  253. package/dist/common/src/components/DesignEditorPage.js +0 -205
  254. package/dist/common/src/components/SunriseAnimation.js +0 -291
  255. package/dist/common/src/components/SunriseAnimation.test/implementation.js +0 -1
  256. package/dist/common/src/components/SunriseAnimation.test/index.js +0 -1
  257. package/dist/common/src/components/SunriseAnimation.test/interface.js +0 -68
  258. package/dist/common/src/components/SunriseAnimation.test/specification.js +0 -1
  259. package/dist/common/src/components/SunriseAnimation.test/types.js +0 -2
  260. package/dist/common/src/components/TestStatusBadge.js +0 -35
  261. package/dist/common/src/components/pure/AppFrame.js +0 -81
  262. package/dist/common/src/components/pure/AppFrame.test/implementation.js +0 -63
  263. package/dist/common/src/components/pure/AppFrame.test/index.js +0 -14
  264. package/dist/common/src/components/pure/AppFrame.test/specification.js +0 -25
  265. package/dist/common/src/components/pure/AppFrame.test/types.js +0 -3
  266. package/dist/common/src/components/pure/ArtifactTree.js +0 -80
  267. package/dist/common/src/components/pure/BuildLogViewer.js +0 -106
  268. package/dist/common/src/components/pure/DebugEnv.js +0 -30
  269. package/dist/common/src/components/pure/FeaturesReporterView.js +0 -23
  270. package/dist/common/src/components/pure/FeaturesReporterView.test/implementation.js +0 -84
  271. package/dist/common/src/components/pure/FeaturesReporterView.test/index.js +0 -14
  272. package/dist/common/src/components/pure/FeaturesReporterView.test/specification.js +0 -27
  273. package/dist/common/src/components/pure/FeaturesReporterView.test/types.js +0 -2
  274. package/dist/common/src/components/pure/FileTree.js +0 -34
  275. package/dist/common/src/components/pure/FileTreeItem.js +0 -29
  276. package/dist/common/src/components/pure/GitHubLoginButton.js +0 -18
  277. package/dist/common/src/components/pure/GitIntegrationView.js +0 -342
  278. package/dist/common/src/components/pure/ModalContent.js +0 -86
  279. package/dist/common/src/components/pure/ModalContent.test/implementation.js +0 -35
  280. package/dist/common/src/components/pure/ModalContent.test/index.js +0 -58
  281. package/dist/common/src/components/pure/ModalContent.test/specification.js +0 -19
  282. package/dist/common/src/components/pure/ModalContent.test/types.js +0 -4
  283. package/dist/common/src/components/pure/NavBar.js +0 -44
  284. package/dist/common/src/components/pure/ProcessManager.js +0 -113
  285. package/dist/common/src/components/pure/ProcessManagerView.js +0 -236
  286. package/dist/common/src/components/pure/ProjectPageView.js +0 -68
  287. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +0 -184
  288. package/dist/common/src/components/pure/ProjectPageView.test/index.js +0 -14
  289. package/dist/common/src/components/pure/ProjectPageView.test/specification.js +0 -32
  290. package/dist/common/src/components/pure/ProjectPageView.test/types.js +0 -4
  291. package/dist/common/src/components/pure/ProjectsPageView.js +0 -72
  292. package/dist/common/src/components/pure/Settings.js +0 -121
  293. package/dist/common/src/components/pure/Settings.test.js +0 -34
  294. package/dist/common/src/components/pure/SettingsButton.js +0 -13
  295. package/dist/common/src/components/pure/SignIn.js +0 -22
  296. package/dist/common/src/components/pure/SingleProcessView.js +0 -167
  297. package/dist/common/src/components/pure/TestPageView.js +0 -373
  298. package/dist/common/src/components/pure/TestPageView.test/implementation.js +0 -157
  299. package/dist/common/src/components/pure/TestPageView.test/index.js +0 -15
  300. package/dist/common/src/components/pure/TestPageView.test/specification.js +0 -26
  301. package/dist/common/src/components/pure/TestPageView.test/types.js +0 -4
  302. package/dist/common/src/components/pure/TestPageView_utils.js +0 -117
  303. package/dist/common/src/components/pure/TestTable.js +0 -33
  304. package/dist/common/src/components/pure/ThemeCard.js +0 -15
  305. package/dist/common/src/components/pure/ToastNotification.js +0 -14
  306. package/dist/common/src/components/pure/UserProfile.js +0 -27
  307. package/dist/common/src/components/stateful/AuthCallbackPage.js +0 -51
  308. package/dist/common/src/components/stateful/FeaturesReporter.js +0 -60
  309. package/dist/common/src/components/stateful/FileTree.js +0 -59
  310. package/dist/common/src/components/stateful/GitIntegrationPage.js +0 -12
  311. package/dist/common/src/components/stateful/ProcessManagerPage.js +0 -110
  312. package/dist/common/src/components/stateful/ProjectPage.js +0 -102
  313. package/dist/common/src/components/stateful/ProjectsPage.js +0 -116
  314. package/dist/common/src/components/stateful/SettingsPage.js +0 -72
  315. package/dist/common/src/components/stateful/SingleProcessPage.js +0 -137
  316. package/dist/common/src/components/stateful/TestPage.js +0 -270
  317. package/dist/common/src/components/stateful/TextEditorPage.js +0 -154
  318. package/dist/common/src/defaultConfig.js +0 -19
  319. package/dist/common/src/esbuildConfigs/consoleDetectorPlugin.js +0 -38
  320. package/dist/common/src/esbuildConfigs/eslint-formatter-testeranto.js +0 -21
  321. package/dist/common/src/esbuildConfigs/featuresPlugin.js +0 -39
  322. package/dist/common/src/esbuildConfigs/index.js +0 -21
  323. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +0 -30
  324. package/dist/common/src/esbuildConfigs/nativeImportDetectorPlugin.js +0 -24
  325. package/dist/common/src/esbuildConfigs/node.js +0 -24
  326. package/dist/common/src/esbuildConfigs/pure.js +0 -42
  327. package/dist/common/src/esbuildConfigs/rebuildPlugin.js +0 -19
  328. package/dist/common/src/esbuildConfigs/web.js +0 -48
  329. package/dist/common/src/hooks/useGitMode.js +0 -21
  330. package/dist/common/src/init-docs.js +0 -9
  331. package/dist/common/src/lib/BaseGiven.js +0 -99
  332. package/dist/common/src/lib/BaseSuite.js +0 -91
  333. package/dist/common/src/lib/BaseSuite.test/mock.js +0 -68
  334. package/dist/common/src/lib/BaseSuite.test/node.test.js +0 -10
  335. package/dist/common/src/lib/BaseSuite.test/pure.test.js +0 -10
  336. package/dist/common/src/lib/BaseSuite.test/test.js +0 -229
  337. package/dist/common/src/lib/BaseSuite.test/web.test.js +0 -10
  338. package/dist/common/src/lib/BaseThen.js +0 -64
  339. package/dist/common/src/lib/BaseWhen.js +0 -45
  340. package/dist/common/src/lib/Sidecar.js +0 -7
  341. package/dist/common/src/lib/Tiposkripto.js +0 -173
  342. package/dist/common/src/lib/Tiposkripto.test/MockTiposkripto.js +0 -180
  343. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +0 -29
  344. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +0 -213
  345. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +0 -11
  346. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.specification.js +0 -50
  347. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.types.js +0 -2
  348. package/dist/common/src/lib/abstractBase.test/MockGiven.js +0 -24
  349. package/dist/common/src/lib/abstractBase.test/MockThen.js +0 -16
  350. package/dist/common/src/lib/abstractBase.test/MockWhen.js +0 -20
  351. package/dist/common/src/lib/abstractBase.test/adapter.js +0 -24
  352. package/dist/common/src/lib/abstractBase.test/implementation.js +0 -38
  353. package/dist/common/src/lib/abstractBase.test/index.js +0 -18
  354. package/dist/common/src/lib/abstractBase.test/specification.js +0 -19
  355. package/dist/common/src/lib/abstractBase.test/types.js +0 -2
  356. package/dist/common/src/lib/index.js +0 -31
  357. package/dist/common/src/lib/pmProxy.js +0 -293
  358. package/dist/common/src/lib/pmProxy.test/adapter.js +0 -54
  359. package/dist/common/src/lib/pmProxy.test/implementation.js +0 -137
  360. package/dist/common/src/lib/pmProxy.test/index.js +0 -15
  361. package/dist/common/src/lib/pmProxy.test/mockPM.js +0 -34
  362. package/dist/common/src/lib/pmProxy.test/mockPMBase.js +0 -131
  363. package/dist/common/src/lib/pmProxy.test/specification.js +0 -179
  364. package/dist/common/src/lib/pmProxy.test/types.js +0 -2
  365. package/dist/common/src/lib/types.js +0 -3
  366. package/dist/common/src/mothership/index.js +0 -21
  367. package/dist/common/src/mothership/test.js +0 -83
  368. package/dist/common/src/run.js +0 -49
  369. package/dist/common/src/services/FileService.js +0 -505
  370. package/dist/common/src/services/GitHubAuthService.js +0 -184
  371. package/dist/common/src/testeranto.js +0 -224
  372. package/dist/common/src/types/features.js +0 -34
  373. package/dist/common/src/utils/api.js +0 -93
  374. package/dist/common/src/utils/buildTemplates.js +0 -37
  375. package/dist/common/src/utils/featureUtils.js +0 -29
  376. package/dist/common/src/utils/gitTest.js +0 -27
  377. package/dist/common/src/utils/golingvuMetafile.js +0 -116
  378. package/dist/common/src/utils/logFiles.js +0 -52
  379. package/dist/common/src/utils/makePrompt.js +0 -116
  380. package/dist/common/src/utils/pitonoMetafile.js +0 -67
  381. package/dist/common/src/utils/queue.js +0 -36
  382. package/dist/common/src/utils.js +0 -143
  383. package/dist/common/src/web.html.js +0 -18
  384. package/dist/common/testeranto.config.js +0 -102
  385. package/dist/common/tsconfig.common.tsbuildinfo +0 -1
  386. package/dist/module/design-editor/DesignEditor.js +0 -40
  387. package/dist/module/design-editor/index.js +0 -2
  388. package/dist/module/design-editor/server.js +0 -92
  389. package/dist/module/design-editor/types.js +0 -1
  390. package/dist/module/package.json +0 -3
  391. package/dist/module/src/App.js +0 -176
  392. package/dist/module/src/CoreTypes.js +0 -1
  393. package/dist/module/src/Init.js +0 -43
  394. package/dist/module/src/Node.js +0 -33
  395. package/dist/module/src/NodeSidecar.js +0 -11
  396. package/dist/module/src/PM/PM_WithBuild.js +0 -128
  397. package/dist/module/src/PM/PM_WithEslintAndTsc.js +0 -197
  398. package/dist/module/src/PM/PM_WithGit.js +0 -477
  399. package/dist/module/src/PM/PM_WithProcesses.js +0 -479
  400. package/dist/module/src/PM/PM_WithWebSocket.js +0 -528
  401. package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +0 -103
  402. package/dist/module/src/PM/__tests__/pureSidecar.testeranto.js +0 -88
  403. package/dist/module/src/PM/__tests__/webSidecar.testeranto.js +0 -88
  404. package/dist/module/src/PM/base.js +0 -312
  405. package/dist/module/src/PM/index.js +0 -2
  406. package/dist/module/src/PM/main.js +0 -632
  407. package/dist/module/src/PM/metafileOutputs.js +0 -78
  408. package/dist/module/src/PM/node.js +0 -172
  409. package/dist/module/src/PM/nodeSidecar.js +0 -58
  410. package/dist/module/src/PM/pitonoRunner.js +0 -47
  411. package/dist/module/src/PM/pure.js +0 -99
  412. package/dist/module/src/PM/pureSidecar.js +0 -41
  413. package/dist/module/src/PM/sidecar.js +0 -7
  414. package/dist/module/src/PM/types.js +0 -1
  415. package/dist/module/src/PM/utils.js +0 -196
  416. package/dist/module/src/PM/web.js +0 -102
  417. package/dist/module/src/PM/webSidecar.js +0 -40
  418. package/dist/module/src/Pure.js +0 -45
  419. package/dist/module/src/Pure.test.js +0 -175
  420. package/dist/module/src/PureSidecar.js +0 -9
  421. package/dist/module/src/ReportServer.js +0 -1
  422. package/dist/module/src/ReportServer.test.ts/index.js +0 -73
  423. package/dist/module/src/ReportServerLib.js +0 -1
  424. package/dist/module/src/Types.js +0 -1
  425. package/dist/module/src/Web.js +0 -54
  426. package/dist/module/src/WebSidecar.js +0 -10
  427. package/dist/module/src/components/DesignEditorPage.js +0 -168
  428. package/dist/module/src/components/SunriseAnimation.js +0 -256
  429. package/dist/module/src/components/SunriseAnimation.test/implementation.js +0 -1
  430. package/dist/module/src/components/SunriseAnimation.test/index.js +0 -1
  431. package/dist/module/src/components/SunriseAnimation.test/interface.js +0 -32
  432. package/dist/module/src/components/SunriseAnimation.test/specification.js +0 -1
  433. package/dist/module/src/components/SunriseAnimation.test/types.js +0 -1
  434. package/dist/module/src/components/TestStatusBadge.js +0 -28
  435. package/dist/module/src/components/pure/AppFrame.js +0 -74
  436. package/dist/module/src/components/pure/AppFrame.test/implementation.js +0 -57
  437. package/dist/module/src/components/pure/AppFrame.test/index.js +0 -9
  438. package/dist/module/src/components/pure/AppFrame.test/specification.js +0 -21
  439. package/dist/module/src/components/pure/AppFrame.test/types.js +0 -2
  440. package/dist/module/src/components/pure/ArtifactTree.js +0 -80
  441. package/dist/module/src/components/pure/BuildLogViewer.js +0 -99
  442. package/dist/module/src/components/pure/DebugEnv.js +0 -23
  443. package/dist/module/src/components/pure/FeaturesReporterView.js +0 -16
  444. package/dist/module/src/components/pure/FeaturesReporterView.test/implementation.js +0 -81
  445. package/dist/module/src/components/pure/FeaturesReporterView.test/index.js +0 -9
  446. package/dist/module/src/components/pure/FeaturesReporterView.test/specification.js +0 -23
  447. package/dist/module/src/components/pure/FeaturesReporterView.test/types.js +0 -1
  448. package/dist/module/src/components/pure/FileTree.js +0 -27
  449. package/dist/module/src/components/pure/FileTreeItem.js +0 -22
  450. package/dist/module/src/components/pure/GitHubLoginButton.js +0 -11
  451. package/dist/module/src/components/pure/GitIntegrationView.js +0 -305
  452. package/dist/module/src/components/pure/ModalContent.js +0 -79
  453. package/dist/module/src/components/pure/ModalContent.test/implementation.js +0 -32
  454. package/dist/module/src/components/pure/ModalContent.test/index.js +0 -53
  455. package/dist/module/src/components/pure/ModalContent.test/specification.js +0 -15
  456. package/dist/module/src/components/pure/ModalContent.test/types.js +0 -3
  457. package/dist/module/src/components/pure/NavBar.js +0 -37
  458. package/dist/module/src/components/pure/ProcessManager.js +0 -76
  459. package/dist/module/src/components/pure/ProcessManagerView.js +0 -199
  460. package/dist/module/src/components/pure/ProjectPageView.js +0 -61
  461. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +0 -181
  462. package/dist/module/src/components/pure/ProjectPageView.test/index.js +0 -9
  463. package/dist/module/src/components/pure/ProjectPageView.test/specification.js +0 -28
  464. package/dist/module/src/components/pure/ProjectPageView.test/types.js +0 -3
  465. package/dist/module/src/components/pure/ProjectsPageView.js +0 -65
  466. package/dist/module/src/components/pure/Settings.js +0 -84
  467. package/dist/module/src/components/pure/Settings.test.js +0 -29
  468. package/dist/module/src/components/pure/SettingsButton.js +0 -6
  469. package/dist/module/src/components/pure/SignIn.js +0 -15
  470. package/dist/module/src/components/pure/SingleProcessView.js +0 -130
  471. package/dist/module/src/components/pure/TestPageView.js +0 -336
  472. package/dist/module/src/components/pure/TestPageView.test/implementation.js +0 -121
  473. package/dist/module/src/components/pure/TestPageView.test/index.js +0 -10
  474. package/dist/module/src/components/pure/TestPageView.test/specification.js +0 -22
  475. package/dist/module/src/components/pure/TestPageView.test/types.js +0 -3
  476. package/dist/module/src/components/pure/TestPageView_utils.js +0 -109
  477. package/dist/module/src/components/pure/TestTable.js +0 -26
  478. package/dist/module/src/components/pure/ThemeCard.js +0 -8
  479. package/dist/module/src/components/pure/ToastNotification.js +0 -7
  480. package/dist/module/src/components/pure/UserProfile.js +0 -20
  481. package/dist/module/src/components/stateful/AuthCallbackPage.js +0 -14
  482. package/dist/module/src/components/stateful/FeaturesReporter.js +0 -23
  483. package/dist/module/src/components/stateful/FileTree.js +0 -59
  484. package/dist/module/src/components/stateful/GitIntegrationPage.js +0 -5
  485. package/dist/module/src/components/stateful/ProcessManagerPage.js +0 -73
  486. package/dist/module/src/components/stateful/ProjectPage.js +0 -65
  487. package/dist/module/src/components/stateful/ProjectsPage.js +0 -79
  488. package/dist/module/src/components/stateful/SettingsPage.js +0 -35
  489. package/dist/module/src/components/stateful/SingleProcessPage.js +0 -100
  490. package/dist/module/src/components/stateful/TestPage.js +0 -233
  491. package/dist/module/src/components/stateful/TextEditorPage.js +0 -117
  492. package/dist/module/src/defaultConfig.js +0 -17
  493. package/dist/module/src/esbuildConfigs/consoleDetectorPlugin.js +0 -32
  494. package/dist/module/src/esbuildConfigs/eslint-formatter-testeranto.js +0 -18
  495. package/dist/module/src/esbuildConfigs/featuresPlugin.js +0 -34
  496. package/dist/module/src/esbuildConfigs/index.js +0 -19
  497. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +0 -25
  498. package/dist/module/src/esbuildConfigs/nativeImportDetectorPlugin.js +0 -21
  499. package/dist/module/src/esbuildConfigs/node.js +0 -19
  500. package/dist/module/src/esbuildConfigs/pure.js +0 -37
  501. package/dist/module/src/esbuildConfigs/rebuildPlugin.js +0 -14
  502. package/dist/module/src/esbuildConfigs/web.js +0 -43
  503. package/dist/module/src/hooks/useGitMode.js +0 -17
  504. package/dist/module/src/init-docs.js +0 -4
  505. package/dist/module/src/lib/BaseGiven.js +0 -95
  506. package/dist/module/src/lib/BaseSuite.js +0 -87
  507. package/dist/module/src/lib/BaseSuite.test/mock.js +0 -61
  508. package/dist/module/src/lib/BaseSuite.test/node.test.js +0 -5
  509. package/dist/module/src/lib/BaseSuite.test/pure.test.js +0 -5
  510. package/dist/module/src/lib/BaseSuite.test/test.js +0 -225
  511. package/dist/module/src/lib/BaseSuite.test/web.test.js +0 -5
  512. package/dist/module/src/lib/BaseThen.js +0 -60
  513. package/dist/module/src/lib/BaseWhen.js +0 -41
  514. package/dist/module/src/lib/Sidecar.js +0 -3
  515. package/dist/module/src/lib/Tiposkripto.js +0 -170
  516. package/dist/module/src/lib/Tiposkripto.test/MockTiposkripto.js +0 -173
  517. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +0 -26
  518. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +0 -210
  519. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +0 -6
  520. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.specification.js +0 -46
  521. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.types.js +0 -1
  522. package/dist/module/src/lib/abstractBase.test/MockGiven.js +0 -20
  523. package/dist/module/src/lib/abstractBase.test/MockThen.js +0 -12
  524. package/dist/module/src/lib/abstractBase.test/MockWhen.js +0 -16
  525. package/dist/module/src/lib/abstractBase.test/adapter.js +0 -21
  526. package/dist/module/src/lib/abstractBase.test/implementation.js +0 -35
  527. package/dist/module/src/lib/abstractBase.test/index.js +0 -13
  528. package/dist/module/src/lib/abstractBase.test/specification.js +0 -15
  529. package/dist/module/src/lib/abstractBase.test/types.js +0 -1
  530. package/dist/module/src/lib/index.js +0 -26
  531. package/dist/module/src/lib/pmProxy.js +0 -284
  532. package/dist/module/src/lib/pmProxy.test/adapter.js +0 -51
  533. package/dist/module/src/lib/pmProxy.test/implementation.js +0 -134
  534. package/dist/module/src/lib/pmProxy.test/index.js +0 -10
  535. package/dist/module/src/lib/pmProxy.test/mockPM.js +0 -30
  536. package/dist/module/src/lib/pmProxy.test/mockPMBase.js +0 -127
  537. package/dist/module/src/lib/pmProxy.test/specification.js +0 -175
  538. package/dist/module/src/lib/pmProxy.test/types.js +0 -1
  539. package/dist/module/src/lib/types.js +0 -2
  540. package/dist/module/src/mothership/index.js +0 -16
  541. package/dist/module/src/mothership/test.js +0 -78
  542. package/dist/module/src/run.js +0 -49
  543. package/dist/module/src/services/FileService.js +0 -468
  544. package/dist/module/src/services/GitHubAuthService.js +0 -180
  545. package/dist/module/src/testeranto.js +0 -186
  546. package/dist/module/src/types/features.js +0 -31
  547. package/dist/module/src/utils/api.js +0 -87
  548. package/dist/module/src/utils/buildTemplates.js +0 -33
  549. package/dist/module/src/utils/featureUtils.js +0 -24
  550. package/dist/module/src/utils/gitTest.js +0 -23
  551. package/dist/module/src/utils/golingvuMetafile.js +0 -109
  552. package/dist/module/src/utils/logFiles.js +0 -47
  553. package/dist/module/src/utils/makePrompt.js +0 -109
  554. package/dist/module/src/utils/pitonoMetafile.js +0 -60
  555. package/dist/module/src/utils/queue.js +0 -32
  556. package/dist/module/src/utils.js +0 -130
  557. package/dist/module/src/web.html.js +0 -16
  558. package/dist/module/testeranto.config.js +0 -100
  559. package/dist/module/tsconfig.module.tsbuildinfo +0 -1
  560. package/dist/types/design-editor/DesignEditor.d.ts +0 -1
  561. package/dist/types/src/App.d.ts +0 -19
  562. package/dist/types/src/CoreTypes.d.ts +0 -52
  563. package/dist/types/src/Init.d.ts +0 -2
  564. package/dist/types/src/Node.d.ts +0 -9
  565. package/dist/types/src/NodeSidecar.d.ts +0 -6
  566. package/dist/types/src/PM/PM_WithBuild.d.ts +0 -13
  567. package/dist/types/src/PM/PM_WithEslintAndTsc.d.ts +0 -22
  568. package/dist/types/src/PM/PM_WithGit.d.ts +0 -27
  569. package/dist/types/src/PM/PM_WithProcesses.d.ts +0 -29
  570. package/dist/types/src/PM/PM_WithWebSocket.d.ts +0 -108
  571. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +0 -2
  572. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +0 -2
  573. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +0 -2
  574. package/dist/types/src/PM/base.d.ts +0 -35
  575. package/dist/types/src/PM/index.d.ts +0 -35
  576. package/dist/types/src/PM/main.d.ts +0 -8
  577. package/dist/types/src/PM/node.d.ts +0 -38
  578. package/dist/types/src/PM/nodeSidecar.d.ts +0 -13
  579. package/dist/types/src/PM/pitonoRunner.d.ts +0 -7
  580. package/dist/types/src/PM/pure.d.ts +0 -41
  581. package/dist/types/src/PM/pureSidecar.d.ts +0 -11
  582. package/dist/types/src/PM/sidecar.d.ts +0 -8
  583. package/dist/types/src/PM/types.d.ts +0 -118
  584. package/dist/types/src/PM/utils.d.ts +0 -35
  585. package/dist/types/src/PM/web.d.ts +0 -41
  586. package/dist/types/src/PM/webSidecar.d.ts +0 -11
  587. package/dist/types/src/Pure.d.ts +0 -14
  588. package/dist/types/src/Pure.test.d.ts +0 -2
  589. package/dist/types/src/PureSidecar.d.ts +0 -8
  590. package/dist/types/src/ReportServer.test.ts/index.d.ts +0 -2
  591. package/dist/types/src/Types.d.ts +0 -119
  592. package/dist/types/src/Web.d.ts +0 -9
  593. package/dist/types/src/WebSidecar.d.ts +0 -8
  594. package/dist/types/src/components/DesignEditorPage.d.ts +0 -1
  595. package/dist/types/src/components/SunriseAnimation.d.ts +0 -5
  596. package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -11
  597. package/dist/types/src/components/SunriseAnimation.test/types.d.ts +0 -39
  598. package/dist/types/src/components/TestStatusBadge.d.ts +0 -15
  599. package/dist/types/src/components/pure/AppFrame.d.ts +0 -11
  600. package/dist/types/src/components/pure/AppFrame.test/implementation.d.ts +0 -3
  601. package/dist/types/src/components/pure/AppFrame.test/index.d.ts +0 -3
  602. package/dist/types/src/components/pure/AppFrame.test/specification.d.ts +0 -3
  603. package/dist/types/src/components/pure/AppFrame.test/types.d.ts +0 -33
  604. package/dist/types/src/components/pure/BuildLogViewer.d.ts +0 -7
  605. package/dist/types/src/components/pure/DebugEnv.d.ts +0 -2
  606. package/dist/types/src/components/pure/FeaturesReporterView.d.ts +0 -7
  607. package/dist/types/src/components/pure/FeaturesReporterView.test/implementation.d.ts +0 -3
  608. package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +0 -2
  609. package/dist/types/src/components/pure/FeaturesReporterView.test/specification.d.ts +0 -3
  610. package/dist/types/src/components/pure/FeaturesReporterView.test/types.d.ts +0 -54
  611. package/dist/types/src/components/pure/FileTree.d.ts +0 -6
  612. package/dist/types/src/components/pure/FileTreeItem.d.ts +0 -8
  613. package/dist/types/src/components/pure/GitHubLoginButton.d.ts +0 -8
  614. package/dist/types/src/components/pure/GitIntegrationView.d.ts +0 -1
  615. package/dist/types/src/components/pure/ModalContent.d.ts +0 -7
  616. package/dist/types/src/components/pure/ModalContent.test/implementation.d.ts +0 -3
  617. package/dist/types/src/components/pure/ModalContent.test/index.d.ts +0 -2
  618. package/dist/types/src/components/pure/ModalContent.test/specification.d.ts +0 -3
  619. package/dist/types/src/components/pure/ModalContent.test/types.d.ts +0 -45
  620. package/dist/types/src/components/pure/NavBar.d.ts +0 -23
  621. package/dist/types/src/components/pure/ProcessManager.d.ts +0 -8
  622. package/dist/types/src/components/pure/ProcessManagerView.d.ts +0 -20
  623. package/dist/types/src/components/pure/ProjectPageView.d.ts +0 -14
  624. package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +0 -3
  625. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +0 -2
  626. package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +0 -3
  627. package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +0 -57
  628. package/dist/types/src/components/pure/ProjectsPageView.d.ts +0 -29
  629. package/dist/types/src/components/pure/Settings.d.ts +0 -1
  630. package/dist/types/src/components/pure/Settings.test.d.ts +0 -1
  631. package/dist/types/src/components/pure/SettingsButton.d.ts +0 -2
  632. package/dist/types/src/components/pure/SignIn.d.ts +0 -1
  633. package/dist/types/src/components/pure/SingleProcessView.d.ts +0 -10
  634. package/dist/types/src/components/pure/TestPageView.d.ts +0 -16
  635. package/dist/types/src/components/pure/TestPageView.test/implementation.d.ts +0 -12
  636. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +0 -3
  637. package/dist/types/src/components/pure/TestPageView.test/specification.d.ts +0 -11
  638. package/dist/types/src/components/pure/TestPageView.test/types.d.ts +0 -65
  639. package/dist/types/src/components/pure/TestPageView_utils.d.ts +0 -23
  640. package/dist/types/src/components/pure/TestTable.d.ts +0 -16
  641. package/dist/types/src/components/pure/ThemeCard.d.ts +0 -9
  642. package/dist/types/src/components/pure/ToastNotification.d.ts +0 -6
  643. package/dist/types/src/components/pure/UserProfile.d.ts +0 -2
  644. package/dist/types/src/components/stateful/AuthCallbackPage.d.ts +0 -2
  645. package/dist/types/src/components/stateful/FeaturesReporter.d.ts +0 -2
  646. package/dist/types/src/components/stateful/GitIntegrationPage.d.ts +0 -1
  647. package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +0 -2
  648. package/dist/types/src/components/stateful/ProjectPage.d.ts +0 -1
  649. package/dist/types/src/components/stateful/ProjectsPage.d.ts +0 -1
  650. package/dist/types/src/components/stateful/SettingsPage.d.ts +0 -2
  651. package/dist/types/src/components/stateful/SingleProcessPage.d.ts +0 -2
  652. package/dist/types/src/components/stateful/TestPage.d.ts +0 -1
  653. package/dist/types/src/components/stateful/TextEditorPage.d.ts +0 -1
  654. package/dist/types/src/defaultConfig.d.ts +0 -3
  655. package/dist/types/src/esbuildConfigs/consoleDetectorPlugin.d.ts +0 -2
  656. package/dist/types/src/esbuildConfigs/eslint-formatter-testeranto.d.ts +0 -2
  657. package/dist/types/src/esbuildConfigs/featuresPlugin.d.ts +0 -5
  658. package/dist/types/src/esbuildConfigs/index.d.ts +0 -4
  659. package/dist/types/src/esbuildConfigs/inputFilesPlugin.d.ts +0 -7
  660. package/dist/types/src/esbuildConfigs/nativeImportDetectorPlugin.d.ts +0 -2
  661. package/dist/types/src/esbuildConfigs/node.d.ts +0 -4
  662. package/dist/types/src/esbuildConfigs/pure.d.ts +0 -4
  663. package/dist/types/src/esbuildConfigs/rebuildPlugin.d.ts +0 -6
  664. package/dist/types/src/esbuildConfigs/web.d.ts +0 -4
  665. package/dist/types/src/hooks/useGitMode.d.ts +0 -7
  666. package/dist/types/src/init-docs.d.ts +0 -1
  667. package/dist/types/src/lib/BaseGiven.d.ts +0 -44
  668. package/dist/types/src/lib/BaseSuite.d.ts +0 -46
  669. package/dist/types/src/lib/BaseSuite.test/mock.d.ts +0 -21
  670. package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +0 -2
  671. package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +0 -2
  672. package/dist/types/src/lib/BaseSuite.test/test.d.ts +0 -37
  673. package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +0 -2
  674. package/dist/types/src/lib/BaseThen.d.ts +0 -27
  675. package/dist/types/src/lib/BaseWhen.d.ts +0 -27
  676. package/dist/types/src/lib/Sidecar.d.ts +0 -5
  677. package/dist/types/src/lib/Tiposkripto.d.ts +0 -37
  678. package/dist/types/src/lib/Tiposkripto.test/MockTiposkripto.d.ts +0 -18
  679. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.adapter.d.ts +0 -3
  680. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +0 -2
  681. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.implementation.d.ts +0 -3
  682. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.specification.d.ts +0 -3
  683. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.types.d.ts +0 -58
  684. package/dist/types/src/lib/abstractBase.test/MockGiven.d.ts +0 -9
  685. package/dist/types/src/lib/abstractBase.test/MockThen.d.ts +0 -6
  686. package/dist/types/src/lib/abstractBase.test/MockWhen.d.ts +0 -6
  687. package/dist/types/src/lib/abstractBase.test/adapter.d.ts +0 -3
  688. package/dist/types/src/lib/abstractBase.test/implementation.d.ts +0 -3
  689. package/dist/types/src/lib/abstractBase.test/index.d.ts +0 -2
  690. package/dist/types/src/lib/abstractBase.test/specification.d.ts +0 -3
  691. package/dist/types/src/lib/abstractBase.test/types.d.ts +0 -39
  692. package/dist/types/src/lib/index.d.ts +0 -73
  693. package/dist/types/src/lib/pmProxy.d.ts +0 -12
  694. package/dist/types/src/lib/pmProxy.test/adapter.d.ts +0 -3
  695. package/dist/types/src/lib/pmProxy.test/implementation.d.ts +0 -3
  696. package/dist/types/src/lib/pmProxy.test/index.d.ts +0 -6
  697. package/dist/types/src/lib/pmProxy.test/mockPM.d.ts +0 -10
  698. package/dist/types/src/lib/pmProxy.test/mockPMBase.d.ts +0 -40
  699. package/dist/types/src/lib/pmProxy.test/specification.d.ts +0 -3
  700. package/dist/types/src/lib/pmProxy.test/types.d.ts +0 -42
  701. package/dist/types/src/lib/types.d.ts +0 -24
  702. package/dist/types/src/mothership/index.d.ts +0 -2
  703. package/dist/types/src/mothership/test.d.ts +0 -2
  704. package/dist/types/src/services/FileService.d.ts +0 -34
  705. package/dist/types/src/services/GitHubAuthService.d.ts +0 -32
  706. package/dist/types/src/testeranto.d.ts +0 -1
  707. package/dist/types/src/types/features.d.ts +0 -7
  708. package/dist/types/src/utils/api.d.ts +0 -10
  709. package/dist/types/src/utils/buildTemplates.d.ts +0 -1
  710. package/dist/types/src/utils/featureUtils.d.ts +0 -6
  711. package/dist/types/src/utils/gitTest.d.ts +0 -11
  712. package/dist/types/src/utils/golingvuMetafile.d.ts +0 -19
  713. package/dist/types/src/utils/logFiles.d.ts +0 -75
  714. package/dist/types/src/utils/makePrompt.d.ts +0 -2
  715. package/dist/types/src/utils/pitonoMetafile.d.ts +0 -7
  716. package/dist/types/src/utils/queue.d.ts +0 -11
  717. package/dist/types/src/utils.d.ts +0 -20
  718. package/dist/types/src/web.html.d.ts +0 -2
  719. package/dist/types/tsconfig.types.tsbuildinfo +0 -1
  720. package/example/__pycache__/Calculator.cpython-313.pyc +0 -0
  721. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/README.md +0 -187
  722. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_given.go +0 -163
  723. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_suite.go +0 -85
  724. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_then.go +0 -21
  725. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_when.go +0 -21
  726. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/golingvu.go +0 -554
  727. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/test_adapter.go +0 -33
  728. package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/types.go +0 -72
  729. package/example/vendor/modules.txt +0 -5
  730. package/pitono/__init__.py +0 -54
  731. package/pitono/types.py +0 -78
  732. package/src/PM/metafileOutputs.ts +0 -90
  733. package/src/golingvu/base_suite_test.go +0 -197
  734. package/src/pitono/PM/__pycache__/python.cpython-313.pyc +0 -0
  735. package/src/pitono/__pycache__/Pitono.cpython-313.pyc +0 -0
  736. package/src/pitono/__pycache__/__init__.cpython-313.pyc +0 -0
  737. package/src/pitono/__pycache__/base_given.cpython-313.pyc +0 -0
  738. package/src/pitono/__pycache__/base_suite.cpython-313.pyc +0 -0
  739. package/src/pitono/__pycache__/base_then.cpython-313.pyc +0 -0
  740. package/src/pitono/__pycache__/base_when.cpython-313.pyc +0 -0
  741. package/src/pitono/__pycache__/core_generator.cpython-313.pyc +0 -0
  742. package/src/pitono/__pycache__/simple_adapter.cpython-313.pyc +0 -0
  743. package/src/pitono/__pycache__/types.cpython-313.pyc +0 -0
  744. package/src/templates/frontpage.html +0 -340
  745. package/src/templates/frontpage.md +0 -79
  746. package/testeranto/bundles/golang/core/Calculator.golingvu.golingvu.go +0 -53
  747. package/testeranto/bundles/node/core/chunk-VXVF7WFO.mjs +0 -4321
  748. package/testeranto/bundles/node/core/example/Calculator.test.mjs +0 -503
  749. package/testeranto/bundles/python/core/Calculator.pitono.test.py +0 -24
  750. package/testeranto/bundles/python/core/test_example.py +0 -24
  751. package/testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs +0 -2297
  752. package/testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs +0 -6874
  753. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -11697
  754. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -336
  755. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -68
  756. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -88
  757. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -29
  758. /package/{pitono → src/pitono}/core_generator.py +0 -0
  759. /package/{pitono → src/pitono}/pitono.egg-info/dependency_links.txt +0 -0
  760. /package/{pitono → src/pitono}/pitono.egg-info/entry_points.txt +0 -0
  761. /package/{pitono → src/pitono}/pitono.egg-info/top_level.txt +0 -0
  762. /package/{pitono → src/pitono}/pyproject.toml +0 -0
  763. /package/{pitono → src/pitono}/setup.py +0 -0
  764. /package/{pitono → src/pitono}/simple_adapter.py +0 -0
  765. /package/{dist/types/src/PM/metafileOutputs.d.ts → testeranto/helpo_chat_message.txt} +0 -0
  766. /package/{dist/types/src/ReportServer.d.ts → testeranto/reports/core/example/test_example/python/stdout.log} +0 -0
  767. /package/{dist/types/src/ReportServerLib.d.ts → testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt} +0 -0
  768. /package/{dist/types/src/components/SunriseAnimation.test/implementation.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log} +0 -0
  769. /package/{dist/types/src/components/SunriseAnimation.test/index.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log} +0 -0
  770. /package/{dist/types/src/components/SunriseAnimation.test/specification.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log} +0 -0
  771. /package/{dist/types/src/components/pure/ArtifactTree.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log} +0 -0
  772. /package/{dist/types/src/components/stateful/FileTree.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log} +0 -0
  773. /package/{dist/types/src/run.d.ts → testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt} +0 -0
@@ -449,6 +449,21 @@
449
449
  "pluginName": "sass-plugin",
450
450
  "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
451
451
  },
452
+ {
453
+ "id": "different-path-case",
454
+ "location": {
455
+ "column": 7,
456
+ "file": "src/components/pure/ModalContent.tsx",
457
+ "length": 16,
458
+ "line": 5,
459
+ "lineText": "import \"../../App.scss\";",
460
+ "namespace": "",
461
+ "suggestion": ""
462
+ },
463
+ "notes": [],
464
+ "pluginName": "",
465
+ "text": "Use \"src/app.scss\" instead of \"src/App.scss\" to avoid issues with case-sensitive file systems"
466
+ },
452
467
  {
453
468
  "id": "different-path-case",
454
469
  "location": {
@@ -753,7 +768,7 @@
753
768
  "format": "esm"
754
769
  },
755
770
  "src/lib/pmProxy.ts": {
756
- "bytes": 8407,
771
+ "bytes": 9566,
757
772
  "imports": [
758
773
  {
759
774
  "path": "./types",
@@ -779,7 +794,7 @@
779
794
  "format": "esm"
780
795
  },
781
796
  "src/lib/BaseGiven.ts": {
782
- "bytes": 5117,
797
+ "bytes": 9112,
783
798
  "imports": [
784
799
  {
785
800
  "path": ".",
@@ -820,7 +835,7 @@
820
835
  "format": "esm"
821
836
  },
822
837
  "src/lib/BaseWhen.ts": {
823
- "bytes": 2535,
838
+ "bytes": 2676,
824
839
  "imports": [
825
840
  {
826
841
  "path": ".",
@@ -856,7 +871,7 @@
856
871
  "format": "esm"
857
872
  },
858
873
  "src/lib/BaseThen.ts": {
859
- "bytes": 3339,
874
+ "bytes": 3079,
860
875
  "imports": [
861
876
  {
862
877
  "path": ".",
@@ -892,7 +907,7 @@
892
907
  "format": "esm"
893
908
  },
894
909
  "src/lib/BaseSuite.ts": {
895
- "bytes": 4530,
910
+ "bytes": 6086,
896
911
  "imports": [
897
912
  {
898
913
  "path": ".",
@@ -938,7 +953,7 @@
938
953
  "format": "esm"
939
954
  },
940
955
  "src/lib/Tiposkripto.ts": {
941
- "bytes": 10088,
956
+ "bytes": 11612,
942
957
  "imports": [
943
958
  {
944
959
  "path": "stream",
@@ -1039,139 +1054,6 @@
1039
1054
  ],
1040
1055
  "format": "esm"
1041
1056
  },
1042
- "src/lib/BaseSuite.test/mock.ts": {
1043
- "bytes": 2532,
1044
- "imports": [
1045
- {
1046
- "path": "src/lib/BaseGiven.ts",
1047
- "kind": "import-statement",
1048
- "original": "../BaseGiven"
1049
- },
1050
- {
1051
- "path": "src/lib/BaseSuite.ts",
1052
- "kind": "import-statement",
1053
- "original": "../BaseSuite"
1054
- },
1055
- {
1056
- "path": "src/lib/BaseThen.ts",
1057
- "kind": "import-statement",
1058
- "original": "../BaseThen"
1059
- },
1060
- {
1061
- "path": "src/lib/BaseWhen.ts",
1062
- "kind": "import-statement",
1063
- "original": "../BaseWhen"
1064
- },
1065
- {
1066
- "path": "../types",
1067
- "kind": "import-statement",
1068
- "external": true
1069
- },
1070
- {
1071
- "path": "./test",
1072
- "kind": "import-statement",
1073
- "external": true
1074
- },
1075
- {
1076
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1077
- "kind": "import-statement",
1078
- "external": true
1079
- },
1080
- {
1081
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
1082
- "kind": "import-statement",
1083
- "external": true
1084
- },
1085
- {
1086
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1087
- "kind": "import-statement",
1088
- "external": true
1089
- }
1090
- ],
1091
- "format": "esm"
1092
- },
1093
- "src/lib/BaseSuite.test/test.ts": {
1094
- "bytes": 12717,
1095
- "imports": [
1096
- {
1097
- "path": "..",
1098
- "kind": "import-statement",
1099
- "external": true
1100
- },
1101
- {
1102
- "path": "../../CoreTypes",
1103
- "kind": "import-statement",
1104
- "external": true
1105
- },
1106
- {
1107
- "path": "src/lib/BaseSuite.ts",
1108
- "kind": "import-statement",
1109
- "original": "../BaseSuite"
1110
- },
1111
- {
1112
- "path": "../types",
1113
- "kind": "import-statement",
1114
- "external": true
1115
- },
1116
- {
1117
- "path": "src/lib/BaseSuite.test/mock.ts",
1118
- "kind": "import-statement",
1119
- "original": "./mock"
1120
- },
1121
- {
1122
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1123
- "kind": "import-statement",
1124
- "external": true
1125
- },
1126
- {
1127
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
1128
- "kind": "import-statement",
1129
- "external": true
1130
- },
1131
- {
1132
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1133
- "kind": "import-statement",
1134
- "external": true
1135
- }
1136
- ],
1137
- "format": "esm"
1138
- },
1139
- "src/lib/BaseSuite.test/web.test.ts": {
1140
- "bytes": 319,
1141
- "imports": [
1142
- {
1143
- "path": "src/Web.ts",
1144
- "kind": "import-statement",
1145
- "original": "../../Web"
1146
- },
1147
- {
1148
- "path": "src/lib/BaseSuite.ts",
1149
- "kind": "import-statement",
1150
- "original": "../BaseSuite"
1151
- },
1152
- {
1153
- "path": "src/lib/BaseSuite.test/test.ts",
1154
- "kind": "import-statement",
1155
- "original": "./test"
1156
- },
1157
- {
1158
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1159
- "kind": "import-statement",
1160
- "external": true
1161
- },
1162
- {
1163
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
1164
- "kind": "import-statement",
1165
- "external": true
1166
- },
1167
- {
1168
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1169
- "kind": "import-statement",
1170
- "external": true
1171
- }
1172
- ],
1173
- "format": "esm"
1174
- },
1175
1057
  "node_modules/react/cjs/react.development.js": {
1176
1058
  "bytes": 87574,
1177
1059
  "imports": [
@@ -15186,7 +15068,7 @@
15186
15068
  "imports": []
15187
15069
  },
15188
15070
  "src/App.scss": {
15189
- "bytes": 280879,
15071
+ "bytes": 282631,
15190
15072
  "imports": [
15191
15073
  {
15192
15074
  "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
@@ -15595,91 +15477,379 @@
15595
15477
  }
15596
15478
  ],
15597
15479
  "format": "esm"
15598
- }
15599
- },
15600
- "outputs": {
15601
- "testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs": {
15480
+ },
15481
+ "src/lib/BaseSuite.test/mock.ts": {
15482
+ "bytes": 2532,
15602
15483
  "imports": [
15603
15484
  {
15604
- "path": "testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs",
15605
- "kind": "import-statement"
15606
- }
15607
- ],
15608
- "exports": [
15609
- "default"
15610
- ],
15611
- "entryPoint": "src/lib/BaseSuite.test/web.test.ts",
15612
- "inputs": {
15613
- "src/lib/BaseSuite.test/web.test.ts": {
15614
- "bytesInOutput": 148
15615
- },
15616
- "src/lib/BaseSuite.test/test.ts": {
15617
- "bytesInOutput": 6549
15485
+ "path": "src/lib/BaseGiven.ts",
15486
+ "kind": "import-statement",
15487
+ "original": "../BaseGiven"
15618
15488
  },
15619
- "src/lib/BaseSuite.test/mock.ts": {
15620
- "bytesInOutput": 1632
15621
- }
15622
- },
15623
- "bytes": 8712
15624
- },
15625
- "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs": {
15626
- "imports": [
15627
15489
  {
15628
- "path": "testeranto/bundles/web/core/chunk-AZZHJNSU.mjs",
15629
- "kind": "import-statement"
15490
+ "path": "src/lib/BaseSuite.ts",
15491
+ "kind": "import-statement",
15492
+ "original": "../BaseSuite"
15630
15493
  },
15631
15494
  {
15632
- "path": "testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs",
15633
- "kind": "import-statement"
15634
- }
15635
- ],
15636
- "exports": [
15637
- "default"
15638
- ],
15639
- "entryPoint": "src/components/pure/ProjectPageView.test/index.tsx",
15640
- "cssBundle": "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css",
15641
- "inputs": {
15642
- "node_modules/classnames/index.js": {
15643
- "bytesInOutput": 1801
15495
+ "path": "src/lib/BaseThen.ts",
15496
+ "kind": "import-statement",
15497
+ "original": "../BaseThen"
15644
15498
  },
15645
- "node_modules/invariant/browser.js": {
15646
- "bytesInOutput": 1033
15499
+ {
15500
+ "path": "src/lib/BaseWhen.ts",
15501
+ "kind": "import-statement",
15502
+ "original": "../BaseWhen"
15647
15503
  },
15648
- "node_modules/react/cjs/react-jsx-runtime.development.js": {
15649
- "bytesInOutput": 35465
15504
+ {
15505
+ "path": "../types",
15506
+ "kind": "import-statement",
15507
+ "external": true
15650
15508
  },
15651
- "node_modules/react/jsx-runtime.js": {
15652
- "bytesInOutput": 310
15509
+ {
15510
+ "path": "./test",
15511
+ "kind": "import-statement",
15512
+ "external": true
15653
15513
  },
15654
- "node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js": {
15655
- "bytesInOutput": 7600
15514
+ {
15515
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15516
+ "kind": "import-statement",
15517
+ "external": true
15656
15518
  },
15657
- "node_modules/prop-types/node_modules/react-is/index.js": {
15658
- "bytesInOutput": 319
15519
+ {
15520
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15521
+ "kind": "import-statement",
15522
+ "external": true
15659
15523
  },
15660
- "node_modules/object-assign/index.js": {
15661
- "bytesInOutput": 2185
15524
+ {
15525
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15526
+ "kind": "import-statement",
15527
+ "external": true
15528
+ }
15529
+ ],
15530
+ "format": "esm"
15531
+ },
15532
+ "src/lib/BaseSuite.test/test.ts": {
15533
+ "bytes": 10736,
15534
+ "imports": [
15535
+ {
15536
+ "path": "..",
15537
+ "kind": "import-statement",
15538
+ "external": true
15662
15539
  },
15663
- "node_modules/prop-types/lib/ReactPropTypesSecret.js": {
15664
- "bytesInOutput": 330
15540
+ {
15541
+ "path": "../../CoreTypes",
15542
+ "kind": "import-statement",
15543
+ "external": true
15665
15544
  },
15666
- "node_modules/prop-types/lib/has.js": {
15667
- "bytesInOutput": 230
15545
+ {
15546
+ "path": "src/lib/BaseSuite.ts",
15547
+ "kind": "import-statement",
15548
+ "original": "../BaseSuite"
15668
15549
  },
15669
- "node_modules/prop-types/checkPropTypes.js": {
15670
- "bytesInOutput": 2703
15550
+ {
15551
+ "path": "../types",
15552
+ "kind": "import-statement",
15553
+ "external": true
15671
15554
  },
15672
- "node_modules/prop-types/factoryWithTypeCheckers.js": {
15673
- "bytesInOutput": 19600
15555
+ {
15556
+ "path": "src/lib/BaseSuite.test/mock.ts",
15557
+ "kind": "import-statement",
15558
+ "original": "./mock"
15674
15559
  },
15675
- "node_modules/prop-types/index.js": {
15676
- "bytesInOutput": 441
15560
+ {
15561
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15562
+ "kind": "import-statement",
15563
+ "external": true
15677
15564
  },
15678
- "node_modules/warning/warning.js": {
15679
- "bytesInOutput": 1395
15565
+ {
15566
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15567
+ "kind": "import-statement",
15568
+ "external": true
15569
+ },
15570
+ {
15571
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15572
+ "kind": "import-statement",
15573
+ "external": true
15574
+ }
15575
+ ],
15576
+ "format": "esm"
15577
+ },
15578
+ "src/lib/BaseSuite.test/web.test.ts": {
15579
+ "bytes": 319,
15580
+ "imports": [
15581
+ {
15582
+ "path": "src/Web.ts",
15583
+ "kind": "import-statement",
15584
+ "original": "../../Web"
15585
+ },
15586
+ {
15587
+ "path": "src/lib/BaseSuite.ts",
15588
+ "kind": "import-statement",
15589
+ "original": "../BaseSuite"
15590
+ },
15591
+ {
15592
+ "path": "src/lib/BaseSuite.test/test.ts",
15593
+ "kind": "import-statement",
15594
+ "original": "./test"
15595
+ },
15596
+ {
15597
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15598
+ "kind": "import-statement",
15599
+ "external": true
15600
+ },
15601
+ {
15602
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15603
+ "kind": "import-statement",
15604
+ "external": true
15605
+ },
15606
+ {
15607
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15608
+ "kind": "import-statement",
15609
+ "external": true
15610
+ }
15611
+ ],
15612
+ "format": "esm"
15613
+ },
15614
+ "src/components/pure/ModalContent.test/implementation.tsx": {
15615
+ "bytes": 1237,
15616
+ "imports": [
15617
+ {
15618
+ "path": "node_modules/chai/index.js",
15619
+ "kind": "import-statement",
15620
+ "original": "chai"
15621
+ },
15622
+ {
15623
+ "path": "../../../CoreTypes",
15624
+ "kind": "import-statement",
15625
+ "external": true
15626
+ },
15627
+ {
15628
+ "path": "./types",
15629
+ "kind": "import-statement",
15630
+ "external": true
15631
+ },
15632
+ {
15633
+ "path": "../ModalContent",
15634
+ "kind": "import-statement",
15635
+ "external": true
15636
+ },
15637
+ {
15638
+ "path": "../../../lib/types",
15639
+ "kind": "import-statement",
15640
+ "external": true
15641
+ },
15642
+ {
15643
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15644
+ "kind": "import-statement",
15645
+ "external": true
15646
+ },
15647
+ {
15648
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15649
+ "kind": "import-statement",
15650
+ "external": true
15651
+ },
15652
+ {
15653
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15654
+ "kind": "import-statement",
15655
+ "external": true
15656
+ }
15657
+ ],
15658
+ "format": "esm"
15659
+ },
15660
+ "src/components/pure/ModalContent.test/specification.ts": {
15661
+ "bytes": 638,
15662
+ "imports": [
15663
+ {
15664
+ "path": "../../../CoreTypes",
15665
+ "kind": "import-statement",
15666
+ "external": true
15667
+ },
15668
+ {
15669
+ "path": "./types",
15670
+ "kind": "import-statement",
15671
+ "external": true
15672
+ },
15673
+ {
15674
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15675
+ "kind": "import-statement",
15676
+ "external": true
15677
+ },
15678
+ {
15679
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15680
+ "kind": "import-statement",
15681
+ "external": true
15682
+ },
15683
+ {
15684
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15685
+ "kind": "import-statement",
15686
+ "external": true
15687
+ }
15688
+ ],
15689
+ "format": "esm"
15690
+ },
15691
+ "src/components/pure/ThemeCard.tsx": {
15692
+ "bytes": 797,
15693
+ "imports": [
15694
+ {
15695
+ "path": "node_modules/react/index.js",
15696
+ "kind": "import-statement",
15697
+ "original": "react"
15698
+ },
15699
+ {
15700
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15701
+ "kind": "import-statement",
15702
+ "external": true
15703
+ },
15704
+ {
15705
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15706
+ "kind": "import-statement",
15707
+ "external": true
15708
+ },
15709
+ {
15710
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15711
+ "kind": "import-statement",
15712
+ "external": true
15713
+ }
15714
+ ],
15715
+ "format": "esm"
15716
+ },
15717
+ "src/components/pure/ModalContent.tsx": {
15718
+ "bytes": 5906,
15719
+ "imports": [
15720
+ {
15721
+ "path": "node_modules/react/index.js",
15722
+ "kind": "import-statement",
15723
+ "original": "react"
15724
+ },
15725
+ {
15726
+ "path": "node_modules/react-bootstrap/esm/index.js",
15727
+ "kind": "import-statement",
15728
+ "original": "react-bootstrap"
15729
+ },
15730
+ {
15731
+ "path": "src/components/pure/ThemeCard.tsx",
15732
+ "kind": "import-statement",
15733
+ "original": "./ThemeCard"
15734
+ },
15735
+ {
15736
+ "path": "src/App.scss",
15737
+ "kind": "import-statement",
15738
+ "original": "../../App.scss"
15739
+ },
15740
+ {
15741
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15742
+ "kind": "import-statement",
15743
+ "external": true
15744
+ },
15745
+ {
15746
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15747
+ "kind": "import-statement",
15748
+ "external": true
15749
+ },
15750
+ {
15751
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15752
+ "kind": "import-statement",
15753
+ "external": true
15754
+ }
15755
+ ],
15756
+ "format": "esm"
15757
+ },
15758
+ "src/components/pure/ModalContent.test/index.tsx": {
15759
+ "bytes": 2055,
15760
+ "imports": [
15761
+ {
15762
+ "path": "node_modules/testeranto-react/src/react-dom/component/web.ts",
15763
+ "kind": "import-statement",
15764
+ "original": "testeranto-react/src/react-dom/component/web"
15765
+ },
15766
+ {
15767
+ "path": "src/components/pure/ModalContent.test/implementation.tsx",
15768
+ "kind": "import-statement",
15769
+ "original": "./implementation"
15770
+ },
15771
+ {
15772
+ "path": "src/components/pure/ModalContent.test/specification.ts",
15773
+ "kind": "import-statement",
15774
+ "original": "./specification"
15775
+ },
15776
+ {
15777
+ "path": "src/components/pure/ModalContent.tsx",
15778
+ "kind": "import-statement",
15779
+ "original": "../ModalContent"
15780
+ },
15781
+ {
15782
+ "path": "node_modules/react/index.js",
15783
+ "kind": "import-statement",
15784
+ "original": "react"
15785
+ },
15786
+ {
15787
+ "path": "node_modules/react-dom/client.js",
15788
+ "kind": "import-statement",
15789
+ "original": "react-dom/client"
15680
15790
  },
15791
+ {
15792
+ "path": "./types",
15793
+ "kind": "import-statement",
15794
+ "external": true
15795
+ },
15796
+ {
15797
+ "path": "../../../CoreTypes",
15798
+ "kind": "import-statement",
15799
+ "external": true
15800
+ },
15801
+ {
15802
+ "path": "../../../lib/types",
15803
+ "kind": "import-statement",
15804
+ "external": true
15805
+ },
15806
+ {
15807
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15808
+ "kind": "import-statement",
15809
+ "external": true
15810
+ },
15811
+ {
15812
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15813
+ "kind": "import-statement",
15814
+ "external": true
15815
+ },
15816
+ {
15817
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15818
+ "kind": "import-statement",
15819
+ "external": true
15820
+ }
15821
+ ],
15822
+ "format": "esm"
15823
+ }
15824
+ },
15825
+ "outputs": {
15826
+ "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs": {
15827
+ "imports": [
15828
+ {
15829
+ "path": "testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs",
15830
+ "kind": "import-statement"
15831
+ },
15832
+ {
15833
+ "path": "testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs",
15834
+ "kind": "import-statement"
15835
+ },
15836
+ {
15837
+ "path": "testeranto/bundles/web/core/chunk-JMDLMADH.mjs",
15838
+ "kind": "import-statement"
15839
+ },
15840
+ {
15841
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
15842
+ "kind": "import-statement"
15843
+ }
15844
+ ],
15845
+ "exports": [
15846
+ "default"
15847
+ ],
15848
+ "entryPoint": "src/components/pure/ProjectPageView.test/index.tsx",
15849
+ "cssBundle": "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css",
15850
+ "inputs": {
15681
15851
  "src/components/pure/ProjectPageView.test/index.tsx": {
15682
- "bytesInOutput": 407
15852
+ "bytesInOutput": 404
15683
15853
  },
15684
15854
  "src/components/pure/ProjectPageView.test/implementation.tsx": {
15685
15855
  "bytesInOutput": 5647
@@ -15688,154 +15858,277 @@
15688
15858
  "bytesInOutput": 1187
15689
15859
  },
15690
15860
  "src/components/pure/ProjectPageView.tsx": {
15691
- "bytesInOutput": 5243
15861
+ "bytesInOutput": 5200
15692
15862
  },
15693
- "node_modules/react-bootstrap/esm/index.js": {
15694
- "bytesInOutput": 47
15863
+ "src/components/pure/TestTable.tsx": {
15864
+ "bytesInOutput": 2684
15695
15865
  },
15696
- "node_modules/uncontrollable/lib/esm/index.js": {
15697
- "bytesInOutput": 47
15866
+ "src/components/TestStatusBadge.tsx": {
15867
+ "bytesInOutput": 1066
15698
15868
  },
15699
- "node_modules/uncontrollable/lib/esm/hook.js": {
15700
- "bytesInOutput": 2100
15869
+ "src/components/pure/BuildLogViewer.tsx": {
15870
+ "bytesInOutput": 7730
15701
15871
  },
15702
- "node_modules/@babel/runtime/helpers/esm/extends.js": {
15703
- "bytesInOutput": 359
15872
+ "src/components/pure/NavBar.tsx": {
15873
+ "bytesInOutput": 2902
15874
+ }
15875
+ },
15876
+ "bytes": 27908
15877
+ },
15878
+ "testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs": {
15879
+ "imports": [
15880
+ {
15881
+ "path": "testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs",
15882
+ "kind": "import-statement"
15704
15883
  },
15705
- "node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js": {
15706
- "bytesInOutput": 287
15884
+ {
15885
+ "path": "testeranto/bundles/web/core/chunk-JMDLMADH.mjs",
15886
+ "kind": "import-statement"
15707
15887
  },
15708
- "node_modules/uncontrollable/lib/esm/utils.js": {
15709
- "bytesInOutput": 193
15888
+ {
15889
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
15890
+ "kind": "import-statement"
15891
+ }
15892
+ ],
15893
+ "exports": [
15894
+ "default"
15895
+ ],
15896
+ "entryPoint": "src/components/pure/FeaturesReporterView.test/index.tsx",
15897
+ "inputs": {
15898
+ "src/components/pure/FeaturesReporterView.test/index.tsx": {
15899
+ "bytesInOutput": 419
15710
15900
  },
15711
- "node_modules/uncontrollable/lib/esm/uncontrollable.js": {
15712
- "bytesInOutput": 145
15901
+ "src/components/pure/FeaturesReporterView.test/implementation.tsx": {
15902
+ "bytesInOutput": 2370
15713
15903
  },
15714
- "node_modules/@babel/runtime/helpers/esm/inheritsLoose.js": {
15715
- "bytesInOutput": 177
15904
+ "src/components/pure/FeaturesReporterView.test/specification.ts": {
15905
+ "bytesInOutput": 914
15716
15906
  },
15717
- "node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js": {
15718
- "bytesInOutput": 245
15907
+ "src/components/pure/FeaturesReporterView.tsx": {
15908
+ "bytesInOutput": 1093
15909
+ }
15910
+ },
15911
+ "bytes": 5418
15912
+ },
15913
+ "testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs": {
15914
+ "imports": [
15915
+ {
15916
+ "path": "testeranto/bundles/web/core/chunk-JMDLMADH.mjs",
15917
+ "kind": "import-statement"
15719
15918
  },
15720
- "node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js": {
15721
- "bytesInOutput": 1085
15919
+ {
15920
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
15921
+ "kind": "import-statement"
15922
+ }
15923
+ ],
15924
+ "exports": [
15925
+ "Link",
15926
+ "MemoryRouter",
15927
+ "useLocation"
15928
+ ],
15929
+ "inputs": {
15930
+ "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs": {
15931
+ "bytesInOutput": 74614
15722
15932
  },
15723
- "node_modules/react-bootstrap/esm/ThemeProvider.js": {
15724
- "bytesInOutput": 976
15933
+ "node_modules/react-router/dist/development/index.mjs": {
15934
+ "bytesInOutput": 61
15935
+ }
15936
+ },
15937
+ "bytes": 75615
15938
+ },
15939
+ "testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs": {
15940
+ "imports": [
15941
+ {
15942
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
15943
+ "kind": "import-statement"
15944
+ }
15945
+ ],
15946
+ "exports": [
15947
+ "default"
15948
+ ],
15949
+ "entryPoint": "src/lib/BaseSuite.test/web.test.ts",
15950
+ "inputs": {
15951
+ "src/lib/BaseSuite.test/web.test.ts": {
15952
+ "bytesInOutput": 148
15725
15953
  },
15726
- "node_modules/react-bootstrap/esm/Collapse.js": {
15727
- "bytesInOutput": 3236
15954
+ "src/lib/BaseSuite.test/test.ts": {
15955
+ "bytesInOutput": 5540
15728
15956
  },
15729
- "node_modules/dom-helpers/esm/css.js": {
15730
- "bytesInOutput": 770
15957
+ "src/lib/BaseSuite.test/mock.ts": {
15958
+ "bytesInOutput": 1632
15959
+ }
15960
+ },
15961
+ "bytes": 7703
15962
+ },
15963
+ "testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs": {
15964
+ "imports": [
15965
+ {
15966
+ "path": "testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs",
15967
+ "kind": "import-statement"
15731
15968
  },
15732
- "node_modules/dom-helpers/esm/getComputedStyle.js": {
15733
- "bytesInOutput": 164
15969
+ {
15970
+ "path": "testeranto/bundles/web/core/chunk-JMDLMADH.mjs",
15971
+ "kind": "import-statement"
15734
15972
  },
15735
- "node_modules/dom-helpers/esm/ownerWindow.js": {
15736
- "bytesInOutput": 154
15973
+ {
15974
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
15975
+ "kind": "import-statement"
15976
+ }
15977
+ ],
15978
+ "exports": [
15979
+ "default"
15980
+ ],
15981
+ "entryPoint": "src/components/pure/ModalContent.test/index.tsx",
15982
+ "cssBundle": "testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css",
15983
+ "inputs": {
15984
+ "src/components/pure/ModalContent.test/index.tsx": {
15985
+ "bytesInOutput": 1431
15737
15986
  },
15738
- "node_modules/dom-helpers/esm/ownerDocument.js": {
15739
- "bytesInOutput": 129
15987
+ "src/components/pure/ModalContent.test/implementation.tsx": {
15988
+ "bytesInOutput": 763
15740
15989
  },
15741
- "node_modules/dom-helpers/esm/hyphenateStyle.js": {
15742
- "bytesInOutput": 166
15990
+ "src/components/pure/ModalContent.test/specification.ts": {
15991
+ "bytesInOutput": 540
15743
15992
  },
15744
- "node_modules/dom-helpers/esm/hyphenate.js": {
15745
- "bytesInOutput": 157
15993
+ "src/components/pure/ModalContent.tsx": {
15994
+ "bytesInOutput": 5502
15746
15995
  },
15747
- "node_modules/dom-helpers/esm/isTransform.js": {
15748
- "bytesInOutput": 239
15996
+ "src/components/pure/ThemeCard.tsx": {
15997
+ "bytesInOutput": 821
15998
+ }
15999
+ },
16000
+ "bytes": 9729
16001
+ },
16002
+ "testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs": {
16003
+ "imports": [
16004
+ {
16005
+ "path": "testeranto/bundles/web/core/chunk-JMDLMADH.mjs",
16006
+ "kind": "import-statement"
15749
16007
  },
15750
- "node_modules/react-transition-group/esm/Transition.js": {
15751
- "bytesInOutput": 15011
16008
+ {
16009
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
16010
+ "kind": "import-statement"
16011
+ }
16012
+ ],
16013
+ "exports": [
16014
+ "Alert_default",
16015
+ "Badge_default",
16016
+ "Card_default",
16017
+ "Col_default",
16018
+ "Container_default",
16019
+ "ListGroup_default",
16020
+ "Modal_default",
16021
+ "Nav_default",
16022
+ "Navbar_default",
16023
+ "Row_default",
16024
+ "Tab_default",
16025
+ "Table_default"
16026
+ ],
16027
+ "inputs": {
16028
+ "node_modules/classnames/index.js": {
16029
+ "bytesInOutput": 1801
15752
16030
  },
15753
- "node_modules/react-transition-group/esm/config.js": {
15754
- "bytesInOutput": 91
16031
+ "node_modules/invariant/browser.js": {
16032
+ "bytesInOutput": 1033
15755
16033
  },
15756
- "node_modules/react-transition-group/esm/utils/PropTypes.js": {
15757
- "bytesInOutput": 973
16034
+ "node_modules/react/cjs/react-jsx-runtime.development.js": {
16035
+ "bytesInOutput": 35465
15758
16036
  },
15759
- "node_modules/react-transition-group/esm/TransitionGroupContext.js": {
15760
- "bytesInOutput": 173
16037
+ "node_modules/react/jsx-runtime.js": {
16038
+ "bytesInOutput": 310
15761
16039
  },
15762
- "node_modules/react-transition-group/esm/utils/reflow.js": {
15763
- "bytesInOutput": 123
16040
+ "node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js": {
16041
+ "bytesInOutput": 7600
15764
16042
  },
15765
- "node_modules/@restart/ui/esm/utils.js": {
15766
- "bytesInOutput": 552
16043
+ "node_modules/prop-types/node_modules/react-is/index.js": {
16044
+ "bytesInOutput": 319
15767
16045
  },
15768
- "node_modules/react-bootstrap/esm/transitionEndListener.js": {
15769
- "bytesInOutput": 548
16046
+ "node_modules/object-assign/index.js": {
16047
+ "bytesInOutput": 2185
15770
16048
  },
15771
- "node_modules/dom-helpers/esm/transitionEnd.js": {
15772
- "bytesInOutput": 1003
16049
+ "node_modules/prop-types/lib/ReactPropTypesSecret.js": {
16050
+ "bytesInOutput": 330
16051
+ },
16052
+ "node_modules/prop-types/lib/has.js": {
16053
+ "bytesInOutput": 230
16054
+ },
16055
+ "node_modules/prop-types/checkPropTypes.js": {
16056
+ "bytesInOutput": 2703
16057
+ },
16058
+ "node_modules/prop-types/factoryWithTypeCheckers.js": {
16059
+ "bytesInOutput": 19600
16060
+ },
16061
+ "node_modules/prop-types/index.js": {
16062
+ "bytesInOutput": 441
15773
16063
  },
15774
- "node_modules/dom-helpers/esm/listen.js": {
15775
- "bytesInOutput": 289
16064
+ "node_modules/warning/warning.js": {
16065
+ "bytesInOutput": 1395
15776
16066
  },
15777
- "node_modules/dom-helpers/esm/addEventListener.js": {
15778
- "bytesInOutput": 1123
16067
+ "node_modules/react-bootstrap/esm/Alert.js": {
16068
+ "bytesInOutput": 1719
15779
16069
  },
15780
- "node_modules/dom-helpers/esm/canUseDOM.js": {
15781
- "bytesInOutput": 158
16070
+ "node_modules/uncontrollable/lib/esm/index.js": {
16071
+ "bytesInOutput": 47
15782
16072
  },
15783
- "node_modules/dom-helpers/esm/removeEventListener.js": {
15784
- "bytesInOutput": 406
16073
+ "node_modules/uncontrollable/lib/esm/hook.js": {
16074
+ "bytesInOutput": 2100
15785
16075
  },
15786
- "node_modules/dom-helpers/esm/triggerEvent.js": {
15787
- "bytesInOutput": 376
16076
+ "node_modules/@babel/runtime/helpers/esm/extends.js": {
16077
+ "bytesInOutput": 359
15788
16078
  },
15789
- "node_modules/react-bootstrap/esm/createChainedFunction.js": {
15790
- "bytesInOutput": 511
16079
+ "node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js": {
16080
+ "bytesInOutput": 287
15791
16081
  },
15792
- "node_modules/react-bootstrap/esm/triggerBrowserReflow.js": {
15793
- "bytesInOutput": 108
16082
+ "node_modules/uncontrollable/lib/esm/utils.js": {
16083
+ "bytesInOutput": 193
15794
16084
  },
15795
- "node_modules/react-bootstrap/esm/TransitionWrapper.js": {
15796
- "bytesInOutput": 2094
16085
+ "node_modules/uncontrollable/lib/esm/uncontrollable.js": {
16086
+ "bytesInOutput": 145
15797
16087
  },
15798
- "node_modules/@restart/hooks/esm/useMergedRefs.js": {
15799
- "bytesInOutput": 529
16088
+ "node_modules/@babel/runtime/helpers/esm/inheritsLoose.js": {
16089
+ "bytesInOutput": 177
15800
16090
  },
15801
- "node_modules/react-bootstrap/esm/safeFindDOMNode.js": {
15802
- "bytesInOutput": 353
16091
+ "node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js": {
16092
+ "bytesInOutput": 245
15803
16093
  },
15804
- "node_modules/react-bootstrap/esm/Alert.js": {
15805
- "bytesInOutput": 1719
16094
+ "node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js": {
16095
+ "bytesInOutput": 1085
15806
16096
  },
15807
16097
  "node_modules/@restart/hooks/esm/useEventCallback.js": {
15808
- "bytesInOutput": 293
16098
+ "bytesInOutput": 291
15809
16099
  },
15810
16100
  "node_modules/@restart/hooks/esm/useCommittedRef.js": {
15811
16101
  "bytesInOutput": 317
15812
16102
  },
16103
+ "node_modules/react-bootstrap/esm/ThemeProvider.js": {
16104
+ "bytesInOutput": 1093
16105
+ },
15813
16106
  "node_modules/react-bootstrap/esm/AlertHeading.js": {
15814
16107
  "bytesInOutput": 761
15815
16108
  },
15816
16109
  "node_modules/react-bootstrap/esm/divWithClassName.js": {
15817
- "bytesInOutput": 498
16110
+ "bytesInOutput": 496
15818
16111
  },
15819
16112
  "node_modules/react-bootstrap/esm/AlertLink.js": {
15820
- "bytesInOutput": 649
16113
+ "bytesInOutput": 647
15821
16114
  },
15822
16115
  "node_modules/@restart/ui/esm/Anchor.js": {
15823
- "bytesInOutput": 1271
16116
+ "bytesInOutput": 1269
15824
16117
  },
15825
16118
  "node_modules/@restart/ui/node_modules/@restart/hooks/esm/index.js": {
15826
16119
  "bytesInOutput": 47
15827
16120
  },
15828
16121
  "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useCallbackRef.js": {
15829
- "bytesInOutput": 94
16122
+ "bytesInOutput": 93
15830
16123
  },
15831
16124
  "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useCommittedRef.js": {
15832
- "bytesInOutput": 323
16125
+ "bytesInOutput": 320
15833
16126
  },
15834
16127
  "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventCallback.js": {
15835
- "bytesInOutput": 295
16128
+ "bytesInOutput": 293
15836
16129
  },
15837
16130
  "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useEventListener.js": {
15838
- "bytesInOutput": 94
16131
+ "bytesInOutput": 93
15839
16132
  },
15840
16133
  "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useGlobalListener.js": {
15841
16134
  "bytesInOutput": 94
@@ -15868,103 +16161,205 @@
15868
16161
  "bytesInOutput": 402
15869
16162
  },
15870
16163
  "node_modules/@restart/ui/esm/Button.js": {
15871
- "bytesInOutput": 2343
16164
+ "bytesInOutput": 2341
15872
16165
  },
15873
16166
  "node_modules/react-bootstrap/esm/Fade.js": {
15874
16167
  "bytesInOutput": 1293
15875
16168
  },
15876
- "node_modules/react-bootstrap/esm/CloseButton.js": {
15877
- "bytesInOutput": 1188
16169
+ "node_modules/react-transition-group/esm/Transition.js": {
16170
+ "bytesInOutput": 15016
15878
16171
  },
15879
- "node_modules/react-bootstrap/esm/Badge.js": {
15880
- "bytesInOutput": 728
16172
+ "node_modules/react-transition-group/esm/config.js": {
16173
+ "bytesInOutput": 91
15881
16174
  },
15882
- "node_modules/react-bootstrap/esm/Card.js": {
15883
- "bytesInOutput": 1299
16175
+ "node_modules/react-transition-group/esm/utils/PropTypes.js": {
16176
+ "bytesInOutput": 973
15884
16177
  },
15885
- "node_modules/react-bootstrap/esm/CardBody.js": {
15886
- "bytesInOutput": 636
16178
+ "node_modules/react-transition-group/esm/TransitionGroupContext.js": {
16179
+ "bytesInOutput": 175
15887
16180
  },
15888
- "node_modules/react-bootstrap/esm/CardFooter.js": {
15889
- "bytesInOutput": 650
16181
+ "node_modules/react-transition-group/esm/utils/reflow.js": {
16182
+ "bytesInOutput": 123
15890
16183
  },
15891
- "node_modules/react-bootstrap/esm/CardHeader.js": {
15892
- "bytesInOutput": 1101
16184
+ "node_modules/@restart/ui/esm/utils.js": {
16185
+ "bytesInOutput": 554
15893
16186
  },
15894
- "node_modules/react-bootstrap/esm/CardHeaderContext.js": {
15895
- "bytesInOutput": 244
16187
+ "node_modules/react-bootstrap/esm/transitionEndListener.js": {
16188
+ "bytesInOutput": 548
15896
16189
  },
15897
- "node_modules/react-bootstrap/esm/CardImg.js": {
15898
- "bytesInOutput": 868
16190
+ "node_modules/dom-helpers/esm/css.js": {
16191
+ "bytesInOutput": 770
15899
16192
  },
15900
- "node_modules/react-bootstrap/esm/CardImgOverlay.js": {
15901
- "bytesInOutput": 675
16193
+ "node_modules/dom-helpers/esm/getComputedStyle.js": {
16194
+ "bytesInOutput": 164
15902
16195
  },
15903
- "node_modules/react-bootstrap/esm/CardLink.js": {
15904
- "bytesInOutput": 636
16196
+ "node_modules/dom-helpers/esm/ownerWindow.js": {
16197
+ "bytesInOutput": 154
15905
16198
  },
15906
- "node_modules/react-bootstrap/esm/CardSubtitle.js": {
15907
- "bytesInOutput": 722
16199
+ "node_modules/dom-helpers/esm/ownerDocument.js": {
16200
+ "bytesInOutput": 129
15908
16201
  },
15909
- "node_modules/react-bootstrap/esm/CardText.js": {
15910
- "bytesInOutput": 636
16202
+ "node_modules/dom-helpers/esm/hyphenateStyle.js": {
16203
+ "bytesInOutput": 166
15911
16204
  },
15912
- "node_modules/react-bootstrap/esm/CardTitle.js": {
15913
- "bytesInOutput": 704
16205
+ "node_modules/dom-helpers/esm/hyphenate.js": {
16206
+ "bytesInOutput": 157
16207
+ },
16208
+ "node_modules/dom-helpers/esm/isTransform.js": {
16209
+ "bytesInOutput": 239
16210
+ },
16211
+ "node_modules/dom-helpers/esm/transitionEnd.js": {
16212
+ "bytesInOutput": 1003
16213
+ },
16214
+ "node_modules/dom-helpers/esm/listen.js": {
16215
+ "bytesInOutput": 289
16216
+ },
16217
+ "node_modules/dom-helpers/esm/addEventListener.js": {
16218
+ "bytesInOutput": 1123
16219
+ },
16220
+ "node_modules/dom-helpers/esm/canUseDOM.js": {
16221
+ "bytesInOutput": 158
16222
+ },
16223
+ "node_modules/dom-helpers/esm/removeEventListener.js": {
16224
+ "bytesInOutput": 406
16225
+ },
16226
+ "node_modules/dom-helpers/esm/triggerEvent.js": {
16227
+ "bytesInOutput": 376
16228
+ },
16229
+ "node_modules/react-bootstrap/esm/triggerBrowserReflow.js": {
16230
+ "bytesInOutput": 108
16231
+ },
16232
+ "node_modules/react-bootstrap/esm/TransitionWrapper.js": {
16233
+ "bytesInOutput": 2105
16234
+ },
16235
+ "node_modules/@restart/hooks/esm/useMergedRefs.js": {
16236
+ "bytesInOutput": 531
16237
+ },
16238
+ "node_modules/react-bootstrap/esm/safeFindDOMNode.js": {
16239
+ "bytesInOutput": 353
16240
+ },
16241
+ "node_modules/react-bootstrap/esm/CloseButton.js": {
16242
+ "bytesInOutput": 1186
16243
+ },
16244
+ "node_modules/react-bootstrap/esm/Badge.js": {
16245
+ "bytesInOutput": 728
15914
16246
  },
15915
16247
  "node_modules/react-bootstrap/esm/Col.js": {
15916
- "bytesInOutput": 1891
16248
+ "bytesInOutput": 1888
15917
16249
  },
15918
16250
  "node_modules/react-bootstrap/esm/Container.js": {
15919
- "bytesInOutput": 920
16251
+ "bytesInOutput": 918
15920
16252
  },
15921
- "node_modules/dom-helpers/esm/querySelectorAll.js": {
15922
- "bytesInOutput": 216
16253
+ "node_modules/react-bootstrap/esm/Modal.js": {
16254
+ "bytesInOutput": 7020
15923
16255
  },
15924
- "node_modules/@restart/ui/node_modules/uncontrollable/lib/esm/index.js": {
15925
- "bytesInOutput": 775
16256
+ "node_modules/dom-helpers/esm/scrollbarSize.js": {
16257
+ "bytesInOutput": 590
15926
16258
  },
15927
- "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js": {
16259
+ "node_modules/@restart/hooks/esm/useCallbackRef.js": {
16260
+ "bytesInOutput": 170
16261
+ },
16262
+ "node_modules/@restart/hooks/esm/useWillUnmount.js": {
16263
+ "bytesInOutput": 235
16264
+ },
16265
+ "node_modules/@restart/hooks/esm/useUpdatedRef.js": {
15928
16266
  "bytesInOutput": 229
15929
16267
  },
15930
- "node_modules/dom-helpers/esm/contains.js": {
15931
- "bytesInOutput": 267
16268
+ "node_modules/@restart/ui/esm/Modal.js": {
16269
+ "bytesInOutput": 7735
15932
16270
  },
15933
- "node_modules/@restart/ui/esm/ssr.js": {
15934
- "bytesInOutput": 47
16271
+ "node_modules/dom-helpers/esm/activeElement.js": {
16272
+ "bytesInOutput": 294
15935
16273
  },
15936
- "node_modules/@react-aria/ssr/dist/import.mjs": {
15937
- "bytesInOutput": 47
16274
+ "node_modules/dom-helpers/esm/contains.js": {
16275
+ "bytesInOutput": 267
15938
16276
  },
15939
- "node_modules/@react-aria/ssr/dist/SSRProvider.mjs": {
15940
- "bytesInOutput": 3970
16277
+ "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useWillUnmount.js": {
16278
+ "bytesInOutput": 237
15941
16279
  },
15942
- "node_modules/@restart/ui/esm/SelectableContext.js": {
15943
- "bytesInOutput": 334
16280
+ "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js": {
16281
+ "bytesInOutput": 230
15944
16282
  },
15945
- "node_modules/@restart/ui/esm/NavContext.js": {
15946
- "bytesInOutput": 225
16283
+ "node_modules/@restart/ui/esm/ModalManager.js": {
16284
+ "bytesInOutput": 2413
15947
16285
  },
15948
16286
  "node_modules/@restart/ui/esm/DataKey.js": {
15949
16287
  "bytesInOutput": 264
15950
16288
  },
16289
+ "node_modules/@restart/ui/esm/getScrollbarWidth.js": {
16290
+ "bytesInOutput": 239
16291
+ },
16292
+ "node_modules/@restart/ui/esm/useWaitForDOMRef.js": {
16293
+ "bytesInOutput": 1130
16294
+ },
15951
16295
  "node_modules/@restart/ui/esm/useWindow.js": {
15952
16296
  "bytesInOutput": 310
15953
16297
  },
15954
- "node_modules/@restart/hooks/esm/useIsomorphicEffect.js": {
15955
- "bytesInOutput": 407
16298
+ "node_modules/@restart/ui/esm/ImperativeTransition.js": {
16299
+ "bytesInOutput": 2354
15956
16300
  },
15957
- "node_modules/react-bootstrap/esm/NavbarContext.js": {
15958
- "bytesInOutput": 239
16301
+ "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useMergedRefs.js": {
16302
+ "bytesInOutput": 539
15959
16303
  },
15960
- "node_modules/react-bootstrap/esm/ListGroup.js": {
15961
- "bytesInOutput": 1500
16304
+ "node_modules/@restart/ui/esm/NoopTransition.js": {
16305
+ "bytesInOutput": 913
16306
+ },
16307
+ "node_modules/@restart/ui/esm/RTGTransition.js": {
16308
+ "bytesInOutput": 809
16309
+ },
16310
+ "node_modules/@restart/ui/esm/useRTGTransitionProps.js": {
16311
+ "bytesInOutput": 2333
16312
+ },
16313
+ "node_modules/react-bootstrap/esm/BootstrapModalManager.js": {
16314
+ "bytesInOutput": 2250
16315
+ },
16316
+ "node_modules/dom-helpers/esm/addClass.js": {
16317
+ "bytesInOutput": 424
16318
+ },
16319
+ "node_modules/dom-helpers/esm/hasClass.js": {
16320
+ "bytesInOutput": 290
16321
+ },
16322
+ "node_modules/dom-helpers/esm/querySelectorAll.js": {
16323
+ "bytesInOutput": 216
16324
+ },
16325
+ "node_modules/dom-helpers/esm/removeClass.js": {
16326
+ "bytesInOutput": 614
16327
+ },
16328
+ "node_modules/react-bootstrap/esm/ModalBody.js": {
16329
+ "bytesInOutput": 644
16330
+ },
16331
+ "node_modules/react-bootstrap/esm/ModalContext.js": {
16332
+ "bytesInOutput": 222
16333
+ },
16334
+ "node_modules/react-bootstrap/esm/ModalDialog.js": {
16335
+ "bytesInOutput": 1210
16336
+ },
16337
+ "node_modules/react-bootstrap/esm/ModalFooter.js": {
16338
+ "bytesInOutput": 656
16339
+ },
16340
+ "node_modules/react-bootstrap/esm/ModalHeader.js": {
16341
+ "bytesInOutput": 729
16342
+ },
16343
+ "node_modules/react-bootstrap/esm/AbstractModalHeader.js": {
16344
+ "bytesInOutput": 1055
16345
+ },
16346
+ "node_modules/react-bootstrap/esm/ModalTitle.js": {
16347
+ "bytesInOutput": 712
16348
+ },
16349
+ "node_modules/react-bootstrap/esm/Nav.js": {
16350
+ "bytesInOutput": 1750
15962
16351
  },
15963
16352
  "node_modules/@restart/ui/esm/Nav.js": {
15964
16353
  "bytesInOutput": 4089
15965
16354
  },
15966
- "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useMergedRefs.js": {
15967
- "bytesInOutput": 539
16355
+ "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useForceUpdate.js": {
16356
+ "bytesInOutput": 229
16357
+ },
16358
+ "node_modules/@restart/ui/esm/NavContext.js": {
16359
+ "bytesInOutput": 225
16360
+ },
16361
+ "node_modules/@restart/ui/esm/SelectableContext.js": {
16362
+ "bytesInOutput": 334
15968
16363
  },
15969
16364
  "node_modules/@restart/ui/esm/TabContext.js": {
15970
16365
  "bytesInOutput": 186
@@ -15972,68 +16367,80 @@
15972
16367
  "node_modules/@restart/ui/esm/NavItem.js": {
15973
16368
  "bytesInOutput": 2538
15974
16369
  },
15975
- "node_modules/react-bootstrap/esm/ListGroupItem.js": {
15976
- "bytesInOutput": 1555
16370
+ "node_modules/react-bootstrap/esm/NavbarContext.js": {
16371
+ "bytesInOutput": 236
15977
16372
  },
15978
- "node_modules/@restart/ui/esm/Modal.js": {
15979
- "bytesInOutput": 7734
16373
+ "node_modules/react-bootstrap/esm/CardHeaderContext.js": {
16374
+ "bytesInOutput": 247
15980
16375
  },
15981
- "node_modules/dom-helpers/esm/activeElement.js": {
15982
- "bytesInOutput": 294
16376
+ "node_modules/react-bootstrap/esm/NavItem.js": {
16377
+ "bytesInOutput": 636
15983
16378
  },
15984
- "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useWillUnmount.js": {
15985
- "bytesInOutput": 235
16379
+ "node_modules/react-bootstrap/esm/NavLink.js": {
16380
+ "bytesInOutput": 903
15986
16381
  },
15987
- "node_modules/@restart/ui/node_modules/@restart/hooks/esm/useUpdatedRef.js": {
15988
- "bytesInOutput": 229
16382
+ "node_modules/react-bootstrap/esm/Row.js": {
16383
+ "bytesInOutput": 1392
15989
16384
  },
15990
- "node_modules/@restart/ui/esm/ModalManager.js": {
15991
- "bytesInOutput": 2413
16385
+ "node_modules/react-bootstrap/esm/index.js": {
16386
+ "bytesInOutput": 47
16387
+ },
16388
+ "node_modules/react-bootstrap/esm/Collapse.js": {
16389
+ "bytesInOutput": 3250
16390
+ },
16391
+ "node_modules/react-bootstrap/esm/createChainedFunction.js": {
16392
+ "bytesInOutput": 511
16393
+ },
16394
+ "node_modules/react-bootstrap/esm/Card.js": {
16395
+ "bytesInOutput": 1299
16396
+ },
16397
+ "node_modules/react-bootstrap/esm/CardBody.js": {
16398
+ "bytesInOutput": 638
15992
16399
  },
15993
- "node_modules/@restart/ui/esm/getScrollbarWidth.js": {
15994
- "bytesInOutput": 239
16400
+ "node_modules/react-bootstrap/esm/CardFooter.js": {
16401
+ "bytesInOutput": 650
15995
16402
  },
15996
- "node_modules/@restart/ui/esm/useWaitForDOMRef.js": {
15997
- "bytesInOutput": 1130
16403
+ "node_modules/react-bootstrap/esm/CardHeader.js": {
16404
+ "bytesInOutput": 1101
15998
16405
  },
15999
- "node_modules/@restart/ui/esm/ImperativeTransition.js": {
16000
- "bytesInOutput": 2354
16406
+ "node_modules/react-bootstrap/esm/CardImg.js": {
16407
+ "bytesInOutput": 868
16001
16408
  },
16002
- "node_modules/@restart/ui/esm/NoopTransition.js": {
16003
- "bytesInOutput": 913
16409
+ "node_modules/react-bootstrap/esm/CardImgOverlay.js": {
16410
+ "bytesInOutput": 675
16004
16411
  },
16005
- "node_modules/@restart/ui/esm/RTGTransition.js": {
16006
- "bytesInOutput": 809
16412
+ "node_modules/react-bootstrap/esm/CardLink.js": {
16413
+ "bytesInOutput": 636
16007
16414
  },
16008
- "node_modules/@restart/ui/esm/useRTGTransitionProps.js": {
16009
- "bytesInOutput": 2333
16415
+ "node_modules/react-bootstrap/esm/CardSubtitle.js": {
16416
+ "bytesInOutput": 722
16010
16417
  },
16011
- "node_modules/react-bootstrap/esm/BootstrapModalManager.js": {
16012
- "bytesInOutput": 2250
16418
+ "node_modules/react-bootstrap/esm/CardText.js": {
16419
+ "bytesInOutput": 636
16013
16420
  },
16014
- "node_modules/dom-helpers/esm/addClass.js": {
16015
- "bytesInOutput": 424
16421
+ "node_modules/react-bootstrap/esm/CardTitle.js": {
16422
+ "bytesInOutput": 704
16016
16423
  },
16017
- "node_modules/dom-helpers/esm/hasClass.js": {
16018
- "bytesInOutput": 290
16424
+ "node_modules/@restart/ui/node_modules/uncontrollable/lib/esm/index.js": {
16425
+ "bytesInOutput": 775
16019
16426
  },
16020
- "node_modules/dom-helpers/esm/removeClass.js": {
16021
- "bytesInOutput": 614
16427
+ "node_modules/@restart/ui/esm/ssr.js": {
16428
+ "bytesInOutput": 47
16022
16429
  },
16023
- "node_modules/react-bootstrap/esm/ModalContext.js": {
16024
- "bytesInOutput": 222
16430
+ "node_modules/@react-aria/ssr/dist/import.mjs": {
16431
+ "bytesInOutput": 47
16025
16432
  },
16026
- "node_modules/react-bootstrap/esm/AbstractModalHeader.js": {
16027
- "bytesInOutput": 1055
16433
+ "node_modules/@react-aria/ssr/dist/SSRProvider.mjs": {
16434
+ "bytesInOutput": 3970
16028
16435
  },
16029
- "node_modules/react-bootstrap/esm/Nav.js": {
16030
- "bytesInOutput": 1750
16436
+ "node_modules/@restart/hooks/esm/useIsomorphicEffect.js": {
16437
+ "bytesInOutput": 407
16031
16438
  },
16032
- "node_modules/react-bootstrap/esm/NavItem.js": {
16033
- "bytesInOutput": 636
16439
+ "node_modules/react-bootstrap/esm/ListGroup.js": {
16440
+ "bytesInOutput": 1500
16034
16441
  },
16035
- "node_modules/react-bootstrap/esm/NavLink.js": {
16036
- "bytesInOutput": 903
16442
+ "node_modules/react-bootstrap/esm/ListGroupItem.js": {
16443
+ "bytesInOutput": 1555
16037
16444
  },
16038
16445
  "node_modules/react-bootstrap/esm/Navbar.js": {
16039
16446
  "bytesInOutput": 2423
@@ -16051,7 +16458,7 @@
16051
16458
  "bytesInOutput": 842
16052
16459
  },
16053
16460
  "node_modules/react-bootstrap/esm/Offcanvas.js": {
16054
- "bytesInOutput": 4206
16461
+ "bytesInOutput": 4210
16055
16462
  },
16056
16463
  "node_modules/@restart/hooks/esm/useBreakpoint.js": {
16057
16464
  "bytesInOutput": 1900
@@ -16074,9 +16481,6 @@
16074
16481
  "node_modules/react-bootstrap/esm/NavbarText.js": {
16075
16482
  "bytesInOutput": 651
16076
16483
  },
16077
- "node_modules/react-bootstrap/esm/Row.js": {
16078
- "bytesInOutput": 1392
16079
- },
16080
16484
  "node_modules/react-bootstrap/esm/Tab.js": {
16081
16485
  "bytesInOutput": 1095
16082
16486
  },
@@ -16099,76 +16503,31 @@
16099
16503
  "bytesInOutput": 1664
16100
16504
  },
16101
16505
  "node_modules/react-bootstrap/esm/Table.js": {
16102
- "bytesInOutput": 1388
16103
- },
16104
- "src/components/pure/TestTable.tsx": {
16105
- "bytesInOutput": 2707
16106
- },
16107
- "src/components/TestStatusBadge.tsx": {
16108
- "bytesInOutput": 1074
16109
- },
16110
- "src/components/pure/BuildLogViewer.tsx": {
16111
- "bytesInOutput": 7802
16112
- },
16113
- "src/components/pure/NavBar.tsx": {
16114
- "bytesInOutput": 2919
16506
+ "bytesInOutput": 1397
16115
16507
  },
16116
16508
  "src/App.scss": {
16117
16509
  "bytesInOutput": 0
16118
16510
  }
16119
16511
  },
16120
- "bytes": 246244
16121
- },
16122
- "testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs": {
16123
- "imports": [
16124
- {
16125
- "path": "testeranto/bundles/web/core/chunk-AZZHJNSU.mjs",
16126
- "kind": "import-statement"
16127
- },
16128
- {
16129
- "path": "testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs",
16130
- "kind": "import-statement"
16131
- }
16132
- ],
16133
- "exports": [
16134
- "default"
16135
- ],
16136
- "entryPoint": "src/components/pure/FeaturesReporterView.test/index.tsx",
16137
- "inputs": {
16138
- "src/components/pure/FeaturesReporterView.test/index.tsx": {
16139
- "bytesInOutput": 419
16140
- },
16141
- "src/components/pure/FeaturesReporterView.test/implementation.tsx": {
16142
- "bytesInOutput": 2370
16143
- },
16144
- "src/components/pure/FeaturesReporterView.test/specification.ts": {
16145
- "bytesInOutput": 914
16146
- },
16147
- "src/components/pure/FeaturesReporterView.tsx": {
16148
- "bytesInOutput": 1093
16149
- }
16150
- },
16151
- "bytes": 5369
16512
+ "bytes": 231968
16152
16513
  },
16153
- "testeranto/bundles/web/core/chunk-AZZHJNSU.mjs": {
16514
+ "testeranto/bundles/web/core/chunk-JMDLMADH.mjs": {
16154
16515
  "imports": [
16155
16516
  {
16156
- "path": "testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs",
16517
+ "path": "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs",
16157
16518
  "kind": "import-statement"
16158
16519
  }
16159
16520
  ],
16160
16521
  "exports": [
16161
- "Link",
16162
- "MemoryRouter",
16163
16522
  "assert",
16523
+ "require_client",
16164
16524
  "require_react",
16165
16525
  "require_react_dom",
16166
- "useLocation",
16167
16526
  "web_default"
16168
16527
  ],
16169
16528
  "inputs": {
16170
16529
  "node_modules/react/cjs/react.development.js": {
16171
- "bytesInOutput": 77293
16530
+ "bytesInOutput": 77256
16172
16531
  },
16173
16532
  "node_modules/react/index.js": {
16174
16533
  "bytesInOutput": 286
@@ -16180,7 +16539,7 @@
16180
16539
  "bytesInOutput": 298
16181
16540
  },
16182
16541
  "node_modules/react-dom/cjs/react-dom.development.js": {
16183
- "bytesInOutput": 906948
16542
+ "bytesInOutput": 906918
16184
16543
  },
16185
16544
  "node_modules/react-dom/index.js": {
16186
16545
  "bytesInOutput": 316
@@ -16194,19 +16553,13 @@
16194
16553
  "node_modules/testeranto-react/src/react-dom/component/dynamic.ts": {
16195
16554
  "bytesInOutput": 2409
16196
16555
  },
16197
- "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs": {
16198
- "bytesInOutput": 74765
16199
- },
16200
- "node_modules/react-router/dist/development/index.mjs": {
16201
- "bytesInOutput": 61
16202
- },
16203
16556
  "node_modules/chai/index.js": {
16204
- "bytesInOutput": 133877
16557
+ "bytesInOutput": 133864
16205
16558
  }
16206
16559
  },
16207
- "bytes": 1224558
16560
+ "bytes": 1148931
16208
16561
  },
16209
- "testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs": {
16562
+ "testeranto/bundles/web/core/chunk-LQMU5NCG.mjs": {
16210
16563
  "imports": [],
16211
16564
  "exports": [
16212
16565
  "BaseGiven",
@@ -16241,10 +16594,10 @@
16241
16594
  "bytesInOutput": 127
16242
16595
  },
16243
16596
  "src/lib/BaseSuite.ts": {
16244
- "bytesInOutput": 2498
16597
+ "bytesInOutput": 3728
16245
16598
  },
16246
16599
  "src/lib/pmProxy.ts": {
16247
- "bytesInOutput": 6512
16600
+ "bytesInOutput": 5873
16248
16601
  },
16249
16602
  "src/Web.ts": {
16250
16603
  "bytesInOutput": 837
@@ -16256,22 +16609,22 @@
16256
16609
  "bytesInOutput": 223
16257
16610
  },
16258
16611
  "src/lib/Tiposkripto.ts": {
16259
- "bytesInOutput": 6110
16612
+ "bytesInOutput": 6359
16260
16613
  },
16261
16614
  "src/lib/index.ts": {
16262
16615
  "bytesInOutput": 721
16263
16616
  },
16264
16617
  "src/lib/BaseGiven.ts": {
16265
- "bytesInOutput": 2958
16618
+ "bytesInOutput": 4533
16266
16619
  },
16267
16620
  "src/lib/BaseWhen.ts": {
16268
- "bytesInOutput": 1174
16621
+ "bytesInOutput": 1350
16269
16622
  },
16270
16623
  "src/lib/BaseThen.ts": {
16271
- "bytesInOutput": 1628
16624
+ "bytesInOutput": 1394
16272
16625
  }
16273
16626
  },
16274
- "bytes": 90980
16627
+ "bytes": 93337
16275
16628
  },
16276
16629
  "testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf": {
16277
16630
  "imports": [],
@@ -16491,10 +16844,163 @@
16491
16844
  ],
16492
16845
  "inputs": {
16493
16846
  "src/App.scss": {
16494
- "bytesInOutput": 279255
16847
+ "bytesInOutput": 280998
16848
+ }
16849
+ },
16850
+ "bytes": 281214
16851
+ },
16852
+ "testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css": {
16853
+ "imports": [
16854
+ {
16855
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
16856
+ "kind": "url-token",
16857
+ "external": true
16858
+ },
16859
+ {
16860
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
16861
+ "kind": "url-token",
16862
+ "external": true
16863
+ },
16864
+ {
16865
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e",
16866
+ "kind": "url-token",
16867
+ "external": true
16868
+ },
16869
+ {
16870
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e",
16871
+ "kind": "url-token",
16872
+ "external": true
16873
+ },
16874
+ {
16875
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e",
16876
+ "kind": "url-token",
16877
+ "external": true
16878
+ },
16879
+ {
16880
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e",
16881
+ "kind": "url-token",
16882
+ "external": true
16883
+ },
16884
+ {
16885
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e",
16886
+ "kind": "url-token",
16887
+ "external": true
16888
+ },
16889
+ {
16890
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e",
16891
+ "kind": "url-token",
16892
+ "external": true
16893
+ },
16894
+ {
16895
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e",
16896
+ "kind": "url-token",
16897
+ "external": true
16898
+ },
16899
+ {
16900
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
16901
+ "kind": "url-token",
16902
+ "external": true
16903
+ },
16904
+ {
16905
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
16906
+ "kind": "url-token",
16907
+ "external": true
16908
+ },
16909
+ {
16910
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
16911
+ "kind": "url-token",
16912
+ "external": true
16913
+ },
16914
+ {
16915
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
16916
+ "kind": "url-token",
16917
+ "external": true
16918
+ },
16919
+ {
16920
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
16921
+ "kind": "url-token",
16922
+ "external": true
16923
+ },
16924
+ {
16925
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
16926
+ "kind": "url-token",
16927
+ "external": true
16928
+ },
16929
+ {
16930
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
16931
+ "kind": "url-token",
16932
+ "external": true
16933
+ },
16934
+ {
16935
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
16936
+ "kind": "url-token",
16937
+ "external": true
16938
+ },
16939
+ {
16940
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
16941
+ "kind": "url-token",
16942
+ "external": true
16943
+ },
16944
+ {
16945
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
16946
+ "kind": "url-token",
16947
+ "external": true
16948
+ },
16949
+ {
16950
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
16951
+ "kind": "url-token",
16952
+ "external": true
16953
+ },
16954
+ {
16955
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e",
16956
+ "kind": "url-token",
16957
+ "external": true
16958
+ },
16959
+ {
16960
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e",
16961
+ "kind": "url-token",
16962
+ "external": true
16963
+ },
16964
+ {
16965
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
16966
+ "kind": "url-token",
16967
+ "external": true
16968
+ },
16969
+ {
16970
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf",
16971
+ "kind": "url-token"
16972
+ },
16973
+ {
16974
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf",
16975
+ "kind": "url-token"
16976
+ },
16977
+ {
16978
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf",
16979
+ "kind": "url-token"
16980
+ },
16981
+ {
16982
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf",
16983
+ "kind": "url-token"
16984
+ },
16985
+ {
16986
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf",
16987
+ "kind": "url-token"
16988
+ },
16989
+ {
16990
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf",
16991
+ "kind": "url-token"
16992
+ },
16993
+ {
16994
+ "path": "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf",
16995
+ "kind": "url-token"
16996
+ }
16997
+ ],
16998
+ "inputs": {
16999
+ "src/App.scss": {
17000
+ "bytesInOutput": 280998
16495
17001
  }
16496
17002
  },
16497
- "bytes": 279471
17003
+ "bytes": 281214
16498
17004
  }
16499
17005
  }
16500
17006
  }