@alfresco/adf-core 8.1.0-16167969203 → 8.1.0-16168969238

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.
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { InjectionToken, inject, DestroyRef, ViewChild, Inject, Optional, ViewEncapsulation, Component, NgModule } from '@angular/core';
3
3
  import * as i1 from '@angular/router';
4
- import { NavigationEnd, RouterModule, provideRoutes } from '@angular/router';
4
+ import { NavigationEnd, RouterModule, provideRouter } from '@angular/router';
5
5
  import * as i2 from '@alfresco/adf-core';
6
6
  import { SidenavLayoutModule } from '@alfresco/adf-core';
7
7
  import { DynamicExtensionComponent } from '@alfresco/adf-extensions';
@@ -162,6 +162,30 @@ const SHELL_LAYOUT_ROUTE = {
162
162
  canActivate: [SHELL_AUTH_TOKEN],
163
163
  children: []
164
164
  };
165
+ /**
166
+ * Provides shell routes for the application.
167
+ *
168
+ * @param routes The routes configuration for the shell.
169
+ * @returns An array of providers for the shell routes.
170
+ */
171
+ function provideShellRoutes(routes) {
172
+ const shellLayoutRoute = SHELL_LAYOUT_ROUTE;
173
+ if (Array.isArray(routes)) {
174
+ shellLayoutRoute.children.push(...routes);
175
+ return [provideRouter([shellLayoutRoute])];
176
+ }
177
+ const shellChildrenRoutes = routes.shellChildren || [];
178
+ if (shellChildrenRoutes.length > 0) {
179
+ shellLayoutRoute.children.push(...shellChildrenRoutes);
180
+ }
181
+ const shellParentRoute = routes.shellParentRoute;
182
+ const rootRoute = shellParentRoute || shellLayoutRoute;
183
+ if (routes.shellParentRoute) {
184
+ rootRoute.children = rootRoute.children || [];
185
+ rootRoute.children.push(shellLayoutRoute);
186
+ }
187
+ return [provideRouter([rootRoute])];
188
+ }
165
189
 
166
190
  /*!
167
191
  * @license
@@ -179,6 +203,7 @@ const SHELL_LAYOUT_ROUTE = {
179
203
  * See the License for the specific language governing permissions and
180
204
  * limitations under the License.
181
205
  */
206
+ /** @deprecated use `provideShellRoutes` instead */
182
207
  class ShellModule {
183
208
  static withRoutes(routes) {
184
209
  if (Array.isArray(routes)) {
@@ -187,15 +212,11 @@ class ShellModule {
187
212
  return getModuleForRouteConfig(routes);
188
213
  }
189
214
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ShellModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
190
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: ShellModule, imports: [ShellLayoutComponent], exports: [ShellLayoutComponent] }); }
191
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ShellModule, imports: [ShellLayoutComponent] }); }
215
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: ShellModule }); }
216
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ShellModule }); }
192
217
  }
193
218
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ShellModule, decorators: [{
194
- type: NgModule,
195
- args: [{
196
- imports: [ShellLayoutComponent],
197
- exports: [ShellLayoutComponent]
198
- }]
219
+ type: NgModule
199
220
  }] });
200
221
  /**
201
222
  * Resolve module for routes
@@ -210,7 +231,7 @@ function getModuleForRoutes(routes) {
210
231
  });
211
232
  return {
212
233
  ngModule: ShellModule,
213
- providers: provideRoutes([shellLayoutRoute])
234
+ providers: [provideRouter([shellLayoutRoute])]
214
235
  };
215
236
  }
216
237
  /**
@@ -233,7 +254,7 @@ function getModuleForRouteConfig(config) {
233
254
  }
234
255
  return {
235
256
  ngModule: ShellModule,
236
- providers: provideRoutes([rootRoute])
257
+ providers: [provideRouter([rootRoute])]
237
258
  };
238
259
  }
239
260
 
@@ -258,5 +279,5 @@ function getModuleForRouteConfig(config) {
258
279
  * Generated bundle index. Do not edit.
259
280
  */
260
281
 
