@abp/ng.identity 9.0.3 → 9.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.
Files changed (51) hide show
  1. package/config/providers/route.provider.d.ts +2 -8
  2. package/fesm2022/abp-ng.identity-config.mjs +35 -34
  3. package/fesm2022/abp-ng.identity-config.mjs.map +1 -1
  4. package/fesm2022/abp-ng.identity-proxy.mjs +9 -9
  5. package/fesm2022/abp-ng.identity.mjs +19 -19
  6. package/fesm2022/abp-ng.identity.mjs.map +1 -1
  7. package/package.json +4 -10
  8. package/esm2022/abp-ng.identity.mjs +0 -5
  9. package/esm2022/config/abp-ng.identity-config.mjs +0 -5
  10. package/esm2022/config/enums/index.mjs +0 -3
  11. package/esm2022/config/enums/policy-names.mjs +0 -2
  12. package/esm2022/config/enums/route-names.mjs +0 -2
  13. package/esm2022/config/identity-config.module.mjs +0 -21
  14. package/esm2022/config/providers/identity-config.provider.mjs +0 -6
  15. package/esm2022/config/providers/index.mjs +0 -3
  16. package/esm2022/config/providers/route.provider.mjs +0 -35
  17. package/esm2022/config/public-api.mjs +0 -4
  18. package/esm2022/lib/components/index.mjs +0 -3
  19. package/esm2022/lib/components/roles/roles.component.mjs +0 -111
  20. package/esm2022/lib/components/users/users.component.mjs +0 -149
  21. package/esm2022/lib/defaults/default-roles-entity-actions.mjs +0 -30
  22. package/esm2022/lib/defaults/default-roles-entity-props.mjs +0 -24
  23. package/esm2022/lib/defaults/default-roles-form-props.mjs +0 -28
  24. package/esm2022/lib/defaults/default-roles-toolbar-actions.mjs +0 -14
  25. package/esm2022/lib/defaults/default-users-entity-actions.mjs +0 -36
  26. package/esm2022/lib/defaults/default-users-entity-props.mjs +0 -35
  27. package/esm2022/lib/defaults/default-users-form-props.mjs +0 -83
  28. package/esm2022/lib/defaults/default-users-toolbar-actions.mjs +0 -14
  29. package/esm2022/lib/enums/components.mjs +0 -2
  30. package/esm2022/lib/enums/index.mjs +0 -2
  31. package/esm2022/lib/guards/extensions.guard.mjs +0 -38
  32. package/esm2022/lib/guards/index.mjs +0 -2
  33. package/esm2022/lib/identity-routing.module.mjs +0 -56
  34. package/esm2022/lib/identity.module.mjs +0 -85
  35. package/esm2022/lib/models/config-options.mjs +0 -2
  36. package/esm2022/lib/models/index.mjs +0 -2
  37. package/esm2022/lib/resolvers/extensions.resolver.mjs +0 -25
  38. package/esm2022/lib/resolvers/index.mjs +0 -2
  39. package/esm2022/lib/tokens/extensions.token.mjs +0 -35
  40. package/esm2022/lib/tokens/index.mjs +0 -2
  41. package/esm2022/proxy/abp-ng.identity-proxy.mjs +0 -5
  42. package/esm2022/proxy/lib/index.mjs +0 -3
  43. package/esm2022/proxy/lib/proxy/identity/identity-role.service.mjs +0 -46
  44. package/esm2022/proxy/lib/proxy/identity/identity-user-lookup.service.mjs +0 -37
  45. package/esm2022/proxy/lib/proxy/identity/identity-user.service.mjs +0 -63
  46. package/esm2022/proxy/lib/proxy/identity/index.mjs +0 -5
  47. package/esm2022/proxy/lib/proxy/identity/models.mjs +0 -2
  48. package/esm2022/proxy/lib/proxy/users/index.mjs +0 -2
  49. package/esm2022/proxy/lib/proxy/users/models.mjs +0 -2
  50. package/esm2022/proxy/public-api.mjs +0 -2
  51. package/esm2022/public-api.mjs +0 -8
