feat: use profile service from identity

pull/10086/head
bnymncoskuner 4 years ago
parent 7be446e42f
commit 78a28ab232

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

@ -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 { getPasswordValidators, ToasterService } from '@abp/ng.theme.shared';
import { Component, Injector, OnInit } from '@angular/core'; import { Component, Injector, OnInit } from '@angular/core';
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms'; import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';

@ -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 { fadeIn } from '@abp/ng.theme.shared';
import { transition, trigger, useAnimation } from '@angular/animations'; import { transition, trigger, useAnimation } from '@angular/animations';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';

@ -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 { ToasterService } from '@abp/ng.theme.shared';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { FormBuilder, FormGroup, Validators } from '@angular/forms';

@ -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 { Injectable } from '@angular/core';
import { Observable } from 'rxjs'; import { Observable } from 'rxjs';

Loading…
Cancel
Save