Some artifacts left from undone gem finder testing

merge-notes
isark 2 years ago
parent b010557b4f
commit d91e2f2856

@ -1,8 +1,6 @@
<div *ngIf="!overlayService.isOverlay" class="main-container standalone"> <div *ngIf="!overlayService.isOverlay" class="main-container standalone">
<mat-tab-group <mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)"
[selectedIndex]="selected.value" mat-stretch-tabs="false" class="tabs">
(selectedIndexChange)="selected.setValue($event)"
mat-stretch-tabs="false" class="tabs">
<mat-tab> <mat-tab>
<ng-template mat-tab-label> <ng-template mat-tab-label>
<span class="tab-label">Settings</span> <span class="tab-label">Settings</span>
@ -13,7 +11,14 @@
<ng-template mat-tab-label> <ng-template mat-tab-label>
<span class="tab-label">Editor</span> <span class="tab-label">Editor</span>
</ng-template> </ng-template>
<plan-editor class="content"></plan-editor> </mat-tab> <plan-editor class="content"></plan-editor>
</mat-tab>
<!-- <mat-tab>
<ng-template mat-tab-label>
<span class="tab-label">Gems</span>
</ng-template>
<app-gem-finder></app-gem-finder>
</mat-tab> -->
</mat-tab-group> </mat-tab-group>
</div> </div>

@ -13,6 +13,7 @@ import { AngularResizeEventModule } from "angular-resize-event";
import { OverlayModule } from "@angular/cdk/overlay"; import { OverlayModule } from "@angular/cdk/overlay";
import { SettingsComponent } from "./settings/settings.component"; import { SettingsComponent } from "./settings/settings.component";
import {MatTabsModule} from '@angular/material/tabs'; import {MatTabsModule} from '@angular/material/tabs';
// import { GemFinderComponent } from "./gem-finder/gem-finder.component";
export function initializeApp(configService: ConfigService) { export function initializeApp(configService: ConfigService) {
return (): Promise<any> => { return (): Promise<any> => {
@ -34,7 +35,8 @@ export function initializeApp(configService: ConfigService) {
AngularResizeEventModule, AngularResizeEventModule,
OverlayModule, OverlayModule,
SettingsComponent, SettingsComponent,
MatTabsModule MatTabsModule,
// GemFinderComponent
], ],
providers: [ providers: [
{ {

@ -3,7 +3,8 @@
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outDir": "./out-tsc/app", "outDir": "./out-tsc/app",
"types": [] "types": [],
"resolveJsonModule": true
}, },
"files": ["src/main.ts"], "files": ["src/main.ts"],
"include": ["src/**/*.d.ts"] "include": ["src/**/*.d.ts"]

Loading…
Cancel
Save