@industry-theme/git-panels 0.1.19 → 0.1.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/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/panels/GitCommitDetailPanel.d.ts +2 -2
- package/dist/panels/GitCommitDetailPanel.d.ts.map +1 -1
- package/dist/panels/GitCommitHistoryPanel.d.ts +3 -3
- package/dist/panels/GitCommitHistoryPanel.d.ts.map +1 -1
- package/dist/panels/GitPullRequestDetailPanel.d.ts +2 -2
- package/dist/panels/GitPullRequestDetailPanel.d.ts.map +1 -1
- package/dist/panels/GitPullRequestsPanel.d.ts +3 -3
- package/dist/panels/GitPullRequestsPanel.d.ts.map +1 -1
- package/dist/panels.bundle.js +223 -121
- package/dist/panels.bundle.js.map +1 -1
- package/dist/types/index.d.ts +33 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +5 -5
- package/dist/mocks/panelContext.d.ts +0 -24
- package/dist/mocks/panelContext.d.ts.map +0 -1
- package/dist/panels/GitCommitDetailPanel.stories.d.ts +0 -42
- package/dist/panels/GitCommitDetailPanel.stories.d.ts.map +0 -1
- package/dist/panels/GitCommitHistoryPanel.stories.d.ts +0 -30
- package/dist/panels/GitCommitHistoryPanel.stories.d.ts.map +0 -1
- package/dist/panels/GitConfigPanel.stories.d.ts +0 -34
- package/dist/panels/GitConfigPanel.stories.d.ts.map +0 -1
- package/dist/panels/GitPullRequestDetailPanel.stories.d.ts +0 -30
- package/dist/panels/GitPullRequestDetailPanel.stories.d.ts.map +0 -1
- package/dist/panels/GitPullRequestsPanel.stories.d.ts +0 -34
- package/dist/panels/GitPullRequestsPanel.stories.d.ts.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { PanelDefinition } from './types';
|
|
|
3
3
|
* Export array of panel definitions.
|
|
4
4
|
* This is the required export for panel extensions.
|
|
5
5
|
*/
|
|
6
|
-
export declare const panels: PanelDefinition[];
|
|
6
|
+
export declare const panels: PanelDefinition<any, any>[];
|
|
7
7
|
/**
|
|
8
8
|
* Optional: Called once when the entire package is loaded.
|
|
9
9
|
*/
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAqB,MAAM,SAAS,CAAC;AAYlE;;;GAGG;AACH,eAAO,MAAM,MAAM,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAqB,MAAM,SAAS,CAAC;AAYlE;;;GAGG;AACH,eAAO,MAAM,MAAM,EAAE,eAAe,CAAC,GAAG,EAAE,GAAG,CAAC,EAqE7C,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa,qBAEzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,qBAE3B,CAAC;AAEF;;;GAGG;AACH,OAAO,EAEL,kBAAkB,EAClB,0BAA0B,EAC1B,kBAAkB,EAClB,kBAAkB,EAElB,iBAAiB,EACjB,yBAAyB,EACzB,gBAAgB,EAChB,kBAAkB,EAElB,iBAAiB,EACjB,yBAAyB,EACzB,uBAAuB,EAEvB,sBAAsB,EACtB,8BAA8B,EAC9B,qBAAqB,EACrB,uBAAuB,EAEvB,gBAAgB,GACjB,MAAM,SAAS,CAAC;AAEjB;;GAEG;AACH,YAAY,EACV,aAAa,EACb,eAAe,EACf,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,eAAe,EACf,qBAAqB,EACrB,eAAe,EACf,cAAc,GACf,MAAM,SAAS,CAAC;AAEjB;;GAEG;AACH,OAAO,EAAE,qBAAqB,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AACrG,OAAO,EAAE,oBAAoB,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAClG,OAAO,EAAE,oBAAoB,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAClG,OAAO,EAAE,yBAAyB,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
2
|
+
import type { GitCommitDetailPanelProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* Main panel component
|
|
5
5
|
*/
|
|
6
|
-
export declare const GitCommitDetailPanel: React.FC<
|
|
6
|
+
export declare const GitCommitDetailPanel: React.FC<GitCommitDetailPanelProps>;
|
|
7
7
|
/**
|
|
8
8
|
* Preview component for panel configuration UI
|
|
9
9
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitCommitDetailPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitCommitDetailPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAWnD,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"GitCommitDetailPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitCommitDetailPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAWnD,OAAO,KAAK,EAAE,yBAAyB,EAAmB,MAAM,UAAU,CAAC;AAuZ3E;;GAEG;AACH,eAAO,MAAM,oBAAoB,qCAA8B,CAAC;AAEhE;;GAEG;AACH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAiD/C,CAAC"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
2
|
+
import type { GitCommitHistoryPanelProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* GitCommitHistoryPanel - Displays git commit history from the 'commits' slice.
|
|
5
5
|
*
|
|
6
6
|
* This panel expects the host to provide commit data through:
|
|
7
|
-
* - context.
|
|
7
|
+
* - context.commits (typed slice access)
|
|
8
8
|
*
|
|
9
9
|
* The panel supports:
|
|
10
10
|
* - Displaying commits sorted by date (newest first)
|
|
11
11
|
* - Refresh via context.refresh()
|
|
12
12
|
* - Tool events for programmatic interaction
|
|
13
13
|
*/
|
|
14
|
-
export declare const GitCommitHistoryPanel: React.FC<
|
|
14
|
+
export declare const GitCommitHistoryPanel: React.FC<GitCommitHistoryPanelProps>;
|
|
15
15
|
/**
|
|
16
16
|
* Preview component for panel configuration UI
|
|
17
17
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitCommitHistoryPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitCommitHistoryPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAG5D,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"GitCommitHistoryPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitCommitHistoryPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAG5D,OAAO,KAAK,EAAE,0BAA0B,EAAiB,MAAM,UAAU,CAAC;AAG1E;;;;;;;;;;GAUG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CA0NtE,CAAC;AA0EF;;GAEG;AACH,eAAO,MAAM,4BAA4B,EAAE,KAAK,CAAC,EA+DhD,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
2
|
+
import type { GitPullRequestDetailPanelProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* Main panel component
|
|
5
5
|
*/
|
|
6
|
-
export declare const GitPullRequestDetailPanel: React.FC<
|
|
6
|
+
export declare const GitPullRequestDetailPanel: React.FC<GitPullRequestDetailPanelProps>;
|
|
7
7
|
/**
|
|
8
8
|
* Preview component for panel configuration UI
|
|
9
9
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitPullRequestDetailPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitPullRequestDetailPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAUnD,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"GitPullRequestDetailPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitPullRequestDetailPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAUnD,OAAO,KAAK,EAAE,8BAA8B,EAAmB,MAAM,UAAU,CAAC;AAmVhF;;GAEG;AACH,eAAO,MAAM,yBAAyB,0CAAmC,CAAC;AAE1E;;GAEG;AACH,eAAO,MAAM,gCAAgC,EAAE,KAAK,CAAC,EAyDpD,CAAC"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
2
|
+
import type { GitPullRequestsPanelProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* GitPullRequestsPanel - Displays open pull requests from the 'pullRequests' slice.
|
|
5
5
|
*
|
|
6
6
|
* This panel expects the host to provide PR data through:
|
|
7
|
-
* - context.
|
|
7
|
+
* - context.pullRequests (typed slice access)
|
|
8
8
|
*
|
|
9
9
|
* The panel supports:
|
|
10
10
|
* - Refresh via context.refresh()
|
|
11
11
|
* - Tool events for programmatic interaction
|
|
12
12
|
*/
|
|
13
|
-
export declare const GitPullRequestsPanel: React.FC<
|
|
13
|
+
export declare const GitPullRequestsPanel: React.FC<GitPullRequestsPanelProps>;
|
|
14
14
|
/**
|
|
15
15
|
* Preview component for panel configuration UI
|
|
16
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitPullRequestsPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitPullRequestsPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAS5D,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"GitPullRequestsPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitPullRequestsPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAS5D,OAAO,KAAK,EAAE,yBAAyB,EAAmB,MAAM,UAAU,CAAC;AAG3E;;;;;;;;;GASG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAoSpE,CAAC;AA6HF;;GAEG;AACH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAkE/C,CAAC"}
|