claude-flow-novice 2.2.3 → 2.2.4

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 (1377) hide show
  1. package/dist/.claude/settings.json +2 -1
  2. package/dist/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
  3. package/dist/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
  4. package/dist/scripts/CLEANUP_QUICK_START.md +268 -0
  5. package/dist/scripts/CLEANUP_TEST_RESULTS.md +205 -0
  6. package/dist/scripts/README.md +339 -0
  7. package/dist/scripts/ace-query.sh +384 -0
  8. package/dist/scripts/agent-token-analysis.js +430 -0
  9. package/dist/scripts/auto-setup.js +332 -0
  10. package/dist/scripts/build/README.md +167 -0
  11. package/dist/scripts/build/build-config.js +27 -0
  12. package/dist/scripts/build/build-prompt-copier.sh +30 -0
  13. package/dist/scripts/build/performance-monitor.js +869 -0
  14. package/dist/scripts/build/prepare-publish.js +150 -0
  15. package/dist/scripts/build/typescript-fixer.js +621 -0
  16. package/dist/scripts/build/unified-builder.sh +428 -0
  17. package/dist/scripts/build/update-bin-version.js +32 -0
  18. package/dist/scripts/build/validate-agents.js +238 -0
  19. package/dist/scripts/build-index.js +43 -0
  20. package/dist/scripts/build-orchestrator.js +320 -0
  21. package/dist/scripts/check-routing-stats.cjs +122 -0
  22. package/dist/scripts/ci-validation.js +375 -0
  23. package/dist/scripts/cleanup-blocking-coordination.sh +420 -0
  24. package/dist/scripts/cleanup-idle-sessions.sh +59 -0
  25. package/dist/scripts/collect-build-metrics.js +65 -0
  26. package/dist/scripts/demo/README.md +79 -0
  27. package/dist/scripts/demo/autoscaling-demo-simplified.js +963 -0
  28. package/dist/scripts/demo/comprehensive-dashboard-test.js +693 -0
  29. package/dist/scripts/demo/confidence-log.js +87 -0
  30. package/dist/scripts/demo/confidence-report.js +82 -0
  31. package/dist/scripts/demo/demo-multi-swarm-coordination.js +325 -0
  32. package/dist/scripts/demo/demo-production-deployment.js +399 -0
  33. package/dist/scripts/demo/demo-visualization-system.js +149 -0
  34. package/dist/scripts/demo/performance-analysis.cjs +71 -0
  35. package/dist/scripts/demo/performance-analysis.js +71 -0
  36. package/dist/scripts/demo/test-autoscaling-demo.js +314 -0
  37. package/dist/scripts/dependency-optimizer.js +349 -0
  38. package/dist/scripts/dependency-security-assessment.js +331 -0
  39. package/dist/scripts/deploy-sdk.sh +176 -0
  40. package/dist/scripts/deployment-readiness-report.json +179 -0
  41. package/dist/scripts/dev/README.md +264 -0
  42. package/dist/scripts/dev/claude-flow-wrapper.sh +35 -0
  43. package/dist/scripts/dev/claude-monitor.py +419 -0
  44. package/dist/scripts/dev/claude-sparc.sh +562 -0
  45. package/dist/scripts/dev/claude-wrapper.sh +17 -0
  46. package/dist/scripts/dev/demo-phase3-compliance.js +172 -0
  47. package/dist/scripts/dev/demo-task-system.ts +224 -0
  48. package/dist/scripts/dev/deployment-validator.js +315 -0
  49. package/dist/scripts/dev/spawn-claude-terminal.sh +32 -0
  50. package/dist/scripts/dev/start-portal.sh +506 -0
  51. package/dist/scripts/dev/start-web-ui.js +15 -0
  52. package/dist/scripts/dev/stop-portal.sh +311 -0
  53. package/dist/scripts/dev/validate-examples.ts +288 -0
  54. package/dist/scripts/dev/validate-phase2.cjs +451 -0
  55. package/dist/scripts/dev/validate-phase2.js +785 -0
  56. package/dist/scripts/dev/validate-phase3.cjs +208 -0
  57. package/dist/scripts/dev/validate-security-remediation.js +1 -0
  58. package/dist/scripts/ecosystem.config.cjs +90 -0
  59. package/dist/scripts/fix-js-extensions.js +167 -0
  60. package/dist/scripts/generate-basic-types.js +73 -0
  61. package/dist/scripts/generate-changelog.js +318 -0
  62. package/dist/scripts/git-hooks/pre-commit.sh +143 -0
  63. package/dist/scripts/health-checks.js +634 -0
  64. package/dist/scripts/hook-wrapper.sh +54 -0
  65. package/dist/scripts/install/README.md +375 -0
  66. package/dist/scripts/install/REDIS_SETUP_VALIDATION.json +245 -0
  67. package/dist/scripts/install/check-prerequisites.js +303 -0
  68. package/dist/scripts/install/config-wizard.js +606 -0
  69. package/dist/scripts/install/dependency-checker.js +385 -0
  70. package/dist/scripts/install/health-check.js +765 -0
  71. package/dist/scripts/install/install.js +256 -0
  72. package/dist/scripts/install/installation-benchmark.js +461 -0
  73. package/dist/scripts/install/quick-install.js +720 -0
  74. package/dist/scripts/install/quick-start-wizard.js +295 -0
  75. package/dist/scripts/install/redis-cli.js +289 -0
  76. package/dist/scripts/install/redis-install-guides.md +407 -0
  77. package/dist/scripts/install/redis-setup.js +559 -0
  78. package/dist/scripts/install/redis-test.js +278 -0
  79. package/dist/scripts/install/service-manager.js +672 -0
  80. package/dist/scripts/install/setup.js +832 -0
  81. package/dist/scripts/install/uninstall.js +526 -0
  82. package/dist/scripts/install/update.js +461 -0
  83. package/dist/scripts/install-pre-commit-hook.sh +127 -0
  84. package/dist/scripts/legacy/README.md +272 -0
  85. package/dist/scripts/legacy/batch-fix-ts.sh +54 -0
  86. package/dist/scripts/legacy/build-migration.sh +105 -0
  87. package/dist/scripts/legacy/build-monitor.js +209 -0
  88. package/dist/scripts/legacy/build-with-filter.sh +84 -0
  89. package/dist/scripts/legacy/build-workaround.sh +71 -0
  90. package/dist/scripts/legacy/fix-ts-advanced.js +358 -0
  91. package/dist/scripts/legacy/fix-ts-final.sh +50 -0
  92. package/dist/scripts/legacy/fix-ts-targeted.sh +49 -0
  93. package/dist/scripts/legacy/fix-typescript-errors.js +305 -0
  94. package/dist/scripts/legacy/force-build.sh +63 -0
  95. package/dist/scripts/legacy/optimize-performance.js +400 -0
  96. package/dist/scripts/legacy/performance-monitor.js +263 -0
  97. package/dist/scripts/legacy/performance-monitoring.js +532 -0
  98. package/dist/scripts/legacy/performance-test-runner.js +645 -0
  99. package/dist/scripts/legacy/quick-fix-ts.js +281 -0
  100. package/dist/scripts/legacy/safe-build.sh +63 -0
  101. package/dist/scripts/memory-monitor-coordinator.js +322 -0
  102. package/dist/scripts/migrate-to-sdk.sh +520 -0
  103. package/dist/scripts/migration/QUICK-START.md +189 -0
  104. package/dist/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
  105. package/dist/scripts/migration/README.md +464 -0
  106. package/dist/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
  107. package/dist/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
  108. package/dist/scripts/migration/UPDATE-PATHS-README.md +464 -0
  109. package/dist/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
  110. package/dist/scripts/migration/example-patterns.json +19 -0
  111. package/dist/scripts/migration/install-arm64.js +78 -0
  112. package/dist/scripts/migration/install.js +83 -0
  113. package/dist/scripts/migration/migrate-hooks.js +173 -0
  114. package/dist/scripts/migration/migration-examples.ts +318 -0
  115. package/dist/scripts/migration/reorganize-workspace.js +504 -0
  116. package/dist/scripts/migration/test-update-paths.js +359 -0
  117. package/dist/scripts/migration/update-paths.js +664 -0
  118. package/dist/scripts/migration/validate-migration.js +647 -0
  119. package/dist/scripts/monitor-loop.sh +65 -0
  120. package/dist/scripts/monitor-memory.sh +47 -0
  121. package/dist/scripts/monitor-migration.js +339 -0
  122. package/dist/scripts/monitor.py +43 -0
  123. package/dist/scripts/monitoring/README.md +178 -0
  124. package/dist/scripts/monitoring/alert-monitor.sh +220 -0
  125. package/dist/scripts/monitoring/analyze-resources.sh +199 -0
  126. package/dist/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
  127. package/dist/scripts/monitoring/dynamic-monitor.sh +85 -0
  128. package/dist/scripts/monitoring/launch-stability-test.sh +184 -0
  129. package/dist/scripts/monitoring/monitor-test.sh +93 -0
  130. package/dist/scripts/monitoring/pre-test-validation.sh +208 -0
  131. package/dist/scripts/monitoring/quick-test-alerting.sh +118 -0
  132. package/dist/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
  133. package/dist/scripts/monitoring/rate-limiting-monitor.sh +380 -0
  134. package/dist/scripts/monitoring/resource-monitor.sh +126 -0
  135. package/dist/scripts/monitoring/stability-monitor.js +429 -0
  136. package/dist/scripts/monitoring/test-monitor-quick.sh +54 -0
  137. package/dist/scripts/monitoring/view-alerts.sh +307 -0
  138. package/dist/scripts/npm-metrics-collector.js +482 -0
  139. package/dist/scripts/npm-package-validation.cjs +299 -0
  140. package/dist/scripts/optimization/build-optimizer.js +438 -0
  141. package/dist/scripts/optimization/config-validator.js +761 -0
  142. package/dist/scripts/optimization/test-optimization.js +432 -0
  143. package/dist/scripts/optimization/unified-activation.js +839 -0
  144. package/dist/scripts/optimize-package-swarm.js +54 -0
  145. package/dist/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
  146. package/dist/scripts/performance/sqlite-enhanced-activation.sh +583 -0
  147. package/dist/scripts/performance/test-enhanced-backend.sh +504 -0
  148. package/dist/scripts/performance-monitor.js +644 -0
  149. package/dist/scripts/performance-test-runner.js +698 -0
  150. package/dist/scripts/post-deployment-monitoring.js +350 -0
  151. package/dist/scripts/post-edit-pipeline.js +2091 -0
  152. package/dist/scripts/post-install-claude-md.js +78 -0
  153. package/dist/scripts/postinstall.js +79 -0
  154. package/dist/scripts/pre-publish-validation.cjs +212 -0
  155. package/dist/scripts/pre-publish-validation.js +429 -0
  156. package/dist/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
  157. package/dist/scripts/release-announcement.js +425 -0
  158. package/dist/scripts/release-notification.js +248 -0
  159. package/dist/scripts/release-rollback.js +376 -0
  160. package/dist/scripts/release-validation.js +460 -0
  161. package/dist/scripts/rollback-sdk.sh +66 -0
  162. package/dist/scripts/run-production-validation.ts +590 -0
  163. package/dist/scripts/run-stability-validation.sh +687 -0
  164. package/dist/scripts/security/README.md +339 -0
  165. package/dist/scripts/security/deployment-validation.cjs +279 -0
  166. package/dist/scripts/security/envelope-encryption-confidence-report.cjs +422 -0
  167. package/dist/scripts/security/install-git-hooks.sh +132 -0
  168. package/dist/scripts/security/install-git-secrets.sh +295 -0
  169. package/dist/scripts/security/rotate-api-keys.js +469 -0
  170. package/dist/scripts/security/ruv-swarm-safe.js +74 -0
  171. package/dist/scripts/security/security-audit.cjs +538 -0
  172. package/dist/scripts/security/setup-redis-auth.sh +397 -0
  173. package/dist/scripts/security/validate-envelope-encryption.cjs +340 -0
  174. package/dist/scripts/security-scan.js +492 -0
  175. package/dist/scripts/src/web/frontend/.claude-flow/metrics/agent-metrics.json +1 -0
  176. package/dist/scripts/src/web/frontend/.claude-flow/metrics/performance.json +9 -0
  177. package/dist/scripts/src/web/frontend/.claude-flow/metrics/task-metrics.json +10 -0
  178. package/dist/scripts/switch-api.sh +158 -0
  179. package/dist/scripts/sync-agents.js +290 -0
  180. package/dist/scripts/test/50-agent-test.js +625 -0
  181. package/dist/scripts/test/NEW_STABILITY_TEST_GUIDE.md +407 -0
  182. package/dist/scripts/test/README.md +236 -0
  183. package/dist/scripts/test/STABILITY_TEST_EXAMPLE.md +347 -0
  184. package/dist/scripts/test/STABILITY_TEST_README.md +480 -0
  185. package/dist/scripts/test/agent-worker.js +309 -0
  186. package/dist/scripts/test/ai-coordination-test.js +650 -0
  187. package/dist/scripts/test/ai-mesh-coordination-test.js +416 -0
  188. package/dist/scripts/test/check-links.ts +274 -0
  189. package/dist/scripts/test/check-performance-regression.ts +168 -0
  190. package/dist/scripts/test/cli-agent-coordination-test.js +313 -0
  191. package/dist/scripts/test/coordinator-multilingual-test.js +396 -0
  192. package/dist/scripts/test/coordinator-transparency-demo.js +585 -0
  193. package/dist/scripts/test/coverage-report.ts +692 -0
  194. package/dist/scripts/test/generate-swarm-tests.js +633 -0
  195. package/dist/scripts/test/integration-test-validation.cjs +253 -0
  196. package/dist/scripts/test/load-test-swarm.js +576 -0
  197. package/dist/scripts/test/mesh-coordination-zero-overlap-test.js +740 -0
  198. package/dist/scripts/test/multilingual-hello-world-test.js +390 -0
  199. package/dist/scripts/test/quick-multilingual-demo.js +464 -0
  200. package/dist/scripts/test/real-agent-test.js +312 -0
  201. package/dist/scripts/test/run-phase3-compliance-tests.js +427 -0
  202. package/dist/scripts/test/run-stability-test-examples.sh +292 -0
  203. package/dist/scripts/test/stability-results/stability-metrics.jsonl +83 -0
  204. package/dist/scripts/test/stability-results/stability-test-report.json +128 -0
  205. package/dist/scripts/test/stability-results/stability-test.log +1827 -0
  206. package/dist/scripts/test/stability-test-50-agents.js +734 -0
  207. package/dist/scripts/test/test-batch-tasks.ts +29 -0
  208. package/dist/scripts/test/test-byzantine-resolution.js +246 -0
  209. package/dist/scripts/test/test-claude-spawn-options.sh +63 -0
  210. package/dist/scripts/test/test-cli-wizard.js +331 -0
  211. package/dist/scripts/test/test-comprehensive.js +401 -0
  212. package/dist/scripts/test/test-coordination-features.ts +238 -0
  213. package/dist/scripts/test/test-fallback-systems.js +276 -0
  214. package/dist/scripts/test/test-init-command.ts +302 -0
  215. package/dist/scripts/test/test-mcp.ts +251 -0
  216. package/dist/scripts/test/test-runner.ts +568 -0
  217. package/dist/scripts/test/test-swarm-integration.sh +92 -0
  218. package/dist/scripts/test/test-swarm.ts +142 -0
  219. package/dist/scripts/test/validation-summary.ts +408 -0
  220. package/dist/scripts/test-cleanup-performance.sh +416 -0
  221. package/dist/scripts/test-dashboard-auth.cjs +203 -0
  222. package/dist/scripts/test-docker-deployment.sh +207 -0
  223. package/dist/scripts/test-npm-package.cjs +167 -0
  224. package/dist/scripts/test-provider-routing.cjs +226 -0
  225. package/dist/scripts/test-routing-telemetry.cjs +147 -0
  226. package/dist/scripts/test-runner.cjs +154 -0
  227. package/dist/scripts/test-zai-10k.cjs +81 -0
  228. package/dist/scripts/test-zai-api.cjs +191 -0
  229. package/dist/scripts/test-zai-diagnostic.cjs +151 -0
  230. package/dist/scripts/test-zai-final.cjs +128 -0
  231. package/dist/scripts/test-zai-with-env.cjs +85 -0
  232. package/dist/scripts/utils/README.md +261 -0
  233. package/dist/scripts/utils/clean-build-artifacts.sh +94 -0
  234. package/dist/scripts/utils/cleanup-root.sh +69 -0
  235. package/dist/scripts/utils/fix-cliffy-imports.js +307 -0
  236. package/dist/scripts/utils/fix-duplicate-imports.js +114 -0
  237. package/dist/scripts/utils/fix-error-handling.cjs +70 -0
  238. package/dist/scripts/utils/fix-import-paths.js +104 -0
  239. package/dist/scripts/utils/fix-imports.js +116 -0
  240. package/dist/scripts/utils/fix-shebang.js +78 -0
  241. package/dist/scripts/utils/fix-test-modules.js +27 -0
  242. package/dist/scripts/utils/fix-timezone-issue-246.js +200 -0
  243. package/dist/scripts/utils/fix-ts-comprehensive.py +182 -0
  244. package/dist/scripts/utils/fix-ts-targeted-batch.js +250 -0
  245. package/dist/scripts/utils/remove-benchmark-conflicts.sh +140 -0
  246. package/dist/scripts/utils/simple-test-fixer.js +190 -0
  247. package/dist/scripts/utils/validate-metrics-structure.cjs +144 -0
  248. package/dist/scripts/validate-agent-hooks.js +506 -0
  249. package/dist/scripts/validate-changelog.js +241 -0
  250. package/dist/scripts/validate-coordination-cli.js +69 -0
  251. package/dist/scripts/validate-coordination-toggle-integration.cjs +501 -0
  252. package/dist/scripts/validate-docker-infrastructure.sh +502 -0
  253. package/dist/scripts/validate-entry-points.js +300 -0
  254. package/dist/scripts/validate-stage3-performance.ts +377 -0
  255. package/dist/scripts/validate-template-bundling.js +180 -0
  256. package/dist/scripts/validation/README.md +33 -0
  257. package/dist/scripts/validation/acl-security-validation.cjs +214 -0
  258. package/dist/scripts/validation/acl-security-validation.js +402 -0
  259. package/dist/scripts/validation/byzantine-verification.js +407 -0
  260. package/dist/scripts/validation/final-phase-2-consensus.cjs +219 -0
  261. package/dist/scripts/validation/final-security-validation.js +791 -0
  262. package/dist/scripts/validation/final-wasm-validation.cjs +840 -0
  263. package/dist/scripts/validation/integration-test-analysis.js +105 -0
  264. package/dist/scripts/validation/phase-0-comprehensive-validation.js +474 -0
  265. package/dist/scripts/validation/phase-0-consensus-report.js +139 -0
  266. package/dist/scripts/validation/phase-0-final-report.js +112 -0
  267. package/dist/scripts/validation/phase-0-redis-consensus-report.js +129 -0
  268. package/dist/scripts/validation/phase-0-validation-improved.js +490 -0
  269. package/dist/scripts/validation/phase-0-validation-test.js +65 -0
  270. package/dist/scripts/validation/phase-1-consensus-report.cjs +342 -0
  271. package/dist/scripts/validation/phase-1-consensus-validation.cjs +551 -0
  272. package/dist/scripts/validation/phase-1-consensus-validation.js +551 -0
  273. package/dist/scripts/validation/phase-2-consensus-report.cjs +186 -0
  274. package/dist/scripts/validation/phase-2-validation.cjs +171 -0
  275. package/dist/scripts/validation/phase-2-validation.js +171 -0
  276. package/dist/scripts/validation/phase-4-consensus-report.js +181 -0
  277. package/dist/scripts/validation/phase-4-final-validation.js +351 -0
  278. package/dist/scripts/validation/phase-5-consensus-report.cjs +113 -0
  279. package/dist/scripts/validation/phase-5-consensus-report.js +113 -0
  280. package/dist/scripts/validation/security-analysis.js +49 -0
  281. package/dist/scripts/validation/security-validation.js +492 -0
  282. package/dist/scripts/validation/simple-security-validation.js +464 -0
  283. package/dist/scripts/verify-installation.js +112 -0
  284. package/dist/scripts/verify-mcp-server.js +86 -0
  285. package/dist/scripts/verify-sdk-phase1.cjs +293 -0
  286. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/clipboard/browser/clipboardService.js +141 -0
  287. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/clipboard/common/clipboardService.js +6 -0
  288. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/commands/common/commands.js +80 -0
  289. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configuration.js +86 -0
  290. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurationModels.js +554 -0
  291. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurationRegistry.js +317 -0
  292. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurations.js +41 -0
  293. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/browser/contextKeyService.js +432 -0
  294. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/common/contextkey.js +1547 -0
  295. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/common/contextkeys.js +18 -0
  296. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextMenuHandler.js +124 -0
  297. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextMenuService.js +101 -0
  298. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextView.js +7 -0
  299. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextViewService.js +72 -0
  300. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/dialogs/common/dialogs.js +2 -0
  301. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/dnd/browser/dnd.js +36 -0
  302. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/editor/common/editor.js +17 -0
  303. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/environment/common/environment.js +2 -0
  304. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/extensions/common/extensions.js +47 -0
  305. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/files/common/files.js +9 -0
  306. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/history/browser/contextScopedHistoryWidget.js +105 -0
  307. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/instantiation/common/descriptors.js +11 -0
  308. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/instantiation/common/extensions.js +15 -0
  309. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/keybinding/common/abstractKeybindingService.js +277 -0
  310. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/keybinding/common/baseResolvedKeybinding.js +53 -0
  311. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +354 -0
  312. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/theme/browser/defaultStyles.js +162 -0
  313. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/theme/common/colorRegistry.js +482 -0
  314. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/abap/abap.js +10 -0
  315. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/apex/apex.js +10 -0
  316. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/azcli/azcli.js +10 -0
  317. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/bat/bat.js +10 -0
  318. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/bicep/bicep.js +11 -0
  319. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cameligo/cameligo.js +10 -0
  320. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/clojure/clojure.js +10 -0
  321. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/coffee/coffee.js +10 -0
  322. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cpp/cpp.js +10 -0
  323. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/csharp/csharp.js +10 -0
  324. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/csp/csp.js +10 -0
  325. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/css/css.js +12 -0
  326. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cypher/cypher.js +10 -0
  327. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/dart/dart.js +10 -0
  328. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/dockerfile/dockerfile.js +10 -0
  329. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/ecl/ecl.js +10 -0
  330. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/elixir/elixir.js +10 -0
  331. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/flow9/flow9.js +10 -0
  332. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.js +745 -0
  333. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.de.js +31 -0
  334. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.es.js +31 -0
  335. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.fr.js +29 -0
  336. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.it.js +29 -0
  337. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ja.js +31 -0
  338. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.js +29 -0
  339. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ko.js +29 -0
  340. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ru.js +31 -0
  341. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.zh-cn.js +31 -0
  342. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.zh-tw.js +29 -0
  343. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/language/css/cssMode.js +13 -0
  344. package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/language/css/cssWorker.js +81 -0
  345. package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/cli.js +64 -0
  346. package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/example.js +36 -0
  347. package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/index.js +205 -0
  348. package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/test.js +260 -0
  349. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.browser.js +34 -0
  350. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.js +35 -0
  351. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.native.js +26 -0
  352. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/index.browser.js +34 -0
  353. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/index.js +45 -0
  354. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/nanoid.js +1 -0
  355. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/non-secure/index.js +21 -0
  356. package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/url-alphabet/index.js +3 -0
  357. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/bin/nodemon.js +16 -0
  358. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/cli/index.js +49 -0
  359. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/cli/parse.js +230 -0
  360. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/command.js +43 -0
  361. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/defaults.js +34 -0
  362. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/exec.js +234 -0
  363. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/index.js +93 -0
  364. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/load.js +225 -0
  365. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/help/index.js +27 -0
  366. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/index.js +1 -0
  367. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/index.js +4 -0
  368. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/match.js +287 -0
  369. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/run.js +562 -0
  370. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/signals.js +34 -0
  371. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/watch.js +244 -0
  372. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/nodemon.js +317 -0
  373. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/add.js +89 -0
  374. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/index.js +53 -0
  375. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/parse.js +43 -0
  376. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/spawn.js +74 -0
  377. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/bus.js +44 -0
  378. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/clone.js +40 -0
  379. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/colour.js +26 -0
  380. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/index.js +103 -0
  381. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/log.js +82 -0
  382. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/merge.js +47 -0
  383. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/version.js +100 -0
  384. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/brace-expansion/index.js +201 -0
  385. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/has-flag/index.js +8 -0
  386. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/minimatch/minimatch.js +947 -0
  387. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/supports-color/browser.js +5 -0
  388. package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/supports-color/index.js +131 -0
  389. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/bin/pidtree.js +128 -0
  390. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/index.js +49 -0
  391. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/bin.js +61 -0
  392. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/get.js +45 -0
  393. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/pidtree.js +104 -0
  394. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/ps.js +47 -0
  395. package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/wmic.js +49 -0
  396. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/doc.js +1270 -0
  397. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/acorn.js +15 -0
  398. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/angular.js +2 -0
  399. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/babel.js +15 -0
  400. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/estree.js +36 -0
  401. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/flow.js +19 -0
  402. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/glimmer.js +29 -0
  403. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/graphql.js +29 -0
  404. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/html.js +22 -0
  405. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/markdown.js +63 -0
  406. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/meriyah.js +4 -0
  407. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/postcss.js +54 -0
  408. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/typescript.js +20 -0
  409. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/yaml.js +160 -0
  410. package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/standalone.js +34 -0
  411. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/bin/react-scripts.js +58 -0
  412. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/env.js +112 -0
  413. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/getHttpsConfig.js +74 -0
  414. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/babelTransform.js +37 -0
  415. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/cssTransform.js +22 -0
  416. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/fileTransform.js +40 -0
  417. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/modules.js +142 -0
  418. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/paths.js +153 -0
  419. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpack/persistentCache/createEnvironmentHash.js +9 -0
  420. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpack.config.js +796 -0
  421. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpackDevServer.config.js +135 -0
  422. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/build.js +225 -0
  423. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/eject.js +340 -0
  424. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/init.js +416 -0
  425. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/start.js +162 -0
  426. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/test.js +129 -0
  427. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/utils/createJestConfig.js +152 -0
  428. package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/utils/verifyTypeScriptSetup.js +298 -0
  429. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/.eslintrc.js +32 -0
  430. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/create-element.js +1 -0
  431. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/async-languages/create-language-async-loader.js +33 -0
  432. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/async-syntax-highlighter.js +165 -0
  433. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/checkForListedLanguage.js +10 -0
  434. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/create-element.js +116 -0
  435. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/default-highlight.js +14 -0
  436. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/1c.js +9 -0
  437. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/abnf.js +9 -0
  438. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/accesslog.js +9 -0
  439. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/actionscript.js +9 -0
  440. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ada.js +9 -0
  441. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/angelscript.js +9 -0
  442. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/apache.js +9 -0
  443. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/applescript.js +9 -0
  444. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/arcade.js +9 -0
  445. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/arduino.js +9 -0
  446. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/armasm.js +9 -0
  447. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/asciidoc.js +9 -0
  448. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/aspectj.js +9 -0
  449. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/autohotkey.js +9 -0
  450. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/autoit.js +9 -0
  451. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/avrasm.js +9 -0
  452. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/awk.js +9 -0
  453. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/axapta.js +9 -0
  454. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/bash.js +9 -0
  455. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/basic.js +9 -0
  456. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/bnf.js +9 -0
  457. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/brainfuck.js +9 -0
  458. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/c-like.js +9 -0
  459. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/c.js +9 -0
  460. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cal.js +9 -0
  461. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/capnproto.js +9 -0
  462. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ceylon.js +9 -0
  463. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clean.js +9 -0
  464. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clojure-repl.js +9 -0
  465. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clojure.js +9 -0
  466. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cmake.js +9 -0
  467. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/coffeescript.js +9 -0
  468. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/coq.js +9 -0
  469. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cos.js +9 -0
  470. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cpp.js +9 -0
  471. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/crmsh.js +9 -0
  472. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/crystal.js +9 -0
  473. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cs.js +9 -0
  474. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/csharp.js +9 -0
  475. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/csp.js +9 -0
  476. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/css.js +9 -0
  477. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/d.js +9 -0
  478. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dart.js +9 -0
  479. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/delphi.js +9 -0
  480. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/diff.js +9 -0
  481. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/django.js +9 -0
  482. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dns.js +9 -0
  483. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dockerfile.js +9 -0
  484. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dos.js +9 -0
  485. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dsconfig.js +9 -0
  486. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dts.js +9 -0
  487. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dust.js +9 -0
  488. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ebnf.js +9 -0
  489. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/elixir.js +9 -0
  490. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/elm.js +9 -0
  491. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erb.js +9 -0
  492. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erlang-repl.js +9 -0
  493. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erlang.js +9 -0
  494. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/excel.js +9 -0
  495. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fix.js +9 -0
  496. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/flix.js +9 -0
  497. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fortran.js +9 -0
  498. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fsharp.js +9 -0
  499. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gams.js +9 -0
  500. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gauss.js +9 -0
  501. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gcode.js +9 -0
  502. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gherkin.js +9 -0
  503. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/glsl.js +9 -0
  504. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gml.js +9 -0
  505. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/go.js +9 -0
  506. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/golo.js +9 -0
  507. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gradle.js +9 -0
  508. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/abap.js +10 -0
  509. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/abnf.js +10 -0
  510. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/actionscript.js +10 -0
  511. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ada.js +10 -0
  512. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/agda.js +10 -0
  513. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/al.js +10 -0
  514. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/antlr4.js +10 -0
  515. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apacheconf.js +10 -0
  516. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apex.js +10 -0
  517. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apl.js +10 -0
  518. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/applescript.js +10 -0
  519. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/aql.js +10 -0
  520. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arduino.js +10 -0
  521. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arff.js +10 -0
  522. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/armasm.js +10 -0
  523. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arturo.js +10 -0
  524. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asciidoc.js +10 -0
  525. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asm6502.js +10 -0
  526. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asmatmel.js +10 -0
  527. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/aspnet.js +10 -0
  528. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/autohotkey.js +10 -0
  529. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/autoit.js +10 -0
  530. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/avisynth.js +10 -0
  531. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/avro-idl.js +10 -0
  532. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/awk.js +10 -0
  533. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bash.js +10 -0
  534. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/basic.js +10 -0
  535. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/batch.js +10 -0
  536. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bbcode.js +10 -0
  537. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bbj.js +10 -0
  538. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bicep.js +10 -0
  539. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/birb.js +10 -0
  540. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bison.js +10 -0
  541. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bnf.js +10 -0
  542. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bqn.js +10 -0
  543. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/brainfuck.js +10 -0
  544. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/brightscript.js +10 -0
  545. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bro.js +10 -0
  546. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bsl.js +10 -0
  547. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/c.js +10 -0
  548. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cfscript.js +10 -0
  549. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/chaiscript.js +10 -0
  550. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cil.js +10 -0
  551. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cilkc.js +10 -0
  552. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cilkcpp.js +10 -0
  553. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/clike.js +10 -0
  554. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/clojure.js +10 -0
  555. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cmake.js +10 -0
  556. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cobol.js +10 -0
  557. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/coffeescript.js +10 -0
  558. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/concurnas.js +10 -0
  559. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cooklang.js +10 -0
  560. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/coq.js +10 -0
  561. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/core.js +9 -0
  562. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cpp.js +10 -0
  563. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/crystal.js +10 -0
  564. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csharp.js +10 -0
  565. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cshtml.js +10 -0
  566. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csp.js +10 -0
  567. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/css-extras.js +10 -0
  568. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/css.js +10 -0
  569. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csv.js +10 -0
  570. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cue.js +10 -0
  571. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cypher.js +10 -0
  572. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/d.js +10 -0
  573. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dart.js +10 -0
  574. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dataweave.js +10 -0
  575. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dax.js +10 -0
  576. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dhall.js +10 -0
  577. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/diff.js +10 -0
  578. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/django.js +10 -0
  579. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dns-zone-file.js +10 -0
  580. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/docker.js +10 -0
  581. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dot.js +10 -0
  582. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ebnf.js +10 -0
  583. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/editorconfig.js +10 -0
  584. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/eiffel.js +10 -0
  585. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ejs.js +10 -0
  586. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/elixir.js +10 -0
  587. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/elm.js +10 -0
  588. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/erb.js +10 -0
  589. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/erlang.js +10 -0
  590. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/etlua.js +10 -0
  591. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/excel-formula.js +10 -0
  592. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/factor.js +10 -0
  593. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/false.js +10 -0
  594. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/firestore-security-rules.js +10 -0
  595. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/flow.js +10 -0
  596. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/fortran.js +10 -0
  597. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/fsharp.js +10 -0
  598. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ftl.js +10 -0
  599. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gap.js +10 -0
  600. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gcode.js +10 -0
  601. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gdscript.js +10 -0
  602. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gedcom.js +10 -0
  603. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gettext.js +10 -0
  604. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gherkin.js +10 -0
  605. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/git.js +10 -0
  606. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/glsl.js +10 -0
  607. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gml.js +10 -0
  608. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gn.js +10 -0
  609. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/go-module.js +10 -0
  610. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/go.js +10 -0
  611. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gradle.js +10 -0
  612. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/graphql.js +10 -0
  613. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/a11y-dark.js +102 -0
  614. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/a11y-light.js +102 -0
  615. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/agate.js +105 -0
  616. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/an-old-hope.js +102 -0
  617. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/androidstudio.js +87 -0
  618. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/arduino-light.js +119 -0
  619. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/arta.js +106 -0
  620. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/ascetic.js +73 -0
  621. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-cave-dark.js +108 -0
  622. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-cave-light.js +108 -0
  623. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-dune-dark.js +96 -0
  624. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-dune-light.js +96 -0
  625. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-estuary-dark.js +108 -0
  626. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-estuary-light.js +108 -0
  627. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-forest-dark.js +96 -0
  628. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-forest-light.js +96 -0
  629. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-heath-dark.js +96 -0
  630. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-heath-light.js +96 -0
  631. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-lakeside-dark.js +96 -0
  632. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-lakeside-light.js +96 -0
  633. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-plateau-dark.js +108 -0
  634. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-plateau-light.js +108 -0
  635. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-savanna-dark.js +108 -0
  636. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-savanna-light.js +108 -0
  637. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-seaside-dark.js +96 -0
  638. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-seaside-light.js +96 -0
  639. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-sulphurpool-dark.js +96 -0
  640. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-sulphurpool-light.js +96 -0
  641. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-dark-reasonable.js +147 -0
  642. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-dark.js +120 -0
  643. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-light.js +120 -0
  644. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/brown-paper.js +97 -0
  645. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/codepen-embed.js +102 -0
  646. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/color-brewer.js +105 -0
  647. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/darcula.js +112 -0
  648. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/dark.js +97 -0
  649. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/darkula.js +7 -0
  650. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/default-style.js +119 -0
  651. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/docco.js +115 -0
  652. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/dracula.js +97 -0
  653. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/far.js +109 -0
  654. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/foundation.js +104 -0
  655. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/github-gist.js +101 -0
  656. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/github.js +122 -0
  657. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gml.js +118 -0
  658. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/googlecode.js +119 -0
  659. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gradient-dark.js +137 -0
  660. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gradient-light.js +137 -0
  661. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/a11y-dark.js +152 -0
  662. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/a11y-one-light.js +506 -0
  663. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/atom-dark.js +159 -0
  664. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/base16-ateliersulphurpool.light.js +203 -0
  665. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/cb.js +167 -0
  666. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coldark-cold.js +392 -0
  667. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coldark-dark.js +392 -0
  668. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coy-without-shadows.js +188 -0
  669. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coy.js +255 -0
  670. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/darcula.js +207 -0
  671. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/dark.js +160 -0
  672. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/dracula.js +160 -0
  673. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-dark.js +224 -0
  674. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-earth.js +224 -0
  675. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-forest.js +224 -0
  676. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-light.js +224 -0
  677. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-sea.js +224 -0
  678. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-space.js +224 -0
  679. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/funky.js +167 -0
  680. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/ghcolors.js +184 -0
  681. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/async-languages/create-language-async-loader.js +26 -0
  682. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/async-syntax-highlighter.js +158 -0
  683. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/checkForListedLanguage.js +4 -0
  684. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/create-element.js +107 -0
  685. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/default-highlight.js +7 -0
  686. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/1c.js +2 -0
  687. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/abnf.js +2 -0
  688. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/accesslog.js +2 -0
  689. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/actionscript.js +2 -0
  690. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ada.js +2 -0
  691. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/angelscript.js +2 -0
  692. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/apache.js +2 -0
  693. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/applescript.js +2 -0
  694. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/arcade.js +2 -0
  695. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/arduino.js +2 -0
  696. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/armasm.js +2 -0
  697. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/asciidoc.js +2 -0
  698. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/aspectj.js +2 -0
  699. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/autohotkey.js +2 -0
  700. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/autoit.js +2 -0
  701. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/avrasm.js +2 -0
  702. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/awk.js +2 -0
  703. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/axapta.js +2 -0
  704. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/bash.js +2 -0
  705. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/basic.js +2 -0
  706. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/bnf.js +2 -0
  707. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/brainfuck.js +2 -0
  708. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/c-like.js +2 -0
  709. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/c.js +2 -0
  710. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cal.js +2 -0
  711. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/capnproto.js +2 -0
  712. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ceylon.js +2 -0
  713. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clean.js +2 -0
  714. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clojure-repl.js +2 -0
  715. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clojure.js +2 -0
  716. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cmake.js +2 -0
  717. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/coffeescript.js +2 -0
  718. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/coq.js +2 -0
  719. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cos.js +2 -0
  720. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cpp.js +2 -0
  721. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/crmsh.js +2 -0
  722. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/crystal.js +2 -0
  723. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cs.js +2 -0
  724. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/csharp.js +2 -0
  725. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/csp.js +2 -0
  726. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/css.js +2 -0
  727. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/d.js +2 -0
  728. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dart.js +2 -0
  729. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/delphi.js +2 -0
  730. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/diff.js +2 -0
  731. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/django.js +2 -0
  732. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dns.js +2 -0
  733. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dockerfile.js +2 -0
  734. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dos.js +2 -0
  735. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dsconfig.js +2 -0
  736. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dts.js +2 -0
  737. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dust.js +2 -0
  738. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ebnf.js +2 -0
  739. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/elixir.js +2 -0
  740. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/elm.js +2 -0
  741. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erb.js +2 -0
  742. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erlang-repl.js +2 -0
  743. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erlang.js +2 -0
  744. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/excel.js +2 -0
  745. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fix.js +2 -0
  746. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/flix.js +2 -0
  747. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fortran.js +2 -0
  748. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fsharp.js +2 -0
  749. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gams.js +2 -0
  750. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gauss.js +2 -0
  751. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gcode.js +2 -0
  752. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gherkin.js +2 -0
  753. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/glsl.js +2 -0
  754. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gml.js +2 -0
  755. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/go.js +2 -0
  756. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/golo.js +2 -0
  757. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gradle.js +2 -0
  758. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/abap.js +3 -0
  759. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/abnf.js +3 -0
  760. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/actionscript.js +3 -0
  761. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ada.js +3 -0
  762. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/agda.js +3 -0
  763. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/al.js +3 -0
  764. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/antlr4.js +3 -0
  765. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apacheconf.js +3 -0
  766. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apex.js +3 -0
  767. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apl.js +3 -0
  768. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/applescript.js +3 -0
  769. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/aql.js +3 -0
  770. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arduino.js +3 -0
  771. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arff.js +3 -0
  772. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/armasm.js +3 -0
  773. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arturo.js +3 -0
  774. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asciidoc.js +3 -0
  775. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asm6502.js +3 -0
  776. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asmatmel.js +3 -0
  777. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/aspnet.js +3 -0
  778. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/autohotkey.js +3 -0
  779. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/autoit.js +3 -0
  780. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/avisynth.js +3 -0
  781. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/avro-idl.js +3 -0
  782. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/awk.js +3 -0
  783. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bash.js +3 -0
  784. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/basic.js +3 -0
  785. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/batch.js +3 -0
  786. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bbcode.js +3 -0
  787. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bbj.js +3 -0
  788. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bicep.js +3 -0
  789. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/birb.js +3 -0
  790. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bison.js +3 -0
  791. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bnf.js +3 -0
  792. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bqn.js +3 -0
  793. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/brainfuck.js +3 -0
  794. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/brightscript.js +3 -0
  795. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bro.js +3 -0
  796. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bsl.js +3 -0
  797. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/c.js +3 -0
  798. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cfscript.js +3 -0
  799. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/chaiscript.js +3 -0
  800. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cil.js +3 -0
  801. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cilkc.js +3 -0
  802. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cilkcpp.js +3 -0
  803. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/clike.js +3 -0
  804. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/clojure.js +3 -0
  805. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cmake.js +3 -0
  806. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cobol.js +3 -0
  807. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/coffeescript.js +3 -0
  808. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/concurnas.js +3 -0
  809. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cooklang.js +3 -0
  810. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/coq.js +3 -0
  811. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/core.js +2 -0
  812. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cpp.js +3 -0
  813. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/crystal.js +3 -0
  814. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csharp.js +3 -0
  815. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cshtml.js +3 -0
  816. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csp.js +3 -0
  817. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/css-extras.js +3 -0
  818. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/css.js +3 -0
  819. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csv.js +3 -0
  820. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cue.js +3 -0
  821. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cypher.js +3 -0
  822. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/d.js +3 -0
  823. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dart.js +3 -0
  824. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dataweave.js +3 -0
  825. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dax.js +3 -0
  826. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dhall.js +3 -0
  827. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/diff.js +3 -0
  828. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/django.js +3 -0
  829. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dns-zone-file.js +3 -0
  830. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/docker.js +3 -0
  831. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dot.js +3 -0
  832. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ebnf.js +3 -0
  833. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/editorconfig.js +3 -0
  834. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/eiffel.js +3 -0
  835. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ejs.js +3 -0
  836. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/elixir.js +3 -0
  837. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/elm.js +3 -0
  838. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/erb.js +3 -0
  839. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/erlang.js +3 -0
  840. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/etlua.js +3 -0
  841. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/excel-formula.js +3 -0
  842. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/factor.js +3 -0
  843. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/false.js +3 -0
  844. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/firestore-security-rules.js +3 -0
  845. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/flow.js +3 -0
  846. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/fortran.js +3 -0
  847. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/fsharp.js +3 -0
  848. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ftl.js +3 -0
  849. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gap.js +3 -0
  850. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gcode.js +3 -0
  851. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gdscript.js +3 -0
  852. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gedcom.js +3 -0
  853. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gettext.js +3 -0
  854. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gherkin.js +3 -0
  855. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/git.js +3 -0
  856. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/glsl.js +3 -0
  857. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gml.js +3 -0
  858. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gn.js +3 -0
  859. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/go-module.js +3 -0
  860. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/go.js +3 -0
  861. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gradle.js +3 -0
  862. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/graphql.js +3 -0
  863. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/a11y-dark.js +96 -0
  864. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/a11y-light.js +96 -0
  865. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/agate.js +99 -0
  866. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/an-old-hope.js +96 -0
  867. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/androidstudio.js +81 -0
  868. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/arduino-light.js +113 -0
  869. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/arta.js +100 -0
  870. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/ascetic.js +67 -0
  871. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-cave-dark.js +102 -0
  872. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-cave-light.js +102 -0
  873. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-dune-dark.js +90 -0
  874. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-dune-light.js +90 -0
  875. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-estuary-dark.js +102 -0
  876. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-estuary-light.js +102 -0
  877. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-forest-dark.js +90 -0
  878. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-forest-light.js +90 -0
  879. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-heath-dark.js +90 -0
  880. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-heath-light.js +90 -0
  881. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-lakeside-dark.js +90 -0
  882. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-lakeside-light.js +90 -0
  883. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-plateau-dark.js +102 -0
  884. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-plateau-light.js +102 -0
  885. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-savanna-dark.js +102 -0
  886. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-savanna-light.js +102 -0
  887. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-seaside-dark.js +90 -0
  888. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-seaside-light.js +90 -0
  889. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-sulphurpool-dark.js +90 -0
  890. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-sulphurpool-light.js +90 -0
  891. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-dark-reasonable.js +141 -0
  892. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-dark.js +114 -0
  893. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-light.js +114 -0
  894. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/brown-paper.js +91 -0
  895. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/codepen-embed.js +96 -0
  896. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/color-brewer.js +99 -0
  897. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/darcula.js +106 -0
  898. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/dark.js +91 -0
  899. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/darkula.js +1 -0
  900. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/default-style.js +113 -0
  901. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/docco.js +109 -0
  902. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/dracula.js +91 -0
  903. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/far.js +103 -0
  904. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/foundation.js +98 -0
  905. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/github-gist.js +95 -0
  906. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/github.js +116 -0
  907. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gml.js +112 -0
  908. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/googlecode.js +113 -0
  909. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gradient-dark.js +131 -0
  910. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gradient-light.js +131 -0
  911. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/a11y-dark.js +146 -0
  912. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/a11y-one-light.js +500 -0
  913. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/atom-dark.js +153 -0
  914. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/base16-ateliersulphurpool.light.js +197 -0
  915. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/cb.js +161 -0
  916. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coldark-cold.js +386 -0
  917. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coldark-dark.js +386 -0
  918. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coy-without-shadows.js +182 -0
  919. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coy.js +249 -0
  920. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/darcula.js +201 -0
  921. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/dark.js +154 -0
  922. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/dracula.js +154 -0
  923. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-dark.js +218 -0
  924. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-earth.js +218 -0
  925. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-forest.js +218 -0
  926. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-light.js +218 -0
  927. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-sea.js +218 -0
  928. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-space.js +218 -0
  929. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/funky.js +161 -0
  930. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/ghcolors.js +178 -0
  931. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-languages-highlightjs.js +127 -0
  932. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-languages-refractor.js +130 -0
  933. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-stylesheets-highlightjs.js +131 -0
  934. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-stylesheets-refractor.js +153 -0
  935. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/async-languages/create-language-async-loader.js +6 -0
  936. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/async-syntax-highlighter.js +155 -0
  937. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/checkForListedLanguage.js +4 -0
  938. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/create-element.js +212 -0
  939. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/default-highlight.js +9 -0
  940. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/1c.js +2 -0
  941. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/abnf.js +2 -0
  942. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/accesslog.js +2 -0
  943. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/actionscript.js +2 -0
  944. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ada.js +2 -0
  945. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/angelscript.js +2 -0
  946. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/apache.js +2 -0
  947. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/applescript.js +2 -0
  948. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/arcade.js +2 -0
  949. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/arduino.js +2 -0
  950. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/armasm.js +2 -0
  951. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/asciidoc.js +2 -0
  952. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/aspectj.js +2 -0
  953. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/autohotkey.js +2 -0
  954. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/autoit.js +2 -0
  955. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/avrasm.js +2 -0
  956. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/awk.js +2 -0
  957. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/axapta.js +2 -0
  958. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/bash.js +2 -0
  959. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/basic.js +2 -0
  960. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/bnf.js +2 -0
  961. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/brainfuck.js +2 -0
  962. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/c-like.js +2 -0
  963. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/c.js +2 -0
  964. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cal.js +2 -0
  965. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/capnproto.js +2 -0
  966. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ceylon.js +2 -0
  967. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clean.js +2 -0
  968. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clojure-repl.js +2 -0
  969. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clojure.js +2 -0
  970. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cmake.js +2 -0
  971. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/coffeescript.js +2 -0
  972. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/coq.js +2 -0
  973. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cos.js +2 -0
  974. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cpp.js +2 -0
  975. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/crmsh.js +2 -0
  976. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/crystal.js +2 -0
  977. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/csharp.js +2 -0
  978. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/csp.js +2 -0
  979. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/css.js +2 -0
  980. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/d.js +2 -0
  981. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dart.js +2 -0
  982. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/delphi.js +2 -0
  983. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/diff.js +2 -0
  984. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/django.js +2 -0
  985. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dns.js +2 -0
  986. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dockerfile.js +2 -0
  987. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dos.js +2 -0
  988. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dsconfig.js +2 -0
  989. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dts.js +2 -0
  990. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dust.js +2 -0
  991. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ebnf.js +2 -0
  992. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/elixir.js +2 -0
  993. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/elm.js +2 -0
  994. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erb.js +2 -0
  995. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erlang-repl.js +2 -0
  996. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erlang.js +2 -0
  997. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/excel.js +2 -0
  998. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fix.js +2 -0
  999. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/flix.js +2 -0
  1000. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fortran.js +2 -0
  1001. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fsharp.js +2 -0
  1002. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gams.js +2 -0
  1003. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gauss.js +2 -0
  1004. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gcode.js +2 -0
  1005. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gherkin.js +2 -0
  1006. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/glsl.js +2 -0
  1007. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gml.js +2 -0
  1008. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/go.js +2 -0
  1009. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/golo.js +2 -0
  1010. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gradle.js +2 -0
  1011. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/abap.js +2 -0
  1012. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/abnf.js +2 -0
  1013. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/actionscript.js +2 -0
  1014. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ada.js +2 -0
  1015. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/agda.js +2 -0
  1016. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/al.js +2 -0
  1017. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/antlr4.js +2 -0
  1018. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apacheconf.js +2 -0
  1019. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apex.js +2 -0
  1020. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apl.js +2 -0
  1021. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/applescript.js +2 -0
  1022. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/aql.js +2 -0
  1023. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/arduino.js +2 -0
  1024. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/arff.js +2 -0
  1025. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asciidoc.js +2 -0
  1026. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asm6502.js +2 -0
  1027. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asmatmel.js +2 -0
  1028. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/aspnet.js +2 -0
  1029. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/autohotkey.js +2 -0
  1030. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/autoit.js +2 -0
  1031. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/avisynth.js +2 -0
  1032. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/avro-idl.js +2 -0
  1033. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bash.js +2 -0
  1034. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/basic.js +2 -0
  1035. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/batch.js +2 -0
  1036. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bbcode.js +2 -0
  1037. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bicep.js +2 -0
  1038. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/birb.js +2 -0
  1039. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bison.js +2 -0
  1040. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bnf.js +2 -0
  1041. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/brainfuck.js +2 -0
  1042. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/brightscript.js +2 -0
  1043. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bro.js +2 -0
  1044. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bsl.js +2 -0
  1045. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/c.js +2 -0
  1046. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cfscript.js +2 -0
  1047. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/chaiscript.js +2 -0
  1048. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cil.js +2 -0
  1049. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/clike.js +2 -0
  1050. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/clojure.js +2 -0
  1051. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cmake.js +2 -0
  1052. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cobol.js +2 -0
  1053. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/coffeescript.js +2 -0
  1054. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/concurnas.js +2 -0
  1055. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/coq.js +2 -0
  1056. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/core.js +2 -0
  1057. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cpp.js +2 -0
  1058. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/crystal.js +2 -0
  1059. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csharp.js +2 -0
  1060. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cshtml.js +2 -0
  1061. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csp.js +2 -0
  1062. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/css-extras.js +2 -0
  1063. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/css.js +2 -0
  1064. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csv.js +2 -0
  1065. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cypher.js +2 -0
  1066. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/d.js +2 -0
  1067. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dart.js +2 -0
  1068. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dataweave.js +2 -0
  1069. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dax.js +2 -0
  1070. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dhall.js +2 -0
  1071. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/diff.js +2 -0
  1072. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/django.js +2 -0
  1073. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dns-zone-file.js +2 -0
  1074. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/docker.js +2 -0
  1075. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dot.js +2 -0
  1076. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ebnf.js +2 -0
  1077. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/editorconfig.js +2 -0
  1078. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/eiffel.js +2 -0
  1079. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ejs.js +2 -0
  1080. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/elixir.js +2 -0
  1081. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/elm.js +2 -0
  1082. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/erb.js +2 -0
  1083. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/erlang.js +2 -0
  1084. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/etlua.js +2 -0
  1085. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/excel-formula.js +2 -0
  1086. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/factor.js +2 -0
  1087. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/false.js +2 -0
  1088. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/firestore-security-rules.js +2 -0
  1089. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/flow.js +2 -0
  1090. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/fortran.js +2 -0
  1091. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/fsharp.js +2 -0
  1092. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ftl.js +2 -0
  1093. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gap.js +2 -0
  1094. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gcode.js +2 -0
  1095. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gdscript.js +2 -0
  1096. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gedcom.js +2 -0
  1097. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gherkin.js +2 -0
  1098. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/git.js +2 -0
  1099. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/glsl.js +2 -0
  1100. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gml.js +2 -0
  1101. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gn.js +2 -0
  1102. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/go-module.js +2 -0
  1103. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/go.js +2 -0
  1104. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/a11y-dark.js +96 -0
  1105. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/a11y-light.js +96 -0
  1106. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/agate.js +99 -0
  1107. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/an-old-hope.js +96 -0
  1108. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/androidstudio.js +81 -0
  1109. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/arduino-light.js +113 -0
  1110. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/arta.js +100 -0
  1111. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/ascetic.js +67 -0
  1112. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-cave-dark.js +102 -0
  1113. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-cave-light.js +102 -0
  1114. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-dune-dark.js +90 -0
  1115. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-dune-light.js +90 -0
  1116. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-estuary-dark.js +102 -0
  1117. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-estuary-light.js +102 -0
  1118. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-forest-dark.js +90 -0
  1119. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-forest-light.js +90 -0
  1120. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-heath-dark.js +90 -0
  1121. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-heath-light.js +90 -0
  1122. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-lakeside-dark.js +90 -0
  1123. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-lakeside-light.js +90 -0
  1124. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-plateau-dark.js +102 -0
  1125. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-plateau-light.js +102 -0
  1126. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-savanna-dark.js +102 -0
  1127. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-savanna-light.js +102 -0
  1128. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-seaside-dark.js +90 -0
  1129. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-seaside-light.js +90 -0
  1130. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-sulphurpool-dark.js +90 -0
  1131. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-sulphurpool-light.js +90 -0
  1132. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-dark-reasonable.js +141 -0
  1133. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-dark.js +114 -0
  1134. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-light.js +114 -0
  1135. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/brown-paper.js +91 -0
  1136. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/codepen-embed.js +96 -0
  1137. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/color-brewer.js +99 -0
  1138. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/darcula.js +106 -0
  1139. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/dark.js +91 -0
  1140. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/darkula.js +1 -0
  1141. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/default-style.js +113 -0
  1142. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/docco.js +109 -0
  1143. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/dracula.js +91 -0
  1144. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/far.js +103 -0
  1145. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/foundation.js +98 -0
  1146. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/github-gist.js +95 -0
  1147. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/github.js +116 -0
  1148. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gml.js +112 -0
  1149. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/googlecode.js +113 -0
  1150. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gradient-dark.js +131 -0
  1151. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gradient-light.js +131 -0
  1152. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/a11y-dark.js +146 -0
  1153. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/a11y-one-light.js +516 -0
  1154. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/atom-dark.js +153 -0
  1155. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/base16-ateliersulphurpool.light.js +197 -0
  1156. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/cb.js +161 -0
  1157. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coldark-cold.js +386 -0
  1158. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coldark-dark.js +386 -0
  1159. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coy-without-shadows.js +182 -0
  1160. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coy.js +249 -0
  1161. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/darcula.js +201 -0
  1162. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/dark.js +154 -0
  1163. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/dracula.js +154 -0
  1164. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-dark.js +218 -0
  1165. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-earth.js +218 -0
  1166. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-forest.js +218 -0
  1167. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-light.js +218 -0
  1168. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-sea.js +218 -0
  1169. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-space.js +218 -0
  1170. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/funky.js +161 -0
  1171. package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/ghcolors.js +178 -0
  1172. package/dist/src/web/frontend/node_modules/.regjsparser-Rq8jDSa8/parser.js +1823 -0
  1173. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/async.js +3 -0
  1174. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/example/async.js +5 -0
  1175. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/example/sync.js +3 -0
  1176. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/index.js +6 -0
  1177. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/async.js +329 -0
  1178. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/caller.js +8 -0
  1179. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/core.js +12 -0
  1180. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/homedir.js +24 -0
  1181. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/is-core.js +5 -0
  1182. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/node-modules-paths.js +42 -0
  1183. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/normalize-options.js +10 -0
  1184. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/sync.js +208 -0
  1185. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/sync.js +3 -0
  1186. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/core.js +88 -0
  1187. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot/abc/index.js +2 -0
  1188. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot/index.js +1 -0
  1189. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot.js +29 -0
  1190. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/faulty_basedir.js +29 -0
  1191. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/filter.js +34 -0
  1192. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/filter_sync.js +33 -0
  1193. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/home_paths.js +127 -0
  1194. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/home_paths_sync.js +114 -0
  1195. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/mock.js +315 -0
  1196. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/mock_sync.js +214 -0
  1197. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/xmodules/aaa/index.js +1 -0
  1198. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/ymodules/aaa/index.js +1 -0
  1199. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/zmodules/bbb/main.js +1 -0
  1200. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir.js +56 -0
  1201. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node-modules-paths.js +143 -0
  1202. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/x/aaa/index.js +1 -0
  1203. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/x/ccc/index.js +1 -0
  1204. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/y/bbb/index.js +1 -0
  1205. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/y/ccc/index.js +1 -0
  1206. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path.js +70 -0
  1207. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/nonstring.js +9 -0
  1208. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/pathfilter/deep_ref/main.js +0 -0
  1209. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/pathfilter.js +75 -0
  1210. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa/index.js +1 -0
  1211. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa/main.js +1 -0
  1212. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa.js +1 -0
  1213. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/bbb/main.js +1 -0
  1214. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/bbb.js +1 -0
  1215. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence.js +23 -0
  1216. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/baz/doom.js +0 -0
  1217. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/baz/quux.js +1 -0
  1218. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/browser_field/a.js +0 -0
  1219. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/browser_field/b.js +0 -0
  1220. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/dot_main/index.js +1 -0
  1221. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/dot_slash_main/index.js +1 -0
  1222. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/false_main/index.js +0 -0
  1223. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/foo.js +1 -0
  1224. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/incorrect_main/index.js +2 -0
  1225. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/mug.js +0 -0
  1226. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/multirepo/packages/package-a/index.js +35 -0
  1227. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/multirepo/packages/package-b/index.js +0 -0
  1228. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/nested_symlinks/mylib/async.js +26 -0
  1229. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/nested_symlinks/mylib/sync.js +12 -0
  1230. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/other_path/lib/other-lib.js +0 -0
  1231. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/other_path/root.js +0 -0
  1232. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/quux/foo/index.js +1 -0
  1233. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/same_names/foo/index.js +1 -0
  1234. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/same_names/foo.js +1 -0
  1235. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  1236. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/symlinked/package/bar.js +1 -0
  1237. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/without_basedir/main.js +5 -0
  1238. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver.js +597 -0
  1239. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver_sync.js +730 -0
  1240. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/shadowed_core/node_modules/util/index.js +0 -0
  1241. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/shadowed_core.js +54 -0
  1242. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/subdirs.js +13 -0
  1243. package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/symlinks.js +176 -0
  1244. package/dist/src/web/frontend/node_modules/.rimraf-zmuTtFd7/bin.js +68 -0
  1245. package/dist/src/web/frontend/node_modules/.rimraf-zmuTtFd7/rimraf.js +360 -0
  1246. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/rollup.browser.js +10 -0
  1247. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/rollup.js +16 -0
  1248. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/shared/rollup.js +23954 -0
  1249. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/shared/watch.js +5003 -0
  1250. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/loadConfigFile.js +27 -0
  1251. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/rollup.browser.js +11 -0
  1252. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/rollup.js +28 -0
  1253. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/index.js +4568 -0
  1254. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/loadConfigFile.js +670 -0
  1255. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/mergeOptions.js +180 -0
  1256. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/rollup.js +23992 -0
  1257. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/watch-cli.js +511 -0
  1258. package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/watch.js +307 -0
  1259. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/bundles/rxjs.umd.js +6849 -0
  1260. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/bundles/rxjs.umd.min.js +195 -0
  1261. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/ajax/index.js +11 -0
  1262. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/fetch/index.js +6 -0
  1263. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/index.js +358 -0
  1264. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/AnyCatcher.js +3 -0
  1265. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/AsyncSubject.js +56 -0
  1266. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/BehaviorSubject.js +53 -0
  1267. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Notification.js +76 -0
  1268. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/NotificationFactories.js +21 -0
  1269. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Observable.js +105 -0
  1270. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Operator.js +3 -0
  1271. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/AjaxResponse.js +32 -0
  1272. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/ajax.js +253 -0
  1273. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/errors.js +33 -0
  1274. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/getXHRResponse.js +30 -0
  1275. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/config.js +11 -0
  1276. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/firstValueFrom.js +28 -0
  1277. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/lastValueFrom.js +31 -0
  1278. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/ConnectableObservable.js +80 -0
  1279. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindCallback.js +9 -0
  1280. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindCallbackInternals.js +103 -0
  1281. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindNodeCallback.js +9 -0
  1282. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/combineLatest.js +75 -0
  1283. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/concat.js +15 -0
  1284. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/connectable.js +31 -0
  1285. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/defer.js +12 -0
  1286. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/dom/animationFrames.js +38 -0
  1287. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/dom/fetch.js +79 -0
  1288. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/empty.js +13 -0
  1289. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/forkJoin.js +51 -0
  1290. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/from.js +10 -0
  1291. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromEvent.js +78 -0
  1292. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromEventPattern.js +24 -0
  1293. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromSubscribable.js +9 -0
  1294. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/generate.js +79 -0
  1295. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/iif.js +9 -0
  1296. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/innerFrom.js +206 -0
  1297. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/interval.js +15 -0
  1298. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/merge.js +27 -0
  1299. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/never.js +11 -0
  1300. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/of.js +15 -0
  1301. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/onErrorResumeNext.js +39 -0
  1302. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/pairs.js +9 -0
  1303. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/partition.js +11 -0
  1304. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/race.js +37 -0
  1305. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/range.js +39 -0
  1306. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/throwError.js +12 -0
  1307. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/timer.js +40 -0
  1308. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/OperatorSubscriber.js +79 -0
  1309. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/audit.js +41 -0
  1310. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/auditTime.js +12 -0
  1311. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/buffer.js +26 -0
  1312. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferCount.js +85 -0
  1313. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferTime.js +91 -0
  1314. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferToggle.js +59 -0
  1315. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferWhen.js +27 -0
  1316. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/catchError.js +31 -0
  1317. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineAll.js +6 -0
  1318. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatest.js +44 -0
  1319. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatestAll.js +10 -0
  1320. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatestWith.js +34 -0
  1321. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concat.js +40 -0
  1322. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatAll.js +9 -0
  1323. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatMap.js +10 -0
  1324. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatMapTo.js +10 -0
  1325. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatWith.js +34 -0
  1326. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/connect.js +21 -0
  1327. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/count.js +9 -0
  1328. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/debounce.js +38 -0
  1329. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/debounceTime.js +48 -0
  1330. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/defaultIfEmpty.js +21 -0
  1331. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/delay.js +13 -0
  1332. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/delayWhen.js +19 -0
  1333. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/dematerialize.js +13 -0
  1334. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinct.js +22 -0
  1335. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinctUntilChanged.js +27 -0
  1336. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinctUntilKeyChanged.js +9 -0
  1337. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/elementAt.js +19 -0
  1338. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/endWith.js +35 -0
  1339. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/every.js +21 -0
  1340. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaust.js +6 -0
  1341. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaustAll.js +10 -0
  1342. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaustMap.js +33 -0
  1343. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/expand.js +14 -0
  1344. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/filter.js +13 -0
  1345. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/finalize.js +16 -0
  1346. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/find.js +27 -0
  1347. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/findIndex.js +10 -0
  1348. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/first.js +17 -0
  1349. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/flatMap.js +6 -0
  1350. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/groupBy.js +67 -0
  1351. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/ignoreElements.js +13 -0
  1352. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/isEmpty.js +18 -0
  1353. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/joinAllInternals.js +13 -0
  1354. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/last.js +17 -0
  1355. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/map.js +15 -0
  1356. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mapTo.js +9 -0
  1357. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/materialize.js +21 -0
  1358. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/max.js +10 -0
  1359. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/merge.js +41 -0
  1360. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeAll.js +11 -0
  1361. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeInternals.js +65 -0
  1362. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeMap.js +20 -0
  1363. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeMapTo.js +17 -0
  1364. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeScan.js +16 -0
  1365. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeWith.js +34 -0
  1366. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/min.js +10 -0
  1367. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/multicast.js +17 -0
  1368. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/observeOn.js +14 -0
  1369. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/onErrorResumeNextWith.js +37 -0
  1370. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/pairwise.js +19 -0
  1371. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/partition.js +12 -0
  1372. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/pluck.js +29 -0
  1373. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publish.js +11 -0
  1374. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishBehavior.js +13 -0
  1375. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishLast.js +13 -0
  1376. package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishReplay.js +15 -0
  1377. package/package.json +3 -2
