nexus-shell 0.1.3 → 0.1.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/components/widgets/DataGrid.d.ts +22 -0
- package/dist/components/widgets/MockupReviewWidget.d.ts +3 -0
- package/dist/components/widgets/WelcomeTab.d.ts +8 -0
- package/dist/components/widgets/mockup-reviewer/ExecutionOverlay.d.ts +10 -0
- package/dist/components/widgets/mockup-reviewer/HtmlShadowRenderer.d.ts +9 -0
- package/dist/components/widgets/mockup-reviewer/ImplementationPlanWorkspace.d.ts +8 -0
- package/dist/components/widgets/mockup-reviewer/MockupReviewWorkspace.d.ts +10 -0
- package/dist/components/widgets/mockup-reviewer/ReviewSidebar.d.ts +3 -0
- package/dist/components/widgets/mockup-reviewer/ReviewToolbar.d.ts +12 -0
- package/dist/components/widgets/mockup-reviewer/WorkflowMapper.d.ts +7 -0
- package/dist/core/registry/PluginRegistry.d.ts +5 -0
- package/dist/core/services/MockupReviewService.d.ts +58 -0
- package/dist/{index-DG52PCQ8.js → index-HQz7gZzB.js} +22656 -19911
- package/dist/index.d.ts +4 -1
- package/dist/{maplibre-gl-BWsNxx57.js → maplibre-gl-Bwi3Dwff.js} +1 -1
- package/dist/nexus-shell.es.js +23 -20
- package/dist/nexus-shell.umd.js +465 -188
- package/dist/stories/DataGrid.stories.d.ts +12 -0
- package/dist/stories/MockupReviewWidget.stories.d.ts +9 -0
- package/dist/stories/MockupReviewerLayout.stories.d.ts +8 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexus-shell",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/nexus-shell.umd.js",
|
|
7
7
|
"module": "./dist/nexus-shell.es.js",
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
"dev:bg": "npm run dev:stop && (npx vite --host 0.0.0.0 --port 5173 > dev-server.log 2>&1 & echo $! > vite.pid) && (npx storybook dev -p 6006 --ci > storybook.log 2>&1 & echo $! > storybook.pid)",
|
|
23
23
|
"dev:stop": "([ -f vite.pid ] && (kill $(cat vite.pid) || true) && rm vite.pid) || pkill -f vite || true; ([ -f storybook.pid ] && (kill $(cat storybook.pid) || true) && rm storybook.pid) || pkill -f storybook || true",
|
|
24
24
|
"dev:restart": "npm run dev:stop && npm run dev:bg",
|
|
25
|
+
"dev:open": "open http://localhost:5173 && open http://localhost:6006",
|
|
26
|
+
"dev:all": "npm run dev:bg && sleep 3 && npm run dev:open",
|
|
25
27
|
"build": "tsc && vite build",
|
|
26
28
|
"storybook": "storybook dev -p 6006",
|
|
27
29
|
"build-storybook": "storybook build",
|