@@ -1,8 +1,2 @@
1
- import { RoutesService } from '@abp/ng.core';
2
- export declare const IDENTITY_ROUTE_PROVIDERS: {
3
- provide: import("@angular/core").InjectionToken<readonly (() => import("rxjs").Observable<unknown> | Promise<unknown> | void)[]>;
4
- useFactory: typeof configureRoutes;
5
- deps: (typeof RoutesService)[];
6
- multi: boolean;
7
- }[];
8
- export declare function configureRoutes(routesService: RoutesService): () => void;
1
+ export declare const IDENTITY_ROUTE_PROVIDERS: import("@angular/core").EnvironmentProviders[];
2
+ export declare function configureRoutes(): void;
@@ -1,38 +1,39 @@
1
1
  import * as i0 from '@angular/core';
2
- import { APP_INITIALIZER, makeEnvironmentProviders, NgModule } from '@angular/core';
2
+ import { provideAppInitializer, inject, makeEnvironmentProviders, NgModule } from '@angular/core';
3
3
  import { RoutesService } from '@abp/ng.core';
4
4
 
5
5
  const IDENTITY_ROUTE_PROVIDERS = [
6
- { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
6
+ provideAppInitializer(() => {
7
+ configureRoutes();
8
+ }),
7
9
  ];
8
- function configureRoutes(routesService) {
9
- return () => {
10
- routesService.add([
11
- {
12
- path: undefined,
13
- name: "AbpIdentity::Menu:IdentityManagement" /* eIdentityRouteNames.IdentityManagement */,
14
- parentName: "AbpUiNavigation::Menu:Administration" /* eThemeSharedRouteNames.Administration */,
15
- requiredPolicy: "AbpIdentity.Roles || AbpIdentity.Users" /* eIdentityPolicyNames.IdentityManagement */,
16
- iconClass: 'fa fa-id-card-o',
17
- layout: "application" /* eLayoutType.application */,
18
- order: 1,
19
- },
20
- {
21
- path: '/identity/roles',
22
- name: "AbpIdentity::Roles" /* eIdentityRouteNames.Roles */,
23
- parentName: "AbpIdentity::Menu:IdentityManagement" /* eIdentityRouteNames.IdentityManagement */,
24
- requiredPolicy: "AbpIdentity.Roles" /* eIdentityPolicyNames.Roles */,
25
- order: 1,
26
- },
27
- {
28
- path: '/identity/users',
29
- name: "AbpIdentity::Users" /* eIdentityRouteNames.Users */,
30
- parentName: "AbpIdentity::Menu:IdentityManagement" /* eIdentityRouteNames.IdentityManagement */,
31
- requiredPolicy: "AbpIdentity.Users" /* eIdentityPolicyNames.Users */,
32
- order: 2,
33
- },
34
- ]);
35
- };
10
+ function configureRoutes() {
11
+ const routesService = inject(RoutesService);
12
+ routesService.add([
13
+ {
14
+ path: undefined,
15
+ name: "AbpIdentity::Menu:IdentityManagement" /* eIdentityRouteNames.IdentityManagement */,
16
+ parentName: "AbpUiNavigation::Menu:Administration" /* eThemeSharedRouteNames.Administration */,
17
+ requiredPolicy: "AbpIdentity.Roles || AbpIdentity.Users" /* eIdentityPolicyNames.IdentityManagement */,
18
+ iconClass: 'fa fa-id-card-o',
19
+ layout: "application" /* eLayoutType.application */,
20
+ order: 1,
21
+ },
22
+ {
23
+ path: '/identity/roles',
24
+ name: "AbpIdentity::Roles" /* eIdentityRouteNames.Roles */,
25
+ parentName: "AbpIdentity::Menu:IdentityManagement" /* eIdentityRouteNames.IdentityManagement */,
26
+ requiredPolicy: "AbpIdentity.Roles" /* eIdentityPolicyNames.Roles */,
27
+ order: 1,
28
+ },
29
+ {
30
+ path: '/identity/users',
31
+ name: "AbpIdentity::Users" /* eIdentityRouteNames.Users */,
32
+ parentName: "AbpIdentity::Menu:IdentityManagement" /* eIdentityRouteNames.IdentityManagement */,
33
+ requiredPolicy: "AbpIdentity.Users" /* eIdentityPolicyNames.Users */,
34
+ order: 2,
35
+ },
36
+ ]);
36
37
  }
37
38
 
38
39
  function provideIdentityConfig() {
@@ -49,11 +50,11 @@ class IdentityConfigModule {
49
50
  providers: [provideIdentityConfig()],
50
51
  };
51
52
  }
52
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
53
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.5", ngImport: i0, type: IdentityConfigModule }); }
54
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityConfigModule }); }
53
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
54
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.7", ngImport: i0, type: IdentityConfigModule }); }
55
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityConfigModule }); }
55
56
  }
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityConfigModule, decorators: [{
57
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityConfigModule, decorators: [{
57
58
  type: NgModule
58
59
  }] });
