@workbench-kit/shell-react 0.0.2-prototype.0.2.19 → 0.0.2-prototype.0.2.20
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": "@workbench-kit/shell-react",
|
|
3
|
-
"version": "0.0.2-prototype.0.2.
|
|
3
|
+
"version": "0.0.2-prototype.0.2.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"**/*.css"
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"@xyflow/react": "^12.11.2",
|
|
25
25
|
"jsonata": "^2.2.0",
|
|
26
26
|
"react-table-mapping": "^1.0.3",
|
|
27
|
-
"@workbench-kit/
|
|
28
|
-
"@workbench-kit/field-remap": "0.0.2-prototype.0.2.
|
|
29
|
-
"@workbench-kit/tokens": "0.0.2-prototype.0.2.
|
|
30
|
-
"@workbench-kit/
|
|
31
|
-
"@workbench-kit/workbench-core": "0.0.2-prototype.0.2.
|
|
32
|
-
"@workbench-kit/workbench-
|
|
33
|
-
"@workbench-kit/
|
|
34
|
-
"@workbench-kit/
|
|
27
|
+
"@workbench-kit/platform": "0.0.2-prototype.0.2.20",
|
|
28
|
+
"@workbench-kit/field-remap": "0.0.2-prototype.0.2.20",
|
|
29
|
+
"@workbench-kit/tokens": "0.0.2-prototype.0.2.20",
|
|
30
|
+
"@workbench-kit/react": "0.0.2-prototype.0.2.20",
|
|
31
|
+
"@workbench-kit/workbench-core": "0.0.2-prototype.0.2.20",
|
|
32
|
+
"@workbench-kit/workbench-config": "0.0.2-prototype.0.2.20",
|
|
33
|
+
"@workbench-kit/workbench-extension-sdk": "0.0.2-prototype.0.2.20",
|
|
34
|
+
"@workbench-kit/workspace": "0.0.2-prototype.0.2.20"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": "^19.0.0",
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import type { WorkbenchExtensionDescription } from '@workbench-kit/workbench-core';
|
|
2
|
-
import * as builtinAccountsModule from './builtin/accounts/src/index.
|
|
3
|
-
import * as builtinChatModule from './builtin/chat/src/index.
|
|
4
|
-
import * as builtinCommandsModule from './builtin/commands/src/index.
|
|
5
|
-
import * as builtinEditorModule from './builtin/editor/src/index.
|
|
6
|
-
import * as builtinExplorerModule from './builtin/explorer/src/index.
|
|
7
|
-
import * as builtinExtensionsModule from './builtin/extensions/src/index.
|
|
8
|
-
import * as builtinKeybindingsModule from './builtin/keybindings/src/index.
|
|
9
|
-
import * as builtinSearchModule from './builtin/search/src/index.
|
|
10
|
-
import * as builtinSettingsModule from './builtin/settings/src/index.
|
|
11
|
-
import * as builtinWorkspaceModule from './builtin/workspace/src/index.
|
|
2
|
+
import * as builtinAccountsModule from './builtin/accounts/src/index.js';
|
|
3
|
+
import * as builtinChatModule from './builtin/chat/src/index.js';
|
|
4
|
+
import * as builtinCommandsModule from './builtin/commands/src/index.js';
|
|
5
|
+
import * as builtinEditorModule from './builtin/editor/src/index.js';
|
|
6
|
+
import * as builtinExplorerModule from './builtin/explorer/src/index.js';
|
|
7
|
+
import * as builtinExtensionsModule from './builtin/extensions/src/index.js';
|
|
8
|
+
import * as builtinKeybindingsModule from './builtin/keybindings/src/index.js';
|
|
9
|
+
import * as builtinSearchModule from './builtin/search/src/index.js';
|
|
10
|
+
import * as builtinSettingsModule from './builtin/settings/src/index.js';
|
|
11
|
+
import * as builtinWorkspaceModule from './builtin/workspace/src/index.js';
|
|
12
12
|
|
|
13
13
|
// This file is generated by scripts/bundle-workbench-extensions.mjs.
|
|
14
14
|
// Do not edit it by hand.
|