@theia/getting-started 1.34.2 → 1.34.3
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/LICENSE +641 -641
- package/README.md +37 -37
- package/lib/browser/getting-started-contribution.d.ts +20 -20
- package/lib/browser/getting-started-contribution.js +80 -80
- package/lib/browser/getting-started-frontend-module.d.ts +4 -4
- package/lib/browser/getting-started-frontend-module.js +31 -31
- package/lib/browser/getting-started-widget.d.ts +150 -150
- package/lib/browser/getting-started-widget.js +349 -349
- package/lib/package.spec.js +25 -25
- package/package.json +6 -6
- package/src/browser/getting-started-contribution.ts +72 -72
- package/src/browser/getting-started-frontend-module.ts +32 -32
- package/src/browser/getting-started-widget.tsx +476 -476
- package/src/browser/style/index.css +90 -90
- package/src/package.spec.ts +28 -28
package/README.md
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
<div align='center'>
|
|
2
|
-
|
|
3
|
-
<br />
|
|
4
|
-
|
|
5
|
-
<img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
|
|
6
|
-
|
|
7
|
-
<h2>ECLIPSE THEIA - GETTING-STARTED EXTENSION</h2>
|
|
8
|
-
|
|
9
|
-
<hr />
|
|
10
|
-
|
|
11
|
-
</div>
|
|
12
|
-
|
|
13
|
-
## Description
|
|
14
|
-
|
|
15
|
-
The `@theia/getting-started` extension contributes a default `getting-started` widget which is displayed whenever
|
|
16
|
-
opening the application without any workspace present or if the widget is explicitly opened (through the menu or command).
|
|
17
|
-
|
|
18
|
-
The `getting-started` widget provides useful commands and functionality for quickly getting up to speed with the application. For example:
|
|
19
|
-
- `open commands`: commands which are used to open files, folders, and workspaces quickly.
|
|
20
|
-
- `recent workspaces`: recently used workspaces are listed for easy and quick access.
|
|
21
|
-
- `settings commands`: commands which are used to open the preferences and keyboard shortcuts widgets.
|
|
22
|
-
- `help`: useful links pointing to documentation and/or guides.
|
|
23
|
-
|
|
24
|
-
## Additional Information
|
|
25
|
-
|
|
26
|
-
- [API documentation for `@theia/getting-started`](https://eclipse-theia.github.io/theia/docs/next/modules/getting_started.html)
|
|
27
|
-
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
28
|
-
- [Theia - Website](https://theia-ide.org/)
|
|
29
|
-
|
|
30
|
-
## License
|
|
31
|
-
|
|
32
|
-
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
33
|
-
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
34
|
-
|
|
35
|
-
## Trademark
|
|
36
|
-
"Theia" is a trademark of the Eclipse Foundation
|
|
37
|
-
https://www.eclipse.org/theia
|
|
1
|
+
<div align='center'>
|
|
2
|
+
|
|
3
|
+
<br />
|
|
4
|
+
|
|
5
|
+
<img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
|
|
6
|
+
|
|
7
|
+
<h2>ECLIPSE THEIA - GETTING-STARTED EXTENSION</h2>
|
|
8
|
+
|
|
9
|
+
<hr />
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
## Description
|
|
14
|
+
|
|
15
|
+
The `@theia/getting-started` extension contributes a default `getting-started` widget which is displayed whenever
|
|
16
|
+
opening the application without any workspace present or if the widget is explicitly opened (through the menu or command).
|
|
17
|
+
|
|
18
|
+
The `getting-started` widget provides useful commands and functionality for quickly getting up to speed with the application. For example:
|
|
19
|
+
- `open commands`: commands which are used to open files, folders, and workspaces quickly.
|
|
20
|
+
- `recent workspaces`: recently used workspaces are listed for easy and quick access.
|
|
21
|
+
- `settings commands`: commands which are used to open the preferences and keyboard shortcuts widgets.
|
|
22
|
+
- `help`: useful links pointing to documentation and/or guides.
|
|
23
|
+
|
|
24
|
+
## Additional Information
|
|
25
|
+
|
|
26
|
+
- [API documentation for `@theia/getting-started`](https://eclipse-theia.github.io/theia/docs/next/modules/getting_started.html)
|
|
27
|
+
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
28
|
+
- [Theia - Website](https://theia-ide.org/)
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
33
|
+
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
34
|
+
|
|
35
|
+
## Trademark
|
|
36
|
+
"Theia" is a trademark of the Eclipse Foundation
|
|
37
|
+
https://www.eclipse.org/theia
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { CommandRegistry, MenuModelRegistry } from '@theia/core/lib/common';
|
|
2
|
-
import { AbstractViewContribution, FrontendApplicationContribution, FrontendApplication } from '@theia/core/lib/browser';
|
|
3
|
-
import { GettingStartedWidget } from './getting-started-widget';
|
|
4
|
-
import { FrontendApplicationStateService } from '@theia/core/lib/browser/frontend-application-state';
|
|
5
|
-
import { WorkspaceService } from '@theia/workspace/lib/browser';
|
|
6
|
-
/**
|
|
7
|
-
* Triggers opening the `GettingStartedWidget`.
|
|
8
|
-
*/
|
|
9
|
-
export declare const GettingStartedCommand: {
|
|
10
|
-
id: string;
|
|
11
|
-
label: string;
|
|
12
|
-
};
|
|
13
|
-
export declare class GettingStartedContribution extends AbstractViewContribution<GettingStartedWidget> implements FrontendApplicationContribution {
|
|
14
|
-
protected readonly stateService: FrontendApplicationStateService;
|
|
15
|
-
protected readonly workspaceService: WorkspaceService;
|
|
16
|
-
constructor();
|
|
17
|
-
onStart(app: FrontendApplication): Promise<void>;
|
|
18
|
-
registerCommands(registry: CommandRegistry): void;
|
|
19
|
-
registerMenus(menus: MenuModelRegistry): void;
|
|
20
|
-
}
|
|
1
|
+
import { CommandRegistry, MenuModelRegistry } from '@theia/core/lib/common';
|
|
2
|
+
import { AbstractViewContribution, FrontendApplicationContribution, FrontendApplication } from '@theia/core/lib/browser';
|
|
3
|
+
import { GettingStartedWidget } from './getting-started-widget';
|
|
4
|
+
import { FrontendApplicationStateService } from '@theia/core/lib/browser/frontend-application-state';
|
|
5
|
+
import { WorkspaceService } from '@theia/workspace/lib/browser';
|
|
6
|
+
/**
|
|
7
|
+
* Triggers opening the `GettingStartedWidget`.
|
|
8
|
+
*/
|
|
9
|
+
export declare const GettingStartedCommand: {
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
};
|
|
13
|
+
export declare class GettingStartedContribution extends AbstractViewContribution<GettingStartedWidget> implements FrontendApplicationContribution {
|
|
14
|
+
protected readonly stateService: FrontendApplicationStateService;
|
|
15
|
+
protected readonly workspaceService: WorkspaceService;
|
|
16
|
+
constructor();
|
|
17
|
+
onStart(app: FrontendApplication): Promise<void>;
|
|
18
|
+
registerCommands(registry: CommandRegistry): void;
|
|
19
|
+
registerMenus(menus: MenuModelRegistry): void;
|
|
20
|
+
}
|
|
21
21
|
//# sourceMappingURL=getting-started-contribution.d.ts.map
|
|
@@ -1,81 +1,81 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *****************************************************************************
|
|
3
|
-
// Copyright (C) 2018 Ericsson and others.
|
|
4
|
-
//
|
|
5
|
-
// This program and the accompanying materials are made available under the
|
|
6
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
-
//
|
|
9
|
-
// This Source Code may also be made available under the following Secondary
|
|
10
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
-
// with the GNU Classpath Exception which is available at
|
|
13
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
-
//
|
|
15
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
-
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
-
exports.GettingStartedContribution = exports.GettingStartedCommand = void 0;
|
|
28
|
-
const inversify_1 = require("@theia/core/shared/inversify");
|
|
29
|
-
const browser_1 = require("@theia/core/lib/browser");
|
|
30
|
-
const getting_started_widget_1 = require("./getting-started-widget");
|
|
31
|
-
const frontend_application_state_1 = require("@theia/core/lib/browser/frontend-application-state");
|
|
32
|
-
const browser_2 = require("@theia/workspace/lib/browser");
|
|
33
|
-
/**
|
|
34
|
-
* Triggers opening the `GettingStartedWidget`.
|
|
35
|
-
*/
|
|
36
|
-
exports.GettingStartedCommand = {
|
|
37
|
-
id: getting_started_widget_1.GettingStartedWidget.ID,
|
|
38
|
-
label: getting_started_widget_1.GettingStartedWidget.LABEL
|
|
39
|
-
};
|
|
40
|
-
let GettingStartedContribution = class GettingStartedContribution extends browser_1.AbstractViewContribution {
|
|
41
|
-
constructor() {
|
|
42
|
-
super({
|
|
43
|
-
widgetId: getting_started_widget_1.GettingStartedWidget.ID,
|
|
44
|
-
widgetName: getting_started_widget_1.GettingStartedWidget.LABEL,
|
|
45
|
-
defaultWidgetOptions: {
|
|
46
|
-
area: 'main',
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
async onStart(app) {
|
|
51
|
-
if (!this.workspaceService.opened) {
|
|
52
|
-
this.stateService.reachedState('ready').then(() => this.openView({ reveal: true, activate: true }));
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
registerCommands(registry) {
|
|
56
|
-
registry.registerCommand(exports.GettingStartedCommand, {
|
|
57
|
-
execute: () => this.openView({ reveal: true, activate: true }),
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
registerMenus(menus) {
|
|
61
|
-
menus.registerMenuAction(browser_1.CommonMenus.HELP, {
|
|
62
|
-
commandId: exports.GettingStartedCommand.id,
|
|
63
|
-
label: exports.GettingStartedCommand.label,
|
|
64
|
-
order: 'a10'
|
|
65
|
-
});
|
|
66
|
-
}
|
|
67
|
-
};
|
|
68
|
-
__decorate([
|
|
69
|
-
(0, inversify_1.inject)(frontend_application_state_1.FrontendApplicationStateService),
|
|
70
|
-
__metadata("design:type", frontend_application_state_1.FrontendApplicationStateService)
|
|
71
|
-
], GettingStartedContribution.prototype, "stateService", void 0);
|
|
72
|
-
__decorate([
|
|
73
|
-
(0, inversify_1.inject)(browser_2.WorkspaceService),
|
|
74
|
-
__metadata("design:type", browser_2.WorkspaceService)
|
|
75
|
-
], GettingStartedContribution.prototype, "workspaceService", void 0);
|
|
76
|
-
GettingStartedContribution = __decorate([
|
|
77
|
-
(0, inversify_1.injectable)(),
|
|
78
|
-
__metadata("design:paramtypes", [])
|
|
79
|
-
], GettingStartedContribution);
|
|
80
|
-
exports.GettingStartedContribution = GettingStartedContribution;
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 Ericsson and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
+
};
|
|
23
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.GettingStartedContribution = exports.GettingStartedCommand = void 0;
|
|
28
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
29
|
+
const browser_1 = require("@theia/core/lib/browser");
|
|
30
|
+
const getting_started_widget_1 = require("./getting-started-widget");
|
|
31
|
+
const frontend_application_state_1 = require("@theia/core/lib/browser/frontend-application-state");
|
|
32
|
+
const browser_2 = require("@theia/workspace/lib/browser");
|
|
33
|
+
/**
|
|
34
|
+
* Triggers opening the `GettingStartedWidget`.
|
|
35
|
+
*/
|
|
36
|
+
exports.GettingStartedCommand = {
|
|
37
|
+
id: getting_started_widget_1.GettingStartedWidget.ID,
|
|
38
|
+
label: getting_started_widget_1.GettingStartedWidget.LABEL
|
|
39
|
+
};
|
|
40
|
+
let GettingStartedContribution = class GettingStartedContribution extends browser_1.AbstractViewContribution {
|
|
41
|
+
constructor() {
|
|
42
|
+
super({
|
|
43
|
+
widgetId: getting_started_widget_1.GettingStartedWidget.ID,
|
|
44
|
+
widgetName: getting_started_widget_1.GettingStartedWidget.LABEL,
|
|
45
|
+
defaultWidgetOptions: {
|
|
46
|
+
area: 'main',
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
async onStart(app) {
|
|
51
|
+
if (!this.workspaceService.opened) {
|
|
52
|
+
this.stateService.reachedState('ready').then(() => this.openView({ reveal: true, activate: true }));
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
registerCommands(registry) {
|
|
56
|
+
registry.registerCommand(exports.GettingStartedCommand, {
|
|
57
|
+
execute: () => this.openView({ reveal: true, activate: true }),
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
registerMenus(menus) {
|
|
61
|
+
menus.registerMenuAction(browser_1.CommonMenus.HELP, {
|
|
62
|
+
commandId: exports.GettingStartedCommand.id,
|
|
63
|
+
label: exports.GettingStartedCommand.label,
|
|
64
|
+
order: 'a10'
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, inversify_1.inject)(frontend_application_state_1.FrontendApplicationStateService),
|
|
70
|
+
__metadata("design:type", frontend_application_state_1.FrontendApplicationStateService)
|
|
71
|
+
], GettingStartedContribution.prototype, "stateService", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, inversify_1.inject)(browser_2.WorkspaceService),
|
|
74
|
+
__metadata("design:type", browser_2.WorkspaceService)
|
|
75
|
+
], GettingStartedContribution.prototype, "workspaceService", void 0);
|
|
76
|
+
GettingStartedContribution = __decorate([
|
|
77
|
+
(0, inversify_1.injectable)(),
|
|
78
|
+
__metadata("design:paramtypes", [])
|
|
79
|
+
], GettingStartedContribution);
|
|
80
|
+
exports.GettingStartedContribution = GettingStartedContribution;
|
|
81
81
|
//# sourceMappingURL=getting-started-contribution.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ContainerModule } from '@theia/core/shared/inversify';
|
|
2
|
-
import '../../src/browser/style/index.css';
|
|
3
|
-
declare const _default: ContainerModule;
|
|
4
|
-
export default _default;
|
|
1
|
+
import { ContainerModule } from '@theia/core/shared/inversify';
|
|
2
|
+
import '../../src/browser/style/index.css';
|
|
3
|
+
declare const _default: ContainerModule;
|
|
4
|
+
export default _default;
|
|
5
5
|
//# sourceMappingURL=getting-started-frontend-module.d.ts.map
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *****************************************************************************
|
|
3
|
-
// Copyright (C) 2018 Ericsson and others.
|
|
4
|
-
//
|
|
5
|
-
// This program and the accompanying materials are made available under the
|
|
6
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
-
//
|
|
9
|
-
// This Source Code may also be made available under the following Secondary
|
|
10
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
-
// with the GNU Classpath Exception which is available at
|
|
13
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
-
//
|
|
15
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
-
// *****************************************************************************
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
const getting_started_contribution_1 = require("./getting-started-contribution");
|
|
19
|
-
const inversify_1 = require("@theia/core/shared/inversify");
|
|
20
|
-
const getting_started_widget_1 = require("./getting-started-widget");
|
|
21
|
-
const browser_1 = require("@theia/core/lib/browser");
|
|
22
|
-
require("../../src/browser/style/index.css");
|
|
23
|
-
exports.default = new inversify_1.ContainerModule((bind) => {
|
|
24
|
-
(0, browser_1.bindViewContribution)(bind, getting_started_contribution_1.GettingStartedContribution);
|
|
25
|
-
bind(browser_1.FrontendApplicationContribution).toService(getting_started_contribution_1.GettingStartedContribution);
|
|
26
|
-
bind(getting_started_widget_1.GettingStartedWidget).toSelf();
|
|
27
|
-
bind(browser_1.WidgetFactory).toDynamicValue(context => ({
|
|
28
|
-
id: getting_started_widget_1.GettingStartedWidget.ID,
|
|
29
|
-
createWidget: () => context.container.get(getting_started_widget_1.GettingStartedWidget),
|
|
30
|
-
})).inSingletonScope();
|
|
31
|
-
});
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 Ericsson and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
const getting_started_contribution_1 = require("./getting-started-contribution");
|
|
19
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
20
|
+
const getting_started_widget_1 = require("./getting-started-widget");
|
|
21
|
+
const browser_1 = require("@theia/core/lib/browser");
|
|
22
|
+
require("../../src/browser/style/index.css");
|
|
23
|
+
exports.default = new inversify_1.ContainerModule((bind) => {
|
|
24
|
+
(0, browser_1.bindViewContribution)(bind, getting_started_contribution_1.GettingStartedContribution);
|
|
25
|
+
bind(browser_1.FrontendApplicationContribution).toService(getting_started_contribution_1.GettingStartedContribution);
|
|
26
|
+
bind(getting_started_widget_1.GettingStartedWidget).toSelf();
|
|
27
|
+
bind(browser_1.WidgetFactory).toDynamicValue(context => ({
|
|
28
|
+
id: getting_started_widget_1.GettingStartedWidget.ID,
|
|
29
|
+
createWidget: () => context.container.get(getting_started_widget_1.GettingStartedWidget),
|
|
30
|
+
})).inSingletonScope();
|
|
31
|
+
});
|
|
32
32
|
//# sourceMappingURL=getting-started-frontend-module.js.map
|