@industry-theme/git-panels 0.1.15 → 0.1.16
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/GitPullRequestsPanel.d.ts +1 -2
- package/dist/panels/GitPullRequestsPanel.d.ts.map +1 -1
- package/dist/panels.bundle.js +69 -126
- package/dist/panels.bundle.js.map +1 -1
- package/dist/tools/index.d.ts +0 -4
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools.bundle.js +1 -30
- package/package.json +1 -1
package/dist/tools/index.d.ts
CHANGED
|
@@ -29,10 +29,6 @@ export declare const commitHistoryToolsMetadata: PanelToolsMetadata;
|
|
|
29
29
|
* Tool: Refresh Pull Requests
|
|
30
30
|
*/
|
|
31
31
|
export declare const refreshPullRequestsTool: PanelTool;
|
|
32
|
-
/**
|
|
33
|
-
* Tool: Set PR Filter
|
|
34
|
-
*/
|
|
35
|
-
export declare const setPRFilterTool: PanelTool;
|
|
36
32
|
/**
|
|
37
33
|
* All pull requests panel tools
|
|
38
34
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAMzF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAwBhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAyBhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAAS,EAGzC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,kBAKxC,CAAC;AAMF;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,SAwBrC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAMzF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAwBhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAyBhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAAS,EAGzC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,kBAKxC,CAAC;AAMF;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,SAwBrC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,SAAS,EAExC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB,EAAE,kBAKvC,CAAC;AAMF;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,SAyBnC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,SAkBrC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,SAAS,EAG7C,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,8BAA8B,EAAE,kBAK5C,CAAC;AAMF;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,SAyB9B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAkBhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,SAAS,EAGxC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB,EAAE,kBAKvC,CAAC;AAMF;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,SAAS,EAKvC,CAAC"}
|
package/dist/tools.bundle.js
CHANGED
|
@@ -85,36 +85,8 @@ var refreshPullRequestsTool = {
|
|
|
85
85
|
event_type: "git-panels.pull-requests:refresh"
|
|
86
86
|
}
|
|
87
87
|
};
|
|
88
|
-
var setPRFilterTool = {
|
|
89
|
-
name: "set_pr_filter",
|
|
90
|
-
description: "Sets the pull request filter (all, open, or closed)",
|
|
91
|
-
inputs: {
|
|
92
|
-
type: "object",
|
|
93
|
-
properties: {
|
|
94
|
-
filter: {
|
|
95
|
-
type: "string",
|
|
96
|
-
enum: ["all", "open", "closed"],
|
|
97
|
-
description: "Filter to apply to pull requests"
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
required: ["filter"]
|
|
101
|
-
},
|
|
102
|
-
outputs: {
|
|
103
|
-
type: "object",
|
|
104
|
-
properties: {
|
|
105
|
-
success: { type: "boolean" },
|
|
106
|
-
filter: { type: "string" }
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
|
-
tags: ["git", "pull-requests", "filter"],
|
|
110
|
-
tool_call_template: {
|
|
111
|
-
call_template_type: "panel_event",
|
|
112
|
-
event_type: "git-panels.pull-requests:set-filter"
|
|
113
|
-
}
|
|
114
|
-
};
|
|
115
88
|
var pullRequestsTools = [
|
|
116
|
-
refreshPullRequestsTool
|
|
117
|
-
setPRFilterTool
|
|
89
|
+
refreshPullRequestsTool
|
|
118
90
|
];
|
|
119
91
|
var pullRequestsToolsMetadata = {
|
|
120
92
|
id: "git-panels.pull-requests",
|
|
@@ -239,7 +211,6 @@ var allGitPanelTools = [
|
|
|
239
211
|
...commitDetailTools
|
|
240
212
|
];
|
|
241
213
|
export {
|
|
242
|
-
setPRFilterTool,
|
|
243
214
|
setCommitLimitTool,
|
|
244
215
|
selectPullRequestTool,
|
|
245
216
|
selectCommitTool,
|