@abp/ng.account 10.0.2 → 10.1.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@abp/ng.account",
3
- "version": "10.0.2",
3
+ "version": "10.1.0-rc.1",
4
4
  "homepage": "https://abp.io",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/abpframework/abp.git"
8
8
  },
9
9
  "dependencies": {
10
- "@abp/ng.account.core": "~10.0.2",
11
- "@abp/ng.theme.shared": "~10.0.2",
10
+ "@abp/ng.account.core": "~10.1.0-rc.1",
11
+ "@abp/ng.theme.shared": "~10.1.0-rc.1",
12
12
  "tslib": "^2.0.0"
13
13
  },
14
14
  "publishConfig": {
@@ -29,17 +29,17 @@
29
29
  "webapp"
30
30
  ],
31
31
  "module": "fesm2022/abp-ng.account.mjs",
32
- "typings": "index.d.ts",
32
+ "typings": "types/abp-ng.account.d.ts",
33
33
  "exports": {
34
34
  "./package.json": {
35
35
  "default": "./package.json"
36
36
  },
37
37
  ".": {
38
- "types": "./index.d.ts",
38
+ "types": "./types/abp-ng.account.d.ts",
39
39
  "default": "./fesm2022/abp-ng.account.mjs"
40
40
  },
41
41
  "./config": {
42
- "types": "./config/index.d.ts",
42
+ "types": "./types/abp-ng.account-config.d.ts",
43
43
  "default": "./fesm2022/abp-ng.account-config.mjs"
44
44
  }
45
45
  },
@@ -12,6 +12,9 @@ import * as rxjs from 'rxjs';
12
12
  import { Observable } from 'rxjs';
13
13
  import * as i1 from '@angular/router';
14
14
  import { CanActivateFn, ResolveFn, Routes } from '@angular/router';
15
+ import * as _abp_ng_account from '@abp/ng.account';
16
+ import * as dist_packages_components_types_abp_ng_components_extensible from 'dist/packages/components/types/abp-ng.components-extensible';
17
+ import * as dist_packages_account_core_types_abp_ng_account_core_proxy from 'dist/packages/account-core/types/abp-ng.account.core-proxy';
15
18
 
16
19
  declare const enum eAccountComponents {
17
20
  Login = "Account.LoginComponent",
@@ -259,7 +262,7 @@ declare function getRedirectUrl(injector: Injector): any;
259
262
  declare function accountConfigOptionsFactory(options: AccountConfigOptions): {
260
263
  redirectUrl: string;
261
264
  isPersonalSettingsChangedConfirmationActive?: boolean;
262
- editFormPropContributors?: AccountEditFormPropContributors;
265
+ editFormPropContributors?: _abp_ng_account.AccountEditFormPropContributors;
263
266
  };
264
267
 
265
268
  declare const accountExtensionsResolver: ResolveFn<any>;
@@ -281,10 +284,10 @@ declare function provideAccount(options?: AccountConfigOptions): ({
281
284
  deps?: undefined;
282
285
  } | {
283
286
  provide: i0.InjectionToken<Partial<{
284
- "Account.PersonalSettingsComponent": _abp_ng_components_extensible.EditFormPropContributorCallback<_abp_ng_account_core_proxy.UpdateProfileDto>[];
287
+ "Account.PersonalSettingsComponent": dist_packages_components_types_abp_ng_components_extensible.EditFormPropContributorCallback<dist_packages_account_core_types_abp_ng_account_core_proxy.UpdateProfileDto>[];
285
288
  }>>;
286
289
  useValue: Partial<{
287
- "Account.PersonalSettingsComponent": _abp_ng_components_extensible.EditFormPropContributorCallback<_abp_ng_account_core_proxy.UpdateProfileDto>[];
290
+ "Account.PersonalSettingsComponent": dist_packages_components_types_abp_ng_components_extensible.EditFormPropContributorCallback<dist_packages_account_core_types_abp_ng_account_core_proxy.UpdateProfileDto>[];
288
291
  }>;
289
292
  useFactory?: undefined;
290
293
  deps?: undefined;