claude-flow-novice 2.2.3 → 2.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.claude/settings.json +2 -1
- package/dist/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
- package/dist/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
- package/dist/scripts/CLEANUP_QUICK_START.md +268 -0
- package/dist/scripts/CLEANUP_TEST_RESULTS.md +205 -0
- package/dist/scripts/README.md +339 -0
- package/dist/scripts/ace-query.sh +384 -0
- package/dist/scripts/agent-token-analysis.js +430 -0
- package/dist/scripts/auto-setup.js +332 -0
- package/dist/scripts/build/README.md +167 -0
- package/dist/scripts/build/build-config.js +27 -0
- package/dist/scripts/build/build-prompt-copier.sh +30 -0
- package/dist/scripts/build/performance-monitor.js +869 -0
- package/dist/scripts/build/prepare-publish.js +150 -0
- package/dist/scripts/build/typescript-fixer.js +621 -0
- package/dist/scripts/build/unified-builder.sh +428 -0
- package/dist/scripts/build/update-bin-version.js +32 -0
- package/dist/scripts/build/validate-agents.js +238 -0
- package/dist/scripts/build-index.js +43 -0
- package/dist/scripts/build-orchestrator.js +320 -0
- package/dist/scripts/check-routing-stats.cjs +122 -0
- package/dist/scripts/ci-validation.js +375 -0
- package/dist/scripts/cleanup-blocking-coordination.sh +420 -0
- package/dist/scripts/cleanup-idle-sessions.sh +59 -0
- package/dist/scripts/collect-build-metrics.js +65 -0
- package/dist/scripts/demo/README.md +79 -0
- package/dist/scripts/demo/autoscaling-demo-simplified.js +963 -0
- package/dist/scripts/demo/comprehensive-dashboard-test.js +693 -0
- package/dist/scripts/demo/confidence-log.js +87 -0
- package/dist/scripts/demo/confidence-report.js +82 -0
- package/dist/scripts/demo/demo-multi-swarm-coordination.js +325 -0
- package/dist/scripts/demo/demo-production-deployment.js +399 -0
- package/dist/scripts/demo/demo-visualization-system.js +149 -0
- package/dist/scripts/demo/performance-analysis.cjs +71 -0
- package/dist/scripts/demo/performance-analysis.js +71 -0
- package/dist/scripts/demo/test-autoscaling-demo.js +314 -0
- package/dist/scripts/dependency-optimizer.js +349 -0
- package/dist/scripts/dependency-security-assessment.js +331 -0
- package/dist/scripts/deploy-sdk.sh +176 -0
- package/dist/scripts/deployment-readiness-report.json +179 -0
- package/dist/scripts/dev/README.md +264 -0
- package/dist/scripts/dev/claude-flow-wrapper.sh +35 -0
- package/dist/scripts/dev/claude-monitor.py +419 -0
- package/dist/scripts/dev/claude-sparc.sh +562 -0
- package/dist/scripts/dev/claude-wrapper.sh +17 -0
- package/dist/scripts/dev/demo-phase3-compliance.js +172 -0
- package/dist/scripts/dev/demo-task-system.ts +224 -0
- package/dist/scripts/dev/deployment-validator.js +315 -0
- package/dist/scripts/dev/spawn-claude-terminal.sh +32 -0
- package/dist/scripts/dev/start-portal.sh +506 -0
- package/dist/scripts/dev/start-web-ui.js +15 -0
- package/dist/scripts/dev/stop-portal.sh +311 -0
- package/dist/scripts/dev/validate-examples.ts +288 -0
- package/dist/scripts/dev/validate-phase2.cjs +451 -0
- package/dist/scripts/dev/validate-phase2.js +785 -0
- package/dist/scripts/dev/validate-phase3.cjs +208 -0
- package/dist/scripts/dev/validate-security-remediation.js +1 -0
- package/dist/scripts/ecosystem.config.cjs +90 -0
- package/dist/scripts/fix-js-extensions.js +167 -0
- package/dist/scripts/generate-basic-types.js +73 -0
- package/dist/scripts/generate-changelog.js +318 -0
- package/dist/scripts/git-hooks/pre-commit.sh +143 -0
- package/dist/scripts/health-checks.js +634 -0
- package/dist/scripts/hook-wrapper.sh +54 -0
- package/dist/scripts/install/README.md +375 -0
- package/dist/scripts/install/REDIS_SETUP_VALIDATION.json +245 -0
- package/dist/scripts/install/check-prerequisites.js +303 -0
- package/dist/scripts/install/config-wizard.js +606 -0
- package/dist/scripts/install/dependency-checker.js +385 -0
- package/dist/scripts/install/health-check.js +765 -0
- package/dist/scripts/install/install.js +256 -0
- package/dist/scripts/install/installation-benchmark.js +461 -0
- package/dist/scripts/install/quick-install.js +720 -0
- package/dist/scripts/install/quick-start-wizard.js +295 -0
- package/dist/scripts/install/redis-cli.js +289 -0
- package/dist/scripts/install/redis-install-guides.md +407 -0
- package/dist/scripts/install/redis-setup.js +559 -0
- package/dist/scripts/install/redis-test.js +278 -0
- package/dist/scripts/install/service-manager.js +672 -0
- package/dist/scripts/install/setup.js +832 -0
- package/dist/scripts/install/uninstall.js +526 -0
- package/dist/scripts/install/update.js +461 -0
- package/dist/scripts/install-pre-commit-hook.sh +127 -0
- package/dist/scripts/legacy/README.md +272 -0
- package/dist/scripts/legacy/batch-fix-ts.sh +54 -0
- package/dist/scripts/legacy/build-migration.sh +105 -0
- package/dist/scripts/legacy/build-monitor.js +209 -0
- package/dist/scripts/legacy/build-with-filter.sh +84 -0
- package/dist/scripts/legacy/build-workaround.sh +71 -0
- package/dist/scripts/legacy/fix-ts-advanced.js +358 -0
- package/dist/scripts/legacy/fix-ts-final.sh +50 -0
- package/dist/scripts/legacy/fix-ts-targeted.sh +49 -0
- package/dist/scripts/legacy/fix-typescript-errors.js +305 -0
- package/dist/scripts/legacy/force-build.sh +63 -0
- package/dist/scripts/legacy/optimize-performance.js +400 -0
- package/dist/scripts/legacy/performance-monitor.js +263 -0
- package/dist/scripts/legacy/performance-monitoring.js +532 -0
- package/dist/scripts/legacy/performance-test-runner.js +645 -0
- package/dist/scripts/legacy/quick-fix-ts.js +281 -0
- package/dist/scripts/legacy/safe-build.sh +63 -0
- package/dist/scripts/memory-monitor-coordinator.js +322 -0
- package/dist/scripts/migrate-to-sdk.sh +520 -0
- package/dist/scripts/migration/QUICK-START.md +189 -0
- package/dist/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
- package/dist/scripts/migration/README.md +464 -0
- package/dist/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
- package/dist/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
- package/dist/scripts/migration/UPDATE-PATHS-README.md +464 -0
- package/dist/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
- package/dist/scripts/migration/example-patterns.json +19 -0
- package/dist/scripts/migration/install-arm64.js +78 -0
- package/dist/scripts/migration/install.js +83 -0
- package/dist/scripts/migration/migrate-hooks.js +173 -0
- package/dist/scripts/migration/migration-examples.ts +318 -0
- package/dist/scripts/migration/reorganize-workspace.js +504 -0
- package/dist/scripts/migration/test-update-paths.js +359 -0
- package/dist/scripts/migration/update-paths.js +664 -0
- package/dist/scripts/migration/validate-migration.js +647 -0
- package/dist/scripts/monitor-loop.sh +65 -0
- package/dist/scripts/monitor-memory.sh +47 -0
- package/dist/scripts/monitor-migration.js +339 -0
- package/dist/scripts/monitor.py +43 -0
- package/dist/scripts/monitoring/README.md +178 -0
- package/dist/scripts/monitoring/alert-monitor.sh +220 -0
- package/dist/scripts/monitoring/analyze-resources.sh +199 -0
- package/dist/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
- package/dist/scripts/monitoring/dynamic-monitor.sh +85 -0
- package/dist/scripts/monitoring/launch-stability-test.sh +184 -0
- package/dist/scripts/monitoring/monitor-test.sh +93 -0
- package/dist/scripts/monitoring/pre-test-validation.sh +208 -0
- package/dist/scripts/monitoring/quick-test-alerting.sh +118 -0
- package/dist/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
- package/dist/scripts/monitoring/rate-limiting-monitor.sh +380 -0
- package/dist/scripts/monitoring/resource-monitor.sh +126 -0
- package/dist/scripts/monitoring/stability-monitor.js +429 -0
- package/dist/scripts/monitoring/test-monitor-quick.sh +54 -0
- package/dist/scripts/monitoring/view-alerts.sh +307 -0
- package/dist/scripts/npm-metrics-collector.js +482 -0
- package/dist/scripts/npm-package-validation.cjs +299 -0
- package/dist/scripts/optimization/build-optimizer.js +438 -0
- package/dist/scripts/optimization/config-validator.js +761 -0
- package/dist/scripts/optimization/test-optimization.js +432 -0
- package/dist/scripts/optimization/unified-activation.js +839 -0
- package/dist/scripts/optimize-package-swarm.js +54 -0
- package/dist/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
- package/dist/scripts/performance/sqlite-enhanced-activation.sh +583 -0
- package/dist/scripts/performance/test-enhanced-backend.sh +504 -0
- package/dist/scripts/performance-monitor.js +644 -0
- package/dist/scripts/performance-test-runner.js +698 -0
- package/dist/scripts/post-deployment-monitoring.js +350 -0
- package/dist/scripts/post-edit-pipeline.js +2091 -0
- package/dist/scripts/post-install-claude-md.js +78 -0
- package/dist/scripts/postinstall.js +79 -0
- package/dist/scripts/pre-publish-validation.cjs +212 -0
- package/dist/scripts/pre-publish-validation.js +429 -0
- package/dist/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
- package/dist/scripts/release-announcement.js +425 -0
- package/dist/scripts/release-notification.js +248 -0
- package/dist/scripts/release-rollback.js +376 -0
- package/dist/scripts/release-validation.js +460 -0
- package/dist/scripts/rollback-sdk.sh +66 -0
- package/dist/scripts/run-production-validation.ts +590 -0
- package/dist/scripts/run-stability-validation.sh +687 -0
- package/dist/scripts/security/README.md +339 -0
- package/dist/scripts/security/deployment-validation.cjs +279 -0
- package/dist/scripts/security/envelope-encryption-confidence-report.cjs +422 -0
- package/dist/scripts/security/install-git-hooks.sh +132 -0
- package/dist/scripts/security/install-git-secrets.sh +295 -0
- package/dist/scripts/security/rotate-api-keys.js +469 -0
- package/dist/scripts/security/ruv-swarm-safe.js +74 -0
- package/dist/scripts/security/security-audit.cjs +538 -0
- package/dist/scripts/security/setup-redis-auth.sh +397 -0
- package/dist/scripts/security/validate-envelope-encryption.cjs +340 -0
- package/dist/scripts/security-scan.js +492 -0
- package/dist/scripts/src/web/frontend/.claude-flow/metrics/agent-metrics.json +1 -0
- package/dist/scripts/src/web/frontend/.claude-flow/metrics/performance.json +9 -0
- package/dist/scripts/src/web/frontend/.claude-flow/metrics/task-metrics.json +10 -0
- package/dist/scripts/switch-api.sh +158 -0
- package/dist/scripts/sync-agents.js +290 -0
- package/dist/scripts/test/50-agent-test.js +625 -0
- package/dist/scripts/test/NEW_STABILITY_TEST_GUIDE.md +407 -0
- package/dist/scripts/test/README.md +236 -0
- package/dist/scripts/test/STABILITY_TEST_EXAMPLE.md +347 -0
- package/dist/scripts/test/STABILITY_TEST_README.md +480 -0
- package/dist/scripts/test/agent-worker.js +309 -0
- package/dist/scripts/test/ai-coordination-test.js +650 -0
- package/dist/scripts/test/ai-mesh-coordination-test.js +416 -0
- package/dist/scripts/test/check-links.ts +274 -0
- package/dist/scripts/test/check-performance-regression.ts +168 -0
- package/dist/scripts/test/cli-agent-coordination-test.js +313 -0
- package/dist/scripts/test/coordinator-multilingual-test.js +396 -0
- package/dist/scripts/test/coordinator-transparency-demo.js +585 -0
- package/dist/scripts/test/coverage-report.ts +692 -0
- package/dist/scripts/test/generate-swarm-tests.js +633 -0
- package/dist/scripts/test/integration-test-validation.cjs +253 -0
- package/dist/scripts/test/load-test-swarm.js +576 -0
- package/dist/scripts/test/mesh-coordination-zero-overlap-test.js +740 -0
- package/dist/scripts/test/multilingual-hello-world-test.js +390 -0
- package/dist/scripts/test/quick-multilingual-demo.js +464 -0
- package/dist/scripts/test/real-agent-test.js +312 -0
- package/dist/scripts/test/run-phase3-compliance-tests.js +427 -0
- package/dist/scripts/test/run-stability-test-examples.sh +292 -0
- package/dist/scripts/test/stability-results/stability-metrics.jsonl +83 -0
- package/dist/scripts/test/stability-results/stability-test-report.json +128 -0
- package/dist/scripts/test/stability-results/stability-test.log +1827 -0
- package/dist/scripts/test/stability-test-50-agents.js +734 -0
- package/dist/scripts/test/test-batch-tasks.ts +29 -0
- package/dist/scripts/test/test-byzantine-resolution.js +246 -0
- package/dist/scripts/test/test-claude-spawn-options.sh +63 -0
- package/dist/scripts/test/test-cli-wizard.js +331 -0
- package/dist/scripts/test/test-comprehensive.js +401 -0
- package/dist/scripts/test/test-coordination-features.ts +238 -0
- package/dist/scripts/test/test-fallback-systems.js +276 -0
- package/dist/scripts/test/test-init-command.ts +302 -0
- package/dist/scripts/test/test-mcp.ts +251 -0
- package/dist/scripts/test/test-runner.ts +568 -0
- package/dist/scripts/test/test-swarm-integration.sh +92 -0
- package/dist/scripts/test/test-swarm.ts +142 -0
- package/dist/scripts/test/validation-summary.ts +408 -0
- package/dist/scripts/test-cleanup-performance.sh +416 -0
- package/dist/scripts/test-dashboard-auth.cjs +203 -0
- package/dist/scripts/test-docker-deployment.sh +207 -0
- package/dist/scripts/test-npm-package.cjs +167 -0
- package/dist/scripts/test-provider-routing.cjs +226 -0
- package/dist/scripts/test-routing-telemetry.cjs +147 -0
- package/dist/scripts/test-runner.cjs +154 -0
- package/dist/scripts/test-zai-10k.cjs +81 -0
- package/dist/scripts/test-zai-api.cjs +191 -0
- package/dist/scripts/test-zai-diagnostic.cjs +151 -0
- package/dist/scripts/test-zai-final.cjs +128 -0
- package/dist/scripts/test-zai-with-env.cjs +85 -0
- package/dist/scripts/utils/README.md +261 -0
- package/dist/scripts/utils/clean-build-artifacts.sh +94 -0
- package/dist/scripts/utils/cleanup-root.sh +69 -0
- package/dist/scripts/utils/fix-cliffy-imports.js +307 -0
- package/dist/scripts/utils/fix-duplicate-imports.js +114 -0
- package/dist/scripts/utils/fix-error-handling.cjs +70 -0
- package/dist/scripts/utils/fix-import-paths.js +104 -0
- package/dist/scripts/utils/fix-imports.js +116 -0
- package/dist/scripts/utils/fix-shebang.js +78 -0
- package/dist/scripts/utils/fix-test-modules.js +27 -0
- package/dist/scripts/utils/fix-timezone-issue-246.js +200 -0
- package/dist/scripts/utils/fix-ts-comprehensive.py +182 -0
- package/dist/scripts/utils/fix-ts-targeted-batch.js +250 -0
- package/dist/scripts/utils/remove-benchmark-conflicts.sh +140 -0
- package/dist/scripts/utils/simple-test-fixer.js +190 -0
- package/dist/scripts/utils/validate-metrics-structure.cjs +144 -0
- package/dist/scripts/validate-agent-hooks.js +506 -0
- package/dist/scripts/validate-changelog.js +241 -0
- package/dist/scripts/validate-coordination-cli.js +69 -0
- package/dist/scripts/validate-coordination-toggle-integration.cjs +501 -0
- package/dist/scripts/validate-docker-infrastructure.sh +502 -0
- package/dist/scripts/validate-entry-points.js +300 -0
- package/dist/scripts/validate-stage3-performance.ts +377 -0
- package/dist/scripts/validate-template-bundling.js +180 -0
- package/dist/scripts/validation/README.md +33 -0
- package/dist/scripts/validation/acl-security-validation.cjs +214 -0
- package/dist/scripts/validation/acl-security-validation.js +402 -0
- package/dist/scripts/validation/byzantine-verification.js +407 -0
- package/dist/scripts/validation/final-phase-2-consensus.cjs +219 -0
- package/dist/scripts/validation/final-security-validation.js +791 -0
- package/dist/scripts/validation/final-wasm-validation.cjs +840 -0
- package/dist/scripts/validation/integration-test-analysis.js +105 -0
- package/dist/scripts/validation/phase-0-comprehensive-validation.js +474 -0
- package/dist/scripts/validation/phase-0-consensus-report.js +139 -0
- package/dist/scripts/validation/phase-0-final-report.js +112 -0
- package/dist/scripts/validation/phase-0-redis-consensus-report.js +129 -0
- package/dist/scripts/validation/phase-0-validation-improved.js +490 -0
- package/dist/scripts/validation/phase-0-validation-test.js +65 -0
- package/dist/scripts/validation/phase-1-consensus-report.cjs +342 -0
- package/dist/scripts/validation/phase-1-consensus-validation.cjs +551 -0
- package/dist/scripts/validation/phase-1-consensus-validation.js +551 -0
- package/dist/scripts/validation/phase-2-consensus-report.cjs +186 -0
- package/dist/scripts/validation/phase-2-validation.cjs +171 -0
- package/dist/scripts/validation/phase-2-validation.js +171 -0
- package/dist/scripts/validation/phase-4-consensus-report.js +181 -0
- package/dist/scripts/validation/phase-4-final-validation.js +351 -0
- package/dist/scripts/validation/phase-5-consensus-report.cjs +113 -0
- package/dist/scripts/validation/phase-5-consensus-report.js +113 -0
- package/dist/scripts/validation/security-analysis.js +49 -0
- package/dist/scripts/validation/security-validation.js +492 -0
- package/dist/scripts/validation/simple-security-validation.js +464 -0
- package/dist/scripts/verify-installation.js +112 -0
- package/dist/scripts/verify-mcp-server.js +86 -0
- package/dist/scripts/verify-sdk-phase1.cjs +293 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/clipboard/browser/clipboardService.js +141 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/clipboard/common/clipboardService.js +6 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/commands/common/commands.js +80 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configuration.js +86 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurationModels.js +554 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurationRegistry.js +317 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurations.js +41 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/browser/contextKeyService.js +432 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/common/contextkey.js +1547 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/common/contextkeys.js +18 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextMenuHandler.js +124 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextMenuService.js +101 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextView.js +7 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextViewService.js +72 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/dialogs/common/dialogs.js +2 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/dnd/browser/dnd.js +36 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/editor/common/editor.js +17 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/environment/common/environment.js +2 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/extensions/common/extensions.js +47 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/files/common/files.js +9 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/history/browser/contextScopedHistoryWidget.js +105 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/instantiation/common/descriptors.js +11 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/instantiation/common/extensions.js +15 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/keybinding/common/abstractKeybindingService.js +277 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/keybinding/common/baseResolvedKeybinding.js +53 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +354 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/theme/browser/defaultStyles.js +162 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/theme/common/colorRegistry.js +482 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/abap/abap.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/apex/apex.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/azcli/azcli.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/bat/bat.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/bicep/bicep.js +11 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cameligo/cameligo.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/clojure/clojure.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/coffee/coffee.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cpp/cpp.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/csharp/csharp.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/csp/csp.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/css/css.js +12 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cypher/cypher.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/dart/dart.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/dockerfile/dockerfile.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/ecl/ecl.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/elixir/elixir.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/flow9/flow9.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.js +745 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.de.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.es.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.fr.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.it.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ja.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ko.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ru.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.zh-cn.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.zh-tw.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/language/css/cssMode.js +13 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/language/css/cssWorker.js +81 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/cli.js +64 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/example.js +36 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/index.js +205 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/test.js +260 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.browser.js +34 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.js +35 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.native.js +26 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/index.browser.js +34 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/index.js +45 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/nanoid.js +1 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/non-secure/index.js +21 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/url-alphabet/index.js +3 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/bin/nodemon.js +16 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/cli/index.js +49 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/cli/parse.js +230 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/command.js +43 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/defaults.js +34 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/exec.js +234 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/index.js +93 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/load.js +225 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/help/index.js +27 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/index.js +4 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/match.js +287 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/run.js +562 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/signals.js +34 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/watch.js +244 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/nodemon.js +317 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/add.js +89 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/index.js +53 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/parse.js +43 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/spawn.js +74 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/bus.js +44 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/clone.js +40 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/colour.js +26 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/index.js +103 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/log.js +82 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/merge.js +47 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/version.js +100 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/brace-expansion/index.js +201 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/has-flag/index.js +8 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/minimatch/minimatch.js +947 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/supports-color/browser.js +5 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/supports-color/index.js +131 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/bin/pidtree.js +128 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/index.js +49 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/bin.js +61 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/get.js +45 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/pidtree.js +104 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/ps.js +47 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/wmic.js +49 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/doc.js +1270 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/acorn.js +15 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/angular.js +2 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/babel.js +15 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/estree.js +36 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/flow.js +19 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/glimmer.js +29 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/graphql.js +29 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/html.js +22 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/markdown.js +63 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/meriyah.js +4 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/postcss.js +54 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/typescript.js +20 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/yaml.js +160 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/standalone.js +34 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/bin/react-scripts.js +58 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/env.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/getHttpsConfig.js +74 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/babelTransform.js +37 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/cssTransform.js +22 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/fileTransform.js +40 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/modules.js +142 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/paths.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpack/persistentCache/createEnvironmentHash.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpack.config.js +796 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpackDevServer.config.js +135 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/build.js +225 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/eject.js +340 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/init.js +416 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/start.js +162 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/test.js +129 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/utils/createJestConfig.js +152 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/utils/verifyTypeScriptSetup.js +298 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/.eslintrc.js +32 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/create-element.js +1 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/async-languages/create-language-async-loader.js +33 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/async-syntax-highlighter.js +165 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/checkForListedLanguage.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/create-element.js +116 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/default-highlight.js +14 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/1c.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/abnf.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/accesslog.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/actionscript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ada.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/angelscript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/apache.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/applescript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/arcade.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/arduino.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/armasm.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/asciidoc.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/aspectj.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/autohotkey.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/autoit.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/avrasm.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/awk.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/axapta.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/bash.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/basic.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/bnf.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/brainfuck.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/c-like.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/c.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cal.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/capnproto.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ceylon.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clean.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clojure-repl.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clojure.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cmake.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/coffeescript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/coq.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cos.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cpp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/crmsh.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/crystal.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cs.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/csharp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/csp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/css.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/d.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dart.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/delphi.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/diff.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/django.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dns.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dockerfile.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dos.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dsconfig.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dts.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dust.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ebnf.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/elixir.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/elm.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erb.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erlang-repl.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erlang.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/excel.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fix.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/flix.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fortran.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fsharp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gams.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gauss.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gcode.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gherkin.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/glsl.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gml.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/go.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/golo.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gradle.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/abap.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/abnf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/actionscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ada.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/agda.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/al.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/antlr4.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apacheconf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apex.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/applescript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/aql.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arduino.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arff.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/armasm.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arturo.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asciidoc.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asm6502.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asmatmel.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/aspnet.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/autohotkey.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/autoit.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/avisynth.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/avro-idl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/awk.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bash.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/basic.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/batch.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bbcode.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bbj.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bicep.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/birb.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bison.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bnf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bqn.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/brainfuck.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/brightscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bro.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bsl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/c.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cfscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/chaiscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cil.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cilkc.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cilkcpp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/clike.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/clojure.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cmake.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cobol.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/coffeescript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/concurnas.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cooklang.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/coq.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/core.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cpp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/crystal.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csharp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cshtml.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/css-extras.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/css.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csv.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cue.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cypher.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/d.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dart.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dataweave.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dax.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dhall.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/diff.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/django.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dns-zone-file.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/docker.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dot.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ebnf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/editorconfig.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/eiffel.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ejs.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/elixir.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/elm.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/erb.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/erlang.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/etlua.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/excel-formula.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/factor.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/false.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/firestore-security-rules.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/flow.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/fortran.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/fsharp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ftl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gap.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gcode.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gdscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gedcom.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gettext.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gherkin.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/git.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/glsl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gml.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gn.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/go-module.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/go.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gradle.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/graphql.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/a11y-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/a11y-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/agate.js +105 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/an-old-hope.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/androidstudio.js +87 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/arduino-light.js +119 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/arta.js +106 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/ascetic.js +73 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-cave-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-cave-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-dune-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-dune-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-estuary-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-estuary-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-forest-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-forest-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-heath-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-heath-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-lakeside-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-lakeside-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-plateau-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-plateau-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-savanna-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-savanna-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-seaside-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-seaside-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-sulphurpool-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-sulphurpool-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-dark-reasonable.js +147 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-dark.js +120 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-light.js +120 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/brown-paper.js +97 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/codepen-embed.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/color-brewer.js +105 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/darcula.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/dark.js +97 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/darkula.js +7 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/default-style.js +119 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/docco.js +115 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/dracula.js +97 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/far.js +109 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/foundation.js +104 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/github-gist.js +101 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/github.js +122 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gml.js +118 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/googlecode.js +119 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gradient-dark.js +137 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gradient-light.js +137 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/a11y-dark.js +152 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/a11y-one-light.js +506 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/atom-dark.js +159 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/base16-ateliersulphurpool.light.js +203 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/cb.js +167 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coldark-cold.js +392 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coldark-dark.js +392 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coy-without-shadows.js +188 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coy.js +255 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/darcula.js +207 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/dark.js +160 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/dracula.js +160 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-dark.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-earth.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-forest.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-light.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-sea.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-space.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/funky.js +167 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/ghcolors.js +184 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/async-languages/create-language-async-loader.js +26 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/async-syntax-highlighter.js +158 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/checkForListedLanguage.js +4 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/create-element.js +107 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/default-highlight.js +7 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/1c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/abnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/accesslog.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/actionscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ada.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/angelscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/apache.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/applescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/arcade.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/arduino.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/armasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/asciidoc.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/aspectj.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/autohotkey.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/autoit.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/avrasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/awk.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/axapta.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/bash.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/basic.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/bnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/brainfuck.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/c-like.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/capnproto.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ceylon.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clean.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clojure-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clojure.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cmake.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/coffeescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/coq.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cpp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/crmsh.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/crystal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cs.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/csharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/csp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/css.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/d.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dart.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/delphi.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/diff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/django.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dns.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dockerfile.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dsconfig.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dts.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dust.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ebnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/elixir.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/elm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erlang-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erlang.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/excel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/flix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fortran.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fsharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gams.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gauss.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gherkin.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/glsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/go.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/golo.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gradle.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/abap.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/abnf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/actionscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ada.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/agda.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/al.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/antlr4.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apacheconf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apex.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/applescript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/aql.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arduino.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arff.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/armasm.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arturo.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asciidoc.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asm6502.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asmatmel.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/aspnet.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/autohotkey.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/autoit.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/avisynth.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/avro-idl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/awk.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bash.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/basic.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/batch.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bbcode.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bbj.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bicep.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/birb.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bison.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bnf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bqn.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/brainfuck.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/brightscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bro.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bsl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/c.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cfscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/chaiscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cil.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cilkc.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cilkcpp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/clike.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/clojure.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cmake.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cobol.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/coffeescript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/concurnas.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cooklang.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/coq.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/core.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cpp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/crystal.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csharp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cshtml.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/css-extras.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/css.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csv.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cue.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cypher.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/d.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dart.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dataweave.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dax.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dhall.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/diff.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/django.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dns-zone-file.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/docker.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dot.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ebnf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/editorconfig.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/eiffel.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ejs.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/elixir.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/elm.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/erb.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/erlang.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/etlua.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/excel-formula.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/factor.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/false.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/firestore-security-rules.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/flow.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/fortran.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/fsharp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ftl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gap.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gcode.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gdscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gedcom.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gettext.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gherkin.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/git.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/glsl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gml.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gn.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/go-module.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/go.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gradle.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/graphql.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/a11y-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/a11y-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/agate.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/an-old-hope.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/androidstudio.js +81 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/arduino-light.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/arta.js +100 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/ascetic.js +67 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-cave-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-cave-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-dune-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-dune-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-estuary-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-estuary-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-forest-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-forest-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-heath-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-heath-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-lakeside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-plateau-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-plateau-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-savanna-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-savanna-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-seaside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-seaside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-dark.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-light.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/brown-paper.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/codepen-embed.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/color-brewer.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/darcula.js +106 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/dark.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/darkula.js +1 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/default-style.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/docco.js +109 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/dracula.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/far.js +103 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/foundation.js +98 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/github-gist.js +95 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/github.js +116 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gml.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/googlecode.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gradient-dark.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gradient-light.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/a11y-dark.js +146 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/a11y-one-light.js +500 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/atom-dark.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/cb.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coldark-cold.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coldark-dark.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coy-without-shadows.js +182 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coy.js +249 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/darcula.js +201 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/dark.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/dracula.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-dark.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-earth.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-forest.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-light.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-sea.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-space.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/funky.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/ghcolors.js +178 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-languages-highlightjs.js +127 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-languages-refractor.js +130 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-stylesheets-highlightjs.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-stylesheets-refractor.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/async-languages/create-language-async-loader.js +6 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/async-syntax-highlighter.js +155 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/checkForListedLanguage.js +4 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/create-element.js +212 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/default-highlight.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/1c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/abnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/accesslog.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/actionscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ada.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/angelscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/apache.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/applescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/arcade.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/arduino.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/armasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/asciidoc.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/aspectj.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/autohotkey.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/autoit.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/avrasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/awk.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/axapta.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/bash.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/basic.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/bnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/brainfuck.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/c-like.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/capnproto.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ceylon.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clean.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clojure-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clojure.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cmake.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/coffeescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/coq.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cpp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/crmsh.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/crystal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/csharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/csp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/css.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/d.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dart.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/delphi.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/diff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/django.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dns.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dockerfile.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dsconfig.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dts.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dust.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ebnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/elixir.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/elm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erlang-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erlang.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/excel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/flix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fortran.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fsharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gams.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gauss.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gherkin.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/glsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/go.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/golo.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gradle.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/abap.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/abnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/actionscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ada.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/agda.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/al.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/antlr4.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apacheconf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apex.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/applescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/aql.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/arduino.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/arff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asciidoc.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asm6502.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asmatmel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/aspnet.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/autohotkey.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/autoit.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/avisynth.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/avro-idl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bash.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/basic.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/batch.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bbcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bicep.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/birb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bison.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/brainfuck.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/brightscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bro.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cfscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/chaiscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cil.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/clike.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/clojure.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cmake.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cobol.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/coffeescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/concurnas.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/coq.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/core.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cpp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/crystal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cshtml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/css-extras.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/css.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csv.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cypher.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/d.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dart.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dataweave.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dax.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dhall.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/diff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/django.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dns-zone-file.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/docker.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dot.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ebnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/editorconfig.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/eiffel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ejs.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/elixir.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/elm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/erb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/erlang.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/etlua.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/excel-formula.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/factor.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/false.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/firestore-security-rules.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/flow.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/fortran.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/fsharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ftl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gap.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gdscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gedcom.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gherkin.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/git.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/glsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gn.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/go-module.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/go.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/a11y-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/a11y-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/agate.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/an-old-hope.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/androidstudio.js +81 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/arduino-light.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/arta.js +100 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/ascetic.js +67 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-cave-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-cave-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-dune-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-dune-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-estuary-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-estuary-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-forest-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-forest-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-heath-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-heath-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-lakeside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-plateau-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-plateau-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-savanna-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-savanna-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-seaside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-seaside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-dark.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-light.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/brown-paper.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/codepen-embed.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/color-brewer.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/darcula.js +106 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/dark.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/darkula.js +1 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/default-style.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/docco.js +109 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/dracula.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/far.js +103 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/foundation.js +98 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/github-gist.js +95 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/github.js +116 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gml.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/googlecode.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gradient-dark.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gradient-light.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/a11y-dark.js +146 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/a11y-one-light.js +516 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/atom-dark.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/cb.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coldark-cold.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coldark-dark.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coy-without-shadows.js +182 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coy.js +249 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/darcula.js +201 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/dark.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/dracula.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-dark.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-earth.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-forest.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-light.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-sea.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-space.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/funky.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/ghcolors.js +178 -0
- package/dist/src/web/frontend/node_modules/.regjsparser-Rq8jDSa8/parser.js +1823 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/async.js +3 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/example/async.js +5 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/example/sync.js +3 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/index.js +6 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/async.js +329 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/caller.js +8 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/core.js +12 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/homedir.js +24 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/is-core.js +5 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/node-modules-paths.js +42 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/normalize-options.js +10 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/sync.js +208 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/sync.js +3 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/core.js +88 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot/abc/index.js +2 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot.js +29 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/faulty_basedir.js +29 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/filter.js +34 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/filter_sync.js +33 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/home_paths.js +127 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/home_paths_sync.js +114 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/mock.js +315 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/mock_sync.js +214 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/xmodules/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/ymodules/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/zmodules/bbb/main.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir.js +56 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node-modules-paths.js +143 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/x/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/x/ccc/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/y/bbb/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/y/ccc/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path.js +70 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/nonstring.js +9 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/pathfilter/deep_ref/main.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/pathfilter.js +75 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa/main.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/bbb/main.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/bbb.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence.js +23 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/baz/doom.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/baz/quux.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/browser_field/a.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/browser_field/b.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/dot_main/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/dot_slash_main/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/false_main/index.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/foo.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/incorrect_main/index.js +2 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/mug.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/other_path/lib/other-lib.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/other_path/root.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/quux/foo/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/same_names/foo/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/same_names/foo.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/symlinked/package/bar.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/without_basedir/main.js +5 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver.js +597 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver_sync.js +730 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/shadowed_core/node_modules/util/index.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/shadowed_core.js +54 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/subdirs.js +13 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/symlinks.js +176 -0
- package/dist/src/web/frontend/node_modules/.rimraf-zmuTtFd7/bin.js +68 -0
- package/dist/src/web/frontend/node_modules/.rimraf-zmuTtFd7/rimraf.js +360 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/rollup.browser.js +10 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/rollup.js +16 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/shared/rollup.js +23954 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/shared/watch.js +5003 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/loadConfigFile.js +27 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/rollup.browser.js +11 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/rollup.js +28 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/index.js +4568 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/loadConfigFile.js +670 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/mergeOptions.js +180 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/rollup.js +23992 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/watch-cli.js +511 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/watch.js +307 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/bundles/rxjs.umd.js +6849 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/bundles/rxjs.umd.min.js +195 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/ajax/index.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/fetch/index.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/index.js +358 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/AnyCatcher.js +3 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/AsyncSubject.js +56 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/BehaviorSubject.js +53 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Notification.js +76 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/NotificationFactories.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Observable.js +105 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Operator.js +3 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/AjaxResponse.js +32 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/ajax.js +253 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/errors.js +33 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/getXHRResponse.js +30 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/config.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/firstValueFrom.js +28 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/lastValueFrom.js +31 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/ConnectableObservable.js +80 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindCallback.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindCallbackInternals.js +103 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindNodeCallback.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/combineLatest.js +75 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/concat.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/connectable.js +31 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/defer.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/dom/animationFrames.js +38 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/dom/fetch.js +79 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/empty.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/forkJoin.js +51 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/from.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromEvent.js +78 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromEventPattern.js +24 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromSubscribable.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/generate.js +79 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/iif.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/innerFrom.js +206 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/interval.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/merge.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/never.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/of.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/onErrorResumeNext.js +39 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/pairs.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/partition.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/race.js +37 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/range.js +39 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/throwError.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/timer.js +40 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/OperatorSubscriber.js +79 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/audit.js +41 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/auditTime.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/buffer.js +26 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferCount.js +85 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferTime.js +91 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferToggle.js +59 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferWhen.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/catchError.js +31 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineAll.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatest.js +44 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatestAll.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatestWith.js +34 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concat.js +40 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatAll.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatMap.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatMapTo.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatWith.js +34 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/connect.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/count.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/debounce.js +38 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/debounceTime.js +48 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/defaultIfEmpty.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/delay.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/delayWhen.js +19 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/dematerialize.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinct.js +22 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinctUntilChanged.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinctUntilKeyChanged.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/elementAt.js +19 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/endWith.js +35 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/every.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaust.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaustAll.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaustMap.js +33 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/expand.js +14 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/filter.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/finalize.js +16 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/find.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/findIndex.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/first.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/flatMap.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/groupBy.js +67 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/ignoreElements.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/isEmpty.js +18 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/joinAllInternals.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/last.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/map.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mapTo.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/materialize.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/max.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/merge.js +41 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeAll.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeInternals.js +65 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeMap.js +20 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeMapTo.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeScan.js +16 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeWith.js +34 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/min.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/multicast.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/observeOn.js +14 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/onErrorResumeNextWith.js +37 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/pairwise.js +19 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/partition.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/pluck.js +29 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publish.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishBehavior.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishLast.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishReplay.js +15 -0
- package/package.json +11 -9
- package/scripts/.claude-flow/metrics/agent-metrics.json +1 -0
- package/scripts/.claude-flow/metrics/performance.json +9 -0
- package/scripts/.claude-flow/metrics/task-metrics.json +10 -0
- package/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
- package/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
- package/scripts/CLEANUP_QUICK_START.md +268 -0
- package/scripts/CLEANUP_TEST_RESULTS.md +205 -0
- package/scripts/README.md +339 -0
- package/scripts/ace-query.sh +384 -0
- package/scripts/agent-token-analysis.js +430 -0
- package/scripts/auto-setup.js +332 -0
- package/scripts/build/README.md +167 -0
- package/scripts/build/build-config.js +27 -0
- package/scripts/build/build-prompt-copier.sh +30 -0
- package/scripts/build/performance-monitor.js +869 -0
- package/scripts/build/prepare-publish.js +150 -0
- package/scripts/build/typescript-fixer.js +621 -0
- package/scripts/build/unified-builder.sh +428 -0
- package/scripts/build/update-bin-version.js +32 -0
- package/scripts/build/validate-agents.js +238 -0
- package/scripts/build-index.js +43 -0
- package/scripts/build-orchestrator.js +320 -0
- package/scripts/check-routing-stats.cjs +122 -0
- package/scripts/ci-validation.js +375 -0
- package/scripts/cleanup-blocking-coordination.sh +420 -0
- package/scripts/cleanup-idle-sessions.sh +59 -0
- package/scripts/collect-build-metrics.js +65 -0
- package/scripts/demo/README.md +79 -0
- package/scripts/demo/autoscaling-demo-simplified.js +963 -0
- package/scripts/demo/comprehensive-dashboard-test.js +693 -0
- package/scripts/demo/confidence-log.js +87 -0
- package/scripts/demo/confidence-report.js +82 -0
- package/scripts/demo/demo-multi-swarm-coordination.js +325 -0
- package/scripts/demo/demo-production-deployment.js +399 -0
- package/scripts/demo/demo-visualization-system.js +149 -0
- package/scripts/demo/performance-analysis.cjs +71 -0
- package/scripts/demo/performance-analysis.js +71 -0
- package/scripts/demo/test-autoscaling-demo.js +314 -0
- package/scripts/dependency-optimizer.js +349 -0
- package/scripts/dependency-security-assessment.js +331 -0
- package/scripts/deploy-sdk.sh +176 -0
- package/scripts/deployment-readiness-report.json +179 -0
- package/scripts/dev/README.md +264 -0
- package/scripts/dev/claude-flow-wrapper.sh +35 -0
- package/scripts/dev/claude-monitor.py +419 -0
- package/scripts/dev/claude-sparc.sh +562 -0
- package/scripts/dev/claude-wrapper.sh +17 -0
- package/scripts/dev/demo-phase3-compliance.js +172 -0
- package/scripts/dev/demo-task-system.ts +224 -0
- package/scripts/dev/deployment-validator.js +315 -0
- package/scripts/dev/spawn-claude-terminal.sh +32 -0
- package/scripts/dev/start-portal.sh +506 -0
- package/scripts/dev/start-web-ui.js +15 -0
- package/scripts/dev/stop-portal.sh +311 -0
- package/scripts/dev/validate-examples.ts +288 -0
- package/scripts/dev/validate-phase2.cjs +451 -0
- package/scripts/dev/validate-phase2.js +785 -0
- package/scripts/dev/validate-phase3.cjs +208 -0
- package/scripts/dev/validate-security-remediation.js +1 -0
- package/scripts/ecosystem.config.cjs +90 -0
- package/scripts/fix-js-extensions.js +167 -0
- package/scripts/generate-basic-types.js +73 -0
- package/scripts/generate-changelog.js +318 -0
- package/scripts/git-hooks/pre-commit.sh +143 -0
- package/scripts/health-checks.js +634 -0
- package/scripts/hook-wrapper.sh +54 -0
- package/scripts/install/README.md +375 -0
- package/scripts/install/REDIS_SETUP_VALIDATION.json +245 -0
- package/scripts/install/check-prerequisites.js +303 -0
- package/scripts/install/config-wizard.js +606 -0
- package/scripts/install/dependency-checker.js +385 -0
- package/scripts/install/health-check.js +765 -0
- package/scripts/install/install.js +256 -0
- package/scripts/install/installation-benchmark.js +461 -0
- package/scripts/install/quick-install.js +720 -0
- package/scripts/install/quick-start-wizard.js +295 -0
- package/scripts/install/redis-cli.js +289 -0
- package/scripts/install/redis-install-guides.md +407 -0
- package/scripts/install/redis-setup.js +559 -0
- package/scripts/install/redis-test.js +278 -0
- package/scripts/install/service-manager.js +672 -0
- package/scripts/install/setup.js +832 -0
- package/scripts/install/uninstall.js +526 -0
- package/scripts/install/update.js +461 -0
- package/scripts/install-pre-commit-hook.sh +127 -0
- package/scripts/legacy/README.md +272 -0
- package/scripts/legacy/batch-fix-ts.sh +54 -0
- package/scripts/legacy/build-migration.sh +105 -0
- package/scripts/legacy/build-monitor.js +209 -0
- package/scripts/legacy/build-with-filter.sh +84 -0
- package/scripts/legacy/build-workaround.sh +71 -0
- package/scripts/legacy/fix-ts-advanced.js +358 -0
- package/scripts/legacy/fix-ts-final.sh +50 -0
- package/scripts/legacy/fix-ts-targeted.sh +49 -0
- package/scripts/legacy/fix-typescript-errors.js +305 -0
- package/scripts/legacy/force-build.sh +63 -0
- package/scripts/legacy/optimize-performance.js +400 -0
- package/scripts/legacy/performance-monitor.js +263 -0
- package/scripts/legacy/performance-monitoring.js +532 -0
- package/scripts/legacy/performance-test-runner.js +645 -0
- package/scripts/legacy/quick-fix-ts.js +281 -0
- package/scripts/legacy/safe-build.sh +63 -0
- package/scripts/memory-monitor-coordinator.js +322 -0
- package/scripts/migrate-to-sdk.sh +520 -0
- package/scripts/migration/QUICK-START.md +189 -0
- package/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
- package/scripts/migration/README.md +464 -0
- package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
- package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
- package/scripts/migration/UPDATE-PATHS-README.md +464 -0
- package/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
- package/scripts/migration/example-patterns.json +19 -0
- package/scripts/migration/install-arm64.js +78 -0
- package/scripts/migration/install.js +83 -0
- package/scripts/migration/migrate-hooks.js +173 -0
- package/scripts/migration/migration-examples.ts +318 -0
- package/scripts/migration/reorganize-workspace.js +504 -0
- package/scripts/migration/test-update-paths.js +359 -0
- package/scripts/migration/update-paths.js +664 -0
- package/scripts/migration/validate-migration.js +647 -0
- package/scripts/monitor-loop.sh +65 -0
- package/scripts/monitor-memory.sh +47 -0
- package/scripts/monitor-migration.js +339 -0
- package/scripts/monitor.py +43 -0
- package/scripts/monitoring/README.md +178 -0
- package/scripts/monitoring/alert-monitor.sh +220 -0
- package/scripts/monitoring/analyze-resources.sh +199 -0
- package/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
- package/scripts/monitoring/dynamic-monitor.sh +85 -0
- package/scripts/monitoring/launch-stability-test.sh +184 -0
- package/scripts/monitoring/monitor-test.sh +93 -0
- package/scripts/monitoring/pre-test-validation.sh +208 -0
- package/scripts/monitoring/quick-test-alerting.sh +118 -0
- package/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
- package/scripts/monitoring/rate-limiting-monitor.sh +380 -0
- package/scripts/monitoring/resource-monitor.sh +126 -0
- package/scripts/monitoring/stability-monitor.js +429 -0
- package/scripts/monitoring/test-monitor-quick.sh +54 -0
- package/scripts/monitoring/view-alerts.sh +307 -0
- package/scripts/npm-metrics-collector.js +482 -0
- package/scripts/npm-package-validation.cjs +299 -0
- package/scripts/optimization/build-optimizer.js +438 -0
- package/scripts/optimization/config-validator.js +761 -0
- package/scripts/optimization/test-optimization.js +432 -0
- package/scripts/optimization/unified-activation.js +839 -0
- package/scripts/optimize-package-swarm.js +54 -0
- package/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
- package/scripts/performance/sqlite-enhanced-activation.sh +583 -0
- package/scripts/performance/test-enhanced-backend.sh +504 -0
- package/scripts/performance-monitor.js +644 -0
- package/scripts/performance-test-runner.js +698 -0
- package/scripts/post-deployment-monitoring.js +350 -0
- package/scripts/post-edit-pipeline.js +2091 -0
- package/scripts/post-install-claude-md.js +78 -0
- package/scripts/postinstall.js +79 -0
- package/scripts/pre-publish-validation.cjs +212 -0
- package/scripts/pre-publish-validation.js +429 -0
- package/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
- package/scripts/release-announcement.js +425 -0
- package/scripts/release-notification.js +248 -0
- package/scripts/release-rollback.js +376 -0
- package/scripts/release-validation.js +460 -0
- package/scripts/rollback-sdk.sh +66 -0
- package/scripts/run-production-validation.ts +590 -0
- package/scripts/run-stability-validation.sh +687 -0
- package/scripts/security/README.md +339 -0
- package/scripts/security/deployment-validation.cjs +279 -0
- package/scripts/security/envelope-encryption-confidence-report.cjs +422 -0
- package/scripts/security/install-git-hooks.sh +132 -0
- package/scripts/security/install-git-secrets.sh +295 -0
- package/scripts/security/rotate-api-keys.js +469 -0
- package/scripts/security/ruv-swarm-safe.js +74 -0
- package/scripts/security/security-audit.cjs +538 -0
- package/scripts/security/setup-redis-auth.sh +397 -0
- package/scripts/security/validate-envelope-encryption.cjs +340 -0
- package/scripts/security-scan.js +492 -0
- package/scripts/src/web/frontend/.claude-flow/metrics/agent-metrics.json +1 -0
- package/scripts/src/web/frontend/.claude-flow/metrics/performance.json +9 -0
- package/scripts/src/web/frontend/.claude-flow/metrics/task-metrics.json +10 -0
- package/scripts/switch-api.sh +158 -0
- package/scripts/sync-agents.js +290 -0
- package/scripts/test/50-agent-test.js +625 -0
- package/scripts/test/NEW_STABILITY_TEST_GUIDE.md +407 -0
- package/scripts/test/README.md +236 -0
- package/scripts/test/STABILITY_TEST_EXAMPLE.md +347 -0
- package/scripts/test/STABILITY_TEST_README.md +480 -0
- package/scripts/test/agent-worker.js +309 -0
- package/scripts/test/ai-coordination-test.js +650 -0
- package/scripts/test/ai-mesh-coordination-test.js +416 -0
- package/scripts/test/check-links.ts +274 -0
- package/scripts/test/check-performance-regression.ts +168 -0
- package/scripts/test/cli-agent-coordination-test.js +313 -0
- package/scripts/test/coordinator-multilingual-test.js +396 -0
- package/scripts/test/coordinator-transparency-demo.js +585 -0
- package/scripts/test/coverage-report.ts +692 -0
- package/scripts/test/generate-swarm-tests.js +633 -0
- package/scripts/test/integration-test-validation.cjs +253 -0
- package/scripts/test/load-test-swarm.js +576 -0
- package/scripts/test/mesh-coordination-zero-overlap-test.js +740 -0
- package/scripts/test/multilingual-hello-world-test.js +390 -0
- package/scripts/test/quick-multilingual-demo.js +464 -0
- package/scripts/test/real-agent-test.js +312 -0
- package/scripts/test/run-phase3-compliance-tests.js +427 -0
- package/scripts/test/run-stability-test-examples.sh +292 -0
- package/scripts/test/stability-results/stability-metrics.jsonl +83 -0
- package/scripts/test/stability-results/stability-test-report.json +128 -0
- package/scripts/test/stability-results/stability-test.log +1827 -0
- package/scripts/test/stability-test-50-agents.js +734 -0
- package/scripts/test/test-batch-tasks.ts +29 -0
- package/scripts/test/test-byzantine-resolution.js +246 -0
- package/scripts/test/test-claude-spawn-options.sh +63 -0
- package/scripts/test/test-cli-wizard.js +331 -0
- package/scripts/test/test-comprehensive.js +401 -0
- package/scripts/test/test-coordination-features.ts +238 -0
- package/scripts/test/test-fallback-systems.js +276 -0
- package/scripts/test/test-init-command.ts +302 -0
- package/scripts/test/test-mcp.ts +251 -0
- package/scripts/test/test-runner.ts +568 -0
- package/scripts/test/test-swarm-integration.sh +92 -0
- package/scripts/test/test-swarm.ts +142 -0
- package/scripts/test/validation-summary.ts +408 -0
- package/scripts/test-cleanup-performance.sh +416 -0
- package/scripts/test-dashboard-auth.cjs +203 -0
- package/scripts/test-docker-deployment.sh +207 -0
- package/scripts/test-npm-package.cjs +167 -0
- package/scripts/test-provider-routing.cjs +226 -0
- package/scripts/test-routing-telemetry.cjs +147 -0
- package/scripts/test-runner.cjs +154 -0
- package/scripts/test-zai-10k.cjs +81 -0
- package/scripts/test-zai-api.cjs +191 -0
- package/scripts/test-zai-diagnostic.cjs +151 -0
- package/scripts/test-zai-final.cjs +128 -0
- package/scripts/test-zai-with-env.cjs +85 -0
- package/scripts/utils/README.md +261 -0
- package/scripts/utils/clean-build-artifacts.sh +94 -0
- package/scripts/utils/cleanup-root.sh +69 -0
- package/scripts/utils/fix-cliffy-imports.js +307 -0
- package/scripts/utils/fix-duplicate-imports.js +114 -0
- package/scripts/utils/fix-error-handling.cjs +70 -0
- package/scripts/utils/fix-import-paths.js +104 -0
- package/scripts/utils/fix-imports.js +116 -0
- package/scripts/utils/fix-shebang.js +78 -0
- package/scripts/utils/fix-test-modules.js +27 -0
- package/scripts/utils/fix-timezone-issue-246.js +200 -0
- package/scripts/utils/fix-ts-comprehensive.py +182 -0
- package/scripts/utils/fix-ts-targeted-batch.js +250 -0
- package/scripts/utils/remove-benchmark-conflicts.sh +140 -0
- package/scripts/utils/simple-test-fixer.js +190 -0
- package/scripts/utils/validate-metrics-structure.cjs +144 -0
- package/scripts/validate-agent-hooks.js +506 -0
- package/scripts/validate-changelog.js +241 -0
- package/scripts/validate-coordination-cli.js +69 -0
- package/scripts/validate-coordination-toggle-integration.cjs +501 -0
- package/scripts/validate-docker-infrastructure.sh +502 -0
- package/scripts/validate-entry-points.js +300 -0
- package/scripts/validate-stage3-performance.ts +377 -0
- package/scripts/validate-template-bundling.js +180 -0
- package/scripts/validation/README.md +33 -0
- package/scripts/validation/acl-security-validation.cjs +214 -0
- package/scripts/validation/acl-security-validation.js +402 -0
- package/scripts/validation/byzantine-verification.js +407 -0
- package/scripts/validation/final-phase-2-consensus.cjs +219 -0
- package/scripts/validation/final-security-validation.js +791 -0
- package/scripts/validation/final-wasm-validation.cjs +840 -0
- package/scripts/validation/integration-test-analysis.js +105 -0
- package/scripts/validation/phase-0-comprehensive-validation.js +474 -0
- package/scripts/validation/phase-0-consensus-report.js +139 -0
- package/scripts/validation/phase-0-final-report.js +112 -0
- package/scripts/validation/phase-0-redis-consensus-report.js +129 -0
- package/scripts/validation/phase-0-validation-improved.js +490 -0
- package/scripts/validation/phase-0-validation-test.js +65 -0
- package/scripts/validation/phase-1-consensus-report.cjs +342 -0
- package/scripts/validation/phase-1-consensus-validation.cjs +551 -0
- package/scripts/validation/phase-1-consensus-validation.js +551 -0
- package/scripts/validation/phase-2-consensus-report.cjs +186 -0
- package/scripts/validation/phase-2-validation.cjs +171 -0
- package/scripts/validation/phase-2-validation.js +171 -0
- package/scripts/validation/phase-4-consensus-report.js +181 -0
- package/scripts/validation/phase-4-final-validation.js +351 -0
- package/scripts/validation/phase-5-consensus-report.cjs +113 -0
- package/scripts/validation/phase-5-consensus-report.js +113 -0
- package/scripts/validation/security-analysis.js +49 -0
- package/scripts/validation/security-validation.js +492 -0
- package/scripts/validation/simple-security-validation.js +464 -0
- package/scripts/verify-installation.js +112 -0
- package/scripts/verify-mcp-server.js +86 -0
- package/scripts/verify-sdk-phase1.cjs +293 -0
|
@@ -0,0 +1,482 @@
|
|
|
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 { RunOnceScheduler } from '../../../base/common/async.js';
|
|
6
|
+
import { Color, RGBA } from '../../../base/common/color.js';
|
|
7
|
+
import { Emitter } from '../../../base/common/event.js';
|
|
8
|
+
import { assertNever } from '../../../base/common/assert.js';
|
|
9
|
+
import * as nls from '../../../nls.js';
|
|
10
|
+
import { Extensions as JSONExtensions } from '../../jsonschemas/common/jsonContributionRegistry.js';
|
|
11
|
+
import * as platform from '../../registry/common/platform.js';
|
|
12
|
+
/**
|
|
13
|
+
* Returns the css variable name for the given color identifier. Dots (`.`) are replaced with hyphens (`-`) and
|
|
14
|
+
* everything is prefixed with `--vscode-`.
|
|
15
|
+
*
|
|
16
|
+
* @sample `editorSuggestWidget.background` is `--vscode-editorSuggestWidget-background`.
|
|
17
|
+
*/
|
|
18
|
+
export function asCssVariableName(colorIdent) {
|
|
19
|
+
return `--vscode-${colorIdent.replace(/\./g, '-')}`;
|
|
20
|
+
}
|
|
21
|
+
export function asCssVariable(color) {
|
|
22
|
+
return `var(${asCssVariableName(color)})`;
|
|
23
|
+
}
|
|
24
|
+
export function asCssVariableWithDefault(color, defaultCssValue) {
|
|
25
|
+
return `var(${asCssVariableName(color)}, ${defaultCssValue})`;
|
|
26
|
+
}
|
|
27
|
+
// color registry
|
|
28
|
+
export const Extensions = {
|
|
29
|
+
ColorContribution: 'base.contributions.colors'
|
|
30
|
+
};
|
|
31
|
+
class ColorRegistry {
|
|
32
|
+
constructor() {
|
|
33
|
+
this._onDidChangeSchema = new Emitter();
|
|
34
|
+
this.onDidChangeSchema = this._onDidChangeSchema.event;
|
|
35
|
+
this.colorSchema = { type: 'object', properties: {} };
|
|
36
|
+
this.colorReferenceSchema = { type: 'string', enum: [], enumDescriptions: [] };
|
|
37
|
+
this.colorsById = {};
|
|
38
|
+
}
|
|
39
|
+
registerColor(id, defaults, description, needsTransparency = false, deprecationMessage) {
|
|
40
|
+
const colorContribution = { id, description, defaults, needsTransparency, deprecationMessage };
|
|
41
|
+
this.colorsById[id] = colorContribution;
|
|
42
|
+
const propertySchema = { type: 'string', description, format: 'color-hex', defaultSnippets: [{ body: '${1:#ff0000}' }] };
|
|
43
|
+
if (deprecationMessage) {
|
|
44
|
+
propertySchema.deprecationMessage = deprecationMessage;
|
|
45
|
+
}
|
|
46
|
+
this.colorSchema.properties[id] = propertySchema;
|
|
47
|
+
this.colorReferenceSchema.enum.push(id);
|
|
48
|
+
this.colorReferenceSchema.enumDescriptions.push(description);
|
|
49
|
+
this._onDidChangeSchema.fire();
|
|
50
|
+
return id;
|
|
51
|
+
}
|
|
52
|
+
getColors() {
|
|
53
|
+
return Object.keys(this.colorsById).map(id => this.colorsById[id]);
|
|
54
|
+
}
|
|
55
|
+
resolveDefaultColor(id, theme) {
|
|
56
|
+
const colorDesc = this.colorsById[id];
|
|
57
|
+
if (colorDesc && colorDesc.defaults) {
|
|
58
|
+
const colorValue = colorDesc.defaults[theme.type];
|
|
59
|
+
return resolveColorValue(colorValue, theme);
|
|
60
|
+
}
|
|
61
|
+
return undefined;
|
|
62
|
+
}
|
|
63
|
+
getColorSchema() {
|
|
64
|
+
return this.colorSchema;
|
|
65
|
+
}
|
|
66
|
+
toString() {
|
|
67
|
+
const sorter = (a, b) => {
|
|
68
|
+
const cat1 = a.indexOf('.') === -1 ? 0 : 1;
|
|
69
|
+
const cat2 = b.indexOf('.') === -1 ? 0 : 1;
|
|
70
|
+
if (cat1 !== cat2) {
|
|
71
|
+
return cat1 - cat2;
|
|
72
|
+
}
|
|
73
|
+
return a.localeCompare(b);
|
|
74
|
+
};
|
|
75
|
+
return Object.keys(this.colorsById).sort(sorter).map(k => `- \`${k}\`: ${this.colorsById[k].description}`).join('\n');
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
const colorRegistry = new ColorRegistry();
|
|
79
|
+
platform.Registry.add(Extensions.ColorContribution, colorRegistry);
|
|
80
|
+
export function registerColor(id, defaults, description, needsTransparency, deprecationMessage) {
|
|
81
|
+
return colorRegistry.registerColor(id, defaults, description, needsTransparency, deprecationMessage);
|
|
82
|
+
}
|
|
83
|
+
// ----- base colors
|
|
84
|
+
export const foreground = registerColor('foreground', { dark: '#CCCCCC', light: '#616161', hcDark: '#FFFFFF', hcLight: '#292929' }, nls.localize('foreground', "Overall foreground color. This color is only used if not overridden by a component."));
|
|
85
|
+
export const disabledForeground = registerColor('disabledForeground', { dark: '#CCCCCC80', light: '#61616180', hcDark: '#A5A5A5', hcLight: '#7F7F7F' }, nls.localize('disabledForeground', "Overall foreground for disabled elements. This color is only used if not overridden by a component."));
|
|
86
|
+
export const errorForeground = registerColor('errorForeground', { dark: '#F48771', light: '#A1260D', hcDark: '#F48771', hcLight: '#B5200D' }, nls.localize('errorForeground', "Overall foreground color for error messages. This color is only used if not overridden by a component."));
|
|
87
|
+
export const descriptionForeground = registerColor('descriptionForeground', { light: '#717171', dark: transparent(foreground, 0.7), hcDark: transparent(foreground, 0.7), hcLight: transparent(foreground, 0.7) }, nls.localize('descriptionForeground', "Foreground color for description text providing additional information, for example for a label."));
|
|
88
|
+
export const iconForeground = registerColor('icon.foreground', { dark: '#C5C5C5', light: '#424242', hcDark: '#FFFFFF', hcLight: '#292929' }, nls.localize('iconForeground', "The default color for icons in the workbench."));
|
|
89
|
+
export const focusBorder = registerColor('focusBorder', { dark: '#007FD4', light: '#0090F1', hcDark: '#F38518', hcLight: '#006BBD' }, nls.localize('focusBorder', "Overall border color for focused elements. This color is only used if not overridden by a component."));
|
|
90
|
+
export const contrastBorder = registerColor('contrastBorder', { light: null, dark: null, hcDark: '#6FC3DF', hcLight: '#0F4A85' }, nls.localize('contrastBorder', "An extra border around elements to separate them from others for greater contrast."));
|
|
91
|
+
export const activeContrastBorder = registerColor('contrastActiveBorder', { light: null, dark: null, hcDark: focusBorder, hcLight: focusBorder }, nls.localize('activeContrastBorder', "An extra border around active elements to separate them from others for greater contrast."));
|
|
92
|
+
export const selectionBackground = registerColor('selection.background', { light: null, dark: null, hcDark: null, hcLight: null }, nls.localize('selectionBackground', "The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor."));
|
|
93
|
+
// ------ text colors
|
|
94
|
+
export const textSeparatorForeground = registerColor('textSeparator.foreground', { light: '#0000002e', dark: '#ffffff2e', hcDark: Color.black, hcLight: '#292929' }, nls.localize('textSeparatorForeground', "Color for text separators."));
|
|
95
|
+
export const textLinkForeground = registerColor('textLink.foreground', { light: '#006AB1', dark: '#3794FF', hcDark: '#3794FF', hcLight: '#0F4A85' }, nls.localize('textLinkForeground', "Foreground color for links in text."));
|
|
96
|
+
export const textLinkActiveForeground = registerColor('textLink.activeForeground', { light: '#006AB1', dark: '#3794FF', hcDark: '#3794FF', hcLight: '#0F4A85' }, nls.localize('textLinkActiveForeground', "Foreground color for links in text when clicked on and on mouse hover."));
|
|
97
|
+
export const textPreformatForeground = registerColor('textPreformat.foreground', { light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' }, nls.localize('textPreformatForeground', "Foreground color for preformatted text segments."));
|
|
98
|
+
export const textPreformatBackground = registerColor('textPreformat.background', { light: '#0000001A', dark: '#FFFFFF1A', hcDark: '#FFFFFF', hcLight: '#09345f' }, nls.localize('textPreformatBackground', "Background color for preformatted text segments."));
|
|
99
|
+
export const textBlockQuoteBackground = registerColor('textBlockQuote.background', { light: '#f2f2f2', dark: '#222222', hcDark: null, hcLight: '#F2F2F2' }, nls.localize('textBlockQuoteBackground', "Background color for block quotes in text."));
|
|
100
|
+
export const textBlockQuoteBorder = registerColor('textBlockQuote.border', { light: '#007acc80', dark: '#007acc80', hcDark: Color.white, hcLight: '#292929' }, nls.localize('textBlockQuoteBorder', "Border color for block quotes in text."));
|
|
101
|
+
export const textCodeBlockBackground = registerColor('textCodeBlock.background', { light: '#dcdcdc66', dark: '#0a0a0a66', hcDark: Color.black, hcLight: '#F2F2F2' }, nls.localize('textCodeBlockBackground', "Background color for code blocks in text."));
|
|
102
|
+
// ----- widgets
|
|
103
|
+
export const widgetShadow = registerColor('widget.shadow', { dark: transparent(Color.black, .36), light: transparent(Color.black, .16), hcDark: null, hcLight: null }, nls.localize('widgetShadow', 'Shadow color of widgets such as find/replace inside the editor.'));
|
|
104
|
+
export const widgetBorder = registerColor('widget.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('widgetBorder', 'Border color of widgets such as find/replace inside the editor.'));
|
|
105
|
+
export const inputBackground = registerColor('input.background', { dark: '#3C3C3C', light: Color.white, hcDark: Color.black, hcLight: Color.white }, nls.localize('inputBoxBackground', "Input box background."));
|
|
106
|
+
export const inputForeground = registerColor('input.foreground', { dark: foreground, light: foreground, hcDark: foreground, hcLight: foreground }, nls.localize('inputBoxForeground', "Input box foreground."));
|
|
107
|
+
export const inputBorder = registerColor('input.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('inputBoxBorder', "Input box border."));
|
|
108
|
+
export const inputActiveOptionBorder = registerColor('inputOption.activeBorder', { dark: '#007ACC', light: '#007ACC', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('inputBoxActiveOptionBorder', "Border color of activated options in input fields."));
|
|
109
|
+
export const inputActiveOptionHoverBackground = registerColor('inputOption.hoverBackground', { dark: '#5a5d5e80', light: '#b8b8b850', hcDark: null, hcLight: null }, nls.localize('inputOption.hoverBackground', "Background color of activated options in input fields."));
|
|
110
|
+
export const inputActiveOptionBackground = registerColor('inputOption.activeBackground', { dark: transparent(focusBorder, 0.4), light: transparent(focusBorder, 0.2), hcDark: Color.transparent, hcLight: Color.transparent }, nls.localize('inputOption.activeBackground', "Background hover color of options in input fields."));
|
|
111
|
+
export const inputActiveOptionForeground = registerColor('inputOption.activeForeground', { dark: Color.white, light: Color.black, hcDark: foreground, hcLight: foreground }, nls.localize('inputOption.activeForeground', "Foreground color of activated options in input fields."));
|
|
112
|
+
export const inputPlaceholderForeground = registerColor('input.placeholderForeground', { light: transparent(foreground, 0.5), dark: transparent(foreground, 0.5), hcDark: transparent(foreground, 0.7), hcLight: transparent(foreground, 0.7) }, nls.localize('inputPlaceholderForeground', "Input box foreground color for placeholder text."));
|
|
113
|
+
export const inputValidationInfoBackground = registerColor('inputValidation.infoBackground', { dark: '#063B49', light: '#D6ECF2', hcDark: Color.black, hcLight: Color.white }, nls.localize('inputValidationInfoBackground', "Input validation background color for information severity."));
|
|
114
|
+
export const inputValidationInfoForeground = registerColor('inputValidation.infoForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, nls.localize('inputValidationInfoForeground', "Input validation foreground color for information severity."));
|
|
115
|
+
export const inputValidationInfoBorder = registerColor('inputValidation.infoBorder', { dark: '#007acc', light: '#007acc', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('inputValidationInfoBorder', "Input validation border color for information severity."));
|
|
116
|
+
export const inputValidationWarningBackground = registerColor('inputValidation.warningBackground', { dark: '#352A05', light: '#F6F5D2', hcDark: Color.black, hcLight: Color.white }, nls.localize('inputValidationWarningBackground', "Input validation background color for warning severity."));
|
|
117
|
+
export const inputValidationWarningForeground = registerColor('inputValidation.warningForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, nls.localize('inputValidationWarningForeground', "Input validation foreground color for warning severity."));
|
|
118
|
+
export const inputValidationWarningBorder = registerColor('inputValidation.warningBorder', { dark: '#B89500', light: '#B89500', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('inputValidationWarningBorder', "Input validation border color for warning severity."));
|
|
119
|
+
export const inputValidationErrorBackground = registerColor('inputValidation.errorBackground', { dark: '#5A1D1D', light: '#F2DEDE', hcDark: Color.black, hcLight: Color.white }, nls.localize('inputValidationErrorBackground', "Input validation background color for error severity."));
|
|
120
|
+
export const inputValidationErrorForeground = registerColor('inputValidation.errorForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, nls.localize('inputValidationErrorForeground', "Input validation foreground color for error severity."));
|
|
121
|
+
export const inputValidationErrorBorder = registerColor('inputValidation.errorBorder', { dark: '#BE1100', light: '#BE1100', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('inputValidationErrorBorder', "Input validation border color for error severity."));
|
|
122
|
+
export const selectBackground = registerColor('dropdown.background', { dark: '#3C3C3C', light: Color.white, hcDark: Color.black, hcLight: Color.white }, nls.localize('dropdownBackground', "Dropdown background."));
|
|
123
|
+
export const selectListBackground = registerColor('dropdown.listBackground', { dark: null, light: null, hcDark: Color.black, hcLight: Color.white }, nls.localize('dropdownListBackground', "Dropdown list background."));
|
|
124
|
+
export const selectForeground = registerColor('dropdown.foreground', { dark: '#F0F0F0', light: foreground, hcDark: Color.white, hcLight: foreground }, nls.localize('dropdownForeground', "Dropdown foreground."));
|
|
125
|
+
export const selectBorder = registerColor('dropdown.border', { dark: selectBackground, light: '#CECECE', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('dropdownBorder', "Dropdown border."));
|
|
126
|
+
export const buttonForeground = registerColor('button.foreground', { dark: Color.white, light: Color.white, hcDark: Color.white, hcLight: Color.white }, nls.localize('buttonForeground', "Button foreground color."));
|
|
127
|
+
export const buttonSeparator = registerColor('button.separator', { dark: transparent(buttonForeground, .4), light: transparent(buttonForeground, .4), hcDark: transparent(buttonForeground, .4), hcLight: transparent(buttonForeground, .4) }, nls.localize('buttonSeparator', "Button separator color."));
|
|
128
|
+
export const buttonBackground = registerColor('button.background', { dark: '#0E639C', light: '#007ACC', hcDark: null, hcLight: '#0F4A85' }, nls.localize('buttonBackground', "Button background color."));
|
|
129
|
+
export const buttonHoverBackground = registerColor('button.hoverBackground', { dark: lighten(buttonBackground, 0.2), light: darken(buttonBackground, 0.2), hcDark: buttonBackground, hcLight: buttonBackground }, nls.localize('buttonHoverBackground', "Button background color when hovering."));
|
|
130
|
+
export const buttonBorder = registerColor('button.border', { dark: contrastBorder, light: contrastBorder, hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('buttonBorder', "Button border color."));
|
|
131
|
+
export const buttonSecondaryForeground = registerColor('button.secondaryForeground', { dark: Color.white, light: Color.white, hcDark: Color.white, hcLight: foreground }, nls.localize('buttonSecondaryForeground', "Secondary button foreground color."));
|
|
132
|
+
export const buttonSecondaryBackground = registerColor('button.secondaryBackground', { dark: '#3A3D41', light: '#5F6A79', hcDark: null, hcLight: Color.white }, nls.localize('buttonSecondaryBackground', "Secondary button background color."));
|
|
133
|
+
export const buttonSecondaryHoverBackground = registerColor('button.secondaryHoverBackground', { dark: lighten(buttonSecondaryBackground, 0.2), light: darken(buttonSecondaryBackground, 0.2), hcDark: null, hcLight: null }, nls.localize('buttonSecondaryHoverBackground', "Secondary button background color when hovering."));
|
|
134
|
+
export const badgeBackground = registerColor('badge.background', { dark: '#4D4D4D', light: '#C4C4C4', hcDark: Color.black, hcLight: '#0F4A85' }, nls.localize('badgeBackground', "Badge background color. Badges are small information labels, e.g. for search results count."));
|
|
135
|
+
export const badgeForeground = registerColor('badge.foreground', { dark: Color.white, light: '#333', hcDark: Color.white, hcLight: Color.white }, nls.localize('badgeForeground', "Badge foreground color. Badges are small information labels, e.g. for search results count."));
|
|
136
|
+
export const scrollbarShadow = registerColor('scrollbar.shadow', { dark: '#000000', light: '#DDDDDD', hcDark: null, hcLight: null }, nls.localize('scrollbarShadow', "Scrollbar shadow to indicate that the view is scrolled."));
|
|
137
|
+
export const scrollbarSliderBackground = registerColor('scrollbarSlider.background', { dark: Color.fromHex('#797979').transparent(0.4), light: Color.fromHex('#646464').transparent(0.4), hcDark: transparent(contrastBorder, 0.6), hcLight: transparent(contrastBorder, 0.4) }, nls.localize('scrollbarSliderBackground', "Scrollbar slider background color."));
|
|
138
|
+
export const scrollbarSliderHoverBackground = registerColor('scrollbarSlider.hoverBackground', { dark: Color.fromHex('#646464').transparent(0.7), light: Color.fromHex('#646464').transparent(0.7), hcDark: transparent(contrastBorder, 0.8), hcLight: transparent(contrastBorder, 0.8) }, nls.localize('scrollbarSliderHoverBackground', "Scrollbar slider background color when hovering."));
|
|
139
|
+
export const scrollbarSliderActiveBackground = registerColor('scrollbarSlider.activeBackground', { dark: Color.fromHex('#BFBFBF').transparent(0.4), light: Color.fromHex('#000000').transparent(0.6), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('scrollbarSliderActiveBackground', "Scrollbar slider background color when clicked on."));
|
|
140
|
+
export const progressBarBackground = registerColor('progressBar.background', { dark: Color.fromHex('#0E70C0'), light: Color.fromHex('#0E70C0'), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('progressBarBackground', "Background color of the progress bar that can show for long running operations."));
|
|
141
|
+
export const editorErrorBackground = registerColor('editorError.background', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('editorError.background', 'Background color of error text in the editor. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
142
|
+
export const editorErrorForeground = registerColor('editorError.foreground', { dark: '#F14C4C', light: '#E51400', hcDark: '#F48771', hcLight: '#B5200D' }, nls.localize('editorError.foreground', 'Foreground color of error squigglies in the editor.'));
|
|
143
|
+
export const editorErrorBorder = registerColor('editorError.border', { dark: null, light: null, hcDark: Color.fromHex('#E47777').transparent(0.8), hcLight: '#B5200D' }, nls.localize('errorBorder', 'If set, color of double underlines for errors in the editor.'));
|
|
144
|
+
export const editorWarningBackground = registerColor('editorWarning.background', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('editorWarning.background', 'Background color of warning text in the editor. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
145
|
+
export const editorWarningForeground = registerColor('editorWarning.foreground', { dark: '#CCA700', light: '#BF8803', hcDark: '#FFD370', hcLight: '#895503' }, nls.localize('editorWarning.foreground', 'Foreground color of warning squigglies in the editor.'));
|
|
146
|
+
export const editorWarningBorder = registerColor('editorWarning.border', { dark: null, light: null, hcDark: Color.fromHex('#FFCC00').transparent(0.8), hcLight: Color.fromHex('#FFCC00').transparent(0.8) }, nls.localize('warningBorder', 'If set, color of double underlines for warnings in the editor.'));
|
|
147
|
+
export const editorInfoBackground = registerColor('editorInfo.background', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('editorInfo.background', 'Background color of info text in the editor. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
148
|
+
export const editorInfoForeground = registerColor('editorInfo.foreground', { dark: '#3794FF', light: '#1a85ff', hcDark: '#3794FF', hcLight: '#1a85ff' }, nls.localize('editorInfo.foreground', 'Foreground color of info squigglies in the editor.'));
|
|
149
|
+
export const editorInfoBorder = registerColor('editorInfo.border', { dark: null, light: null, hcDark: Color.fromHex('#3794FF').transparent(0.8), hcLight: '#292929' }, nls.localize('infoBorder', 'If set, color of double underlines for infos in the editor.'));
|
|
150
|
+
export const editorHintForeground = registerColor('editorHint.foreground', { dark: Color.fromHex('#eeeeee').transparent(0.7), light: '#6c6c6c', hcDark: null, hcLight: null }, nls.localize('editorHint.foreground', 'Foreground color of hint squigglies in the editor.'));
|
|
151
|
+
export const editorHintBorder = registerColor('editorHint.border', { dark: null, light: null, hcDark: Color.fromHex('#eeeeee').transparent(0.8), hcLight: '#292929' }, nls.localize('hintBorder', 'If set, color of double underlines for hints in the editor.'));
|
|
152
|
+
export const sashHoverBorder = registerColor('sash.hoverBorder', { dark: focusBorder, light: focusBorder, hcDark: focusBorder, hcLight: focusBorder }, nls.localize('sashActiveBorder', "Border color of active sashes."));
|
|
153
|
+
/**
|
|
154
|
+
* Editor background color.
|
|
155
|
+
*/
|
|
156
|
+
export const editorBackground = registerColor('editor.background', { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, nls.localize('editorBackground', "Editor background color."));
|
|
157
|
+
/**
|
|
158
|
+
* Editor foreground color.
|
|
159
|
+
*/
|
|
160
|
+
export const editorForeground = registerColor('editor.foreground', { light: '#333333', dark: '#BBBBBB', hcDark: Color.white, hcLight: foreground }, nls.localize('editorForeground', "Editor default foreground color."));
|
|
161
|
+
/**
|
|
162
|
+
* Sticky scroll
|
|
163
|
+
*/
|
|
164
|
+
export const editorStickyScrollBackground = registerColor('editorStickyScroll.background', { light: editorBackground, dark: editorBackground, hcDark: editorBackground, hcLight: editorBackground }, nls.localize('editorStickyScrollBackground', "Sticky scroll background color for the editor"));
|
|
165
|
+
export const editorStickyScrollHoverBackground = registerColor('editorStickyScrollHover.background', { dark: '#2A2D2E', light: '#F0F0F0', hcDark: null, hcLight: Color.fromHex('#0F4A85').transparent(0.1) }, nls.localize('editorStickyScrollHoverBackground', "Sticky scroll on hover background color for the editor"));
|
|
166
|
+
/**
|
|
167
|
+
* Editor widgets
|
|
168
|
+
*/
|
|
169
|
+
export const editorWidgetBackground = registerColor('editorWidget.background', { dark: '#252526', light: '#F3F3F3', hcDark: '#0C141F', hcLight: Color.white }, nls.localize('editorWidgetBackground', 'Background color of editor widgets, such as find/replace.'));
|
|
170
|
+
export const editorWidgetForeground = registerColor('editorWidget.foreground', { dark: foreground, light: foreground, hcDark: foreground, hcLight: foreground }, nls.localize('editorWidgetForeground', 'Foreground color of editor widgets, such as find/replace.'));
|
|
171
|
+
export const editorWidgetBorder = registerColor('editorWidget.border', { dark: '#454545', light: '#C8C8C8', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('editorWidgetBorder', 'Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.'));
|
|
172
|
+
export const editorWidgetResizeBorder = registerColor('editorWidget.resizeBorder', { light: null, dark: null, hcDark: null, hcLight: null }, nls.localize('editorWidgetResizeBorder', "Border color of the resize bar of editor widgets. The color is only used if the widget chooses to have a resize border and if the color is not overridden by a widget."));
|
|
173
|
+
/**
|
|
174
|
+
* Quick pick widget
|
|
175
|
+
*/
|
|
176
|
+
export const quickInputBackground = registerColor('quickInput.background', { dark: editorWidgetBackground, light: editorWidgetBackground, hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, nls.localize('pickerBackground', "Quick picker background color. The quick picker widget is the container for pickers like the command palette."));
|
|
177
|
+
export const quickInputForeground = registerColor('quickInput.foreground', { dark: editorWidgetForeground, light: editorWidgetForeground, hcDark: editorWidgetForeground, hcLight: editorWidgetForeground }, nls.localize('pickerForeground', "Quick picker foreground color. The quick picker widget is the container for pickers like the command palette."));
|
|
178
|
+
export const quickInputTitleBackground = registerColor('quickInputTitle.background', { dark: new Color(new RGBA(255, 255, 255, 0.105)), light: new Color(new RGBA(0, 0, 0, 0.06)), hcDark: '#000000', hcLight: Color.white }, nls.localize('pickerTitleBackground', "Quick picker title background color. The quick picker widget is the container for pickers like the command palette."));
|
|
179
|
+
export const pickerGroupForeground = registerColor('pickerGroup.foreground', { dark: '#3794FF', light: '#0066BF', hcDark: Color.white, hcLight: '#0F4A85' }, nls.localize('pickerGroupForeground', "Quick picker color for grouping labels."));
|
|
180
|
+
export const pickerGroupBorder = registerColor('pickerGroup.border', { dark: '#3F3F46', light: '#CCCEDB', hcDark: Color.white, hcLight: '#0F4A85' }, nls.localize('pickerGroupBorder', "Quick picker color for grouping borders."));
|
|
181
|
+
/**
|
|
182
|
+
* Keybinding label
|
|
183
|
+
*/
|
|
184
|
+
export const keybindingLabelBackground = registerColor('keybindingLabel.background', { dark: new Color(new RGBA(128, 128, 128, 0.17)), light: new Color(new RGBA(221, 221, 221, 0.4)), hcDark: Color.transparent, hcLight: Color.transparent }, nls.localize('keybindingLabelBackground', "Keybinding label background color. The keybinding label is used to represent a keyboard shortcut."));
|
|
185
|
+
export const keybindingLabelForeground = registerColor('keybindingLabel.foreground', { dark: Color.fromHex('#CCCCCC'), light: Color.fromHex('#555555'), hcDark: Color.white, hcLight: foreground }, nls.localize('keybindingLabelForeground', "Keybinding label foreground color. The keybinding label is used to represent a keyboard shortcut."));
|
|
186
|
+
export const keybindingLabelBorder = registerColor('keybindingLabel.border', { dark: new Color(new RGBA(51, 51, 51, 0.6)), light: new Color(new RGBA(204, 204, 204, 0.4)), hcDark: new Color(new RGBA(111, 195, 223)), hcLight: contrastBorder }, nls.localize('keybindingLabelBorder', "Keybinding label border color. The keybinding label is used to represent a keyboard shortcut."));
|
|
187
|
+
export const keybindingLabelBottomBorder = registerColor('keybindingLabel.bottomBorder', { dark: new Color(new RGBA(68, 68, 68, 0.6)), light: new Color(new RGBA(187, 187, 187, 0.4)), hcDark: new Color(new RGBA(111, 195, 223)), hcLight: foreground }, nls.localize('keybindingLabelBottomBorder', "Keybinding label border bottom color. The keybinding label is used to represent a keyboard shortcut."));
|
|
188
|
+
/**
|
|
189
|
+
* Editor selection colors.
|
|
190
|
+
*/
|
|
191
|
+
export const editorSelectionBackground = registerColor('editor.selectionBackground', { light: '#ADD6FF', dark: '#264F78', hcDark: '#f3f518', hcLight: '#0F4A85' }, nls.localize('editorSelectionBackground', "Color of the editor selection."));
|
|
192
|
+
export const editorSelectionForeground = registerColor('editor.selectionForeground', { light: null, dark: null, hcDark: '#000000', hcLight: Color.white }, nls.localize('editorSelectionForeground', "Color of the selected text for high contrast."));
|
|
193
|
+
export const editorInactiveSelection = registerColor('editor.inactiveSelectionBackground', { light: transparent(editorSelectionBackground, 0.5), dark: transparent(editorSelectionBackground, 0.5), hcDark: transparent(editorSelectionBackground, 0.7), hcLight: transparent(editorSelectionBackground, 0.5) }, nls.localize('editorInactiveSelection', "Color of the selection in an inactive editor. The color must not be opaque so as not to hide underlying decorations."), true);
|
|
194
|
+
export const editorSelectionHighlight = registerColor('editor.selectionHighlightBackground', { light: lessProminent(editorSelectionBackground, editorBackground, 0.3, 0.6), dark: lessProminent(editorSelectionBackground, editorBackground, 0.3, 0.6), hcDark: null, hcLight: null }, nls.localize('editorSelectionHighlight', 'Color for regions with the same content as the selection. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
195
|
+
export const editorSelectionHighlightBorder = registerColor('editor.selectionHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, nls.localize('editorSelectionHighlightBorder', "Border color for regions with the same content as the selection."));
|
|
196
|
+
/**
|
|
197
|
+
* Editor find match colors.
|
|
198
|
+
*/
|
|
199
|
+
export const editorFindMatch = registerColor('editor.findMatchBackground', { light: '#A8AC94', dark: '#515C6A', hcDark: null, hcLight: null }, nls.localize('editorFindMatch', "Color of the current search match."));
|
|
200
|
+
export const editorFindMatchHighlight = registerColor('editor.findMatchHighlightBackground', { light: '#EA5C0055', dark: '#EA5C0055', hcDark: null, hcLight: null }, nls.localize('findMatchHighlight', "Color of the other search matches. The color must not be opaque so as not to hide underlying decorations."), true);
|
|
201
|
+
export const editorFindRangeHighlight = registerColor('editor.findRangeHighlightBackground', { dark: '#3a3d4166', light: '#b4b4b44d', hcDark: null, hcLight: null }, nls.localize('findRangeHighlight', "Color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."), true);
|
|
202
|
+
export const editorFindMatchBorder = registerColor('editor.findMatchBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, nls.localize('editorFindMatchBorder', "Border color of the current search match."));
|
|
203
|
+
export const editorFindMatchHighlightBorder = registerColor('editor.findMatchHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, nls.localize('findMatchHighlightBorder', "Border color of the other search matches."));
|
|
204
|
+
export const editorFindRangeHighlightBorder = registerColor('editor.findRangeHighlightBorder', { dark: null, light: null, hcDark: transparent(activeContrastBorder, 0.4), hcLight: transparent(activeContrastBorder, 0.4) }, nls.localize('findRangeHighlightBorder', "Border color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."), true);
|
|
205
|
+
/**
|
|
206
|
+
* Search Editor query match colors.
|
|
207
|
+
*
|
|
208
|
+
* Distinct from normal editor find match to allow for better differentiation
|
|
209
|
+
*/
|
|
210
|
+
export const searchEditorFindMatch = registerColor('searchEditor.findMatchBackground', { light: transparent(editorFindMatchHighlight, 0.66), dark: transparent(editorFindMatchHighlight, 0.66), hcDark: editorFindMatchHighlight, hcLight: editorFindMatchHighlight }, nls.localize('searchEditor.queryMatch', "Color of the Search Editor query matches."));
|
|
211
|
+
export const searchEditorFindMatchBorder = registerColor('searchEditor.findMatchBorder', { light: transparent(editorFindMatchHighlightBorder, 0.66), dark: transparent(editorFindMatchHighlightBorder, 0.66), hcDark: editorFindMatchHighlightBorder, hcLight: editorFindMatchHighlightBorder }, nls.localize('searchEditor.editorFindMatchBorder', "Border color of the Search Editor query matches."));
|
|
212
|
+
/**
|
|
213
|
+
* Search Viewlet colors.
|
|
214
|
+
*/
|
|
215
|
+
export const searchResultsInfoForeground = registerColor('search.resultsInfoForeground', { light: foreground, dark: transparent(foreground, 0.65), hcDark: foreground, hcLight: foreground }, nls.localize('search.resultsInfoForeground', "Color of the text in the search viewlet's completion message."));
|
|
216
|
+
/**
|
|
217
|
+
* Editor hover
|
|
218
|
+
*/
|
|
219
|
+
export const editorHoverHighlight = registerColor('editor.hoverHighlightBackground', { light: '#ADD6FF26', dark: '#264f7840', hcDark: '#ADD6FF26', hcLight: null }, nls.localize('hoverHighlight', 'Highlight below the word for which a hover is shown. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
220
|
+
export const editorHoverBackground = registerColor('editorHoverWidget.background', { light: editorWidgetBackground, dark: editorWidgetBackground, hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, nls.localize('hoverBackground', 'Background color of the editor hover.'));
|
|
221
|
+
export const editorHoverForeground = registerColor('editorHoverWidget.foreground', { light: editorWidgetForeground, dark: editorWidgetForeground, hcDark: editorWidgetForeground, hcLight: editorWidgetForeground }, nls.localize('hoverForeground', 'Foreground color of the editor hover.'));
|
|
222
|
+
export const editorHoverBorder = registerColor('editorHoverWidget.border', { light: editorWidgetBorder, dark: editorWidgetBorder, hcDark: editorWidgetBorder, hcLight: editorWidgetBorder }, nls.localize('hoverBorder', 'Border color of the editor hover.'));
|
|
223
|
+
export const editorHoverStatusBarBackground = registerColor('editorHoverWidget.statusBarBackground', { dark: lighten(editorHoverBackground, 0.2), light: darken(editorHoverBackground, 0.05), hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, nls.localize('statusBarBackground', "Background color of the editor hover status bar."));
|
|
224
|
+
/**
|
|
225
|
+
* Editor link colors
|
|
226
|
+
*/
|
|
227
|
+
export const editorActiveLinkForeground = registerColor('editorLink.activeForeground', { dark: '#4E94CE', light: Color.blue, hcDark: Color.cyan, hcLight: '#292929' }, nls.localize('activeLinkForeground', 'Color of active links.'));
|
|
228
|
+
/**
|
|
229
|
+
* Inline hints
|
|
230
|
+
*/
|
|
231
|
+
export const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: '#969696', light: '#969696', hcDark: Color.white, hcLight: Color.black }, nls.localize('editorInlayHintForeground', 'Foreground color of inline hints'));
|
|
232
|
+
export const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: transparent(badgeBackground, .10), light: transparent(badgeBackground, .10), hcDark: transparent(Color.white, .10), hcLight: transparent(badgeBackground, .10) }, nls.localize('editorInlayHintBackground', 'Background color of inline hints'));
|
|
233
|
+
export const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', { dark: editorInlayHintForeground, light: editorInlayHintForeground, hcDark: editorInlayHintForeground, hcLight: editorInlayHintForeground }, nls.localize('editorInlayHintForegroundTypes', 'Foreground color of inline hints for types'));
|
|
234
|
+
export const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', { dark: editorInlayHintBackground, light: editorInlayHintBackground, hcDark: editorInlayHintBackground, hcLight: editorInlayHintBackground }, nls.localize('editorInlayHintBackgroundTypes', 'Background color of inline hints for types'));
|
|
235
|
+
export const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', { dark: editorInlayHintForeground, light: editorInlayHintForeground, hcDark: editorInlayHintForeground, hcLight: editorInlayHintForeground }, nls.localize('editorInlayHintForegroundParameter', 'Foreground color of inline hints for parameters'));
|
|
236
|
+
export const editorInlayHintParameterBackground = registerColor('editorInlayHint.parameterBackground', { dark: editorInlayHintBackground, light: editorInlayHintBackground, hcDark: editorInlayHintBackground, hcLight: editorInlayHintBackground }, nls.localize('editorInlayHintBackgroundParameter', 'Background color of inline hints for parameters'));
|
|
237
|
+
/**
|
|
238
|
+
* Editor lightbulb icon colors
|
|
239
|
+
*/
|
|
240
|
+
export const editorLightBulbForeground = registerColor('editorLightBulb.foreground', { dark: '#FFCC00', light: '#DDB100', hcDark: '#FFCC00', hcLight: '#007ACC' }, nls.localize('editorLightBulbForeground', "The color used for the lightbulb actions icon."));
|
|
241
|
+
export const editorLightBulbAutoFixForeground = registerColor('editorLightBulbAutoFix.foreground', { dark: '#75BEFF', light: '#007ACC', hcDark: '#75BEFF', hcLight: '#007ACC' }, nls.localize('editorLightBulbAutoFixForeground', "The color used for the lightbulb auto fix actions icon."));
|
|
242
|
+
export const editorLightBulbAiForeground = registerColor('editorLightBulbAi.foreground', { dark: darken(iconForeground, 0.4), light: lighten(iconForeground, 1.7), hcDark: iconForeground, hcLight: iconForeground }, nls.localize('editorLightBulbAiForeground', "The color used for the lightbulb AI icon."));
|
|
243
|
+
/**
|
|
244
|
+
* Diff Editor Colors
|
|
245
|
+
*/
|
|
246
|
+
export const defaultInsertColor = new Color(new RGBA(155, 185, 85, .2));
|
|
247
|
+
export const defaultRemoveColor = new Color(new RGBA(255, 0, 0, .2));
|
|
248
|
+
export const diffInserted = registerColor('diffEditor.insertedTextBackground', { dark: '#9ccc2c33', light: '#9ccc2c40', hcDark: null, hcLight: null }, nls.localize('diffEditorInserted', 'Background color for text that got inserted. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
249
|
+
export const diffRemoved = registerColor('diffEditor.removedTextBackground', { dark: '#ff000033', light: '#ff000033', hcDark: null, hcLight: null }, nls.localize('diffEditorRemoved', 'Background color for text that got removed. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
250
|
+
export const diffInsertedLine = registerColor('diffEditor.insertedLineBackground', { dark: defaultInsertColor, light: defaultInsertColor, hcDark: null, hcLight: null }, nls.localize('diffEditorInsertedLines', 'Background color for lines that got inserted. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
251
|
+
export const diffRemovedLine = registerColor('diffEditor.removedLineBackground', { dark: defaultRemoveColor, light: defaultRemoveColor, hcDark: null, hcLight: null }, nls.localize('diffEditorRemovedLines', 'Background color for lines that got removed. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
252
|
+
export const diffInsertedLineGutter = registerColor('diffEditorGutter.insertedLineBackground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('diffEditorInsertedLineGutter', 'Background color for the margin where lines got inserted.'));
|
|
253
|
+
export const diffRemovedLineGutter = registerColor('diffEditorGutter.removedLineBackground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('diffEditorRemovedLineGutter', 'Background color for the margin where lines got removed.'));
|
|
254
|
+
export const diffOverviewRulerInserted = registerColor('diffEditorOverview.insertedForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('diffEditorOverviewInserted', 'Diff overview ruler foreground for inserted content.'));
|
|
255
|
+
export const diffOverviewRulerRemoved = registerColor('diffEditorOverview.removedForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('diffEditorOverviewRemoved', 'Diff overview ruler foreground for removed content.'));
|
|
256
|
+
export const diffInsertedOutline = registerColor('diffEditor.insertedTextBorder', { dark: null, light: null, hcDark: '#33ff2eff', hcLight: '#374E06' }, nls.localize('diffEditorInsertedOutline', 'Outline color for the text that got inserted.'));
|
|
257
|
+
export const diffRemovedOutline = registerColor('diffEditor.removedTextBorder', { dark: null, light: null, hcDark: '#FF008F', hcLight: '#AD0707' }, nls.localize('diffEditorRemovedOutline', 'Outline color for text that got removed.'));
|
|
258
|
+
export const diffBorder = registerColor('diffEditor.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('diffEditorBorder', 'Border color between the two text editors.'));
|
|
259
|
+
export const diffDiagonalFill = registerColor('diffEditor.diagonalFill', { dark: '#cccccc33', light: '#22222233', hcDark: null, hcLight: null }, nls.localize('diffDiagonalFill', "Color of the diff editor's diagonal fill. The diagonal fill is used in side-by-side diff views."));
|
|
260
|
+
export const diffUnchangedRegionBackground = registerColor('diffEditor.unchangedRegionBackground', { dark: 'sideBar.background', light: 'sideBar.background', hcDark: 'sideBar.background', hcLight: 'sideBar.background' }, nls.localize('diffEditor.unchangedRegionBackground', "The background color of unchanged blocks in the diff editor."));
|
|
261
|
+
export const diffUnchangedRegionForeground = registerColor('diffEditor.unchangedRegionForeground', { dark: 'foreground', light: 'foreground', hcDark: 'foreground', hcLight: 'foreground' }, nls.localize('diffEditor.unchangedRegionForeground', "The foreground color of unchanged blocks in the diff editor."));
|
|
262
|
+
export const diffUnchangedTextBackground = registerColor('diffEditor.unchangedCodeBackground', { dark: '#74747429', light: '#b8b8b829', hcDark: null, hcLight: null }, nls.localize('diffEditor.unchangedCodeBackground', "The background color of unchanged code in the diff editor."));
|
|
263
|
+
/**
|
|
264
|
+
* List and tree colors
|
|
265
|
+
*/
|
|
266
|
+
export const listFocusBackground = registerColor('list.focusBackground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listFocusBackground', "List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not."));
|
|
267
|
+
export const listFocusForeground = registerColor('list.focusForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listFocusForeground', "List/Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not."));
|
|
268
|
+
export const listFocusOutline = registerColor('list.focusOutline', { dark: focusBorder, light: focusBorder, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, nls.localize('listFocusOutline', "List/Tree outline color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not."));
|
|
269
|
+
export const listFocusAndSelectionOutline = registerColor('list.focusAndSelectionOutline', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listFocusAndSelectionOutline', "List/Tree outline color for the focused item when the list/tree is active and selected. An active list/tree has keyboard focus, an inactive does not."));
|
|
270
|
+
export const listActiveSelectionBackground = registerColor('list.activeSelectionBackground', { dark: '#04395E', light: '#0060C0', hcDark: null, hcLight: Color.fromHex('#0F4A85').transparent(0.1) }, nls.localize('listActiveSelectionBackground', "List/Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not."));
|
|
271
|
+
export const listActiveSelectionForeground = registerColor('list.activeSelectionForeground', { dark: Color.white, light: Color.white, hcDark: null, hcLight: null }, nls.localize('listActiveSelectionForeground', "List/Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not."));
|
|
272
|
+
export const listActiveSelectionIconForeground = registerColor('list.activeSelectionIconForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listActiveSelectionIconForeground', "List/Tree icon foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not."));
|
|
273
|
+
export const listInactiveSelectionBackground = registerColor('list.inactiveSelectionBackground', { dark: '#37373D', light: '#E4E6F1', hcDark: null, hcLight: Color.fromHex('#0F4A85').transparent(0.1) }, nls.localize('listInactiveSelectionBackground', "List/Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not."));
|
|
274
|
+
export const listInactiveSelectionForeground = registerColor('list.inactiveSelectionForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listInactiveSelectionForeground', "List/Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not."));
|
|
275
|
+
export const listInactiveSelectionIconForeground = registerColor('list.inactiveSelectionIconForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listInactiveSelectionIconForeground', "List/Tree icon foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not."));
|
|
276
|
+
export const listInactiveFocusBackground = registerColor('list.inactiveFocusBackground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listInactiveFocusBackground', "List/Tree background color for the focused item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not."));
|
|
277
|
+
export const listInactiveFocusOutline = registerColor('list.inactiveFocusOutline', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listInactiveFocusOutline', "List/Tree outline color for the focused item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not."));
|
|
278
|
+
export const listHoverBackground = registerColor('list.hoverBackground', { dark: '#2A2D2E', light: '#F0F0F0', hcDark: Color.white.transparent(0.1), hcLight: Color.fromHex('#0F4A85').transparent(0.1) }, nls.localize('listHoverBackground', "List/Tree background when hovering over items using the mouse."));
|
|
279
|
+
export const listHoverForeground = registerColor('list.hoverForeground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('listHoverForeground', "List/Tree foreground when hovering over items using the mouse."));
|
|
280
|
+
export const listDropBackground = registerColor('list.dropBackground', { dark: '#062F4A', light: '#D6EBFF', hcDark: null, hcLight: null }, nls.localize('listDropBackground', "List/Tree drag and drop background when moving items around using the mouse."));
|
|
281
|
+
export const listHighlightForeground = registerColor('list.highlightForeground', { dark: '#2AAAFF', light: '#0066BF', hcDark: focusBorder, hcLight: focusBorder }, nls.localize('highlight', 'List/Tree foreground color of the match highlights when searching inside the list/tree.'));
|
|
282
|
+
export const listFocusHighlightForeground = registerColor('list.focusHighlightForeground', { dark: listHighlightForeground, light: ifDefinedThenElse(listActiveSelectionBackground, listHighlightForeground, '#BBE7FF'), hcDark: listHighlightForeground, hcLight: listHighlightForeground }, nls.localize('listFocusHighlightForeground', 'List/Tree foreground color of the match highlights on actively focused items when searching inside the list/tree.'));
|
|
283
|
+
export const listInvalidItemForeground = registerColor('list.invalidItemForeground', { dark: '#B89500', light: '#B89500', hcDark: '#B89500', hcLight: '#B5200D' }, nls.localize('invalidItemForeground', 'List/Tree foreground color for invalid items, for example an unresolved root in explorer.'));
|
|
284
|
+
export const listErrorForeground = registerColor('list.errorForeground', { dark: '#F88070', light: '#B01011', hcDark: null, hcLight: null }, nls.localize('listErrorForeground', 'Foreground color of list items containing errors.'));
|
|
285
|
+
export const listWarningForeground = registerColor('list.warningForeground', { dark: '#CCA700', light: '#855F00', hcDark: null, hcLight: null }, nls.localize('listWarningForeground', 'Foreground color of list items containing warnings.'));
|
|
286
|
+
export const listFilterWidgetBackground = registerColor('listFilterWidget.background', { light: darken(editorWidgetBackground, 0), dark: lighten(editorWidgetBackground, 0), hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, nls.localize('listFilterWidgetBackground', 'Background color of the type filter widget in lists and trees.'));
|
|
287
|
+
export const listFilterWidgetOutline = registerColor('listFilterWidget.outline', { dark: Color.transparent, light: Color.transparent, hcDark: '#f38518', hcLight: '#007ACC' }, nls.localize('listFilterWidgetOutline', 'Outline color of the type filter widget in lists and trees.'));
|
|
288
|
+
export const listFilterWidgetNoMatchesOutline = registerColor('listFilterWidget.noMatchesOutline', { dark: '#BE1100', light: '#BE1100', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('listFilterWidgetNoMatchesOutline', 'Outline color of the type filter widget in lists and trees, when there are no matches.'));
|
|
289
|
+
export const listFilterWidgetShadow = registerColor('listFilterWidget.shadow', { dark: widgetShadow, light: widgetShadow, hcDark: widgetShadow, hcLight: widgetShadow }, nls.localize('listFilterWidgetShadow', 'Shadow color of the type filter widget in lists and trees.'));
|
|
290
|
+
export const listFilterMatchHighlight = registerColor('list.filterMatchBackground', { dark: editorFindMatchHighlight, light: editorFindMatchHighlight, hcDark: null, hcLight: null }, nls.localize('listFilterMatchHighlight', 'Background color of the filtered match.'));
|
|
291
|
+
export const listFilterMatchHighlightBorder = registerColor('list.filterMatchBorder', { dark: editorFindMatchHighlightBorder, light: editorFindMatchHighlightBorder, hcDark: contrastBorder, hcLight: activeContrastBorder }, nls.localize('listFilterMatchHighlightBorder', 'Border color of the filtered match.'));
|
|
292
|
+
export const treeIndentGuidesStroke = registerColor('tree.indentGuidesStroke', { dark: '#585858', light: '#a9a9a9', hcDark: '#a9a9a9', hcLight: '#a5a5a5' }, nls.localize('treeIndentGuidesStroke', "Tree stroke color for the indentation guides."));
|
|
293
|
+
export const treeInactiveIndentGuidesStroke = registerColor('tree.inactiveIndentGuidesStroke', { dark: transparent(treeIndentGuidesStroke, 0.4), light: transparent(treeIndentGuidesStroke, 0.4), hcDark: transparent(treeIndentGuidesStroke, 0.4), hcLight: transparent(treeIndentGuidesStroke, 0.4) }, nls.localize('treeInactiveIndentGuidesStroke', "Tree stroke color for the indentation guides that are not active."));
|
|
294
|
+
export const tableColumnsBorder = registerColor('tree.tableColumnsBorder', { dark: '#CCCCCC20', light: '#61616120', hcDark: null, hcLight: null }, nls.localize('tableColumnsBorder', "Table border color between columns."));
|
|
295
|
+
export const tableOddRowsBackgroundColor = registerColor('tree.tableOddRowsBackground', { dark: transparent(foreground, 0.04), light: transparent(foreground, 0.04), hcDark: null, hcLight: null }, nls.localize('tableOddRowsBackgroundColor', "Background color for odd table rows."));
|
|
296
|
+
export const listDeemphasizedForeground = registerColor('list.deemphasizedForeground', { dark: '#8C8C8C', light: '#8E8E90', hcDark: '#A7A8A9', hcLight: '#666666' }, nls.localize('listDeemphasizedForeground', "List/Tree foreground color for items that are deemphasized. "));
|
|
297
|
+
/**
|
|
298
|
+
* Checkboxes
|
|
299
|
+
*/
|
|
300
|
+
export const checkboxBackground = registerColor('checkbox.background', { dark: selectBackground, light: selectBackground, hcDark: selectBackground, hcLight: selectBackground }, nls.localize('checkbox.background', "Background color of checkbox widget."));
|
|
301
|
+
export const checkboxSelectBackground = registerColor('checkbox.selectBackground', { dark: editorWidgetBackground, light: editorWidgetBackground, hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, nls.localize('checkbox.select.background', "Background color of checkbox widget when the element it's in is selected."));
|
|
302
|
+
export const checkboxForeground = registerColor('checkbox.foreground', { dark: selectForeground, light: selectForeground, hcDark: selectForeground, hcLight: selectForeground }, nls.localize('checkbox.foreground', "Foreground color of checkbox widget."));
|
|
303
|
+
export const checkboxBorder = registerColor('checkbox.border', { dark: selectBorder, light: selectBorder, hcDark: selectBorder, hcLight: selectBorder }, nls.localize('checkbox.border', "Border color of checkbox widget."));
|
|
304
|
+
export const checkboxSelectBorder = registerColor('checkbox.selectBorder', { dark: iconForeground, light: iconForeground, hcDark: iconForeground, hcLight: iconForeground }, nls.localize('checkbox.select.border', "Border color of checkbox widget when the element it's in is selected."));
|
|
305
|
+
/**
|
|
306
|
+
* Quick pick widget (dependent on List and tree colors)
|
|
307
|
+
*/
|
|
308
|
+
export const _deprecatedQuickInputListFocusBackground = registerColor('quickInput.list.focusBackground', { dark: null, light: null, hcDark: null, hcLight: null }, '', undefined, nls.localize('quickInput.list.focusBackground deprecation', "Please use quickInputList.focusBackground instead"));
|
|
309
|
+
export const quickInputListFocusForeground = registerColor('quickInputList.focusForeground', { dark: listActiveSelectionForeground, light: listActiveSelectionForeground, hcDark: listActiveSelectionForeground, hcLight: listActiveSelectionForeground }, nls.localize('quickInput.listFocusForeground', "Quick picker foreground color for the focused item."));
|
|
310
|
+
export const quickInputListFocusIconForeground = registerColor('quickInputList.focusIconForeground', { dark: listActiveSelectionIconForeground, light: listActiveSelectionIconForeground, hcDark: listActiveSelectionIconForeground, hcLight: listActiveSelectionIconForeground }, nls.localize('quickInput.listFocusIconForeground', "Quick picker icon foreground color for the focused item."));
|
|
311
|
+
export const quickInputListFocusBackground = registerColor('quickInputList.focusBackground', { dark: oneOf(_deprecatedQuickInputListFocusBackground, listActiveSelectionBackground), light: oneOf(_deprecatedQuickInputListFocusBackground, listActiveSelectionBackground), hcDark: null, hcLight: null }, nls.localize('quickInput.listFocusBackground', "Quick picker background color for the focused item."));
|
|
312
|
+
/**
|
|
313
|
+
* Menu colors
|
|
314
|
+
*/
|
|
315
|
+
export const menuBorder = registerColor('menu.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('menuBorder', "Border color of menus."));
|
|
316
|
+
export const menuForeground = registerColor('menu.foreground', { dark: selectForeground, light: selectForeground, hcDark: selectForeground, hcLight: selectForeground }, nls.localize('menuForeground', "Foreground color of menu items."));
|
|
317
|
+
export const menuBackground = registerColor('menu.background', { dark: selectBackground, light: selectBackground, hcDark: selectBackground, hcLight: selectBackground }, nls.localize('menuBackground', "Background color of menu items."));
|
|
318
|
+
export const menuSelectionForeground = registerColor('menu.selectionForeground', { dark: listActiveSelectionForeground, light: listActiveSelectionForeground, hcDark: listActiveSelectionForeground, hcLight: listActiveSelectionForeground }, nls.localize('menuSelectionForeground', "Foreground color of the selected menu item in menus."));
|
|
319
|
+
export const menuSelectionBackground = registerColor('menu.selectionBackground', { dark: listActiveSelectionBackground, light: listActiveSelectionBackground, hcDark: listActiveSelectionBackground, hcLight: listActiveSelectionBackground }, nls.localize('menuSelectionBackground', "Background color of the selected menu item in menus."));
|
|
320
|
+
export const menuSelectionBorder = registerColor('menu.selectionBorder', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, nls.localize('menuSelectionBorder', "Border color of the selected menu item in menus."));
|
|
321
|
+
export const menuSeparatorBackground = registerColor('menu.separatorBackground', { dark: '#606060', light: '#D4D4D4', hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize('menuSeparatorBackground', "Color of a separator menu item in menus."));
|
|
322
|
+
/**
|
|
323
|
+
* Toolbar colors
|
|
324
|
+
*/
|
|
325
|
+
export const toolbarHoverBackground = registerColor('toolbar.hoverBackground', { dark: '#5a5d5e50', light: '#b8b8b850', hcDark: null, hcLight: null }, nls.localize('toolbarHoverBackground', "Toolbar background when hovering over actions using the mouse"));
|
|
326
|
+
export const toolbarHoverOutline = registerColor('toolbar.hoverOutline', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, nls.localize('toolbarHoverOutline', "Toolbar outline when hovering over actions using the mouse"));
|
|
327
|
+
export const toolbarActiveBackground = registerColor('toolbar.activeBackground', { dark: lighten(toolbarHoverBackground, 0.1), light: darken(toolbarHoverBackground, 0.1), hcDark: null, hcLight: null }, nls.localize('toolbarActiveBackground', "Toolbar background when holding the mouse over actions"));
|
|
328
|
+
/**
|
|
329
|
+
* Snippet placeholder colors
|
|
330
|
+
*/
|
|
331
|
+
export const snippetTabstopHighlightBackground = registerColor('editor.snippetTabstopHighlightBackground', { dark: new Color(new RGBA(124, 124, 124, 0.3)), light: new Color(new RGBA(10, 50, 100, 0.2)), hcDark: new Color(new RGBA(124, 124, 124, 0.3)), hcLight: new Color(new RGBA(10, 50, 100, 0.2)) }, nls.localize('snippetTabstopHighlightBackground', "Highlight background color of a snippet tabstop."));
|
|
332
|
+
export const snippetTabstopHighlightBorder = registerColor('editor.snippetTabstopHighlightBorder', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('snippetTabstopHighlightBorder', "Highlight border color of a snippet tabstop."));
|
|
333
|
+
export const snippetFinalTabstopHighlightBackground = registerColor('editor.snippetFinalTabstopHighlightBackground', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('snippetFinalTabstopHighlightBackground', "Highlight background color of the final tabstop of a snippet."));
|
|
334
|
+
export const snippetFinalTabstopHighlightBorder = registerColor('editor.snippetFinalTabstopHighlightBorder', { dark: '#525252', light: new Color(new RGBA(10, 50, 100, 0.5)), hcDark: '#525252', hcLight: '#292929' }, nls.localize('snippetFinalTabstopHighlightBorder', "Highlight border color of the final tabstop of a snippet."));
|
|
335
|
+
/**
|
|
336
|
+
* Breadcrumb colors
|
|
337
|
+
*/
|
|
338
|
+
export const breadcrumbsForeground = registerColor('breadcrumb.foreground', { light: transparent(foreground, 0.8), dark: transparent(foreground, 0.8), hcDark: transparent(foreground, 0.8), hcLight: transparent(foreground, 0.8) }, nls.localize('breadcrumbsFocusForeground', "Color of focused breadcrumb items."));
|
|
339
|
+
export const breadcrumbsBackground = registerColor('breadcrumb.background', { light: editorBackground, dark: editorBackground, hcDark: editorBackground, hcLight: editorBackground }, nls.localize('breadcrumbsBackground', "Background color of breadcrumb items."));
|
|
340
|
+
export const breadcrumbsFocusForeground = registerColor('breadcrumb.focusForeground', { light: darken(foreground, 0.2), dark: lighten(foreground, 0.1), hcDark: lighten(foreground, 0.1), hcLight: lighten(foreground, 0.1) }, nls.localize('breadcrumbsFocusForeground', "Color of focused breadcrumb items."));
|
|
341
|
+
export const breadcrumbsActiveSelectionForeground = registerColor('breadcrumb.activeSelectionForeground', { light: darken(foreground, 0.2), dark: lighten(foreground, 0.1), hcDark: lighten(foreground, 0.1), hcLight: lighten(foreground, 0.1) }, nls.localize('breadcrumbsSelectedForeground', "Color of selected breadcrumb items."));
|
|
342
|
+
export const breadcrumbsPickerBackground = registerColor('breadcrumbPicker.background', { light: editorWidgetBackground, dark: editorWidgetBackground, hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, nls.localize('breadcrumbsSelectedBackground', "Background color of breadcrumb item picker."));
|
|
343
|
+
/**
|
|
344
|
+
* Merge-conflict colors
|
|
345
|
+
*/
|
|
346
|
+
const headerTransparency = 0.5;
|
|
347
|
+
const currentBaseColor = Color.fromHex('#40C8AE').transparent(headerTransparency);
|
|
348
|
+
const incomingBaseColor = Color.fromHex('#40A6FF').transparent(headerTransparency);
|
|
349
|
+
const commonBaseColor = Color.fromHex('#606060').transparent(0.4);
|
|
350
|
+
const contentTransparency = 0.4;
|
|
351
|
+
const rulerTransparency = 1;
|
|
352
|
+
export const mergeCurrentHeaderBackground = registerColor('merge.currentHeaderBackground', { dark: currentBaseColor, light: currentBaseColor, hcDark: null, hcLight: null }, nls.localize('mergeCurrentHeaderBackground', 'Current header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
353
|
+
export const mergeCurrentContentBackground = registerColor('merge.currentContentBackground', { dark: transparent(mergeCurrentHeaderBackground, contentTransparency), light: transparent(mergeCurrentHeaderBackground, contentTransparency), hcDark: transparent(mergeCurrentHeaderBackground, contentTransparency), hcLight: transparent(mergeCurrentHeaderBackground, contentTransparency) }, nls.localize('mergeCurrentContentBackground', 'Current content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
354
|
+
export const mergeIncomingHeaderBackground = registerColor('merge.incomingHeaderBackground', { dark: incomingBaseColor, light: incomingBaseColor, hcDark: null, hcLight: null }, nls.localize('mergeIncomingHeaderBackground', 'Incoming header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
355
|
+
export const mergeIncomingContentBackground = registerColor('merge.incomingContentBackground', { dark: transparent(mergeIncomingHeaderBackground, contentTransparency), light: transparent(mergeIncomingHeaderBackground, contentTransparency), hcDark: transparent(mergeIncomingHeaderBackground, contentTransparency), hcLight: transparent(mergeIncomingHeaderBackground, contentTransparency) }, nls.localize('mergeIncomingContentBackground', 'Incoming content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
356
|
+
export const mergeCommonHeaderBackground = registerColor('merge.commonHeaderBackground', { dark: commonBaseColor, light: commonBaseColor, hcDark: null, hcLight: null }, nls.localize('mergeCommonHeaderBackground', 'Common ancestor header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
357
|
+
export const mergeCommonContentBackground = registerColor('merge.commonContentBackground', { dark: transparent(mergeCommonHeaderBackground, contentTransparency), light: transparent(mergeCommonHeaderBackground, contentTransparency), hcDark: transparent(mergeCommonHeaderBackground, contentTransparency), hcLight: transparent(mergeCommonHeaderBackground, contentTransparency) }, nls.localize('mergeCommonContentBackground', 'Common ancestor content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
358
|
+
export const mergeBorder = registerColor('merge.border', { dark: null, light: null, hcDark: '#C3DF6F', hcLight: '#007ACC' }, nls.localize('mergeBorder', 'Border color on headers and the splitter in inline merge-conflicts.'));
|
|
359
|
+
export const overviewRulerCurrentContentForeground = registerColor('editorOverviewRuler.currentContentForeground', { dark: transparent(mergeCurrentHeaderBackground, rulerTransparency), light: transparent(mergeCurrentHeaderBackground, rulerTransparency), hcDark: mergeBorder, hcLight: mergeBorder }, nls.localize('overviewRulerCurrentContentForeground', 'Current overview ruler foreground for inline merge-conflicts.'));
|
|
360
|
+
export const overviewRulerIncomingContentForeground = registerColor('editorOverviewRuler.incomingContentForeground', { dark: transparent(mergeIncomingHeaderBackground, rulerTransparency), light: transparent(mergeIncomingHeaderBackground, rulerTransparency), hcDark: mergeBorder, hcLight: mergeBorder }, nls.localize('overviewRulerIncomingContentForeground', 'Incoming overview ruler foreground for inline merge-conflicts.'));
|
|
361
|
+
export const overviewRulerCommonContentForeground = registerColor('editorOverviewRuler.commonContentForeground', { dark: transparent(mergeCommonHeaderBackground, rulerTransparency), light: transparent(mergeCommonHeaderBackground, rulerTransparency), hcDark: mergeBorder, hcLight: mergeBorder }, nls.localize('overviewRulerCommonContentForeground', 'Common ancestor overview ruler foreground for inline merge-conflicts.'));
|
|
362
|
+
export const overviewRulerFindMatchForeground = registerColor('editorOverviewRuler.findMatchForeground', { dark: '#d186167e', light: '#d186167e', hcDark: '#AB5A00', hcLight: '' }, nls.localize('overviewRulerFindMatchForeground', 'Overview ruler marker color for find matches. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
363
|
+
export const overviewRulerSelectionHighlightForeground = registerColor('editorOverviewRuler.selectionHighlightForeground', { dark: '#A0A0A0CC', light: '#A0A0A0CC', hcDark: '#A0A0A0CC', hcLight: '#A0A0A0CC' }, nls.localize('overviewRulerSelectionHighlightForeground', 'Overview ruler marker color for selection highlights. The color must not be opaque so as not to hide underlying decorations.'), true);
|
|
364
|
+
export const minimapFindMatch = registerColor('minimap.findMatchHighlight', { light: '#d18616', dark: '#d18616', hcDark: '#AB5A00', hcLight: '#0F4A85' }, nls.localize('minimapFindMatchHighlight', 'Minimap marker color for find matches.'), true);
|
|
365
|
+
export const minimapSelectionOccurrenceHighlight = registerColor('minimap.selectionOccurrenceHighlight', { light: '#c9c9c9', dark: '#676767', hcDark: '#ffffff', hcLight: '#0F4A85' }, nls.localize('minimapSelectionOccurrenceHighlight', 'Minimap marker color for repeating editor selections.'), true);
|
|
366
|
+
export const minimapSelection = registerColor('minimap.selectionHighlight', { light: '#ADD6FF', dark: '#264F78', hcDark: '#ffffff', hcLight: '#0F4A85' }, nls.localize('minimapSelectionHighlight', 'Minimap marker color for the editor selection.'), true);
|
|
367
|
+
export const minimapInfo = registerColor('minimap.infoHighlight', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoBorder, hcLight: editorInfoBorder }, nls.localize('minimapInfo', 'Minimap marker color for infos.'));
|
|
368
|
+
export const minimapWarning = registerColor('minimap.warningHighlight', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningBorder, hcLight: editorWarningBorder }, nls.localize('overviewRuleWarning', 'Minimap marker color for warnings.'));
|
|
369
|
+
export const minimapError = registerColor('minimap.errorHighlight', { dark: new Color(new RGBA(255, 18, 18, 0.7)), light: new Color(new RGBA(255, 18, 18, 0.7)), hcDark: new Color(new RGBA(255, 50, 50, 1)), hcLight: '#B5200D' }, nls.localize('minimapError', 'Minimap marker color for errors.'));
|
|
370
|
+
export const minimapBackground = registerColor('minimap.background', { dark: null, light: null, hcDark: null, hcLight: null }, nls.localize('minimapBackground', "Minimap background color."));
|
|
371
|
+
export const minimapForegroundOpacity = registerColor('minimap.foregroundOpacity', { dark: Color.fromHex('#000f'), light: Color.fromHex('#000f'), hcDark: Color.fromHex('#000f'), hcLight: Color.fromHex('#000f') }, nls.localize('minimapForegroundOpacity', 'Opacity of foreground elements rendered in the minimap. For example, "#000000c0" will render the elements with 75% opacity.'));
|
|
372
|
+
export const minimapSliderBackground = registerColor('minimapSlider.background', { light: transparent(scrollbarSliderBackground, 0.5), dark: transparent(scrollbarSliderBackground, 0.5), hcDark: transparent(scrollbarSliderBackground, 0.5), hcLight: transparent(scrollbarSliderBackground, 0.5) }, nls.localize('minimapSliderBackground', "Minimap slider background color."));
|
|
373
|
+
export const minimapSliderHoverBackground = registerColor('minimapSlider.hoverBackground', { light: transparent(scrollbarSliderHoverBackground, 0.5), dark: transparent(scrollbarSliderHoverBackground, 0.5), hcDark: transparent(scrollbarSliderHoverBackground, 0.5), hcLight: transparent(scrollbarSliderHoverBackground, 0.5) }, nls.localize('minimapSliderHoverBackground', "Minimap slider background color when hovering."));
|
|
374
|
+
export const minimapSliderActiveBackground = registerColor('minimapSlider.activeBackground', { light: transparent(scrollbarSliderActiveBackground, 0.5), dark: transparent(scrollbarSliderActiveBackground, 0.5), hcDark: transparent(scrollbarSliderActiveBackground, 0.5), hcLight: transparent(scrollbarSliderActiveBackground, 0.5) }, nls.localize('minimapSliderActiveBackground', "Minimap slider background color when clicked on."));
|
|
375
|
+
export const problemsErrorIconForeground = registerColor('problemsErrorIcon.foreground', { dark: editorErrorForeground, light: editorErrorForeground, hcDark: editorErrorForeground, hcLight: editorErrorForeground }, nls.localize('problemsErrorIconForeground', "The color used for the problems error icon."));
|
|
376
|
+
export const problemsWarningIconForeground = registerColor('problemsWarningIcon.foreground', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningForeground, hcLight: editorWarningForeground }, nls.localize('problemsWarningIconForeground', "The color used for the problems warning icon."));
|
|
377
|
+
export const problemsInfoIconForeground = registerColor('problemsInfoIcon.foreground', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoForeground, hcLight: editorInfoForeground }, nls.localize('problemsInfoIconForeground', "The color used for the problems info icon."));
|
|
378
|
+
/**
|
|
379
|
+
* Chart colors
|
|
380
|
+
*/
|
|
381
|
+
export const chartsForeground = registerColor('charts.foreground', { dark: foreground, light: foreground, hcDark: foreground, hcLight: foreground }, nls.localize('chartsForeground', "The foreground color used in charts."));
|
|
382
|
+
export const chartsLines = registerColor('charts.lines', { dark: transparent(foreground, .5), light: transparent(foreground, .5), hcDark: transparent(foreground, .5), hcLight: transparent(foreground, .5) }, nls.localize('chartsLines', "The color used for horizontal lines in charts."));
|
|
383
|
+
export const chartsRed = registerColor('charts.red', { dark: editorErrorForeground, light: editorErrorForeground, hcDark: editorErrorForeground, hcLight: editorErrorForeground }, nls.localize('chartsRed', "The red color used in chart visualizations."));
|
|
384
|
+
export const chartsBlue = registerColor('charts.blue', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoForeground, hcLight: editorInfoForeground }, nls.localize('chartsBlue', "The blue color used in chart visualizations."));
|
|
385
|
+
export const chartsYellow = registerColor('charts.yellow', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningForeground, hcLight: editorWarningForeground }, nls.localize('chartsYellow', "The yellow color used in chart visualizations."));
|
|
386
|
+
export const chartsOrange = registerColor('charts.orange', { dark: minimapFindMatch, light: minimapFindMatch, hcDark: minimapFindMatch, hcLight: minimapFindMatch }, nls.localize('chartsOrange', "The orange color used in chart visualizations."));
|
|
387
|
+
export const chartsGreen = registerColor('charts.green', { dark: '#89D185', light: '#388A34', hcDark: '#89D185', hcLight: '#374e06' }, nls.localize('chartsGreen', "The green color used in chart visualizations."));
|
|
388
|
+
export const chartsPurple = registerColor('charts.purple', { dark: '#B180D7', light: '#652D90', hcDark: '#B180D7', hcLight: '#652D90' }, nls.localize('chartsPurple', "The purple color used in chart visualizations."));
|
|
389
|
+
// ----- color functions
|
|
390
|
+
export function executeTransform(transform, theme) {
|
|
391
|
+
var _a, _b, _c, _d;
|
|
392
|
+
switch (transform.op) {
|
|
393
|
+
case 0 /* ColorTransformType.Darken */:
|
|
394
|
+
return (_a = resolveColorValue(transform.value, theme)) === null || _a === void 0 ? void 0 : _a.darken(transform.factor);
|
|
395
|
+
case 1 /* ColorTransformType.Lighten */:
|
|
396
|
+
return (_b = resolveColorValue(transform.value, theme)) === null || _b === void 0 ? void 0 : _b.lighten(transform.factor);
|
|
397
|
+
case 2 /* ColorTransformType.Transparent */:
|
|
398
|
+
return (_c = resolveColorValue(transform.value, theme)) === null || _c === void 0 ? void 0 : _c.transparent(transform.factor);
|
|
399
|
+
case 3 /* ColorTransformType.Opaque */: {
|
|
400
|
+
const backgroundColor = resolveColorValue(transform.background, theme);
|
|
401
|
+
if (!backgroundColor) {
|
|
402
|
+
return resolveColorValue(transform.value, theme);
|
|
403
|
+
}
|
|
404
|
+
return (_d = resolveColorValue(transform.value, theme)) === null || _d === void 0 ? void 0 : _d.makeOpaque(backgroundColor);
|
|
405
|
+
}
|
|
406
|
+
case 4 /* ColorTransformType.OneOf */:
|
|
407
|
+
for (const candidate of transform.values) {
|
|
408
|
+
const color = resolveColorValue(candidate, theme);
|
|
409
|
+
if (color) {
|
|
410
|
+
return color;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
return undefined;
|
|
414
|
+
case 6 /* ColorTransformType.IfDefinedThenElse */:
|
|
415
|
+
return resolveColorValue(theme.defines(transform.if) ? transform.then : transform.else, theme);
|
|
416
|
+
case 5 /* ColorTransformType.LessProminent */: {
|
|
417
|
+
const from = resolveColorValue(transform.value, theme);
|
|
418
|
+
if (!from) {
|
|
419
|
+
return undefined;
|
|
420
|
+
}
|
|
421
|
+
const backgroundColor = resolveColorValue(transform.background, theme);
|
|
422
|
+
if (!backgroundColor) {
|
|
423
|
+
return from.transparent(transform.factor * transform.transparency);
|
|
424
|
+
}
|
|
425
|
+
return from.isDarkerThan(backgroundColor)
|
|
426
|
+
? Color.getLighterColor(from, backgroundColor, transform.factor).transparent(transform.transparency)
|
|
427
|
+
: Color.getDarkerColor(from, backgroundColor, transform.factor).transparent(transform.transparency);
|
|
428
|
+
}
|
|
429
|
+
default:
|
|
430
|
+
throw assertNever(transform);
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
export function darken(colorValue, factor) {
|
|
434
|
+
return { op: 0 /* ColorTransformType.Darken */, value: colorValue, factor };
|
|
435
|
+
}
|
|
436
|
+
export function lighten(colorValue, factor) {
|
|
437
|
+
return { op: 1 /* ColorTransformType.Lighten */, value: colorValue, factor };
|
|
438
|
+
}
|
|
439
|
+
export function transparent(colorValue, factor) {
|
|
440
|
+
return { op: 2 /* ColorTransformType.Transparent */, value: colorValue, factor };
|
|
441
|
+
}
|
|
442
|
+
export function oneOf(...colorValues) {
|
|
443
|
+
return { op: 4 /* ColorTransformType.OneOf */, values: colorValues };
|
|
444
|
+
}
|
|
445
|
+
export function ifDefinedThenElse(ifArg, thenArg, elseArg) {
|
|
446
|
+
return { op: 6 /* ColorTransformType.IfDefinedThenElse */, if: ifArg, then: thenArg, else: elseArg };
|
|
447
|
+
}
|
|
448
|
+
function lessProminent(colorValue, backgroundColorValue, factor, transparency) {
|
|
449
|
+
return { op: 5 /* ColorTransformType.LessProminent */, value: colorValue, background: backgroundColorValue, factor, transparency };
|
|
450
|
+
}
|
|
451
|
+
// ----- implementation
|
|
452
|
+
/**
|
|
453
|
+
* @param colorValue Resolve a color value in the context of a theme
|
|
454
|
+
*/
|
|
455
|
+
export function resolveColorValue(colorValue, theme) {
|
|
456
|
+
if (colorValue === null) {
|
|
457
|
+
return undefined;
|
|
458
|
+
}
|
|
459
|
+
else if (typeof colorValue === 'string') {
|
|
460
|
+
if (colorValue[0] === '#') {
|
|
461
|
+
return Color.fromHex(colorValue);
|
|
462
|
+
}
|
|
463
|
+
return theme.getColor(colorValue);
|
|
464
|
+
}
|
|
465
|
+
else if (colorValue instanceof Color) {
|
|
466
|
+
return colorValue;
|
|
467
|
+
}
|
|
468
|
+
else if (typeof colorValue === 'object') {
|
|
469
|
+
return executeTransform(colorValue, theme);
|
|
470
|
+
}
|
|
471
|
+
return undefined;
|
|
472
|
+
}
|
|
473
|
+
export const workbenchColorsSchemaId = 'vscode://schemas/workbench-colors';
|
|
474
|
+
const schemaRegistry = platform.Registry.as(JSONExtensions.JSONContribution);
|
|
475
|
+
schemaRegistry.registerSchema(workbenchColorsSchemaId, colorRegistry.getColorSchema());
|
|
476
|
+
const delayer = new RunOnceScheduler(() => schemaRegistry.notifySchemaChanged(workbenchColorsSchemaId), 200);
|
|
477
|
+
colorRegistry.onDidChangeSchema(() => {
|
|
478
|
+
if (!delayer.isScheduled()) {
|
|
479
|
+
delayer.schedule();
|
|
480
|
+
}
|
|
481
|
+
});
|
|
482
|
+
// setTimeout(_ => console.log(colorRegistry.toString()), 5000);
|