@runmedev/react-components 3.15.1 → 3.15.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.
- package/LICENSE +201 -0
- package/dist/app/index.css +1 -1
- package/dist/app/index.js +499 -491
- package/dist/components/Actions/Actions.d.ts.map +1 -1
- package/dist/components/Actions/CellConsole.d.ts +22 -0
- package/dist/components/Actions/CellConsole.d.ts.map +1 -0
- package/dist/contexts/AgentContext.d.ts.map +1 -1
- package/dist/contexts/SettingsContext.d.ts +2 -0
- package/dist/contexts/SettingsContext.d.ts.map +1 -1
- package/dist/react-components.cjs +186 -170
- package/dist/react-components.css +1 -1
- package/dist/react-components.mjs +6063 -5388
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -10
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/app.tsx","../src/index.tsx","../src/layout.tsx","../src/main.tsx","../src/storage.ts","../src/token.ts","../src/vite-env.d.ts","../src/components/notfound.tsx","../src/components/topnavigation.tsx","../src/components/index.tsx","../src/components/actions/actions.tsx","../src/components/actions/editor.tsx","../src/components/actions/icons.tsx","../src/components/chat/chat.tsx","../src/components/files/viewer.tsx","../src/components/login/login.tsx","../src/components/settings/settings.tsx","../src/contexts/agentcontext.tsx","../src/contexts/cellcontext.tsx","../src/contexts/settingscontext.tsx","../src/contexts/index.tsx","../src/runme/client.ts"],"version":"5.8.3"}
|
|
1
|
+
{"root":["../src/app.tsx","../src/index.tsx","../src/layout.tsx","../src/main.tsx","../src/storage.ts","../src/token.ts","../src/vite-env.d.ts","../src/components/notfound.tsx","../src/components/topnavigation.tsx","../src/components/index.tsx","../src/components/actions/actions.tsx","../src/components/actions/cellconsole.tsx","../src/components/actions/editor.tsx","../src/components/actions/icons.tsx","../src/components/chat/chat.tsx","../src/components/files/viewer.tsx","../src/components/login/login.tsx","../src/components/settings/settings.tsx","../src/contexts/agentcontext.tsx","../src/contexts/cellcontext.tsx","../src/contexts/settingscontext.tsx","../src/contexts/index.tsx","../src/runme/client.ts","../src/types/test.d.ts"],"version":"5.8.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runmedev/react-components",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -19,21 +19,25 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@runmedev/react-console": "
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"clean": "rimraf dist"
|
|
22
|
+
"@runmedev/react-console": "3.15.2"
|
|
26
23
|
},
|
|
27
24
|
"peerDependencies": {
|
|
25
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
26
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
27
|
+
"@radix-ui/themes": "^3.2.1",
|
|
28
28
|
"react": "^19.0.0",
|
|
29
29
|
"react-dom": "^19.0.0",
|
|
30
30
|
"react-router": "^7.4.0",
|
|
31
|
-
"react-router-dom": "^7.5.0"
|
|
32
|
-
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
33
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
34
|
-
"@radix-ui/themes": "^3.2.1"
|
|
31
|
+
"react-router-dom": "^7.5.0"
|
|
35
32
|
},
|
|
36
33
|
"publishConfig": {
|
|
37
34
|
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rimraf dist",
|
|
38
|
+
"test": "vitest",
|
|
39
|
+
"test:ui": "vitest --ui",
|
|
40
|
+
"test:run": "vitest run",
|
|
41
|
+
"test:coverage": "vitest run --coverage"
|
|
38
42
|
}
|
|
39
|
-
}
|
|
43
|
+
}
|