261
- export { SHELL_APP_SERVICE, SHELL_AUTH_TOKEN, SHELL_NAVBAR_MAX_WIDTH, SHELL_NAVBAR_MIN_WIDTH, ShellLayoutComponent, ShellModule };
282
+ export { SHELL_APP_SERVICE, SHELL_AUTH_TOKEN, SHELL_LAYOUT_ROUTE, SHELL_NAVBAR_MAX_WIDTH, SHELL_NAVBAR_MIN_WIDTH, ShellLayoutComponent, ShellModule, provideShellRoutes };
262
283
  //# sourceMappingURL=alfresco-adf-core-shell.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"alfresco-adf-core-shell.mjs","sources":["../../../../lib/core/shell/src/lib/services/shell-app.service.ts","../../../../lib/core/shell/src/lib/components/shell/shell.component.ts","../../../../lib/core/shell/src/lib/components/shell/shell.component.html","../../../../lib/core/shell/src/lib/shell.routes.ts","../../../../lib/core/shell/src/lib/shell.module.ts","../../../../lib/core/shell/src/index.ts","../../../../lib/core/shell/src/alfresco-adf-core-shell.ts"],"sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { InjectionToken } from '@angular/core';\nimport { CanActivateFn, CanActivateChildFn } from '@angular/router';\nimport { Observable } from 'rxjs';\n\nexport interface ShellPreferencesService {\n set(preferenceKey: string, value: any): void;\n get(preferenceKey: string, defaultValue: string): string;\n}\n\nexport interface ShellAppService {\n pageHeading$: Observable<string>;\n hideSidenavConditions: string[];\n minimizeSidenavConditions: string[];\n preferencesService: ShellPreferencesService;\n}\n\nexport const SHELL_APP_SERVICE = new InjectionToken<ShellAppService>('SHELL_APP_SERVICE');\n\nexport const SHELL_AUTH_TOKEN = new InjectionToken<CanActivateFn | CanActivateChildFn>('SHELL_AUTH_TOKEN');\nexport const SHELL_NAVBAR_MIN_WIDTH = new InjectionToken<number>('SHELL_NAVBAR_MIN_WIDTH');\nexport const SHELL_NAVBAR_MAX_WIDTH = new InjectionToken<number>('SHELL_NAVBAR_MAX_WIDTH');\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AppConfigService, SidenavLayoutComponent, SidenavLayoutModule } from '@alfresco/adf-core';\nimport { DynamicExtensionComponent } from '@alfresco/adf-extensions';\nimport { Component, DestroyRef, inject, Inject, OnInit, Optional, ViewChild, ViewEncapsulation } from '@angular/core';\nimport { NavigationEnd, Router, RouterModule } from '@angular/router';\nimport { Observable } from 'rxjs';\nimport { filter, map, withLatestFrom } from 'rxjs/operators';\nimport { BreakpointObserver } from '@angular/cdk/layout';\nimport { Directionality } from '@angular/cdk/bidi';\nimport { SHELL_APP_SERVICE, SHELL_NAVBAR_MAX_WIDTH, SHELL_NAVBAR_MIN_WIDTH, ShellAppService } from '../../services/shell-app.service';\nimport { CommonModule } from '@angular/common';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\n\n@Component({\n selector: 'app-shell',\n imports: [CommonModule, SidenavLayoutModule, RouterModule, DynamicExtensionComponent],\n templateUrl: './shell.component.html',\n styleUrls: ['./shell.component.scss'],\n encapsulation: ViewEncapsulation.None,\n host: { class: 'app-shell' }\n})\nexport class ShellLayoutComponent implements OnInit {\n @ViewChild('layout', { static: true })\n layout: SidenavLayoutComponent;\n\n isSmallScreen$: Observable<boolean>;\n\n expandedSidenav: boolean;\n minimizeSidenav = false;\n hideSidenav = false;\n sidenavMin: number;\n sidenavMax: number;\n direction: Directionality;\n\n private readonly destroyRef = inject(DestroyRef);\n\n constructor(\n private router: Router,\n private appConfigService: AppConfigService,\n private breakpointObserver: BreakpointObserver,\n @Inject(SHELL_APP_SERVICE) private shellService: ShellAppService,\n @Optional() @Inject(SHELL_NAVBAR_MIN_WIDTH) navBarMinWidth: number,\n @Optional() @Inject(SHELL_NAVBAR_MAX_WIDTH) navbarMaxWidth: number\n ) {\n this.sidenavMin = navBarMinWidth ?? 70;\n this.sidenavMax = navbarMaxWidth ?? 320;\n }\n\n ngOnInit() {\n this.isSmallScreen$ = this.breakpointObserver.observe(['(max-width: 600px)']).pipe(map((result) => result.matches));\n\n this.hideSidenav = this.shellService.hideSidenavConditions.some((el) => this.router.routerState.snapshot.url.includes(el));\n this.minimizeSidenav = this.shellService.minimizeSidenavConditions.some((el) => this.router.routerState.snapshot.url.includes(el));\n\n if (!this.minimizeSidenav) {\n this.expandedSidenav = this.getSidenavState();\n } else {\n this.expandedSidenav = false;\n }\n\n this.router.events\n .pipe(\n withLatestFrom(this.isSmallScreen$),\n filter(([event, isSmallScreen]) => isSmallScreen && event instanceof NavigationEnd),\n takeUntilDestroyed(this.destroyRef)\n )\n .subscribe(() => {\n this.layout.container.sidenav.close();\n });\n\n this.router.events\n .pipe(\n filter((event) => event instanceof NavigationEnd),\n takeUntilDestroyed(this.destroyRef)\n )\n .subscribe((event: NavigationEnd) => {\n this.minimizeSidenav = this.shellService.minimizeSidenavConditions.some((el) => event.urlAfterRedirects.includes(el));\n this.hideSidenav = this.shellService.hideSidenavConditions.some((el) => event.urlAfterRedirects.includes(el));\n\n this.updateState();\n });\n }\n hideMenu(event: Event) {\n if (this.layout.container.isMobileScreenSize) {\n event.preventDefault();\n this.layout.container.toggleMenu();\n }\n }\n\n private updateState() {\n if (this.minimizeSidenav && !this.layout.isMenuMinimized) {\n this.layout.isMenuMinimized = true;\n if (!this.layout.container.isMobileScreenSize) {\n this.layout.container.toggleMenu();\n }\n }\n\n if (!this.minimizeSidenav) {\n if (this.getSidenavState() && this.layout.isMenuMinimized) {\n this.layout.isMenuMinimized = false;\n this.layout.container.toggleMenu();\n }\n }\n }\n\n onExpanded(state: boolean) {\n if (!this.minimizeSidenav && this.appConfigService.get('sideNav.preserveState')) {\n this.shellService.preferencesService.set('expandedSidenav', state);\n }\n }\n\n private getSidenavState(): boolean {\n const expand = this.appConfigService.get<boolean>('sideNav.expandedSidenav', true);\n const preserveState = this.appConfigService.get<boolean>('sideNav.preserveState', true);\n\n if (preserveState) {\n return this.shellService.preferencesService.get('expandedSidenav', expand.toString()) === 'true';\n }\n\n return expand;\n }\n}\n","<adf-sidenav-layout\n #layout\n [sidenavMin]=\"sidenavMin\"\n [sidenavMax]=\"sidenavMax\"\n [stepOver]=\"600\"\n [hideSidenav]=\"hideSidenav\"\n [expandedSidenav]=\"expandedSidenav\"\n (expanded)=\"onExpanded($event)\"\n>\n <adf-sidenav-layout-header>\n <ng-template let-isMenuMinimized=\"isMenuMinimized\">\n <div\n role=\"heading\"\n aria-level=\"1\"\n *ngIf=\"!hideSidenav\"\n >\n <adf-dynamic-component id=\"app.layout.header\" [data]=\"{ layout }\" />\n </div>\n </ng-template>\n </adf-sidenav-layout-header>\n\n <adf-sidenav-layout-navigation>\n <ng-template let-isMenuMinimized=\"isMenuMinimized\">\n <div\n (swipeleft)=\"hideMenu($event)\"\n [attr.data-automation-id]=\"isMenuMinimized() ? 'collapsed' : 'expanded'\"\n >\n <adf-dynamic-component\n id=\"app.layout.sidenav\"\n [data]=\"{ layout, mode: layout.isMenuMinimized ? 'collapsed' : 'expanded'}\"\n />\n </div>\n </ng-template>\n </adf-sidenav-layout-navigation>\n\n <adf-sidenav-layout-content>\n <ng-template>\n <router-outlet />\n </ng-template>\n </adf-sidenav-layout-content>\n</adf-sidenav-layout>\n\n<adf-dynamic-component id=\"app.shell.sibling\" />\n\n<router-outlet name=\"viewer\" />\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Route } from '@angular/router';\nimport { ShellLayoutComponent } from './components/shell/shell.component';\nimport { SHELL_AUTH_TOKEN } from './services/shell-app.service';\n\nexport const SHELL_LAYOUT_ROUTE: Route = {\n path: '',\n component: ShellLayoutComponent,\n canActivate: [SHELL_AUTH_TOKEN],\n children: []\n};\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { Routes, provideRoutes, Route } from '@angular/router';\nimport { SHELL_LAYOUT_ROUTE } from './shell.routes';\nimport { ShellLayoutComponent } from './components/shell/shell.component';\n\nexport interface AppShellRoutesConfig {\n shellParentRoute?: Route;\n shellChildren: Routes;\n}\n\n@NgModule({\n imports: [ShellLayoutComponent],\n exports: [ShellLayoutComponent]\n})\nexport class ShellModule {\n static withRoutes(routes: Routes | AppShellRoutesConfig): ModuleWithProviders<ShellModule> {\n if (Array.isArray(routes)) {\n return getModuleForRoutes(routes);\n }\n\n return getModuleForRouteConfig(routes);\n }\n}\n\n/**\n * Resolve module for routes\n *\n * @param routes route configuration\n * @returns module with providers\n */\nfunction getModuleForRoutes(routes: Routes): ModuleWithProviders<ShellModule> {\n const shellLayoutRoute = SHELL_LAYOUT_ROUTE;\n\n routes.forEach((childRoute) => {\n shellLayoutRoute.children.push(childRoute);\n });\n\n return {\n ngModule: ShellModule,\n providers: provideRoutes([shellLayoutRoute])\n };\n}\n\n/**\n * Resolve a module for the route configuration\n *\n * @param config route configuration\n * @returns module with providers\n */\nfunction getModuleForRouteConfig(config: AppShellRoutesConfig): ModuleWithProviders<ShellModule> {\n const shellLayoutRoute = SHELL_LAYOUT_ROUTE;\n\n const shellParentRoute = config.shellParentRoute;\n const shellChildrenRoutes = config.shellChildren;\n\n shellLayoutRoute.children.push(...shellChildrenRoutes);\n\n const rootRoute = shellParentRoute ? shellParentRoute : shellLayoutRoute;\n\n if (config.shellParentRoute) {\n if (rootRoute.children === undefined) {\n rootRoute.children = [];\n }\n\n rootRoute.children.push(shellLayoutRoute);\n }\n\n return {\n ngModule: ShellModule,\n providers: provideRoutes([rootRoute])\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './lib/shell.module';\nexport * from './lib/services/shell-app.service';\nexport * from './lib/components/shell/shell.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"alfresco-adf-core-shell.mjs","sources":["../../../../lib/core/shell/src/lib/services/shell-app.service.ts","../../../../lib/core/shell/src/lib/components/shell/shell.component.ts","../../../../lib/core/shell/src/lib/components/shell/shell.component.html","../../../../lib/core/shell/src/lib/shell.routes.ts","../../../../lib/core/shell/src/lib/shell.module.ts","../../../../lib/core/shell/src/index.ts","../../../../lib/core/shell/src/alfresco-adf-core-shell.ts"],"sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { InjectionToken } from '@angular/core';\nimport { CanActivateFn, CanActivateChildFn } from '@angular/router';\nimport { Observable } from 'rxjs';\n\nexport interface ShellPreferencesService {\n set(preferenceKey: string, value: any): void;\n get(preferenceKey: string, defaultValue: string): string;\n}\n\nexport interface ShellAppService {\n pageHeading$: Observable<string>;\n hideSidenavConditions: string[];\n minimizeSidenavConditions: string[];\n preferencesService: ShellPreferencesService;\n}\n\nexport const SHELL_APP_SERVICE = new InjectionToken<ShellAppService>('SHELL_APP_SERVICE');\n\nexport const SHELL_AUTH_TOKEN = new InjectionToken<CanActivateFn | CanActivateChildFn>('SHELL_AUTH_TOKEN');\nexport const SHELL_NAVBAR_MIN_WIDTH = new InjectionToken<number>('SHELL_NAVBAR_MIN_WIDTH');\nexport const SHELL_NAVBAR_MAX_WIDTH = new InjectionToken<number>('SHELL_NAVBAR_MAX_WIDTH');\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AppConfigService, SidenavLayoutComponent, SidenavLayoutModule } from '@alfresco/adf-core';\nimport { DynamicExtensionComponent } from '@alfresco/adf-extensions';\nimport { Component, DestroyRef, inject, Inject, OnInit, Optional, ViewChild, ViewEncapsulation } from '@angular/core';\nimport { NavigationEnd, Router, RouterModule } from '@angular/router';\nimport { Observable } from 'rxjs';\nimport { filter, map, withLatestFrom } from 'rxjs/operators';\nimport { BreakpointObserver } from '@angular/cdk/layout';\nimport { Directionality } from '@angular/cdk/bidi';\nimport { SHELL_APP_SERVICE, SHELL_NAVBAR_MAX_WIDTH, SHELL_NAVBAR_MIN_WIDTH, ShellAppService } from '../../services/shell-app.service';\nimport { CommonModule } from '@angular/common';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\n\n@Component({\n selector: 'app-shell',\n imports: [CommonModule, SidenavLayoutModule, RouterModule, DynamicExtensionComponent],\n templateUrl: './shell.component.html',\n styleUrls: ['./shell.component.scss'],\n encapsulation: ViewEncapsulation.None,\n host: { class: 'app-shell' }\n})\nexport class ShellLayoutComponent implements OnInit {\n @ViewChild('layout', { static: true })\n layout: SidenavLayoutComponent;\n\n isSmallScreen$: Observable<boolean>;\n\n expandedSidenav: boolean;\n minimizeSidenav = false;\n hideSidenav = false;\n sidenavMin: number;\n sidenavMax: number;\n direction: Directionality;\n\n private readonly destroyRef = inject(DestroyRef);\n\n constructor(\n private router: Router,\n private appConfigService: AppConfigService,\n private breakpointObserver: BreakpointObserver,\n @Inject(SHELL_APP_SERVICE) private shellService: ShellAppService,\n @Optional() @Inject(SHELL_NAVBAR_MIN_WIDTH) navBarMinWidth: number,\n @Optional() @Inject(SHELL_NAVBAR_MAX_WIDTH) navbarMaxWidth: number\n ) {\n this.sidenavMin = navBarMinWidth ?? 70;\n this.sidenavMax = navbarMaxWidth ?? 320;\n }\n\n ngOnInit() {\n this.isSmallScreen$ = this.breakpointObserver.observe(['(max-width: 600px)']).pipe(map((result) => result.matches));\n\n this.hideSidenav = this.shellService.hideSidenavConditions.some((el) => this.router.routerState.snapshot.url.includes(el));\n this.minimizeSidenav = this.shellService.minimizeSidenavConditions.some((el) => this.router.routerState.snapshot.url.includes(el));\n\n if (!this.minimizeSidenav) {\n this.expandedSidenav = this.getSidenavState();\n } else {\n this.expandedSidenav = false;\n }\n\n this.router.events\n .pipe(\n withLatestFrom(this.isSmallScreen$),\n filter(([event, isSmallScreen]) => isSmallScreen && event instanceof NavigationEnd),\n takeUntilDestroyed(this.destroyRef)\n )\n .subscribe(() => {\n this.layout.container.sidenav.close();\n });\n\n this.router.events\n .pipe(\n filter((event) => event instanceof NavigationEnd),\n takeUntilDestroyed(this.destroyRef)\n )\n .subscribe((event: NavigationEnd) => {\n this.minimizeSidenav = this.shellService.minimizeSidenavConditions.some((el) => event.urlAfterRedirects.includes(el));\n this.hideSidenav = this.shellService.hideSidenavConditions.some((el) => event.urlAfterRedirects.includes(el));\n\n this.updateState();\n });\n }\n hideMenu(event: Event) {\n if (this.layout.container.isMobileScreenSize) {\n event.preventDefault();\n this.layout.container.toggleMenu();\n }\n }\n\n private updateState() {\n if (this.minimizeSidenav && !this.layout.isMenuMinimized) {\n this.layout.isMenuMinimized = true;\n if (!this.layout.container.isMobileScreenSize) {\n this.layout.container.toggleMenu();\n }\n }\n\n if (!this.minimizeSidenav) {\n if (this.getSidenavState() && this.layout.isMenuMinimized) {\n this.layout.isMenuMinimized = false;\n this.layout.container.toggleMenu();\n }\n }\n }\n\n onExpanded(state: boolean) {\n if (!this.minimizeSidenav && this.appConfigService.get('sideNav.preserveState')) {\n this.shellService.preferencesService.set('expandedSidenav', state);\n }\n }\n\n private getSidenavState(): boolean {\n const expand = this.appConfigService.get<boolean>('sideNav.expandedSidenav', true);\n const preserveState = this.appConfigService.get<boolean>('sideNav.preserveState', true);\n\n if (preserveState) {\n return this.shellService.preferencesService.get('expandedSidenav', expand.toString()) === 'true';\n }\n\n return expand;\n }\n}\n","<adf-sidenav-layout\n #layout\n [sidenavMin]=\"sidenavMin\"\n [sidenavMax]=\"sidenavMax\"\n [stepOver]=\"600\"\n [hideSidenav]=\"hideSidenav\"\n [expandedSidenav]=\"expandedSidenav\"\n (expanded)=\"onExpanded($event)\"\n>\n <adf-sidenav-layout-header>\n <ng-template let-isMenuMinimized=\"isMenuMinimized\">\n <div\n role=\"heading\"\n aria-level=\"1\"\n *ngIf=\"!hideSidenav\"\n >\n <adf-dynamic-component id=\"app.layout.header\" [data]=\"{ layout }\" />\n </div>\n </ng-template>\n </adf-sidenav-layout-header>\n\n <adf-sidenav-layout-navigation>\n <ng-template let-isMenuMinimized=\"isMenuMinimized\">\n <div\n (swipeleft)=\"hideMenu($event)\"\n [attr.data-automation-id]=\"isMenuMinimized() ? 'collapsed' : 'expanded'\"\n >\n <adf-dynamic-component\n id=\"app.layout.sidenav\"\n [data]=\"{ layout, mode: layout.isMenuMinimized ? 'collapsed' : 'expanded'}\"\n />\n </div>\n </ng-template>\n </adf-sidenav-layout-navigation>\n\n <adf-sidenav-layout-content>\n <ng-template>\n <router-outlet />\n </ng-template>\n </adf-sidenav-layout-content>\n</adf-sidenav-layout>\n\n<adf-dynamic-component id=\"app.shell.sibling\" />\n\n<router-outlet name=\"viewer\" />\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { provideRouter, Route, Routes } from '@angular/router';\nimport { ShellLayoutComponent } from './components/shell/shell.component';\nimport { SHELL_AUTH_TOKEN } from './services/shell-app.service';\nimport { EnvironmentProviders } from '@angular/core';\n\nexport const SHELL_LAYOUT_ROUTE: Route = {\n path: '',\n component: ShellLayoutComponent,\n canActivate: [SHELL_AUTH_TOKEN],\n children: []\n};\n\nexport interface AppShellRoutesConfig {\n shellParentRoute?: Route;\n shellChildren: Routes;\n}\n\n/**\n * Provides shell routes for the application.\n *\n * @param routes The routes configuration for the shell.\n * @returns An array of providers for the shell routes.\n */\nexport function provideShellRoutes(routes: Routes | AppShellRoutesConfig): EnvironmentProviders[] {\n const shellLayoutRoute = SHELL_LAYOUT_ROUTE;\n\n if (Array.isArray(routes)) {\n shellLayoutRoute.children.push(...routes);\n return [provideRouter([shellLayoutRoute])];\n }\n\n const shellChildrenRoutes = routes.shellChildren || [];\n if (shellChildrenRoutes.length > 0) {\n shellLayoutRoute.children.push(...shellChildrenRoutes);\n }\n\n const shellParentRoute = routes.shellParentRoute;\n const rootRoute = shellParentRoute || shellLayoutRoute;\n\n if (routes.shellParentRoute) {\n rootRoute.children = rootRoute.children || [];\n rootRoute.children.push(shellLayoutRoute);\n }\n\n return [provideRouter([rootRoute])];\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { Routes, provideRouter } from '@angular/router';\nimport { AppShellRoutesConfig, SHELL_LAYOUT_ROUTE } from './shell.routes';\n\n/** @deprecated use `provideShellRoutes` instead */\n@NgModule()\nexport class ShellModule {\n static withRoutes(routes: Routes | AppShellRoutesConfig): ModuleWithProviders<ShellModule> {\n if (Array.isArray(routes)) {\n return getModuleForRoutes(routes);\n }\n\n return getModuleForRouteConfig(routes);\n }\n}\n\n/**\n * Resolve module for routes\n *\n * @param routes route configuration\n * @returns module with providers\n */\nfunction getModuleForRoutes(routes: Routes): ModuleWithProviders<ShellModule> {\n const shellLayoutRoute = SHELL_LAYOUT_ROUTE;\n\n routes.forEach((childRoute) => {\n shellLayoutRoute.children.push(childRoute);\n });\n\n return {\n ngModule: ShellModule,\n providers: [provideRouter([shellLayoutRoute])]\n };\n}\n\n/**\n * Resolve a module for the route configuration\n *\n * @param config route configuration\n * @returns module with providers\n */\nfunction getModuleForRouteConfig(config: AppShellRoutesConfig): ModuleWithProviders<ShellModule> {\n const shellLayoutRoute = SHELL_LAYOUT_ROUTE;\n\n const shellParentRoute = config.shellParentRoute;\n const shellChildrenRoutes = config.shellChildren;\n\n shellLayoutRoute.children.push(...shellChildrenRoutes);\n\n const rootRoute = shellParentRoute ? shellParentRoute : shellLayoutRoute;\n\n if (config.shellParentRoute) {\n if (rootRoute.children === undefined) {\n rootRoute.children = [];\n }\n\n rootRoute.children.push(shellLayoutRoute);\n }\n\n return {\n ngModule: ShellModule,\n providers: [provideRouter([rootRoute])]\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './lib/shell.module';\nexport * from './lib/services/shell-app.service';\nexport * from './lib/components/shell/shell.component';\nexport * from './lib/shell.routes';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -1,5 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./app-config.pipe";
