mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 08:57:21 +00:00
.
This commit is contained in:
parent
d84e915f69
commit
3f25731bfd
5 changed files with 16 additions and 14 deletions
|
@ -1,5 +1,6 @@
|
|||
import { NgModule } from '@angular/core'
|
||||
import { BrowserModule } from '@angular/platform-browser'
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
|
||||
import { HttpModule } from '@angular/http'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { ToasterModule } from 'angular2-toaster'
|
||||
|
@ -35,6 +36,7 @@ let plugins = [
|
|||
@NgModule({
|
||||
imports: [
|
||||
BrowserModule,
|
||||
BrowserAnimationsModule,
|
||||
HttpModule,
|
||||
FormsModule,
|
||||
ToasterModule,
|
||||
|
|
|
@ -44,6 +44,6 @@ title-bar(*ngIf='!config.full().appearance.useNativeFrame && config.store.appear
|
|||
//hotkey-hint
|
||||
|
||||
toaster-container([toasterconfig]="toasterconfig")
|
||||
template(ngbModalContainer)
|
||||
ng-template(ngbModalContainer)
|
||||
|
||||
div.window-resizer.window-resizer-tl
|
||||
|
|
|
@ -4,7 +4,7 @@ import { BaseTabComponent } from 'components/baseTab'
|
|||
|
||||
@Component({
|
||||
selector: 'tab-body',
|
||||
template: '<template #placeholder></template>',
|
||||
template: '<ng-template #placeholder></ng-template>',
|
||||
styles: [require('./tabBody.scss')],
|
||||
})
|
||||
export class TabBodyComponent {
|
||||
|
|
|
@ -3,7 +3,7 @@ import { SettingsTabProvider } from '../api'
|
|||
|
||||
@Component({
|
||||
selector: 'settings-tab-body',
|
||||
template: '<template #placeholder></template>',
|
||||
template: '<ng-template #placeholder></ng-template>',
|
||||
})
|
||||
export class SettingsTabBodyComponent {
|
||||
@Input() provider: SettingsTabProvider
|
||||
|
|
22
package.json
22
package.json
|
@ -61,16 +61,16 @@
|
|||
"dist": "build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular/animations": "4.0.0-rc.2",
|
||||
"@angular/common": "4.0.0-rc.2",
|
||||
"@angular/compiler": "4.0.0-rc.2",
|
||||
"@angular/core": "4.0.0-rc.2",
|
||||
"@angular/forms": "4.0.0-rc.2",
|
||||
"@angular/http": "4.0.0-rc.2",
|
||||
"@angular/platform-browser": "4.0.0-rc.2",
|
||||
"@angular/platform-browser-dynamic": "4.0.0-rc.2",
|
||||
"@angular/platform-server": "4.0.0-rc.2",
|
||||
"@angular/router": "4.0.0-rc.2",
|
||||
"@angular/animations": "4.0.1",
|
||||
"@angular/common": "4.0.1",
|
||||
"@angular/compiler": "4.0.1",
|
||||
"@angular/core": "4.0.1",
|
||||
"@angular/forms": "4.0.1",
|
||||
"@angular/http": "4.0.1",
|
||||
"@angular/platform-browser": "4.0.1",
|
||||
"@angular/platform-browser-dynamic": "4.0.1",
|
||||
"@angular/platform-server": "4.0.1",
|
||||
"@angular/router": "4.0.1",
|
||||
"@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.22",
|
||||
"@types/fs-promise": "^1.0.1",
|
||||
"@types/core-js": "^0.9.35",
|
||||
|
@ -86,6 +86,6 @@
|
|||
"jquery": "^3.1.1",
|
||||
"rxjs": "5.3.0",
|
||||
"source-sans-pro": "^2.0.10",
|
||||
"zone.js": "0.8.5"
|
||||
"zone.js": "0.8.4"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue