Skip to content

Commit

Permalink
chore(demo) fix stackblitz file generation (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesabarnes committed Mar 23, 2019
1 parent 8304157 commit 07f078d
Show file tree
Hide file tree
Showing 4 changed files with 3,046 additions and 3,056 deletions.
2 changes: 1 addition & 1 deletion demo/assets/stackblitz/index.html
@@ -1,5 +1,5 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="mat-app-background basic-container">
<material-docs-example>loading</material-docs-example>
<novo-docs-example>loading</novo-docs-example>
</div>
<span class="version-info">Current build: {{version}}</span>
4 changes: 2 additions & 2 deletions demo/assets/stackblitz/main.ts
Expand Up @@ -8,15 +8,15 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NovoElementsModule } from 'novo-elements';
import { NovoElementsModule, FieldInteractionApi, NovoToastService, NovoModalService } from 'novo-elements';
import { NovoDocsExample } from './app/novo-docs-example';

@NgModule({
imports: [BrowserModule, BrowserAnimationsModule, FormsModule, HttpClientModule, NovoElementsModule, ReactiveFormsModule],
entryComponents: [NovoDocsExample],
declarations: [NovoDocsExample],
bootstrap: [NovoDocsExample],
providers: [],
providers: [FieldInteractionApi, NovoToastService, NovoModalService],
})
export class AppModule {}

Expand Down

0 comments on commit 07f078d

Please sign in to comment.