3
+ /** @deprecated This module is deprecated, consider importing AppConfigPipe directly */
3
4
  export declare class AppConfigModule {
4
5
  static ɵfac: i0.ɵɵFactoryDeclaration<AppConfigModule, never>;
5
6
  static ɵmod: i0.ɵɵNgModuleDeclaration<AppConfigModule, never, [typeof i1.AppConfigPipe], [typeof i1.AppConfigPipe]>;
@@ -0,0 +1,23 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { Provider, EnvironmentProviders } from '@angular/core';
18
+ /**
19
+ * Provides the application configuration for the application.
20
+ *
21
+ * @returns An array of providers to initialize the application configuration.
22
+ */
23
+ export declare function provideAppConfig(): (Provider | EnvironmentProviders)[];
@@ -19,3 +19,4 @@ export * from './debug-app-config.service';
19
19
  export * from './app-config.pipe';
20
20
  export * from './app-config-storage-prefix.factory';
21
21
  export * from './app-config.module';
22
+ export * from './provide-app-config';
@@ -15,133 +15,130 @@
15
15
  * limitations under the License.
16
16
  */
17
17
  import { ModuleWithProviders } from '@angular/core';
18
- import { TranslationService } from './translation/translation.service';
19
18
  import * as i0 from "@angular/core";
20
- import * as i1 from "@ngx-translate/core";
21
- import * as i2 from "./about/about-extension-list/about-extension-list.component";
22
- import * as i3 from "./about/about-license-list/about-license-list.component";
23
- import * as i4 from "./about/about-module-list/module-list.component";
24
- import * as i5 from "./about/about-repository-info/about-repository-info.component";
25
- import * as i6 from "./about/about-package/package-list.component";
26
- import * as i7 from "./about/about-status-list/about-status-list.component";
27
- import * as i8 from "./about/about-server-settings/about-server-settings.component";
28
- import * as i9 from "./about/about-panel.directive";
29
- import * as i10 from "./about/about.component";
30
- import * as i11 from "./viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog";
31
- import * as i12 from "./viewer/components/viewer-render/viewer-render.component";
32
- import * as i13 from "./viewer/components/img-viewer/img-viewer.component";
33
- import * as i14 from "./viewer/components/txt-viewer/txt-viewer.component";
34
- import * as i15 from "./viewer/components/media-player/media-player.component";
35
- import * as i16 from "./viewer/components/pdf-viewer/pdf-viewer.component";
36
- import * as i17 from "./viewer/components/pdf-viewer-thumb/pdf-viewer-thumb.component";
37
- import * as i18 from "./viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component";
38
- import * as i19 from "./viewer/directives/viewer-extension.directive";
39
- import * as i20 from "./viewer/components/unknown-format/unknown-format.component";
40
- import * as i21 from "./viewer/components/viewer-toolbar.component";
41
- import * as i22 from "./viewer/components/viewer-sidebar.component";
42
- import * as i23 from "./viewer/components/viewer-open-with.component";
43
- import * as i24 from "./viewer/components/viewer-more-actions.component";
44
- import * as i25 from "./viewer/components/viewer-toolbar-actions.component";
45
- import * as i26 from "./viewer/components/viewer.component";
46
- import * as i27 from "./viewer/components/viewer-toolbar-custom-actions.component";
47
- import * as i28 from "./viewer/components/download-prompt-dialog/download-prompt-dialog.component";
48
- import * as i29 from "./layout/directives/sidenav-layout-header.directive";
49
- import * as i30 from "./layout/directives/sidenav-layout-content.directive";
50
- import * as i31 from "./layout/directives/sidenav-layout-navigation.directive";
51
- import * as i32 from "./layout/components/sidebar-action/sidebar-action-menu.component";
52
- import * as i33 from "./layout/components/header/header.component";
53
- import * as i34 from "./layout/components/layout-container/layout-container.component";
54
- import * as i35 from "./layout/components/sidenav-layout/sidenav-layout.component";
55
- import * as i36 from "./pipes/localized-date.pipe";
56
- import * as i37 from "./pipes/time-ago.pipe";
57
- import * as i38 from "./pipes/file-size.pipe";
58
- import * as i39 from "./pipes/text-highlight.pipe";
59
- import * as i40 from "./pipes/full-name.pipe";
60
- import * as i41 from "./pipes/format-space.pipe";
61
- import * as i42 from "./pipes/file-type.pipe";
62
- import * as i43 from "./pipes/multi-value.pipe";
63
- import * as i44 from "./pipes/decimal-number.pipe";
64
- import * as i45 from "./pipes/date-time.pipe";
65
- import * as i46 from "./pipes/user-initial.pipe";
66
- import * as i47 from "./pipes/truncate.pipe";
67
- import * as i48 from "./identity-user-info/identity-user-info.component";
68
- import * as i49 from "./directives/highlight.directive";
69
- import * as i50 from "./directives/logout.directive";
70
- import * as i51 from "./directives/upload.directive";
71
- import * as i52 from "./directives/tooltip-card/tooltip-card.directive";
72
- import * as i53 from "./directives/tooltip-card/tooltip-card.component";
73
- import * as i54 from "./directives/infinite-select-scroll.directive";
74
- import * as i55 from "./app-config/app-config.pipe";
75
- import * as i56 from "./pagination/infinite-pagination.component";
76
- import * as i57 from "./pagination/pagination.component";
77
- import * as i58 from "./toolbar/toolbar.component";
78
- import * as i59 from "./toolbar/toolbar-title.component";
79
- import * as i60 from "./toolbar/toolbar-divider.component";
80
- import * as i61 from "./context-menu/context-menu-list.component";
81
- import * as i62 from "./context-menu/context-menu.directive";
82
- import * as i63 from "./card-view/components/card-view/card-view.component";
83
- import * as i64 from "./card-view/components/card-view-boolitem/card-view-boolitem.component";
84
- import * as i65 from "./card-view/components/card-view-dateitem/card-view-dateitem.component";
85
- import * as i66 from "./card-view/components/card-view-mapitem/card-view-mapitem.component";
86
- import * as i67 from "./card-view/components/card-view-textitem/card-view-textitem.component";
87
- import * as i68 from "./card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component";
88
- import * as i69 from "./card-view/components/card-view-selectitem/card-view-selectitem.component";
89
- import * as i70 from "./card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component";
90
- import * as i71 from "./card-view/components/card-view-arrayitem/card-view-arrayitem.component";
91
- import * as i72 from "./card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component";
92
- import * as i73 from "./form/form-base.module";
93
- import * as i74 from "./comments/comments.component";
94
- import * as i75 from "./comments/comment-list/comment-list.component";
95
- import * as i76 from "./clipboard/clipboard.directive";
96
- import * as i77 from "./login/components/login/login.component";
97
- import * as i78 from "./login/directives/login-footer.directive";
98
- import * as i79 from "./login/directives/login-header.directive";
99
- import * as i80 from "./login/components/login-dialog/login-dialog.component";
100
- import * as i81 from "./login/components/login-dialog-panel/login-dialog-panel.component";
101
- import * as i82 from "./language-menu/language-menu.component";
102
- import * as i83 from "./language-menu/language-picker.component";
103
- import * as i84 from "./info-drawer/info-drawer-layout.component";
104
- import * as i85 from "./info-drawer/info-drawer.component";
105
- import * as i86 from "./datatable/components/boolean-cell/boolean-cell.component";
106
- import * as i87 from "./datatable/components/amount-cell/amount-cell.component";
107
- import * as i88 from "./datatable/components/number-cell/number-cell.component";
108
- import * as i89 from "./datatable/components/location-cell/location-cell.component";
109
- import * as i90 from "./datatable/components/date-cell/date-cell.component";
110
- import * as i91 from "./datatable/components/icon-cell/icon-cell.component";
111
- import * as i92 from "./datatable/components/columns-selector/columns-selector.component";
112
- import * as i93 from "./datatable/data-column/data-column.component";
113
- import * as i94 from "./datatable/data-column/data-column-list.component";
114
- import * as i95 from "./datatable/data-column/data-column-header.component";
115
- import * as i96 from "./datatable/directives/resizable/resizable.directive";
116
- import * as i97 from "./datatable/directives/resizable/resize-handle.directive";
117
- import * as i98 from "./datatable/directives/drop-zone.directive";
118
- import * as i99 from "./datatable/components/empty-list/empty-list.component";
119
- import * as i100 from "./datatable/components/filesize-cell/filesize-cell.component";
120
- import * as i101 from "./datatable/components/json-cell/json-cell.component";
121
- import * as i102 from "./datatable/directives/no-content-template.directive";
122
- import * as i103 from "./datatable/directives/no-permission-template.directive";
123
- import * as i104 from "./datatable/directives/loading-template.directive";
124
- import * as i105 from "./datatable/directives/header-filter-template.directive";
125
- import * as i106 from "./datatable/directives/custom-empty-content-template.directive";
126
- import * as i107 from "./datatable/directives/custom-loading-template.directive";
127
- import * as i108 from "./datatable/directives/custom-no-permission-template.directive";
128
- import * as i109 from "./datatable/directives/main-data-table-action-template.directive";
129
- import * as i110 from "./datatable/components/datatable-row/datatable-row.component";
130
- import * as i111 from "./datatable/components/datatable-cell/datatable-cell.component";
131
- import * as i112 from "./datatable/components/datatable/datatable.component";
132
- import * as i113 from "./templates/error-content/error-content.component";
133
- import * as i114 from "./templates/empty-content/empty-content.component";
134
- import * as i115 from "./icon/icon.component";
135
- import * as i116 from "./sorting-picker/sorting-picker.component";
136
- import * as i117 from "./notifications/components/notification-history.component";
137
- import * as i118 from "./notifications/components/add-notification.stories.component";
138
- import * as i119 from "./search-text/search-text-input.component";
139
- import * as i120 from "./search-text/search-trigger.directive";
140
- import * as i121 from "./blank-page/blank-page.component";
141
- import * as i122 from "./dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component";
142
- import * as i123 from "./dynamic-chip-list/dynamic-chip-list.component";
143
- import * as i124 from "@angular/common/http";
144
- import * as i125 from "./material.module";
19
+ import * as i1 from "./about/about-extension-list/about-extension-list.component";
20
+ import * as i2 from "./about/about-license-list/about-license-list.component";
21
+ import * as i3 from "./about/about-module-list/module-list.component";
22
+ import * as i4 from "./about/about-repository-info/about-repository-info.component";
23
+ import * as i5 from "./about/about-package/package-list.component";
24
+ import * as i6 from "./about/about-status-list/about-status-list.component";
25
+ import * as i7 from "./about/about-server-settings/about-server-settings.component";
26
+ import * as i8 from "./about/about-panel.directive";
27
+ import * as i9 from "./about/about.component";
28
+ import * as i10 from "./viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog";
29
+ import * as i11 from "./viewer/components/viewer-render/viewer-render.component";
30
+ import * as i12 from "./viewer/components/img-viewer/img-viewer.component";
31
+ import * as i13 from "./viewer/components/txt-viewer/txt-viewer.component";
32
+ import * as i14 from "./viewer/components/media-player/media-player.component";
33
+ import * as i15 from "./viewer/components/pdf-viewer/pdf-viewer.component";
34
+ import * as i16 from "./viewer/components/pdf-viewer-thumb/pdf-viewer-thumb.component";
35
+ import * as i17 from "./viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component";
36
+ import * as i18 from "./viewer/directives/viewer-extension.directive";
37
+ import * as i19 from "./viewer/components/unknown-format/unknown-format.component";
38
+ import * as i20 from "./viewer/components/viewer-toolbar.component";
39
+ import * as i21 from "./viewer/components/viewer-sidebar.component";
40
+ import * as i22 from "./viewer/components/viewer-open-with.component";
41
+ import * as i23 from "./viewer/components/viewer-more-actions.component";
42
+ import * as i24 from "./viewer/components/viewer-toolbar-actions.component";
43
+ import * as i25 from "./viewer/components/viewer.component";
44
+ import * as i26 from "./viewer/components/viewer-toolbar-custom-actions.component";
45
+ import * as i27 from "./viewer/components/download-prompt-dialog/download-prompt-dialog.component";
46
+ import * as i28 from "./layout/directives/sidenav-layout-header.directive";
47
+ import * as i29 from "./layout/directives/sidenav-layout-content.directive";
48
+ import * as i30 from "./layout/directives/sidenav-layout-navigation.directive";
49
+ import * as i31 from "./layout/components/sidebar-action/sidebar-action-menu.component";
50
+ import * as i32 from "./layout/components/header/header.component";
51
+ import * as i33 from "./layout/components/layout-container/layout-container.component";
52
+ import * as i34 from "./layout/components/sidenav-layout/sidenav-layout.component";
53
+ import * as i35 from "./pipes/localized-date.pipe";
54
+ import * as i36 from "./pipes/time-ago.pipe";
55
+ import * as i37 from "./pipes/file-size.pipe";
56
+ import * as i38 from "./pipes/text-highlight.pipe";
57
+ import * as i39 from "./pipes/full-name.pipe";
58
+ import * as i40 from "./pipes/format-space.pipe";
59
+ import * as i41 from "./pipes/file-type.pipe";
60
+ import * as i42 from "./pipes/multi-value.pipe";
61
+ import * as i43 from "./pipes/decimal-number.pipe";
62
+ import * as i44 from "./pipes/date-time.pipe";
63
+ import * as i45 from "./pipes/user-initial.pipe";
64
+ import * as i46 from "./pipes/truncate.pipe";
65
+ import * as i47 from "./identity-user-info/identity-user-info.component";
66
+ import * as i48 from "./directives/highlight.directive";
67
+ import * as i49 from "./directives/logout.directive";
68
+ import * as i50 from "./directives/upload.directive";
69
+ import * as i51 from "./directives/tooltip-card/tooltip-card.directive";
70
+ import * as i52 from "./directives/tooltip-card/tooltip-card.component";
71
+ import * as i53 from "./directives/infinite-select-scroll.directive";
72
+ import * as i54 from "./app-config/app-config.pipe";
73
+ import * as i55 from "./pagination/infinite-pagination.component";
74
+ import * as i56 from "./pagination/pagination.component";
75
+ import * as i57 from "./toolbar/toolbar.component";
76
+ import * as i58 from "./toolbar/toolbar-title.component";
77
+ import * as i59 from "./toolbar/toolbar-divider.component";
78
+ import * as i60 from "./context-menu/context-menu-list.component";
79
+ import * as i61 from "./context-menu/context-menu.directive";
80
+ import * as i62 from "./card-view/components/card-view/card-view.component";
81
+ import * as i63 from "./card-view/components/card-view-boolitem/card-view-boolitem.component";
82
+ import * as i64 from "./card-view/components/card-view-dateitem/card-view-dateitem.component";
83
+ import * as i65 from "./card-view/components/card-view-mapitem/card-view-mapitem.component";
84
+ import * as i66 from "./card-view/components/card-view-textitem/card-view-textitem.component";
85
+ import * as i67 from "./card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component";
86
+ import * as i68 from "./card-view/components/card-view-selectitem/card-view-selectitem.component";
87
+ import * as i69 from "./card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component";
88
+ import * as i70 from "./card-view/components/card-view-arrayitem/card-view-arrayitem.component";
89
+ import * as i71 from "./card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component";
90
+ import * as i72 from "./form/form-base.module";
91
+ import * as i73 from "./comments/comments.component";
92
+ import * as i74 from "./comments/comment-list/comment-list.component";
93
+ import * as i75 from "./clipboard/clipboard.directive";
94
+ import * as i76 from "./login/components/login/login.component";
95
+ import * as i77 from "./login/directives/login-footer.directive";
96
+ import * as i78 from "./login/directives/login-header.directive";
97
+ import * as i79 from "./login/components/login-dialog/login-dialog.component";
98
+ import * as i80 from "./login/components/login-dialog-panel/login-dialog-panel.component";
99
+ import * as i81 from "./language-menu/language-menu.component";
100
+ import * as i82 from "./language-menu/language-picker.component";
101
+ import * as i83 from "./info-drawer/info-drawer-layout.component";
102
+ import * as i84 from "./info-drawer/info-drawer.component";
103
+ import * as i85 from "./datatable/components/boolean-cell/boolean-cell.component";
104
+ import * as i86 from "./datatable/components/amount-cell/amount-cell.component";
105
+ import * as i87 from "./datatable/components/number-cell/number-cell.component";
106
+ import * as i88 from "./datatable/components/location-cell/location-cell.component";
107
+ import * as i89 from "./datatable/components/date-cell/date-cell.component";
108
+ import * as i90 from "./datatable/components/icon-cell/icon-cell.component";
109
+ import * as i91 from "./datatable/components/columns-selector/columns-selector.component";
110
+ import * as i92 from "./datatable/data-column/data-column.component";
111
+ import * as i93 from "./datatable/data-column/data-column-list.component";
112
+ import * as i94 from "./datatable/data-column/data-column-header.component";
113
+ import * as i95 from "./datatable/directives/resizable/resizable.directive";
114
+ import * as i96 from "./datatable/directives/resizable/resize-handle.directive";
115
+ import * as i97 from "./datatable/directives/drop-zone.directive";
116
+ import * as i98 from "./datatable/components/empty-list/empty-list.component";
117
+ import * as i99 from "./datatable/components/filesize-cell/filesize-cell.component";
118
+ import * as i100 from "./datatable/components/json-cell/json-cell.component";
119
+ import * as i101 from "./datatable/directives/no-content-template.directive";
120
+ import * as i102 from "./datatable/directives/no-permission-template.directive";
121
+ import * as i103 from "./datatable/directives/loading-template.directive";
122
+ import * as i104 from "./datatable/directives/header-filter-template.directive";
123
+ import * as i105 from "./datatable/directives/custom-empty-content-template.directive";
124
+ import * as i106 from "./datatable/directives/custom-loading-template.directive";
125
+ import * as i107 from "./datatable/directives/custom-no-permission-template.directive";
126
+ import * as i108 from "./datatable/directives/main-data-table-action-template.directive";
127
+ import * as i109 from "./datatable/components/datatable-row/datatable-row.component";
128
+ import * as i110 from "./datatable/components/datatable-cell/datatable-cell.component";
129
+ import * as i111 from "./datatable/components/datatable/datatable.component";
130
+ import * as i112 from "./templates/error-content/error-content.component";
131
+ import * as i113 from "./templates/empty-content/empty-content.component";
132
+ import * as i114 from "./icon/icon.component";
133
+ import * as i115 from "./sorting-picker/sorting-picker.component";
134
+ import * as i116 from "./notifications/components/notification-history.component";
135
+ import * as i117 from "./notifications/components/add-notification.stories.component";
136
+ import * as i118 from "./search-text/search-text-input.component";
137
+ import * as i119 from "./search-text/search-trigger.directive";
138
+ import * as i120 from "./blank-page/blank-page.component";
139
+ import * as i121 from "./dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component";
140
+ import * as i122 from "./dynamic-chip-list/dynamic-chip-list.component";
141
+ import * as i123 from "./material.module";
145
142
  export declare class CoreModule {
146
143
  static forRoot(): ModuleWithProviders<CoreModule>;
147
144
  /**
@@ -149,8 +146,7 @@ export declare class CoreModule {
149
146
  * @returns ModuleWithProviders<CoreModule>
150
147
  */
151
148
  static forChild(): ModuleWithProviders<CoreModule>;
152
- constructor(translation: TranslationService);
153
149
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
154
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, [typeof i1.TranslateModule, typeof i2.AboutExtensionListComponent, typeof i3.AboutLicenseListComponent, typeof i4.ModuleListComponent, typeof i5.AboutRepositoryInfoComponent, typeof i6.PackageListComponent, typeof i7.AboutStatusListComponent, typeof i8.AboutServerSettingsComponent, typeof i9.AboutPanelDirective, typeof i10.AboutComponent, typeof i11.PdfPasswordDialogComponent, typeof i12.ViewerRenderComponent, typeof i13.ImgViewerComponent, typeof i14.TxtViewerComponent, typeof i15.MediaPlayerComponent, typeof i16.PdfViewerComponent, typeof i17.PdfThumbComponent, typeof i18.PdfThumbListComponent, typeof i19.ViewerExtensionDirective, typeof i20.UnknownFormatComponent, typeof i21.ViewerToolbarComponent, typeof i22.ViewerSidebarComponent, typeof i23.ViewerOpenWithComponent, typeof i24.ViewerMoreActionsComponent, typeof i25.ViewerToolbarActionsComponent, typeof i26.ViewerComponent, typeof i27.ViewerToolbarCustomActionsComponent, typeof i28.DownloadPromptDialogComponent, typeof i29.SidenavLayoutHeaderDirective, typeof i30.SidenavLayoutContentDirective, typeof i31.SidenavLayoutNavigationDirective, typeof i32.SidebarMenuDirective, typeof i32.SidebarMenuExpandIconDirective, typeof i32.SidebarMenuTitleIconDirective, typeof i33.HeaderLayoutComponent, typeof i32.SidebarActionMenuComponent, typeof i34.LayoutContainerComponent, typeof i35.SidenavLayoutComponent, typeof i36.LocalizedDatePipe, typeof i37.TimeAgoPipe, typeof i38.FileSizePipe, typeof i39.HighlightPipe, typeof i40.FullNamePipe, typeof i41.FormatSpacePipe, typeof i42.FileTypePipe, typeof i43.MultiValuePipe, typeof i44.DecimalNumberPipe, typeof i45.DateTimePipe, typeof i46.InitialUsernamePipe, typeof i47.TruncatePipe, typeof i48.IdentityUserInfoComponent, typeof i49.HighlightDirective, typeof i50.LogoutDirective, typeof i51.UploadDirective, typeof i52.TooltipCardDirective, typeof i53.TooltipCardComponent, typeof i54.InfiniteSelectScrollDirective, typeof i55.AppConfigPipe, typeof i56.InfinitePaginationComponent, typeof i57.PaginationComponent, typeof i58.ToolbarComponent, typeof i59.ToolbarTitleComponent, typeof i60.ToolbarDividerComponent, typeof i61.ContextMenuListComponent, typeof i62.ContextMenuDirective, typeof i63.CardViewComponent, typeof i64.CardViewBoolItemComponent, typeof i65.CardViewDateItemComponent, typeof i66.CardViewMapItemComponent, typeof i67.CardViewTextItemComponent, typeof i68.CardViewKeyValuePairsItemComponent, typeof i69.CardViewSelectItemComponent, typeof i70.CardViewItemDispatcherComponent, typeof i71.CardViewArrayItemComponent, typeof i72.SelectFilterInputComponent, typeof i73.FormBaseModule, typeof i74.CommentsComponent, typeof i75.CommentListComponent, typeof i76.ClipboardDirective, typeof i76.ClipboardComponent, typeof i77.LoginComponent, typeof i78.LoginFooterDirective, typeof i79.LoginHeaderDirective, typeof i80.LoginDialogComponent, typeof i81.LoginDialogPanelComponent, typeof i82.LanguageMenuComponent, typeof i83.LanguagePickerComponent, typeof i84.InfoDrawerLayoutComponent, typeof i85.InfoDrawerTabComponent, typeof i85.InfoDrawerComponent, typeof i84.InfoDrawerTitleDirective, typeof i84.InfoDrawerButtonsDirective, typeof i84.InfoDrawerContentDirective, typeof i86.BooleanCellComponent, typeof i87.AmountCellComponent, typeof i88.NumberCellComponent, typeof i89.LocationCellComponent, typeof i90.DateCellComponent, typeof i91.IconCellComponent, typeof i92.ColumnsSelectorComponent, typeof i93.DataColumnComponent, typeof i94.DataColumnListComponent, typeof i95.DateColumnHeaderComponent, typeof i36.LocalizedDatePipe, typeof i96.ResizableDirective, typeof i97.ResizeHandleDirective, typeof i98.DropZoneDirective, typeof i99.EmptyListComponent, typeof i99.EmptyListHeaderDirective, typeof i99.EmptyListBodyDirective, typeof i99.EmptyListFooterDirective, typeof i100.FileSizeCellComponent, typeof i101.JsonCellComponent, typeof i102.NoContentTemplateDirective, typeof i103.NoPermissionTemplateDirective, typeof i104.LoadingContentTemplateDirective, typeof i105.HeaderFilterTemplateDirective, typeof i106.CustomEmptyContentTemplateDirective, typeof i107.CustomLoadingContentTemplateDirective, typeof i108.CustomNoPermissionTemplateDirective, typeof i109.MainMenuDataTableTemplateDirective, typeof i110.DataTableRowComponent, typeof i111.DataTableCellComponent, typeof i112.DataTableComponent, typeof i113.ErrorContentComponent, typeof i114.EmptyContentComponent, typeof i115.IconComponent, typeof i116.SortingPickerComponent, typeof i117.NotificationHistoryComponent, typeof i118.AddNotificationStorybookComponent, typeof i119.SearchTextInputComponent, typeof i120.SearchTriggerDirective, typeof i121.BlankPageComponent, typeof i122.UnsavedChangesDialogComponent, typeof i123.DynamicChipListComponent, typeof i124.HttpClientModule, typeof i124.HttpClientXsrfModule, typeof i125.MaterialModule], [typeof i2.AboutExtensionListComponent, typeof i3.AboutLicenseListComponent, typeof i4.ModuleListComponent, typeof i5.AboutRepositoryInfoComponent, typeof i6.PackageListComponent, typeof i7.AboutStatusListComponent, typeof i8.AboutServerSettingsComponent, typeof i9.AboutPanelDirective, typeof i10.AboutComponent, typeof i11.PdfPasswordDialogComponent, typeof i12.ViewerRenderComponent, typeof i13.ImgViewerComponent, typeof i14.TxtViewerComponent, typeof i15.MediaPlayerComponent, typeof i16.PdfViewerComponent, typeof i17.PdfThumbComponent, typeof i18.PdfThumbListComponent, typeof i19.ViewerExtensionDirective, typeof i20.UnknownFormatComponent, typeof i21.ViewerToolbarComponent, typeof i22.ViewerSidebarComponent, typeof i23.ViewerOpenWithComponent, typeof i24.ViewerMoreActionsComponent, typeof i25.ViewerToolbarActionsComponent, typeof i26.ViewerComponent, typeof i27.ViewerToolbarCustomActionsComponent, typeof i28.DownloadPromptDialogComponent, typeof i29.SidenavLayoutHeaderDirective, typeof i30.SidenavLayoutContentDirective, typeof i31.SidenavLayoutNavigationDirective, typeof i32.SidebarMenuDirective, typeof i32.SidebarMenuExpandIconDirective, typeof i32.SidebarMenuTitleIconDirective, typeof i33.HeaderLayoutComponent, typeof i32.SidebarActionMenuComponent, typeof i34.LayoutContainerComponent, typeof i35.SidenavLayoutComponent, typeof i36.LocalizedDatePipe, typeof i37.TimeAgoPipe, typeof i38.FileSizePipe, typeof i39.HighlightPipe, typeof i40.FullNamePipe, typeof i41.FormatSpacePipe, typeof i42.FileTypePipe, typeof i43.MultiValuePipe, typeof i44.DecimalNumberPipe, typeof i45.DateTimePipe, typeof i46.InitialUsernamePipe, typeof i47.TruncatePipe, typeof i49.HighlightDirective, typeof i50.LogoutDirective, typeof i51.UploadDirective, typeof i52.TooltipCardDirective, typeof i53.TooltipCardComponent, typeof i54.InfiniteSelectScrollDirective, typeof i76.ClipboardDirective, typeof i76.ClipboardComponent, typeof i48.IdentityUserInfoComponent, typeof i55.AppConfigPipe, typeof i56.InfinitePaginationComponent, typeof i57.PaginationComponent, typeof i58.ToolbarComponent, typeof i59.ToolbarTitleComponent, typeof i60.ToolbarDividerComponent, typeof i61.ContextMenuListComponent, typeof i62.ContextMenuDirective, typeof i63.CardViewComponent, typeof i64.CardViewBoolItemComponent, typeof i65.CardViewDateItemComponent, typeof i66.CardViewMapItemComponent, typeof i67.CardViewTextItemComponent, typeof i68.CardViewKeyValuePairsItemComponent, typeof i69.CardViewSelectItemComponent, typeof i70.CardViewItemDispatcherComponent, typeof i71.CardViewArrayItemComponent, typeof i72.SelectFilterInputComponent, typeof i73.FormBaseModule, typeof i74.CommentsComponent, typeof i75.CommentListComponent, typeof i77.LoginComponent, typeof i78.LoginFooterDirective, typeof i79.LoginHeaderDirective, typeof i80.LoginDialogComponent, typeof i81.LoginDialogPanelComponent, typeof i82.LanguageMenuComponent, typeof i83.LanguagePickerComponent, typeof i84.InfoDrawerLayoutComponent, typeof i85.InfoDrawerTabComponent, typeof i85.InfoDrawerComponent, typeof i84.InfoDrawerTitleDirective, typeof i84.InfoDrawerButtonsDirective, typeof i84.InfoDrawerContentDirective, typeof i86.BooleanCellComponent, typeof i87.AmountCellComponent, typeof i88.NumberCellComponent, typeof i89.LocationCellComponent, typeof i90.DateCellComponent, typeof i91.IconCellComponent, typeof i92.ColumnsSelectorComponent, typeof i93.DataColumnComponent, typeof i94.DataColumnListComponent, typeof i95.DateColumnHeaderComponent, typeof i36.LocalizedDatePipe, typeof i96.ResizableDirective, typeof i97.ResizeHandleDirective, typeof i98.DropZoneDirective, typeof i99.EmptyListComponent, typeof i99.EmptyListHeaderDirective, typeof i99.EmptyListBodyDirective, typeof i99.EmptyListFooterDirective, typeof i100.FileSizeCellComponent, typeof i101.JsonCellComponent, typeof i102.NoContentTemplateDirective, typeof i103.NoPermissionTemplateDirective, typeof i104.LoadingContentTemplateDirective, typeof i105.HeaderFilterTemplateDirective, typeof i106.CustomEmptyContentTemplateDirective, typeof i107.CustomLoadingContentTemplateDirective, typeof i108.CustomNoPermissionTemplateDirective, typeof i109.MainMenuDataTableTemplateDirective, typeof i110.DataTableRowComponent, typeof i111.DataTableCellComponent, typeof i112.DataTableComponent, typeof i1.TranslateModule, typeof i113.ErrorContentComponent, typeof i114.EmptyContentComponent, typeof i116.SortingPickerComponent, typeof i115.IconComponent, typeof i117.NotificationHistoryComponent, typeof i118.AddNotificationStorybookComponent, typeof i119.SearchTextInputComponent, typeof i120.SearchTriggerDirective, typeof i121.BlankPageComponent, typeof i122.UnsavedChangesDialogComponent, typeof i123.DynamicChipListComponent, typeof i125.MaterialModule]>;
150
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, [typeof i1.AboutExtensionListComponent, typeof i2.AboutLicenseListComponent, typeof i3.ModuleListComponent, typeof i4.AboutRepositoryInfoComponent, typeof i5.PackageListComponent, typeof i6.AboutStatusListComponent, typeof i7.AboutServerSettingsComponent, typeof i8.AboutPanelDirective, typeof i9.AboutComponent, typeof i10.PdfPasswordDialogComponent, typeof i11.ViewerRenderComponent, typeof i12.ImgViewerComponent, typeof i13.TxtViewerComponent, typeof i14.MediaPlayerComponent, typeof i15.PdfViewerComponent, typeof i16.PdfThumbComponent, typeof i17.PdfThumbListComponent, typeof i18.ViewerExtensionDirective, typeof i19.UnknownFormatComponent, typeof i20.ViewerToolbarComponent, typeof i21.ViewerSidebarComponent, typeof i22.ViewerOpenWithComponent, typeof i23.ViewerMoreActionsComponent, typeof i24.ViewerToolbarActionsComponent, typeof i25.ViewerComponent, typeof i26.ViewerToolbarCustomActionsComponent, typeof i27.DownloadPromptDialogComponent, typeof i28.SidenavLayoutHeaderDirective, typeof i29.SidenavLayoutContentDirective, typeof i30.SidenavLayoutNavigationDirective, typeof i31.SidebarMenuDirective, typeof i31.SidebarMenuExpandIconDirective, typeof i31.SidebarMenuTitleIconDirective, typeof i32.HeaderLayoutComponent, typeof i31.SidebarActionMenuComponent, typeof i33.LayoutContainerComponent, typeof i34.SidenavLayoutComponent, typeof i35.LocalizedDatePipe, typeof i36.TimeAgoPipe, typeof i37.FileSizePipe, typeof i38.HighlightPipe, typeof i39.FullNamePipe, typeof i40.FormatSpacePipe, typeof i41.FileTypePipe, typeof i42.MultiValuePipe, typeof i43.DecimalNumberPipe, typeof i44.DateTimePipe, typeof i45.InitialUsernamePipe, typeof i46.TruncatePipe, typeof i47.IdentityUserInfoComponent, typeof i48.HighlightDirective, typeof i49.LogoutDirective, typeof i50.UploadDirective, typeof i51.TooltipCardDirective, typeof i52.TooltipCardComponent, typeof i53.InfiniteSelectScrollDirective, typeof i54.AppConfigPipe, typeof i55.InfinitePaginationComponent, typeof i56.PaginationComponent, typeof i57.ToolbarComponent, typeof i58.ToolbarTitleComponent, typeof i59.ToolbarDividerComponent, typeof i60.ContextMenuListComponent, typeof i61.ContextMenuDirective, typeof i62.CardViewComponent, typeof i63.CardViewBoolItemComponent, typeof i64.CardViewDateItemComponent, typeof i65.CardViewMapItemComponent, typeof i66.CardViewTextItemComponent, typeof i67.CardViewKeyValuePairsItemComponent, typeof i68.CardViewSelectItemComponent, typeof i69.CardViewItemDispatcherComponent, typeof i70.CardViewArrayItemComponent, typeof i71.SelectFilterInputComponent, typeof i72.FormBaseModule, typeof i73.CommentsComponent, typeof i74.CommentListComponent, typeof i75.ClipboardDirective, typeof i75.ClipboardComponent, typeof i76.LoginComponent, typeof i77.LoginFooterDirective, typeof i78.LoginHeaderDirective, typeof i79.LoginDialogComponent, typeof i80.LoginDialogPanelComponent, typeof i81.LanguageMenuComponent, typeof i82.LanguagePickerComponent, typeof i83.InfoDrawerLayoutComponent, typeof i84.InfoDrawerTabComponent, typeof i84.InfoDrawerComponent, typeof i83.InfoDrawerTitleDirective, typeof i83.InfoDrawerButtonsDirective, typeof i83.InfoDrawerContentDirective, typeof i85.BooleanCellComponent, typeof i86.AmountCellComponent, typeof i87.NumberCellComponent, typeof i88.LocationCellComponent, typeof i89.DateCellComponent, typeof i90.IconCellComponent, typeof i91.ColumnsSelectorComponent, typeof i92.DataColumnComponent, typeof i93.DataColumnListComponent, typeof i94.DateColumnHeaderComponent, typeof i35.LocalizedDatePipe, typeof i95.ResizableDirective, typeof i96.ResizeHandleDirective, typeof i97.DropZoneDirective, typeof i98.EmptyListComponent, typeof i98.EmptyListHeaderDirective, typeof i98.EmptyListBodyDirective, typeof i98.EmptyListFooterDirective, typeof i99.FileSizeCellComponent, typeof i100.JsonCellComponent, typeof i101.NoContentTemplateDirective, typeof i102.NoPermissionTemplateDirective, typeof i103.LoadingContentTemplateDirective, typeof i104.HeaderFilterTemplateDirective, typeof i105.CustomEmptyContentTemplateDirective, typeof i106.CustomLoadingContentTemplateDirective, typeof i107.CustomNoPermissionTemplateDirective, typeof i108.MainMenuDataTableTemplateDirective, typeof i109.DataTableRowComponent, typeof i110.DataTableCellComponent, typeof i111.DataTableComponent, typeof i112.ErrorContentComponent, typeof i113.EmptyContentComponent, typeof i114.IconComponent, typeof i115.SortingPickerComponent, typeof i116.NotificationHistoryComponent, typeof i117.AddNotificationStorybookComponent, typeof i118.SearchTextInputComponent, typeof i119.SearchTriggerDirective, typeof i120.BlankPageComponent, typeof i121.UnsavedChangesDialogComponent, typeof i122.DynamicChipListComponent, typeof i123.MaterialModule], [typeof i1.AboutExtensionListComponent, typeof i2.AboutLicenseListComponent, typeof i3.ModuleListComponent, typeof i4.AboutRepositoryInfoComponent, typeof i5.PackageListComponent, typeof i6.AboutStatusListComponent, typeof i7.AboutServerSettingsComponent, typeof i8.AboutPanelDirective, typeof i9.AboutComponent, typeof i10.PdfPasswordDialogComponent, typeof i11.ViewerRenderComponent, typeof i12.ImgViewerComponent, typeof i13.TxtViewerComponent, typeof i14.MediaPlayerComponent, typeof i15.PdfViewerComponent, typeof i16.PdfThumbComponent, typeof i17.PdfThumbListComponent, typeof i18.ViewerExtensionDirective, typeof i19.UnknownFormatComponent, typeof i20.ViewerToolbarComponent, typeof i21.ViewerSidebarComponent, typeof i22.ViewerOpenWithComponent, typeof i23.ViewerMoreActionsComponent, typeof i24.ViewerToolbarActionsComponent, typeof i25.ViewerComponent, typeof i26.ViewerToolbarCustomActionsComponent, typeof i27.DownloadPromptDialogComponent, typeof i28.SidenavLayoutHeaderDirective, typeof i29.SidenavLayoutContentDirective, typeof i30.SidenavLayoutNavigationDirective, typeof i31.SidebarMenuDirective, typeof i31.SidebarMenuExpandIconDirective, typeof i31.SidebarMenuTitleIconDirective, typeof i32.HeaderLayoutComponent, typeof i31.SidebarActionMenuComponent, typeof i33.LayoutContainerComponent, typeof i34.SidenavLayoutComponent, typeof i35.LocalizedDatePipe, typeof i36.TimeAgoPipe, typeof i37.FileSizePipe, typeof i38.HighlightPipe, typeof i39.FullNamePipe, typeof i40.FormatSpacePipe, typeof i41.FileTypePipe, typeof i42.MultiValuePipe, typeof i43.DecimalNumberPipe, typeof i44.DateTimePipe, typeof i45.InitialUsernamePipe, typeof i46.TruncatePipe, typeof i48.HighlightDirective, typeof i49.LogoutDirective, typeof i50.UploadDirective, typeof i51.TooltipCardDirective, typeof i52.TooltipCardComponent, typeof i53.InfiniteSelectScrollDirective, typeof i75.ClipboardDirective, typeof i75.ClipboardComponent, typeof i47.IdentityUserInfoComponent, typeof i54.AppConfigPipe, typeof i55.InfinitePaginationComponent, typeof i56.PaginationComponent, typeof i57.ToolbarComponent, typeof i58.ToolbarTitleComponent, typeof i59.ToolbarDividerComponent, typeof i60.ContextMenuListComponent, typeof i61.ContextMenuDirective, typeof i62.CardViewComponent, typeof i63.CardViewBoolItemComponent, typeof i64.CardViewDateItemComponent, typeof i65.CardViewMapItemComponent, typeof i66.CardViewTextItemComponent, typeof i67.CardViewKeyValuePairsItemComponent, typeof i68.CardViewSelectItemComponent, typeof i69.CardViewItemDispatcherComponent, typeof i70.CardViewArrayItemComponent, typeof i71.SelectFilterInputComponent, typeof i72.FormBaseModule, typeof i73.CommentsComponent, typeof i74.CommentListComponent, typeof i76.LoginComponent, typeof i77.LoginFooterDirective, typeof i78.LoginHeaderDirective, typeof i79.LoginDialogComponent, typeof i80.LoginDialogPanelComponent, typeof i81.LanguageMenuComponent, typeof i82.LanguagePickerComponent, typeof i83.InfoDrawerLayoutComponent, typeof i84.InfoDrawerTabComponent, typeof i84.InfoDrawerComponent, typeof i83.InfoDrawerTitleDirective, typeof i83.InfoDrawerButtonsDirective, typeof i83.InfoDrawerContentDirective, typeof i85.BooleanCellComponent, typeof i86.AmountCellComponent, typeof i87.NumberCellComponent, typeof i88.LocationCellComponent, typeof i89.DateCellComponent, typeof i90.IconCellComponent, typeof i91.ColumnsSelectorComponent, typeof i92.DataColumnComponent, typeof i93.DataColumnListComponent, typeof i94.DateColumnHeaderComponent, typeof i35.LocalizedDatePipe, typeof i95.ResizableDirective, typeof i96.ResizeHandleDirective, typeof i97.DropZoneDirective, typeof i98.EmptyListComponent, typeof i98.EmptyListHeaderDirective, typeof i98.EmptyListBodyDirective, typeof i98.EmptyListFooterDirective, typeof i99.FileSizeCellComponent, typeof i100.JsonCellComponent, typeof i101.NoContentTemplateDirective, typeof i102.NoPermissionTemplateDirective, typeof i103.LoadingContentTemplateDirective, typeof i104.HeaderFilterTemplateDirective, typeof i105.CustomEmptyContentTemplateDirective, typeof i106.CustomLoadingContentTemplateDirective, typeof i107.CustomNoPermissionTemplateDirective, typeof i108.MainMenuDataTableTemplateDirective, typeof i109.DataTableRowComponent, typeof i110.DataTableCellComponent, typeof i111.DataTableComponent, typeof i112.ErrorContentComponent, typeof i113.EmptyContentComponent, typeof i115.SortingPickerComponent, typeof i114.IconComponent, typeof i116.NotificationHistoryComponent, typeof i117.AddNotificationStorybookComponent, typeof i118.SearchTextInputComponent, typeof i119.SearchTriggerDirective, typeof i120.BlankPageComponent, typeof i121.UnsavedChangesDialogComponent, typeof i122.DynamicChipListComponent, typeof i123.MaterialModule]>;
155
151
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
156
152
  }
@@ -19,6 +19,7 @@ import * as i17 from "./components/widgets/date-time/date-time.widget";
19
19
  import * as i18 from "./components/widgets/json/json.widget";
20
20
  import * as i19 from "./components/widgets/base-viewer/base-viewer.widget";
21
21
  import * as i20 from "./components/widgets/text/text-mask.component";
22
+ /** @deprecated This module is deprecated and will be removed in a future release. Use standalone components instead. */
22
23
  export declare class FormBaseModule {
23
24
  static ɵfac: i0.ɵɵFactoryDeclaration<FormBaseModule, never>;
24
25
  static ɵmod: i0.ɵɵNgModuleDeclaration<FormBaseModule, never, [typeof i1.FormFieldComponent, typeof i2.FormRendererComponent, typeof i3.WidgetComponent, typeof i4.StartFormCustomButtonDirective, typeof i5.InplaceFormInputComponent, typeof i6.UnknownWidgetComponent, typeof i7.TextWidgetComponent, typeof i8.NumberWidgetComponent, typeof i9.DecimalWidgetComponent, typeof i10.CheckboxWidgetComponent, typeof i11.MultilineTextWidgetComponentComponent, typeof i12.HyperlinkWidgetComponent, typeof i13.DisplayTextWidgetComponent, typeof i14.DateWidgetComponent, typeof i15.AmountWidgetComponent, typeof i16.ErrorWidgetComponent, typeof i17.DateTimeWidgetComponent, typeof i18.JsonWidgetComponent, typeof i19.BaseViewerWidgetComponent, typeof i20.InputMaskDirective], [typeof i1.FormFieldComponent, typeof i2.FormRendererComponent, typeof i4.StartFormCustomButtonDirective, typeof i6.UnknownWidgetComponent, typeof i7.TextWidgetComponent, typeof i8.NumberWidgetComponent, typeof i9.DecimalWidgetComponent, typeof i10.CheckboxWidgetComponent, typeof i11.MultilineTextWidgetComponentComponent, typeof i12.HyperlinkWidgetComponent, typeof i13.DisplayTextWidgetComponent, typeof i14.DateWidgetComponent, typeof i15.AmountWidgetComponent, typeof i16.ErrorWidgetComponent, typeof i17.DateTimeWidgetComponent, typeof i18.JsonWidgetComponent, typeof i19.BaseViewerWidgetComponent, typeof i5.InplaceFormInputComponent, typeof i3.WidgetComponent]>;
@@ -3,6 +3,7 @@ import * as i1 from "@angular/platform-browser/animations";
3
3
  import * as i2 from "../core.module";
4
4
  import * as i3 from "./noop-translate.module";
5
5
  import * as i4 from "./noop-auth.module";
6
+ /** @deprecated this module is deprecated and will be removed in the future */
6
7
  export declare class CoreTestingModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreTestingModule, never>;
8
9
  static ɵmod: i0.ɵɵNgModuleDeclaration<CoreTestingModule, never, [typeof i1.NoopAnimationsModule, typeof i2.CoreModule, typeof i3.NoopTranslateModule, typeof i4.NoopAuthModule], never>;