59
60
 
@@ -1 +1 @@
1
- {"version":3,"file":"abp-ng.identity-config.mjs","sources":["../../../../packages/identity/config/src/providers/route.provider.ts","../../../../packages/identity/config/src/providers/identity-config.provider.ts","../../../../packages/identity/config/src/identity-config.module.ts","../../../../packages/identity/config/src/abp-ng.identity-config.ts"],"sourcesContent":["import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { eThemeSharedRouteNames } from '@abp/ng.theme.shared';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eIdentityPolicyNames } from '../enums/policy-names';\r\nimport { eIdentityRouteNames } from '../enums/route-names';\r\n\r\nexport const IDENTITY_ROUTE_PROVIDERS = [\r\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\r\n];\r\n\r\nexport function configureRoutes(routesService: RoutesService) {\r\n return () => {\r\n routesService.add([\r\n {\r\n path: undefined,\r\n name: eIdentityRouteNames.IdentityManagement,\r\n parentName: eThemeSharedRouteNames.Administration,\r\n requiredPolicy: eIdentityPolicyNames.IdentityManagement,\r\n iconClass: 'fa fa-id-card-o',\r\n layout: eLayoutType.application,\r\n order: 1,\r\n },\r\n {\r\n path: '/identity/roles',\r\n name: eIdentityRouteNames.Roles,\r\n parentName: eIdentityRouteNames.IdentityManagement,\r\n requiredPolicy: eIdentityPolicyNames.Roles,\r\n order: 1,\r\n },\r\n {\r\n path: '/identity/users',\r\n name: eIdentityRouteNames.Users,\r\n parentName: eIdentityRouteNames.IdentityManagement,\r\n requiredPolicy: eIdentityPolicyNames.Users,\r\n order: 2,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { makeEnvironmentProviders } from '@angular/core';\r\nimport { IDENTITY_ROUTE_PROVIDERS } from './';\r\n\r\nexport function provideIdentityConfig() {\r\n return makeEnvironmentProviders([IDENTITY_ROUTE_PROVIDERS]);\r\n}\r\n","import { ModuleWithProviders, NgModule } from '@angular/core';\r\nimport { provideIdentityConfig } from './providers';\r\n\r\n/**\r\n * @deprecated IdentityConfigModule is deprecated use `provideIdentityConfig` *function* instead.\r\n */\r\n@NgModule()\r\nexport class IdentityConfigModule {\r\n static forRoot(): ModuleWithProviders<IdentityConfigModule> {\r\n return {\r\n ngModule: IdentityConfigModule,\r\n providers: [provideIdentityConfig()],\r\n };\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;AAMa,MAAA,wBAAwB,GAAG;AACtC,IAAA,EAAE,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,aAAa,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE;;AAGzF,SAAU,eAAe,CAAC,aAA4B,EAAA;AAC1D,IAAA,OAAO,MAAK;QACV,aAAa,CAAC,GAAG,CAAC;AAChB,YAAA;AACE,gBAAA,IAAI,EAAE,SAAS;AACf,gBAAA,IAAI,EAAwC,sCAAA;AAC5C,gBAAA,UAAU,EAAuC,sCAAA;AACjD,gBAAA,cAAc,EAAyC,wCAAA;AACvD,gBAAA,SAAS,EAAE,iBAAiB;AAC5B,gBAAA,MAAM,EAAyB,aAAA;AAC/B,gBAAA,KAAK,EAAE,CAAC;AACT,aAAA;AACD,YAAA;AACE,gBAAA,IAAI,EAAE,iBAAiB;AACvB,gBAAA,IAAI,EAA2B,oBAAA;AAC/B,gBAAA,UAAU,EAAwC,sCAAA;AAClD,gBAAA,cAAc,EAA4B,mBAAA;AAC1C,gBAAA,KAAK,EAAE,CAAC;AACT,aAAA;AACD,YAAA;AACE,gBAAA,IAAI,EAAE,iBAAiB;AACvB,gBAAA,IAAI,EAA2B,oBAAA;AAC/B,gBAAA,UAAU,EAAwC,sCAAA;AAClD,gBAAA,cAAc,EAA4B,mBAAA;AAC1C,gBAAA,KAAK,EAAE,CAAC;AACT,aAAA;AACF,SAAA,CAAC;AACJ,KAAC;AACH;;SCnCgB,qBAAqB,GAAA;AACnC,IAAA,OAAO,wBAAwB,CAAC,CAAC,wBAAwB,CAAC,CAAC;AAC7D;;ACFA;;AAEG;MAEU,oBAAoB,CAAA;AAC/B,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO;AACL,YAAA,QAAQ,EAAE,oBAAoB;AAC9B,YAAA,SAAS,EAAE,CAAC,qBAAqB,EAAE,CAAC;SACrC;;8GALQ,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAApB,oBAAoB,EAAA,CAAA,CAAA;+GAApB,oBAAoB,EAAA,CAAA,CAAA;;2FAApB,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBADhC;;;ACND;;AAEG;;;;"}
1
+ {"version":3,"file":"abp-ng.identity-config.mjs","sources":["../../../../packages/identity/config/src/providers/route.provider.ts","../../../../packages/identity/config/src/providers/identity-config.provider.ts","../../../../packages/identity/config/src/identity-config.module.ts","../../../../packages/identity/config/src/abp-ng.identity-config.ts"],"sourcesContent":["import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { eThemeSharedRouteNames } from '@abp/ng.theme.shared';\r\nimport { inject, provideAppInitializer } from '@angular/core';\r\nimport { eIdentityPolicyNames } from '../enums/policy-names';\r\nimport { eIdentityRouteNames } from '../enums/route-names';\r\n\r\nexport const IDENTITY_ROUTE_PROVIDERS = [\r\n provideAppInitializer(() => {\r\n configureRoutes();\r\n }),\r\n];\r\n\r\nexport function configureRoutes() {\r\n const routesService = inject(RoutesService);\r\n routesService.add([\r\n {\r\n path: undefined,\r\n name: eIdentityRouteNames.IdentityManagement,\r\n parentName: eThemeSharedRouteNames.Administration,\r\n requiredPolicy: eIdentityPolicyNames.IdentityManagement,\r\n iconClass: 'fa fa-id-card-o',\r\n layout: eLayoutType.application,\r\n order: 1,\r\n },\r\n {\r\n path: '/identity/roles',\r\n name: eIdentityRouteNames.Roles,\r\n parentName: eIdentityRouteNames.IdentityManagement,\r\n requiredPolicy: eIdentityPolicyNames.Roles,\r\n order: 1,\r\n },\r\n {\r\n path: '/identity/users',\r\n name: eIdentityRouteNames.Users,\r\n parentName: eIdentityRouteNames.IdentityManagement,\r\n requiredPolicy: eIdentityPolicyNames.Users,\r\n order: 2,\r\n },\r\n ]);\r\n}\r\n","import { makeEnvironmentProviders } from '@angular/core';\r\nimport { IDENTITY_ROUTE_PROVIDERS } from './';\r\n\r\nexport function provideIdentityConfig() {\r\n return makeEnvironmentProviders([IDENTITY_ROUTE_PROVIDERS]);\r\n}\r\n","import { ModuleWithProviders, NgModule } from '@angular/core';\r\nimport { provideIdentityConfig } from './providers';\r\n\r\n/**\r\n * @deprecated IdentityConfigModule is deprecated use `provideIdentityConfig` *function* instead.\r\n */\r\n@NgModule()\r\nexport class IdentityConfigModule {\r\n static forRoot(): ModuleWithProviders<IdentityConfigModule> {\r\n return {\r\n ngModule: IdentityConfigModule,\r\n providers: [provideIdentityConfig()],\r\n };\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;AAMa,MAAA,wBAAwB,GAAG;IACtC,qBAAqB,CAAC,MAAK;AACzB,QAAA,eAAe,EAAE;AACnB,KAAC,CAAC;;SAGY,eAAe,GAAA;AAC7B,IAAA,MAAM,aAAa,GAAG,MAAM,CAAC,aAAa,CAAC;IAC3C,aAAa,CAAC,GAAG,CAAC;AAChB,QAAA;AACE,YAAA,IAAI,EAAE,SAAS;AACf,YAAA,IAAI,EAAwC,sCAAA;AAC5C,YAAA,UAAU,EAAuC,sCAAA;AACjD,YAAA,cAAc,EAAyC,wCAAA;AACvD,YAAA,SAAS,EAAE,iBAAiB;AAC5B,YAAA,MAAM,EAAyB,aAAA;AAC/B,YAAA,KAAK,EAAE,CAAC;AACT,SAAA;AACD,QAAA;AACE,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,IAAI,EAA2B,oBAAA;AAC/B,YAAA,UAAU,EAAwC,sCAAA;AAClD,YAAA,cAAc,EAA4B,mBAAA;AAC1C,YAAA,KAAK,EAAE,CAAC;AACT,SAAA;AACD,QAAA;AACE,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,IAAI,EAA2B,oBAAA;AAC/B,YAAA,UAAU,EAAwC,sCAAA;AAClD,YAAA,cAAc,EAA4B,mBAAA;AAC1C,YAAA,KAAK,EAAE,CAAC;AACT,SAAA;AACF,KAAA,CAAC;AACJ;;SCpCgB,qBAAqB,GAAA;AACnC,IAAA,OAAO,wBAAwB,CAAC,CAAC,wBAAwB,CAAC,CAAC;AAC7D;;ACFA;;AAEG;MAEU,oBAAoB,CAAA;AAC/B,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO;AACL,YAAA,QAAQ,EAAE,oBAAoB;AAC9B,YAAA,SAAS,EAAE,CAAC,qBAAqB,EAAE,CAAC;SACrC;;8GALQ,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAApB,oBAAoB,EAAA,CAAA,CAAA;+GAApB,oBAAoB,EAAA,CAAA,CAAA;;2FAApB,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBADhC;;;ACND;;AAEG;;;;"}
@@ -34,10 +34,10 @@ class IdentityRoleService {
34
34
  body: input,
35
35
  }, { apiName: this.apiName });
36
36
  }
