@likec4/language-server 1.39.0 → 1.39.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/dist/{LikeC4LanguageServices.js → LikeC4LanguageServices.mjs} +3 -3
  2. package/dist/{Rpc.js → Rpc.mjs} +3 -3
  3. package/dist/{ast.js → ast.mjs} +2 -2
  4. package/dist/browser-worker.mjs +2 -0
  5. package/dist/{browser.js → browser.mjs} +3 -3
  6. package/dist/bundled.mjs +2165 -2165
  7. package/dist/documentation/{documentation-provider.js → documentation-provider.mjs} +2 -2
  8. package/dist/documentation/{index.js → index.mjs} +1 -1
  9. package/dist/filesystem/{ChokidarWatcher.js → ChokidarWatcher.mjs} +8 -7
  10. package/dist/filesystem/LikeC4FileSystem.d.ts +1 -0
  11. package/dist/filesystem/{LikeC4FileSystem.js → LikeC4FileSystem.mjs} +6 -6
  12. package/dist/filesystem/{index.js → index.mjs} +1 -1
  13. package/dist/formatting/{LikeC4Formatter.js → LikeC4Formatter.mjs} +2 -2
  14. package/dist/generated/{module.js → module.mjs} +2 -2
  15. package/dist/{index.js → index.mjs} +9 -9
  16. package/dist/{likec4lib.js → likec4lib.mjs} +1 -1
  17. package/dist/lsp/{CodeLensProvider.js → CodeLensProvider.mjs} +3 -3
  18. package/dist/lsp/{CompletionProvider.js → CompletionProvider.mjs} +1 -1
  19. package/dist/lsp/{DocumentLinkProvider.js → DocumentLinkProvider.mjs} +2 -2
  20. package/dist/lsp/{DocumentSymbolProvider.js → DocumentSymbolProvider.mjs} +3 -3
  21. package/dist/lsp/{HoverProvider.js → HoverProvider.mjs} +1 -1
  22. package/dist/lsp/{SemanticTokenProvider.js → SemanticTokenProvider.mjs} +1 -1
  23. package/dist/lsp/index.mjs +7 -0
  24. package/dist/mcp/{MCPServerFactory.js → MCPServerFactory.mjs} +9 -9
  25. package/dist/mcp/{interfaces.js → interfaces.mjs} +1 -1
  26. package/dist/mcp/server/{StdioLikeC4MCPServer.js → StdioLikeC4MCPServer.mjs} +1 -1
  27. package/dist/mcp/server/{StreamableLikeC4MCPServer.js → StreamableLikeC4MCPServer.mjs} +1 -1
  28. package/dist/mcp/server/{WithMCPServer.js → WithMCPServer.mjs} +3 -3
  29. package/dist/mcp/tools/{_common.js → _common.mjs} +2 -2
  30. package/dist/mcp/tools/{find-relationships.js → find-relationships.mjs} +2 -2
  31. package/dist/mcp/tools/{list-projects.js → list-projects.mjs} +1 -1
  32. package/dist/mcp/tools/{open-view.js → open-view.mjs} +2 -2
  33. package/dist/mcp/tools/{read-deployment.js → read-deployment.mjs} +2 -2
  34. package/dist/mcp/tools/{read-element.js → read-element.mjs} +2 -2
  35. package/dist/mcp/tools/{read-project-summary.js → read-project-summary.mjs} +2 -2
  36. package/dist/mcp/tools/{read-view.js → read-view.mjs} +2 -2
  37. package/dist/mcp/tools/{search-element.js → search-element.mjs} +2 -2
  38. package/dist/mcp/{utils.js → utils.mjs} +1 -1
  39. package/dist/model/builder/{MergedSpecification.js → MergedSpecification.mjs} +2 -2
  40. package/dist/model/builder/{buildModel.js → buildModel.mjs} +4 -4
  41. package/dist/model/{deployments-index.js → deployments-index.mjs} +4 -4
  42. package/dist/model/{fqn-index.js → fqn-index.mjs} +5 -5
  43. package/dist/model/index.mjs +6 -0
  44. package/dist/model/{model-builder.js → model-builder.mjs} +5 -5
  45. package/dist/model/{model-locator.js → model-locator.mjs} +4 -4
  46. package/dist/model/{model-parser-where.js → model-parser-where.mjs} +1 -1
  47. package/dist/model/{model-parser.js → model-parser.mjs} +13 -13
  48. package/dist/model/parser/{Base.js → Base.mjs} +5 -5
  49. package/dist/model/parser/{DeploymentModelParser.js → DeploymentModelParser.mjs} +3 -3
  50. package/dist/model/parser/{DeploymentViewParser.js → DeploymentViewParser.mjs} +5 -5
  51. package/dist/model/parser/{FqnRefParser.js → FqnRefParser.mjs} +6 -6
  52. package/dist/model/parser/{GlobalsParser.js → GlobalsParser.mjs} +2 -2
  53. package/dist/model/parser/{ImportsParser.js → ImportsParser.mjs} +1 -1
  54. package/dist/model/parser/{ModelParser.js → ModelParser.mjs} +3 -3
  55. package/dist/model/parser/{PredicatesParser.js → PredicatesParser.mjs} +1 -1
  56. package/dist/model/parser/{SpecificationParser.js → SpecificationParser.mjs} +3 -3
  57. package/dist/model/parser/{ViewsParser.js → ViewsParser.mjs} +6 -6
  58. package/dist/model-change/{ModelChanges.js → ModelChanges.mjs} +3 -3
  59. package/dist/model-change/{changeElementStyle.js → changeElementStyle.mjs} +1 -1
  60. package/dist/model-change/{changeViewLayout.js → changeViewLayout.mjs} +1 -1
  61. package/dist/model-change/{saveManualLayout.js → saveManualLayout.mjs} +1 -1
  62. package/dist/{module.js → module.mjs} +16 -16
  63. package/dist/references/index.mjs +3 -0
  64. package/dist/references/{name-provider.js → name-provider.mjs} +1 -1
  65. package/dist/references/{scope-computation.js → scope-computation.mjs} +2 -2
  66. package/dist/references/{scope-provider.js → scope-provider.mjs} +4 -4
  67. package/dist/shared/{NodeKindProvider.js → NodeKindProvider.mjs} +1 -1
  68. package/dist/shared/index.mjs +2 -0
  69. package/dist/test/index.mjs +1 -0
  70. package/dist/test/{testServices.js → testServices.mjs} +2 -2
  71. package/dist/utils/{disposable.js → disposable.mjs} +1 -1
  72. package/dist/utils/{elementRef.js → elementRef.mjs} +1 -1
  73. package/dist/utils/{fqnRef.js → fqnRef.mjs} +1 -1
  74. package/dist/utils/{index.js → index.mjs} +6 -6
  75. package/dist/utils/{projectId.js → projectId.mjs} +1 -1
  76. package/dist/validation/{_shared.js → _shared.mjs} +1 -1
  77. package/dist/validation/{deployment-checks.js → deployment-checks.mjs} +3 -3
  78. package/dist/validation/{dynamic-view-step.js → dynamic-view-step.mjs} +2 -2
  79. package/dist/validation/{element-ref.js → element-ref.mjs} +2 -2
  80. package/dist/validation/{element.js → element.mjs} +2 -2
  81. package/dist/validation/{imports.js → imports.mjs} +2 -2
  82. package/dist/validation/{index.js → index.mjs} +13 -13
  83. package/dist/validation/{property-checks.js → property-checks.mjs} +2 -2
  84. package/dist/validation/{relation.js → relation.mjs} +2 -2
  85. package/dist/validation/{specification.js → specification.mjs} +3 -3
  86. package/dist/validation/view-predicates/{fqn-expr-with.js → fqn-expr-with.mjs} +4 -3
  87. package/dist/validation/view-predicates/{fqn-ref-expr.js → fqn-ref-expr.mjs} +3 -3
  88. package/dist/validation/view-predicates/{incoming.js → incoming.mjs} +2 -2
  89. package/dist/validation/view-predicates/index.mjs +6 -0
  90. package/dist/validation/view-predicates/{outgoing.js → outgoing.mjs} +2 -2
  91. package/dist/validation/view-predicates/{relation-expr.js → relation-expr.mjs} +2 -2
  92. package/dist/validation/view-predicates/{relation-with.js → relation-with.mjs} +2 -2
  93. package/dist/validation/{view.js → view.mjs} +3 -3
  94. package/dist/view-utils/index.mjs +2 -0
  95. package/dist/view-utils/{manual-layout.js → manual-layout.mjs} +1 -1
  96. package/dist/views/{configurable-layouter.js → configurable-layouter.mjs} +1 -1
  97. package/dist/views/index.mjs +1 -0
  98. package/dist/views/{likec4-views.js → likec4-views.mjs} +2 -2
  99. package/dist/workspace/{LangiumDocuments.js → LangiumDocuments.mjs} +2 -2
  100. package/dist/workspace/{ProjectsManager.js → ProjectsManager.mjs} +1 -1
  101. package/dist/workspace/{WorkspaceManager.js → WorkspaceManager.mjs} +2 -2
  102. package/dist/workspace/index.mjs +5 -0
  103. package/package.json +21 -19
  104. package/dist/browser-worker.js +0 -2
  105. package/dist/bundled.js +0 -40
  106. package/dist/lsp/index.js +0 -7
  107. package/dist/model/index.js +0 -6
  108. package/dist/references/index.js +0 -3
  109. package/dist/shared/index.js +0 -2
  110. package/dist/test/index.js +0 -1
  111. package/dist/validation/view-predicates/index.js +0 -6
  112. package/dist/view-utils/index.js +0 -2
  113. package/dist/views/index.js +0 -1
  114. package/dist/workspace/index.js +0 -5
  115. /package/dist/{empty.js → empty.mjs} +0 -0
  116. /package/dist/filesystem/{FileSystemWatcher.js → FileSystemWatcher.mjs} +0 -0
  117. /package/dist/formatting/{utils.js → utils.mjs} +0 -0
  118. /package/dist/generated/{ast.js → ast.mjs} +0 -0
  119. /package/dist/generated/{grammar.js → grammar.mjs} +0 -0
  120. /package/dist/generated-lib/{icons.js → icons.mjs} +0 -0
  121. /package/dist/{logger.js → logger.mjs} +0 -0
  122. /package/dist/lsp/{DocumentHighlightProvider.js → DocumentHighlightProvider.mjs} +0 -0
  123. /package/dist/lsp/{RenameProvider.js → RenameProvider.mjs} +0 -0
  124. /package/dist/mcp/{NoopLikeC4MCPServer.js → NoopLikeC4MCPServer.mjs} +0 -0
  125. /package/dist/model/builder/{MergedExtends.js → MergedExtends.mjs} +0 -0
  126. /package/dist/model/builder/{assignTagColors.js → assignTagColors.mjs} +0 -0
  127. /package/dist/model/parser/{ValueConverter.js → ValueConverter.mjs} +0 -0
  128. /package/dist/{protocol.js → protocol.mjs} +0 -0
  129. /package/dist/shared/{WorkspaceSymbolProvider.js → WorkspaceSymbolProvider.mjs} +0 -0
  130. /package/dist/utils/{printDocs.js → printDocs.mjs} +0 -0
  131. /package/dist/utils/{stringHash.js → stringHash.mjs} +0 -0
  132. /package/dist/validation/{DocumentValidator.js → DocumentValidator.mjs} +0 -0
  133. /package/dist/view-utils/{assignNavigateTo.js → assignNavigateTo.mjs} +0 -0
  134. /package/dist/view-utils/{resolve-relative-paths.js → resolve-relative-paths.mjs} +0 -0
  135. /package/dist/workspace/{AstNodeDescriptionProvider.js → AstNodeDescriptionProvider.mjs} +0 -0
  136. /package/dist/workspace/{IndexManager.js → IndexManager.mjs} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.