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
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { DataGrid } from '../components/widgets/DataGrid';
|
|
3
|
+
|
|
4
|
+
declare const meta: Meta<typeof DataGrid>;
|
|
5
|
+
export default meta;
|
|
6
|
+
type Story = StoryObj<typeof DataGrid>;
|
|
7
|
+
export declare const Light: Story;
|
|
8
|
+
export declare const Dark: Story;
|
|
9
|
+
export declare const GeorgiaTech: Story;
|
|
10
|
+
export declare const Loading: Story;
|
|
11
|
+
export declare const LargeDataset: Story;
|
|
12
|
+
export declare const Interactive: Story;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { MockupReviewWidget } from '../components/widgets/MockupReviewWidget';
|
|
3
|
+
|
|
4
|
+
declare const meta: Meta<typeof MockupReviewWidget>;
|
|
5
|
+
export default meta;
|
|
6
|
+
type Story = StoryObj<typeof MockupReviewWidget>;
|
|
7
|
+
export declare const Light: Story;
|
|
8
|
+
export declare const Dark: Story;
|
|
9
|
+
export declare const GeorgiaTech: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
3
|
+
declare const meta: Meta;
|
|
4
|
+
export default meta;
|
|
5
|
+
export declare const MasterCompositeDashboard: StoryObj;
|
|
6
|
+
export declare const WorkflowMapperStory: StoryObj;
|
|
7
|
+
export declare const MockupReviewerCanvasStory: StoryObj;
|
|
8
|
+
export declare const ImplementationPlanStory: StoryObj;
|