37
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoleService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
38
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoleService, providedIn: 'root' }); }
37
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoleService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
38
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoleService, providedIn: 'root' }); }
39
39
  }
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoleService, decorators: [{
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoleService, decorators: [{
41
41
  type: Injectable,
42
42
  args: [{
43
43
  providedIn: 'root',
@@ -67,10 +67,10 @@ class IdentityUserLookupService {
67
67
  params: { filter: input.filter, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
68
68
  }, { apiName: this.apiName });
69
69
  }
70
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityUserLookupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
71
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityUserLookupService, providedIn: 'root' }); }
70
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityUserLookupService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
71
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityUserLookupService, providedIn: 'root' }); }
72
72
  }
73
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityUserLookupService, decorators: [{
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityUserLookupService, decorators: [{
74
74
  type: Injectable,
75
75
  args: [{
76
76
  providedIn: 'root',
@@ -126,10 +126,10 @@ class IdentityUserService {
126
126
  body: input,
127
127
  }, { apiName: this.apiName });
128
128
  }
129
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityUserService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
130
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityUserService, providedIn: 'root' }); }
129
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityUserService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
130
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityUserService, providedIn: 'root' }); }
131
131
  }
132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityUserService, decorators: [{
132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityUserService, decorators: [{
133
133
  type: Injectable,
134
134
  args: [{
135
135
  providedIn: 'root',
@@ -99,8 +99,8 @@ class RolesComponent {
99
99
  this.list.sortKey = prop;
100
100
  this.list.sortOrder = dir;
101
101
  }
102
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: RolesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
103
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.5", type: RolesComponent, selector: "abp-roles", providers: [
102
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: RolesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
103
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.7", type: RolesComponent, isStandalone: false, selector: "abp-roles", providers: [
104
104
  ListService,
105
105
  {
106
106
  provide: EXTENSIONS_IDENTIFIER,
@@ -108,9 +108,9 @@ class RolesComponent {
108
108
  },
109
109
  ], ngImport: i0, template: "<abp-page [title]=\"'AbpIdentity::Roles' | abpLocalization\" [toolbar]=\"data.items\">\r\n <div id=\"identity-roles-wrapper\" class=\"card\">\r\n <div class=\"card-body\">\r\n <abp-extensible-table\r\n [data]=\"data.items\"\r\n [recordsTotal]=\"data.totalCount\"\r\n [list]=\"list\"\r\n ></abp-extensible-table>\r\n </div>\r\n </div>\r\n\r\n <abp-modal [(visible)]=\"isModalVisible\" [busy]=\"modalBusy\">\r\n <ng-template #abpHeader>\r\n <h3>{{ (selected?.id ? 'AbpIdentity::Edit' : 'AbpIdentity::NewRole') | abpLocalization }}</h3>\r\n </ng-template>\r\n\r\n <ng-template #abpBody>\r\n <form [formGroup]=\"form\" (ngSubmit)=\"save()\" validateOnSubmit>\r\n <abp-extensible-form [selectedRecord]=\"selected\"></abp-extensible-form>\r\n </form>\r\n </ng-template>\r\n\r\n <ng-template #abpFooter>\r\n <button type=\"button\" class=\"btn btn-outline-primary\" abpClose>\r\n {{ 'AbpIdentity::Cancel' | abpLocalization }}\r\n </button>\r\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"form?.invalid\" (click)=\"save()\">{{\r\n 'AbpIdentity::Save' | abpLocalization\r\n }}</abp-button>\r\n </ng-template>\r\n </abp-modal>\r\n\r\n <abp-permission-management\r\n #abpPermissionManagement=\"abpPermissionManagement\"\r\n *abpReplaceableTemplate=\"\r\n {\r\n inputs: {\r\n providerName: { value: 'R' },\r\n providerKey: { value: providerKey },\r\n visible: { value: visiblePermissions, twoWay: true },\r\n hideBadges: { value: true }\r\n },\r\n outputs: { visibleChange: onVisiblePermissionChange },\r\n componentKey: permissionManagementKey\r\n };\r\n let init = initTemplate\r\n \"\r\n (abpInit)=\"init(abpPermissionManagement)\"\r\n >\r\n </abp-permission-management>\r\n</abp-page>\r\n", dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i2.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "directive", type: i4.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "component", type: i5.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i5.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i5.ModalCloseDirective, selector: "[abpClose]" }, { kind: "component", type: i5$1.ExtensibleFormComponent, selector: "abp-extensible-form", inputs: ["selectedRecord"], exportAs: ["abpExtensibleForm"] }, { kind: "component", type: i5$1.ExtensibleTableComponent, selector: "abp-extensible-table", inputs: ["actionsText", "data", "list", "recordsTotal", "actionsColumnWidth", "actionsTemplate"], outputs: ["tableActivate"], exportAs: ["abpExtensibleTable"] }, { kind: "component", type: i6.PermissionManagementComponent, selector: "abp-permission-management", inputs: ["providerName", "providerKey", "hideBadges", "entityDisplayName", "visible"], outputs: ["visibleChange"], exportAs: ["abpPermissionManagement"] }, { kind: "component", type: i7.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
110
110
  }
111
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: RolesComponent, decorators: [{
111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: RolesComponent, decorators: [{
112
112
  type: Component,
113
- args: [{ selector: 'abp-roles', providers: [
113
+ args: [{ standalone: false, selector: 'abp-roles', providers: [
114
114
  ListService,
115
115
  {
116
116
  provide: EXTENSIONS_IDENTIFIER,
@@ -229,8 +229,8 @@ class UsersComponent {
229
229
  this.visiblePermissions = true;
230
230
  }, 0);
231
231
  }
232
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: UsersComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
233
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.5", type: UsersComponent, selector: "abp-users", providers: [
232
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: UsersComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
233
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.7", type: UsersComponent, isStandalone: false, selector: "abp-users", providers: [
234
234
  ListService,
235
235
  {
236
236
  provide: EXTENSIONS_IDENTIFIER,
@@ -238,9 +238,9 @@ class UsersComponent {
238
238
  },
239
239
  ], viewQueries: [{ propertyName: "modalContent", first: true, predicate: ["modalContent"], descendants: true }], ngImport: i0, template: "<abp-page [title]=\"'AbpIdentity::Users' | abpLocalization\" [toolbar]=\"data.items\">\r\n <div id=\"identity-roles-wrapper\" class=\"card\">\r\n <div class=\"card-body\">\r\n <div id=\"data-tables-table-filter\" class=\"data-tables-filter mb-3\">\r\n <div class=\"input-group\">\r\n <input\r\n type=\"search\"\r\n class=\"form-control\"\r\n [placeholder]=\"'AbpUi::PagerSearch' | abpLocalization\"\r\n [(ngModel)]=\"list.filter\"\r\n />\r\n </div>\r\n </div>\r\n\r\n <abp-extensible-table\r\n [data]=\"data.items\"\r\n [recordsTotal]=\"data.totalCount\"\r\n [list]=\"list\"\r\n ></abp-extensible-table>\r\n </div>\r\n </div>\r\n\r\n <abp-modal [(visible)]=\"isModalVisible\" [busy]=\"modalBusy\">\r\n <ng-template #abpHeader>\r\n <h3>{{ (selected?.id ? 'AbpIdentity::Edit' : 'AbpIdentity::NewUser') | abpLocalization }}</h3>\r\n </ng-template>\r\n\r\n <ng-template #abpBody>\r\n @if (form) {\r\n <form [formGroup]=\"form\" (ngSubmit)=\"save()\">\r\n <ul ngbNav #nav=\"ngbNav\" class=\"nav-tabs\">\r\n <li ngbNavItem>\r\n <a ngbNavLink>{{ 'AbpIdentity::UserInformations' | abpLocalization }}</a>\r\n <ng-template ngbNavContent>\r\n <abp-extensible-form [selectedRecord]=\"selected\"></abp-extensible-form>\r\n </ng-template>\r\n </li>\r\n\r\n <li ngbNavItem>\r\n <a ngbNavLink>{{ 'AbpIdentity::Roles' | abpLocalization }}</a>\r\n <ng-template ngbNavContent>\r\n @for (roleGroup of roleGroups; track $index; let i = $index) {\r\n <div class=\"form-check mb-2\">\r\n <abp-checkbox\r\n *abpReplaceableTemplate=\"{\r\n inputs: {\r\n checkboxId: 'roles-' + i,\r\n label: roles[i].name,\r\n formControl: roleGroup.controls[roles[i].name]\r\n },\r\n componentKey: inputKey\r\n }\"\r\n [checkboxId]=\"'roles-' + i\"\r\n [formControl]=\"roleGroup.controls[roles[i].name]\"\r\n [label]=\"roles[i].name\"\r\n >\r\n </abp-checkbox>\r\n </div>\r\n }\r\n </ng-template>\r\n </li>\r\n </ul>\r\n <div class=\"mt-2 fade-in-top\" [ngbNavOutlet]=\"nav\"></div>\r\n </form>\r\n } @else {\r\n <div class=\"text-center\"><i class=\"fa fa-pulse fa-spinner\" aria-hidden=\"true\"></i></div>\r\n }\r\n </ng-template>\r\n\r\n <ng-template #abpFooter>\r\n <button type=\"button\" class=\"btn btn-outline-primary\" abpClose>\r\n {{ 'AbpIdentity::Cancel' | abpLocalization }}\r\n </button>\r\n <abp-button iconClass=\"fa fa-check\" [disabled]=\"form?.invalid\" (click)=\"save()\">{{\r\n 'AbpIdentity::Save' | abpLocalization\r\n }}</abp-button>\r\n </ng-template>\r\n </abp-modal>\r\n\r\n <abp-permission-management\r\n #abpPermissionManagement=\"abpPermissionManagement\"\r\n *abpReplaceableTemplate=\"\r\n {\r\n inputs: {\r\n providerName: { value: 'U' },\r\n providerKey: { value: providerKey },\r\n visible: { value: visiblePermissions, twoWay: true }\r\n },\r\n outputs: { visibleChange: onVisiblePermissionChange },\r\n componentKey: permissionManagementKey\r\n };\r\n let init = initTemplate\r\n \"\r\n [entityDisplayName]=\"entityDisplayName\"\r\n (abpInit)=\"init(abpPermissionManagement)\"\r\n >\r\n </abp-permission-management>\r\n</abp-page>\r\n", dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: ["debounce", "notValidateOnSubmit", "markAsDirtyWhenSubmit"], outputs: ["ngSubmit"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i2.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "directive", type: i3.NgbNavContent, selector: "ng-template[ngbNavContent]" }, { kind: "directive", type: i3.NgbNav, selector: "[ngbNav]", inputs: ["activeId", "animation", "destroyOnHide", "orientation", "roles", "keyboard"], outputs: ["activeIdChange", "shown", "hidden", "navChange"], exportAs: ["ngbNav"] }, { kind: "directive", type: i3.NgbNavItem, selector: "[ngbNavItem]", inputs: ["destroyOnHide", "disabled", "domId", "ngbNavItem"], outputs: ["shown", "hidden"], exportAs: ["ngbNavItem"] }, { kind: "directive", type: i3.NgbNavItemRole, selector: "[ngbNavItem]:not(ng-container)" }, { kind: "directive", type: i3.NgbNavLink, selector: "a[ngbNavLink]" }, { kind: "directive", type: i3.NgbNavLinkBase, selector: "[ngbNavLink]" }, { kind: "component", type: i3.NgbNavOutlet, selector: "[ngbNavOutlet]", inputs: ["paneRole", "ngbNavOutlet"] }, { kind: "directive", type: i4.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i4.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "component", type: i5.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i5.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i5.ModalCloseDirective, selector: "[abpClose]" }, { kind: "component", type: i5.FormCheckboxComponent, selector: "abp-checkbox", inputs: ["label", "labelClass", "checkboxId", "checkboxStyle", "checkboxClass", "checkboxReadonly"], outputs: ["checkboxBlur", "checkboxFocus"] }, { kind: "component", type: i5$1.ExtensibleFormComponent, selector: "abp-extensible-form", inputs: ["selectedRecord"], exportAs: ["abpExtensibleForm"] }, { kind: "component", type: i5$1.ExtensibleTableComponent, selector: "abp-extensible-table", inputs: ["actionsText", "data", "list", "recordsTotal", "actionsColumnWidth", "actionsTemplate"], outputs: ["tableActivate"], exportAs: ["abpExtensibleTable"] }, { kind: "component", type: i6.PermissionManagementComponent, selector: "abp-permission-management", inputs: ["providerName", "providerKey", "hideBadges", "entityDisplayName", "visible"], outputs: ["visibleChange"], exportAs: ["abpPermissionManagement"] }, { kind: "component", type: i7.PageComponent, selector: "abp-page", inputs: ["title", "toolbar", "breadcrumb"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
240
240
  }
241
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: UsersComponent, decorators: [{
241
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: UsersComponent, decorators: [{
242
242
  type: Component,
243
- args: [{ selector: 'abp-users', providers: [
243
+ args: [{ standalone: false, selector: 'abp-users', providers: [
244
244
  ListService,
245
245
  {
246
246
  provide: EXTENSIONS_IDENTIFIER,
@@ -547,10 +547,10 @@ class IdentityExtensionsGuard {
547
547
  mergeWithDefaultProps(this.extensions.editFormProps, DEFAULT_IDENTITY_EDIT_FORM_PROPS, objectExtensionContributors.editForm, editFormContributors);
548
548
  }), map(() => true));
549
549
  }
550
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityExtensionsGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
551
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityExtensionsGuard }); }
550
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityExtensionsGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
551
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityExtensionsGuard }); }
552
552
  }
553
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityExtensionsGuard, decorators: [{
553
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityExtensionsGuard, decorators: [{
554
554
  type: Injectable
555
555
  }] });
556
556
 
@@ -611,11 +611,11 @@ const routes = [
611
611
  },
612
612
  ];
613
613
  class IdentityRoutingModule {
614
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
615
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoutingModule, imports: [i1$1.RouterModule], exports: [RouterModule] }); }
616
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] }); }
614
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
615
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoutingModule, imports: [i1$1.RouterModule], exports: [RouterModule] }); }
616
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] }); }
617
617
  }
618
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityRoutingModule, decorators: [{
618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityRoutingModule, decorators: [{
619
619
  type: NgModule,
620
620
  args: [{
621
621
  imports: [RouterModule.forChild(routes)],
@@ -655,8 +655,8 @@ class IdentityModule {
655
655
  static forLazy(options = {}) {
656
656
  return new LazyModuleFactory(IdentityModule.forChild(options));
657
657
  }
658
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
659
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.5", ngImport: i0, type: IdentityModule, declarations: [RolesComponent, UsersComponent], imports: [CoreModule,
658
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
659
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.7", ngImport: i0, type: IdentityModule, declarations: [RolesComponent, UsersComponent], imports: [CoreModule,
660
660
  IdentityRoutingModule,
661
661
  NgbNavModule,
662
662
  ThemeSharedModule,
@@ -665,7 +665,7 @@ class IdentityModule {
665
665
  PermissionManagementModule,
666
666
  NgxValidateCoreModule,
667
667
  PageModule], exports: [RolesComponent, UsersComponent] }); }
668
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityModule, imports: [CoreModule,
668
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityModule, imports: [CoreModule,
669
669
  IdentityRoutingModule,
670
670
  NgbNavModule,
671
671
  ThemeSharedModule,
@@ -675,7 +675,7 @@ class IdentityModule {
675
675
  NgxValidateCoreModule,
676
676
  PageModule] }); }
677
677
  }
678
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: IdentityModule, decorators: [{
678
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: IdentityModule, decorators: [{
679
679
  type: NgModule,
680
680
  args: [{
681
681
  declarations: [RolesComponent, UsersComponent],