@abp/ng.account 10.0.2 → 10.1.0-rc.2
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/fesm2022/abp-ng.account-config.mjs +4 -4
- package/fesm2022/abp-ng.account-config.mjs.map +1 -1
- package/fesm2022/abp-ng.account.mjs +42 -42
- package/fesm2022/abp-ng.account.mjs.map +1 -1
- package/package.json +6 -6
- package/{index.d.ts → types/abp-ng.account.d.ts} +4 -27
- /package/{config/index.d.ts → types/abp-ng.account-config.d.ts} +0 -0
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.2",
|
|
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.2",
|
|
11
|
+
"@abp/ng.theme.shared": "~10.1.0-rc.2",
|
|
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": "
|
|
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": "./
|
|
38
|
+
"types": "./types/abp-ng.account.d.ts",
|
|
39
39
|
"default": "./fesm2022/abp-ng.account.mjs"
|
|
40
40
|
},
|
|
41
41
|
"./config": {
|
|
42
|
-
"types": "./
|
|
42
|
+
"types": "./types/abp-ng.account-config.d.ts",
|
|
43
43
|
"default": "./fesm2022/abp-ng.account-config.mjs"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, Injector, ModuleWithProviders, NgModuleFactory, InjectionToken } from '@angular/core';
|
|
2
|
+
import { OnInit, Injector, ModuleWithProviders, NgModuleFactory, InjectionToken, Provider } from '@angular/core';
|
|
3
3
|
import * as _abp_ng_components_extensible from '@abp/ng.components/extensible';
|
|
4
4
|
import { EditFormPropContributorCallback, ExtensionsService } from '@abp/ng.components/extensible';
|
|
5
5
|
import * as _abp_ng_account_core_proxy from '@abp/ng.account.core/proxy';
|
|
@@ -12,6 +12,7 @@ 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';
|
|
15
16
|
|
|
16
17
|
declare const enum eAccountComponents {
|
|
17
18
|
Login = "Account.LoginComponent",
|
|
@@ -259,36 +260,12 @@ declare function getRedirectUrl(injector: Injector): any;
|
|
|
259
260
|
declare function accountConfigOptionsFactory(options: AccountConfigOptions): {
|
|
260
261
|
redirectUrl: string;
|
|
261
262
|
isPersonalSettingsChangedConfirmationActive?: boolean;
|
|
262
|
-
editFormPropContributors?: AccountEditFormPropContributors;
|
|
263
|
+
editFormPropContributors?: _abp_ng_account.AccountEditFormPropContributors;
|
|
263
264
|
};
|
|
264
265
|
|
|
265
266
|
declare const accountExtensionsResolver: ResolveFn<any>;
|
|
266
267
|
|
|
267
|
-
declare function provideAccount(options?: AccountConfigOptions):
|
|
268
|
-
provide: i0.InjectionToken<AccountConfigOptions>;
|
|
269
|
-
useValue: AccountConfigOptions;
|
|
270
|
-
useFactory?: undefined;
|
|
271
|
-
deps?: undefined;
|
|
272
|
-
} | {
|
|
273
|
-
provide: string;
|
|
274
|
-
useFactory: typeof accountConfigOptionsFactory;
|
|
275
|
-
deps: i0.InjectionToken<AccountConfigOptions>[];
|
|
276
|
-
useValue?: undefined;
|
|
277
|
-
} | {
|
|
278
|
-
provide: i0.InjectionToken<boolean>;
|
|
279
|
-
useValue: boolean;
|
|
280
|
-
useFactory?: undefined;
|
|
281
|
-
deps?: undefined;
|
|
282
|
-
} | {
|
|
283
|
-
provide: i0.InjectionToken<Partial<{
|
|
284
|
-
"Account.PersonalSettingsComponent": _abp_ng_components_extensible.EditFormPropContributorCallback<_abp_ng_account_core_proxy.UpdateProfileDto>[];
|
|
285
|
-
}>>;
|
|
286
|
-
useValue: Partial<{
|
|
287
|
-
"Account.PersonalSettingsComponent": _abp_ng_components_extensible.EditFormPropContributorCallback<_abp_ng_account_core_proxy.UpdateProfileDto>[];
|
|
288
|
-
}>;
|
|
289
|
-
useFactory?: undefined;
|
|
290
|
-
deps?: undefined;
|
|
291
|
-
})[];
|
|
268
|
+
declare function provideAccount(options?: AccountConfigOptions): Provider[];
|
|
292
269
|
declare const createRoutes: (options?: AccountConfigOptions) => Routes;
|
|
293
270
|
|
|
294
271
|
export { ACCOUNT_CONFIG_OPTIONS, ACCOUNT_EDIT_FORM_PROP_CONTRIBUTORS, Account, AccountExtensionsGuard, AccountModule, AuthenticationFlowGuard, ChangePasswordComponent, DEFAULT_ACCOUNT_FORM_PROPS, ForgotPasswordComponent, LoginComponent, ManageProfileComponent, ManageProfileStateService, PersonalSettingsComponent, PersonalSettingsHalfRowComponent, RE_LOGIN_CONFIRMATION_TOKEN, RegisterComponent, ResetPasswordComponent, accountConfigOptionsFactory, accountExtensionsResolver, authenticationFlowGuard, createRoutes, eAccountComponents, getRedirectUrl, provideAccount };
|
|
File without changes
|