@industry-theme/file-city-panel 0.3.33 → 0.3.34
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/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/panels/CodeCityPanel.d.ts +3 -3
- package/dist/panels/CodeCityPanel.d.ts.map +1 -1
- package/dist/panels/FeedCodeCityPanel.d.ts +2 -12
- package/dist/panels/FeedCodeCityPanel.d.ts.map +1 -1
- package/dist/panels.bundle.js +13 -17
- package/dist/panels.bundle.js.map +1 -1
- package/dist/types/index.d.ts +129 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/components/TourPlayer.stories.d.ts +0 -76
- package/dist/components/TourPlayer.stories.d.ts.map +0 -1
- package/dist/panels/AgentMailFileCityPanel.stories.d.ts +0 -34
- package/dist/panels/AgentMailFileCityPanel.stories.d.ts.map +0 -1
- package/dist/panels/AgentMailPanel.stories.d.ts +0 -42
- package/dist/panels/AgentMailPanel.stories.d.ts.map +0 -1
- package/dist/panels/CodeCityPanel.stories.d.ts +0 -114
- package/dist/panels/CodeCityPanel.stories.d.ts.map +0 -1
- package/dist/panels/FeedCodeCityPanel.stories.d.ts +0 -31
- package/dist/panels/FeedCodeCityPanel.stories.d.ts.map +0 -1
- package/dist/panels/StressTest.stories.d.ts +0 -49
- package/dist/panels/StressTest.stories.d.ts.map +0 -1
- package/dist/panels/components/AgentActivityView.stories.d.ts +0 -34
- package/dist/panels/components/AgentActivityView.stories.d.ts.map +0 -1
- package/dist/panels/components/FeedProjectHeader.stories.d.ts +0 -54
- package/dist/panels/components/FeedProjectHeader.stories.d.ts.map +0 -1
- package/dist/panels/components/FileCardList.stories.d.ts +0 -62
- package/dist/panels/components/FileCardList.stories.d.ts.map +0 -1
- package/dist/panels/components/GitChangesCardList.stories.d.ts +0 -30
- package/dist/panels/components/GitChangesCardList.stories.d.ts.map +0 -1
- package/dist/panels/components/GitChangesTree.stories.d.ts +0 -42
- package/dist/panels/components/GitChangesTree.stories.d.ts.map +0 -1
- package/dist/panels/components/LegendTabs.stories.d.ts +0 -38
- package/dist/panels/components/LegendTabs.stories.d.ts.map +0 -1
- package/dist/panels/components/MessageActivityFeed.stories.d.ts +0 -38
- package/dist/panels/components/MessageActivityFeed.stories.d.ts.map +0 -1
- package/dist/panels/components/PackageInfo.stories.d.ts +0 -50
- package/dist/panels/components/PackageInfo.stories.d.ts.map +0 -1
- package/dist/panels/components/PackageManagerIcon.stories.d.ts +0 -58
- package/dist/panels/components/PackageManagerIcon.stories.d.ts.map +0 -1
- package/dist/panels/components/PrChangesTree.stories.d.ts +0 -42
- package/dist/panels/components/PrChangesTree.stories.d.ts.map +0 -1
- package/dist/panels/components/ProjectInfoHeader.stories.d.ts +0 -46
- package/dist/panels/components/ProjectInfoHeader.stories.d.ts.map +0 -1
- package/dist/panels/components/ReservationsView.stories.d.ts +0 -42
- package/dist/panels/components/ReservationsView.stories.d.ts.map +0 -1
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { FileCardList } from './FileCardList';
|
|
3
|
-
declare const meta: Meta<typeof FileCardList>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof FileCardList>;
|
|
6
|
-
/**
|
|
7
|
-
* Default file card list
|
|
8
|
-
*/
|
|
9
|
-
export declare const Default: Story;
|
|
10
|
-
/**
|
|
11
|
-
* With git status badges
|
|
12
|
-
*/
|
|
13
|
-
export declare const WithGitBadges: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Files from deeply nested directories
|
|
16
|
-
*/
|
|
17
|
-
export declare const DeepPaths: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Root-level files (no directory path shown)
|
|
20
|
-
*/
|
|
21
|
-
export declare const RootFiles: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Mixed root and nested files
|
|
24
|
-
*/
|
|
25
|
-
export declare const MixedPaths: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Large list of files
|
|
28
|
-
*/
|
|
29
|
-
export declare const LargeList: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Empty state
|
|
32
|
-
*/
|
|
33
|
-
export declare const Empty: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Custom empty message
|
|
36
|
-
*/
|
|
37
|
-
export declare const CustomEmptyMessage: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Interactive with click and hover handlers
|
|
40
|
-
*/
|
|
41
|
-
export declare const Interactive: Story;
|
|
42
|
-
/**
|
|
43
|
-
* With colored file icons by type
|
|
44
|
-
*/
|
|
45
|
-
export declare const ColoredByType: Story;
|
|
46
|
-
/**
|
|
47
|
-
* PR-style with additions and deletions
|
|
48
|
-
*/
|
|
49
|
-
export declare const PullRequestStyle: Story;
|
|
50
|
-
/**
|
|
51
|
-
* Storyboard files with categories
|
|
52
|
-
*/
|
|
53
|
-
export declare const StoryboardFiles: Story;
|
|
54
|
-
/**
|
|
55
|
-
* With stage button for unstaged files
|
|
56
|
-
*/
|
|
57
|
-
export declare const WithStageButton: Story;
|
|
58
|
-
/**
|
|
59
|
-
* With unstage button for staged files
|
|
60
|
-
*/
|
|
61
|
-
export declare const WithUnstageButton: Story;
|
|
62
|
-
//# sourceMappingURL=FileCardList.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FileCardList.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/FileCardList.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,YAAY,EAAqB,MAAM,gBAAgB,CAAC;AAEjE,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,YAAY,CAwBnC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,YAAY,CAAC,CAAC;AAW3C;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAIrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAU3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAUvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAUvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,KAUxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAQvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAKnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,KAKhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KA+BzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAW3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAU9B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAU7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAwD7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,KAwD/B,CAAC"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { GitChangesCardList } from './GitChangesCardList';
|
|
3
|
-
declare const meta: Meta<typeof GitChangesCardList>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof GitChangesCardList>;
|
|
6
|
-
/**
|
|
7
|
-
* Default git changes card list with toggle
|
|
8
|
-
*/
|
|
9
|
-
export declare const Default: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Interactive with stage functionality
|
|
12
|
-
*/
|
|
13
|
-
export declare const InteractiveWithStage: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Only unstaged changes
|
|
16
|
-
*/
|
|
17
|
-
export declare const OnlyUnstaged: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Only staged changes
|
|
20
|
-
*/
|
|
21
|
-
export declare const OnlyStaged: Story;
|
|
22
|
-
/**
|
|
23
|
-
* No changes
|
|
24
|
-
*/
|
|
25
|
-
export declare const NoChanges: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Many files
|
|
28
|
-
*/
|
|
29
|
-
export declare const ManyFiles: Story;
|
|
30
|
-
//# sourceMappingURL=GitChangesCardList.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GitChangesCardList.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/GitChangesCardList.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAI1D,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,kBAAkB,CAwBzC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAgCjD;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,KA8GlC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAwB1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,KAuBxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAmBvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAmBvB,CAAC"}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { GitChangesTree } from './GitChangesTree';
|
|
3
|
-
declare const meta: Meta<typeof GitChangesTree>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof GitChangesTree>;
|
|
6
|
-
/**
|
|
7
|
-
* Default view with all change types
|
|
8
|
-
*/
|
|
9
|
-
export declare const Default: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Only staged files
|
|
12
|
-
*/
|
|
13
|
-
export declare const OnlyStaged: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Only unstaged files
|
|
16
|
-
*/
|
|
17
|
-
export declare const OnlyUnstaged: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Only untracked files
|
|
20
|
-
*/
|
|
21
|
-
export declare const OnlyUntracked: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Only deleted files
|
|
24
|
-
*/
|
|
25
|
-
export declare const OnlyDeleted: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Large working directory with many changes
|
|
28
|
-
*/
|
|
29
|
-
export declare const LargeChangeset: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Empty (no changes)
|
|
32
|
-
*/
|
|
33
|
-
export declare const Empty: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Interactive with click handler
|
|
36
|
-
*/
|
|
37
|
-
export declare const Interactive: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Nested directory structure
|
|
40
|
-
*/
|
|
41
|
-
export declare const NestedStructure: Story;
|
|
42
|
-
//# sourceMappingURL=GitChangesTree.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GitChangesTree.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/GitChangesTree.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,cAAc,EAA2B,MAAM,kBAAkB,CAAC;AAE3E,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,cAAc,CA0BrC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,cAAc,CAAC,CAAC;AAgC7C;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,KAyBxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAyB1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAwB3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAwBzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,KAoB5B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAoBnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAuCzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KA+B7B,CAAC"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { LegendTabs } from './LegendTabs';
|
|
3
|
-
declare const meta: Meta<typeof LegendTabs>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof LegendTabs>;
|
|
6
|
-
/**
|
|
7
|
-
* Single tab - renders content directly without tab bar
|
|
8
|
-
*/
|
|
9
|
-
export declare const SingleTab: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Two tabs - Agent and Git
|
|
12
|
-
*/
|
|
13
|
-
export declare const TwoTabs: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Three tabs - Agent, Git, and Files
|
|
16
|
-
*/
|
|
17
|
-
export declare const ThreeTabs: Story;
|
|
18
|
-
/**
|
|
19
|
-
* All four tabs
|
|
20
|
-
*/
|
|
21
|
-
export declare const AllTabs: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Git as default tab
|
|
24
|
-
*/
|
|
25
|
-
export declare const GitDefault: Story;
|
|
26
|
-
/**
|
|
27
|
-
* No counts on tabs
|
|
28
|
-
*/
|
|
29
|
-
export declare const NoCounts: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Empty state - no tabs provided
|
|
32
|
-
*/
|
|
33
|
-
export declare const Empty: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Interactive - demonstrates tab switching with callbacks
|
|
36
|
-
*/
|
|
37
|
-
export declare const Interactive: Story;
|
|
38
|
-
//# sourceMappingURL=LegendTabs.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegendTabs.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/LegendTabs.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EACL,UAAU,EAMX,MAAM,cAAc,CAAC;AAGtB,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,UAAU,CA0BjC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAC;AAwFzC;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KASvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAWrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAYvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAarB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,KAWxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,KAStB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAInB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAoDzB,CAAC"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { MessageActivityFeed } from './MessageActivityFeed';
|
|
3
|
-
declare const meta: Meta<typeof MessageActivityFeed>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof MessageActivityFeed>;
|
|
6
|
-
/**
|
|
7
|
-
* Empty state
|
|
8
|
-
*/
|
|
9
|
-
export declare const Empty: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Single message
|
|
12
|
-
*/
|
|
13
|
-
export declare const SingleMessage: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Multiple messages with different importance levels
|
|
16
|
-
*/
|
|
17
|
-
export declare const MultipleMessages: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Messages with attachments
|
|
20
|
-
*/
|
|
21
|
-
export declare const WithAttachments: Story;
|
|
22
|
-
/**
|
|
23
|
-
* All messages read
|
|
24
|
-
*/
|
|
25
|
-
export declare const AllRead: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Many recipients
|
|
28
|
-
*/
|
|
29
|
-
export declare const ManyRecipients: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Without header (for embedding in tabs)
|
|
32
|
-
*/
|
|
33
|
-
export declare const WithoutHeader: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Live feed simulation
|
|
36
|
-
*/
|
|
37
|
-
export declare const LiveFeed: Story;
|
|
38
|
-
//# sourceMappingURL=MessageActivityFeed.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MessageActivityFeed.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/MessageActivityFeed.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAG5D,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,mBAAmB,CAgB1C,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAqBlD;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAInB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAU3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,KA+B9B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAsB7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAsBrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,KAgB5B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAS3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,KAqEtB,CAAC"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { PackageInfo } from './PackageInfo';
|
|
3
|
-
declare const meta: Meta<typeof PackageInfo>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof PackageInfo>;
|
|
6
|
-
/**
|
|
7
|
-
* Default npm package with full information
|
|
8
|
-
*/
|
|
9
|
-
export declare const Default: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Pnpm monorepo root package
|
|
12
|
-
*/
|
|
13
|
-
export declare const MonorepoRoot: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Yarn package with minimal dependencies
|
|
16
|
-
*/
|
|
17
|
-
export declare const YarnPackage: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Bun package with no description
|
|
20
|
-
*/
|
|
21
|
-
export declare const BunPackage: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Python package with Poetry
|
|
24
|
-
*/
|
|
25
|
-
export declare const PythonPoetry: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Rust package with Cargo
|
|
28
|
-
*/
|
|
29
|
-
export declare const RustCargo: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Minimal package without optional fields
|
|
32
|
-
*/
|
|
33
|
-
export declare const Minimal: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Package with many dependencies and scripts
|
|
36
|
-
*/
|
|
37
|
-
export declare const ManyDependencies: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Monorepo with many workspace packages
|
|
40
|
-
*/
|
|
41
|
-
export declare const MonorepoManyPackages: Story;
|
|
42
|
-
/**
|
|
43
|
-
* Long package name and description with ellipsis
|
|
44
|
-
*/
|
|
45
|
-
export declare const LongText: Story;
|
|
46
|
-
/**
|
|
47
|
-
* All package managers in a grid
|
|
48
|
-
*/
|
|
49
|
-
export declare const AllPackageManagers: Story;
|
|
50
|
-
//# sourceMappingURL=PackageInfo.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PackageInfo.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/PackageInfo.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,WAAW,CAuBlC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,WAAW,CAAC,CAAC;AAE1C;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAgCrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KA8B1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAuBzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,KAgBxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KA4B1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAyBvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAYrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,KA+C9B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAyBlC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,KAsBtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,KA4FhC,CAAC"}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { PackageManagerIcon } from './PackageManagerIcon';
|
|
3
|
-
declare const meta: Meta<typeof PackageManagerIcon>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof PackageManagerIcon>;
|
|
6
|
-
/**
|
|
7
|
-
* Default npm icon
|
|
8
|
-
*/
|
|
9
|
-
export declare const Npm: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Yarn icon
|
|
12
|
-
*/
|
|
13
|
-
export declare const Yarn: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Pnpm icon
|
|
16
|
-
*/
|
|
17
|
-
export declare const Pnpm: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Bun icon
|
|
20
|
-
*/
|
|
21
|
-
export declare const Bun: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Python/Pip icon
|
|
24
|
-
*/
|
|
25
|
-
export declare const Python: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Poetry icon
|
|
28
|
-
*/
|
|
29
|
-
export declare const Poetry: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Rust/Cargo icon
|
|
32
|
-
*/
|
|
33
|
-
export declare const Cargo: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Unknown/fallback icon
|
|
36
|
-
*/
|
|
37
|
-
export declare const Unknown: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Small size (18px - default in components)
|
|
40
|
-
*/
|
|
41
|
-
export declare const Small: Story;
|
|
42
|
-
/**
|
|
43
|
-
* Large size
|
|
44
|
-
*/
|
|
45
|
-
export declare const Large: Story;
|
|
46
|
-
/**
|
|
47
|
-
* All package managers in a grid
|
|
48
|
-
*/
|
|
49
|
-
export declare const AllIcons: Story;
|
|
50
|
-
/**
|
|
51
|
-
* Size comparison
|
|
52
|
-
*/
|
|
53
|
-
export declare const SizeComparison: Story;
|
|
54
|
-
/**
|
|
55
|
-
* Interactive playground
|
|
56
|
-
*/
|
|
57
|
-
export declare const Playground: Story;
|
|
58
|
-
//# sourceMappingURL=PackageManagerIcon.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PackageManagerIcon.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/PackageManagerIcon.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,kBAAkB,CAiCzC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEjD;;GAEG;AACH,eAAO,MAAM,GAAG,EAAE,KAKjB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,IAAI,EAAE,KAKlB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,IAAI,EAAE,KAKlB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,GAAG,EAAE,KAKjB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,MAAM,EAAE,KAKpB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,MAAM,EAAE,KAKpB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAKnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAKnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAKnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,KA+CtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,KAqC5B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,KAKxB,CAAC"}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { PrChangesTree } from './PrChangesTree';
|
|
3
|
-
declare const meta: Meta<typeof PrChangesTree>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof PrChangesTree>;
|
|
6
|
-
/**
|
|
7
|
-
* Default view with all change types
|
|
8
|
-
*/
|
|
9
|
-
export declare const Default: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Only added files
|
|
12
|
-
*/
|
|
13
|
-
export declare const OnlyAdded: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Only modified files
|
|
16
|
-
*/
|
|
17
|
-
export declare const OnlyModified: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Only removed files
|
|
20
|
-
*/
|
|
21
|
-
export declare const OnlyRemoved: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Only renamed files
|
|
24
|
-
*/
|
|
25
|
-
export declare const OnlyRenamed: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Large PR with many files
|
|
28
|
-
*/
|
|
29
|
-
export declare const LargePr: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Empty PR (no changes)
|
|
32
|
-
*/
|
|
33
|
-
export declare const Empty: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Interactive with click handler
|
|
36
|
-
*/
|
|
37
|
-
export declare const Interactive: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Nested directory structure
|
|
40
|
-
*/
|
|
41
|
-
export declare const NestedStructure: Story;
|
|
42
|
-
//# sourceMappingURL=PrChangesTree.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PrChangesTree.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/PrChangesTree.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,aAAa,EAAsB,MAAM,iBAAiB,CAAC;AAEpE,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,aAAa,CA0BpC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,CAAC;AAwB5C;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAevB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAe1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAczB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAazB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAarB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAUnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAoCzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAoB7B,CAAC"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { ProjectInfoHeader } from './ProjectInfoHeader';
|
|
3
|
-
declare const meta: Meta<typeof ProjectInfoHeader>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof ProjectInfoHeader>;
|
|
6
|
-
/**
|
|
7
|
-
* Default view with full project information
|
|
8
|
-
*/
|
|
9
|
-
export declare const Default: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Monorepo project with package count badge
|
|
12
|
-
*/
|
|
13
|
-
export declare const Monorepo: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Minimal project info - just name and version
|
|
16
|
-
*/
|
|
17
|
-
export declare const Minimal: Story;
|
|
18
|
-
/**
|
|
19
|
-
* Python project using Poetry
|
|
20
|
-
*/
|
|
21
|
-
export declare const PythonProject: Story;
|
|
22
|
-
/**
|
|
23
|
-
* Compact mode for constrained spaces
|
|
24
|
-
*/
|
|
25
|
-
export declare const Compact: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Compact monorepo view
|
|
28
|
-
*/
|
|
29
|
-
export declare const CompactMonorepo: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Without open button
|
|
32
|
-
*/
|
|
33
|
-
export declare const NoOpenButton: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Long project name with ellipsis
|
|
36
|
-
*/
|
|
37
|
-
export declare const LongName: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Different package managers
|
|
40
|
-
*/
|
|
41
|
-
export declare const PackageManagers: Story;
|
|
42
|
-
/**
|
|
43
|
-
* Interactive example with state
|
|
44
|
-
*/
|
|
45
|
-
export declare const Interactive: Story;
|
|
46
|
-
//# sourceMappingURL=ProjectInfoHeader.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProjectInfoHeader.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/ProjectInfoHeader.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,iBAAiB,EAAe,MAAM,qBAAqB,CAAC;AAErE,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,iBAAiB,CAuBxC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AA4ChD;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,KAKtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAK3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,KAMrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAM7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAI1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,KAStB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAiB7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAwBzB,CAAC"}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { ReservationsView } from './ReservationsView';
|
|
3
|
-
declare const meta: Meta<typeof ReservationsView>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof ReservationsView>;
|
|
6
|
-
/**
|
|
7
|
-
* Empty state - no reservations
|
|
8
|
-
*/
|
|
9
|
-
export declare const Empty: Story;
|
|
10
|
-
/**
|
|
11
|
-
* Single reservation
|
|
12
|
-
*/
|
|
13
|
-
export declare const SingleReservation: Story;
|
|
14
|
-
/**
|
|
15
|
-
* Multiple reservations from different agents
|
|
16
|
-
*/
|
|
17
|
-
export declare const MultipleReservations: Story;
|
|
18
|
-
/**
|
|
19
|
-
* With conflicts between agents
|
|
20
|
-
*/
|
|
21
|
-
export declare const WithConflicts: Story;
|
|
22
|
-
/**
|
|
23
|
-
* With expired reservations
|
|
24
|
-
*/
|
|
25
|
-
export declare const WithExpiredReservations: Story;
|
|
26
|
-
/**
|
|
27
|
-
* Many files in a single reservation
|
|
28
|
-
*/
|
|
29
|
-
export declare const ManyFiles: Story;
|
|
30
|
-
/**
|
|
31
|
-
* Without header (for embedding in tabs)
|
|
32
|
-
*/
|
|
33
|
-
export declare const WithoutHeader: Story;
|
|
34
|
-
/**
|
|
35
|
-
* Short expiry times
|
|
36
|
-
*/
|
|
37
|
-
export declare const ExpiringSoon: Story;
|
|
38
|
-
/**
|
|
39
|
-
* Live simulation with changing reservations
|
|
40
|
-
*/
|
|
41
|
-
export declare const LiveSimulation: Story;
|
|
42
|
-
//# sourceMappingURL=ReservationsView.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReservationsView.stories.d.ts","sourceRoot":"","sources":["../../../src/panels/components/ReservationsView.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,gBAAgB,CAgBvC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAiB/C;;GAEG;AACH,eAAO,MAAM,KAAK,EAAE,KAInB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,KAe/B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,KA8ClC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAuC3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,KAqCrC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,KAwBvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,KAW3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KA0B1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,KAyE5B,CAAC"}
|