@lvce-editor/shared-process 0.101.4 → 0.101.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/shared-process",
3
- "version": "0.101.4",
3
+ "version": "0.101.6",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@lvce-editor/assert": "1.9.0",
21
- "@lvce-editor/extension-host-helper-process": "0.101.4",
21
+ "@lvce-editor/extension-host-helper-process": "0.101.6",
22
22
  "@lvce-editor/ipc": "16.11.0",
23
23
  "@lvce-editor/json-rpc": "8.6.0",
24
24
  "@lvce-editor/jsonc-parser": "1.5.0",
@@ -40,7 +40,7 @@
40
40
  "@lvce-editor/pty-host": "8.7.0",
41
41
  "@lvce-editor/search-process": "15.8.0",
42
42
  "@lvce-editor/typescript-compile-process": "5.9.0",
43
- "open": "^11.0.0",
43
+ "open": "^11.0.1",
44
44
  "tail": "^2.2.6",
45
45
  "tmp-promise": "^3.0.3",
46
46
  "trash": "^10.1.1"
@@ -3,6 +3,6 @@ import { fileURLToPath } from 'url'
3
3
 
4
4
  export const getBuiltinExtensionsPath = () => {
5
5
  const staticServerPath = fileURLToPath(import.meta.resolve('@lvce-editor/static-server'))
6
- const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'a8ec926', 'extensions')
6
+ const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'df97fe6', 'extensions')
7
7
  return builtinExtensionsPath
8
8
  }
@@ -380,6 +380,13 @@ export class LanguageServerConnection {
380
380
  const result = (await this.sendRequest('initialize', {
381
381
  capabilities: {
382
382
  textDocument: {
383
+ codeAction: {
384
+ codeActionLiteralSupport: {
385
+ codeActionKind: {
386
+ valueSet: ['', 'quickfix', 'refactor', 'refactor.extract', 'refactor.inline', 'refactor.rewrite', 'source', 'source.organizeImports'],
387
+ },
388
+ },
389
+ },
383
390
  completion: {
384
391
  completionItem: {
385
392
  snippetSupport: true,
@@ -61,11 +61,11 @@ export const getSetupName = () => {
61
61
  return 'Lvce-Setup'
62
62
  }
63
63
 
64
- export const version = '0.101.4'
64
+ export const version = '0.101.6'
65
65
 
66
- export const commit = 'a8ec926'
66
+ export const commit = 'df97fe6'
67
67
 
68
- export const date = '2026-08-13T17:04:43.000Z'
68
+ export const date = '2026-08-15T07:37:20.000Z'
69
69
 
70
70
  export const getVersion = () => {
71
71
  return version
@@ -2,5 +2,5 @@ import { join } from 'node:path'
2
2
  import * as Root from '../Root/Root.js'
3
3
 
4
4
  export const getPreloadUrl = () => {
5
- return join(Root.root, 'static', 'a8ec926', 'packages', 'preload', 'dist', 'index.js')
5
+ return join(Root.root, 'static', 'df97fe6', 'packages', 'preload', 'dist', 'index.js')
6
6
  }
@@ -1,4 +1,33 @@
1
1
  [
2
+ {
3
+ "id": "notificationCenterView",
4
+ "fileName": "notificationCenterWorkerMain.js",
5
+ "contentSecurityPolicy": ["default-src 'none'", "sandbox allow-same-origin"],
6
+ "defaultPath": "/packages/renderer-worker/node_modules/@lvce-editor/about-view/dist/notificationCenterWorkerMain.js",
7
+ "productionPath": "/packages/notification-center-view/dist/notificationCenterWorkerMain.js",
8
+ "settingName": "develop.notificationCenterViewWorkerPath",
9
+ "hotReloadCommand": "",
10
+ "viewlet": {
11
+ "name": "NotificationCenter",
12
+ "css": ["/css/parts/NotificationCenter.css"],
13
+ "state": { "idKey": "uid" },
14
+ "commandPrefix": "NotificationCenter",
15
+ "commandReturnStateWhenCommandsEmpty": true,
16
+ "methods": {
17
+ "create": { "name": "NotificationCenter.create", "parameters": [{ "source": "state", "name": "uid" }] },
18
+ "loadContent": { "name": "NotificationCenter.loadContent", "parameters": [{ "source": "state", "name": "uid" }] },
19
+ "diff": { "name": "NotificationCenter.diff2", "parameters": [{ "source": "state", "name": "uid" }] },
20
+ "render": {
21
+ "name": "NotificationCenter.render2",
22
+ "parameters": [{ "source": "state", "name": "uid" }, { "source": "result", "name": "diff" }]
23
+ },
24
+ "getCommandIds": { "name": "NotificationCenter.getCommandIds", "parameters": [] },
25
+ "renderEventListeners": { "name": "NotificationCenter.renderEventListeners", "parameters": [] }
26
+ },
27
+ "capabilities": { "events": true, "render": true, "rootRender": true },
28
+ "renderComparison": "always"
29
+ }
30
+ },
2
31
  {
3
32
  "id": "aboutWorker",
4
33
  "fileName": "aboutWorkerMain.js",