@theia/plugin-ext 1.69.0-next.69 → 1.69.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/lib/common/plugin-api-rpc.d.ts +4 -0
- package/lib/common/plugin-api-rpc.d.ts.map +1 -1
- package/lib/common/plugin-api-rpc.js.map +1 -1
- package/lib/main/browser/plugin-ext-frontend-module.js +2 -2
- package/lib/main/browser/plugin-ext-frontend-module.js.map +1 -1
- package/lib/main/browser/quick-open-main.d.ts.map +1 -1
- package/lib/main/browser/quick-open-main.js +6 -2
- package/lib/main/browser/quick-open-main.js.map +1 -1
- package/lib/main/browser/view/tree-view-decorator-service.d.ts.map +1 -1
- package/lib/main/browser/view/tree-view-decorator-service.js +1 -1
- package/lib/main/browser/view/tree-view-decorator-service.js.map +1 -1
- package/lib/main/node/plugin-ext-backend-module.js +1 -1
- package/lib/main/node/plugin-ext-backend-module.js.map +1 -1
- package/lib/plugin/plugin-context.d.ts.map +1 -1
- package/lib/plugin/plugin-context.js +1 -0
- package/lib/plugin/plugin-context.js.map +1 -1
- package/lib/plugin/quick-open.d.ts.map +1 -1
- package/lib/plugin/quick-open.js +2 -0
- package/lib/plugin/quick-open.js.map +1 -1
- package/lib/plugin/type-converters.d.ts.map +1 -1
- package/lib/plugin/type-converters.js +3 -1
- package/lib/plugin/type-converters.js.map +1 -1
- package/lib/plugin/types-impl.d.ts +5 -0
- package/lib/plugin/types-impl.d.ts.map +1 -1
- package/lib/plugin/types-impl.js +10 -4
- package/lib/plugin/types-impl.js.map +1 -1
- package/package.json +30 -30
- package/src/common/plugin-api-rpc.ts +2 -0
- package/src/main/browser/plugin-ext-frontend-module.ts +3 -3
- package/src/main/browser/quick-open-main.ts +6 -2
- package/src/main/browser/view/tree-view-decorator-service.ts +2 -2
- package/src/main/node/plugin-ext-backend-module.ts +2 -2
- package/src/plugin/plugin-context.ts +2 -0
- package/src/plugin/quick-open.ts +2 -0
- package/src/plugin/type-converters.ts +3 -1
- package/src/plugin/types-impl.ts +6 -0
package/src/plugin/quick-open.ts
CHANGED
|
@@ -391,6 +391,8 @@ export class QuickInputExt implements theia.QuickInput {
|
|
|
391
391
|
iconUrl: PluginIconPath.toUrl(button.iconPath, this.plugin) ?? ThemeIcon.get(button.iconPath),
|
|
392
392
|
tooltip: button.tooltip,
|
|
393
393
|
handle: button === QuickInputButtons.Back ? -1 : i,
|
|
394
|
+
location: button.location,
|
|
395
|
+
toggle: button.toggle,
|
|
394
396
|
}))
|
|
395
397
|
});
|
|
396
398
|
}
|
|
@@ -1319,7 +1319,9 @@ export function convertQuickInputButton(plugin: Plugin, button: theia.QuickInput
|
|
|
1319
1319
|
return {
|
|
1320
1320
|
handle: index,
|
|
1321
1321
|
iconUrl: PluginIconPath.toUrl(iconPath, plugin) ?? ThemeIcon.get(iconPath),
|
|
1322
|
-
tooltip: button.tooltip
|
|
1322
|
+
tooltip: button.tooltip,
|
|
1323
|
+
location: button.location,
|
|
1324
|
+
toggle: button.toggle
|
|
1323
1325
|
};
|
|
1324
1326
|
}
|
|
1325
1327
|
|
package/src/plugin/types-impl.ts
CHANGED
|
@@ -2227,6 +2227,12 @@ export enum CommentThreadCollapsibleState {
|
|
|
2227
2227
|
Expanded = 1
|
|
2228
2228
|
}
|
|
2229
2229
|
|
|
2230
|
+
export enum QuickInputButtonLocation {
|
|
2231
|
+
Title = 1,
|
|
2232
|
+
Inline = 2,
|
|
2233
|
+
Input = 3
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2230
2236
|
@es5ClassCompat
|
|
2231
2237
|
export class QuickInputButtons {
|
|
2232
2238
|
static readonly Back: theia.QuickInputButton = {
|