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,354 @@
|
|
|
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
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
6
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
7
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
8
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
9
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
var AbstractCommandsQuickAccessProvider_1, CommandsHistory_1;
|
|
15
|
+
import { toErrorMessage } from '../../../base/common/errorMessage.js';
|
|
16
|
+
import { isCancellationError } from '../../../base/common/errors.js';
|
|
17
|
+
import { matchesContiguousSubString, matchesPrefix, matchesWords, or } from '../../../base/common/filters.js';
|
|
18
|
+
import { createSingleCallFunction } from '../../../base/common/functional.js';
|
|
19
|
+
import { Disposable } from '../../../base/common/lifecycle.js';
|
|
20
|
+
import { LRUCache } from '../../../base/common/map.js';
|
|
21
|
+
import { TfIdfCalculator, normalizeTfIdfScores } from '../../../base/common/tfIdf.js';
|
|
22
|
+
import { localize } from '../../../nls.js';
|
|
23
|
+
import { ICommandService } from '../../commands/common/commands.js';
|
|
24
|
+
import { IConfigurationService } from '../../configuration/common/configuration.js';
|
|
25
|
+
import { IDialogService } from '../../dialogs/common/dialogs.js';
|
|
26
|
+
import { IInstantiationService } from '../../instantiation/common/instantiation.js';
|
|
27
|
+
import { IKeybindingService } from '../../keybinding/common/keybinding.js';
|
|
28
|
+
import { PickerQuickAccessProvider } from './pickerQuickAccess.js';
|
|
29
|
+
import { IStorageService, WillSaveStateReason } from '../../storage/common/storage.js';
|
|
30
|
+
import { ITelemetryService } from '../../telemetry/common/telemetry.js';
|
|
31
|
+
let AbstractCommandsQuickAccessProvider = AbstractCommandsQuickAccessProvider_1 = class AbstractCommandsQuickAccessProvider extends PickerQuickAccessProvider {
|
|
32
|
+
constructor(options, instantiationService, keybindingService, commandService, telemetryService, dialogService) {
|
|
33
|
+
super(AbstractCommandsQuickAccessProvider_1.PREFIX, options);
|
|
34
|
+
this.instantiationService = instantiationService;
|
|
35
|
+
this.keybindingService = keybindingService;
|
|
36
|
+
this.commandService = commandService;
|
|
37
|
+
this.telemetryService = telemetryService;
|
|
38
|
+
this.dialogService = dialogService;
|
|
39
|
+
this.commandsHistory = this._register(this.instantiationService.createInstance(CommandsHistory));
|
|
40
|
+
this.options = options;
|
|
41
|
+
}
|
|
42
|
+
async _getPicks(filter, _disposables, token, runOptions) {
|
|
43
|
+
var _a, _b, _c, _d;
|
|
44
|
+
// Ask subclass for all command picks
|
|
45
|
+
const allCommandPicks = await this.getCommandPicks(token);
|
|
46
|
+
if (token.isCancellationRequested) {
|
|
47
|
+
return [];
|
|
48
|
+
}
|
|
49
|
+
const runTfidf = createSingleCallFunction(() => {
|
|
50
|
+
const tfidf = new TfIdfCalculator();
|
|
51
|
+
tfidf.updateDocuments(allCommandPicks.map(commandPick => ({
|
|
52
|
+
key: commandPick.commandId,
|
|
53
|
+
textChunks: [this.getTfIdfChunk(commandPick)]
|
|
54
|
+
})));
|
|
55
|
+
const result = tfidf.calculateScores(filter, token);
|
|
56
|
+
return normalizeTfIdfScores(result)
|
|
57
|
+
.filter(score => score.score > AbstractCommandsQuickAccessProvider_1.TFIDF_THRESHOLD)
|
|
58
|
+
.slice(0, AbstractCommandsQuickAccessProvider_1.TFIDF_MAX_RESULTS);
|
|
59
|
+
});
|
|
60
|
+
// Filter
|
|
61
|
+
const filteredCommandPicks = [];
|
|
62
|
+
for (const commandPick of allCommandPicks) {
|
|
63
|
+
const labelHighlights = (_a = AbstractCommandsQuickAccessProvider_1.WORD_FILTER(filter, commandPick.label)) !== null && _a !== void 0 ? _a : undefined;
|
|
64
|
+
const aliasHighlights = commandPick.commandAlias ? (_b = AbstractCommandsQuickAccessProvider_1.WORD_FILTER(filter, commandPick.commandAlias)) !== null && _b !== void 0 ? _b : undefined : undefined;
|
|
65
|
+
// Add if matching in label or alias
|
|
66
|
+
if (labelHighlights || aliasHighlights) {
|
|
67
|
+
commandPick.highlights = {
|
|
68
|
+
label: labelHighlights,
|
|
69
|
+
detail: this.options.showAlias ? aliasHighlights : undefined
|
|
70
|
+
};
|
|
71
|
+
filteredCommandPicks.push(commandPick);
|
|
72
|
+
}
|
|
73
|
+
// Also add if we have a 100% command ID match
|
|
74
|
+
else if (filter === commandPick.commandId) {
|
|
75
|
+
filteredCommandPicks.push(commandPick);
|
|
76
|
+
}
|
|
77
|
+
// Handle tf-idf scoring for the rest if there's a filter
|
|
78
|
+
else if (filter.length >= 3) {
|
|
79
|
+
const tfidf = runTfidf();
|
|
80
|
+
if (token.isCancellationRequested) {
|
|
81
|
+
return [];
|
|
82
|
+
}
|
|
83
|
+
// Add if we have a tf-idf score
|
|
84
|
+
const tfidfScore = tfidf.find(score => score.key === commandPick.commandId);
|
|
85
|
+
if (tfidfScore) {
|
|
86
|
+
commandPick.tfIdfScore = tfidfScore.score;
|
|
87
|
+
filteredCommandPicks.push(commandPick);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
// Add description to commands that have duplicate labels
|
|
92
|
+
const mapLabelToCommand = new Map();
|
|
93
|
+
for (const commandPick of filteredCommandPicks) {
|
|
94
|
+
const existingCommandForLabel = mapLabelToCommand.get(commandPick.label);
|
|
95
|
+
if (existingCommandForLabel) {
|
|
96
|
+
commandPick.description = commandPick.commandId;
|
|
97
|
+
existingCommandForLabel.description = existingCommandForLabel.commandId;
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
mapLabelToCommand.set(commandPick.label, commandPick);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
// Sort by MRU order and fallback to name otherwise
|
|
104
|
+
filteredCommandPicks.sort((commandPickA, commandPickB) => {
|
|
105
|
+
// If a result came from tf-idf, we want to put that towards the bottom
|
|
106
|
+
if (commandPickA.tfIdfScore && commandPickB.tfIdfScore) {
|
|
107
|
+
if (commandPickA.tfIdfScore === commandPickB.tfIdfScore) {
|
|
108
|
+
return commandPickA.label.localeCompare(commandPickB.label); // prefer lexicographically smaller command
|
|
109
|
+
}
|
|
110
|
+
return commandPickB.tfIdfScore - commandPickA.tfIdfScore; // prefer higher tf-idf score
|
|
111
|
+
}
|
|
112
|
+
else if (commandPickA.tfIdfScore) {
|
|
113
|
+
return 1; // first command has a score but other doesn't so other wins
|
|
114
|
+
}
|
|
115
|
+
else if (commandPickB.tfIdfScore) {
|
|
116
|
+
return -1; // other command has a score but first doesn't so first wins
|
|
117
|
+
}
|
|
118
|
+
const commandACounter = this.commandsHistory.peek(commandPickA.commandId);
|
|
119
|
+
const commandBCounter = this.commandsHistory.peek(commandPickB.commandId);
|
|
120
|
+
if (commandACounter && commandBCounter) {
|
|
121
|
+
return commandACounter > commandBCounter ? -1 : 1; // use more recently used command before older
|
|
122
|
+
}
|
|
123
|
+
if (commandACounter) {
|
|
124
|
+
return -1; // first command was used, so it wins over the non used one
|
|
125
|
+
}
|
|
126
|
+
if (commandBCounter) {
|
|
127
|
+
return 1; // other command was used so it wins over the command
|
|
128
|
+
}
|
|
129
|
+
if (this.options.suggestedCommandIds) {
|
|
130
|
+
const commandASuggestion = this.options.suggestedCommandIds.has(commandPickA.commandId);
|
|
131
|
+
const commandBSuggestion = this.options.suggestedCommandIds.has(commandPickB.commandId);
|
|
132
|
+
if (commandASuggestion && commandBSuggestion) {
|
|
133
|
+
return 0; // honor the order of the array
|
|
134
|
+
}
|
|
135
|
+
if (commandASuggestion) {
|
|
136
|
+
return -1; // first command was suggested, so it wins over the non suggested one
|
|
137
|
+
}
|
|
138
|
+
if (commandBSuggestion) {
|
|
139
|
+
return 1; // other command was suggested so it wins over the command
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
// both commands were never used, so we sort by name
|
|
143
|
+
return commandPickA.label.localeCompare(commandPickB.label);
|
|
144
|
+
});
|
|
145
|
+
const commandPicks = [];
|
|
146
|
+
let addOtherSeparator = false;
|
|
147
|
+
let addSuggestedSeparator = true;
|
|
148
|
+
let addCommonlyUsedSeparator = !!this.options.suggestedCommandIds;
|
|
149
|
+
for (let i = 0; i < filteredCommandPicks.length; i++) {
|
|
150
|
+
const commandPick = filteredCommandPicks[i];
|
|
151
|
+
// Separator: recently used
|
|
152
|
+
if (i === 0 && this.commandsHistory.peek(commandPick.commandId)) {
|
|
153
|
+
commandPicks.push({ type: 'separator', label: localize('recentlyUsed', "recently used") });
|
|
154
|
+
addOtherSeparator = true;
|
|
155
|
+
}
|
|
156
|
+
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) {
|
|
157
|
+
commandPicks.push({ type: 'separator', label: localize('suggested', "similar commands") });
|
|
158
|
+
addSuggestedSeparator = false;
|
|
159
|
+
}
|
|
160
|
+
// Separator: commonly used
|
|
161
|
+
if (addCommonlyUsedSeparator && commandPick.tfIdfScore === undefined && !this.commandsHistory.peek(commandPick.commandId) && ((_c = this.options.suggestedCommandIds) === null || _c === void 0 ? void 0 : _c.has(commandPick.commandId))) {
|
|
162
|
+
commandPicks.push({ type: 'separator', label: localize('commonlyUsed', "commonly used") });
|
|
163
|
+
addOtherSeparator = true;
|
|
164
|
+
addCommonlyUsedSeparator = false;
|
|
165
|
+
}
|
|
166
|
+
// Separator: other commands
|
|
167
|
+
if (addOtherSeparator && commandPick.tfIdfScore === undefined && !this.commandsHistory.peek(commandPick.commandId) && !((_d = this.options.suggestedCommandIds) === null || _d === void 0 ? void 0 : _d.has(commandPick.commandId))) {
|
|
168
|
+
commandPicks.push({ type: 'separator', label: localize('morecCommands', "other commands") });
|
|
169
|
+
addOtherSeparator = false;
|
|
170
|
+
}
|
|
171
|
+
// Command
|
|
172
|
+
commandPicks.push(this.toCommandPick(commandPick, runOptions));
|
|
173
|
+
}
|
|
174
|
+
if (!this.hasAdditionalCommandPicks(filter, token)) {
|
|
175
|
+
return commandPicks;
|
|
176
|
+
}
|
|
177
|
+
return {
|
|
178
|
+
picks: commandPicks,
|
|
179
|
+
additionalPicks: (async () => {
|
|
180
|
+
var _a;
|
|
181
|
+
const additionalCommandPicks = await this.getAdditionalCommandPicks(allCommandPicks, filteredCommandPicks, filter, token);
|
|
182
|
+
if (token.isCancellationRequested) {
|
|
183
|
+
return [];
|
|
184
|
+
}
|
|
185
|
+
const commandPicks = additionalCommandPicks.map(commandPick => this.toCommandPick(commandPick, runOptions));
|
|
186
|
+
// Basically, if we haven't already added a separator, we add one before the additional picks so long
|
|
187
|
+
// as one hasn't been added to the start of the array.
|
|
188
|
+
if (addSuggestedSeparator && ((_a = commandPicks[0]) === null || _a === void 0 ? void 0 : _a.type) !== 'separator') {
|
|
189
|
+
commandPicks.unshift({ type: 'separator', label: localize('suggested', "similar commands") });
|
|
190
|
+
}
|
|
191
|
+
return commandPicks;
|
|
192
|
+
})()
|
|
193
|
+
};
|
|
194
|
+
}
|
|
195
|
+
toCommandPick(commandPick, runOptions) {
|
|
196
|
+
if (commandPick.type === 'separator') {
|
|
197
|
+
return commandPick;
|
|
198
|
+
}
|
|
199
|
+
const keybinding = this.keybindingService.lookupKeybinding(commandPick.commandId);
|
|
200
|
+
const ariaLabel = keybinding ?
|
|
201
|
+
localize('commandPickAriaLabelWithKeybinding', "{0}, {1}", commandPick.label, keybinding.getAriaLabel()) :
|
|
202
|
+
commandPick.label;
|
|
203
|
+
return {
|
|
204
|
+
...commandPick,
|
|
205
|
+
ariaLabel,
|
|
206
|
+
detail: this.options.showAlias && commandPick.commandAlias !== commandPick.label ? commandPick.commandAlias : undefined,
|
|
207
|
+
keybinding,
|
|
208
|
+
accept: async () => {
|
|
209
|
+
var _a, _b;
|
|
210
|
+
// Add to history
|
|
211
|
+
this.commandsHistory.push(commandPick.commandId);
|
|
212
|
+
// Telementry
|
|
213
|
+
this.telemetryService.publicLog2('workbenchActionExecuted', {
|
|
214
|
+
id: commandPick.commandId,
|
|
215
|
+
from: (_a = runOptions === null || runOptions === void 0 ? void 0 : runOptions.from) !== null && _a !== void 0 ? _a : 'quick open'
|
|
216
|
+
});
|
|
217
|
+
// Run
|
|
218
|
+
try {
|
|
219
|
+
((_b = commandPick.args) === null || _b === void 0 ? void 0 : _b.length)
|
|
220
|
+
? await this.commandService.executeCommand(commandPick.commandId, ...commandPick.args)
|
|
221
|
+
: await this.commandService.executeCommand(commandPick.commandId);
|
|
222
|
+
}
|
|
223
|
+
catch (error) {
|
|
224
|
+
if (!isCancellationError(error)) {
|
|
225
|
+
this.dialogService.error(localize('canNotRun', "Command '{0}' resulted in an error", commandPick.label), toErrorMessage(error));
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
// TF-IDF string to be indexed
|
|
232
|
+
getTfIdfChunk({ label, commandAlias, commandDescription }) {
|
|
233
|
+
let chunk = label;
|
|
234
|
+
if (commandAlias && commandAlias !== label) {
|
|
235
|
+
chunk += ` - ${commandAlias}`;
|
|
236
|
+
}
|
|
237
|
+
if (commandDescription && commandDescription.value !== label) {
|
|
238
|
+
// If the original is the same as the value, don't add it
|
|
239
|
+
chunk += ` - ${commandDescription.value === commandDescription.original ? commandDescription.value : `${commandDescription.value} (${commandDescription.original})`}`;
|
|
240
|
+
}
|
|
241
|
+
return chunk;
|
|
242
|
+
}
|
|
243
|
+
};
|
|
244
|
+
AbstractCommandsQuickAccessProvider.PREFIX = '>';
|
|
245
|
+
AbstractCommandsQuickAccessProvider.TFIDF_THRESHOLD = 0.5;
|
|
246
|
+
AbstractCommandsQuickAccessProvider.TFIDF_MAX_RESULTS = 5;
|
|
247
|
+
AbstractCommandsQuickAccessProvider.WORD_FILTER = or(matchesPrefix, matchesWords, matchesContiguousSubString);
|
|
248
|
+
AbstractCommandsQuickAccessProvider = AbstractCommandsQuickAccessProvider_1 = __decorate([
|
|
249
|
+
__param(1, IInstantiationService),
|
|
250
|
+
__param(2, IKeybindingService),
|
|
251
|
+
__param(3, ICommandService),
|
|
252
|
+
__param(4, ITelemetryService),
|
|
253
|
+
__param(5, IDialogService)
|
|
254
|
+
], AbstractCommandsQuickAccessProvider);
|
|
255
|
+
export { AbstractCommandsQuickAccessProvider };
|
|
256
|
+
let CommandsHistory = CommandsHistory_1 = class CommandsHistory extends Disposable {
|
|
257
|
+
constructor(storageService, configurationService) {
|
|
258
|
+
super();
|
|
259
|
+
this.storageService = storageService;
|
|
260
|
+
this.configurationService = configurationService;
|
|
261
|
+
this.configuredCommandsHistoryLength = 0;
|
|
262
|
+
this.updateConfiguration();
|
|
263
|
+
this.load();
|
|
264
|
+
this.registerListeners();
|
|
265
|
+
}
|
|
266
|
+
registerListeners() {
|
|
267
|
+
this._register(this.configurationService.onDidChangeConfiguration(e => this.updateConfiguration(e)));
|
|
268
|
+
this._register(this.storageService.onWillSaveState(e => {
|
|
269
|
+
if (e.reason === WillSaveStateReason.SHUTDOWN) {
|
|
270
|
+
// Commands history is very dynamic and so we limit impact
|
|
271
|
+
// on storage to only save on shutdown. This helps reduce
|
|
272
|
+
// the overhead of syncing this data across machines.
|
|
273
|
+
this.saveState();
|
|
274
|
+
}
|
|
275
|
+
}));
|
|
276
|
+
}
|
|
277
|
+
updateConfiguration(e) {
|
|
278
|
+
if (e && !e.affectsConfiguration('workbench.commandPalette.history')) {
|
|
279
|
+
return;
|
|
280
|
+
}
|
|
281
|
+
this.configuredCommandsHistoryLength = CommandsHistory_1.getConfiguredCommandHistoryLength(this.configurationService);
|
|
282
|
+
if (CommandsHistory_1.cache && CommandsHistory_1.cache.limit !== this.configuredCommandsHistoryLength) {
|
|
283
|
+
CommandsHistory_1.cache.limit = this.configuredCommandsHistoryLength;
|
|
284
|
+
CommandsHistory_1.hasChanges = true;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
load() {
|
|
288
|
+
const raw = this.storageService.get(CommandsHistory_1.PREF_KEY_CACHE, 0 /* StorageScope.PROFILE */);
|
|
289
|
+
let serializedCache;
|
|
290
|
+
if (raw) {
|
|
291
|
+
try {
|
|
292
|
+
serializedCache = JSON.parse(raw);
|
|
293
|
+
}
|
|
294
|
+
catch (error) {
|
|
295
|
+
// invalid data
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
const cache = CommandsHistory_1.cache = new LRUCache(this.configuredCommandsHistoryLength, 1);
|
|
299
|
+
if (serializedCache) {
|
|
300
|
+
let entries;
|
|
301
|
+
if (serializedCache.usesLRU) {
|
|
302
|
+
entries = serializedCache.entries;
|
|
303
|
+
}
|
|
304
|
+
else {
|
|
305
|
+
entries = serializedCache.entries.sort((a, b) => a.value - b.value);
|
|
306
|
+
}
|
|
307
|
+
entries.forEach(entry => cache.set(entry.key, entry.value));
|
|
308
|
+
}
|
|
309
|
+
CommandsHistory_1.counter = this.storageService.getNumber(CommandsHistory_1.PREF_KEY_COUNTER, 0 /* StorageScope.PROFILE */, CommandsHistory_1.counter);
|
|
310
|
+
}
|
|
311
|
+
push(commandId) {
|
|
312
|
+
if (!CommandsHistory_1.cache) {
|
|
313
|
+
return;
|
|
314
|
+
}
|
|
315
|
+
CommandsHistory_1.cache.set(commandId, CommandsHistory_1.counter++); // set counter to command
|
|
316
|
+
CommandsHistory_1.hasChanges = true;
|
|
317
|
+
}
|
|
318
|
+
peek(commandId) {
|
|
319
|
+
var _a;
|
|
320
|
+
return (_a = CommandsHistory_1.cache) === null || _a === void 0 ? void 0 : _a.peek(commandId);
|
|
321
|
+
}
|
|
322
|
+
saveState() {
|
|
323
|
+
if (!CommandsHistory_1.cache) {
|
|
324
|
+
return;
|
|
325
|
+
}
|
|
326
|
+
if (!CommandsHistory_1.hasChanges) {
|
|
327
|
+
return;
|
|
328
|
+
}
|
|
329
|
+
const serializedCache = { usesLRU: true, entries: [] };
|
|
330
|
+
CommandsHistory_1.cache.forEach((value, key) => serializedCache.entries.push({ key, value }));
|
|
331
|
+
this.storageService.store(CommandsHistory_1.PREF_KEY_CACHE, JSON.stringify(serializedCache), 0 /* StorageScope.PROFILE */, 0 /* StorageTarget.USER */);
|
|
332
|
+
this.storageService.store(CommandsHistory_1.PREF_KEY_COUNTER, CommandsHistory_1.counter, 0 /* StorageScope.PROFILE */, 0 /* StorageTarget.USER */);
|
|
333
|
+
CommandsHistory_1.hasChanges = false;
|
|
334
|
+
}
|
|
335
|
+
static getConfiguredCommandHistoryLength(configurationService) {
|
|
336
|
+
var _a, _b;
|
|
337
|
+
const config = configurationService.getValue();
|
|
338
|
+
const configuredCommandHistoryLength = (_b = (_a = config.workbench) === null || _a === void 0 ? void 0 : _a.commandPalette) === null || _b === void 0 ? void 0 : _b.history;
|
|
339
|
+
if (typeof configuredCommandHistoryLength === 'number') {
|
|
340
|
+
return configuredCommandHistoryLength;
|
|
341
|
+
}
|
|
342
|
+
return CommandsHistory_1.DEFAULT_COMMANDS_HISTORY_LENGTH;
|
|
343
|
+
}
|
|
344
|
+
};
|
|
345
|
+
CommandsHistory.DEFAULT_COMMANDS_HISTORY_LENGTH = 50;
|
|
346
|
+
CommandsHistory.PREF_KEY_CACHE = 'commandPalette.mru.cache';
|
|
347
|
+
CommandsHistory.PREF_KEY_COUNTER = 'commandPalette.mru.counter';
|
|
348
|
+
CommandsHistory.counter = 1;
|
|
349
|
+
CommandsHistory.hasChanges = false;
|
|
350
|
+
CommandsHistory = CommandsHistory_1 = __decorate([
|
|
351
|
+
__param(0, IStorageService),
|
|
352
|
+
__param(1, IConfigurationService)
|
|
353
|
+
], CommandsHistory);
|
|
354
|
+
export { CommandsHistory };
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { keybindingLabelBackground, keybindingLabelBorder, keybindingLabelBottomBorder, keybindingLabelForeground, asCssVariable, widgetShadow, buttonForeground, buttonSeparator, buttonBackground, buttonHoverBackground, buttonSecondaryForeground, buttonSecondaryBackground, buttonSecondaryHoverBackground, buttonBorder, progressBarBackground, inputActiveOptionBorder, inputActiveOptionForeground, inputActiveOptionBackground, editorWidgetBackground, editorWidgetForeground, contrastBorder, checkboxBorder, checkboxBackground, checkboxForeground, problemsErrorIconForeground, problemsWarningIconForeground, problemsInfoIconForeground, inputBackground, inputForeground, inputBorder, textLinkForeground, inputValidationInfoBorder, inputValidationInfoBackground, inputValidationInfoForeground, inputValidationWarningBorder, inputValidationWarningBackground, inputValidationWarningForeground, inputValidationErrorBorder, inputValidationErrorBackground, inputValidationErrorForeground, listFilterWidgetBackground, listFilterWidgetNoMatchesOutline, listFilterWidgetOutline, listFilterWidgetShadow, badgeBackground, badgeForeground, breadcrumbsBackground, breadcrumbsForeground, breadcrumbsFocusForeground, breadcrumbsActiveSelectionForeground, activeContrastBorder, listActiveSelectionBackground, listActiveSelectionForeground, listActiveSelectionIconForeground, listDropBackground, listFocusAndSelectionOutline, listFocusBackground, listFocusForeground, listFocusOutline, listHoverBackground, listHoverForeground, listInactiveFocusBackground, listInactiveFocusOutline, listInactiveSelectionBackground, listInactiveSelectionForeground, listInactiveSelectionIconForeground, tableColumnsBorder, tableOddRowsBackgroundColor, treeIndentGuidesStroke, asCssVariableWithDefault, editorWidgetBorder, focusBorder, pickerGroupForeground, quickInputListFocusBackground, quickInputListFocusForeground, quickInputListFocusIconForeground, selectBackground, selectBorder, selectForeground, selectListBackground, treeInactiveIndentGuidesStroke, menuBorder, menuForeground, menuBackground, menuSelectionForeground, menuSelectionBackground, menuSelectionBorder, menuSeparatorBackground, scrollbarShadow, scrollbarSliderActiveBackground, scrollbarSliderBackground, scrollbarSliderHoverBackground } from '../common/colorRegistry.js';
|
|
2
|
+
import { Color } from '../../../base/common/color.js';
|
|
3
|
+
function overrideStyles(override, styles) {
|
|
4
|
+
const result = { ...styles };
|
|
5
|
+
for (const key in override) {
|
|
6
|
+
const val = override[key];
|
|
7
|
+
result[key] = val !== undefined ? asCssVariable(val) : undefined;
|
|
8
|
+
}
|
|
9
|
+
return result;
|
|
10
|
+
}
|
|
11
|
+
export const defaultKeybindingLabelStyles = {
|
|
12
|
+
keybindingLabelBackground: asCssVariable(keybindingLabelBackground),
|
|
13
|
+
keybindingLabelForeground: asCssVariable(keybindingLabelForeground),
|
|
14
|
+
keybindingLabelBorder: asCssVariable(keybindingLabelBorder),
|
|
15
|
+
keybindingLabelBottomBorder: asCssVariable(keybindingLabelBottomBorder),
|
|
16
|
+
keybindingLabelShadow: asCssVariable(widgetShadow)
|
|
17
|
+
};
|
|
18
|
+
export const defaultButtonStyles = {
|
|
19
|
+
buttonForeground: asCssVariable(buttonForeground),
|
|
20
|
+
buttonSeparator: asCssVariable(buttonSeparator),
|
|
21
|
+
buttonBackground: asCssVariable(buttonBackground),
|
|
22
|
+
buttonHoverBackground: asCssVariable(buttonHoverBackground),
|
|
23
|
+
buttonSecondaryForeground: asCssVariable(buttonSecondaryForeground),
|
|
24
|
+
buttonSecondaryBackground: asCssVariable(buttonSecondaryBackground),
|
|
25
|
+
buttonSecondaryHoverBackground: asCssVariable(buttonSecondaryHoverBackground),
|
|
26
|
+
buttonBorder: asCssVariable(buttonBorder),
|
|
27
|
+
};
|
|
28
|
+
export const defaultProgressBarStyles = {
|
|
29
|
+
progressBarBackground: asCssVariable(progressBarBackground)
|
|
30
|
+
};
|
|
31
|
+
export const defaultToggleStyles = {
|
|
32
|
+
inputActiveOptionBorder: asCssVariable(inputActiveOptionBorder),
|
|
33
|
+
inputActiveOptionForeground: asCssVariable(inputActiveOptionForeground),
|
|
34
|
+
inputActiveOptionBackground: asCssVariable(inputActiveOptionBackground)
|
|
35
|
+
};
|
|
36
|
+
export const defaultCheckboxStyles = {
|
|
37
|
+
checkboxBackground: asCssVariable(checkboxBackground),
|
|
38
|
+
checkboxBorder: asCssVariable(checkboxBorder),
|
|
39
|
+
checkboxForeground: asCssVariable(checkboxForeground)
|
|
40
|
+
};
|
|
41
|
+
export const defaultDialogStyles = {
|
|
42
|
+
dialogBackground: asCssVariable(editorWidgetBackground),
|
|
43
|
+
dialogForeground: asCssVariable(editorWidgetForeground),
|
|
44
|
+
dialogShadow: asCssVariable(widgetShadow),
|
|
45
|
+
dialogBorder: asCssVariable(contrastBorder),
|
|
46
|
+
errorIconForeground: asCssVariable(problemsErrorIconForeground),
|
|
47
|
+
warningIconForeground: asCssVariable(problemsWarningIconForeground),
|
|
48
|
+
infoIconForeground: asCssVariable(problemsInfoIconForeground),
|
|
49
|
+
textLinkForeground: asCssVariable(textLinkForeground)
|
|
50
|
+
};
|
|
51
|
+
export const defaultInputBoxStyles = {
|
|
52
|
+
inputBackground: asCssVariable(inputBackground),
|
|
53
|
+
inputForeground: asCssVariable(inputForeground),
|
|
54
|
+
inputBorder: asCssVariable(inputBorder),
|
|
55
|
+
inputValidationInfoBorder: asCssVariable(inputValidationInfoBorder),
|
|
56
|
+
inputValidationInfoBackground: asCssVariable(inputValidationInfoBackground),
|
|
57
|
+
inputValidationInfoForeground: asCssVariable(inputValidationInfoForeground),
|
|
58
|
+
inputValidationWarningBorder: asCssVariable(inputValidationWarningBorder),
|
|
59
|
+
inputValidationWarningBackground: asCssVariable(inputValidationWarningBackground),
|
|
60
|
+
inputValidationWarningForeground: asCssVariable(inputValidationWarningForeground),
|
|
61
|
+
inputValidationErrorBorder: asCssVariable(inputValidationErrorBorder),
|
|
62
|
+
inputValidationErrorBackground: asCssVariable(inputValidationErrorBackground),
|
|
63
|
+
inputValidationErrorForeground: asCssVariable(inputValidationErrorForeground)
|
|
64
|
+
};
|
|
65
|
+
export const defaultFindWidgetStyles = {
|
|
66
|
+
listFilterWidgetBackground: asCssVariable(listFilterWidgetBackground),
|
|
67
|
+
listFilterWidgetOutline: asCssVariable(listFilterWidgetOutline),
|
|
68
|
+
listFilterWidgetNoMatchesOutline: asCssVariable(listFilterWidgetNoMatchesOutline),
|
|
69
|
+
listFilterWidgetShadow: asCssVariable(listFilterWidgetShadow),
|
|
70
|
+
inputBoxStyles: defaultInputBoxStyles,
|
|
71
|
+
toggleStyles: defaultToggleStyles
|
|
72
|
+
};
|
|
73
|
+
export const defaultCountBadgeStyles = {
|
|
74
|
+
badgeBackground: asCssVariable(badgeBackground),
|
|
75
|
+
badgeForeground: asCssVariable(badgeForeground),
|
|
76
|
+
badgeBorder: asCssVariable(contrastBorder)
|
|
77
|
+
};
|
|
78
|
+
export const defaultBreadcrumbsWidgetStyles = {
|
|
79
|
+
breadcrumbsBackground: asCssVariable(breadcrumbsBackground),
|
|
80
|
+
breadcrumbsForeground: asCssVariable(breadcrumbsForeground),
|
|
81
|
+
breadcrumbsHoverForeground: asCssVariable(breadcrumbsFocusForeground),
|
|
82
|
+
breadcrumbsFocusForeground: asCssVariable(breadcrumbsFocusForeground),
|
|
83
|
+
breadcrumbsFocusAndSelectionForeground: asCssVariable(breadcrumbsActiveSelectionForeground)
|
|
84
|
+
};
|
|
85
|
+
export const defaultListStyles = {
|
|
86
|
+
listBackground: undefined,
|
|
87
|
+
listInactiveFocusForeground: undefined,
|
|
88
|
+
listFocusBackground: asCssVariable(listFocusBackground),
|
|
89
|
+
listFocusForeground: asCssVariable(listFocusForeground),
|
|
90
|
+
listFocusOutline: asCssVariable(listFocusOutline),
|
|
91
|
+
listActiveSelectionBackground: asCssVariable(listActiveSelectionBackground),
|
|
92
|
+
listActiveSelectionForeground: asCssVariable(listActiveSelectionForeground),
|
|
93
|
+
listActiveSelectionIconForeground: asCssVariable(listActiveSelectionIconForeground),
|
|
94
|
+
listFocusAndSelectionOutline: asCssVariable(listFocusAndSelectionOutline),
|
|
95
|
+
listFocusAndSelectionBackground: asCssVariable(listActiveSelectionBackground),
|
|
96
|
+
listFocusAndSelectionForeground: asCssVariable(listActiveSelectionForeground),
|
|
97
|
+
listInactiveSelectionBackground: asCssVariable(listInactiveSelectionBackground),
|
|
98
|
+
listInactiveSelectionIconForeground: asCssVariable(listInactiveSelectionIconForeground),
|
|
99
|
+
listInactiveSelectionForeground: asCssVariable(listInactiveSelectionForeground),
|
|
100
|
+
listInactiveFocusBackground: asCssVariable(listInactiveFocusBackground),
|
|
101
|
+
listInactiveFocusOutline: asCssVariable(listInactiveFocusOutline),
|
|
102
|
+
listHoverBackground: asCssVariable(listHoverBackground),
|
|
103
|
+
listHoverForeground: asCssVariable(listHoverForeground),
|
|
104
|
+
listDropBackground: asCssVariable(listDropBackground),
|
|
105
|
+
listSelectionOutline: asCssVariable(activeContrastBorder),
|
|
106
|
+
listHoverOutline: asCssVariable(activeContrastBorder),
|
|
107
|
+
treeIndentGuidesStroke: asCssVariable(treeIndentGuidesStroke),
|
|
108
|
+
treeInactiveIndentGuidesStroke: asCssVariable(treeInactiveIndentGuidesStroke),
|
|
109
|
+
tableColumnsBorder: asCssVariable(tableColumnsBorder),
|
|
110
|
+
tableOddRowsBackgroundColor: asCssVariable(tableOddRowsBackgroundColor),
|
|
111
|
+
};
|
|
112
|
+
export function getListStyles(override) {
|
|
113
|
+
return overrideStyles(override, defaultListStyles);
|
|
114
|
+
}
|
|
115
|
+
export const defaultSelectBoxStyles = {
|
|
116
|
+
selectBackground: asCssVariable(selectBackground),
|
|
117
|
+
selectListBackground: asCssVariable(selectListBackground),
|
|
118
|
+
selectForeground: asCssVariable(selectForeground),
|
|
119
|
+
decoratorRightForeground: asCssVariable(pickerGroupForeground),
|
|
120
|
+
selectBorder: asCssVariable(selectBorder),
|
|
121
|
+
focusBorder: asCssVariable(focusBorder),
|
|
122
|
+
listFocusBackground: asCssVariable(quickInputListFocusBackground),
|
|
123
|
+
listInactiveSelectionIconForeground: asCssVariable(quickInputListFocusIconForeground),
|
|
124
|
+
listFocusForeground: asCssVariable(quickInputListFocusForeground),
|
|
125
|
+
listFocusOutline: asCssVariableWithDefault(activeContrastBorder, Color.transparent.toString()),
|
|
126
|
+
listHoverBackground: asCssVariable(listHoverBackground),
|
|
127
|
+
listHoverForeground: asCssVariable(listHoverForeground),
|
|
128
|
+
listHoverOutline: asCssVariable(activeContrastBorder),
|
|
129
|
+
selectListBorder: asCssVariable(editorWidgetBorder),
|
|
130
|
+
listBackground: undefined,
|
|
131
|
+
listActiveSelectionBackground: undefined,
|
|
132
|
+
listActiveSelectionForeground: undefined,
|
|
133
|
+
listActiveSelectionIconForeground: undefined,
|
|
134
|
+
listFocusAndSelectionBackground: undefined,
|
|
135
|
+
listDropBackground: undefined,
|
|
136
|
+
listInactiveSelectionBackground: undefined,
|
|
137
|
+
listInactiveSelectionForeground: undefined,
|
|
138
|
+
listInactiveFocusBackground: undefined,
|
|
139
|
+
listInactiveFocusOutline: undefined,
|
|
140
|
+
listSelectionOutline: undefined,
|
|
141
|
+
listFocusAndSelectionForeground: undefined,
|
|
142
|
+
listFocusAndSelectionOutline: undefined,
|
|
143
|
+
listInactiveFocusForeground: undefined,
|
|
144
|
+
tableColumnsBorder: undefined,
|
|
145
|
+
tableOddRowsBackgroundColor: undefined,
|
|
146
|
+
treeIndentGuidesStroke: undefined,
|
|
147
|
+
treeInactiveIndentGuidesStroke: undefined,
|
|
148
|
+
};
|
|
149
|
+
export const defaultMenuStyles = {
|
|
150
|
+
shadowColor: asCssVariable(widgetShadow),
|
|
151
|
+
borderColor: asCssVariable(menuBorder),
|
|
152
|
+
foregroundColor: asCssVariable(menuForeground),
|
|
153
|
+
backgroundColor: asCssVariable(menuBackground),
|
|
154
|
+
selectionForegroundColor: asCssVariable(menuSelectionForeground),
|
|
155
|
+
selectionBackgroundColor: asCssVariable(menuSelectionBackground),
|
|
156
|
+
selectionBorderColor: asCssVariable(menuSelectionBorder),
|
|
157
|
+
separatorColor: asCssVariable(menuSeparatorBackground),
|
|
158
|
+
scrollbarShadow: asCssVariable(scrollbarShadow),
|
|
159
|
+
scrollbarSliderBackground: asCssVariable(scrollbarSliderBackground),
|
|
160
|
+
scrollbarSliderHoverBackground: asCssVariable(scrollbarSliderHoverBackground),
|
|
161
|
+
scrollbarSliderActiveBackground: asCssVariable(scrollbarSliderActiveBackground)
|
|
162
|
+
};
|