diff --git a/package-lock.json b/package-lock.json index 1b9531a..3402388 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2349,6 +2349,22 @@ } } }, + "@progress/kendo-angular-pager": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-angular-pager/-/kendo-angular-pager-2.0.0.tgz", + "integrity": "sha512-Q6ZyK8Xvk77rc2PhvRyRS53G/gN0GA9zzBs++KNs3MmOaKQNNggtvgne+fstEhNrY1R9nO53CzMlqYs8i+dH7w==", + "requires": { + "@progress/kendo-schematics": "^1.2.0", + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, "@progress/kendo-angular-pdf-export": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@progress/kendo-angular-pdf-export/-/kendo-angular-pdf-export-3.0.0.tgz", diff --git a/package.json b/package.json index 7216649..87b1c93 100644 --- a/package.json +++ b/package.json @@ -29,28 +29,29 @@ "@progress/kendo-angular-common": "^2.0.0", "@progress/kendo-angular-dateinputs": "^5.1.0", "@progress/kendo-angular-dialog": "^5.0.0", - "@progress/kendo-angular-dropdowns": "^5.1.0", + "@progress/kendo-angular-dropdowns": "^5.0.0", "@progress/kendo-angular-editor": "^2.0.1", "@progress/kendo-angular-excel-export": "^4.0.0", "@progress/kendo-angular-grid": "^5.0.3", "@progress/kendo-angular-icons": "^0.4.2", "@progress/kendo-angular-indicators": "^1.0.0", - "@progress/kendo-angular-inputs": "^7.1.2", - "@progress/kendo-angular-intl": "^3.1.0", + "@progress/kendo-angular-inputs": "^7.0.0", + "@progress/kendo-angular-intl": "^3.0.0", "@progress/kendo-angular-l10n": "^3.0.0", "@progress/kendo-angular-label": "^3.0.1", "@progress/kendo-angular-layout": "6", "@progress/kendo-angular-menu": "^3.0.0", "@progress/kendo-angular-navigation": "^1.0.0", "@progress/kendo-angular-notification": "^3.0.0", + "@progress/kendo-angular-pager": "^2.0.0", "@progress/kendo-angular-pdf-export": "^3.0.0", "@progress/kendo-angular-popup": "^4.0.0", "@progress/kendo-angular-progressbar": "^2.0.0", "@progress/kendo-angular-toolbar": "^4.0.0", - "@progress/kendo-angular-treeview": "^5.1.0", + "@progress/kendo-angular-treeview": "^5.0.0", "@progress/kendo-angular-upload": "^7.1.0", "@progress/kendo-data-query": "^1.5.4", - "@progress/kendo-drawing": "^1.9.4", + "@progress/kendo-drawing": "^1.5.12", "@progress/kendo-licensing": "^1.0.2", "@progress/kendo-svg-icons": "^0.1.2", "@progress/kendo-theme-default": "latest", diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 0795602..5f59f22 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -23,6 +23,7 @@ import {PayInComponent} from './pay-in/pay-in.component'; import {PeopleAddComponent} from './people-add/people-add.component'; import {SettingsComponent} from './settings/settings.component'; import {ProfileComponent} from './profile/profile.component'; +import {ListAllPeopleComponent} from './list-all-people/list-all-people.component'; const routes: Routes = [ @@ -49,7 +50,7 @@ const routes: Routes = [ {path : 'reward-unpaid', component: RewardUnpaidComponent, canActivate: [AuthGuard] }, {path : 'pay-in', component: PayInComponent, canActivate: [AuthGuard] }, {path : 'lender-uploads', component: LenderUploadsComponent, canActivate: [AuthGuard] }, - {path : 'list-all-people', component: LenderUploadsComponent, canActivate: [AuthGuard] }, + {path : 'list-all-people', component: ListAllPeopleComponent, canActivate: [AuthGuard] }, {path : 'people-add', component: PeopleAddComponent, canActivate: [AuthGuard] }, {path : 'profile', component: ProfileComponent, canActivate: [AuthGuard] }, {path : 'profile/:id', component: ProfileComponent, canActivate: [AuthGuard] }, diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 9b144fb..1ede24a 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -86,6 +86,10 @@ import { MessageBoxComponent } from './message-box/message-box.component'; import { UserProfileComponent } from './profile/user-profile/user-profile.component'; import { AdminProfileComponent } from './profile/admin-profile/admin-profile.component'; import { ChangePasswordComponent } from './profile/change-password/change-password.component'; +import { ProgressBarModule } from '@progress/kendo-angular-progressbar'; +import { PagerModule } from '@progress/kendo-angular-pager'; + + @@ -174,7 +178,9 @@ import { ChangePasswordComponent } from './profile/change-password/change-passwo ExcelExportModule, EditorModule, UploadModule, - FileSelectModule + FileSelectModule, + ProgressBarModule, + PagerModule ], providers: [ MenuService, diff --git a/src/app/list-all-loans/list-all-loans.component.ts b/src/app/list-all-loans/list-all-loans.component.ts index 52b410f..d2fe131 100644 --- a/src/app/list-all-loans/list-all-loans.component.ts +++ b/src/app/list-all-loans/list-all-loans.component.ts @@ -73,4 +73,5 @@ export class ListAllLoansComponent implements OnInit { this.router.navigate(['/edit-loan/' + event.dataItem.Id]); } + } diff --git a/src/app/list-all-people/list-all-people.component.html b/src/app/list-all-people/list-all-people.component.html index 3647e3b..14b0707 100644 --- a/src/app/list-all-people/list-all-people.component.html +++ b/src/app/list-all-people/list-all-people.component.html @@ -1 +1,33 @@ -
list-all-people works!
+people-add works!
+{{ contact.Title }} {{ contact.First}} {{ contact.Last}}
+{{UserExtra.Role}}
+