Skip to content

Commit

Permalink
Issue #SB-13915 task: Card Component
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakhan Mandloi committed Aug 13, 2019
1 parent 5a16777 commit ac1d0d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
import {SbdModule} from 'sunbird-ui-component';
import {SbModule} from 'sunbird-ui-component';

import {AppComponent} from './app.component';
import {routing} from './app.routing';
Expand Down
10 changes: 5 additions & 5 deletions demo/src/app/pages/getting-started/getting-started.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import {Snippet} from '../../shared/code/snippet';
export class GettingStartedPage {
codeInstall = Snippet({
lang: 'bash',
code: `npm install --save @Sunbird-Ed/sunbird-ui-components`,
code: `npm install --save sunbird-ui-components`,
});

codeRoot = Snippet({
lang: 'typescript',
code: `
import {SbModule} from '@Sunbird-Ed/sunbird-ui-components';
import {SbModule} from 'sunbird-ui-components';
@NgModule({
...
Expand All @@ -28,11 +28,11 @@ export class GettingStartedPage {
codeOther = Snippet({
lang: 'typescript',
code: `
import {SbPaginationModule, SbbAlertModule} from '@Sunbird-Ed/sunbird-ui-components';
import {NgbPaginationModule,NgbAlertModule} from 'sunbird-ui-components';
@NgModule({
...
imports: [SbPaginationModule, SbAlertModule, ...],
imports: [NgbPaginationModule, NgbAlertModule, ...],
...
})
export class YourAppModule {
Expand All @@ -44,7 +44,7 @@ export class GettingStartedPage {
lang: 'typescript',
code: `
map: {
'@Sunbird-Ed/sunbird-ui-components': 'node_modules/@Sunbird-Ed/sunbird-ui-components/bundles/sb.js',
'sunbird-ui-components': 'node_modules/sunbird-ui-components/bundles/sb.js',
}
`,
});
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@sunbird-ed/sunbird-ui-components",
"name": "sunbird-ui-component",
"version": "1.1.0",
"description": "Sunbird UI Components",
"keywords": [
Expand Down

0 comments on commit ac1d0d3

Please sign in to comment.