Browse Source

feat: use profile service from identity

pull/10086/head
bnymncoskuner 5 years ago
parent
commit
78a28ab232
  1. 1
      npm/ng-packs/packages/account/package.json
  2. 2
      npm/ng-packs/packages/account/src/lib/components/change-password/change-password.component.ts
  3. 2
      npm/ng-packs/packages/account/src/lib/components/manage-profile/manage-profile.component.ts
  4. 2
      npm/ng-packs/packages/account/src/lib/components/personal-settings/personal-settings.component.ts
  5. 3
      npm/ng-packs/packages/account/src/lib/services/manage-profile.state.service.ts

1
npm/ng-packs/packages/account/package.json

@ -8,6 +8,7 @@
},
"dependencies": {
"@abp/ng.theme.shared": "~4.4.2",
"@abp/ng.identity": "~4.4.2",
"tslib": "^2.0.0"
},
"publishConfig": {

2
npm/ng-packs/packages/account/src/lib/components/change-password/change-password.component.ts

@ -1,4 +1,4 @@
import { ProfileService } from '@abp/ng.core';
import { ProfileService } from '@abp/ng.identity/proxy';
import { getPasswordValidators, ToasterService } from '@abp/ng.theme.shared';
import { Component, Injector, OnInit } from '@angular/core';
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';

2
npm/ng-packs/packages/account/src/lib/components/manage-profile/manage-profile.component.ts

@ -1,4 +1,4 @@
import { ProfileService } from '@abp/ng.core';
import { ProfileService } from '@abp/ng.identity/proxy';
import { fadeIn } from '@abp/ng.theme.shared';
import { transition, trigger, useAnimation } from '@angular/animations';
import { Component, OnInit } from '@angular/core';

2
npm/ng-packs/packages/account/src/lib/components/personal-settings/personal-settings.component.ts

@ -1,4 +1,4 @@
import { ProfileService } from '@abp/ng.core';
import { ProfileService } from '@abp/ng.identity/proxy';
import { ToasterService } from '@abp/ng.theme.shared';
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';

3
npm/ng-packs/packages/account/src/lib/services/manage-profile.state.service.ts

@ -1,4 +1,5 @@
import { InternalStore, ProfileDto } from '@abp/ng.core';
import { InternalStore } from '@abp/ng.core';
import { ProfileDto } from '@abp/ng.identity/proxy';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';

Loading…
Cancel
Save