@industry-theme/git-panels 0.1.20 → 0.2.0
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.map +1 -1
- package/dist/panels/GitConfigPanel.d.ts +2 -2
- package/dist/panels/GitConfigPanel.d.ts.map +1 -1
- package/dist/panels.bundle.js +2 -2
- package/dist/panels.bundle.js.map +1 -1
- package/dist/types/index.d.ts +8 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +6 -10
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,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,eAAe,EAIhB,MAAM,SAAS,CAAC;AAYjB;;;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,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
2
|
+
import type { GitConfigPanelProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* GitConfigPanel - Displays git configuration for the current repository.
|
|
5
5
|
*
|
|
@@ -12,7 +12,7 @@ import type { PanelComponentProps } from '../types';
|
|
|
12
12
|
* - Refresh via context.refresh()
|
|
13
13
|
* - Tool events for programmatic interaction
|
|
14
14
|
*/
|
|
15
|
-
export declare const GitConfigPanel: React.FC<
|
|
15
|
+
export declare const GitConfigPanel: React.FC<GitConfigPanelProps>;
|
|
16
16
|
/**
|
|
17
17
|
* Preview component for panel configuration UI
|
|
18
18
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitConfigPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitConfigPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAmBnD,OAAO,KAAK,EAAE,mBAAmB,
|
|
1
|
+
{"version":3,"file":"GitConfigPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitConfigPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAmBnD,OAAO,KAAK,EAAE,mBAAmB,EAAkD,MAAM,UAAU,CAAC;AAIpG;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAykBxD,CAAC;AA6SF;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAiDzC,CAAC"}
|
package/dist/panels.bundle.js
CHANGED
|
@@ -46242,7 +46242,7 @@ const panels = [
|
|
|
46242
46242
|
},
|
|
46243
46243
|
component: GitCommitHistoryPanel,
|
|
46244
46244
|
onMount: async (context) => {
|
|
46245
|
-
const commitsSlice = context.
|
|
46245
|
+
const commitsSlice = context.commits;
|
|
46246
46246
|
if (commitsSlice && !commitsSlice.loading) {
|
|
46247
46247
|
await context.refresh("repository", "commits");
|
|
46248
46248
|
}
|
|
@@ -46275,7 +46275,7 @@ const panels = [
|
|
|
46275
46275
|
},
|
|
46276
46276
|
component: GitPullRequestsPanel,
|
|
46277
46277
|
onMount: async (context) => {
|
|
46278
|
-
const pullRequestsSlice = context.
|
|
46278
|
+
const pullRequestsSlice = context.pullRequests;
|
|
46279
46279
|
if (pullRequestsSlice && !pullRequestsSlice.loading) {
|
|
46280
46280
|
await context.refresh("repository", "pullRequests");
|
|
46281
46281
|
}
|