@@ -0,0 +1,1547 @@
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+ import { isChrome, isEdge, isFirefox, isLinux, isMacintosh, isSafari, isWeb, isWindows } from '../../../base/common/platform.js';
6
+ import { isFalsyOrWhitespace } from '../../../base/common/strings.js';
7
+ import { Scanner } from './scanner.js';
8
+ import { createDecorator } from '../../instantiation/common/instantiation.js';
9
+ import { localize } from '../../../nls.js';
10
+ const CONSTANT_VALUES = new Map();
11
+ CONSTANT_VALUES.set('false', false);
12
+ CONSTANT_VALUES.set('true', true);
13
+ CONSTANT_VALUES.set('isMac', isMacintosh);
14
+ CONSTANT_VALUES.set('isLinux', isLinux);
15
+ CONSTANT_VALUES.set('isWindows', isWindows);
16
+ CONSTANT_VALUES.set('isWeb', isWeb);
17
+ CONSTANT_VALUES.set('isMacNative', isMacintosh && !isWeb);
18
+ CONSTANT_VALUES.set('isEdge', isEdge);
19
+ CONSTANT_VALUES.set('isFirefox', isFirefox);
20
+ CONSTANT_VALUES.set('isChrome', isChrome);
21
+ CONSTANT_VALUES.set('isSafari', isSafari);
22
+ const hasOwnProperty = Object.prototype.hasOwnProperty;
23
+ const defaultConfig = {
24
+ regexParsingWithErrorRecovery: true
25
+ };
26
+ const errorEmptyString = localize('contextkey.parser.error.emptyString', "Empty context key expression");
27
+ const hintEmptyString = localize('contextkey.parser.error.emptyString.hint', "Did you forget to write an expression? You can also put 'false' or 'true' to always evaluate to false or true, respectively.");
28
+ const errorNoInAfterNot = localize('contextkey.parser.error.noInAfterNot', "'in' after 'not'.");
29
+ const errorClosingParenthesis = localize('contextkey.parser.error.closingParenthesis', "closing parenthesis ')'");
30
+ const errorUnexpectedToken = localize('contextkey.parser.error.unexpectedToken', "Unexpected token");
31
+ const hintUnexpectedToken = localize('contextkey.parser.error.unexpectedToken.hint', "Did you forget to put && or || before the token?");
32
+ const errorUnexpectedEOF = localize('contextkey.parser.error.unexpectedEOF', "Unexpected end of expression");
33
+ const hintUnexpectedEOF = localize('contextkey.parser.error.unexpectedEOF.hint', "Did you forget to put a context key?");
34
+ /**
35
+ * A parser for context key expressions.
36
+ *
37
+ * Example:
38
+ * ```ts
39
+ * const parser = new Parser();
40
+ * const expr = parser.parse('foo == "bar" && baz == true');
41
+ *
42
+ * if (expr === undefined) {
43
+ * // there were lexing or parsing errors
44
+ * // process lexing errors with `parser.lexingErrors`
45
+ * // process parsing errors with `parser.parsingErrors`
46
+ * } else {
47
+ * // expr is a valid expression
48
+ * }
49
+ * ```
50
+ */
51
+ export class Parser {
52
+ constructor(_config = defaultConfig) {
53
+ this._config = _config;
54
+ // lifetime note: `_scanner` lives as long as the parser does, i.e., is not reset between calls to `parse`
55
+ this._scanner = new Scanner();
56
+ // lifetime note: `_tokens`, `_current`, and `_parsingErrors` must be reset between calls to `parse`
57
+ this._tokens = [];
58
+ this._current = 0; // invariant: 0 <= this._current < this._tokens.length ; any incrementation of this value must first call `_isAtEnd`
59
+ this._parsingErrors = [];
60
+ this._flagsGYRe = /g|y/g;
61
+ }
62
+ /**
63
+ * Parse a context key expression.
64
+ *
65
+ * @param input the expression to parse
66
+ * @returns the parsed expression or `undefined` if there's an error - call `lexingErrors` and `parsingErrors` to see the errors
67
+ */
68
+ parse(input) {
69
+ if (input === '') {
70
+ this._parsingErrors.push({ message: errorEmptyString, offset: 0, lexeme: '', additionalInfo: hintEmptyString });
71
+ return undefined;
72
+ }
73
+ this._tokens = this._scanner.reset(input).scan();
74
+ // @ulugbekna: we do not stop parsing if there are lexing errors to be able to reconstruct regexes with unescaped slashes; TODO@ulugbekna: make this respect config option for recovery
75
+ this._current = 0;
76
+ this._parsingErrors = [];
77
+ try {
78
+ const expr = this._expr();
79
+ if (!this._isAtEnd()) {
80
+ const peek = this._peek();
81
+ const additionalInfo = peek.type === 17 /* TokenType.Str */ ? hintUnexpectedToken : undefined;
82
+ this._parsingErrors.push({ message: errorUnexpectedToken, offset: peek.offset, lexeme: Scanner.getLexeme(peek), additionalInfo });
83
+ throw Parser._parseError;
84
+ }
85
+ return expr;
86
+ }
87
+ catch (e) {
88
+ if (!(e === Parser._parseError)) {
89
+ throw e;
90
+ }
91
+ return undefined;
92
+ }
93
+ }
94
+ _expr() {
95
+ return this._or();
96
+ }
97
+ _or() {
98
+ const expr = [this._and()];
99
+ while (this._matchOne(16 /* TokenType.Or */)) {
100
+ const right = this._and();
101
+ expr.push(right);
102
+ }
103
+ return expr.length === 1 ? expr[0] : ContextKeyExpr.or(...expr);
104
+ }
105
+ _and() {
106
+ const expr = [this._term()];
107
+ while (this._matchOne(15 /* TokenType.And */)) {
108
+ const right = this._term();
109
+ expr.push(right);
110
+ }
111
+ return expr.length === 1 ? expr[0] : ContextKeyExpr.and(...expr);
112
+ }
113
+ _term() {
114
+ if (this._matchOne(2 /* TokenType.Neg */)) {
115
+ const peek = this._peek();
116
+ switch (peek.type) {
117
+ case 11 /* TokenType.True */:
118
+ this._advance();
119
+ return ContextKeyFalseExpr.INSTANCE;
120
+ case 12 /* TokenType.False */:
121
+ this._advance();
122
+ return ContextKeyTrueExpr.INSTANCE;
123
+ case 0 /* TokenType.LParen */: {
124
+ this._advance();
125
+ const expr = this._expr();
126
+ this._consume(1 /* TokenType.RParen */, errorClosingParenthesis);
127
+ return expr === null || expr === void 0 ? void 0 : expr.negate();
128
+ }
129
+ case 17 /* TokenType.Str */:
130
+ this._advance();
131
+ return ContextKeyNotExpr.create(peek.lexeme);
132
+ default:
133
+ throw this._errExpectedButGot(`KEY | true | false | '(' expression ')'`, peek);
134
+ }
135
+ }
136
+ return this._primary();
137
+ }
138
+ _primary() {
139
+ const peek = this._peek();
140
+ switch (peek.type) {
141
+ case 11 /* TokenType.True */:
142
+ this._advance();
143
+ return ContextKeyExpr.true();
144
+ case 12 /* TokenType.False */:
145
+ this._advance();
146
+ return ContextKeyExpr.false();
147
+ case 0 /* TokenType.LParen */: {
148
+ this._advance();
149
+ const expr = this._expr();
150
+ this._consume(1 /* TokenType.RParen */, errorClosingParenthesis);
151
+ return expr;
152
+ }
153
+ case 17 /* TokenType.Str */: {
154
+ // KEY
155
+ const key = peek.lexeme;
156
+ this._advance();
157
+ // =~ regex
158
+ if (this._matchOne(9 /* TokenType.RegexOp */)) {
159
+ // @ulugbekna: we need to reconstruct the regex from the tokens because some extensions use unescaped slashes in regexes
160
+ const expr = this._peek();
161
+ if (!this._config.regexParsingWithErrorRecovery) {
162
+ this._advance();
163
+ if (expr.type !== 10 /* TokenType.RegexStr */) {
164
+ throw this._errExpectedButGot(`REGEX`, expr);
165
+ }
166
+ const regexLexeme = expr.lexeme;
167
+ const closingSlashIndex = regexLexeme.lastIndexOf('/');
168
+ const flags = closingSlashIndex === regexLexeme.length - 1 ? undefined : this._removeFlagsGY(regexLexeme.substring(closingSlashIndex + 1));
169
+ let regexp;
170
+ try {
171
+ regexp = new RegExp(regexLexeme.substring(1, closingSlashIndex), flags);
172
+ }
173
+ catch (e) {
174
+ throw this._errExpectedButGot(`REGEX`, expr);
175
+ }
176
+ return ContextKeyRegexExpr.create(key, regexp);
177
+ }
178
+ switch (expr.type) {
179
+ case 10 /* TokenType.RegexStr */:
180
+ case 19 /* TokenType.Error */: { // also handle an ErrorToken in case of smth such as /(/file)/
181
+ const lexemeReconstruction = [expr.lexeme]; // /REGEX/ or /REGEX/FLAGS
182
+ this._advance();
183
+ let followingToken = this._peek();
184
+ let parenBalance = 0;
185
+ for (let i = 0; i < expr.lexeme.length; i++) {
186
+ if (expr.lexeme.charCodeAt(i) === 40 /* CharCode.OpenParen */) {
187
+ parenBalance++;
188
+ }
189
+ else if (expr.lexeme.charCodeAt(i) === 41 /* CharCode.CloseParen */) {
190
+ parenBalance--;
191
+ }
192
+ }
193
+ while (!this._isAtEnd() && followingToken.type !== 15 /* TokenType.And */ && followingToken.type !== 16 /* TokenType.Or */) {
194
+ switch (followingToken.type) {
195
+ case 0 /* TokenType.LParen */:
196
+ parenBalance++;
197
+ break;
198
+ case 1 /* TokenType.RParen */:
199
+ parenBalance--;
200
+ break;
201
+ case 10 /* TokenType.RegexStr */:
202
+ case 18 /* TokenType.QuotedStr */:
203
+ for (let i = 0; i < followingToken.lexeme.length; i++) {
204
+ if (followingToken.lexeme.charCodeAt(i) === 40 /* CharCode.OpenParen */) {
205
+ parenBalance++;
206
+ }
207
+ else if (expr.lexeme.charCodeAt(i) === 41 /* CharCode.CloseParen */) {
208
+ parenBalance--;
209
+ }
210
+ }
211
+ }
212
+ if (parenBalance < 0) {
213
+ break;
214
+ }
215
+ lexemeReconstruction.push(Scanner.getLexeme(followingToken));
216
+ this._advance();
217
+ followingToken = this._peek();
218
+ }
219
+ const regexLexeme = lexemeReconstruction.join('');
220
+ const closingSlashIndex = regexLexeme.lastIndexOf('/');
221
+ const flags = closingSlashIndex === regexLexeme.length - 1 ? undefined : this._removeFlagsGY(regexLexeme.substring(closingSlashIndex + 1));
222
+ let regexp;
223
+ try {
224
+ regexp = new RegExp(regexLexeme.substring(1, closingSlashIndex), flags);
225
+ }
226
+ catch (e) {
227
+ throw this._errExpectedButGot(`REGEX`, expr);
228
+ }
229
+ return ContextKeyExpr.regex(key, regexp);
230
+ }
231
+ case 18 /* TokenType.QuotedStr */: {
232
+ const serializedValue = expr.lexeme;
233
+ this._advance();
234
+ // replicate old regex parsing behavior
235
+ let regex = null;
236
+ if (!isFalsyOrWhitespace(serializedValue)) {
237
+ const start = serializedValue.indexOf('/');
238
+ const end = serializedValue.lastIndexOf('/');
239
+ if (start !== end && start >= 0) {
240
+ const value = serializedValue.slice(start + 1, end);
241
+ const caseIgnoreFlag = serializedValue[end + 1] === 'i' ? 'i' : '';
242
+ try {
243
+ regex = new RegExp(value, caseIgnoreFlag);
244
+ }
245
+ catch (_e) {
246
+ throw this._errExpectedButGot(`REGEX`, expr);
247
+ }
248
+ }
249
+ }
250
+ if (regex === null) {
251
+ throw this._errExpectedButGot('REGEX', expr);
252
+ }
253
+ return ContextKeyRegexExpr.create(key, regex);
254
+ }
255
+ default:
256
+ throw this._errExpectedButGot('REGEX', this._peek());
257
+ }
258
+ }
259
+ // [ 'not' 'in' value ]
260
+ if (this._matchOne(14 /* TokenType.Not */)) {
261
+ this._consume(13 /* TokenType.In */, errorNoInAfterNot);
262
+ const right = this._value();
263
+ return ContextKeyExpr.notIn(key, right);
264
+ }
265
+ // [ ('==' | '!=' | '<' | '<=' | '>' | '>=' | 'in') value ]
266
+ const maybeOp = this._peek().type;
267
+ switch (maybeOp) {
268
+ case 3 /* TokenType.Eq */: {
269
+ this._advance();
270
+ const right = this._value();
271
+ if (this._previous().type === 18 /* TokenType.QuotedStr */) { // to preserve old parser behavior: "foo == 'true'" is preserved as "foo == 'true'", but "foo == true" is optimized as "foo"
272
+ return ContextKeyExpr.equals(key, right);
273
+ }
274
+ switch (right) {
275
+ case 'true':
276
+ return ContextKeyExpr.has(key);
277
+ case 'false':
278
+ return ContextKeyExpr.not(key);
279
+ default:
280
+ return ContextKeyExpr.equals(key, right);
281
+ }
282
+ }
283
+ case 4 /* TokenType.NotEq */: {
284
+ this._advance();
285
+ const right = this._value();
286
+ if (this._previous().type === 18 /* TokenType.QuotedStr */) { // same as above with "foo != 'true'"
287
+ return ContextKeyExpr.notEquals(key, right);
288
+ }
289
+ switch (right) {
290
+ case 'true':
291
+ return ContextKeyExpr.not(key);
292
+ case 'false':
293
+ return ContextKeyExpr.has(key);
294
+ default:
295
+ return ContextKeyExpr.notEquals(key, right);
296
+ }
297
+ }
298
+ // TODO: ContextKeyExpr.smaller(key, right) accepts only `number` as `right` AND during eval of this node, we just eval to `false` if `right` is not a number
299
+ // consequently, package.json linter should _warn_ the user if they're passing undesired things to ops
300
+ case 5 /* TokenType.Lt */:
301
+ this._advance();
302
+ return ContextKeySmallerExpr.create(key, this._value());
303
+ case 6 /* TokenType.LtEq */:
304
+ this._advance();
305
+ return ContextKeySmallerEqualsExpr.create(key, this._value());
306
+ case 7 /* TokenType.Gt */:
307
+ this._advance();
308
+ return ContextKeyGreaterExpr.create(key, this._value());
309
+ case 8 /* TokenType.GtEq */:
310
+ this._advance();
311
+ return ContextKeyGreaterEqualsExpr.create(key, this._value());
312
+ case 13 /* TokenType.In */:
313
+ this._advance();
314
+ return ContextKeyExpr.in(key, this._value());
315
+ default:
316
+ return ContextKeyExpr.has(key);
317
+ }
318
+ }
319
+ case 20 /* TokenType.EOF */:
320
+ this._parsingErrors.push({ message: errorUnexpectedEOF, offset: peek.offset, lexeme: '', additionalInfo: hintUnexpectedEOF });
321
+ throw Parser._parseError;
322
+ default:
323
+ throw this._errExpectedButGot(`true | false | KEY \n\t| KEY '=~' REGEX \n\t| KEY ('==' | '!=' | '<' | '<=' | '>' | '>=' | 'in' | 'not' 'in') value`, this._peek());
324
+ }
325
+ }
326
+ _value() {
327
+ const token = this._peek();
328
+ switch (token.type) {
329
+ case 17 /* TokenType.Str */:
330
+ case 18 /* TokenType.QuotedStr */:
331
+ this._advance();
332
+ return token.lexeme;
333
+ case 11 /* TokenType.True */:
334
+ this._advance();
335
+ return 'true';
336
+ case 12 /* TokenType.False */:
337
+ this._advance();
338
+ return 'false';
339
+ case 13 /* TokenType.In */: // we support `in` as a value, e.g., "when": "languageId == in" - exists in existing extensions
340
+ this._advance();
341
+ return 'in';
342
+ default:
343
+ // this allows "when": "foo == " which's used by existing extensions
344
+ // we do not call `_advance` on purpose - we don't want to eat unintended tokens
345
+ return '';
346
+ }
347
+ }
348
+ _removeFlagsGY(flags) {
349
+ return flags.replaceAll(this._flagsGYRe, '');
350
+ }
351
+ // careful: this can throw if current token is the initial one (ie index = 0)
352
+ _previous() {
353
+ return this._tokens[this._current - 1];
354
+ }
355
+ _matchOne(token) {
356
+ if (this._check(token)) {
357
+ this._advance();
358
+ return true;
359
+ }
360
+ return false;
361
+ }
362
+ _advance() {
363
+ if (!this._isAtEnd()) {
364
+ this._current++;
365
+ }
366
+ return this._previous();
367
+ }
368
+ _consume(type, message) {
369
+ if (this._check(type)) {
370
+ return this._advance();
371
+ }
372
+ throw this._errExpectedButGot(message, this._peek());
373
+ }
374
+ _errExpectedButGot(expected, got, additionalInfo) {
375
+ const message = localize('contextkey.parser.error.expectedButGot', "Expected: {0}\nReceived: '{1}'.", expected, Scanner.getLexeme(got));
376
+ const offset = got.offset;
377
+ const lexeme = Scanner.getLexeme(got);
378
+ this._parsingErrors.push({ message, offset, lexeme, additionalInfo });
379
+ return Parser._parseError;
380
+ }
381
+ _check(type) {
382
+ return this._peek().type === type;
383
+ }
384
+ _peek() {
385
+ return this._tokens[this._current];
386
+ }
387
+ _isAtEnd() {
388
+ return this._peek().type === 20 /* TokenType.EOF */;
389
+ }
390
+ }
391
+ // Note: this doesn't produce an exact syntax tree but a normalized one
392
+ // ContextKeyExpression's that we use as AST nodes do not expose constructors that do not normalize
393
+ Parser._parseError = new Error();
394
+ export class ContextKeyExpr {
395
+ static false() {
396
+ return ContextKeyFalseExpr.INSTANCE;
397
+ }
398
+ static true() {
399
+ return ContextKeyTrueExpr.INSTANCE;
400
+ }
401
+ static has(key) {
402
+ return ContextKeyDefinedExpr.create(key);
403
+ }
404
+ static equals(key, value) {
405
+ return ContextKeyEqualsExpr.create(key, value);
406
+ }
407
+ static notEquals(key, value) {
408
+ return ContextKeyNotEqualsExpr.create(key, value);
409
+ }
410
+ static regex(key, value) {
411
+ return ContextKeyRegexExpr.create(key, value);
412
+ }
413
+ static in(key, value) {
414
+ return ContextKeyInExpr.create(key, value);
415
+ }
416
+ static notIn(key, value) {
417
+ return ContextKeyNotInExpr.create(key, value);
418
+ }
419
+ static not(key) {
420
+ return ContextKeyNotExpr.create(key);
421
+ }
422
+ static and(...expr) {
423
+ return ContextKeyAndExpr.create(expr, null, true);
424
+ }
425
+ static or(...expr) {
426
+ return ContextKeyOrExpr.create(expr, null, true);
427
+ }
428
+ static deserialize(serialized) {
429
+ if (serialized === undefined || serialized === null) { // an empty string needs to be handled by the parser to get a corresponding parsing error reported
430
+ return undefined;
431
+ }
432
+ const expr = this._parser.parse(serialized);
433
+ return expr;
434
+ }
435
+ }
436
+ ContextKeyExpr._parser = new Parser({ regexParsingWithErrorRecovery: false });
437
+ export function expressionsAreEqualWithConstantSubstitution(a, b) {
438
+ const aExpr = a ? a.substituteConstants() : undefined;
439
+ const bExpr = b ? b.substituteConstants() : undefined;
440
+ if (!aExpr && !bExpr) {
441
+ return true;
442
+ }
443
+ if (!aExpr || !bExpr) {
444
+ return false;
445
+ }
446
+ return aExpr.equals(bExpr);
447
+ }
448
+ function cmp(a, b) {
449
+ return a.cmp(b);
450
+ }
451
+ export class ContextKeyFalseExpr {
452
+ constructor() {
453
+ this.type = 0 /* ContextKeyExprType.False */;
454
+ }
455
+ cmp(other) {
456
+ return this.type - other.type;
457
+ }
458
+ equals(other) {
459
+ return (other.type === this.type);
460
+ }
461
+ substituteConstants() {
462
+ return this;
463
+ }
464
+ evaluate(context) {
465
+ return false;
466
+ }
467
+ serialize() {
468
+ return 'false';
469
+ }
470
+ keys() {
471
+ return [];
472
+ }
473
+ negate() {
474
+ return ContextKeyTrueExpr.INSTANCE;
475
+ }
476
+ }
477
+ ContextKeyFalseExpr.INSTANCE = new ContextKeyFalseExpr();
478
+ export class ContextKeyTrueExpr {
479
+ constructor() {
480
+ this.type = 1 /* ContextKeyExprType.True */;
481
+ }
482
+ cmp(other) {
483
+ return this.type - other.type;
484
+ }
485
+ equals(other) {
486
+ return (other.type === this.type);
487
+ }
488
+ substituteConstants() {
489
+ return this;
490
+ }
491
+ evaluate(context) {
492
+ return true;
493
+ }
494
+ serialize() {
495
+ return 'true';
496
+ }
497
+ keys() {
498
+ return [];
499
+ }
500
+ negate() {
501
+ return ContextKeyFalseExpr.INSTANCE;
502
+ }
503
+ }
504
+ ContextKeyTrueExpr.INSTANCE = new ContextKeyTrueExpr();
505
+ export class ContextKeyDefinedExpr {
506
+ static create(key, negated = null) {
507
+ const constantValue = CONSTANT_VALUES.get(key);
508
+ if (typeof constantValue === 'boolean') {
509
+ return constantValue ? ContextKeyTrueExpr.INSTANCE : ContextKeyFalseExpr.INSTANCE;
510
+ }
511
+ return new ContextKeyDefinedExpr(key, negated);
512
+ }
513
+ constructor(key, negated) {
514
+ this.key = key;
515
+ this.negated = negated;
516
+ this.type = 2 /* ContextKeyExprType.Defined */;
517
+ }
518
+ cmp(other) {
519
+ if (other.type !== this.type) {
520
+ return this.type - other.type;
521
+ }
522
+ return cmp1(this.key, other.key);
523
+ }
524
+ equals(other) {
525
+ if (other.type === this.type) {
526
+ return (this.key === other.key);
527
+ }
528
+ return false;
529
+ }
530
+ substituteConstants() {
531
+ const constantValue = CONSTANT_VALUES.get(this.key);
532
+ if (typeof constantValue === 'boolean') {
533
+ return constantValue ? ContextKeyTrueExpr.INSTANCE : ContextKeyFalseExpr.INSTANCE;
534
+ }
535
+ return this;
536
+ }
537
+ evaluate(context) {
538
+ return (!!context.getValue(this.key));
539
+ }
540
+ serialize() {
541
+ return this.key;
542
+ }
543
+ keys() {
544
+ return [this.key];
545
+ }
546
+ negate() {
547
+ if (!this.negated) {
548
+ this.negated = ContextKeyNotExpr.create(this.key, this);
549
+ }
550
+ return this.negated;
551
+ }
552
+ }
553
+ export class ContextKeyEqualsExpr {
554
+ static create(key, value, negated = null) {
555
+ if (typeof value === 'boolean') {
556
+ return (value ? ContextKeyDefinedExpr.create(key, negated) : ContextKeyNotExpr.create(key, negated));
557
+ }
558
+ const constantValue = CONSTANT_VALUES.get(key);
559
+ if (typeof constantValue === 'boolean') {
560
+ const trueValue = constantValue ? 'true' : 'false';
561
+ return (value === trueValue ? ContextKeyTrueExpr.INSTANCE : ContextKeyFalseExpr.INSTANCE);
562
+ }
563
+ return new ContextKeyEqualsExpr(key, value, negated);
564
+ }
565
+ constructor(key, value, negated) {
566
+ this.key = key;
567
+ this.value = value;
568
+ this.negated = negated;
569
+ this.type = 4 /* ContextKeyExprType.Equals */;
570
+ }
571
+ cmp(other) {
572
+ if (other.type !== this.type) {
573
+ return this.type - other.type;
574
+ }
575
+ return cmp2(this.key, this.value, other.key, other.value);
576
+ }
577
+ equals(other) {
578
+ if (other.type === this.type) {
579
+ return (this.key === other.key && this.value === other.value);
580
+ }
581
+ return false;
582
+ }
583
+ substituteConstants() {
584
+ const constantValue = CONSTANT_VALUES.get(this.key);
585
+ if (typeof constantValue === 'boolean') {
586
+ const trueValue = constantValue ? 'true' : 'false';
587
+ return (this.value === trueValue ? ContextKeyTrueExpr.INSTANCE : ContextKeyFalseExpr.INSTANCE);
588
+ }
589
+ return this;
590
+ }
591
+ evaluate(context) {
592
+ // Intentional ==
593
+ // eslint-disable-next-line eqeqeq
594
+ return (context.getValue(this.key) == this.value);
595
+ }
596
+ serialize() {
597
+ return `${this.key} == '${this.value}'`;
598
+ }
599
+ keys() {
600
+ return [this.key];
601
+ }
602
+ negate() {
603
+ if (!this.negated) {
604
+ this.negated = ContextKeyNotEqualsExpr.create(this.key, this.value, this);
605
+ }
606
+ return this.negated;
607
+ }
608
+ }
609
+ export class ContextKeyInExpr {
610
+ static create(key, valueKey) {
611
+ return new ContextKeyInExpr(key, valueKey);
612
+ }
613
+ constructor(key, valueKey) {
614
+ this.key = key;
615
+ this.valueKey = valueKey;
616
+ this.type = 10 /* ContextKeyExprType.In */;
617
+ this.negated = null;
618
+ }
619
+ cmp(other) {
620
+ if (other.type !== this.type) {
621
+ return this.type - other.type;
622
+ }
623
+ return cmp2(this.key, this.valueKey, other.key, other.valueKey);
624
+ }
625
+ equals(other) {
626
+ if (other.type === this.type) {
627
+ return (this.key === other.key && this.valueKey === other.valueKey);
628
+ }
629
+ return false;
630
+ }
631
+ substituteConstants() {
632
+ return this;
633
+ }
634
+ evaluate(context) {
635
+ const source = context.getValue(this.valueKey);
636
+ const item = context.getValue(this.key);
637
+ if (Array.isArray(source)) {
638
+ return source.includes(item);
639
+ }
640
+ if (typeof item === 'string' && typeof source === 'object' && source !== null) {
641
+ return hasOwnProperty.call(source, item);
642
+ }
643
+ return false;
644
+ }
645
+ serialize() {
646
+ return `${this.key} in '${this.valueKey}'`;
647
+ }
648
+ keys() {
649
+ return [this.key, this.valueKey];
650
+ }
651
+ negate() {
652
+ if (!this.negated) {
653
+ this.negated = ContextKeyNotInExpr.create(this.key, this.valueKey);
654
+ }
655
+ return this.negated;
656
+ }
657
+ }
658
+ export class ContextKeyNotInExpr {
659
+ static create(key, valueKey) {
660
+ return new ContextKeyNotInExpr(key, valueKey);
661
+ }
662
+ constructor(key, valueKey) {
663
+ this.key = key;
664
+ this.valueKey = valueKey;
665
+ this.type = 11 /* ContextKeyExprType.NotIn */;
666
+ this._negated = ContextKeyInExpr.create(key, valueKey);
667
+ }
668
+ cmp(other) {
669
+ if (other.type !== this.type) {
670
+ return this.type - other.type;
671
+ }
672
+ return this._negated.cmp(other._negated);
673
+ }
674
+ equals(other) {
675
+ if (other.type === this.type) {
676
+ return this._negated.equals(other._negated);
677
+ }
678
+ return false;
679
+ }
680
+ substituteConstants() {
681
+ return this;
682
+ }
683
+ evaluate(context) {
684
+ return !this._negated.evaluate(context);
685
+ }
686
+ serialize() {
687
+ return `${this.key} not in '${this.valueKey}'`;
688
+ }
689
+ keys() {
690
+ return this._negated.keys();
691
+ }
692
+ negate() {
693
+ return this._negated;
694
+ }
695
+ }
696
+ export class ContextKeyNotEqualsExpr {
697
+ static create(key, value, negated = null) {
698
+ if (typeof value === 'boolean') {
699
+ if (value) {
700
+ return ContextKeyNotExpr.create(key, negated);
701
+ }
702
+ return ContextKeyDefinedExpr.create(key, negated);
703
+ }
704
+ const constantValue = CONSTANT_VALUES.get(key);
705
+ if (typeof constantValue === 'boolean') {
706
+ const falseValue = constantValue ? 'true' : 'false';
707
+ return (value === falseValue ? ContextKeyFalseExpr.INSTANCE : ContextKeyTrueExpr.INSTANCE);
708
+ }
709
+ return new ContextKeyNotEqualsExpr(key, value, negated);
710
+ }
711
+ constructor(key, value, negated) {
712
+ this.key = key;
713
+ this.value = value;
714
+ this.negated = negated;
715
+ this.type = 5 /* ContextKeyExprType.NotEquals */;
716
+ }
717
+ cmp(other) {
718
+ if (other.type !== this.type) {
719
+ return this.type - other.type;
720
+ }
721
+ return cmp2(this.key, this.value, other.key, other.value);
722
+ }
723
+ equals(other) {
724
+ if (other.type === this.type) {
725
+ return (this.key === other.key && this.value === other.value);
726
+ }
727
+ return false;
728
+ }
729
+ substituteConstants() {
730
+ const constantValue = CONSTANT_VALUES.get(this.key);
731
+ if (typeof constantValue === 'boolean') {
732
+ const falseValue = constantValue ? 'true' : 'false';
733
+ return (this.value === falseValue ? ContextKeyFalseExpr.INSTANCE : ContextKeyTrueExpr.INSTANCE);
734
+ }
735
+ return this;
736
+ }
737
+ evaluate(context) {
738
+ // Intentional !=
739
+ // eslint-disable-next-line eqeqeq
740
+ return (context.getValue(this.key) != this.value);
741
+ }
742
+ serialize() {
743
+ return `${this.key} != '${this.value}'`;
744
+ }
745
+ keys() {
746
+ return [this.key];
747
+ }
748
+ negate() {
749
+ if (!this.negated) {
750
+ this.negated = ContextKeyEqualsExpr.create(this.key, this.value, this);
751
+ }
752
+ return this.negated;
753
+ }
754
+ }
755
+ export class ContextKeyNotExpr {
756
+ static create(key, negated = null) {
757
+ const constantValue = CONSTANT_VALUES.get(key);
758
+ if (typeof constantValue === 'boolean') {
759
+ return (constantValue ? ContextKeyFalseExpr.INSTANCE : ContextKeyTrueExpr.INSTANCE);
760
+ }
761
+ return new ContextKeyNotExpr(key, negated);
762
+ }
763
+ constructor(key, negated) {
764
+ this.key = key;
765
+ this.negated = negated;
766
+ this.type = 3 /* ContextKeyExprType.Not */;
767
+ }
768
+ cmp(other) {
769
+ if (other.type !== this.type) {
770
+ return this.type - other.type;
771
+ }
772
+ return cmp1(this.key, other.key);
773
+ }
774
+ equals(other) {
775
+ if (other.type === this.type) {
776
+ return (this.key === other.key);
777
+ }
778
+ return false;
779
+ }
780
+ substituteConstants() {
781
+ const constantValue = CONSTANT_VALUES.get(this.key);
782
+ if (typeof constantValue === 'boolean') {
783
+ return (constantValue ? ContextKeyFalseExpr.INSTANCE : ContextKeyTrueExpr.INSTANCE);
784
+ }
785
+ return this;
786
+ }
787
+ evaluate(context) {
788
+ return (!context.getValue(this.key));
789
+ }
790
+ serialize() {
791
+ return `!${this.key}`;
792
+ }
793
+ keys() {
794
+ return [this.key];
795
+ }
796
+ negate() {
797
+ if (!this.negated) {
798
+ this.negated = ContextKeyDefinedExpr.create(this.key, this);
799
+ }
800
+ return this.negated;
801
+ }
802
+ }
803
+ function withFloatOrStr(value, callback) {
804
+ if (typeof value === 'string') {
805
+ const n = parseFloat(value);
806
+ if (!isNaN(n)) {
807
+ value = n;
808
+ }
809
+ }
810
+ if (typeof value === 'string' || typeof value === 'number') {
811
+ return callback(value);
812
+ }
813
+ return ContextKeyFalseExpr.INSTANCE;
814
+ }
815
+ export class ContextKeyGreaterExpr {
816
+ static create(key, _value, negated = null) {
817
+ return withFloatOrStr(_value, (value) => new ContextKeyGreaterExpr(key, value, negated));
818
+ }
819
+ constructor(key, value, negated) {
820
+ this.key = key;
821
+ this.value = value;
822
+ this.negated = negated;
823
+ this.type = 12 /* ContextKeyExprType.Greater */;
824
+ }
825
+ cmp(other) {
826
+ if (other.type !== this.type) {
827
+ return this.type - other.type;
828
+ }
829
+ return cmp2(this.key, this.value, other.key, other.value);
830
+ }
831
+ equals(other) {
832
+ if (other.type === this.type) {
833
+ return (this.key === other.key && this.value === other.value);
834
+ }
835
+ return false;
836
+ }
837
+ substituteConstants() {
838
+ return this;
839
+ }
840
+ evaluate(context) {
841
+ if (typeof this.value === 'string') {
842
+ return false;
843
+ }
844
+ return (parseFloat(context.getValue(this.key)) > this.value);
845
+ }
846
+ serialize() {
847
+ return `${this.key} > ${this.value}`;
848
+ }
849
+ keys() {
850
+ return [this.key];
851
+ }
852
+ negate() {
853
+ if (!this.negated) {
854
+ this.negated = ContextKeySmallerEqualsExpr.create(this.key, this.value, this);
855
+ }
856
+ return this.negated;
857
+ }
858
+ }
859
+ export class ContextKeyGreaterEqualsExpr {
860
+ static create(key, _value, negated = null) {
861
+ return withFloatOrStr(_value, (value) => new ContextKeyGreaterEqualsExpr(key, value, negated));
862
+ }
863
+ constructor(key, value, negated) {
864
+ this.key = key;
865
+ this.value = value;
866
+ this.negated = negated;
867
+ this.type = 13 /* ContextKeyExprType.GreaterEquals */;
868
+ }
869
+ cmp(other) {
870
+ if (other.type !== this.type) {
871
+ return this.type - other.type;
872
+ }
873
+ return cmp2(this.key, this.value, other.key, other.value);
874
+ }
875
+ equals(other) {
876
+ if (other.type === this.type) {
877
+ return (this.key === other.key && this.value === other.value);
878
+ }
879
+ return false;
880
+ }
881
+ substituteConstants() {
882
+ return this;
883
+ }
884
+ evaluate(context) {
885
+ if (typeof this.value === 'string') {
886
+ return false;
887
+ }
888
+ return (parseFloat(context.getValue(this.key)) >= this.value);
889
+ }
890
+ serialize() {
891
+ return `${this.key} >= ${this.value}`;
892
+ }
893
+ keys() {
894
+ return [this.key];
895
+ }
896
+ negate() {
897
+ if (!this.negated) {
898
+ this.negated = ContextKeySmallerExpr.create(this.key, this.value, this);
899
+ }
900
+ return this.negated;
901
+ }
902
+ }
903
+ export class ContextKeySmallerExpr {
904
+ static create(key, _value, negated = null) {
905
+ return withFloatOrStr(_value, (value) => new ContextKeySmallerExpr(key, value, negated));
906
+ }
907
+ constructor(key, value, negated) {
908
+ this.key = key;
909
+ this.value = value;
910
+ this.negated = negated;
911
+ this.type = 14 /* ContextKeyExprType.Smaller */;
912
+ }
913
+ cmp(other) {
914
+ if (other.type !== this.type) {
915
+ return this.type - other.type;
916
+ }
917
+ return cmp2(this.key, this.value, other.key, other.value);
918
+ }
919
+ equals(other) {
920
+ if (other.type === this.type) {
921
+ return (this.key === other.key && this.value === other.value);
922
+ }
923
+ return false;
924
+ }
925
+ substituteConstants() {
926
+ return this;
927
+ }
928
+ evaluate(context) {
929
+ if (typeof this.value === 'string') {
930
+ return false;
931
+ }
932
+ return (parseFloat(context.getValue(this.key)) < this.value);
933
+ }
934
+ serialize() {
935
+ return `${this.key} < ${this.value}`;
936
+ }
937
+ keys() {
938
+ return [this.key];
939
+ }
940
+ negate() {
941
+ if (!this.negated) {
942
+ this.negated = ContextKeyGreaterEqualsExpr.create(this.key, this.value, this);
943
+ }
944
+ return this.negated;
945
+ }
946
+ }
947
+ export class ContextKeySmallerEqualsExpr {
948
+ static create(key, _value, negated = null) {
949
+ return withFloatOrStr(_value, (value) => new ContextKeySmallerEqualsExpr(key, value, negated));
950
+ }
951
+ constructor(key, value, negated) {
952
+ this.key = key;
953
+ this.value = value;
954
+ this.negated = negated;
955
+ this.type = 15 /* ContextKeyExprType.SmallerEquals */;
956
+ }
957
+ cmp(other) {
958
+ if (other.type !== this.type) {
959
+ return this.type - other.type;
960
+ }
961
+ return cmp2(this.key, this.value, other.key, other.value);
962
+ }
963
+ equals(other) {
964
+ if (other.type === this.type) {
965
+ return (this.key === other.key && this.value === other.value);
966
+ }
967
+ return false;
968
+ }
969
+ substituteConstants() {
970
+ return this;
971
+ }
972
+ evaluate(context) {
973
+ if (typeof this.value === 'string') {
974
+ return false;
975
+ }
976
+ return (parseFloat(context.getValue(this.key)) <= this.value);
977
+ }
978
+ serialize() {
979
+ return `${this.key} <= ${this.value}`;
980
+ }
981
+ keys() {
982
+ return [this.key];
983
+ }
984
+ negate() {
985
+ if (!this.negated) {
986
+ this.negated = ContextKeyGreaterExpr.create(this.key, this.value, this);
987
+ }
988
+ return this.negated;
989
+ }
990
+ }
991
+ export class ContextKeyRegexExpr {
992
+ static create(key, regexp) {
993
+ return new ContextKeyRegexExpr(key, regexp);
994
+ }
995
+ constructor(key, regexp) {
996
+ this.key = key;
997
+ this.regexp = regexp;
998
+ this.type = 7 /* ContextKeyExprType.Regex */;
999
+ this.negated = null;
1000
+ //
1001
+ }
1002
+ cmp(other) {
1003
+ if (other.type !== this.type) {
1004
+ return this.type - other.type;
1005
+ }
1006
+ if (this.key < other.key) {
1007
+ return -1;
1008
+ }
1009
+ if (this.key > other.key) {
1010
+ return 1;
1011
+ }
1012
+ const thisSource = this.regexp ? this.regexp.source : '';
1013
+ const otherSource = other.regexp ? other.regexp.source : '';
1014
+ if (thisSource < otherSource) {
1015
+ return -1;
1016
+ }
1017
+ if (thisSource > otherSource) {
1018
+ return 1;
1019
+ }
1020
+ return 0;
1021
+ }
1022
+ equals(other) {
1023
+ if (other.type === this.type) {
1024
+ const thisSource = this.regexp ? this.regexp.source : '';
1025
+ const otherSource = other.regexp ? other.regexp.source : '';
1026
+ return (this.key === other.key && thisSource === otherSource);
1027
+ }
1028
+ return false;
1029
+ }
1030
+ substituteConstants() {
1031
+ return this;
1032
+ }
1033
+ evaluate(context) {
1034
+ const value = context.getValue(this.key);
1035
+ return this.regexp ? this.regexp.test(value) : false;
1036
+ }
1037
+ serialize() {
1038
+ const value = this.regexp
1039
+ ? `/${this.regexp.source}/${this.regexp.flags}`
1040
+ : '/invalid/';
1041
+ return `${this.key} =~ ${value}`;
1042
+ }
1043
+ keys() {
1044
+ return [this.key];
1045
+ }
1046
+ negate() {
1047
+ if (!this.negated) {
1048
+ this.negated = ContextKeyNotRegexExpr.create(this);
1049
+ }
1050
+ return this.negated;
1051
+ }
1052
+ }
1053
+ export class ContextKeyNotRegexExpr {
1054
+ static create(actual) {
1055
+ return new ContextKeyNotRegexExpr(actual);
1056
+ }
1057
+ constructor(_actual) {
1058
+ this._actual = _actual;
1059
+ this.type = 8 /* ContextKeyExprType.NotRegex */;
1060
+ //
1061
+ }
1062
+ cmp(other) {
1063
+ if (other.type !== this.type) {
1064
+ return this.type - other.type;
1065
+ }
1066
+ return this._actual.cmp(other._actual);
1067
+ }
1068
+ equals(other) {
1069
+ if (other.type === this.type) {
1070
+ return this._actual.equals(other._actual);
1071
+ }
1072
+ return false;
1073
+ }
1074
+ substituteConstants() {
1075
+ return this;
1076
+ }
1077
+ evaluate(context) {
1078
+ return !this._actual.evaluate(context);
1079
+ }
1080
+ serialize() {
1081
+ return `!(${this._actual.serialize()})`;
1082
+ }
1083
+ keys() {
1084
+ return this._actual.keys();
1085
+ }
1086
+ negate() {
1087
+ return this._actual;
1088
+ }
1089
+ }
1090
+ /**
1091
+ * @returns the same instance if nothing changed.
1092
+ */
1093
+ function eliminateConstantsInArray(arr) {
1094
+ // Allocate array only if there is a difference
1095
+ let newArr = null;
1096
+ for (let i = 0, len = arr.length; i < len; i++) {
1097
+ const newExpr = arr[i].substituteConstants();
1098
+ if (arr[i] !== newExpr) {
1099
+ // something has changed!
1100
+ // allocate array on first difference
1101
+ if (newArr === null) {
1102
+ newArr = [];
1103
+ for (let j = 0; j < i; j++) {
1104
+ newArr[j] = arr[j];
1105
+ }
1106
+ }
1107
+ }
1108
+ if (newArr !== null) {
1109
+ newArr[i] = newExpr;
1110
+ }
1111
+ }
1112
+ if (newArr === null) {
1113
+ return arr;
1114
+ }
1115
+ return newArr;
1116
+ }
1117
+ export class ContextKeyAndExpr {
1118
+ static create(_expr, negated, extraRedundantCheck) {
1119
+ return ContextKeyAndExpr._normalizeArr(_expr, negated, extraRedundantCheck);
1120
+ }
1121
+ constructor(expr, negated) {
1122
+ this.expr = expr;
1123
+ this.negated = negated;
1124
+ this.type = 6 /* ContextKeyExprType.And */;
1125
+ }
1126
+ cmp(other) {
1127
+ if (other.type !== this.type) {
1128
+ return this.type - other.type;
1129
+ }
1130
+ if (this.expr.length < other.expr.length) {
1131
+ return -1;
1132
+ }
1133
+ if (this.expr.length > other.expr.length) {
1134
+ return 1;
1135
+ }
1136
+ for (let i = 0, len = this.expr.length; i < len; i++) {
1137
+ const r = cmp(this.expr[i], other.expr[i]);
1138
+ if (r !== 0) {
1139
+ return r;
1140
+ }
1141
+ }
1142
+ return 0;
1143
+ }
1144
+ equals(other) {
1145
+ if (other.type === this.type) {
1146
+ if (this.expr.length !== other.expr.length) {
1147
+ return false;
1148
+ }
1149
+ for (let i = 0, len = this.expr.length; i < len; i++) {
1150
+ if (!this.expr[i].equals(other.expr[i])) {
1151
+ return false;
1152
+ }
1153
+ }
1154
+ return true;
1155
+ }
1156
+ return false;
1157
+ }
1158
+ substituteConstants() {
1159
+ const exprArr = eliminateConstantsInArray(this.expr);
1160
+ if (exprArr === this.expr) {
1161
+ // no change
1162
+ return this;
1163
+ }
1164
+ return ContextKeyAndExpr.create(exprArr, this.negated, false);
1165
+ }
1166
+ evaluate(context) {
1167
+ for (let i = 0, len = this.expr.length; i < len; i++) {
1168
+ if (!this.expr[i].evaluate(context)) {
1169
+ return false;
1170
+ }
1171
+ }
1172
+ return true;
1173
+ }
1174
+ static _normalizeArr(arr, negated, extraRedundantCheck) {
1175
+ const expr = [];
1176
+ let hasTrue = false;
1177
+ for (const e of arr) {
1178
+ if (!e) {
1179
+ continue;
1180
+ }
1181
+ if (e.type === 1 /* ContextKeyExprType.True */) {
1182
+ // anything && true ==> anything
1183
+ hasTrue = true;
1184
+ continue;
1185
+ }
1186
+ if (e.type === 0 /* ContextKeyExprType.False */) {
1187
+ // anything && false ==> false
1188
+ return ContextKeyFalseExpr.INSTANCE;
1189
+ }
1190
+ if (e.type === 6 /* ContextKeyExprType.And */) {
1191
+ expr.push(...e.expr);
1192
+ continue;
1193
+ }
1194
+ expr.push(e);
1195
+ }
1196
+ if (expr.length === 0 && hasTrue) {
1197
+ return ContextKeyTrueExpr.INSTANCE;
1198
+ }
1199
+ if (expr.length === 0) {
1200
+ return undefined;
1201
+ }
1202
+ if (expr.length === 1) {
1203
+ return expr[0];
1204
+ }
1205
+ expr.sort(cmp);
1206
+ // eliminate duplicate terms
1207
+ for (let i = 1; i < expr.length; i++) {
1208
+ if (expr[i - 1].equals(expr[i])) {
1209
+ expr.splice(i, 1);
1210
+ i--;
1211
+ }
1212
+ }
1213
+ if (expr.length === 1) {
1214
+ return expr[0];
1215
+ }
1216
+ // We must distribute any OR expression because we don't support parens
1217
+ // OR extensions will be at the end (due to sorting rules)
1218
+ while (expr.length > 1) {
1219
+ const lastElement = expr[expr.length - 1];
1220
+ if (lastElement.type !== 9 /* ContextKeyExprType.Or */) {
1221
+ break;
1222
+ }
1223
+ // pop the last element
1224
+ expr.pop();
1225
+ // pop the second to last element
1226
+ const secondToLastElement = expr.pop();
1227
+ const isFinished = (expr.length === 0);
1228
+ // distribute `lastElement` over `secondToLastElement`
1229
+ const resultElement = ContextKeyOrExpr.create(lastElement.expr.map(el => ContextKeyAndExpr.create([el, secondToLastElement], null, extraRedundantCheck)), null, isFinished);
1230
+ if (resultElement) {
1231
+ expr.push(resultElement);
1232
+ expr.sort(cmp);
1233
+ }
1234
+ }
1235
+ if (expr.length === 1) {
1236
+ return expr[0];
1237
+ }
1238
+ // resolve false AND expressions
1239
+ if (extraRedundantCheck) {
1240
+ for (let i = 0; i < expr.length; i++) {
1241
+ for (let j = i + 1; j < expr.length; j++) {
1242
+ if (expr[i].negate().equals(expr[j])) {
1243
+ // A && !A case
1244
+ return ContextKeyFalseExpr.INSTANCE;
1245
+ }
1246
+ }
1247
+ }
1248
+ if (expr.length === 1) {
1249
+ return expr[0];
1250
+ }
1251
+ }
1252
+ return new ContextKeyAndExpr(expr, negated);
1253
+ }
1254
+ serialize() {
1255
+ return this.expr.map(e => e.serialize()).join(' && ');
1256
+ }
1257
+ keys() {
1258
+ const result = [];
1259
+ for (const expr of this.expr) {
1260
+ result.push(...expr.keys());
1261
+ }
1262
+ return result;
1263
+ }
1264
+ negate() {
1265
+ if (!this.negated) {
1266
+ const result = [];
1267
+ for (const expr of this.expr) {
1268
+ result.push(expr.negate());
1269
+ }
1270
+ this.negated = ContextKeyOrExpr.create(result, this, true);
1271
+ }
1272
+ return this.negated;
1273
+ }
1274
+ }
1275
+ export class ContextKeyOrExpr {
1276
+ static create(_expr, negated, extraRedundantCheck) {
1277
+ return ContextKeyOrExpr._normalizeArr(_expr, negated, extraRedundantCheck);
1278
+ }
1279
+ constructor(expr, negated) {
1280
+ this.expr = expr;
1281
+ this.negated = negated;
1282
+ this.type = 9 /* ContextKeyExprType.Or */;
1283
+ }
1284
+ cmp(other) {
1285
+ if (other.type !== this.type) {
1286
+ return this.type - other.type;
1287
+ }
1288
+ if (this.expr.length < other.expr.length) {
1289
+ return -1;
1290
+ }
1291
+ if (this.expr.length > other.expr.length) {
1292
+ return 1;
1293
+ }
1294
+ for (let i = 0, len = this.expr.length; i < len; i++) {
1295
+ const r = cmp(this.expr[i], other.expr[i]);
1296
+ if (r !== 0) {
1297
+ return r;
1298
+ }
1299
+ }
1300
+ return 0;
1301
+ }
1302
+ equals(other) {
1303
+ if (other.type === this.type) {
1304
+ if (this.expr.length !== other.expr.length) {
1305
+ return false;
1306
+ }
1307
+ for (let i = 0, len = this.expr.length; i < len; i++) {
1308
+ if (!this.expr[i].equals(other.expr[i])) {
1309
+ return false;
1310
+ }
1311
+ }
1312
+ return true;
1313
+ }
1314
+ return false;
1315
+ }
1316
+ substituteConstants() {
1317
+ const exprArr = eliminateConstantsInArray(this.expr);
1318
+ if (exprArr === this.expr) {
1319
+ // no change
1320
+ return this;
1321
+ }
1322
+ return ContextKeyOrExpr.create(exprArr, this.negated, false);
1323
+ }
1324
+ evaluate(context) {
1325
+ for (let i = 0, len = this.expr.length; i < len; i++) {
1326
+ if (this.expr[i].evaluate(context)) {
1327
+ return true;
1328
+ }
1329
+ }
1330
+ return false;
1331
+ }
1332
+ static _normalizeArr(arr, negated, extraRedundantCheck) {
1333
+ let expr = [];
1334
+ let hasFalse = false;
1335
+ if (arr) {
1336
+ for (let i = 0, len = arr.length; i < len; i++) {
1337
+ const e = arr[i];
1338
+ if (!e) {
1339
+ continue;
1340
+ }
1341
+ if (e.type === 0 /* ContextKeyExprType.False */) {
1342
+ // anything || false ==> anything
1343
+ hasFalse = true;
1344
+ continue;
1345
+ }
1346
+ if (e.type === 1 /* ContextKeyExprType.True */) {
1347
+ // anything || true ==> true
1348
+ return ContextKeyTrueExpr.INSTANCE;
1349
+ }
1350
+ if (e.type === 9 /* ContextKeyExprType.Or */) {
1351
+ expr = expr.concat(e.expr);
1352
+ continue;
1353
+ }
1354
+ expr.push(e);
1355
+ }
1356
+ if (expr.length === 0 && hasFalse) {
1357
+ return ContextKeyFalseExpr.INSTANCE;
1358
+ }
1359
+ expr.sort(cmp);
1360
+ }
1361
+ if (expr.length === 0) {
1362
+ return undefined;
1363
+ }
1364
+ if (expr.length === 1) {
1365
+ return expr[0];
1366
+ }
1367
+ // eliminate duplicate terms
1368
+ for (let i = 1; i < expr.length; i++) {
1369
+ if (expr[i - 1].equals(expr[i])) {
1370
+ expr.splice(i, 1);
1371
+ i--;
1372
+ }
1373
+ }
1374
+ if (expr.length === 1) {
1375
+ return expr[0];
1376
+ }
1377
+ // resolve true OR expressions
1378
+ if (extraRedundantCheck) {
1379
+ for (let i = 0; i < expr.length; i++) {
1380
+ for (let j = i + 1; j < expr.length; j++) {
1381
+ if (expr[i].negate().equals(expr[j])) {
1382
+ // A || !A case
1383
+ return ContextKeyTrueExpr.INSTANCE;
1384
+ }
1385
+ }
1386
+ }
1387
+ if (expr.length === 1) {
1388
+ return expr[0];
1389
+ }
1390
+ }
1391
+ return new ContextKeyOrExpr(expr, negated);
1392
+ }
1393
+ serialize() {
1394
+ return this.expr.map(e => e.serialize()).join(' || ');
1395
+ }
1396
+ keys() {
1397
+ const result = [];
1398
+ for (const expr of this.expr) {
1399
+ result.push(...expr.keys());
1400
+ }
1401
+ return result;
1402
+ }
1403
+ negate() {
1404
+ if (!this.negated) {
1405
+ const result = [];
1406
+ for (const expr of this.expr) {
1407
+ result.push(expr.negate());
1408
+ }
1409
+ // We don't support parens, so here we distribute the AND over the OR terminals
1410
+ // We always take the first 2 AND pairs and distribute them
1411
+ while (result.length > 1) {
1412
+ const LEFT = result.shift();
1413
+ const RIGHT = result.shift();
1414
+ const all = [];
1415
+ for (const left of getTerminals(LEFT)) {
1416
+ for (const right of getTerminals(RIGHT)) {
1417
+ all.push(ContextKeyAndExpr.create([left, right], null, false));
1418
+ }
1419
+ }
1420
+ result.unshift(ContextKeyOrExpr.create(all, null, false));
1421
+ }
1422
+ this.negated = ContextKeyOrExpr.create(result, this, true);
1423
+ }
1424
+ return this.negated;
1425
+ }
1426
+ }
1427
+ export class RawContextKey extends ContextKeyDefinedExpr {
1428
+ static all() {
1429
+ return RawContextKey._info.values();
1430
+ }
1431
+ constructor(key, defaultValue, metaOrHide) {
1432
+ super(key, null);
1433
+ this._defaultValue = defaultValue;
1434
+ // collect all context keys into a central place
1435
+ if (typeof metaOrHide === 'object') {
1436
+ RawContextKey._info.push({ ...metaOrHide, key });
1437
+ }
1438
+ else if (metaOrHide !== true) {
1439
+ RawContextKey._info.push({ key, description: metaOrHide, type: defaultValue !== null && defaultValue !== undefined ? typeof defaultValue : undefined });
1440
+ }
1441
+ }
1442
+ bindTo(target) {
1443
+ return target.createKey(this.key, this._defaultValue);
1444
+ }
1445
+ getValue(target) {
1446
+ return target.getContextKeyValue(this.key);
1447
+ }
1448
+ toNegated() {
1449
+ return this.negate();
1450
+ }
1451
+ isEqualTo(value) {
1452
+ return ContextKeyEqualsExpr.create(this.key, value);
1453
+ }
1454
+ }
1455
+ RawContextKey._info = [];
1456
+ export const IContextKeyService = createDecorator('contextKeyService');
1457
+ function cmp1(key1, key2) {
1458
+ if (key1 < key2) {
1459
+ return -1;
1460
+ }
1461
+ if (key1 > key2) {
1462
+ return 1;
1463
+ }
1464
+ return 0;
1465
+ }
1466
+ function cmp2(key1, value1, key2, value2) {
1467
+ if (key1 < key2) {
1468
+ return -1;
1469
+ }
1470
+ if (key1 > key2) {
1471
+ return 1;
1472
+ }
1473
+ if (value1 < value2) {
1474
+ return -1;
1475
+ }
1476
+ if (value1 > value2) {
1477
+ return 1;
1478
+ }
1479
+ return 0;
1480
+ }
1481
+ /**
1482
+ * Returns true if it is provable `p` implies `q`.
1483
+ */
1484
+ export function implies(p, q) {
1485
+ if (p.type === 0 /* ContextKeyExprType.False */ || q.type === 1 /* ContextKeyExprType.True */) {
1486
+ // false implies anything
1487
+ // anything implies true
1488
+ return true;
1489
+ }
1490
+ if (p.type === 9 /* ContextKeyExprType.Or */) {
1491
+ if (q.type === 9 /* ContextKeyExprType.Or */) {
1492
+ // `a || b || c` can only imply something like `a || b || c || d`
1493
+ return allElementsIncluded(p.expr, q.expr);
1494
+ }
1495
+ return false;
1496
+ }
1497
+ if (q.type === 9 /* ContextKeyExprType.Or */) {
1498
+ for (const element of q.expr) {
1499
+ if (implies(p, element)) {
1500
+ return true;
1501
+ }
1502
+ }
1503
+ return false;
1504
+ }
1505
+ if (p.type === 6 /* ContextKeyExprType.And */) {
1506
+ if (q.type === 6 /* ContextKeyExprType.And */) {
1507
+ // `a && b && c` implies `a && c`
1508
+ return allElementsIncluded(q.expr, p.expr);
1509
+ }
1510
+ for (const element of p.expr) {
1511
+ if (implies(element, q)) {
1512
+ return true;
1513
+ }
1514
+ }
1515
+ return false;
1516
+ }
1517
+ return p.equals(q);
1518
+ }
1519
+ /**
1520
+ * Returns true if all elements in `p` are also present in `q`.
1521
+ * The two arrays are assumed to be sorted
1522
+ */
1523
+ function allElementsIncluded(p, q) {
1524
+ let pIndex = 0;
1525
+ let qIndex = 0;
1526
+ while (pIndex < p.length && qIndex < q.length) {
1527
+ const cmp = p[pIndex].cmp(q[qIndex]);
1528
+ if (cmp < 0) {
1529
+ // an element from `p` is missing from `q`
1530
+ return false;
1531
+ }
1532
+ else if (cmp === 0) {
1533
+ pIndex++;
1534
+ qIndex++;
1535
+ }
1536
+ else {
1537
+ qIndex++;
1538
+ }
1539
+ }
1540
+ return (pIndex === p.length);
1541
+ }
1542
+ function getTerminals(node) {
1543
+ if (node.type === 9 /* ContextKeyExprType.Or */) {
1544
+ return node.expr;
1545
+ }
1546
+ return [node];
1547
+ }